You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'Guidefox helps app owners build knowledge and user-experience oriented apps. It includes the following features: welcome tours, popups, banners, helper links, hints',
34
+
header: 'GuideFox Intro',
35
+
headerBackgroundColor: '#FFFFFF',
36
+
headerColor: '#101828',
37
+
textColor: '#101828',
38
+
buttonBackgroundColor: '#7F56D9',
39
+
buttonTextColor: '#FFFFFF',
40
+
createdBy: 1,
41
+
repetitionType: 'show only once',
42
+
isHintIconVisible: true
43
+
},
44
+
],
45
+
{}
46
+
);
47
+
48
+
awaitqueryInterface.bulkInsert(
49
+
"popups",
50
+
[
51
+
{
52
+
popupSize: "small",
53
+
closeButtonAction: "open url",
54
+
url: "https://guidefox-demo.bluewavelabs.ca",
55
+
actionButtonUrl: "https://guidefox.io/",
56
+
actionButtonText: "Go to guidefox.io",
57
+
headerBackgroundColor: "#e4c2f0",
58
+
headerColor: "#450fbd",
59
+
textColor: "#4889f4",
60
+
buttonBackgroundColor: "#7F56D9",
61
+
buttonTextColor: "#FFFFFF",
62
+
header: "Welcome",
63
+
content: "<p>Welcome to GuideFox<p>",
64
+
repetitionType: "show every visit",
65
+
createdBy: 1
66
+
},
67
+
],
68
+
{}
69
+
);
70
+
71
+
awaitqueryInterface.bulkInsert(
72
+
"banners",
73
+
[
74
+
{
75
+
closeButtonAction: "open url",
76
+
position: "top",
77
+
url: "https://guidefox-demo.bluewavelabs.ca",
78
+
fontColor: "#ffffff",
79
+
backgroundColor: "#5e4b7b",
80
+
bannerText: "Welcome",
81
+
repetitionType: "show every visit",
82
+
createdBy: 1
83
+
}
84
+
],
85
+
{}
86
+
);
87
+
88
+
const[helperLink]=awaitqueryInterface.bulkInsert(
89
+
'helper_link',
90
+
[
91
+
{
92
+
title: 'GuideFox Links',
93
+
headerBackgroundColor: '#adb2f5',
94
+
linkFontColor: '#344054',
95
+
iconColor: '#7F56D9',
96
+
createdBy: 1,
97
+
url: 'https://guidefox-demo.bluewavelabs.ca/'
98
+
},
99
+
],
100
+
{returning: true}// Return the created row to use its ID
0 commit comments