capacitor-gleap-plugin 14.2.1 → 14.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CapacitorGleapPlugin.podspec +2 -2
- package/README.md +732 -9
- package/android/build.gradle +10 -10
- package/android/src/main/java/io/gleapplugins/capacitor/GleapPlugin.java +4 -0
- package/dist/docs.json +3685 -32
- package/dist/esm/definitions.d.ts +3 -1
- package/dist/esm/definitions.js.map +1 -1
- package/dist/esm/web.d.ts +3 -0
- package/dist/esm/web.js +1 -0
- package/dist/esm/web.js.map +1 -1
- package/dist/plugin.cjs.js +56 -61
- package/dist/plugin.cjs.js.map +1 -1
- package/dist/plugin.js +56 -61
- package/dist/plugin.js.map +1 -1
- package/ios/Plugin/GleapPlugin.swift +6 -0
- package/package.json +18 -18
package/dist/plugin.js
CHANGED
|
@@ -1,10 +1,6 @@
|
|
|
1
1
|
var capacitorGleap = (function (exports, core, Gleap$1) {
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
|
-
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
|
|
5
|
-
|
|
6
|
-
var Gleap__default = /*#__PURE__*/_interopDefaultLegacy(Gleap$1);
|
|
7
|
-
|
|
8
4
|
const Gleap = core.registerPlugin('Gleap', {
|
|
9
5
|
web: () => Promise.resolve().then(function () { return web; }).then(m => new m.GleapWeb()),
|
|
10
6
|
});
|
|
@@ -14,63 +10,63 @@ var capacitorGleap = (function (exports, core, Gleap$1) {
|
|
|
14
10
|
if (GleapWeb.initialized) {
|
|
15
11
|
return { initialized: true };
|
|
16
12
|
}
|
|
17
|
-
|
|
13
|
+
Gleap$1.initialize(options.API_KEY);
|
|
18
14
|
GleapWeb.initialized = true;
|
|
19
15
|
this.registerCallbackListeners();
|
|
20
16
|
return { initialized: true };
|
|
21
17
|
}
|
|
22
18
|
registerCallbackListeners() {
|
|
23
|
-
|
|
19
|
+
Gleap$1.on('open', () => {
|
|
24
20
|
this.notifyCallbacks('open', {});
|
|
25
21
|
});
|
|
26
|
-
|
|
22
|
+
Gleap$1.on('initialized', () => {
|
|
27
23
|
this.notifyCallbacks('initialized', {});
|
|
28
24
|
});
|
|
29
|
-
|
|
25
|
+
Gleap$1.on('close', () => {
|
|
30
26
|
this.notifyCallbacks('close', {});
|
|
31
27
|
});
|
|
32
|
-
|
|
28
|
+
Gleap$1.on('feedback-sent', formData => {
|
|
33
29
|
this.notifyCallbacks('feedback-sent', formData);
|
|
34
30
|
});
|
|
35
|
-
|
|
31
|
+
Gleap$1.on('outbound-sent', formData => {
|
|
36
32
|
this.notifyCallbacks('outbound-sent', formData);
|
|
37
33
|
});
|
|
38
|
-
|
|
34
|
+
Gleap$1.on('tool-execution', toolExecution => {
|
|
39
35
|
this.notifyCallbacks('tool-execution', toolExecution);
|
|
40
36
|
});
|
|
41
|
-
|
|
37
|
+
Gleap$1.on('flow-started', flow => {
|
|
42
38
|
this.notifyCallbacks('flow-started', flow);
|
|
43
39
|
});
|
|
44
|
-
|
|
40
|
+
Gleap$1.on('error-while-sending', () => {
|
|
45
41
|
this.notifyCallbacks('error-while-sending', {});
|
|
46
42
|
});
|
|
47
|
-
|
|
43
|
+
Gleap$1.on('unregister-pushmessage-group', groupName => {
|
|
48
44
|
this.notifyCallbacks('unregister-pushmessage-group', groupName);
|
|
49
45
|
});
|
|
50
|
-
|
|
46
|
+
Gleap$1.on('register-pushmessage-group', groupName => {
|
|
51
47
|
this.notifyCallbacks('register-pushmessage-group', groupName);
|
|
52
48
|
});
|
|
53
|
-
|
|
49
|
+
Gleap$1.on('unread-count-changed', groupName => {
|
|
54
50
|
this.notifyCallbacks('notification-count-updated', groupName);
|
|
55
51
|
});
|
|
56
|
-
|
|
52
|
+
Gleap$1.registerCustomAction(customAction => {
|
|
57
53
|
this.notifyCallbacks('custom-action-called', customAction);
|
|
58
54
|
});
|
|
59
55
|
}
|
|
60
56
|
async setAiTools(options) {
|
|
61
|
-
|
|
57
|
+
Gleap$1.setAiTools(options.tools);
|
|
62
58
|
return { aiToolsSet: true };
|
|
63
59
|
}
|
|
64
60
|
async setTicketAttribute(options) {
|
|
65
|
-
|
|
61
|
+
Gleap$1.setTicketAttribute(options.key, options.value);
|
|
66
62
|
return { setTicketAttribute: true };
|
|
67
63
|
}
|
|
68
64
|
async unsetTicketAttribute(options) {
|
|
69
|
-
|
|
65
|
+
Gleap$1.unsetTicketAttribute(options.key);
|
|
70
66
|
return { unsetTicketAttribute: true };
|
|
71
67
|
}
|
|
72
68
|
async clearTicketAttributes() {
|
|
73
|
-
|
|
69
|
+
Gleap$1.clearTicketAttributes();
|
|
74
70
|
return { clearTicketAttributes: true };
|
|
75
71
|
}
|
|
76
72
|
notifyCallbacks(event, data) {
|
|
@@ -86,28 +82,28 @@ var capacitorGleap = (function (exports, core, Gleap$1) {
|
|
|
86
82
|
}
|
|
87
83
|
async startClassicForm(options) {
|
|
88
84
|
var _a;
|
|
89
|
-
|
|
85
|
+
Gleap$1.startClassicForm((_a = options.formId) !== null && _a !== void 0 ? _a : '', options.showBackButton);
|
|
90
86
|
return { classicFormStarted: true };
|
|
91
87
|
}
|
|
92
88
|
async startConversation(options) {
|
|
93
|
-
|
|
89
|
+
Gleap$1.startConversation(options.showBackButton);
|
|
94
90
|
return { conversationStarted: true };
|
|
95
91
|
}
|
|
96
92
|
async openConversation(options) {
|
|
97
|
-
|
|
93
|
+
Gleap$1.openConversations(options.showBackButton);
|
|
98
94
|
return { conversationsOpened: true };
|
|
99
95
|
}
|
|
100
96
|
async showSurvey(options) {
|
|
101
|
-
|
|
97
|
+
Gleap$1.showSurvey(options.surveyId, options.format);
|
|
102
98
|
return { opened: true };
|
|
103
99
|
}
|
|
104
100
|
async showFeedbackButton(options) {
|
|
105
|
-
|
|
101
|
+
Gleap$1.showFeedbackButton(options.show ? true : false);
|
|
106
102
|
return { feedbackButtonShown: true };
|
|
107
103
|
}
|
|
108
104
|
async setDisableInAppNotifications(options) {
|
|
109
105
|
var _a;
|
|
110
|
-
|
|
106
|
+
Gleap$1.setDisableInAppNotifications((_a = options.disableInAppNotifications) !== null && _a !== void 0 ? _a : false);
|
|
111
107
|
return { inAppNotificationsDisabled: true };
|
|
112
108
|
}
|
|
113
109
|
async identify(options) {
|
|
@@ -117,67 +113,68 @@ var capacitorGleap = (function (exports, core, Gleap$1) {
|
|
|
117
113
|
phone: options.phone,
|
|
118
114
|
companyId: options.companyId,
|
|
119
115
|
companyName: options.companyName,
|
|
116
|
+
avatar: options.avatar,
|
|
120
117
|
sla: options.sla,
|
|
121
118
|
plan: options.plan,
|
|
122
119
|
value: options.value,
|
|
123
120
|
customData: options.customData,
|
|
124
121
|
};
|
|
125
122
|
if (options.userHash) {
|
|
126
|
-
|
|
123
|
+
Gleap$1.identify(options.userId, userData, options.userHash);
|
|
127
124
|
}
|
|
128
125
|
else {
|
|
129
|
-
|
|
126
|
+
Gleap$1.identify(options.userId, userData);
|
|
130
127
|
}
|
|
131
128
|
return { identify: true };
|
|
132
129
|
}
|
|
133
130
|
async updateContact(options) {
|
|
134
|
-
|
|
131
|
+
Gleap$1.updateContact(options);
|
|
135
132
|
return { identify: true };
|
|
136
133
|
}
|
|
137
134
|
async setNetworkLogsBlacklist(options) {
|
|
138
|
-
|
|
135
|
+
Gleap$1.setNetworkLogsBlacklist(options.blacklist);
|
|
139
136
|
return { blacklistSet: true };
|
|
140
137
|
}
|
|
141
138
|
async setNetworkLogPropsToIgnore(options) {
|
|
142
|
-
|
|
139
|
+
Gleap$1.setNetworkLogPropsToIgnore(options.propsToIgnore);
|
|
143
140
|
return { propsToIgnoreSet: true };
|
|
144
141
|
}
|
|
145
142
|
async setTags(options) {
|
|
146
|
-
|
|
143
|
+
Gleap$1.setTags(options.tags);
|
|
147
144
|
return { tagsSet: true };
|
|
148
145
|
}
|
|
149
146
|
async clearIdentity() {
|
|
150
|
-
|
|
147
|
+
Gleap$1.clearIdentity();
|
|
151
148
|
return { clearIdentity: true };
|
|
152
149
|
}
|
|
153
150
|
async getIdentity() {
|
|
154
|
-
return { identity:
|
|
151
|
+
return { identity: Gleap$1.getIdentity() };
|
|
155
152
|
}
|
|
156
153
|
async isUserIdentified() {
|
|
157
|
-
return { isUserIdentified:
|
|
154
|
+
return { isUserIdentified: Gleap$1.isUserIdentified() };
|
|
158
155
|
}
|
|
159
156
|
async attachCustomData(options) {
|
|
160
|
-
|
|
157
|
+
Gleap$1.attachCustomData(options.data);
|
|
161
158
|
return { attachedCustomData: true };
|
|
162
159
|
}
|
|
163
160
|
async setCustomData(options) {
|
|
164
|
-
|
|
161
|
+
Gleap$1.setCustomData(options.key, options.value);
|
|
165
162
|
return { setCustomData: true };
|
|
166
163
|
}
|
|
167
164
|
async removeCustomData(options) {
|
|
168
|
-
|
|
165
|
+
Gleap$1.removeCustomData(options.key);
|
|
169
166
|
return { removedCustomData: true };
|
|
170
167
|
}
|
|
171
168
|
async clearCustomData() {
|
|
172
|
-
|
|
169
|
+
Gleap$1.clearCustomData();
|
|
173
170
|
return { clearedCustomData: true };
|
|
174
171
|
}
|
|
175
172
|
async trackEvent(options) {
|
|
176
|
-
|
|
173
|
+
Gleap$1.trackEvent(options.name, options.data);
|
|
177
174
|
return { loggedEvent: true };
|
|
178
175
|
}
|
|
179
176
|
async trackPage(options) {
|
|
180
|
-
|
|
177
|
+
Gleap$1.trackEvent('pageView', {
|
|
181
178
|
page: options.pageName,
|
|
182
179
|
});
|
|
183
180
|
return { trackedPage: true };
|
|
@@ -185,21 +182,21 @@ var capacitorGleap = (function (exports, core, Gleap$1) {
|
|
|
185
182
|
async startFeedbackFlow(options) {
|
|
186
183
|
var _a;
|
|
187
184
|
if (!options.feedbackFlow) ;
|
|
188
|
-
|
|
185
|
+
Gleap$1.startFeedbackFlow((_a = options.feedbackFlow) !== null && _a !== void 0 ? _a : 'bugreporting', options.showBackButton);
|
|
189
186
|
return { startedFeedbackFlow: true };
|
|
190
187
|
}
|
|
191
188
|
async startBot(options) {
|
|
192
189
|
var _a;
|
|
193
190
|
if (!options.botId) ;
|
|
194
|
-
|
|
191
|
+
Gleap$1.startBot((_a = options.botId) !== null && _a !== void 0 ? _a : '', options.showBackButton);
|
|
195
192
|
return { startedBot: true };
|
|
196
193
|
}
|
|
197
194
|
async setLanguage(options) {
|
|
198
|
-
|
|
195
|
+
Gleap$1.setLanguage(options.languageCode);
|
|
199
196
|
return { setLanguage: options.languageCode };
|
|
200
197
|
}
|
|
201
198
|
async log(options) {
|
|
202
|
-
|
|
199
|
+
Gleap$1.log(options.message, options.logLevel);
|
|
203
200
|
return { logged: true };
|
|
204
201
|
}
|
|
205
202
|
async setEventCallback(callback) {
|
|
@@ -208,57 +205,57 @@ var capacitorGleap = (function (exports, core, Gleap$1) {
|
|
|
208
205
|
return callbackId;
|
|
209
206
|
}
|
|
210
207
|
async sendSilentCrashReport(options) {
|
|
211
|
-
|
|
208
|
+
Gleap$1.sendSilentCrashReport(options.description, options.severity, options.dataExclusion);
|
|
212
209
|
return { sentSilentBugReport: true };
|
|
213
210
|
}
|
|
214
211
|
async open() {
|
|
215
|
-
|
|
212
|
+
Gleap$1.open();
|
|
216
213
|
return { openedWidget: true };
|
|
217
214
|
}
|
|
218
215
|
async openFeatureRequests(options) {
|
|
219
|
-
|
|
216
|
+
Gleap$1.openFeatureRequests(options.showBackButton);
|
|
220
217
|
return { openedFeatureRequests: true };
|
|
221
218
|
}
|
|
222
219
|
async openNews(options) {
|
|
223
|
-
|
|
220
|
+
Gleap$1.openNews(options.showBackButton);
|
|
224
221
|
return { openedNews: true };
|
|
225
222
|
}
|
|
226
223
|
async openNewsArticle(options) {
|
|
227
|
-
|
|
224
|
+
Gleap$1.openNewsArticle(options.articleId, options.showBackButton);
|
|
228
225
|
return { opened: true };
|
|
229
226
|
}
|
|
230
227
|
async openHelpCenter(options) {
|
|
231
|
-
|
|
228
|
+
Gleap$1.openHelpCenter(options.showBackButton);
|
|
232
229
|
return { opened: true };
|
|
233
230
|
}
|
|
234
231
|
async openHelpCenterArticle(options) {
|
|
235
|
-
|
|
232
|
+
Gleap$1.openHelpCenterArticle(options.articleId, options.showBackButton);
|
|
236
233
|
return { opened: true };
|
|
237
234
|
}
|
|
238
235
|
async openHelpCenterCollection(options) {
|
|
239
|
-
|
|
236
|
+
Gleap$1.openHelpCenterCollection(options.collectionId, options.showBackButton);
|
|
240
237
|
return { opened: true };
|
|
241
238
|
}
|
|
242
239
|
async searchHelpCenter(options) {
|
|
243
|
-
|
|
240
|
+
Gleap$1.searchHelpCenter(options.term, options.showBackButton);
|
|
244
241
|
return { opened: true };
|
|
245
242
|
}
|
|
246
243
|
async close() {
|
|
247
|
-
|
|
244
|
+
Gleap$1.close();
|
|
248
245
|
return { closedWidget: true };
|
|
249
246
|
}
|
|
250
247
|
async isOpened() {
|
|
251
|
-
return { isOpened:
|
|
248
|
+
return { isOpened: Gleap$1.isOpened() };
|
|
252
249
|
}
|
|
253
250
|
async disableConsoleLogOverwrite() {
|
|
254
|
-
|
|
251
|
+
Gleap$1.disableConsoleLogOverwrite();
|
|
255
252
|
return { consoleLogDisabled: true };
|
|
256
253
|
}
|
|
257
254
|
async enableDebugConsoleLog() {
|
|
258
255
|
return { debugConsoleLogEnabled: true };
|
|
259
256
|
}
|
|
260
257
|
async preFillForm(options) {
|
|
261
|
-
|
|
258
|
+
Gleap$1.preFillForm(options.data);
|
|
262
259
|
return { preFilledForm: true };
|
|
263
260
|
}
|
|
264
261
|
async addAttachment(_options) {
|
|
@@ -287,8 +284,6 @@ var capacitorGleap = (function (exports, core, Gleap$1) {
|
|
|
287
284
|
|
|
288
285
|
exports.Gleap = Gleap;
|
|
289
286
|
|
|
290
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
|
291
|
-
|
|
292
287
|
return exports;
|
|
293
288
|
|
|
294
289
|
})({}, capacitorExports, Gleap$1);
|
package/dist/plugin.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plugin.js","sources":["esm/index.js","esm/web.js"],"sourcesContent":["import { registerPlugin } from '@capacitor/core';\nconst Gleap = registerPlugin('Gleap', {\n web: () => import('./web').then(m => new m.GleapWeb()),\n});\nexport * from './definitions';\nexport { Gleap };\n//# sourceMappingURL=index.js.map","import { WebPlugin } from '@capacitor/core';\nimport Gleap from 'gleap';\nexport class GleapWeb extends WebPlugin {\n async initialize(options) {\n if (GleapWeb.initialized) {\n return { initialized: true };\n }\n Gleap.initialize(options.API_KEY);\n GleapWeb.initialized = true;\n this.registerCallbackListeners();\n return { initialized: true };\n }\n registerCallbackListeners() {\n Gleap.on('open', () => {\n this.notifyCallbacks('open', {});\n });\n Gleap.on('initialized', () => {\n this.notifyCallbacks('initialized', {});\n });\n Gleap.on('close', () => {\n this.notifyCallbacks('close', {});\n });\n Gleap.on('feedback-sent', formData => {\n this.notifyCallbacks('feedback-sent', formData);\n });\n Gleap.on('outbound-sent', formData => {\n this.notifyCallbacks('outbound-sent', formData);\n });\n Gleap.on('tool-execution', toolExecution => {\n this.notifyCallbacks('tool-execution', toolExecution);\n });\n Gleap.on('flow-started', flow => {\n this.notifyCallbacks('flow-started', flow);\n });\n Gleap.on('error-while-sending', () => {\n this.notifyCallbacks('error-while-sending', {});\n });\n Gleap.on('unregister-pushmessage-group', groupName => {\n this.notifyCallbacks('unregister-pushmessage-group', groupName);\n });\n Gleap.on('register-pushmessage-group', groupName => {\n this.notifyCallbacks('register-pushmessage-group', groupName);\n });\n Gleap.on('unread-count-changed', groupName => {\n this.notifyCallbacks('notification-count-updated', groupName);\n });\n Gleap.registerCustomAction(customAction => {\n this.notifyCallbacks('custom-action-called', customAction);\n });\n }\n async setAiTools(options) {\n Gleap.setAiTools(options.tools);\n return { aiToolsSet: true };\n }\n async setTicketAttribute(options) {\n Gleap.setTicketAttribute(options.key, options.value);\n return { setTicketAttribute: true };\n }\n async unsetTicketAttribute(options) {\n Gleap.unsetTicketAttribute(options.key);\n return { unsetTicketAttribute: true };\n }\n async clearTicketAttributes() {\n Gleap.clearTicketAttributes();\n return { clearTicketAttributes: true };\n }\n notifyCallbacks(event, data) {\n if (!GleapWeb.callbacks) {\n return;\n }\n for (var callbackId in GleapWeb.callbacks) {\n GleapWeb.callbacks[callbackId]({\n name: event,\n data,\n });\n }\n }\n async startClassicForm(options) {\n var _a;\n Gleap.startClassicForm((_a = options.formId) !== null && _a !== void 0 ? _a : '', options.showBackButton);\n return { classicFormStarted: true };\n }\n async startConversation(options) {\n Gleap.startConversation(options.showBackButton);\n return { conversationStarted: true };\n }\n async openConversation(options) {\n Gleap.openConversations(options.showBackButton);\n return { conversationsOpened: true };\n }\n async showSurvey(options) {\n Gleap.showSurvey(options.surveyId, options.format);\n return { opened: true };\n }\n async showFeedbackButton(options) {\n Gleap.showFeedbackButton(options.show ? true : false);\n return { feedbackButtonShown: true };\n }\n async setDisableInAppNotifications(options) {\n var _a;\n Gleap.setDisableInAppNotifications((_a = options.disableInAppNotifications) !== null && _a !== void 0 ? _a : false);\n return { inAppNotificationsDisabled: true };\n }\n async identify(options) {\n var userData = {\n name: options.name,\n email: options.email,\n phone: options.phone,\n companyId: options.companyId,\n companyName: options.companyName,\n sla: options.sla,\n plan: options.plan,\n value: options.value,\n customData: options.customData,\n };\n if (options.userHash) {\n Gleap.identify(options.userId, userData, options.userHash);\n }\n else {\n Gleap.identify(options.userId, userData);\n }\n return { identify: true };\n }\n async updateContact(options) {\n Gleap.updateContact(options);\n return { identify: true };\n }\n async setNetworkLogsBlacklist(options) {\n Gleap.setNetworkLogsBlacklist(options.blacklist);\n return { blacklistSet: true };\n }\n async setNetworkLogPropsToIgnore(options) {\n Gleap.setNetworkLogPropsToIgnore(options.propsToIgnore);\n return { propsToIgnoreSet: true };\n }\n async setTags(options) {\n Gleap.setTags(options.tags);\n return { tagsSet: true };\n }\n async clearIdentity() {\n Gleap.clearIdentity();\n return { clearIdentity: true };\n }\n async getIdentity() {\n return { identity: Gleap.getIdentity() };\n }\n async isUserIdentified() {\n return { isUserIdentified: Gleap.isUserIdentified() };\n }\n async attachCustomData(options) {\n Gleap.attachCustomData(options.data);\n return { attachedCustomData: true };\n }\n async setCustomData(options) {\n Gleap.setCustomData(options.key, options.value);\n return { setCustomData: true };\n }\n async removeCustomData(options) {\n Gleap.removeCustomData(options.key);\n return { removedCustomData: true };\n }\n async clearCustomData() {\n Gleap.clearCustomData();\n return { clearedCustomData: true };\n }\n async trackEvent(options) {\n Gleap.trackEvent(options.name, options.data);\n return { loggedEvent: true };\n }\n async trackPage(options) {\n Gleap.trackEvent('pageView', {\n page: options.pageName,\n });\n return { trackedPage: true };\n }\n async startFeedbackFlow(options) {\n var _a;\n if (!options.feedbackFlow) {\n }\n Gleap.startFeedbackFlow((_a = options.feedbackFlow) !== null && _a !== void 0 ? _a : 'bugreporting', options.showBackButton);\n return { startedFeedbackFlow: true };\n }\n async startBot(options) {\n var _a;\n if (!options.botId) {\n }\n Gleap.startBot((_a = options.botId) !== null && _a !== void 0 ? _a : '', options.showBackButton);\n return { startedBot: true };\n }\n async setLanguage(options) {\n Gleap.setLanguage(options.languageCode);\n return { setLanguage: options.languageCode };\n }\n async log(options) {\n Gleap.log(options.message, options.logLevel);\n return { logged: true };\n }\n async setEventCallback(callback) {\n var callbackId = this.makeid(10);\n GleapWeb.callbacks[callbackId] = callback;\n return callbackId;\n }\n async sendSilentCrashReport(options) {\n Gleap.sendSilentCrashReport(options.description, options.severity, options.dataExclusion);\n return { sentSilentBugReport: true };\n }\n async open() {\n Gleap.open();\n return { openedWidget: true };\n }\n async openFeatureRequests(options) {\n Gleap.openFeatureRequests(options.showBackButton);\n return { openedFeatureRequests: true };\n }\n async openNews(options) {\n Gleap.openNews(options.showBackButton);\n return { openedNews: true };\n }\n async openNewsArticle(options) {\n Gleap.openNewsArticle(options.articleId, options.showBackButton);\n return { opened: true };\n }\n async openHelpCenter(options) {\n Gleap.openHelpCenter(options.showBackButton);\n return { opened: true };\n }\n async openHelpCenterArticle(options) {\n Gleap.openHelpCenterArticle(options.articleId, options.showBackButton);\n return { opened: true };\n }\n async openHelpCenterCollection(options) {\n Gleap.openHelpCenterCollection(options.collectionId, options.showBackButton);\n return { opened: true };\n }\n async searchHelpCenter(options) {\n Gleap.searchHelpCenter(options.term, options.showBackButton);\n return { opened: true };\n }\n async close() {\n Gleap.close();\n return { closedWidget: true };\n }\n async isOpened() {\n return { isOpened: Gleap.isOpened() };\n }\n async disableConsoleLogOverwrite() {\n Gleap.disableConsoleLogOverwrite();\n return { consoleLogDisabled: true };\n }\n async enableDebugConsoleLog() {\n return { debugConsoleLogEnabled: true };\n }\n async preFillForm(options) {\n Gleap.preFillForm(options.data);\n return { preFilledForm: true };\n }\n async addAttachment(_options) {\n throw this.unavailable('addAttachment not available for browsers');\n }\n async removeAllAttachments() {\n throw this.unavailable('removeAllAttachments not available for browsers');\n }\n makeid(length) {\n var result = '';\n var characters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';\n var charactersLength = characters.length;\n for (var i = 0; i < length; i++) {\n result += characters.charAt(Math.floor(Math.random() * charactersLength));\n }\n return result;\n }\n}\nGleapWeb.callbacks = {};\nGleapWeb.initialized = false;\n//# sourceMappingURL=web.js.map"],"names":["registerPlugin","WebPlugin","Gleap"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"plugin.js","sources":["esm/index.js","esm/web.js"],"sourcesContent":["import { registerPlugin } from '@capacitor/core';\nconst Gleap = registerPlugin('Gleap', {\n web: () => import('./web').then(m => new m.GleapWeb()),\n});\nexport * from './definitions';\nexport { Gleap };\n//# sourceMappingURL=index.js.map","import { WebPlugin } from '@capacitor/core';\nimport Gleap from 'gleap';\nexport class GleapWeb extends WebPlugin {\n async initialize(options) {\n if (GleapWeb.initialized) {\n return { initialized: true };\n }\n Gleap.initialize(options.API_KEY);\n GleapWeb.initialized = true;\n this.registerCallbackListeners();\n return { initialized: true };\n }\n registerCallbackListeners() {\n Gleap.on('open', () => {\n this.notifyCallbacks('open', {});\n });\n Gleap.on('initialized', () => {\n this.notifyCallbacks('initialized', {});\n });\n Gleap.on('close', () => {\n this.notifyCallbacks('close', {});\n });\n Gleap.on('feedback-sent', formData => {\n this.notifyCallbacks('feedback-sent', formData);\n });\n Gleap.on('outbound-sent', formData => {\n this.notifyCallbacks('outbound-sent', formData);\n });\n Gleap.on('tool-execution', toolExecution => {\n this.notifyCallbacks('tool-execution', toolExecution);\n });\n Gleap.on('flow-started', flow => {\n this.notifyCallbacks('flow-started', flow);\n });\n Gleap.on('error-while-sending', () => {\n this.notifyCallbacks('error-while-sending', {});\n });\n Gleap.on('unregister-pushmessage-group', groupName => {\n this.notifyCallbacks('unregister-pushmessage-group', groupName);\n });\n Gleap.on('register-pushmessage-group', groupName => {\n this.notifyCallbacks('register-pushmessage-group', groupName);\n });\n Gleap.on('unread-count-changed', groupName => {\n this.notifyCallbacks('notification-count-updated', groupName);\n });\n Gleap.registerCustomAction(customAction => {\n this.notifyCallbacks('custom-action-called', customAction);\n });\n }\n async setAiTools(options) {\n Gleap.setAiTools(options.tools);\n return { aiToolsSet: true };\n }\n async setTicketAttribute(options) {\n Gleap.setTicketAttribute(options.key, options.value);\n return { setTicketAttribute: true };\n }\n async unsetTicketAttribute(options) {\n Gleap.unsetTicketAttribute(options.key);\n return { unsetTicketAttribute: true };\n }\n async clearTicketAttributes() {\n Gleap.clearTicketAttributes();\n return { clearTicketAttributes: true };\n }\n notifyCallbacks(event, data) {\n if (!GleapWeb.callbacks) {\n return;\n }\n for (var callbackId in GleapWeb.callbacks) {\n GleapWeb.callbacks[callbackId]({\n name: event,\n data,\n });\n }\n }\n async startClassicForm(options) {\n var _a;\n Gleap.startClassicForm((_a = options.formId) !== null && _a !== void 0 ? _a : '', options.showBackButton);\n return { classicFormStarted: true };\n }\n async startConversation(options) {\n Gleap.startConversation(options.showBackButton);\n return { conversationStarted: true };\n }\n async openConversation(options) {\n Gleap.openConversations(options.showBackButton);\n return { conversationsOpened: true };\n }\n async showSurvey(options) {\n Gleap.showSurvey(options.surveyId, options.format);\n return { opened: true };\n }\n async showFeedbackButton(options) {\n Gleap.showFeedbackButton(options.show ? true : false);\n return { feedbackButtonShown: true };\n }\n async setDisableInAppNotifications(options) {\n var _a;\n Gleap.setDisableInAppNotifications((_a = options.disableInAppNotifications) !== null && _a !== void 0 ? _a : false);\n return { inAppNotificationsDisabled: true };\n }\n async identify(options) {\n var userData = {\n name: options.name,\n email: options.email,\n phone: options.phone,\n companyId: options.companyId,\n companyName: options.companyName,\n avatar: options.avatar,\n sla: options.sla,\n plan: options.plan,\n value: options.value,\n customData: options.customData,\n };\n if (options.userHash) {\n Gleap.identify(options.userId, userData, options.userHash);\n }\n else {\n Gleap.identify(options.userId, userData);\n }\n return { identify: true };\n }\n async updateContact(options) {\n Gleap.updateContact(options);\n return { identify: true };\n }\n async setNetworkLogsBlacklist(options) {\n Gleap.setNetworkLogsBlacklist(options.blacklist);\n return { blacklistSet: true };\n }\n async setNetworkLogPropsToIgnore(options) {\n Gleap.setNetworkLogPropsToIgnore(options.propsToIgnore);\n return { propsToIgnoreSet: true };\n }\n async setTags(options) {\n Gleap.setTags(options.tags);\n return { tagsSet: true };\n }\n async clearIdentity() {\n Gleap.clearIdentity();\n return { clearIdentity: true };\n }\n async getIdentity() {\n return { identity: Gleap.getIdentity() };\n }\n async isUserIdentified() {\n return { isUserIdentified: Gleap.isUserIdentified() };\n }\n async attachCustomData(options) {\n Gleap.attachCustomData(options.data);\n return { attachedCustomData: true };\n }\n async setCustomData(options) {\n Gleap.setCustomData(options.key, options.value);\n return { setCustomData: true };\n }\n async removeCustomData(options) {\n Gleap.removeCustomData(options.key);\n return { removedCustomData: true };\n }\n async clearCustomData() {\n Gleap.clearCustomData();\n return { clearedCustomData: true };\n }\n async trackEvent(options) {\n Gleap.trackEvent(options.name, options.data);\n return { loggedEvent: true };\n }\n async trackPage(options) {\n Gleap.trackEvent('pageView', {\n page: options.pageName,\n });\n return { trackedPage: true };\n }\n async startFeedbackFlow(options) {\n var _a;\n if (!options.feedbackFlow) {\n }\n Gleap.startFeedbackFlow((_a = options.feedbackFlow) !== null && _a !== void 0 ? _a : 'bugreporting', options.showBackButton);\n return { startedFeedbackFlow: true };\n }\n async startBot(options) {\n var _a;\n if (!options.botId) {\n }\n Gleap.startBot((_a = options.botId) !== null && _a !== void 0 ? _a : '', options.showBackButton);\n return { startedBot: true };\n }\n async setLanguage(options) {\n Gleap.setLanguage(options.languageCode);\n return { setLanguage: options.languageCode };\n }\n async log(options) {\n Gleap.log(options.message, options.logLevel);\n return { logged: true };\n }\n async setEventCallback(callback) {\n var callbackId = this.makeid(10);\n GleapWeb.callbacks[callbackId] = callback;\n return callbackId;\n }\n async sendSilentCrashReport(options) {\n Gleap.sendSilentCrashReport(options.description, options.severity, options.dataExclusion);\n return { sentSilentBugReport: true };\n }\n async open() {\n Gleap.open();\n return { openedWidget: true };\n }\n async openFeatureRequests(options) {\n Gleap.openFeatureRequests(options.showBackButton);\n return { openedFeatureRequests: true };\n }\n async openNews(options) {\n Gleap.openNews(options.showBackButton);\n return { openedNews: true };\n }\n async openNewsArticle(options) {\n Gleap.openNewsArticle(options.articleId, options.showBackButton);\n return { opened: true };\n }\n async openHelpCenter(options) {\n Gleap.openHelpCenter(options.showBackButton);\n return { opened: true };\n }\n async openHelpCenterArticle(options) {\n Gleap.openHelpCenterArticle(options.articleId, options.showBackButton);\n return { opened: true };\n }\n async openHelpCenterCollection(options) {\n Gleap.openHelpCenterCollection(options.collectionId, options.showBackButton);\n return { opened: true };\n }\n async searchHelpCenter(options) {\n Gleap.searchHelpCenter(options.term, options.showBackButton);\n return { opened: true };\n }\n async close() {\n Gleap.close();\n return { closedWidget: true };\n }\n async isOpened() {\n return { isOpened: Gleap.isOpened() };\n }\n async disableConsoleLogOverwrite() {\n Gleap.disableConsoleLogOverwrite();\n return { consoleLogDisabled: true };\n }\n async enableDebugConsoleLog() {\n return { debugConsoleLogEnabled: true };\n }\n async preFillForm(options) {\n Gleap.preFillForm(options.data);\n return { preFilledForm: true };\n }\n async addAttachment(_options) {\n throw this.unavailable('addAttachment not available for browsers');\n }\n async removeAllAttachments() {\n throw this.unavailable('removeAllAttachments not available for browsers');\n }\n makeid(length) {\n var result = '';\n var characters = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789';\n var charactersLength = characters.length;\n for (var i = 0; i < length; i++) {\n result += characters.charAt(Math.floor(Math.random() * charactersLength));\n }\n return result;\n }\n}\nGleapWeb.callbacks = {};\nGleapWeb.initialized = false;\n//# sourceMappingURL=web.js.map"],"names":["registerPlugin","WebPlugin","Gleap"],"mappings":"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"}
|
|
@@ -64,6 +64,9 @@ public class GleapPlugin: CAPPlugin, GleapDelegate {
|
|
|
64
64
|
if (call.getString("companyId") != nil) {
|
|
65
65
|
userProperty.companyId = call.getString("companyId") ?? ""
|
|
66
66
|
}
|
|
67
|
+
if (call.getString("avatar") != nil) {
|
|
68
|
+
userProperty.avatar = call.getString("avatar") ?? ""
|
|
69
|
+
}
|
|
67
70
|
if (call.getObject("customData") != nil) {
|
|
68
71
|
userProperty.customData = call.getObject("customData")!
|
|
69
72
|
}
|
|
@@ -107,6 +110,9 @@ public class GleapPlugin: CAPPlugin, GleapDelegate {
|
|
|
107
110
|
if (call.getString("companyId") != nil) {
|
|
108
111
|
userProperty.companyId = call.getString("companyId") ?? ""
|
|
109
112
|
}
|
|
113
|
+
if (call.getString("avatar") != nil) {
|
|
114
|
+
userProperty.avatar = call.getString("avatar") ?? ""
|
|
115
|
+
}
|
|
110
116
|
if (call.getObject("customData") != nil) {
|
|
111
117
|
userProperty.customData = call.getObject("customData")!
|
|
112
118
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "capacitor-gleap-plugin",
|
|
3
|
-
"version": "14.
|
|
3
|
+
"version": "14.5.0",
|
|
4
4
|
"description": "Gleap SDK for Capacitor is the easiest way to integrate Gleap into your Ionic apps! Achieve better app quality with comprehensive in-app bug reporting & customer feedback for your web-apps and websites. Many thanks to Stephan Nagel (congrapp) for his work on the Gleap capacitor plugin.",
|
|
5
5
|
"main": "dist/plugin.cjs.js",
|
|
6
6
|
"module": "dist/esm/index.js",
|
|
@@ -35,32 +35,32 @@
|
|
|
35
35
|
"lint": "npm run eslint && npm run prettier -- --check && npm run swiftlint -- lint",
|
|
36
36
|
"fmt": "npm run eslint -- --fix && npm run prettier -- --write && npm run swiftlint -- --fix --format",
|
|
37
37
|
"eslint": "eslint . --ext ts",
|
|
38
|
-
"prettier": "prettier \"**/*.{css,html,ts,js,java}\"",
|
|
38
|
+
"prettier": "prettier \"**/*.{css,html,ts,js,java}\" --plugin=prettier-plugin-java",
|
|
39
39
|
"swiftlint": "node-swiftlint",
|
|
40
40
|
"docgen": "docgen --api GleapPlugin --output-readme README.md --output-json dist/docs.json",
|
|
41
|
-
"build": "npm run clean && npm run docgen && tsc && rollup -c rollup.config.
|
|
41
|
+
"build": "npm run clean && npm run docgen && tsc && rollup -c rollup.config.mjs",
|
|
42
42
|
"clean": "rimraf ./dist",
|
|
43
43
|
"watch": "tsc --watch",
|
|
44
44
|
"prepublishOnly": "npm run build"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@capacitor/android": "^
|
|
48
|
-
"@capacitor/core": "^
|
|
49
|
-
"@capacitor/docgen": "^0.0
|
|
50
|
-
"@capacitor/ios": "^
|
|
51
|
-
"@ionic/eslint-config": "^0.
|
|
52
|
-
"@ionic/prettier-config": "^
|
|
53
|
-
"@ionic/swiftlint-config": "^
|
|
54
|
-
"eslint": "^
|
|
55
|
-
"prettier": "
|
|
56
|
-
"prettier-plugin-java": "
|
|
57
|
-
"rimraf": "^
|
|
58
|
-
"rollup": "^
|
|
59
|
-
"swiftlint": "^
|
|
47
|
+
"@capacitor/android": "^7.0.0",
|
|
48
|
+
"@capacitor/core": "^7.0.0",
|
|
49
|
+
"@capacitor/docgen": "^0.3.0",
|
|
50
|
+
"@capacitor/ios": "^7.0.0",
|
|
51
|
+
"@ionic/eslint-config": "^0.4.0",
|
|
52
|
+
"@ionic/prettier-config": "^4.0.0",
|
|
53
|
+
"@ionic/swiftlint-config": "^2.0.0",
|
|
54
|
+
"eslint": "^8.57.0",
|
|
55
|
+
"prettier": "^3.4.2",
|
|
56
|
+
"prettier-plugin-java": "^2.6.6",
|
|
57
|
+
"rimraf": "^6.0.1",
|
|
58
|
+
"rollup": "^4.30.1",
|
|
59
|
+
"swiftlint": "^2.0.0",
|
|
60
60
|
"typescript": "~4.1.5"
|
|
61
61
|
},
|
|
62
62
|
"peerDependencies": {
|
|
63
|
-
"@capacitor/core": "
|
|
63
|
+
"@capacitor/core": ">=7.0.0"
|
|
64
64
|
},
|
|
65
65
|
"prettier": "@ionic/prettier-config",
|
|
66
66
|
"swiftlint": "@ionic/swiftlint-config",
|
|
@@ -76,6 +76,6 @@
|
|
|
76
76
|
}
|
|
77
77
|
},
|
|
78
78
|
"dependencies": {
|
|
79
|
-
"gleap": "14.
|
|
79
|
+
"gleap": "14.5.0"
|
|
80
80
|
}
|
|
81
81
|
}
|