Skip to content

Commit

Permalink
Merge pull request #24 from LP-Messaging/release/3.9.2
Browse files Browse the repository at this point in the history
release 3.9.2 for Xcode 10.2.0
  • Loading branch information
luandrecast-lp authored Jul 3, 2019
2 parents 296f00d + e44c1d6 commit 167c439
Show file tree
Hide file tree
Showing 105 changed files with 190 additions and 28 deletions.
4 changes: 2 additions & 2 deletions Libraries/LPAMS.framework/Headers/LPAMS-Device-Swift.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#if 0
#elif defined(__arm64__) && __arm64__
// Generated by Apple Swift version 5.0.1 (swiftlang-1001.0.82.4 clang-1001.0.46.5)
// Generated by Apple Swift version 5.0 (swiftlang-1001.0.69.5 clang-1001.0.46.3)
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wgcc-compat"

Expand Down Expand Up @@ -543,7 +543,7 @@ typedef SWIFT_ENUM(NSInteger, SocketType, closed) {
#pragma clang diagnostic pop

#elif defined(__ARM_ARCH_7A__) && __ARM_ARCH_7A__
// Generated by Apple Swift version 5.0.1 (swiftlang-1001.0.82.4 clang-1001.0.46.5)
// Generated by Apple Swift version 5.0 (swiftlang-1001.0.69.5 clang-1001.0.46.3)
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wgcc-compat"

Expand Down
4 changes: 2 additions & 2 deletions Libraries/LPAMS.framework/Headers/LPAMS-Simulator-Swift.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#if 0
#elif defined(__x86_64__) && __x86_64__
// Generated by Apple Swift version 5.0.1 (swiftlang-1001.0.82.4 clang-1001.0.46.5)
// Generated by Apple Swift version 5.0 (swiftlang-1001.0.69.5 clang-1001.0.46.3)
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wgcc-compat"

Expand Down Expand Up @@ -543,7 +543,7 @@ typedef SWIFT_ENUM(NSInteger, SocketType, closed) {
#pragma clang diagnostic pop

#elif defined(__i386__) && __i386__
// Generated by Apple Swift version 5.0.1 (swiftlang-1001.0.82.4 clang-1001.0.46.5)
// Generated by Apple Swift version 5.0 (swiftlang-1001.0.69.5 clang-1001.0.46.3)
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wgcc-compat"

Expand Down
Binary file modified Libraries/LPAMS.framework/Info.plist
Binary file not shown.
Binary file modified Libraries/LPAMS.framework/LPAMS
Binary file not shown.
Binary file modified Libraries/LPAMS.framework/Modules/LPAMS.swiftmodule/arm.swiftdoc
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
60 changes: 58 additions & 2 deletions Libraries/LPInfra.framework/Headers/LPInfra-Device-Swift.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#if 0
#elif defined(__arm64__) && __arm64__
// Generated by Apple Swift version 5.0.1 (swiftlang-1001.0.82.4 clang-1001.0.46.5)
// Generated by Apple Swift version 5.0 (swiftlang-1001.0.69.5 clang-1001.0.46.3)
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wgcc-compat"

Expand Down Expand Up @@ -2069,20 +2069,48 @@ SWIFT_CLASS("_TtC7LPInfra11LPWebSocket")
- (nonnull instancetype)initWithURLRequest:(NSURLRequest * _Nonnull)request protocols:(NSArray<NSString *> * _Nullable)protocols securityPolicy:(LPSRSecurityPolicy * _Nonnull)securityPolicy SWIFT_UNAVAILABLE;
@end

enum MessageFrequency : NSInteger;
@class LPWelcomeMessageOption;
@class QuickReplyItem;

SWIFT_CLASS("_TtC7LPInfra16LPWelcomeMessage")
@interface LPWelcomeMessage : NSObject
@property (nonatomic, copy) NSString * _Nullable message;
@property (nonatomic) enum MessageFrequency frequency;
@property (nonatomic, readonly, copy) NSArray<LPWelcomeMessageOption *> * _Nonnull options;
@property (nonatomic, readonly) NSInteger numberOfOptionsPerRow;
@property (nonatomic, readonly, strong) QuickReplyItem * _Nullable quickReply;
- (nonnull instancetype)initWithMessage:(NSString * _Nullable)message frequency:(enum MessageFrequency)frequency OBJC_DESIGNATED_INITIALIZER;
- (BOOL)shouldDisplayDefaultMessage SWIFT_WARN_UNUSED_RESULT;
- (BOOL)setWithOptions:(NSArray<LPWelcomeMessageOption *> * _Nonnull)options error:(NSError * _Nullable * _Nullable)error;
- (void)clearOptions;
- (void)setWithNumberOfOptionsPerRow:(NSInteger)NumberOfOptionsPerRow;
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
@end

typedef SWIFT_ENUM(NSInteger, MessageFrequency, closed) {
MessageFrequencyFirstTimeConversation = 0,
MessageFrequencyEveryConversation = 1,
};

typedef SWIFT_ENUM(NSInteger, LPWelcomeMessageError, closed) {
LPWelcomeMessageErrorMaximumOptions = 0,
LPWelcomeMessageErrorMaximumOptionTitleCharacters = 1,
LPWelcomeMessageErrorMinimumOptionTitleCharacters = 2,
};
static NSString * _Nonnull const LPWelcomeMessageErrorDomain = @"LPInfra.LPWelcomeMessageError";


SWIFT_CLASS("_TtC7LPInfra22LPWelcomeMessageOption")
@interface LPWelcomeMessageOption : NSObject
@property (nonatomic, readonly, copy) NSString * _Nonnull value;
@property (nonatomic, readonly, copy) NSString * _Nonnull displayName;
- (nonnull instancetype)initWithValue:(NSString * _Nonnull)value displayName:(NSString * _Nonnull)displayName OBJC_DESIGNATED_INITIALIZER;
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
@end


SWIFT_CLASS("_TtC7LPInfra16LanguagesManager")
@interface LanguagesManager : NSObject
Expand Down Expand Up @@ -2799,7 +2827,7 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) dispatch_que
#pragma clang diagnostic pop

#elif defined(__ARM_ARCH_7A__) && __ARM_ARCH_7A__
// Generated by Apple Swift version 5.0.1 (swiftlang-1001.0.82.4 clang-1001.0.46.5)
// Generated by Apple Swift version 5.0 (swiftlang-1001.0.69.5 clang-1001.0.46.3)
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wgcc-compat"

Expand Down Expand Up @@ -4868,20 +4896,48 @@ SWIFT_CLASS("_TtC7LPInfra11LPWebSocket")
- (nonnull instancetype)initWithURLRequest:(NSURLRequest * _Nonnull)request protocols:(NSArray<NSString *> * _Nullable)protocols securityPolicy:(LPSRSecurityPolicy * _Nonnull)securityPolicy SWIFT_UNAVAILABLE;
@end

enum MessageFrequency : NSInteger;
@class LPWelcomeMessageOption;
@class QuickReplyItem;

SWIFT_CLASS("_TtC7LPInfra16LPWelcomeMessage")
@interface LPWelcomeMessage : NSObject
@property (nonatomic, copy) NSString * _Nullable message;
@property (nonatomic) enum MessageFrequency frequency;
@property (nonatomic, readonly, copy) NSArray<LPWelcomeMessageOption *> * _Nonnull options;
@property (nonatomic, readonly) NSInteger numberOfOptionsPerRow;
@property (nonatomic, readonly, strong) QuickReplyItem * _Nullable quickReply;
- (nonnull instancetype)initWithMessage:(NSString * _Nullable)message frequency:(enum MessageFrequency)frequency OBJC_DESIGNATED_INITIALIZER;
- (BOOL)shouldDisplayDefaultMessage SWIFT_WARN_UNUSED_RESULT;
- (BOOL)setWithOptions:(NSArray<LPWelcomeMessageOption *> * _Nonnull)options error:(NSError * _Nullable * _Nullable)error;
- (void)clearOptions;
- (void)setWithNumberOfOptionsPerRow:(NSInteger)NumberOfOptionsPerRow;
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
@end

typedef SWIFT_ENUM(NSInteger, MessageFrequency, closed) {
MessageFrequencyFirstTimeConversation = 0,
MessageFrequencyEveryConversation = 1,
};

typedef SWIFT_ENUM(NSInteger, LPWelcomeMessageError, closed) {
LPWelcomeMessageErrorMaximumOptions = 0,
LPWelcomeMessageErrorMaximumOptionTitleCharacters = 1,
LPWelcomeMessageErrorMinimumOptionTitleCharacters = 2,
};
static NSString * _Nonnull const LPWelcomeMessageErrorDomain = @"LPInfra.LPWelcomeMessageError";


SWIFT_CLASS("_TtC7LPInfra22LPWelcomeMessageOption")
@interface LPWelcomeMessageOption : NSObject
@property (nonatomic, readonly, copy) NSString * _Nonnull value;
@property (nonatomic, readonly, copy) NSString * _Nonnull displayName;
- (nonnull instancetype)initWithValue:(NSString * _Nonnull)value displayName:(NSString * _Nonnull)displayName OBJC_DESIGNATED_INITIALIZER;
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
@end


SWIFT_CLASS("_TtC7LPInfra16LanguagesManager")
@interface LanguagesManager : NSObject
Expand Down
Loading

0 comments on commit 167c439

Please sign in to comment.