lpw
2022-03-11 10792d757f561de30e68eac0b79b38a85e3ca15a
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
//
//  AIHelpSupportSDK
//
//  Created by AIHelp.
//  Copyright © 2020 aihelp.net. All rights reserved.
//
 
#import <Foundation/Foundation.h>
#import <AIHelpSupportSDK/AIHelpSDKConfig.h>
#import <UIKit/UIKit.h>
 
typedef void (*AISupportInitCallBack)(void);
typedef void (*AISupportMessageCallBack)(const int unreadCount);
typedef void (*AISupportPingCallBack)(const NSString * log);
typedef void (*AISupportIsSpecificFormCallBack)(void);
typedef void (*AISupportOpenSDKCallBack)(void);
typedef void (*AISupportCloseSDKCallBack)(void);
typedef void (*AISupportOperationUnReadCallBack)(const bool hasUnreadArticles);
 
@interface AIHelpSupportSDK : NSObject
 
/**
 * Initialize AIHelp sdk
 *
 * When initializing AIHelp you must pass these three tokens. You initialize AIHelp by adding the following lines in the implementation file for your app delegate, ideally at the top of application:didFinishLaunchingWithOptions
 * @param apiKey This is your developer API Key
 * @param domainName This is your domain name without any http:// or forward slashes
 * @param appId  This is the unique ID assigned to your app
 */
+ (void)initWithApiKey:(NSString *)apiKey domainName:(NSString *)domainName appId:(NSString *)appId;
 
/**
 * Initialize AIHelp sdk
 *
 * When initializing AIHelp you must pass these three tokens. You initialize AIHelp by adding the following lines in the implementation file for your app delegate, ideally at the top of application:didFinishLaunchingWithOptions
 * @param apiKey This is your developer API Key
 * @param domainName This is your domain name without any http:// or forward slashes
 * @param appId  This is the unique ID assigned to your app
 * @param language  This is your expected init language
 */
+ (void)initWithApiKey:(NSString *)apiKey domainName:(NSString *)domainName appId:(NSString *)appId language:(NSString *)language;
 
/**
 * Show the AIHelp conversation screen, which is Elva bot by default.
 *
 * If you want to change your conversation intent or custom your welcome message, please check next method  for more information.
 */
+ (void)showConversation;
 
/**
 * Show the AIHelp conversation screen, with Optional Arguments.
 *
 * User CAN NOT get in touch with customer service in Bot page, unless there is an unfinished ticket or they submit a form from elva bot.
 * However, You could configure your default conversation intent with AIHelpConversationConfig.
 * For instance, You can show different welcome msg for different customer, make your customer service always online for your VIPs, even skipping BOT conversation and show customer service by default for them.
 * check AIHelpConversationConfig for more information.
 * @param conversationConfig configure different conversation actions
 */
+ (void)showConversation:(AIHelpConversationConfig *)conversationConfig;
 
/**
 * Show the AIHelp screen with only the faqs, which is root section by default.
 *
 * To show the AIHelp screen with only the faq sections with search with optional arguments, you can use this api.
 * If you want to pass some options to configure your faqs display, check next method  for more information.
 */
+ (void)showAllFAQSections;
 
/**
 * Show the AIHelp screen with only the faqs, with Optional Arguments.
 *
 * User can get in touch with your customer service via FAQs, you can configure this with ECServiceFAQConfig, Such as the EXACT moment user can see the CONTACT US button.
 * Besides, as you can get conversation via FAQs, you can configure your conversation configs wiith AIHelpConversationConfig.
 * @param config the configs which contains custom configurations for faqs & supports
 */
+ (void)showAllFAQSections:(AIHelpFAQConfig *)config;
 
/**
 * Show the AIHelp screen with faqs from a particular section.
 *
 * This api takes on the default options, if you want to pass some options to configure your faqs display, check next method  for more information.
 * @param sectionId the publish id associated with the faq section which is shown in the FAQ page on the admin side.(https://aihelp.net/dashboard/#/FAQ)
 */
+ (void)showFAQSection:(NSString *)sectionId;
 
/**
 * Show the AIHelp screen with faqs from a particular section, with Optional Arguments.
 *
 * User can get in touch with your customer service via FAQs, you can configure this with ECServiceFAQConfig,Such as the EXACT moment user can see the CONTACT US button.
 * Besides, as you can get conversation via FAQs, you can configure your conversation configs wiith AIHelpConversationConfig.
 *
 * @param sectionId the publish id associated with the faq section which is shown in the FAQ page on the admin side.(https://aihelp.net/dashboard/#/FAQ)
 * @param config the configs which contains custom configurations for faqs & supports
 */
+ (void)showFAQSection:(NSString *)sectionId config:(AIHelpFAQConfig *)config;
 
/**
 * Show the AIHelp screen with a single faq.
 *
 * This api takes on the default options, if you want to pass some options to configure your faq display, check next method for more information.
 * @param faqId    the publish id associated with the faq which is shown when you expand a single FAQ.(https://aihelp.net/dashboard/#/FAQ)
 */
+ (void)showSingleFAQ:(NSString *)faqId;
 
/**
 * Show the AIHelp screen with a single faq, with Optional Arguments.
 *
 * User can get in touch with your customer service via FAQs, you can configure this with ECServiceFAQConfig.
 * Such as the EXACT moment user can see the CONTACT US button, Besides, as you can get conversation via FAQs, you can configure your conversation configs wiith AIHelpConversationConfig.
 * @param faqId     the publish id associated with the faq which is shown when you expand a single FAQ.(https://aihelp.net/dashboard/#/FAQ)
 * @param config   the configs which contains custom configurations for faqs & supports
 */
+ (void)showSingleFAQ:(NSString *)faqId config:(AIHelpFAQConfig *)config;
 
/**
 * Show the AIHelp operation screen.
 *
 * This api takes on the default options, which selects Elva Bot by default.
 * If you want to change the operation default selection or elva bot title, please check next method for more information.
 */
+ (void)showOperation;
 
/**
 * Show the AIHelp operation screen, with Optional Arguments.
 *
 * You can change your default selection or elva bot title by passing in ECServiceOperationConfig.
 * Besides, as you can get conversation via FAQs, you can configure your conversation configs wiith AIHelpConversationConfig.
 * @param config the configs which contains custom configurations for operations & supports
 */
+ (void)showOperation:(AIHelpOperationConfig *)config;
 
/**
 * Update a user's profile via UserConfig.
 *
 * Please check ECServiceUserConfigfor more detail information.
 * @param config configs which contains all information about a user.
 */
+ (void)updateUserInfo:(AIHelpUserConfig *)config;
 
/**
 * Clear the values set to a user, reset the userId to deviceId, userName to 'anonymous'.
 */
+ (void)resetUserInfo;
 
/**
 * Change the SDK language. By default, the device's prefered language is used.
 *
 * The call will fail in the following cases :
 * 1. If a AIHelp session is already active at the time of invocation
 * 2. Language code is incorrect
 * 3. Corresponding localization file is not found
 * @param sdkLanguage the string representing the language code. For example, use 'fr' for French.
 */
+ (void)updateSDKLanguage:(NSString*)sdkLanguage;
 
/**
 * Set log path for uploading.
 *
 * In order to serve your customers well, you can upload customer-related-logs when tickets are created or
 * specific forms are submitted.
 * @param path the absolute path of log, which will be uploaded when needed
 */
+ (void)setUploadLogPath:(NSString*)path;
 
/**
 * set the pushToken and platform to enable push notifications.
 *
 * To enable push notifications in the Helpshift iOS SDK, set the Push Notifications’ deviceToken using this method inside your application:didRegisterForRemoteNotificationsWithDeviceToken application delegate.
 * NOTE: You must get the specific push sdk in your App BEFORE this invocation.
 *
 * @param pushToken    the pushToken received from the push notification servers.
 * @param pushPlatform the specific push platform, please check ElvaTokenPlatform  for more information.
 */
+ (void)setPushToken:(NSString*)pushToken pushPlatform:(AIHelpTokenPlatform)pushPlatform;
 
/**
 * Get current AIHelp SDK version
 * @return AIHelp SDK version
 */
+ (NSString*)getSDKVersion;
 
/**
 * Whether AIHelp session is visible to users
 * @return whether sdk is active
 */
+ (BOOL)isAIHelpShowing;
 
/**
 * Whether to print logs.
 *
 * It only works in Debug mode
 * @param enable YES/NO
 */
+ (void)enableLogging:(BOOL)enable;
 
/**
 * The preferred screen orientation sdk would like to run in.
 *
 * NOTE: The SDK direction must be included in the program direction Settings, otherwise the setting will fail
 * @param interfaceOrientationMask please refer to the UIInterfaceOrientationMask API
 */
+ (void)setSDKInterfaceOrientationMask:(UIInterfaceOrientationMask)interfaceOrientationMask;
 
/**
 * Set up host address for network check with result callback.
 *
 * With this api, you can get the network check result passing back to you.
 * @param address host address for network checking, without schemes such 'https://' or 'http://'.
 *                    For example, you can pass in 'www.google.com' or just 'google.com', no schemes are needed.
 * @param callback    network check result callback, you can get the check result via this callback
 */
+ (void)setNetworkCheckHostAddress:(NSString*)address callback:(AISupportPingCallBack)callback;
 
/**
 * Register callback for the process of AIHelp's initialization.
 *
 * After you register this callback, SDK will let you know if the init work is done.
 * You can call this method either before or after the init method.
 * @param callback callback for AIHelp initialization
 */
+ (void)setOnInitializedCallback:(AISupportInitCallBack)callback;
 
/**
 * start in-app unread message count polling
 *
 * This is a schedule work, get unread message count every five minutes.
 * If you want to stop a started polling, just pass null to the listener parameters.
 * @param callback callback for unread message polling
 */
+ (void)startUnreadMessageCountPolling:(AISupportMessageCallBack)callback;
 
/**
 * Set the SDK display mode
 *
 * Default following system
 * @param mode
            0: follow the system
            1: light mode
            2: dark mode
 */
+ (void)setSDKAppearanceMode:(int)mode;
 
/**
 * AIHelp provide additional support for some country or regions.
 *
 * @param countryOrRegion ISO country code, please check https://www.iso.org/obp/ui/#search to learn more.
 */
+ (void)additionalSupportFor:(AIHelpPublishCountryOrRegion)countryOrRegion;
 
+ (void)showUrl:(NSString *)url;
 
+ (void)setKeyWindow:(UIWindow *)keyWin;
 
+ (void)setOnAIHelpSessionOpenCallback:(AISupportOpenSDKCallBack)callback;
 
+ (void)setOnAIHelpSessionCloseCallback:(AISupportCloseSDKCallBack)callback;
 
+ (void)setOnSpecificFormSubmittedCallback:(AISupportIsSpecificFormCallBack)callBack;
 
+ (void)setOnOperationUnreadChangedCallback:(AISupportOperationUnReadCallBack)callback;
 
+ (void)setSDKEdgeInsetsWithTop:(float)top bottom:(float)bottom enable:(BOOL)enable;
+ (void)setSDKEdgeColorWithRed:(float)red green:(float)green blue:(float)blue alpha:(float)alpha;
 
 
@end