From d99a25ca0a7a15a926e7778346c947efc5661829 Mon Sep 17 00:00:00 2001 From: lpw Date: Sat, 03 Jun 2023 09:19:39 +0800 Subject: [PATCH] 3.15.0 --- frameworks/AIHelpSupportSDK.framework/Headers/AIHelpSDKConfig.h | 53 +++++++++++++++-------------------------------------- 1 files changed, 15 insertions(+), 38 deletions(-) diff --git a/frameworks/AIHelpSupportSDK.framework/Headers/AIHelpSDKConfig.h b/frameworks/AIHelpSupportSDK.framework/Headers/AIHelpSDKConfig.h index 216f704..3c6f714 100644 --- a/frameworks/AIHelpSupportSDK.framework/Headers/AIHelpSDKConfig.h +++ b/frameworks/AIHelpSupportSDK.framework/Headers/AIHelpSDKConfig.h @@ -12,6 +12,8 @@ AIHelpTokenPlatformFirebase = 2, // firebase-FCM AIHelpTokenPlatformJpush = 3, // Jpush AIHelpTokenPlatformGeTui = 4, // GeTui + AIHelpTokenPlatformHUAWEI = 6, // HUAWEI + AIHelpTokenPlatformOneSignal = 7, // OneSignal }; typedef NS_ENUM(int,AIHelpConversationIntent) { /* ConversationIntent enum */ @@ -31,6 +33,13 @@ AIHelpIN }; +typedef NS_ENUM(int, AIHelpFAQSupportEntrance) { + AIHelpFAQSupportEntranceHomePage = 1, + AIHelpFAQSupportEntranceQuestionList = 2, + AIHelpFAQSupportEntranceAnswerPage = 3, + AIHelpFAQSupportEntranceAfterMarkingUnhelpful = 4 +}; + #pragma mark - ECServiceUserConfig @interface AIHelpUserConfig : NSObject @@ -44,49 +53,17 @@ @property (nonatomic, strong)NSArray *userTags; // If you assign this field with existing tags from aihelp admin dashboard, the tickets created by current user will take these tags by default. @property (nonatomic, strong)NSDictionary *customData; // Set custom meta data you want to see in the aihelp admin dashboard. @property (nonatomic, assign)BOOL isSyncCrmInfo; // If you set this to true, when you update current user's information, the sdk will sync user's information to you crm database. -@property(nonatomic,copy)NSString *pushToken; -@property(nonatomic,assign)AIHelpTokenPlatform pushPlatform; - (AIHelpUserConfig *)build; @end +#pragma mark - AIHelpApiConfig -#pragma mark - ECServiceConversationConfig - -@interface AIHelpConversationConfig : NSObject +@interface AIHelpApiConfig : NSObject - (id) init NS_UNAVAILABLE; @end -@interface AIHelpConversationConfigBuilder : NSObject -@property (nonatomic, assign)AIHelpConversationIntent conversationIntent; // show elva bot page or show conversation page -@property (nonatomic, assign)BOOL alwaysShowHumanSupportButtonInBotPage; // default is NO.if you set ture,user can always see the contact us button -@property (nonatomic, copy)NSString *welcomeMessage; // default is http://aihelp.net/dashboard setting. you can show different welcome msg by different users with this param, It has a higher priority. -@property (nonatomic, copy)NSString *storyNode; // set specific story node for specific scene. With this api call, you can show different stories in different scenes. the story node's User Say content you configured in aihelp admin dashboard.(http://aihelp.net/dashboard) -- (AIHelpConversationConfig *)build; -@end - - -#pragma mark - ECServiceFAQConfig - -@interface AIHelpFAQConfig : NSObject -- (id) init NS_UNAVAILABLE; -@end - -@interface AIHelpFAQConfigBuilder : NSObject -@property (nonatomic, assign)AIHelpFAQShowConversationMoment showConversationMoment; // see enum -> ElvaFAQShowConversationMoment -@property (nonatomic, strong)AIHelpConversationConfig *conversationConfig; // see config -> ECServiceConversationConfig -- (AIHelpFAQConfig *)build; -@end - - -#pragma mark - ECServiceOperationConfig - -@interface AIHelpOperationConfig : NSObject -- (id) init NS_UNAVAILABLE; -@end - -@interface AIHelpOperationConfigBuilder : NSObject -@property (nonatomic, assign)int selectIndex; // default is elva tab. If you set a negative index, or index larger than the total tab counts, the selected tab will still be elva. -@property (nonatomic, copy)NSString *conversationTitle; // default is "HELP", you can change the operation conversation bot title -@property (nonatomic, strong)AIHelpConversationConfig *conversationConfig; // see config -> ECServiceConversationConfig -- (AIHelpOperationConfig *)build; +@interface AIHelpApiConfigBuilder : NSObject +@property (nonatomic, copy)NSString *entranceId; +@property (nonatomic, copy)NSString *welcomeMessage; +- (AIHelpApiConfig *)build; @end -- Gitblit v1.8.0