@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 @@
|
|
|
1
|
+
{"version":3,"file":"messages.d.ts","sourceRoot":"","sources":["../../../src/root/sources/messages.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4tCxB,CAAC"}
|
|
@@ -0,0 +1,542 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
session: {
|
|
3
|
+
data: {
|
|
4
|
+
"follower-latest": {
|
|
5
|
+
name: string;
|
|
6
|
+
};
|
|
7
|
+
"follower-session": {
|
|
8
|
+
count: number;
|
|
9
|
+
};
|
|
10
|
+
"follower-week": {
|
|
11
|
+
count: number;
|
|
12
|
+
};
|
|
13
|
+
"follower-month": {
|
|
14
|
+
count: number;
|
|
15
|
+
};
|
|
16
|
+
"follower-goal": {
|
|
17
|
+
amount: number;
|
|
18
|
+
};
|
|
19
|
+
"follower-total": {
|
|
20
|
+
count: number;
|
|
21
|
+
activityId: string;
|
|
22
|
+
sessionTop: boolean;
|
|
23
|
+
};
|
|
24
|
+
"subscriber-latest": {
|
|
25
|
+
name: string;
|
|
26
|
+
amount: number;
|
|
27
|
+
tier: string;
|
|
28
|
+
message: string;
|
|
29
|
+
};
|
|
30
|
+
"subscriber-new-latest": {
|
|
31
|
+
name: string;
|
|
32
|
+
amount: number;
|
|
33
|
+
message: string;
|
|
34
|
+
};
|
|
35
|
+
"subscriber-resub-latest": {
|
|
36
|
+
name: string;
|
|
37
|
+
amount: number;
|
|
38
|
+
message: string;
|
|
39
|
+
};
|
|
40
|
+
"subscriber-gifted-latest": {
|
|
41
|
+
name: string;
|
|
42
|
+
amount: number;
|
|
43
|
+
message: string;
|
|
44
|
+
tier: string;
|
|
45
|
+
sender: string;
|
|
46
|
+
};
|
|
47
|
+
"subscriber-session": {
|
|
48
|
+
count: number;
|
|
49
|
+
};
|
|
50
|
+
"subscriber-new-session": {
|
|
51
|
+
count: number;
|
|
52
|
+
};
|
|
53
|
+
"subscriber-resub-session": {
|
|
54
|
+
count: number;
|
|
55
|
+
};
|
|
56
|
+
"subscriber-gifted-session": {
|
|
57
|
+
count: number;
|
|
58
|
+
};
|
|
59
|
+
"subscriber-week": {
|
|
60
|
+
count: number;
|
|
61
|
+
};
|
|
62
|
+
"subscriber-month": {
|
|
63
|
+
count: number;
|
|
64
|
+
};
|
|
65
|
+
"subscriber-goal": {
|
|
66
|
+
amount: number;
|
|
67
|
+
};
|
|
68
|
+
"subscriber-total": {
|
|
69
|
+
count: number;
|
|
70
|
+
activityId: string;
|
|
71
|
+
sessionTop: boolean;
|
|
72
|
+
};
|
|
73
|
+
"subscriber-points": {
|
|
74
|
+
amount: number;
|
|
75
|
+
activityId: string;
|
|
76
|
+
sessionTop: boolean;
|
|
77
|
+
};
|
|
78
|
+
"subscriber-alltime-gifter": {
|
|
79
|
+
name: string;
|
|
80
|
+
amount: number;
|
|
81
|
+
};
|
|
82
|
+
"host-latest": {
|
|
83
|
+
name: string;
|
|
84
|
+
amount: number;
|
|
85
|
+
};
|
|
86
|
+
"raid-latest": {
|
|
87
|
+
name: string;
|
|
88
|
+
amount: number;
|
|
89
|
+
};
|
|
90
|
+
"cheer-session": {
|
|
91
|
+
amount: number;
|
|
92
|
+
};
|
|
93
|
+
"cheer-week": {
|
|
94
|
+
amount: number;
|
|
95
|
+
};
|
|
96
|
+
"cheer-month": {
|
|
97
|
+
amount: number;
|
|
98
|
+
};
|
|
99
|
+
"cheer-total": {
|
|
100
|
+
amount: number;
|
|
101
|
+
};
|
|
102
|
+
"cheer-count": {
|
|
103
|
+
count: number;
|
|
104
|
+
};
|
|
105
|
+
"cheer-goal": {
|
|
106
|
+
amount: number;
|
|
107
|
+
};
|
|
108
|
+
"cheer-latest": {
|
|
109
|
+
name: string;
|
|
110
|
+
amount: number;
|
|
111
|
+
};
|
|
112
|
+
"cheer-session-top-donation": {
|
|
113
|
+
amount: number;
|
|
114
|
+
name: string;
|
|
115
|
+
};
|
|
116
|
+
"cheer-weekly-top-donation": {
|
|
117
|
+
amount: number;
|
|
118
|
+
name: string;
|
|
119
|
+
};
|
|
120
|
+
"cheer-monthly-top-donation": {
|
|
121
|
+
amount: number;
|
|
122
|
+
name: string;
|
|
123
|
+
};
|
|
124
|
+
"cheer-alltime-top-donation": {
|
|
125
|
+
amount: number;
|
|
126
|
+
name: string;
|
|
127
|
+
};
|
|
128
|
+
"cheer-session-top-donator": {
|
|
129
|
+
amount: number;
|
|
130
|
+
name: string;
|
|
131
|
+
};
|
|
132
|
+
"cheer-weekly-top-donator": {
|
|
133
|
+
amount: number;
|
|
134
|
+
name: string;
|
|
135
|
+
};
|
|
136
|
+
"cheer-monthly-top-donator": {
|
|
137
|
+
amount: number;
|
|
138
|
+
name: string;
|
|
139
|
+
};
|
|
140
|
+
"cheer-alltime-top-donator": {
|
|
141
|
+
amount: number;
|
|
142
|
+
name: string;
|
|
143
|
+
};
|
|
144
|
+
"tip-latest": {
|
|
145
|
+
name: string;
|
|
146
|
+
amount: number;
|
|
147
|
+
};
|
|
148
|
+
"tip-session-top-donation": {
|
|
149
|
+
amount: number;
|
|
150
|
+
name: string;
|
|
151
|
+
};
|
|
152
|
+
"tip-weekly-top-donation": {
|
|
153
|
+
name: string;
|
|
154
|
+
amount: number;
|
|
155
|
+
};
|
|
156
|
+
"tip-monthly-top-donation": {
|
|
157
|
+
name: string;
|
|
158
|
+
amount: number;
|
|
159
|
+
};
|
|
160
|
+
"tip-alltime-top-donation": {
|
|
161
|
+
name: string;
|
|
162
|
+
amount: number;
|
|
163
|
+
};
|
|
164
|
+
"tip-session-top-donator": {
|
|
165
|
+
amount: number;
|
|
166
|
+
name: string;
|
|
167
|
+
};
|
|
168
|
+
"tip-weekly-top-donator": {
|
|
169
|
+
name: string;
|
|
170
|
+
amount: number;
|
|
171
|
+
};
|
|
172
|
+
"tip-monthly-top-donator": {
|
|
173
|
+
name: string;
|
|
174
|
+
amount: number;
|
|
175
|
+
};
|
|
176
|
+
"tip-alltime-top-donator": {
|
|
177
|
+
name: string;
|
|
178
|
+
amount: number;
|
|
179
|
+
};
|
|
180
|
+
"tip-session": {
|
|
181
|
+
amount: number;
|
|
182
|
+
};
|
|
183
|
+
"tip-week": {
|
|
184
|
+
amount: number;
|
|
185
|
+
};
|
|
186
|
+
"tip-month": {
|
|
187
|
+
amount: number;
|
|
188
|
+
};
|
|
189
|
+
"tip-total": {
|
|
190
|
+
amount: number;
|
|
191
|
+
};
|
|
192
|
+
"tip-count": {
|
|
193
|
+
count: number;
|
|
194
|
+
};
|
|
195
|
+
"tip-goal": {
|
|
196
|
+
amount: number;
|
|
197
|
+
};
|
|
198
|
+
"merch-goal-orders": {
|
|
199
|
+
amount: number;
|
|
200
|
+
};
|
|
201
|
+
"merch-goal-items": {
|
|
202
|
+
amount: number;
|
|
203
|
+
};
|
|
204
|
+
"merch-goal-total": {
|
|
205
|
+
amount: number;
|
|
206
|
+
};
|
|
207
|
+
"merch-latest": {
|
|
208
|
+
name: string;
|
|
209
|
+
amount: number;
|
|
210
|
+
items: never[];
|
|
211
|
+
};
|
|
212
|
+
"charityCampaignDonation-latest": {
|
|
213
|
+
name: string;
|
|
214
|
+
amount: number;
|
|
215
|
+
};
|
|
216
|
+
"charityCampaignDonation-weekly-top-donation": {
|
|
217
|
+
name: string;
|
|
218
|
+
amount: number;
|
|
219
|
+
};
|
|
220
|
+
"charityCampaignDonation-monthly-top-donation": {
|
|
221
|
+
name: string;
|
|
222
|
+
amount: number;
|
|
223
|
+
};
|
|
224
|
+
"charityCampaignDonation-alltime-top-donation": {
|
|
225
|
+
name: string;
|
|
226
|
+
amount: number;
|
|
227
|
+
};
|
|
228
|
+
"charityCampaignDonation-weekly-top-donator": {
|
|
229
|
+
name: string;
|
|
230
|
+
amount: number;
|
|
231
|
+
};
|
|
232
|
+
"charityCampaignDonation-monthly-top-donator": {
|
|
233
|
+
name: string;
|
|
234
|
+
amount: number;
|
|
235
|
+
};
|
|
236
|
+
"charityCampaignDonation-alltime-top-donator": {
|
|
237
|
+
name: string;
|
|
238
|
+
amount: number;
|
|
239
|
+
};
|
|
240
|
+
"cheerPurchase-latest": {
|
|
241
|
+
name: string;
|
|
242
|
+
amount: number;
|
|
243
|
+
};
|
|
244
|
+
"cheerPurchase-weekly-top-donation": {
|
|
245
|
+
name: string;
|
|
246
|
+
amount: number;
|
|
247
|
+
};
|
|
248
|
+
"cheerPurchase-monthly-top-donation": {
|
|
249
|
+
name: string;
|
|
250
|
+
amount: number;
|
|
251
|
+
};
|
|
252
|
+
"cheerPurchase-alltime-top-donation": {
|
|
253
|
+
name: string;
|
|
254
|
+
amount: number;
|
|
255
|
+
};
|
|
256
|
+
"cheerPurchase-weekly-top-donator": {
|
|
257
|
+
name: string;
|
|
258
|
+
amount: number;
|
|
259
|
+
};
|
|
260
|
+
"cheerPurchase-monthly-top-donator": {
|
|
261
|
+
name: string;
|
|
262
|
+
amount: number;
|
|
263
|
+
};
|
|
264
|
+
"cheerPurchase-alltime-top-donator": {
|
|
265
|
+
name: string;
|
|
266
|
+
amount: number;
|
|
267
|
+
};
|
|
268
|
+
"superchat-latest": {
|
|
269
|
+
name: string;
|
|
270
|
+
amount: number;
|
|
271
|
+
};
|
|
272
|
+
"superchat-weekly-top-donation": {
|
|
273
|
+
name: string;
|
|
274
|
+
amount: number;
|
|
275
|
+
};
|
|
276
|
+
"superchat-monthly-top-donation": {
|
|
277
|
+
name: string;
|
|
278
|
+
amount: number;
|
|
279
|
+
};
|
|
280
|
+
"superchat-alltime-top-donation": {
|
|
281
|
+
name: string;
|
|
282
|
+
amount: number;
|
|
283
|
+
};
|
|
284
|
+
"superchat-weekly-top-donator": {
|
|
285
|
+
name: string;
|
|
286
|
+
amount: number;
|
|
287
|
+
};
|
|
288
|
+
"superchat-monthly-top-donator": {
|
|
289
|
+
name: string;
|
|
290
|
+
amount: number;
|
|
291
|
+
};
|
|
292
|
+
"superchat-alltime-top-donator": {
|
|
293
|
+
name: string;
|
|
294
|
+
amount: number;
|
|
295
|
+
};
|
|
296
|
+
"superchat-session": {
|
|
297
|
+
amount: number;
|
|
298
|
+
};
|
|
299
|
+
"superchat-week": {
|
|
300
|
+
amount: number;
|
|
301
|
+
};
|
|
302
|
+
"superchat-month": {
|
|
303
|
+
amount: number;
|
|
304
|
+
};
|
|
305
|
+
"superchat-total": {
|
|
306
|
+
amount: number;
|
|
307
|
+
};
|
|
308
|
+
"superchat-count": {
|
|
309
|
+
count: number;
|
|
310
|
+
};
|
|
311
|
+
"superchat-goal": {
|
|
312
|
+
amount: number;
|
|
313
|
+
};
|
|
314
|
+
"purchase-latest": {
|
|
315
|
+
name: string;
|
|
316
|
+
amount: number;
|
|
317
|
+
avatar: string;
|
|
318
|
+
message: string;
|
|
319
|
+
items: never[];
|
|
320
|
+
};
|
|
321
|
+
"follower-recent": {
|
|
322
|
+
name: string;
|
|
323
|
+
createdAt: string;
|
|
324
|
+
type: string;
|
|
325
|
+
}[];
|
|
326
|
+
"subscriber-recent": never[];
|
|
327
|
+
"host-recent": never[];
|
|
328
|
+
"raid-recent": {
|
|
329
|
+
name: string;
|
|
330
|
+
amount: number;
|
|
331
|
+
createdAt: string;
|
|
332
|
+
type: string;
|
|
333
|
+
}[];
|
|
334
|
+
"charityCampaignDonation-recent": never[];
|
|
335
|
+
"cheer-recent": never[];
|
|
336
|
+
"cheerPurchase-recent": never[];
|
|
337
|
+
"superchat-recent": never[];
|
|
338
|
+
"tip-recent": never[];
|
|
339
|
+
"merch-recent": never[];
|
|
340
|
+
"channel-points-latest": {
|
|
341
|
+
amount: number;
|
|
342
|
+
message: string;
|
|
343
|
+
name: string;
|
|
344
|
+
redemption: string;
|
|
345
|
+
};
|
|
346
|
+
"community-gift-latest": {
|
|
347
|
+
amount: number;
|
|
348
|
+
name: string;
|
|
349
|
+
tier: string;
|
|
350
|
+
};
|
|
351
|
+
"charityCampaignDonation-session-top-donation": {
|
|
352
|
+
amount: number;
|
|
353
|
+
name: string;
|
|
354
|
+
};
|
|
355
|
+
"charityCampaignDonation-session-top-donator": {
|
|
356
|
+
amount: number;
|
|
357
|
+
name: string;
|
|
358
|
+
};
|
|
359
|
+
"cheerPurchase-session-top-donation": {
|
|
360
|
+
amount: number;
|
|
361
|
+
name: string;
|
|
362
|
+
};
|
|
363
|
+
"cheerPurchase-session-top-donator": {
|
|
364
|
+
amount: number;
|
|
365
|
+
name: string;
|
|
366
|
+
};
|
|
367
|
+
"hypetrain-latest": {
|
|
368
|
+
active: number;
|
|
369
|
+
amount: number;
|
|
370
|
+
level: number;
|
|
371
|
+
levelChanged: number;
|
|
372
|
+
name: string;
|
|
373
|
+
type: string;
|
|
374
|
+
};
|
|
375
|
+
"hypetrain-latest-top-contributors": never[];
|
|
376
|
+
"hypetrain-level-goal": {
|
|
377
|
+
amount: number;
|
|
378
|
+
};
|
|
379
|
+
"hypetrain-level-progress": {
|
|
380
|
+
amount: number;
|
|
381
|
+
percent: number;
|
|
382
|
+
};
|
|
383
|
+
"hypetrain-total": {
|
|
384
|
+
amount: number;
|
|
385
|
+
};
|
|
386
|
+
"superchat-session-top-donation": {
|
|
387
|
+
amount: number;
|
|
388
|
+
name: string;
|
|
389
|
+
};
|
|
390
|
+
"superchat-session-top-donator": {
|
|
391
|
+
amount: number;
|
|
392
|
+
name: string;
|
|
393
|
+
};
|
|
394
|
+
};
|
|
395
|
+
settings: {
|
|
396
|
+
autoReset: boolean;
|
|
397
|
+
calendar: boolean;
|
|
398
|
+
resetOnStart: boolean;
|
|
399
|
+
};
|
|
400
|
+
};
|
|
401
|
+
recents: ({
|
|
402
|
+
name: string;
|
|
403
|
+
createdAt: string;
|
|
404
|
+
type: string;
|
|
405
|
+
amount?: undefined;
|
|
406
|
+
} | {
|
|
407
|
+
name: string;
|
|
408
|
+
amount: number;
|
|
409
|
+
createdAt: string;
|
|
410
|
+
type: string;
|
|
411
|
+
})[];
|
|
412
|
+
currency: {
|
|
413
|
+
code: string;
|
|
414
|
+
name: string;
|
|
415
|
+
symbol: string;
|
|
416
|
+
};
|
|
417
|
+
channel: {
|
|
418
|
+
username: string;
|
|
419
|
+
apiToken: string;
|
|
420
|
+
id: string;
|
|
421
|
+
providerId: string;
|
|
422
|
+
avatar: string;
|
|
423
|
+
};
|
|
424
|
+
fieldData: {
|
|
425
|
+
testMessageButton: string;
|
|
426
|
+
previewMode: boolean;
|
|
427
|
+
previewType: string;
|
|
428
|
+
previewMessage: string;
|
|
429
|
+
theme: string;
|
|
430
|
+
corner: string;
|
|
431
|
+
darkMode: boolean;
|
|
432
|
+
highlightStyle: string;
|
|
433
|
+
actionStyle: string;
|
|
434
|
+
maxWidth: number;
|
|
435
|
+
maxHeight: number;
|
|
436
|
+
fixedWidth: boolean;
|
|
437
|
+
positionMode: string;
|
|
438
|
+
listDirection: string;
|
|
439
|
+
listAlignment: string;
|
|
440
|
+
topEdge: boolean;
|
|
441
|
+
bottomEdge: boolean;
|
|
442
|
+
leftEdge: boolean;
|
|
443
|
+
rightEdge: boolean;
|
|
444
|
+
edgeDeviation: number;
|
|
445
|
+
padding: number;
|
|
446
|
+
animation: string;
|
|
447
|
+
dynamicModifier: number;
|
|
448
|
+
maxMessages: number;
|
|
449
|
+
hideOutOfBounds: boolean;
|
|
450
|
+
lifetime: number;
|
|
451
|
+
delay: number;
|
|
452
|
+
googleFont: string;
|
|
453
|
+
customFont: string;
|
|
454
|
+
fontSize: number;
|
|
455
|
+
fontWeight: string;
|
|
456
|
+
textDirection: string;
|
|
457
|
+
useCustomBorderColors: boolean;
|
|
458
|
+
borderColor: string;
|
|
459
|
+
nameColor: string;
|
|
460
|
+
useCustomMessageColors: boolean;
|
|
461
|
+
backgroundColor: string;
|
|
462
|
+
textColor: string;
|
|
463
|
+
pronounsMode: string;
|
|
464
|
+
pronounsLowercase: boolean;
|
|
465
|
+
pronounsBadgeCustomColors: boolean;
|
|
466
|
+
pronounsBadgeBackgroundColor: string;
|
|
467
|
+
pronounsBadgeBorderColor: string;
|
|
468
|
+
pronounsBadgeTextColor: string;
|
|
469
|
+
showBadges: boolean;
|
|
470
|
+
largeEmotes: boolean;
|
|
471
|
+
ffzGlobal: boolean;
|
|
472
|
+
bttvGlobal: boolean;
|
|
473
|
+
emoteOnly: boolean;
|
|
474
|
+
highlightOnly: boolean;
|
|
475
|
+
allowedStrings: never[];
|
|
476
|
+
minMessages: number;
|
|
477
|
+
messageCooldown: number;
|
|
478
|
+
raidCooldown: number;
|
|
479
|
+
raidMin: number;
|
|
480
|
+
includeEveryone: boolean;
|
|
481
|
+
includeFollowers: string;
|
|
482
|
+
minFollowTime: number;
|
|
483
|
+
includeSubs: boolean;
|
|
484
|
+
includeVIPs: boolean;
|
|
485
|
+
includeMods: boolean;
|
|
486
|
+
allowUserList: never[];
|
|
487
|
+
ignoreUserList: string[];
|
|
488
|
+
ignorePrefixList: string[];
|
|
489
|
+
volume: number;
|
|
490
|
+
soundGroup1: never[];
|
|
491
|
+
userLevelSoundGroup1: string;
|
|
492
|
+
specificUsersSoundGroup1: never[];
|
|
493
|
+
messageTypeSoundGroup1: string;
|
|
494
|
+
soundGroup2: never[];
|
|
495
|
+
userLevelSoundGroup2: string;
|
|
496
|
+
specificUsersSoundGroup2: never[];
|
|
497
|
+
messageTypeSoundGroup2: string;
|
|
498
|
+
soundGroup3: never[];
|
|
499
|
+
userLevelSoundGroup3: string;
|
|
500
|
+
specificUsersSoundGroup3: never[];
|
|
501
|
+
messageTypeSoundGroup3: string;
|
|
502
|
+
soundGroup4: never[];
|
|
503
|
+
userLevelSoundGroup4: string;
|
|
504
|
+
specificUsersSoundGroup4: never[];
|
|
505
|
+
messageTypeSoundGroup4: string;
|
|
506
|
+
soundGroup5: never[];
|
|
507
|
+
userLevelSoundGroup5: string;
|
|
508
|
+
specificUsersSoundGroup5: never[];
|
|
509
|
+
messageTypeSoundGroup5: string;
|
|
510
|
+
soundGroup6: never[];
|
|
511
|
+
userLevelSoundGroup6: string;
|
|
512
|
+
specificUsersSoundGroup6: never[];
|
|
513
|
+
messageTypeSoundGroup6: string;
|
|
514
|
+
soundGroup7: never[];
|
|
515
|
+
userLevelSoundGroup7: string;
|
|
516
|
+
specificUsersSoundGroup7: never[];
|
|
517
|
+
messageTypeSoundGroup7: string;
|
|
518
|
+
soundGroup8: never[];
|
|
519
|
+
userLevelSoundGroup8: string;
|
|
520
|
+
specificUsersSoundGroup8: never[];
|
|
521
|
+
messageTypeSoundGroup8: string;
|
|
522
|
+
soundGroup9: never[];
|
|
523
|
+
userLevelSoundGroup9: string;
|
|
524
|
+
specificUsersSoundGroup9: never[];
|
|
525
|
+
messageTypeSoundGroup9: string;
|
|
526
|
+
soundGroup10: never[];
|
|
527
|
+
userLevelSoundGroup10: string;
|
|
528
|
+
specificUsersSoundGroup10: never[];
|
|
529
|
+
messageTypeSoundGroup10: string;
|
|
530
|
+
widgetName: string;
|
|
531
|
+
widgetAuthor: string;
|
|
532
|
+
widgetVersion: string;
|
|
533
|
+
widgetUpdateUrl: string;
|
|
534
|
+
ignoreFirst: boolean;
|
|
535
|
+
};
|
|
536
|
+
overlay: {
|
|
537
|
+
isEditorMode: boolean;
|
|
538
|
+
muted: boolean;
|
|
539
|
+
};
|
|
540
|
+
};
|
|
541
|
+
export default _default;
|
|
542
|
+
//# sourceMappingURL=on-widget-load-detail.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"on-widget-load-detail.d.ts","sourceRoot":"","sources":["../../../src/root/sources/on-widget-load-detail.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,wBAu8BI"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/root/types/index.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAC;AACpC,cAAc,kBAAkB,CAAC"}
|