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