@allior/wmake-streamelements-events 0.0.1
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/README.md +46 -0
- package/README_RU.md +46 -0
- package/dist/react/hooks/index.d.ts +4 -0
- package/dist/react/hooks/index.d.ts.map +1 -0
- package/dist/react/hooks/use-event-listener.d.ts +4 -0
- package/dist/react/hooks/use-event-listener.d.ts.map +1 -0
- package/dist/react/hooks/use-on-event-received.d.ts +44 -0
- package/dist/react/hooks/use-on-event-received.d.ts.map +1 -0
- package/dist/react/hooks/use-on-widget-load.d.ts +4 -0
- package/dist/react/hooks/use-on-widget-load.d.ts.map +1 -0
- package/dist/react/index.d.ts +4 -0
- package/dist/react/index.d.ts.map +1 -0
- package/dist/react/index.iife.js +2 -0
- package/dist/react/index.iife.js.map +1 -0
- package/dist/react/index.js +179 -0
- package/dist/react/index.js.map +1 -0
- package/dist/react/types/index.d.ts +2 -0
- package/dist/react/types/index.d.ts.map +1 -0
- package/dist/react/types/window-events.d.ts +3 -0
- package/dist/react/types/window-events.d.ts.map +1 -0
- package/dist/root/aggregate.d.ts +12 -0
- package/dist/root/aggregate.d.ts.map +1 -0
- package/dist/root/classifier.d.ts +9 -0
- package/dist/root/classifier.d.ts.map +1 -0
- package/dist/root/commands.d.ts +9 -0
- package/dist/root/commands.d.ts.map +1 -0
- package/dist/root/data/event-detail.d.ts +10 -0
- package/dist/root/data/event-detail.d.ts.map +1 -0
- package/dist/root/data/field-value.d.ts +3 -0
- package/dist/root/data/field-value.d.ts.map +1 -0
- package/dist/root/data/index.d.ts +3 -0
- package/dist/root/data/index.d.ts.map +1 -0
- package/dist/root/data/widget-load.d.ts +5 -0
- package/dist/root/data/widget-load.d.ts.map +1 -0
- package/dist/root/index.d.ts +10 -0
- package/dist/root/index.d.ts.map +1 -0
- package/dist/root/index.iife.js +2 -0
- package/dist/root/index.iife.js.map +1 -0
- package/dist/root/index.js +2692 -0
- package/dist/root/index.js.map +1 -0
- package/dist/root/keys.d.ts +6 -0
- package/dist/root/keys.d.ts.map +1 -0
- package/dist/root/message/event.d.ts +7 -0
- package/dist/root/message/event.d.ts.map +1 -0
- package/dist/root/message/index.d.ts +5 -0
- package/dist/root/message/index.d.ts.map +1 -0
- package/dist/root/message/message.d.ts +37 -0
- package/dist/root/message/message.d.ts.map +1 -0
- package/dist/root/message/roles.d.ts +4 -0
- package/dist/root/message/roles.d.ts.map +1 -0
- package/dist/root/message/tags.d.ts +69 -0
- package/dist/root/message/tags.d.ts.map +1 -0
- package/dist/root/sources/alerts.d.ts +162 -0
- package/dist/root/sources/alerts.d.ts.map +1 -0
- package/dist/root/sources/index.d.ts +5 -0
- package/dist/root/sources/index.d.ts.map +1 -0
- package/dist/root/sources/messages.d.ts +963 -0
- package/dist/root/sources/messages.d.ts.map +1 -0
- package/dist/root/sources/on-widget-load-detail.d.ts +542 -0
- package/dist/root/sources/on-widget-load-detail.d.ts.map +1 -0
- package/dist/root/types/index.d.ts +3 -0
- package/dist/root/types/index.d.ts.map +1 -0
- package/dist/root/types/on-event-received.d.ts +170 -0
- package/dist/root/types/on-event-received.d.ts.map +1 -0
- package/dist/root/types/on-widget-load.d.ts +135 -0
- package/dist/root/types/on-widget-load.d.ts.map +1 -0
- package/dist/root/window-event-map.d.ts +10 -0
- package/dist/root/window-event-map.d.ts.map +1 -0
- package/package.json +48 -0
- package/src/react/hooks/index.ts +3 -0
- package/src/react/hooks/use-event-listener.ts +17 -0
- package/src/react/hooks/use-on-event-received.ts +206 -0
- package/src/react/hooks/use-on-widget-load.ts +15 -0
- package/src/react/index.ts +3 -0
- package/src/react/types/index.ts +1 -0
- package/src/react/types/window-events.ts +6 -0
- package/src/root/aggregate.ts +258 -0
- package/src/root/classifier.ts +208 -0
- package/src/root/commands.ts +33 -0
- package/src/root/data/event-detail.ts +14 -0
- package/src/root/data/field-value.ts +2 -0
- package/src/root/data/index.ts +2 -0
- package/src/root/data/widget-load.ts +5 -0
- package/src/root/index.ts +9 -0
- package/src/root/keys.ts +14 -0
- package/src/root/message/event.ts +7 -0
- package/src/root/message/index.ts +4 -0
- package/src/root/message/message.ts +40 -0
- package/src/root/message/roles.ts +43 -0
- package/src/root/message/tags.ts +119 -0
- package/src/root/sources/alerts.ts +163 -0
- package/src/root/sources/index.ts +5 -0
- package/src/root/sources/messages.ts +1245 -0
- package/src/root/sources/on-widget-load-detail.ts +969 -0
- package/src/root/types/index.ts +2 -0
- package/src/root/types/on-event-received.ts +198 -0
- package/src/root/types/on-widget-load.ts +171 -0
- package/src/root/window-event-map.ts +11 -0
|
@@ -0,0 +1,969 @@
|
|
|
1
|
+
export default {
|
|
2
|
+
session: {
|
|
3
|
+
data: {
|
|
4
|
+
"follower-latest": {
|
|
5
|
+
name: "imacanadiannn",
|
|
6
|
+
},
|
|
7
|
+
"follower-session": {
|
|
8
|
+
count: 0,
|
|
9
|
+
},
|
|
10
|
+
"follower-week": {
|
|
11
|
+
count: 0,
|
|
12
|
+
},
|
|
13
|
+
"follower-month": {
|
|
14
|
+
count: 0,
|
|
15
|
+
},
|
|
16
|
+
"follower-goal": {
|
|
17
|
+
amount: 137,
|
|
18
|
+
},
|
|
19
|
+
"follower-total": {
|
|
20
|
+
count: 118,
|
|
21
|
+
activityId: "",
|
|
22
|
+
sessionTop: false,
|
|
23
|
+
},
|
|
24
|
+
"subscriber-latest": {
|
|
25
|
+
name: "",
|
|
26
|
+
amount: 0,
|
|
27
|
+
tier: "",
|
|
28
|
+
message: "",
|
|
29
|
+
},
|
|
30
|
+
"subscriber-new-latest": {
|
|
31
|
+
name: "",
|
|
32
|
+
amount: 0,
|
|
33
|
+
message: "",
|
|
34
|
+
},
|
|
35
|
+
"subscriber-resub-latest": {
|
|
36
|
+
name: "",
|
|
37
|
+
amount: 0,
|
|
38
|
+
message: "",
|
|
39
|
+
},
|
|
40
|
+
"subscriber-gifted-latest": {
|
|
41
|
+
name: "",
|
|
42
|
+
amount: 0,
|
|
43
|
+
message: "",
|
|
44
|
+
tier: "",
|
|
45
|
+
sender: "",
|
|
46
|
+
},
|
|
47
|
+
"subscriber-session": {
|
|
48
|
+
count: 0,
|
|
49
|
+
},
|
|
50
|
+
"subscriber-new-session": {
|
|
51
|
+
count: 0,
|
|
52
|
+
},
|
|
53
|
+
"subscriber-resub-session": {
|
|
54
|
+
count: 0,
|
|
55
|
+
},
|
|
56
|
+
"subscriber-gifted-session": {
|
|
57
|
+
count: 0,
|
|
58
|
+
},
|
|
59
|
+
"subscriber-week": {
|
|
60
|
+
count: 0,
|
|
61
|
+
},
|
|
62
|
+
"subscriber-month": {
|
|
63
|
+
count: 0,
|
|
64
|
+
},
|
|
65
|
+
"subscriber-goal": {
|
|
66
|
+
amount: 0,
|
|
67
|
+
},
|
|
68
|
+
"subscriber-total": {
|
|
69
|
+
count: 0,
|
|
70
|
+
activityId: "",
|
|
71
|
+
sessionTop: false,
|
|
72
|
+
},
|
|
73
|
+
"subscriber-points": {
|
|
74
|
+
amount: 0,
|
|
75
|
+
activityId: "",
|
|
76
|
+
sessionTop: false,
|
|
77
|
+
},
|
|
78
|
+
"subscriber-alltime-gifter": {
|
|
79
|
+
name: "",
|
|
80
|
+
amount: 0,
|
|
81
|
+
},
|
|
82
|
+
"host-latest": {
|
|
83
|
+
name: "",
|
|
84
|
+
amount: 0,
|
|
85
|
+
},
|
|
86
|
+
"raid-latest": {
|
|
87
|
+
name: "agnascor2",
|
|
88
|
+
amount: 6,
|
|
89
|
+
},
|
|
90
|
+
"cheer-session": {
|
|
91
|
+
amount: 0,
|
|
92
|
+
},
|
|
93
|
+
"cheer-week": {
|
|
94
|
+
amount: 0,
|
|
95
|
+
},
|
|
96
|
+
"cheer-month": {
|
|
97
|
+
amount: 0,
|
|
98
|
+
},
|
|
99
|
+
"cheer-total": {
|
|
100
|
+
amount: 0,
|
|
101
|
+
},
|
|
102
|
+
"cheer-count": {
|
|
103
|
+
count: 0,
|
|
104
|
+
},
|
|
105
|
+
"cheer-goal": {
|
|
106
|
+
amount: 0,
|
|
107
|
+
},
|
|
108
|
+
"cheer-latest": {
|
|
109
|
+
name: "",
|
|
110
|
+
amount: 0,
|
|
111
|
+
},
|
|
112
|
+
"cheer-session-top-donation": {
|
|
113
|
+
amount: 0,
|
|
114
|
+
name: "",
|
|
115
|
+
},
|
|
116
|
+
"cheer-weekly-top-donation": {
|
|
117
|
+
amount: 0,
|
|
118
|
+
name: "",
|
|
119
|
+
},
|
|
120
|
+
"cheer-monthly-top-donation": {
|
|
121
|
+
amount: 0,
|
|
122
|
+
name: "",
|
|
123
|
+
},
|
|
124
|
+
"cheer-alltime-top-donation": {
|
|
125
|
+
amount: 0,
|
|
126
|
+
name: "",
|
|
127
|
+
},
|
|
128
|
+
"cheer-session-top-donator": {
|
|
129
|
+
amount: 0,
|
|
130
|
+
name: "",
|
|
131
|
+
},
|
|
132
|
+
"cheer-weekly-top-donator": {
|
|
133
|
+
amount: 0,
|
|
134
|
+
name: "",
|
|
135
|
+
},
|
|
136
|
+
"cheer-monthly-top-donator": {
|
|
137
|
+
amount: 0,
|
|
138
|
+
name: "",
|
|
139
|
+
},
|
|
140
|
+
"cheer-alltime-top-donator": {
|
|
141
|
+
amount: 0,
|
|
142
|
+
name: "",
|
|
143
|
+
},
|
|
144
|
+
"tip-latest": {
|
|
145
|
+
name: "",
|
|
146
|
+
amount: 0,
|
|
147
|
+
},
|
|
148
|
+
"tip-session-top-donation": {
|
|
149
|
+
amount: 0,
|
|
150
|
+
name: "",
|
|
151
|
+
},
|
|
152
|
+
"tip-weekly-top-donation": {
|
|
153
|
+
name: "",
|
|
154
|
+
amount: 0,
|
|
155
|
+
},
|
|
156
|
+
"tip-monthly-top-donation": {
|
|
157
|
+
name: "",
|
|
158
|
+
amount: 0,
|
|
159
|
+
},
|
|
160
|
+
"tip-alltime-top-donation": {
|
|
161
|
+
name: "",
|
|
162
|
+
amount: 0,
|
|
163
|
+
},
|
|
164
|
+
"tip-session-top-donator": {
|
|
165
|
+
amount: 0,
|
|
166
|
+
name: "",
|
|
167
|
+
},
|
|
168
|
+
"tip-weekly-top-donator": {
|
|
169
|
+
name: "",
|
|
170
|
+
amount: 0,
|
|
171
|
+
},
|
|
172
|
+
"tip-monthly-top-donator": {
|
|
173
|
+
name: "",
|
|
174
|
+
amount: 0,
|
|
175
|
+
},
|
|
176
|
+
"tip-alltime-top-donator": {
|
|
177
|
+
name: "",
|
|
178
|
+
amount: 0,
|
|
179
|
+
},
|
|
180
|
+
"tip-session": {
|
|
181
|
+
amount: 0,
|
|
182
|
+
},
|
|
183
|
+
"tip-week": {
|
|
184
|
+
amount: 0,
|
|
185
|
+
},
|
|
186
|
+
"tip-month": {
|
|
187
|
+
amount: 0,
|
|
188
|
+
},
|
|
189
|
+
"tip-total": {
|
|
190
|
+
amount: 0,
|
|
191
|
+
},
|
|
192
|
+
"tip-count": {
|
|
193
|
+
count: 0,
|
|
194
|
+
},
|
|
195
|
+
"tip-goal": {
|
|
196
|
+
amount: 0,
|
|
197
|
+
},
|
|
198
|
+
"merch-goal-orders": {
|
|
199
|
+
amount: 0,
|
|
200
|
+
},
|
|
201
|
+
"merch-goal-items": {
|
|
202
|
+
amount: 0,
|
|
203
|
+
},
|
|
204
|
+
"merch-goal-total": {
|
|
205
|
+
amount: 0,
|
|
206
|
+
},
|
|
207
|
+
"merch-latest": {
|
|
208
|
+
name: "",
|
|
209
|
+
amount: 0,
|
|
210
|
+
items: [],
|
|
211
|
+
},
|
|
212
|
+
"charityCampaignDonation-latest": {
|
|
213
|
+
name: "",
|
|
214
|
+
amount: 0,
|
|
215
|
+
},
|
|
216
|
+
"charityCampaignDonation-weekly-top-donation": {
|
|
217
|
+
name: "",
|
|
218
|
+
amount: 0,
|
|
219
|
+
},
|
|
220
|
+
"charityCampaignDonation-monthly-top-donation": {
|
|
221
|
+
name: "",
|
|
222
|
+
amount: 0,
|
|
223
|
+
},
|
|
224
|
+
"charityCampaignDonation-alltime-top-donation": {
|
|
225
|
+
name: "",
|
|
226
|
+
amount: 0,
|
|
227
|
+
},
|
|
228
|
+
"charityCampaignDonation-weekly-top-donator": {
|
|
229
|
+
name: "",
|
|
230
|
+
amount: 0,
|
|
231
|
+
},
|
|
232
|
+
"charityCampaignDonation-monthly-top-donator": {
|
|
233
|
+
name: "",
|
|
234
|
+
amount: 0,
|
|
235
|
+
},
|
|
236
|
+
"charityCampaignDonation-alltime-top-donator": {
|
|
237
|
+
name: "",
|
|
238
|
+
amount: 0,
|
|
239
|
+
},
|
|
240
|
+
"cheerPurchase-latest": {
|
|
241
|
+
name: "",
|
|
242
|
+
amount: 0,
|
|
243
|
+
},
|
|
244
|
+
"cheerPurchase-weekly-top-donation": {
|
|
245
|
+
name: "",
|
|
246
|
+
amount: 0,
|
|
247
|
+
},
|
|
248
|
+
"cheerPurchase-monthly-top-donation": {
|
|
249
|
+
name: "",
|
|
250
|
+
amount: 0,
|
|
251
|
+
},
|
|
252
|
+
"cheerPurchase-alltime-top-donation": {
|
|
253
|
+
name: "",
|
|
254
|
+
amount: 0,
|
|
255
|
+
},
|
|
256
|
+
"cheerPurchase-weekly-top-donator": {
|
|
257
|
+
name: "",
|
|
258
|
+
amount: 0,
|
|
259
|
+
},
|
|
260
|
+
"cheerPurchase-monthly-top-donator": {
|
|
261
|
+
name: "",
|
|
262
|
+
amount: 0,
|
|
263
|
+
},
|
|
264
|
+
"cheerPurchase-alltime-top-donator": {
|
|
265
|
+
name: "",
|
|
266
|
+
amount: 0,
|
|
267
|
+
},
|
|
268
|
+
"superchat-latest": {
|
|
269
|
+
name: "",
|
|
270
|
+
amount: 0,
|
|
271
|
+
},
|
|
272
|
+
"superchat-weekly-top-donation": {
|
|
273
|
+
name: "",
|
|
274
|
+
amount: 0,
|
|
275
|
+
},
|
|
276
|
+
"superchat-monthly-top-donation": {
|
|
277
|
+
name: "",
|
|
278
|
+
amount: 0,
|
|
279
|
+
},
|
|
280
|
+
"superchat-alltime-top-donation": {
|
|
281
|
+
name: "",
|
|
282
|
+
amount: 0,
|
|
283
|
+
},
|
|
284
|
+
"superchat-weekly-top-donator": {
|
|
285
|
+
name: "",
|
|
286
|
+
amount: 0,
|
|
287
|
+
},
|
|
288
|
+
"superchat-monthly-top-donator": {
|
|
289
|
+
name: "",
|
|
290
|
+
amount: 0,
|
|
291
|
+
},
|
|
292
|
+
"superchat-alltime-top-donator": {
|
|
293
|
+
name: "",
|
|
294
|
+
amount: 0,
|
|
295
|
+
},
|
|
296
|
+
"superchat-session": {
|
|
297
|
+
amount: 0,
|
|
298
|
+
},
|
|
299
|
+
"superchat-week": {
|
|
300
|
+
amount: 0,
|
|
301
|
+
},
|
|
302
|
+
"superchat-month": {
|
|
303
|
+
amount: 0,
|
|
304
|
+
},
|
|
305
|
+
"superchat-total": {
|
|
306
|
+
amount: 0,
|
|
307
|
+
},
|
|
308
|
+
"superchat-count": {
|
|
309
|
+
count: 0,
|
|
310
|
+
},
|
|
311
|
+
"superchat-goal": {
|
|
312
|
+
amount: 0,
|
|
313
|
+
},
|
|
314
|
+
"purchase-latest": {
|
|
315
|
+
name: "",
|
|
316
|
+
amount: 0,
|
|
317
|
+
avatar: "",
|
|
318
|
+
message: "",
|
|
319
|
+
items: [],
|
|
320
|
+
},
|
|
321
|
+
"follower-recent": [
|
|
322
|
+
{
|
|
323
|
+
name: "imacanadiannn",
|
|
324
|
+
createdAt: "2026-01-13T01:53:50.296Z",
|
|
325
|
+
type: "follower",
|
|
326
|
+
},
|
|
327
|
+
{
|
|
328
|
+
name: "piwo143",
|
|
329
|
+
createdAt: "2026-01-13T01:51:39.472Z",
|
|
330
|
+
type: "follower",
|
|
331
|
+
},
|
|
332
|
+
{
|
|
333
|
+
name: "latvan_",
|
|
334
|
+
createdAt: "2026-01-12T23:54:29.235Z",
|
|
335
|
+
type: "follower",
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
name: "wheinwait",
|
|
339
|
+
createdAt: "2026-01-12T23:11:28.946Z",
|
|
340
|
+
type: "follower",
|
|
341
|
+
},
|
|
342
|
+
{
|
|
343
|
+
name: "agnascor2",
|
|
344
|
+
createdAt: "2026-01-12T23:11:14.880Z",
|
|
345
|
+
type: "follower",
|
|
346
|
+
},
|
|
347
|
+
{
|
|
348
|
+
name: "sunlitetuts",
|
|
349
|
+
createdAt: "2026-01-12T21:03:59.207Z",
|
|
350
|
+
type: "follower",
|
|
351
|
+
},
|
|
352
|
+
{
|
|
353
|
+
name: "ayanamya",
|
|
354
|
+
createdAt: "2026-01-12T20:00:55.509Z",
|
|
355
|
+
type: "follower",
|
|
356
|
+
},
|
|
357
|
+
{
|
|
358
|
+
name: "hopeless28",
|
|
359
|
+
createdAt: "2026-01-12T18:35:21.731Z",
|
|
360
|
+
type: "follower",
|
|
361
|
+
},
|
|
362
|
+
{
|
|
363
|
+
name: "kakoytoclown",
|
|
364
|
+
createdAt: "2026-01-11T18:39:36.843Z",
|
|
365
|
+
type: "follower",
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
name: "dababe__jq1",
|
|
369
|
+
createdAt: "2024-10-10T23:27:49.699Z",
|
|
370
|
+
type: "follower",
|
|
371
|
+
},
|
|
372
|
+
{
|
|
373
|
+
name: "jjjllkmf",
|
|
374
|
+
createdAt: "2024-05-05T09:44:16.287Z",
|
|
375
|
+
type: "follower",
|
|
376
|
+
},
|
|
377
|
+
{
|
|
378
|
+
name: "d4c_valintine",
|
|
379
|
+
createdAt: "2024-05-03T15:13:28.365Z",
|
|
380
|
+
type: "follower",
|
|
381
|
+
},
|
|
382
|
+
{
|
|
383
|
+
name: "angelbliss_",
|
|
384
|
+
createdAt: "2024-04-30T20:07:23.132Z",
|
|
385
|
+
type: "follower",
|
|
386
|
+
},
|
|
387
|
+
{
|
|
388
|
+
name: "o1zich",
|
|
389
|
+
createdAt: "2024-04-22T16:23:26.139Z",
|
|
390
|
+
type: "follower",
|
|
391
|
+
},
|
|
392
|
+
{
|
|
393
|
+
name: "nearbuziky",
|
|
394
|
+
createdAt: "2024-04-19T19:21:27.569Z",
|
|
395
|
+
type: "follower",
|
|
396
|
+
},
|
|
397
|
+
{
|
|
398
|
+
name: "samirkasamsa",
|
|
399
|
+
createdAt: "2024-04-19T17:06:38.963Z",
|
|
400
|
+
type: "follower",
|
|
401
|
+
},
|
|
402
|
+
{
|
|
403
|
+
name: "flip1mip",
|
|
404
|
+
createdAt: "2024-04-19T17:06:18.276Z",
|
|
405
|
+
type: "follower",
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
name: "valerie_solo",
|
|
409
|
+
createdAt: "2024-04-19T17:06:07.473Z",
|
|
410
|
+
type: "follower",
|
|
411
|
+
},
|
|
412
|
+
{
|
|
413
|
+
name: "sxaelence",
|
|
414
|
+
createdAt: "2024-04-19T07:06:46.330Z",
|
|
415
|
+
type: "follower",
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
name: "avokadik99",
|
|
419
|
+
createdAt: "2024-04-17T16:11:29.604Z",
|
|
420
|
+
type: "follower",
|
|
421
|
+
},
|
|
422
|
+
{
|
|
423
|
+
name: "blackvoronstream",
|
|
424
|
+
createdAt: "2024-04-16T21:29:33.306Z",
|
|
425
|
+
type: "follower",
|
|
426
|
+
},
|
|
427
|
+
{
|
|
428
|
+
name: "baldejniyy",
|
|
429
|
+
createdAt: "2024-04-16T21:29:09.647Z",
|
|
430
|
+
type: "follower",
|
|
431
|
+
},
|
|
432
|
+
{
|
|
433
|
+
name: "p3ch4n_ka",
|
|
434
|
+
createdAt: "2024-04-16T16:37:31.841Z",
|
|
435
|
+
type: "follower",
|
|
436
|
+
},
|
|
437
|
+
{
|
|
438
|
+
name: "kakosik_bee",
|
|
439
|
+
createdAt: "2024-04-16T15:56:27.435Z",
|
|
440
|
+
type: "follower",
|
|
441
|
+
},
|
|
442
|
+
{
|
|
443
|
+
name: "hikotoru",
|
|
444
|
+
createdAt: "2024-04-16T15:13:25.226Z",
|
|
445
|
+
type: "follower",
|
|
446
|
+
},
|
|
447
|
+
],
|
|
448
|
+
"subscriber-recent": [],
|
|
449
|
+
"host-recent": [],
|
|
450
|
+
"raid-recent": [
|
|
451
|
+
{
|
|
452
|
+
name: "agnascor2",
|
|
453
|
+
amount: 6,
|
|
454
|
+
createdAt: "2026-01-12T23:08:21.815Z",
|
|
455
|
+
type: "raid",
|
|
456
|
+
},
|
|
457
|
+
{
|
|
458
|
+
name: "justduckomgg",
|
|
459
|
+
amount: 7,
|
|
460
|
+
createdAt: "2024-04-19T17:05:53.185Z",
|
|
461
|
+
type: "raid",
|
|
462
|
+
},
|
|
463
|
+
{
|
|
464
|
+
name: "veessmk",
|
|
465
|
+
amount: 6,
|
|
466
|
+
createdAt: "2024-04-17T15:40:43.945Z",
|
|
467
|
+
type: "raid",
|
|
468
|
+
},
|
|
469
|
+
{
|
|
470
|
+
name: "night_sculptor",
|
|
471
|
+
amount: 12,
|
|
472
|
+
createdAt: "2024-04-16T18:07:40.040Z",
|
|
473
|
+
type: "raid",
|
|
474
|
+
},
|
|
475
|
+
{
|
|
476
|
+
name: "pixiemays",
|
|
477
|
+
amount: 6,
|
|
478
|
+
createdAt: "2024-04-16T16:37:24.433Z",
|
|
479
|
+
type: "raid",
|
|
480
|
+
},
|
|
481
|
+
{
|
|
482
|
+
name: "night_sculptor",
|
|
483
|
+
amount: 8,
|
|
484
|
+
createdAt: "2024-04-14T18:31:20.049Z",
|
|
485
|
+
type: "raid",
|
|
486
|
+
},
|
|
487
|
+
{
|
|
488
|
+
name: "pixiemays",
|
|
489
|
+
amount: 19,
|
|
490
|
+
createdAt: "2024-04-14T13:22:05.794Z",
|
|
491
|
+
type: "raid",
|
|
492
|
+
},
|
|
493
|
+
{
|
|
494
|
+
name: "pixiemays",
|
|
495
|
+
amount: 15,
|
|
496
|
+
createdAt: "2024-04-12T17:03:36.115Z",
|
|
497
|
+
type: "raid",
|
|
498
|
+
},
|
|
499
|
+
{
|
|
500
|
+
name: "alechkavt",
|
|
501
|
+
amount: 9,
|
|
502
|
+
createdAt: "2024-04-11T17:54:47.691Z",
|
|
503
|
+
type: "raid",
|
|
504
|
+
},
|
|
505
|
+
{
|
|
506
|
+
name: "pixiemays",
|
|
507
|
+
amount: 8,
|
|
508
|
+
createdAt: "2024-04-11T14:10:49.548Z",
|
|
509
|
+
type: "raid",
|
|
510
|
+
},
|
|
511
|
+
{
|
|
512
|
+
name: "night_sculptor",
|
|
513
|
+
amount: 22,
|
|
514
|
+
createdAt: "2024-04-09T16:13:41.195Z",
|
|
515
|
+
type: "raid",
|
|
516
|
+
},
|
|
517
|
+
{
|
|
518
|
+
name: "pixiemays",
|
|
519
|
+
amount: 5,
|
|
520
|
+
createdAt: "2024-04-08T09:54:01.603Z",
|
|
521
|
+
type: "raid",
|
|
522
|
+
},
|
|
523
|
+
{
|
|
524
|
+
name: "aki_neki",
|
|
525
|
+
amount: 5,
|
|
526
|
+
createdAt: "2024-04-07T21:52:45.919Z",
|
|
527
|
+
type: "raid",
|
|
528
|
+
},
|
|
529
|
+
{
|
|
530
|
+
name: "alechkavt",
|
|
531
|
+
amount: 11,
|
|
532
|
+
createdAt: "2024-04-07T18:59:39.286Z",
|
|
533
|
+
type: "raid",
|
|
534
|
+
},
|
|
535
|
+
{
|
|
536
|
+
name: "veessmk",
|
|
537
|
+
amount: 15,
|
|
538
|
+
createdAt: "2024-04-07T16:13:25.172Z",
|
|
539
|
+
type: "raid",
|
|
540
|
+
},
|
|
541
|
+
{
|
|
542
|
+
name: "veessmk",
|
|
543
|
+
amount: 10,
|
|
544
|
+
createdAt: "2024-03-17T16:11:38.631Z",
|
|
545
|
+
type: "raid",
|
|
546
|
+
},
|
|
547
|
+
],
|
|
548
|
+
"charityCampaignDonation-recent": [],
|
|
549
|
+
"cheer-recent": [],
|
|
550
|
+
"cheerPurchase-recent": [],
|
|
551
|
+
"superchat-recent": [],
|
|
552
|
+
"tip-recent": [],
|
|
553
|
+
"merch-recent": [],
|
|
554
|
+
"channel-points-latest": {
|
|
555
|
+
amount: 0,
|
|
556
|
+
message: "",
|
|
557
|
+
name: "",
|
|
558
|
+
redemption: "",
|
|
559
|
+
},
|
|
560
|
+
"community-gift-latest": {
|
|
561
|
+
amount: 0,
|
|
562
|
+
name: "",
|
|
563
|
+
tier: "",
|
|
564
|
+
},
|
|
565
|
+
"charityCampaignDonation-session-top-donation": {
|
|
566
|
+
amount: 0,
|
|
567
|
+
name: "",
|
|
568
|
+
},
|
|
569
|
+
"charityCampaignDonation-session-top-donator": {
|
|
570
|
+
amount: 0,
|
|
571
|
+
name: "",
|
|
572
|
+
},
|
|
573
|
+
"cheerPurchase-session-top-donation": {
|
|
574
|
+
amount: 0,
|
|
575
|
+
name: "",
|
|
576
|
+
},
|
|
577
|
+
"cheerPurchase-session-top-donator": {
|
|
578
|
+
amount: 0,
|
|
579
|
+
name: "",
|
|
580
|
+
},
|
|
581
|
+
"hypetrain-latest": {
|
|
582
|
+
active: 0,
|
|
583
|
+
amount: 0,
|
|
584
|
+
level: 0,
|
|
585
|
+
levelChanged: 0,
|
|
586
|
+
name: "",
|
|
587
|
+
type: "",
|
|
588
|
+
},
|
|
589
|
+
"hypetrain-latest-top-contributors": [],
|
|
590
|
+
"hypetrain-level-goal": {
|
|
591
|
+
amount: 0,
|
|
592
|
+
},
|
|
593
|
+
"hypetrain-level-progress": {
|
|
594
|
+
amount: 0,
|
|
595
|
+
percent: 0,
|
|
596
|
+
},
|
|
597
|
+
"hypetrain-total": {
|
|
598
|
+
amount: 0,
|
|
599
|
+
},
|
|
600
|
+
"superchat-session-top-donation": {
|
|
601
|
+
amount: 0,
|
|
602
|
+
name: "",
|
|
603
|
+
},
|
|
604
|
+
"superchat-session-top-donator": {
|
|
605
|
+
amount: 0,
|
|
606
|
+
name: "",
|
|
607
|
+
},
|
|
608
|
+
},
|
|
609
|
+
settings: {
|
|
610
|
+
autoReset: true,
|
|
611
|
+
calendar: false,
|
|
612
|
+
resetOnStart: false,
|
|
613
|
+
},
|
|
614
|
+
},
|
|
615
|
+
recents: [
|
|
616
|
+
{
|
|
617
|
+
name: "imacanadiannn",
|
|
618
|
+
createdAt: "2026-01-13T01:53:50.296Z",
|
|
619
|
+
type: "follower",
|
|
620
|
+
},
|
|
621
|
+
{
|
|
622
|
+
name: "piwo143",
|
|
623
|
+
createdAt: "2026-01-13T01:51:39.472Z",
|
|
624
|
+
type: "follower",
|
|
625
|
+
},
|
|
626
|
+
{
|
|
627
|
+
name: "latvan_",
|
|
628
|
+
createdAt: "2026-01-12T23:54:29.235Z",
|
|
629
|
+
type: "follower",
|
|
630
|
+
},
|
|
631
|
+
{
|
|
632
|
+
name: "wheinwait",
|
|
633
|
+
createdAt: "2026-01-12T23:11:28.946Z",
|
|
634
|
+
type: "follower",
|
|
635
|
+
},
|
|
636
|
+
{
|
|
637
|
+
name: "agnascor2",
|
|
638
|
+
createdAt: "2026-01-12T23:11:14.880Z",
|
|
639
|
+
type: "follower",
|
|
640
|
+
},
|
|
641
|
+
{
|
|
642
|
+
name: "sunlitetuts",
|
|
643
|
+
createdAt: "2026-01-12T21:03:59.207Z",
|
|
644
|
+
type: "follower",
|
|
645
|
+
},
|
|
646
|
+
{
|
|
647
|
+
name: "ayanamya",
|
|
648
|
+
createdAt: "2026-01-12T20:00:55.509Z",
|
|
649
|
+
type: "follower",
|
|
650
|
+
},
|
|
651
|
+
{
|
|
652
|
+
name: "hopeless28",
|
|
653
|
+
createdAt: "2026-01-12T18:35:21.731Z",
|
|
654
|
+
type: "follower",
|
|
655
|
+
},
|
|
656
|
+
{
|
|
657
|
+
name: "kakoytoclown",
|
|
658
|
+
createdAt: "2026-01-11T18:39:36.843Z",
|
|
659
|
+
type: "follower",
|
|
660
|
+
},
|
|
661
|
+
{
|
|
662
|
+
name: "dababe__jq1",
|
|
663
|
+
createdAt: "2024-10-10T23:27:49.699Z",
|
|
664
|
+
type: "follower",
|
|
665
|
+
},
|
|
666
|
+
{
|
|
667
|
+
name: "jjjllkmf",
|
|
668
|
+
createdAt: "2024-05-05T09:44:16.287Z",
|
|
669
|
+
type: "follower",
|
|
670
|
+
},
|
|
671
|
+
{
|
|
672
|
+
name: "d4c_valintine",
|
|
673
|
+
createdAt: "2024-05-03T15:13:28.365Z",
|
|
674
|
+
type: "follower",
|
|
675
|
+
},
|
|
676
|
+
{
|
|
677
|
+
name: "angelbliss_",
|
|
678
|
+
createdAt: "2024-04-30T20:07:23.132Z",
|
|
679
|
+
type: "follower",
|
|
680
|
+
},
|
|
681
|
+
{
|
|
682
|
+
name: "o1zich",
|
|
683
|
+
createdAt: "2024-04-22T16:23:26.139Z",
|
|
684
|
+
type: "follower",
|
|
685
|
+
},
|
|
686
|
+
{
|
|
687
|
+
name: "nearbuziky",
|
|
688
|
+
createdAt: "2024-04-19T19:21:27.569Z",
|
|
689
|
+
type: "follower",
|
|
690
|
+
},
|
|
691
|
+
{
|
|
692
|
+
name: "samirkasamsa",
|
|
693
|
+
createdAt: "2024-04-19T17:06:38.963Z",
|
|
694
|
+
type: "follower",
|
|
695
|
+
},
|
|
696
|
+
{
|
|
697
|
+
name: "flip1mip",
|
|
698
|
+
createdAt: "2024-04-19T17:06:18.276Z",
|
|
699
|
+
type: "follower",
|
|
700
|
+
},
|
|
701
|
+
{
|
|
702
|
+
name: "valerie_solo",
|
|
703
|
+
createdAt: "2024-04-19T17:06:07.473Z",
|
|
704
|
+
type: "follower",
|
|
705
|
+
},
|
|
706
|
+
{
|
|
707
|
+
name: "sxaelence",
|
|
708
|
+
createdAt: "2024-04-19T07:06:46.330Z",
|
|
709
|
+
type: "follower",
|
|
710
|
+
},
|
|
711
|
+
{
|
|
712
|
+
name: "avokadik99",
|
|
713
|
+
createdAt: "2024-04-17T16:11:29.604Z",
|
|
714
|
+
type: "follower",
|
|
715
|
+
},
|
|
716
|
+
{
|
|
717
|
+
name: "blackvoronstream",
|
|
718
|
+
createdAt: "2024-04-16T21:29:33.306Z",
|
|
719
|
+
type: "follower",
|
|
720
|
+
},
|
|
721
|
+
{
|
|
722
|
+
name: "baldejniyy",
|
|
723
|
+
createdAt: "2024-04-16T21:29:09.647Z",
|
|
724
|
+
type: "follower",
|
|
725
|
+
},
|
|
726
|
+
{
|
|
727
|
+
name: "p3ch4n_ka",
|
|
728
|
+
createdAt: "2024-04-16T16:37:31.841Z",
|
|
729
|
+
type: "follower",
|
|
730
|
+
},
|
|
731
|
+
{
|
|
732
|
+
name: "kakosik_bee",
|
|
733
|
+
createdAt: "2024-04-16T15:56:27.435Z",
|
|
734
|
+
type: "follower",
|
|
735
|
+
},
|
|
736
|
+
{
|
|
737
|
+
name: "hikotoru",
|
|
738
|
+
createdAt: "2024-04-16T15:13:25.226Z",
|
|
739
|
+
type: "follower",
|
|
740
|
+
},
|
|
741
|
+
{
|
|
742
|
+
name: "agnascor2",
|
|
743
|
+
amount: 6,
|
|
744
|
+
createdAt: "2026-01-12T23:08:21.815Z",
|
|
745
|
+
type: "raid",
|
|
746
|
+
},
|
|
747
|
+
{
|
|
748
|
+
name: "justduckomgg",
|
|
749
|
+
amount: 7,
|
|
750
|
+
createdAt: "2024-04-19T17:05:53.185Z",
|
|
751
|
+
type: "raid",
|
|
752
|
+
},
|
|
753
|
+
{
|
|
754
|
+
name: "veessmk",
|
|
755
|
+
amount: 6,
|
|
756
|
+
createdAt: "2024-04-17T15:40:43.945Z",
|
|
757
|
+
type: "raid",
|
|
758
|
+
},
|
|
759
|
+
{
|
|
760
|
+
name: "night_sculptor",
|
|
761
|
+
amount: 12,
|
|
762
|
+
createdAt: "2024-04-16T18:07:40.040Z",
|
|
763
|
+
type: "raid",
|
|
764
|
+
},
|
|
765
|
+
{
|
|
766
|
+
name: "pixiemays",
|
|
767
|
+
amount: 6,
|
|
768
|
+
createdAt: "2024-04-16T16:37:24.433Z",
|
|
769
|
+
type: "raid",
|
|
770
|
+
},
|
|
771
|
+
{
|
|
772
|
+
name: "night_sculptor",
|
|
773
|
+
amount: 8,
|
|
774
|
+
createdAt: "2024-04-14T18:31:20.049Z",
|
|
775
|
+
type: "raid",
|
|
776
|
+
},
|
|
777
|
+
{
|
|
778
|
+
name: "pixiemays",
|
|
779
|
+
amount: 19,
|
|
780
|
+
createdAt: "2024-04-14T13:22:05.794Z",
|
|
781
|
+
type: "raid",
|
|
782
|
+
},
|
|
783
|
+
{
|
|
784
|
+
name: "pixiemays",
|
|
785
|
+
amount: 15,
|
|
786
|
+
createdAt: "2024-04-12T17:03:36.115Z",
|
|
787
|
+
type: "raid",
|
|
788
|
+
},
|
|
789
|
+
{
|
|
790
|
+
name: "alechkavt",
|
|
791
|
+
amount: 9,
|
|
792
|
+
createdAt: "2024-04-11T17:54:47.691Z",
|
|
793
|
+
type: "raid",
|
|
794
|
+
},
|
|
795
|
+
{
|
|
796
|
+
name: "pixiemays",
|
|
797
|
+
amount: 8,
|
|
798
|
+
createdAt: "2024-04-11T14:10:49.548Z",
|
|
799
|
+
type: "raid",
|
|
800
|
+
},
|
|
801
|
+
{
|
|
802
|
+
name: "night_sculptor",
|
|
803
|
+
amount: 22,
|
|
804
|
+
createdAt: "2024-04-09T16:13:41.195Z",
|
|
805
|
+
type: "raid",
|
|
806
|
+
},
|
|
807
|
+
{
|
|
808
|
+
name: "pixiemays",
|
|
809
|
+
amount: 5,
|
|
810
|
+
createdAt: "2024-04-08T09:54:01.603Z",
|
|
811
|
+
type: "raid",
|
|
812
|
+
},
|
|
813
|
+
{
|
|
814
|
+
name: "aki_neki",
|
|
815
|
+
amount: 5,
|
|
816
|
+
createdAt: "2024-04-07T21:52:45.919Z",
|
|
817
|
+
type: "raid",
|
|
818
|
+
},
|
|
819
|
+
{
|
|
820
|
+
name: "alechkavt",
|
|
821
|
+
amount: 11,
|
|
822
|
+
createdAt: "2024-04-07T18:59:39.286Z",
|
|
823
|
+
type: "raid",
|
|
824
|
+
},
|
|
825
|
+
{
|
|
826
|
+
name: "veessmk",
|
|
827
|
+
amount: 15,
|
|
828
|
+
createdAt: "2024-04-07T16:13:25.172Z",
|
|
829
|
+
type: "raid",
|
|
830
|
+
},
|
|
831
|
+
{
|
|
832
|
+
name: "veessmk",
|
|
833
|
+
amount: 10,
|
|
834
|
+
createdAt: "2024-03-17T16:11:38.631Z",
|
|
835
|
+
type: "raid",
|
|
836
|
+
},
|
|
837
|
+
],
|
|
838
|
+
currency: {
|
|
839
|
+
code: "USD",
|
|
840
|
+
name: "U.S. Dollar",
|
|
841
|
+
symbol: "$",
|
|
842
|
+
},
|
|
843
|
+
channel: {
|
|
844
|
+
username: "encry_s",
|
|
845
|
+
apiToken: "HAHANOTNOW",
|
|
846
|
+
id: "65ba7503dc0415cb368947b1",
|
|
847
|
+
providerId: "485678132",
|
|
848
|
+
avatar:
|
|
849
|
+
"https://static-cdn.jtvnw.net/jtv_user_pictures/6fe93724-803a-4e5a-b58a-1d42fbc84661-profile_image-300x300.jpeg",
|
|
850
|
+
},
|
|
851
|
+
fieldData: {
|
|
852
|
+
testMessageButton: "zaytri_dynamicchatbubbles",
|
|
853
|
+
previewMode: false,
|
|
854
|
+
previewType: "random",
|
|
855
|
+
previewMessage: "",
|
|
856
|
+
theme: "animal-crossing",
|
|
857
|
+
corner: "round",
|
|
858
|
+
darkMode: false,
|
|
859
|
+
highlightStyle: "normal",
|
|
860
|
+
actionStyle: "italics",
|
|
861
|
+
maxWidth: 400,
|
|
862
|
+
maxHeight: 300,
|
|
863
|
+
fixedWidth: false,
|
|
864
|
+
positionMode: "list",
|
|
865
|
+
listDirection: "bottom",
|
|
866
|
+
listAlignment: "center",
|
|
867
|
+
topEdge: true,
|
|
868
|
+
bottomEdge: true,
|
|
869
|
+
leftEdge: true,
|
|
870
|
+
rightEdge: true,
|
|
871
|
+
edgeDeviation: 0,
|
|
872
|
+
padding: 30,
|
|
873
|
+
animation: "dynamic",
|
|
874
|
+
dynamicModifier: 1.75,
|
|
875
|
+
maxMessages: 25,
|
|
876
|
+
hideOutOfBounds: true,
|
|
877
|
+
lifetime: 0,
|
|
878
|
+
delay: 1,
|
|
879
|
+
googleFont: "Nunito",
|
|
880
|
+
customFont: "",
|
|
881
|
+
fontSize: 18,
|
|
882
|
+
fontWeight: "bold",
|
|
883
|
+
textDirection: "ltr",
|
|
884
|
+
useCustomBorderColors: true,
|
|
885
|
+
borderColor: "#fed400",
|
|
886
|
+
nameColor: "#000000",
|
|
887
|
+
useCustomMessageColors: true,
|
|
888
|
+
backgroundColor: "#fff3c0",
|
|
889
|
+
textColor: "#000000",
|
|
890
|
+
pronounsMode: "suffix",
|
|
891
|
+
pronounsLowercase: true,
|
|
892
|
+
pronounsBadgeCustomColors: false,
|
|
893
|
+
pronounsBadgeBackgroundColor: "#000000",
|
|
894
|
+
pronounsBadgeBorderColor: "#FFFFFF",
|
|
895
|
+
pronounsBadgeTextColor: "#FFFFFF",
|
|
896
|
+
showBadges: true,
|
|
897
|
+
largeEmotes: true,
|
|
898
|
+
ffzGlobal: false,
|
|
899
|
+
bttvGlobal: false,
|
|
900
|
+
emoteOnly: false,
|
|
901
|
+
highlightOnly: false,
|
|
902
|
+
allowedStrings: [],
|
|
903
|
+
minMessages: 0,
|
|
904
|
+
messageCooldown: 0,
|
|
905
|
+
raidCooldown: 0,
|
|
906
|
+
raidMin: 0,
|
|
907
|
+
includeEveryone: true,
|
|
908
|
+
includeFollowers: "true",
|
|
909
|
+
minFollowTime: 1,
|
|
910
|
+
includeSubs: true,
|
|
911
|
+
includeVIPs: true,
|
|
912
|
+
includeMods: true,
|
|
913
|
+
allowUserList: [],
|
|
914
|
+
ignoreUserList: ["StreamElements", "Streamlabs", "Nightbot", "Sery_Bot"],
|
|
915
|
+
ignorePrefixList: ["!"],
|
|
916
|
+
volume: 50,
|
|
917
|
+
soundGroup1: [],
|
|
918
|
+
userLevelSoundGroup1: "everyone",
|
|
919
|
+
specificUsersSoundGroup1: [],
|
|
920
|
+
messageTypeSoundGroup1: "all",
|
|
921
|
+
soundGroup2: [],
|
|
922
|
+
userLevelSoundGroup2: "everyone",
|
|
923
|
+
specificUsersSoundGroup2: [],
|
|
924
|
+
messageTypeSoundGroup2: "all",
|
|
925
|
+
soundGroup3: [],
|
|
926
|
+
userLevelSoundGroup3: "everyone",
|
|
927
|
+
specificUsersSoundGroup3: [],
|
|
928
|
+
messageTypeSoundGroup3: "all",
|
|
929
|
+
soundGroup4: [],
|
|
930
|
+
userLevelSoundGroup4: "everyone",
|
|
931
|
+
specificUsersSoundGroup4: [],
|
|
932
|
+
messageTypeSoundGroup4: "all",
|
|
933
|
+
soundGroup5: [],
|
|
934
|
+
userLevelSoundGroup5: "everyone",
|
|
935
|
+
specificUsersSoundGroup5: [],
|
|
936
|
+
messageTypeSoundGroup5: "all",
|
|
937
|
+
soundGroup6: [],
|
|
938
|
+
userLevelSoundGroup6: "everyone",
|
|
939
|
+
specificUsersSoundGroup6: [],
|
|
940
|
+
messageTypeSoundGroup6: "all",
|
|
941
|
+
soundGroup7: [],
|
|
942
|
+
userLevelSoundGroup7: "everyone",
|
|
943
|
+
specificUsersSoundGroup7: [],
|
|
944
|
+
messageTypeSoundGroup7: "all",
|
|
945
|
+
soundGroup8: [],
|
|
946
|
+
userLevelSoundGroup8: "everyone",
|
|
947
|
+
specificUsersSoundGroup8: [],
|
|
948
|
+
messageTypeSoundGroup8: "all",
|
|
949
|
+
soundGroup9: [],
|
|
950
|
+
userLevelSoundGroup9: "everyone",
|
|
951
|
+
specificUsersSoundGroup9: [],
|
|
952
|
+
messageTypeSoundGroup9: "all",
|
|
953
|
+
soundGroup10: [],
|
|
954
|
+
userLevelSoundGroup10: "everyone",
|
|
955
|
+
specificUsersSoundGroup10: [],
|
|
956
|
+
messageTypeSoundGroup10: "all",
|
|
957
|
+
widgetName: "Chat Bubbles",
|
|
958
|
+
widgetAuthor: "Zaytri",
|
|
959
|
+
widgetVersion: "2.12.0",
|
|
960
|
+
widgetUpdateUrl:
|
|
961
|
+
"https://github.com/zaytri/stream-elements-widgets/blob/main/DynamicChatBubbles",
|
|
962
|
+
ignoreFirst: true,
|
|
963
|
+
},
|
|
964
|
+
overlay: {
|
|
965
|
+
isEditorMode: true,
|
|
966
|
+
muted: false,
|
|
967
|
+
},
|
|
968
|
+
};
|
|
969
|
+
|