@notidotbot/noti-api-client 1.4.11 → 1.4.13

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.
Files changed (49) hide show
  1. package/dist/classes/guild.d.ts +27 -0
  2. package/dist/classes/guild.js +15 -0
  3. package/dist/classes/premium.d.ts +24 -0
  4. package/dist/classes/premium.js +6 -0
  5. package/dist/core/manager.d.ts +2 -0
  6. package/dist/core/manager.js +2 -0
  7. package/dist/index.d.ts +2 -0
  8. package/dist/index.js +2 -0
  9. package/dist/modules/stripe.js +1 -0
  10. package/dist/other/zod/client.zod.d.ts +56 -288
  11. package/dist/other/zod/client.zod.js +11 -0
  12. package/dist/other/zod/drops.zod.d.ts +26 -7
  13. package/dist/other/zod/drops.zod.js +13 -11
  14. package/dist/other/zod/giveaways.zod.d.ts +61 -322
  15. package/dist/other/zod/guild.zod.d.ts +260 -1431
  16. package/dist/other/zod/guild.zod.js +21 -4
  17. package/dist/other/zod/kickStreamer.zod.d.ts +116 -669
  18. package/dist/other/zod/kickStreamer.zod.js +3 -3
  19. package/dist/other/zod/member.zod.d.ts +2 -10
  20. package/dist/other/zod/r2Storage.zod.d.ts +9 -41
  21. package/dist/other/zod/r2Storage.zod.js +2 -0
  22. package/dist/other/zod/rumbleStreamer.zod.d.ts +63 -456
  23. package/dist/other/zod/schema.zod.d.ts +130 -17
  24. package/dist/other/zod/schema.zod.js +43 -21
  25. package/dist/other/zod/starboard.zod.d.ts +36 -138
  26. package/dist/other/zod/team.zod.d.ts +9 -79
  27. package/dist/other/zod/tiktokStreamer.zod.d.ts +59 -397
  28. package/dist/other/zod/twitchStreamer.zod.d.ts +58 -396
  29. package/dist/other/zod/user.zod.d.ts +123 -556
  30. package/dist/other/zod/youtubeStreamer.zod.d.ts +58 -398
  31. package/dist/other/zod/zod.d.ts +12 -83
  32. package/dist/other/zod/zod.js +5 -3
  33. package/dist/tsconfig.tsbuildinfo +1 -1
  34. package/package.json +2 -2
  35. package/prisma/generated/ts-prisma.d.ts +2942 -352
  36. package/prisma/schema/models/client.prisma +71 -53
  37. package/prisma/schema/models/drops.prisma +127 -125
  38. package/prisma/schema/models/giveaways.prisma +49 -49
  39. package/prisma/schema/models/guild.prisma +239 -222
  40. package/prisma/schema/models/kickStreamer.prisma +125 -125
  41. package/prisma/schema/models/member.prisma +5 -5
  42. package/prisma/schema/models/r2Storage.prisma +13 -11
  43. package/prisma/schema/models/rumbleStreamer.prisma +73 -73
  44. package/prisma/schema/models/starboard.prisma +36 -36
  45. package/prisma/schema/models/team.prisma +21 -21
  46. package/prisma/schema/models/tiktokStreamer.prisma +74 -74
  47. package/prisma/schema/models/twitchStreamer.prisma +74 -74
  48. package/prisma/schema/models/user.prisma +117 -117
  49. package/prisma/schema/models/youtubeStreamer.prisma +75 -75
@@ -1,19 +1,22 @@
1
1
  import { PartialZodObject } from './schema.zod';
2
- import { TSPrisma } from '@prisma/client';
3
2
  import { RemoveProperties } from '../prisma';
3
+ import { TSPrisma } from '@prisma/client';
4
4
  import { z } from 'zod';
5
5
  export type RT<T extends TSPrisma.AllModelNames> = z.ZodType<RemoveProperties<TSPrisma.TSPrismaModelsFull[T], RumbleStreamerRelations>>;
6
6
  export type RumbleStreamerRelations = 'db' | 'rumbleStreamer' | 'rsCustomMessage' | 'rsMessageEmbed';
7
7
  export declare const RumbleStreamerZod: {
8
8
  readonly RumbleStreamerSchema: z.ZodObject<{
9
9
  streamerUserName: z.ZodString;
10
- guildId: z.ZodEffects<z.ZodString, string, string>;
11
- type: z.ZodEnum<["channel", "user"]>;
10
+ guildId: z.ZodString;
11
+ type: z.ZodEnum<{
12
+ user: "user";
13
+ channel: "channel";
14
+ }>;
12
15
  deleteEmbeds: z.ZodNullable<z.ZodBoolean>;
13
16
  sendOfflineMessage: z.ZodNullable<z.ZodBoolean>;
14
17
  usePerStreamerEmbeds: z.ZodNullable<z.ZodBoolean>;
15
18
  autoPublishIfAnnouncmentChannel: z.ZodNullable<z.ZodBoolean>;
16
- customMessages: z.ZodEffects<z.ZodArray<z.ZodLazy<z.ZodObject<{
19
+ customMessages: z.ZodArray<z.ZodLazy<z.ZodObject<{
17
20
  content: z.ZodNullable<z.ZodString>;
18
21
  embed: z.ZodNullable<z.ZodLazy<z.ZodObject<{
19
22
  title: z.ZodNullable<z.ZodString>;
@@ -30,335 +33,52 @@ export declare const RumbleStreamerZod: {
30
33
  name: z.ZodString;
31
34
  value: z.ZodNullable<z.ZodString>;
32
35
  inline: z.ZodNullable<z.ZodBoolean>;
33
- }, "strip", z.ZodTypeAny, {
34
- name: string;
35
- value: string | null;
36
- inline: boolean | null;
37
- }, {
38
- name: string;
39
- value: string | null;
40
- inline: boolean | null;
41
- }>>, "many">;
42
- }, "strip", z.ZodTypeAny, {
43
- title: string | null;
44
- description: string;
45
- url: string | null;
46
- color: string | null;
47
- footer: string | null;
48
- footerIcon: string | null;
49
- image: string | null;
50
- thumbnail: string | null;
51
- author: string | null;
52
- authorIcon: string | null;
53
- fields: {
54
- name: string;
55
- value: string | null;
56
- inline: boolean | null;
57
- }[];
58
- }, {
59
- title: string | null;
60
- description: string;
61
- url: string | null;
62
- color: string | null;
63
- footer: string | null;
64
- footerIcon: string | null;
65
- image: string | null;
66
- thumbnail: string | null;
67
- author: string | null;
68
- authorIcon: string | null;
69
- fields: {
70
- name: string;
71
- value: string | null;
72
- inline: boolean | null;
73
- }[];
74
- }>>>;
36
+ }, z.core.$strip>>>;
37
+ }, z.core.$strip>>>;
75
38
  buttons: z.ZodArray<z.ZodLazy<z.ZodObject<{
76
39
  title: z.ZodString;
77
40
  url: z.ZodNullable<z.ZodString>;
78
41
  emojiUnicodeOrId: z.ZodNullable<z.ZodString>;
79
- }, "strip", z.ZodTypeAny, {
80
- title: string;
81
- url: string | null;
82
- emojiUnicodeOrId: string | null;
83
- }, {
84
- title: string;
85
- url: string | null;
86
- emojiUnicodeOrId: string | null;
87
- }>>, "many">;
42
+ }, z.core.$strip>>>;
88
43
  webhook: z.ZodNullable<z.ZodLazy<z.ZodObject<{
89
44
  enabled: z.ZodNullable<z.ZodBoolean>;
90
45
  username: z.ZodNullable<z.ZodString>;
91
46
  avatarUrl: z.ZodNullable<z.ZodString>;
92
- }, "strip", z.ZodTypeAny, {
93
- enabled: boolean | null;
94
- username: string | null;
95
- avatarUrl: string | null;
96
- }, {
97
- enabled: boolean | null;
98
- username: string | null;
99
- avatarUrl: string | null;
100
- }>>>;
101
- type: z.ZodEnum<["clip", "vod", "kickLive", "kickOffline", "twitchLive", "twitchOffline", "rumbleLive", "rumbleOffline", "tiktokLive", "tiktokOffline", "tiktokVideo", "youtubeLive", "youtubeVideo"]>;
102
- }, "strip", z.ZodTypeAny, {
103
- type: "clip" | "vod" | "kickLive" | "kickOffline" | "twitchLive" | "twitchOffline" | "rumbleLive" | "rumbleOffline" | "tiktokLive" | "tiktokOffline" | "tiktokVideo" | "youtubeLive" | "youtubeVideo";
104
- webhook: {
105
- enabled: boolean | null;
106
- username: string | null;
107
- avatarUrl: string | null;
108
- } | null;
109
- content: string | null;
110
- embed: {
111
- title: string | null;
112
- description: string;
113
- url: string | null;
114
- color: string | null;
115
- footer: string | null;
116
- footerIcon: string | null;
117
- image: string | null;
118
- thumbnail: string | null;
119
- author: string | null;
120
- authorIcon: string | null;
121
- fields: {
122
- name: string;
123
- value: string | null;
124
- inline: boolean | null;
125
- }[];
126
- } | null;
127
- buttons: {
128
- title: string;
129
- url: string | null;
130
- emojiUnicodeOrId: string | null;
131
- }[];
132
- }, {
133
- type: "clip" | "vod" | "kickLive" | "kickOffline" | "twitchLive" | "twitchOffline" | "rumbleLive" | "rumbleOffline" | "tiktokLive" | "tiktokOffline" | "tiktokVideo" | "youtubeLive" | "youtubeVideo";
134
- webhook: {
135
- enabled: boolean | null;
136
- username: string | null;
137
- avatarUrl: string | null;
138
- } | null;
139
- content: string | null;
140
- embed: {
141
- title: string | null;
142
- description: string;
143
- url: string | null;
144
- color: string | null;
145
- footer: string | null;
146
- footerIcon: string | null;
147
- image: string | null;
148
- thumbnail: string | null;
149
- author: string | null;
150
- authorIcon: string | null;
151
- fields: {
152
- name: string;
153
- value: string | null;
154
- inline: boolean | null;
155
- }[];
156
- } | null;
157
- buttons: {
158
- title: string;
159
- url: string | null;
160
- emojiUnicodeOrId: string | null;
161
- }[];
162
- }>>, "many">, {
163
- type: "clip" | "vod" | "kickLive" | "kickOffline" | "twitchLive" | "twitchOffline" | "rumbleLive" | "rumbleOffline" | "tiktokLive" | "tiktokOffline" | "tiktokVideo" | "youtubeLive" | "youtubeVideo";
164
- webhook: {
165
- enabled: boolean | null;
166
- username: string | null;
167
- avatarUrl: string | null;
168
- } | null;
169
- content: string | null;
170
- embed: {
171
- title: string | null;
172
- description: string;
173
- url: string | null;
174
- color: string | null;
175
- footer: string | null;
176
- footerIcon: string | null;
177
- image: string | null;
178
- thumbnail: string | null;
179
- author: string | null;
180
- authorIcon: string | null;
181
- fields: {
182
- name: string;
183
- value: string | null;
184
- inline: boolean | null;
185
- }[];
186
- } | null;
187
- buttons: {
188
- title: string;
189
- url: string | null;
190
- emojiUnicodeOrId: string | null;
191
- }[];
192
- }[], {
193
- type: "clip" | "vod" | "kickLive" | "kickOffline" | "twitchLive" | "twitchOffline" | "rumbleLive" | "rumbleOffline" | "tiktokLive" | "tiktokOffline" | "tiktokVideo" | "youtubeLive" | "youtubeVideo";
194
- webhook: {
195
- enabled: boolean | null;
196
- username: string | null;
197
- avatarUrl: string | null;
198
- } | null;
199
- content: string | null;
200
- embed: {
201
- title: string | null;
202
- description: string;
203
- url: string | null;
204
- color: string | null;
205
- footer: string | null;
206
- footerIcon: string | null;
207
- image: string | null;
208
- thumbnail: string | null;
209
- author: string | null;
210
- authorIcon: string | null;
211
- fields: {
212
- name: string;
213
- value: string | null;
214
- inline: boolean | null;
215
- }[];
216
- } | null;
217
- buttons: {
218
- title: string;
219
- url: string | null;
220
- emojiUnicodeOrId: string | null;
221
- }[];
222
- }[]>;
223
- notificationChannelId: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
47
+ }, z.core.$strip>>>;
48
+ type: z.ZodEnum<{
49
+ clip: "clip";
50
+ kickBuiltInClip: "kickBuiltInClip";
51
+ vod: "vod";
52
+ kickLive: "kickLive";
53
+ kickOffline: "kickOffline";
54
+ twitchLive: "twitchLive";
55
+ twitchOffline: "twitchOffline";
56
+ rumbleLive: "rumbleLive";
57
+ rumbleOffline: "rumbleOffline";
58
+ tiktokLive: "tiktokLive";
59
+ tiktokOffline: "tiktokOffline";
60
+ tiktokVideo: "tiktokVideo";
61
+ youtubeLive: "youtubeLive";
62
+ youtubeVideo: "youtubeVideo";
63
+ }>;
64
+ }, z.core.$strip>>>;
65
+ notificationChannelId: z.ZodNullable<z.ZodString>;
224
66
  showNotifyButton: z.ZodNullable<z.ZodBoolean>;
225
- pingRoleId: z.ZodNullable<z.ZodUnion<[z.ZodEffects<z.ZodString, string, string>, z.ZodLiteral<"everyone">, z.ZodLiteral<"here">]>>;
67
+ pingRoleId: z.ZodNullable<z.ZodUnion<readonly [z.ZodString, z.ZodLiteral<"everyone">, z.ZodLiteral<"here">]>>;
226
68
  customCoolDownBeforeNextLive: z.ZodNullable<z.ZodNumber>;
227
- liveRoleId: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
228
- usersForLiveRole: z.ZodEffects<z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, string[], string[]>;
229
- usersWhoHaveLiveRole: z.ZodEffects<z.ZodArray<z.ZodEffects<z.ZodString, string, string>, "many">, string[], string[]>;
69
+ liveRoleId: z.ZodNullable<z.ZodString>;
70
+ usersForLiveRole: z.ZodArray<z.ZodString>;
71
+ usersWhoHaveLiveRole: z.ZodArray<z.ZodString>;
230
72
  statsChannelIds: z.ZodNullable<z.ZodLazy<z.ZodObject<{
231
73
  isLive: z.ZodNullable<z.ZodString>;
232
- }, "strip", z.ZodTypeAny, {
233
- isLive: string | null;
234
- }, {
235
- isLive: string | null;
236
- }>>>;
74
+ }, z.core.$strip>>>;
237
75
  isCurrentlyLive: z.ZodNullable<z.ZodLazy<z.ZodObject<{
238
76
  correct: z.ZodNullable<z.ZodBoolean>;
239
- channelId: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
240
- messageId: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
241
- }, "strip", z.ZodTypeAny, {
242
- channelId: string | null;
243
- messageId: string | null;
244
- correct: boolean | null;
245
- }, {
246
- channelId: string | null;
247
- messageId: string | null;
248
- correct: boolean | null;
249
- }>>>;
77
+ channelId: z.ZodNullable<z.ZodString>;
78
+ messageId: z.ZodNullable<z.ZodString>;
79
+ }, z.core.$strip>>>;
250
80
  lastLive: z.ZodNullable<z.ZodDate>;
251
- }, "strip", z.ZodTypeAny, {
252
- guildId: string;
253
- type: "user" | "channel";
254
- streamerUserName: string;
255
- customMessages: {
256
- type: "clip" | "vod" | "kickLive" | "kickOffline" | "twitchLive" | "twitchOffline" | "rumbleLive" | "rumbleOffline" | "tiktokLive" | "tiktokOffline" | "tiktokVideo" | "youtubeLive" | "youtubeVideo";
257
- webhook: {
258
- enabled: boolean | null;
259
- username: string | null;
260
- avatarUrl: string | null;
261
- } | null;
262
- content: string | null;
263
- embed: {
264
- title: string | null;
265
- description: string;
266
- url: string | null;
267
- color: string | null;
268
- footer: string | null;
269
- footerIcon: string | null;
270
- image: string | null;
271
- thumbnail: string | null;
272
- author: string | null;
273
- authorIcon: string | null;
274
- fields: {
275
- name: string;
276
- value: string | null;
277
- inline: boolean | null;
278
- }[];
279
- } | null;
280
- buttons: {
281
- title: string;
282
- url: string | null;
283
- emojiUnicodeOrId: string | null;
284
- }[];
285
- }[];
286
- statsChannelIds: {
287
- isLive: string | null;
288
- } | null;
289
- isCurrentlyLive: {
290
- channelId: string | null;
291
- messageId: string | null;
292
- correct: boolean | null;
293
- } | null;
294
- deleteEmbeds: boolean | null;
295
- sendOfflineMessage: boolean | null;
296
- usePerStreamerEmbeds: boolean | null;
297
- autoPublishIfAnnouncmentChannel: boolean | null;
298
- notificationChannelId: string | null;
299
- showNotifyButton: boolean | null;
300
- pingRoleId: string | null;
301
- customCoolDownBeforeNextLive: number | null;
302
- liveRoleId: string | null;
303
- usersForLiveRole: string[];
304
- usersWhoHaveLiveRole: string[];
305
- lastLive: Date | null;
306
- }, {
307
- guildId: string;
308
- type: "user" | "channel";
309
- streamerUserName: string;
310
- customMessages: {
311
- type: "clip" | "vod" | "kickLive" | "kickOffline" | "twitchLive" | "twitchOffline" | "rumbleLive" | "rumbleOffline" | "tiktokLive" | "tiktokOffline" | "tiktokVideo" | "youtubeLive" | "youtubeVideo";
312
- webhook: {
313
- enabled: boolean | null;
314
- username: string | null;
315
- avatarUrl: string | null;
316
- } | null;
317
- content: string | null;
318
- embed: {
319
- title: string | null;
320
- description: string;
321
- url: string | null;
322
- color: string | null;
323
- footer: string | null;
324
- footerIcon: string | null;
325
- image: string | null;
326
- thumbnail: string | null;
327
- author: string | null;
328
- authorIcon: string | null;
329
- fields: {
330
- name: string;
331
- value: string | null;
332
- inline: boolean | null;
333
- }[];
334
- } | null;
335
- buttons: {
336
- title: string;
337
- url: string | null;
338
- emojiUnicodeOrId: string | null;
339
- }[];
340
- }[];
341
- statsChannelIds: {
342
- isLive: string | null;
343
- } | null;
344
- isCurrentlyLive: {
345
- channelId: string | null;
346
- messageId: string | null;
347
- correct: boolean | null;
348
- } | null;
349
- deleteEmbeds: boolean | null;
350
- sendOfflineMessage: boolean | null;
351
- usePerStreamerEmbeds: boolean | null;
352
- autoPublishIfAnnouncmentChannel: boolean | null;
353
- notificationChannelId: string | null;
354
- showNotifyButton: boolean | null;
355
- pingRoleId: string | null;
356
- customCoolDownBeforeNextLive: number | null;
357
- liveRoleId: string | null;
358
- usersForLiveRole: string[];
359
- usersWhoHaveLiveRole: string[];
360
- lastLive: Date | null;
361
- }>;
81
+ }, z.core.$strip>;
362
82
  readonly RSCustomMessageSchema: z.ZodObject<{
363
83
  content: z.ZodNullable<z.ZodString>;
364
84
  embed: z.ZodNullable<z.ZodLazy<z.ZodObject<{
@@ -376,155 +96,42 @@ export declare const RumbleStreamerZod: {
376
96
  name: z.ZodString;
377
97
  value: z.ZodNullable<z.ZodString>;
378
98
  inline: z.ZodNullable<z.ZodBoolean>;
379
- }, "strip", z.ZodTypeAny, {
380
- name: string;
381
- value: string | null;
382
- inline: boolean | null;
383
- }, {
384
- name: string;
385
- value: string | null;
386
- inline: boolean | null;
387
- }>>, "many">;
388
- }, "strip", z.ZodTypeAny, {
389
- title: string | null;
390
- description: string;
391
- url: string | null;
392
- color: string | null;
393
- footer: string | null;
394
- footerIcon: string | null;
395
- image: string | null;
396
- thumbnail: string | null;
397
- author: string | null;
398
- authorIcon: string | null;
399
- fields: {
400
- name: string;
401
- value: string | null;
402
- inline: boolean | null;
403
- }[];
404
- }, {
405
- title: string | null;
406
- description: string;
407
- url: string | null;
408
- color: string | null;
409
- footer: string | null;
410
- footerIcon: string | null;
411
- image: string | null;
412
- thumbnail: string | null;
413
- author: string | null;
414
- authorIcon: string | null;
415
- fields: {
416
- name: string;
417
- value: string | null;
418
- inline: boolean | null;
419
- }[];
420
- }>>>;
99
+ }, z.core.$strip>>>;
100
+ }, z.core.$strip>>>;
421
101
  buttons: z.ZodArray<z.ZodLazy<z.ZodObject<{
422
102
  title: z.ZodString;
423
103
  url: z.ZodNullable<z.ZodString>;
424
104
  emojiUnicodeOrId: z.ZodNullable<z.ZodString>;
425
- }, "strip", z.ZodTypeAny, {
426
- title: string;
427
- url: string | null;
428
- emojiUnicodeOrId: string | null;
429
- }, {
430
- title: string;
431
- url: string | null;
432
- emojiUnicodeOrId: string | null;
433
- }>>, "many">;
105
+ }, z.core.$strip>>>;
434
106
  webhook: z.ZodNullable<z.ZodLazy<z.ZodObject<{
435
107
  enabled: z.ZodNullable<z.ZodBoolean>;
436
108
  username: z.ZodNullable<z.ZodString>;
437
109
  avatarUrl: z.ZodNullable<z.ZodString>;
438
- }, "strip", z.ZodTypeAny, {
439
- enabled: boolean | null;
440
- username: string | null;
441
- avatarUrl: string | null;
442
- }, {
443
- enabled: boolean | null;
444
- username: string | null;
445
- avatarUrl: string | null;
446
- }>>>;
447
- type: z.ZodEnum<["clip", "vod", "kickLive", "kickOffline", "twitchLive", "twitchOffline", "rumbleLive", "rumbleOffline", "tiktokLive", "tiktokOffline", "tiktokVideo", "youtubeLive", "youtubeVideo"]>;
448
- }, "strip", z.ZodTypeAny, {
449
- type: "clip" | "vod" | "kickLive" | "kickOffline" | "twitchLive" | "twitchOffline" | "rumbleLive" | "rumbleOffline" | "tiktokLive" | "tiktokOffline" | "tiktokVideo" | "youtubeLive" | "youtubeVideo";
450
- webhook: {
451
- enabled: boolean | null;
452
- username: string | null;
453
- avatarUrl: string | null;
454
- } | null;
455
- content: string | null;
456
- embed: {
457
- title: string | null;
458
- description: string;
459
- url: string | null;
460
- color: string | null;
461
- footer: string | null;
462
- footerIcon: string | null;
463
- image: string | null;
464
- thumbnail: string | null;
465
- author: string | null;
466
- authorIcon: string | null;
467
- fields: {
468
- name: string;
469
- value: string | null;
470
- inline: boolean | null;
471
- }[];
472
- } | null;
473
- buttons: {
474
- title: string;
475
- url: string | null;
476
- emojiUnicodeOrId: string | null;
477
- }[];
478
- }, {
479
- type: "clip" | "vod" | "kickLive" | "kickOffline" | "twitchLive" | "twitchOffline" | "rumbleLive" | "rumbleOffline" | "tiktokLive" | "tiktokOffline" | "tiktokVideo" | "youtubeLive" | "youtubeVideo";
480
- webhook: {
481
- enabled: boolean | null;
482
- username: string | null;
483
- avatarUrl: string | null;
484
- } | null;
485
- content: string | null;
486
- embed: {
487
- title: string | null;
488
- description: string;
489
- url: string | null;
490
- color: string | null;
491
- footer: string | null;
492
- footerIcon: string | null;
493
- image: string | null;
494
- thumbnail: string | null;
495
- author: string | null;
496
- authorIcon: string | null;
497
- fields: {
498
- name: string;
499
- value: string | null;
500
- inline: boolean | null;
501
- }[];
502
- } | null;
503
- buttons: {
504
- title: string;
505
- url: string | null;
506
- emojiUnicodeOrId: string | null;
507
- }[];
508
- }>;
110
+ }, z.core.$strip>>>;
111
+ type: z.ZodEnum<{
112
+ clip: "clip";
113
+ kickBuiltInClip: "kickBuiltInClip";
114
+ vod: "vod";
115
+ kickLive: "kickLive";
116
+ kickOffline: "kickOffline";
117
+ twitchLive: "twitchLive";
118
+ twitchOffline: "twitchOffline";
119
+ rumbleLive: "rumbleLive";
120
+ rumbleOffline: "rumbleOffline";
121
+ tiktokLive: "tiktokLive";
122
+ tiktokOffline: "tiktokOffline";
123
+ tiktokVideo: "tiktokVideo";
124
+ youtubeLive: "youtubeLive";
125
+ youtubeVideo: "youtubeVideo";
126
+ }>;
127
+ }, z.core.$strip>;
509
128
  readonly RSStatsChannelIdSchema: z.ZodObject<{
510
129
  isLive: z.ZodNullable<z.ZodString>;
511
- }, "strip", z.ZodTypeAny, {
512
- isLive: string | null;
513
- }, {
514
- isLive: string | null;
515
- }>;
130
+ }, z.core.$strip>;
516
131
  readonly RSCurrentlyLiveSchema: z.ZodObject<{
517
132
  correct: z.ZodNullable<z.ZodBoolean>;
518
- channelId: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
519
- messageId: z.ZodNullable<z.ZodEffects<z.ZodString, string, string>>;
520
- }, "strip", z.ZodTypeAny, {
521
- channelId: string | null;
522
- messageId: string | null;
523
- correct: boolean | null;
524
- }, {
525
- channelId: string | null;
526
- messageId: string | null;
527
- correct: boolean | null;
528
- }>;
133
+ channelId: z.ZodNullable<z.ZodString>;
134
+ messageId: z.ZodNullable<z.ZodString>;
135
+ }, z.core.$strip>;
529
136
  };
530
137
  export declare const RumbleStreamerZodPartial: PartialZodObject<typeof RumbleStreamerZod>;