Skip to content

Commit

Permalink
release 3.9.0 for Xcode 10.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
luandrecast-lp committed Jun 18, 2019
1 parent b6527bb commit fbe0392
Show file tree
Hide file tree
Showing 143 changed files with 194 additions and 46 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.
94 changes: 80 additions & 14 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 @@ -920,6 +920,8 @@ SWIFT_CLASS("_TtC7LPInfra8LPConfig")
@property (nonatomic, strong) UIImage * _Nullable photoSharingOpenMenuImageButton;
/// photo sharing close menu custom button.
@property (nonatomic, strong) UIImage * _Nullable photoSharingCloseMenuImageButton;
/// enable file sharing to be received from agents.
@property (nonatomic) BOOL enableFileSharing;
/// File Cell Loader fill color
@property (nonatomic, strong) UIColor * _Nonnull fileCellLoaderFillColor;
/// Color of the loader progress line
Expand Down Expand Up @@ -1056,6 +1058,7 @@ SWIFT_CLASS("_TtC7LPInfra8LPConfig")
/// Flag to allow for images to be transferred from agent in LiveEngage
@property (nonatomic) BOOL enableReceivingImagesFromAgent;
@property (nonatomic) NSUInteger maxNumberOfSavedAudioFilesOnDisk;
@property (nonatomic) NSUInteger maxNumberOfSavedDocumentsOnDisk;
/// The maximum height of the input text field in pixels. Default is 100 pixels.
/// Cannot be smaller than 50 pixels
@property (nonatomic) CGFloat inputTextViewMaxHeight;
Expand Down Expand Up @@ -1426,8 +1429,12 @@ SWIFT_CLASS("_TtC7LPInfra13LPInfraFacade")
+ (void)uploadFileWithFile:(LPFileEntity * _Nonnull)file uploadRelativePath:(NSString * _Nonnull)uploadRelativePath tempURLSig:(NSString * _Nonnull)tempURLSig tempURLExpiry:(NSString * _Nonnull)tempURLExpiry completion:(void (^ _Nonnull)(LPFileEntity * _Nonnull))completion failure:(void (^ _Nonnull)(NSError * _Nonnull))failure;
/// Get full photo image from disk using file path.
/// If file path is invalid, an error will be invoked.
/// If file does not exist, function will return nil
/// If file does not exist on disk, function will return nil for image.
+ (void)getPhotoFromFileWithFile:(LPFileEntity * _Nonnull)file completion:(void (^ _Nonnull)(UIImage * _Nullable))completion failure:(void (^ _Nonnull)(NSError * _Nonnull))failure;
/// Ensure file has been written to disk.
/// If file path is invalid, an error will be invoked.
/// If file does not exist on disk, function will return nil for fileEntity.
+ (void)getFilefromFileEntityWithFileEntity:(LPFileEntity * _Nonnull)fileEntity completion:(void (^ _Nonnull)(LPFileEntity * _Nullable))completion failure:(void (^ _Nonnull)(NSError * _Nonnull))failure;
/// Get full thumbnail image from disk using file path.
/// If image fails to created or file path is invalid, an error will be invoked.
+ (void)getThumbnailFromFileWithFile:(LPFileEntity * _Nonnull)file completion:(void (^ _Nonnull)(UIImage * _Nullable))completion failure:(void (^ _Nonnull)(NSError * _Nonnull))failure;
Expand All @@ -1451,14 +1458,33 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, copy) NSString * _No
/// Get temporary folder path for storing temporary files
SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, copy) NSString * _Nonnull filesTemporaryDirectoryPath;)
+ (NSString * _Nonnull)filesTemporaryDirectoryPath SWIFT_WARN_UNUSED_RESULT;
/// Check if image extension
/// \param text text to check for image extension
/// Check if supported image extension
/// <ul>
/// <li>
/// Return Bool: file extension is supported
/// </li>
/// </ul>
/// \param text file extension type to be checked
///
+ (BOOL)isImageExtension:(NSString * _Nonnull)text SWIFT_WARN_UNUSED_RESULT;
/// Check if audio extension
/// \param text text to check for audio extension
/// Check if supported audio extension
/// <ul>
/// <li>
/// Return Bool: file extension is supported
/// </li>
/// </ul>
/// \param text file extension type to be checked
///
+ (BOOL)isAudioExtension:(NSString * _Nonnull)text SWIFT_WARN_UNUSED_RESULT;
/// Check if supported file extension
/// <ul>
/// <li>
/// Return Bool: file extension is supported
/// </li>
/// </ul>
/// \param text file extension type to be checked
///
+ (BOOL)isFileExtension:(NSString * _Nonnull)text SWIFT_WARN_UNUSED_RESULT;
/// Get Brand object for account ID
/// If there is no brand object for the account ID, a new brand will be created in DB
+ (LPBrandEntity * _Nonnull)getOrCreateBrandByAccountID:(NSString * _Nonnull)accountID SWIFT_WARN_UNUSED_RESULT;
Expand Down Expand Up @@ -1853,12 +1879,19 @@ SWIFT_CLASS("_TtC7LPInfra15LPMessageEntity")
/// ENUM to list major features to control from config.
/// <ul>
/// <li>
/// PhotoSharing: The ability to send photos from consumer side.
/// photoSharing: Enable sharing photos from consumer to agent.
/// </li>
/// <li>
/// audioSharing: Enable sharing audio from consumer to agent.
/// </li>
/// <li>
/// fileSharing: Allow sending files from agent to consumer. (photo and files)
/// </li>
/// </ul>
typedef SWIFT_ENUM(NSInteger, LPMessagingSDKFeature, closed) {
LPMessagingSDKFeaturePhotoSharing = 0,
LPMessagingSDKFeatureAudioSharing = 1,
LPMessagingSDKFeatureFileSharing = 2,
};


Expand Down Expand Up @@ -2766,7 +2799,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 @@ -3686,6 +3719,8 @@ SWIFT_CLASS("_TtC7LPInfra8LPConfig")
@property (nonatomic, strong) UIImage * _Nullable photoSharingOpenMenuImageButton;
/// photo sharing close menu custom button.
@property (nonatomic, strong) UIImage * _Nullable photoSharingCloseMenuImageButton;
/// enable file sharing to be received from agents.
@property (nonatomic) BOOL enableFileSharing;
/// File Cell Loader fill color
@property (nonatomic, strong) UIColor * _Nonnull fileCellLoaderFillColor;
/// Color of the loader progress line
Expand Down Expand Up @@ -3822,6 +3857,7 @@ SWIFT_CLASS("_TtC7LPInfra8LPConfig")
/// Flag to allow for images to be transferred from agent in LiveEngage
@property (nonatomic) BOOL enableReceivingImagesFromAgent;
@property (nonatomic) NSUInteger maxNumberOfSavedAudioFilesOnDisk;
@property (nonatomic) NSUInteger maxNumberOfSavedDocumentsOnDisk;
/// The maximum height of the input text field in pixels. Default is 100 pixels.
/// Cannot be smaller than 50 pixels
@property (nonatomic) CGFloat inputTextViewMaxHeight;
Expand Down Expand Up @@ -4192,8 +4228,12 @@ SWIFT_CLASS("_TtC7LPInfra13LPInfraFacade")
+ (void)uploadFileWithFile:(LPFileEntity * _Nonnull)file uploadRelativePath:(NSString * _Nonnull)uploadRelativePath tempURLSig:(NSString * _Nonnull)tempURLSig tempURLExpiry:(NSString * _Nonnull)tempURLExpiry completion:(void (^ _Nonnull)(LPFileEntity * _Nonnull))completion failure:(void (^ _Nonnull)(NSError * _Nonnull))failure;
/// Get full photo image from disk using file path.
/// If file path is invalid, an error will be invoked.
/// If file does not exist, function will return nil
/// If file does not exist on disk, function will return nil for image.
+ (void)getPhotoFromFileWithFile:(LPFileEntity * _Nonnull)file completion:(void (^ _Nonnull)(UIImage * _Nullable))completion failure:(void (^ _Nonnull)(NSError * _Nonnull))failure;
/// Ensure file has been written to disk.
/// If file path is invalid, an error will be invoked.
/// If file does not exist on disk, function will return nil for fileEntity.
+ (void)getFilefromFileEntityWithFileEntity:(LPFileEntity * _Nonnull)fileEntity completion:(void (^ _Nonnull)(LPFileEntity * _Nullable))completion failure:(void (^ _Nonnull)(NSError * _Nonnull))failure;
/// Get full thumbnail image from disk using file path.
/// If image fails to created or file path is invalid, an error will be invoked.
+ (void)getThumbnailFromFileWithFile:(LPFileEntity * _Nonnull)file completion:(void (^ _Nonnull)(UIImage * _Nullable))completion failure:(void (^ _Nonnull)(NSError * _Nonnull))failure;
Expand All @@ -4217,14 +4257,33 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, copy) NSString * _No
/// Get temporary folder path for storing temporary files
SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, copy) NSString * _Nonnull filesTemporaryDirectoryPath;)
+ (NSString * _Nonnull)filesTemporaryDirectoryPath SWIFT_WARN_UNUSED_RESULT;
/// Check if image extension
/// \param text text to check for image extension
/// Check if supported image extension
/// <ul>
/// <li>
/// Return Bool: file extension is supported
/// </li>
/// </ul>
/// \param text file extension type to be checked
///
+ (BOOL)isImageExtension:(NSString * _Nonnull)text SWIFT_WARN_UNUSED_RESULT;
/// Check if audio extension
/// \param text text to check for audio extension
/// Check if supported audio extension
/// <ul>
/// <li>
/// Return Bool: file extension is supported
/// </li>
/// </ul>
/// \param text file extension type to be checked
///
+ (BOOL)isAudioExtension:(NSString * _Nonnull)text SWIFT_WARN_UNUSED_RESULT;
/// Check if supported file extension
/// <ul>
/// <li>
/// Return Bool: file extension is supported
/// </li>
/// </ul>
/// \param text file extension type to be checked
///
+ (BOOL)isFileExtension:(NSString * _Nonnull)text SWIFT_WARN_UNUSED_RESULT;
/// Get Brand object for account ID
/// If there is no brand object for the account ID, a new brand will be created in DB
+ (LPBrandEntity * _Nonnull)getOrCreateBrandByAccountID:(NSString * _Nonnull)accountID SWIFT_WARN_UNUSED_RESULT;
Expand Down Expand Up @@ -4619,12 +4678,19 @@ SWIFT_CLASS("_TtC7LPInfra15LPMessageEntity")
/// ENUM to list major features to control from config.
/// <ul>
/// <li>
/// PhotoSharing: The ability to send photos from consumer side.
/// photoSharing: Enable sharing photos from consumer to agent.
/// </li>
/// <li>
/// audioSharing: Enable sharing audio from consumer to agent.
/// </li>
/// <li>
/// fileSharing: Allow sending files from agent to consumer. (photo and files)
/// </li>
/// </ul>
typedef SWIFT_ENUM(NSInteger, LPMessagingSDKFeature, closed) {
LPMessagingSDKFeaturePhotoSharing = 0,
LPMessagingSDKFeatureAudioSharing = 1,
LPMessagingSDKFeatureFileSharing = 2,
};


Expand Down
Loading

0 comments on commit fbe0392

Please sign in to comment.