@devpad/api 2.0.1 → 2.0.3

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.
@@ -0,0 +1,680 @@
1
+ import {
2
+ apiError,
3
+ authExpired,
4
+ badRequest,
5
+ configureErrorLogging,
6
+ conflict,
7
+ dbError,
8
+ encryptionError,
9
+ errors,
10
+ forbidden,
11
+ githubError,
12
+ isApiError,
13
+ isAuthExpiredError,
14
+ isBadRequestError,
15
+ isConflictError,
16
+ isDatabaseError,
17
+ isEncryptionError,
18
+ isForbiddenError,
19
+ isGithubError,
20
+ isNetworkError,
21
+ isNotFoundError,
22
+ isParseError,
23
+ isRateLimitedError,
24
+ isRetryableError,
25
+ isScanError,
26
+ isServiceError,
27
+ isStoreError,
28
+ isUnauthorizedError,
29
+ isValidationError,
30
+ networkError,
31
+ notFound,
32
+ parseError,
33
+ rateLimited,
34
+ scanError,
35
+ storeError,
36
+ unauthorized,
37
+ validation
38
+ } from "../chunk-5X36WMYQ.js";
39
+
40
+ // ../schema/dist/media/branded.js
41
+ var userId = (id) => id;
42
+ var accountId = (id) => id;
43
+ var profileId = (id) => id;
44
+ var connectionId = (id) => id;
45
+ var isValidId = (id) => typeof id === "string" && id.length > 0;
46
+
47
+ // ../schema/dist/media/platforms/github.js
48
+ import { z } from "zod";
49
+ var GitHubRepoCommitSchema = z.object({
50
+ sha: z.string(),
51
+ message: z.string(),
52
+ author_name: z.string(),
53
+ author_email: z.string(),
54
+ author_date: z.string().datetime(),
55
+ committer_name: z.string(),
56
+ committer_email: z.string(),
57
+ committer_date: z.string().datetime(),
58
+ url: z.string().url(),
59
+ branch: z.string(),
60
+ additions: z.number().optional(),
61
+ deletions: z.number().optional(),
62
+ files_changed: z.number().optional()
63
+ });
64
+ var GitHubRepoCommitsStoreSchema = z.object({
65
+ owner: z.string(),
66
+ repo: z.string(),
67
+ branches: z.array(z.string()),
68
+ commits: z.array(GitHubRepoCommitSchema),
69
+ total_commits: z.number(),
70
+ fetched_at: z.string().datetime()
71
+ });
72
+ var GitHubRepoMetaSchema = z.object({
73
+ owner: z.string(),
74
+ name: z.string(),
75
+ full_name: z.string(),
76
+ default_branch: z.string(),
77
+ branches: z.array(z.string()),
78
+ is_private: z.boolean(),
79
+ pushed_at: z.string().datetime().nullable(),
80
+ updated_at: z.string().datetime()
81
+ });
82
+ var GitHubMetaStoreSchema = z.object({
83
+ username: z.string(),
84
+ repositories: z.array(GitHubRepoMetaSchema),
85
+ total_repos_available: z.number(),
86
+ repos_fetched: z.number(),
87
+ fetched_at: z.string().datetime()
88
+ });
89
+ var GitHubRepoPRSchema = z.object({
90
+ id: z.number(),
91
+ number: z.number(),
92
+ title: z.string(),
93
+ body: z.string().nullable(),
94
+ state: z.enum(["open", "closed", "merged"]),
95
+ url: z.string().url(),
96
+ created_at: z.string().datetime(),
97
+ updated_at: z.string().datetime(),
98
+ closed_at: z.string().datetime().nullable(),
99
+ merged_at: z.string().datetime().nullable(),
100
+ head_ref: z.string(),
101
+ base_ref: z.string(),
102
+ commit_shas: z.array(z.string()),
103
+ merge_commit_sha: z.string().nullable(),
104
+ author_login: z.string(),
105
+ author_avatar_url: z.string().url().optional(),
106
+ additions: z.number().optional(),
107
+ deletions: z.number().optional(),
108
+ changed_files: z.number().optional()
109
+ });
110
+ var GitHubRepoPRsStoreSchema = z.object({
111
+ owner: z.string(),
112
+ repo: z.string(),
113
+ pull_requests: z.array(GitHubRepoPRSchema),
114
+ total_prs: z.number(),
115
+ fetched_at: z.string().datetime()
116
+ });
117
+
118
+ // ../schema/dist/media/platforms/reddit.js
119
+ import { z as z2 } from "zod";
120
+ var RedditCommentSchema = z2.object({
121
+ id: z2.string(),
122
+ name: z2.string(),
123
+ body: z2.string(),
124
+ body_html: z2.string().optional(),
125
+ permalink: z2.string(),
126
+ link_id: z2.string(),
127
+ link_title: z2.string(),
128
+ link_permalink: z2.string(),
129
+ subreddit: z2.string(),
130
+ subreddit_prefixed: z2.string(),
131
+ author: z2.string(),
132
+ created_utc: z2.number(),
133
+ score: z2.number(),
134
+ is_submitter: z2.boolean().default(false),
135
+ stickied: z2.boolean().default(false),
136
+ edited: z2.union([z2.boolean(), z2.number()]).default(false),
137
+ parent_id: z2.string()
138
+ });
139
+ var RedditCommentsStoreSchema = z2.object({
140
+ username: z2.string(),
141
+ comments: z2.array(RedditCommentSchema),
142
+ total_comments: z2.number(),
143
+ fetched_at: z2.string().datetime()
144
+ });
145
+ var RedditMetaStoreSchema = z2.object({
146
+ username: z2.string(),
147
+ user_id: z2.string(),
148
+ icon_img: z2.string().url().optional(),
149
+ total_karma: z2.number(),
150
+ link_karma: z2.number(),
151
+ comment_karma: z2.number(),
152
+ created_utc: z2.number(),
153
+ is_gold: z2.boolean().default(false),
154
+ subreddits_active: z2.array(z2.string()).default([]),
155
+ fetched_at: z2.string().datetime()
156
+ });
157
+ var RedditPostSchema = z2.object({
158
+ id: z2.string(),
159
+ name: z2.string(),
160
+ title: z2.string(),
161
+ selftext: z2.string().default(""),
162
+ url: z2.string().url(),
163
+ permalink: z2.string(),
164
+ subreddit: z2.string(),
165
+ subreddit_prefixed: z2.string(),
166
+ author: z2.string(),
167
+ created_utc: z2.number(),
168
+ score: z2.number(),
169
+ upvote_ratio: z2.number().optional(),
170
+ num_comments: z2.number(),
171
+ is_self: z2.boolean(),
172
+ is_video: z2.boolean().default(false),
173
+ thumbnail: z2.string().optional(),
174
+ link_flair_text: z2.string().nullable().optional(),
175
+ over_18: z2.boolean().default(false),
176
+ spoiler: z2.boolean().default(false),
177
+ stickied: z2.boolean().default(false),
178
+ locked: z2.boolean().default(false),
179
+ archived: z2.boolean().default(false)
180
+ });
181
+ var RedditPostsStoreSchema = z2.object({
182
+ username: z2.string(),
183
+ posts: z2.array(RedditPostSchema),
184
+ total_posts: z2.number(),
185
+ fetched_at: z2.string().datetime()
186
+ });
187
+
188
+ // ../schema/dist/media/platforms/twitter.js
189
+ import { z as z3 } from "zod";
190
+ var TwitterUserMetricsSchema = z3.object({
191
+ followers_count: z3.number(),
192
+ following_count: z3.number(),
193
+ tweet_count: z3.number(),
194
+ listed_count: z3.number()
195
+ });
196
+ var TwitterMetaStoreSchema = z3.object({
197
+ id: z3.string(),
198
+ username: z3.string(),
199
+ name: z3.string(),
200
+ description: z3.string().optional(),
201
+ profile_image_url: z3.string().url().optional(),
202
+ profile_banner_url: z3.string().url().optional(),
203
+ url: z3.string().url().optional(),
204
+ location: z3.string().optional(),
205
+ created_at: z3.string().datetime(),
206
+ verified: z3.boolean().default(false),
207
+ verified_type: z3.enum(["blue", "business", "government", "none"]).default("none"),
208
+ protected: z3.boolean().default(false),
209
+ public_metrics: TwitterUserMetricsSchema,
210
+ pinned_tweet_id: z3.string().optional(),
211
+ fetched_at: z3.string().datetime()
212
+ });
213
+ var TweetMetricsSchema = z3.object({
214
+ retweet_count: z3.number().default(0),
215
+ reply_count: z3.number().default(0),
216
+ like_count: z3.number().default(0),
217
+ quote_count: z3.number().default(0),
218
+ impression_count: z3.number().optional(),
219
+ bookmark_count: z3.number().optional()
220
+ });
221
+ var TweetMediaSchema = z3.object({
222
+ media_key: z3.string(),
223
+ type: z3.enum(["photo", "video", "animated_gif"]),
224
+ url: z3.string().url().optional(),
225
+ preview_image_url: z3.string().url().optional(),
226
+ alt_text: z3.string().optional(),
227
+ duration_ms: z3.number().optional(),
228
+ width: z3.number().optional(),
229
+ height: z3.number().optional()
230
+ });
231
+ var TweetUrlSchema = z3.object({
232
+ start: z3.number(),
233
+ end: z3.number(),
234
+ url: z3.string(),
235
+ expanded_url: z3.string().optional(),
236
+ display_url: z3.string().optional(),
237
+ title: z3.string().optional(),
238
+ description: z3.string().optional()
239
+ });
240
+ var TwitterTweetSchema = z3.object({
241
+ id: z3.string(),
242
+ text: z3.string(),
243
+ created_at: z3.string().datetime(),
244
+ author_id: z3.string(),
245
+ conversation_id: z3.string().optional(),
246
+ in_reply_to_user_id: z3.string().optional(),
247
+ public_metrics: TweetMetricsSchema,
248
+ possibly_sensitive: z3.boolean().default(false),
249
+ lang: z3.string().optional(),
250
+ source: z3.string().optional(),
251
+ referenced_tweets: z3.array(z3.object({
252
+ type: z3.enum(["retweeted", "quoted", "replied_to"]),
253
+ id: z3.string()
254
+ })).optional(),
255
+ attachments: z3.object({
256
+ media_keys: z3.array(z3.string()).optional(),
257
+ poll_ids: z3.array(z3.string()).optional()
258
+ }).optional(),
259
+ entities: z3.object({
260
+ urls: z3.array(TweetUrlSchema).optional(),
261
+ mentions: z3.array(z3.object({
262
+ start: z3.number(),
263
+ end: z3.number(),
264
+ username: z3.string(),
265
+ id: z3.string()
266
+ })).optional(),
267
+ hashtags: z3.array(z3.object({
268
+ start: z3.number(),
269
+ end: z3.number(),
270
+ tag: z3.string()
271
+ })).optional()
272
+ }).optional()
273
+ });
274
+ var TwitterTweetsStoreSchema = z3.object({
275
+ user_id: z3.string(),
276
+ username: z3.string(),
277
+ tweets: z3.array(TwitterTweetSchema),
278
+ media: z3.array(TweetMediaSchema).default([]),
279
+ total_tweets: z3.number(),
280
+ oldest_tweet_id: z3.string().optional(),
281
+ newest_tweet_id: z3.string().optional(),
282
+ fetched_at: z3.string().datetime()
283
+ });
284
+
285
+ // ../schema/dist/media/platforms.js
286
+ import { z as z4 } from "zod";
287
+ var PLATFORMS = ["github", "bluesky", "youtube", "devpad", "reddit", "twitter"];
288
+ var PlatformSchema = z4.enum(PLATFORMS);
289
+ var MULTI_STORE_PLATFORMS = ["github", "reddit", "twitter"];
290
+ var isMultiStorePlatform = (p) => MULTI_STORE_PLATFORMS.includes(p);
291
+ var FetchedAtSchema = z4.object({
292
+ fetched_at: z4.string().datetime()
293
+ });
294
+ var GitHubRepoSchema = z4.object({
295
+ id: z4.number(),
296
+ name: z4.string(),
297
+ url: z4.string()
298
+ });
299
+ var GitHubBaseEventSchema = z4.object({
300
+ id: z4.string(),
301
+ type: z4.string(),
302
+ created_at: z4.string(),
303
+ repo: GitHubRepoSchema,
304
+ payload: z4.record(z4.unknown())
305
+ });
306
+ var GitHubEventSchema = GitHubBaseEventSchema;
307
+ var GitHubExtendedCommitSchema = z4.object({
308
+ sha: z4.string(),
309
+ message: z4.string(),
310
+ date: z4.string(),
311
+ url: z4.string(),
312
+ repo: z4.string(),
313
+ branch: z4.string()
314
+ });
315
+ var GitHubPullRequestSchema = z4.object({
316
+ id: z4.number(),
317
+ number: z4.number(),
318
+ title: z4.string(),
319
+ state: z4.enum(["open", "closed", "merged"]),
320
+ action: z4.string(),
321
+ url: z4.string(),
322
+ repo: z4.string(),
323
+ created_at: z4.string(),
324
+ merged_at: z4.string().optional(),
325
+ head_ref: z4.string(),
326
+ base_ref: z4.string(),
327
+ commit_shas: z4.array(z4.string()).default([]),
328
+ merge_commit_sha: z4.string().optional()
329
+ });
330
+ var GitHubRawSchema = FetchedAtSchema.extend({
331
+ events: z4.array(GitHubEventSchema),
332
+ commits: z4.array(GitHubExtendedCommitSchema).default([]),
333
+ pull_requests: z4.array(GitHubPullRequestSchema).default([])
334
+ });
335
+ var BlueskyAuthorSchema = z4.object({
336
+ did: z4.string(),
337
+ handle: z4.string(),
338
+ displayName: z4.string().optional(),
339
+ avatar: z4.string().url().optional()
340
+ });
341
+ var BlueskyPostSchema = z4.object({
342
+ uri: z4.string(),
343
+ cid: z4.string(),
344
+ author: BlueskyAuthorSchema,
345
+ record: z4.object({
346
+ text: z4.string(),
347
+ createdAt: z4.string(),
348
+ reply: z4.object({
349
+ parent: z4.object({ uri: z4.string() }),
350
+ root: z4.object({ uri: z4.string() })
351
+ }).optional()
352
+ }),
353
+ replyCount: z4.number().default(0),
354
+ repostCount: z4.number().default(0),
355
+ likeCount: z4.number().default(0),
356
+ embed: z4.object({
357
+ images: z4.array(z4.object({
358
+ thumb: z4.string(),
359
+ fullsize: z4.string()
360
+ })).optional()
361
+ }).optional()
362
+ });
363
+ var BlueskyFeedItemSchema = z4.object({
364
+ post: BlueskyPostSchema,
365
+ reason: z4.object({
366
+ $type: z4.string(),
367
+ by: BlueskyAuthorSchema.optional()
368
+ }).optional()
369
+ });
370
+ var BlueskyRawSchema = FetchedAtSchema.extend({
371
+ feed: z4.array(BlueskyFeedItemSchema),
372
+ cursor: z4.string().optional()
373
+ });
374
+ var YouTubeThumbnailSchema = z4.object({
375
+ url: z4.string().url(),
376
+ width: z4.number().optional(),
377
+ height: z4.number().optional()
378
+ });
379
+ var YouTubeVideoSchema = z4.object({
380
+ kind: z4.string(),
381
+ etag: z4.string(),
382
+ id: z4.object({
383
+ kind: z4.string(),
384
+ videoId: z4.string()
385
+ }),
386
+ snippet: z4.object({
387
+ publishedAt: z4.string(),
388
+ channelId: z4.string(),
389
+ title: z4.string(),
390
+ description: z4.string(),
391
+ thumbnails: z4.object({
392
+ default: YouTubeThumbnailSchema.optional(),
393
+ medium: YouTubeThumbnailSchema.optional(),
394
+ high: YouTubeThumbnailSchema.optional()
395
+ }),
396
+ channelTitle: z4.string()
397
+ })
398
+ });
399
+ var YouTubeRawSchema = FetchedAtSchema.extend({
400
+ items: z4.array(YouTubeVideoSchema),
401
+ nextPageToken: z4.string().optional(),
402
+ pageInfo: z4.object({
403
+ totalResults: z4.number(),
404
+ resultsPerPage: z4.number()
405
+ }).optional()
406
+ });
407
+ var DevpadTaskSchema = z4.object({
408
+ id: z4.string(),
409
+ title: z4.string(),
410
+ status: z4.enum(["todo", "in_progress", "done", "archived"]),
411
+ priority: z4.enum(["low", "medium", "high"]).optional(),
412
+ project: z4.string().optional(),
413
+ tags: z4.array(z4.string()).default([]),
414
+ created_at: z4.string(),
415
+ updated_at: z4.string(),
416
+ due_date: z4.string().optional(),
417
+ completed_at: z4.string().optional()
418
+ });
419
+ var DevpadRawSchema = FetchedAtSchema.extend({
420
+ tasks: z4.array(DevpadTaskSchema)
421
+ });
422
+
423
+ // ../schema/dist/media/profiles.js
424
+ import { z as z5 } from "zod";
425
+ var slugRegex = /^[a-z0-9]+(?:-[a-z0-9]+)*$/;
426
+ var SlugSchema = z5.string().min(3, "Slug must be at least 3 characters").max(50, "Slug must be at most 50 characters").regex(slugRegex, "Slug must be lowercase alphanumeric with hyphens, no leading/trailing hyphens");
427
+ var CreateProfileSchema = z5.object({
428
+ slug: SlugSchema,
429
+ name: z5.string().min(1, "Name is required").max(100, "Name must be at most 100 characters"),
430
+ description: z5.string().max(500, "Description must be at most 500 characters").optional(),
431
+ theme: z5.string().max(50).optional()
432
+ });
433
+ var UpdateProfileSchema = z5.object({
434
+ slug: SlugSchema.optional(),
435
+ name: z5.string().min(1).max(100).optional(),
436
+ description: z5.string().max(500).nullable().optional(),
437
+ theme: z5.string().max(50).nullable().optional()
438
+ });
439
+ var FilterTypeSchema = z5.enum(["include", "exclude"]);
440
+ var FilterKeySchema = z5.enum(["repo", "subreddit", "keyword", "twitter_account"]);
441
+ var AddFilterSchema = z5.object({
442
+ account_id: z5.string(),
443
+ filter_type: FilterTypeSchema,
444
+ filter_key: FilterKeySchema,
445
+ filter_value: z5.string().min(1, "Filter value is required").max(200, "Filter value too long")
446
+ });
447
+
448
+ // ../schema/dist/media/settings.js
449
+ import { z as z6 } from "zod";
450
+ var GitHubSettingsSchema = z6.object({
451
+ hidden_repos: z6.array(z6.string()).default([])
452
+ });
453
+ var BlueskySettingsSchema = z6.object({
454
+ include_replies: z6.boolean().default(true),
455
+ include_reposts: z6.boolean().default(false)
456
+ });
457
+ var YouTubeSettingsSchema = z6.object({
458
+ include_watch_history: z6.boolean().default(true),
459
+ include_liked: z6.boolean().default(false)
460
+ });
461
+ var DevpadSettingsSchema = z6.object({
462
+ hidden_projects: z6.array(z6.string()).default([])
463
+ });
464
+ var PlatformSettingsSchemaMap = {
465
+ github: GitHubSettingsSchema,
466
+ bluesky: BlueskySettingsSchema,
467
+ youtube: YouTubeSettingsSchema,
468
+ devpad: DevpadSettingsSchema
469
+ };
470
+
471
+ // ../schema/dist/media/timeline.js
472
+ import { z as z7 } from "zod";
473
+ var TimelineTypeSchema = z7.enum(["commit", "post", "video", "task", "pull_request", "comment"]);
474
+ var CommitPayloadSchema = z7.object({
475
+ type: z7.literal("commit"),
476
+ sha: z7.string(),
477
+ message: z7.string(),
478
+ repo: z7.string(),
479
+ branch: z7.string(),
480
+ additions: z7.number().optional(),
481
+ deletions: z7.number().optional(),
482
+ files_changed: z7.number().optional()
483
+ });
484
+ var PostPayloadSchema = z7.object({
485
+ type: z7.literal("post"),
486
+ content: z7.string(),
487
+ author_handle: z7.string(),
488
+ author_name: z7.string().optional(),
489
+ author_avatar: z7.string().url().optional(),
490
+ reply_count: z7.number().default(0),
491
+ repost_count: z7.number().default(0),
492
+ like_count: z7.number().default(0),
493
+ has_media: z7.boolean().default(false),
494
+ is_reply: z7.boolean().default(false),
495
+ is_repost: z7.boolean().default(false),
496
+ subreddit: z7.string().optional()
497
+ });
498
+ var VideoPayloadSchema = z7.object({
499
+ type: z7.literal("video"),
500
+ channel_id: z7.string(),
501
+ channel_title: z7.string(),
502
+ description: z7.string().optional(),
503
+ thumbnail_url: z7.string().url().optional(),
504
+ duration: z7.string().optional(),
505
+ view_count: z7.number().optional(),
506
+ like_count: z7.number().optional()
507
+ });
508
+ var TaskPayloadSchema = z7.object({
509
+ type: z7.literal("task"),
510
+ status: z7.enum(["todo", "in_progress", "done", "archived"]),
511
+ priority: z7.enum(["low", "medium", "high"]).optional(),
512
+ project: z7.string().optional(),
513
+ tags: z7.array(z7.string()).default([]),
514
+ due_date: z7.string().datetime().optional(),
515
+ completed_at: z7.string().datetime().optional()
516
+ });
517
+ var PRCommitSchema = z7.object({
518
+ sha: z7.string(),
519
+ message: z7.string(),
520
+ url: z7.string()
521
+ });
522
+ var PullRequestPayloadSchema = z7.object({
523
+ type: z7.literal("pull_request"),
524
+ repo: z7.string(),
525
+ number: z7.number(),
526
+ title: z7.string(),
527
+ state: z7.enum(["open", "closed", "merged"]),
528
+ action: z7.string(),
529
+ head_ref: z7.string(),
530
+ base_ref: z7.string(),
531
+ additions: z7.number().optional(),
532
+ deletions: z7.number().optional(),
533
+ changed_files: z7.number().optional(),
534
+ commit_shas: z7.array(z7.string()).default([]),
535
+ merge_commit_sha: z7.string().nullable().optional(),
536
+ commits: z7.array(PRCommitSchema).default([])
537
+ });
538
+ var CommentPayloadSchema = z7.object({
539
+ type: z7.literal("comment"),
540
+ content: z7.string(),
541
+ author_handle: z7.string(),
542
+ parent_title: z7.string(),
543
+ parent_url: z7.string(),
544
+ subreddit: z7.string(),
545
+ score: z7.number(),
546
+ is_op: z7.boolean().default(false)
547
+ });
548
+ var PayloadSchema = z7.discriminatedUnion("type", [CommitPayloadSchema, PostPayloadSchema, VideoPayloadSchema, TaskPayloadSchema, PullRequestPayloadSchema, CommentPayloadSchema]);
549
+ var TimelineItemSchema = z7.object({
550
+ id: z7.string(),
551
+ platform: PlatformSchema,
552
+ type: TimelineTypeSchema,
553
+ timestamp: z7.string().datetime(),
554
+ title: z7.string(),
555
+ url: z7.string().url(),
556
+ payload: PayloadSchema
557
+ });
558
+ var CommitGroupSchema = z7.object({
559
+ type: z7.literal("commit_group"),
560
+ repo: z7.string(),
561
+ branch: z7.string(),
562
+ date: z7.string(),
563
+ commits: z7.array(TimelineItemSchema),
564
+ total_additions: z7.number().default(0),
565
+ total_deletions: z7.number().default(0),
566
+ total_files_changed: z7.number().default(0)
567
+ });
568
+ var DateGroupSchema = z7.object({
569
+ date: z7.string(),
570
+ items: z7.array(z7.union([TimelineItemSchema, CommitGroupSchema]))
571
+ });
572
+ var TimelineSchema = z7.object({
573
+ user_id: z7.string(),
574
+ generated_at: z7.string().datetime(),
575
+ groups: z7.array(DateGroupSchema)
576
+ });
577
+ export {
578
+ AddFilterSchema,
579
+ BlueskyAuthorSchema,
580
+ BlueskyFeedItemSchema,
581
+ BlueskyPostSchema,
582
+ BlueskyRawSchema,
583
+ BlueskySettingsSchema,
584
+ CommentPayloadSchema,
585
+ CommitGroupSchema,
586
+ CommitPayloadSchema,
587
+ CreateProfileSchema,
588
+ DateGroupSchema,
589
+ DevpadRawSchema,
590
+ DevpadSettingsSchema,
591
+ DevpadTaskSchema,
592
+ FilterKeySchema,
593
+ FilterTypeSchema,
594
+ GitHubBaseEventSchema,
595
+ GitHubEventSchema,
596
+ GitHubExtendedCommitSchema,
597
+ GitHubMetaStoreSchema,
598
+ GitHubPullRequestSchema,
599
+ GitHubRawSchema,
600
+ GitHubRepoCommitSchema,
601
+ GitHubRepoCommitsStoreSchema,
602
+ GitHubRepoMetaSchema,
603
+ GitHubRepoPRSchema,
604
+ GitHubRepoPRsStoreSchema,
605
+ GitHubRepoSchema,
606
+ GitHubSettingsSchema,
607
+ MULTI_STORE_PLATFORMS,
608
+ PLATFORMS,
609
+ PRCommitSchema,
610
+ PayloadSchema,
611
+ PlatformSchema,
612
+ PlatformSettingsSchemaMap,
613
+ PostPayloadSchema,
614
+ PullRequestPayloadSchema,
615
+ RedditCommentSchema,
616
+ RedditCommentsStoreSchema,
617
+ RedditMetaStoreSchema,
618
+ RedditPostSchema,
619
+ RedditPostsStoreSchema,
620
+ SlugSchema,
621
+ TaskPayloadSchema,
622
+ TimelineItemSchema,
623
+ TimelineSchema,
624
+ TimelineTypeSchema,
625
+ TweetMediaSchema,
626
+ TweetMetricsSchema,
627
+ TweetUrlSchema,
628
+ TwitterMetaStoreSchema,
629
+ TwitterTweetSchema,
630
+ TwitterTweetsStoreSchema,
631
+ TwitterUserMetricsSchema,
632
+ UpdateProfileSchema,
633
+ VideoPayloadSchema,
634
+ YouTubeRawSchema,
635
+ YouTubeSettingsSchema,
636
+ YouTubeThumbnailSchema,
637
+ YouTubeVideoSchema,
638
+ accountId,
639
+ apiError,
640
+ authExpired,
641
+ badRequest,
642
+ configureErrorLogging,
643
+ conflict,
644
+ connectionId,
645
+ dbError,
646
+ encryptionError,
647
+ errors,
648
+ forbidden,
649
+ githubError,
650
+ isApiError,
651
+ isAuthExpiredError,
652
+ isBadRequestError,
653
+ isConflictError,
654
+ isDatabaseError,
655
+ isEncryptionError,
656
+ isForbiddenError,
657
+ isGithubError,
658
+ isMultiStorePlatform,
659
+ isNetworkError,
660
+ isNotFoundError,
661
+ isParseError,
662
+ isRateLimitedError,
663
+ isRetryableError,
664
+ isScanError,
665
+ isServiceError,
666
+ isStoreError,
667
+ isUnauthorizedError,
668
+ isValidId,
669
+ isValidationError,
670
+ networkError,
671
+ notFound,
672
+ parseError,
673
+ profileId,
674
+ rateLimited,
675
+ scanError,
676
+ storeError,
677
+ unauthorized,
678
+ userId,
679
+ validation
680
+ };