forked from beeper/phone-registration-provider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTweak.h
27 lines (22 loc) · 928 Bytes
/
Tweak.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
@interface IDSValidationSession : NSObject
- (NSDictionary * __nonnull)headersBySigningData:(NSData * __nonnull)data serverTimestamp:(int)ts error:(NSError * __nullable * __nullable)error;
@end
@interface IDSRegistrationCenter
+ (instancetype __nonnull)sharedInstance;
- (id<NSObject> __nullable)_sendAuthenticateRegistration:(id __nullable)reg;
@end
@interface IDSRegistration : NSObject
@end
@interface IDSDAccount
- (id __nullable)_rebuildRegistrationInfo:(BOOL)rebuild;
- (void)_checkRegistration;
- (void)setRegistrationStatus:(int)status error:(NSError * __nullable)error alertInfo:(id __nullable)alertInfo;
- (IDSRegistration * __nullable)registration;
@end
@interface IDSDAccountController : NSObject
+ (instancetype __nonnull)sharedInstance;
- (NSArray<IDSDAccount *> * __nonnull)accounts;
@end
@interface CKSettingsMessagesController
- (void)onboardingControllerDidFinish:(id __nonnull)onboardingController;
@end