@llun/activities.schema 0.2.34 → 0.3.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.
Files changed (109) hide show
  1. package/.claude/settings.local.json +22 -0
  2. package/.yarn/install-state.gz +0 -0
  3. package/dist/cjs/announce.js +1 -1
  4. package/dist/cjs/mastodon/account/field.js +4 -9
  5. package/dist/cjs/mastodon/account/source.js +4 -12
  6. package/dist/cjs/mastodon/account.js +27 -66
  7. package/dist/cjs/mastodon/customEmoji.js +6 -15
  8. package/dist/cjs/mastodon/filter/index.js +4 -7
  9. package/dist/cjs/mastodon/filter/keyword.js +3 -5
  10. package/dist/cjs/mastodon/filter/status.js +2 -4
  11. package/dist/cjs/mastodon/mediaAttachment/base.js +10 -18
  12. package/dist/cjs/mastodon/mediaAttachment/gifv.js +2 -6
  13. package/dist/cjs/mastodon/mediaAttachment/video.js +2 -6
  14. package/dist/cjs/mastodon/poll/index.js +9 -11
  15. package/dist/cjs/mastodon/poll/option.js +3 -4
  16. package/dist/cjs/mastodon/previewCard.js +15 -28
  17. package/dist/cjs/mastodon/status/application.js +3 -6
  18. package/dist/cjs/mastodon/status/base.js +31 -54
  19. package/dist/cjs/mastodon/status/mention.js +4 -8
  20. package/dist/cjs/mastodon/status/tag.js +2 -6
  21. package/dist/cjs/note/baseContent.js +11 -12
  22. package/dist/cjs/question.js +1 -1
  23. package/dist/esm/announce.js +1 -1
  24. package/dist/esm/mastodon/account/field.js +4 -9
  25. package/dist/esm/mastodon/account/source.js +4 -12
  26. package/dist/esm/mastodon/account.js +27 -66
  27. package/dist/esm/mastodon/customEmoji.js +6 -15
  28. package/dist/esm/mastodon/filter/index.js +4 -7
  29. package/dist/esm/mastodon/filter/keyword.js +3 -5
  30. package/dist/esm/mastodon/filter/status.js +2 -4
  31. package/dist/esm/mastodon/mediaAttachment/base.js +10 -18
  32. package/dist/esm/mastodon/mediaAttachment/gifv.js +2 -6
  33. package/dist/esm/mastodon/mediaAttachment/video.js +2 -6
  34. package/dist/esm/mastodon/poll/index.js +9 -11
  35. package/dist/esm/mastodon/poll/option.js +3 -4
  36. package/dist/esm/mastodon/previewCard.js +15 -28
  37. package/dist/esm/mastodon/status/application.js +3 -6
  38. package/dist/esm/mastodon/status/base.js +31 -54
  39. package/dist/esm/mastodon/status/mention.js +4 -8
  40. package/dist/esm/mastodon/status/tag.js +2 -6
  41. package/dist/esm/note/baseContent.js +11 -12
  42. package/dist/esm/question.js +1 -1
  43. package/dist/types/accept.d.ts +2 -32
  44. package/dist/types/actor.d.ts +18 -288
  45. package/dist/types/announce.d.ts +3 -19
  46. package/dist/types/collection.d.ts +11 -87
  47. package/dist/types/follow.d.ts +1 -11
  48. package/dist/types/image.d.ts +1 -9
  49. package/dist/types/like.d.ts +27 -576
  50. package/dist/types/mastodon/account/field.d.ts +1 -9
  51. package/dist/types/mastodon/account/relationship.d.ts +2 -34
  52. package/dist/types/mastodon/account/source.d.ts +8 -33
  53. package/dist/types/mastodon/account.d.ts +22 -397
  54. package/dist/types/mastodon/customEmoji.d.ts +1 -13
  55. package/dist/types/mastodon/filter/index.d.ts +14 -49
  56. package/dist/types/mastodon/filter/keyword.d.ts +1 -9
  57. package/dist/types/mastodon/filter/status.d.ts +1 -7
  58. package/dist/types/mastodon/filterResult.d.ts +17 -90
  59. package/dist/types/mastodon/mediaAttachment/audio.d.ts +3 -68
  60. package/dist/types/mastodon/mediaAttachment/base.d.ts +1 -15
  61. package/dist/types/mastodon/mediaAttachment/gifv.d.ts +4 -129
  62. package/dist/types/mastodon/mediaAttachment/image.d.ts +5 -118
  63. package/dist/types/mastodon/mediaAttachment/index.d.ts +35 -949
  64. package/dist/types/mastodon/mediaAttachment/unknown.d.ts +1 -18
  65. package/dist/types/mastodon/mediaAttachment/video.d.ts +4 -141
  66. package/dist/types/mastodon/poll/index.d.ts +4 -62
  67. package/dist/types/mastodon/poll/option.d.ts +1 -7
  68. package/dist/types/mastodon/previewCard.d.ts +7 -32
  69. package/dist/types/mastodon/status/application.d.ts +1 -7
  70. package/dist/types/mastodon/status/base.d.ts +79 -1722
  71. package/dist/types/mastodon/status/index.d.ts +158 -4073
  72. package/dist/types/mastodon/status/mention.d.ts +1 -11
  73. package/dist/types/mastodon/status/tag.d.ts +1 -7
  74. package/dist/types/mastodon/visibility.d.ts +6 -1
  75. package/dist/types/note/attachment.d.ts +3 -29
  76. package/dist/types/note/baseContent.d.ts +25 -379
  77. package/dist/types/note/document.d.ts +1 -19
  78. package/dist/types/note/emoji.d.ts +2 -28
  79. package/dist/types/note/hashtag.d.ts +1 -9
  80. package/dist/types/note/mention.d.ts +1 -9
  81. package/dist/types/note/propertyValue.d.ts +1 -9
  82. package/dist/types/note/tag.d.ts +5 -47
  83. package/dist/types/note.d.ts +25 -382
  84. package/dist/types/question/note.d.ts +2 -22
  85. package/dist/types/question.d.ts +27 -422
  86. package/dist/types/reject.d.ts +2 -32
  87. package/dist/types/tombstone.d.ts +1 -7
  88. package/dist/types/undo.d.ts +30 -801
  89. package/package.json +4 -4
  90. package/src/announce.ts +1 -1
  91. package/src/mastodon/account/field.ts +6 -10
  92. package/src/mastodon/account/source.ts +4 -12
  93. package/src/mastodon/account.ts +71 -78
  94. package/src/mastodon/customEmoji.ts +8 -16
  95. package/src/mastodon/filter/index.ts +6 -8
  96. package/src/mastodon/filter/keyword.ts +5 -6
  97. package/src/mastodon/filter/status.ts +2 -4
  98. package/src/mastodon/mediaAttachment/base.ts +16 -21
  99. package/src/mastodon/mediaAttachment/gifv.ts +2 -6
  100. package/src/mastodon/mediaAttachment/video.ts +2 -6
  101. package/src/mastodon/poll/index.ts +13 -13
  102. package/src/mastodon/poll/option.ts +5 -5
  103. package/src/mastodon/previewCard.ts +17 -29
  104. package/src/mastodon/status/application.ts +5 -7
  105. package/src/mastodon/status/base.ts +53 -65
  106. package/src/mastodon/status/mention.ts +6 -9
  107. package/src/mastodon/status/tag.ts +2 -6
  108. package/src/note/baseContent.ts +13 -13
  109. package/src/question.ts +1 -1
@@ -20,74 +20,29 @@ export declare const Status: z.ZodObject<{
20
20
  name: z.ZodString;
21
21
  value: z.ZodString;
22
22
  verified_at: z.ZodNullable<z.ZodString>;
23
- }, "strip", z.ZodTypeAny, {
24
- value: string;
25
- name: string;
26
- verified_at: string | null;
27
- }, {
28
- value: string;
29
- name: string;
30
- verified_at: string | null;
31
- }>, "many">;
32
- privacy: z.ZodEnum<["public", "unlist", "private", "direct"]>;
23
+ }, z.core.$strip>>;
24
+ privacy: z.ZodEnum<{
25
+ public: "public";
26
+ unlist: "unlist";
27
+ private: "private";
28
+ direct: "direct";
29
+ }>;
33
30
  sensitive: z.ZodBoolean;
34
31
  language: z.ZodString;
35
32
  follow_requests_count: z.ZodNumber;
36
- }, "strip", z.ZodTypeAny, {
37
- note: string;
38
- fields: {
39
- value: string;
40
- name: string;
41
- verified_at: string | null;
42
- }[];
43
- privacy: "public" | "unlist" | "private" | "direct";
44
- sensitive: boolean;
45
- language: string;
46
- follow_requests_count: number;
47
- }, {
48
- note: string;
49
- fields: {
50
- value: string;
51
- name: string;
52
- verified_at: string | null;
53
- }[];
54
- privacy: "public" | "unlist" | "private" | "direct";
55
- sensitive: boolean;
56
- language: string;
57
- follow_requests_count: number;
58
- }>;
33
+ }, z.core.$strip>;
59
34
  fields: z.ZodArray<z.ZodObject<{
60
35
  name: z.ZodString;
61
36
  value: z.ZodString;
62
37
  verified_at: z.ZodNullable<z.ZodString>;
63
- }, "strip", z.ZodTypeAny, {
64
- value: string;
65
- name: string;
66
- verified_at: string | null;
67
- }, {
68
- value: string;
69
- name: string;
70
- verified_at: string | null;
71
- }>, "many">;
38
+ }, z.core.$strip>>;
72
39
  emojis: z.ZodArray<z.ZodObject<{
73
40
  shortcode: z.ZodString;
74
41
  static_url: z.ZodString;
75
42
  url: z.ZodString;
76
43
  visible_in_picker: z.ZodBoolean;
77
44
  category: z.ZodNullable<z.ZodString>;
78
- }, "strip", z.ZodTypeAny, {
79
- url: string;
80
- shortcode: string;
81
- static_url: string;
82
- visible_in_picker: boolean;
83
- category: string | null;
84
- }, {
85
- url: string;
86
- shortcode: string;
87
- static_url: string;
88
- visible_in_picker: boolean;
89
- category: string | null;
90
- }>, "many">;
45
+ }, z.core.$strip>>;
91
46
  bot: z.ZodBoolean;
92
47
  group: z.ZodBoolean;
93
48
  discoverable: z.ZodNullable<z.ZodBoolean>;
@@ -99,7 +54,6 @@ export declare const Status: z.ZodObject<{
99
54
  statuses_count: z.ZodNumber;
100
55
  followers_count: z.ZodNumber;
101
56
  following_count: z.ZodNumber;
102
- } & {
103
57
  moved: z.ZodOptional<z.ZodNullable<z.ZodObject<{
104
58
  id: z.ZodString;
105
59
  username: z.ZodString;
@@ -118,74 +72,29 @@ export declare const Status: z.ZodObject<{
118
72
  name: z.ZodString;
119
73
  value: z.ZodString;
120
74
  verified_at: z.ZodNullable<z.ZodString>;
121
- }, "strip", z.ZodTypeAny, {
122
- value: string;
123
- name: string;
124
- verified_at: string | null;
125
- }, {
126
- value: string;
127
- name: string;
128
- verified_at: string | null;
129
- }>, "many">;
130
- privacy: z.ZodEnum<["public", "unlist", "private", "direct"]>;
75
+ }, z.core.$strip>>;
76
+ privacy: z.ZodEnum<{
77
+ public: "public";
78
+ unlist: "unlist";
79
+ private: "private";
80
+ direct: "direct";
81
+ }>;
131
82
  sensitive: z.ZodBoolean;
132
83
  language: z.ZodString;
133
84
  follow_requests_count: z.ZodNumber;
134
- }, "strip", z.ZodTypeAny, {
135
- note: string;
136
- fields: {
137
- value: string;
138
- name: string;
139
- verified_at: string | null;
140
- }[];
141
- privacy: "public" | "unlist" | "private" | "direct";
142
- sensitive: boolean;
143
- language: string;
144
- follow_requests_count: number;
145
- }, {
146
- note: string;
147
- fields: {
148
- value: string;
149
- name: string;
150
- verified_at: string | null;
151
- }[];
152
- privacy: "public" | "unlist" | "private" | "direct";
153
- sensitive: boolean;
154
- language: string;
155
- follow_requests_count: number;
156
- }>;
85
+ }, z.core.$strip>;
157
86
  fields: z.ZodArray<z.ZodObject<{
158
87
  name: z.ZodString;
159
88
  value: z.ZodString;
160
89
  verified_at: z.ZodNullable<z.ZodString>;
161
- }, "strip", z.ZodTypeAny, {
162
- value: string;
163
- name: string;
164
- verified_at: string | null;
165
- }, {
166
- value: string;
167
- name: string;
168
- verified_at: string | null;
169
- }>, "many">;
90
+ }, z.core.$strip>>;
170
91
  emojis: z.ZodArray<z.ZodObject<{
171
92
  shortcode: z.ZodString;
172
93
  static_url: z.ZodString;
173
94
  url: z.ZodString;
174
95
  visible_in_picker: z.ZodBoolean;
175
96
  category: z.ZodNullable<z.ZodString>;
176
- }, "strip", z.ZodTypeAny, {
177
- url: string;
178
- shortcode: string;
179
- static_url: string;
180
- visible_in_picker: boolean;
181
- category: string | null;
182
- }, {
183
- url: string;
184
- shortcode: string;
185
- static_url: string;
186
- visible_in_picker: boolean;
187
- category: string | null;
188
- }>, "many">;
97
+ }, z.core.$strip>>;
189
98
  bot: z.ZodBoolean;
190
99
  group: z.ZodBoolean;
191
100
  discoverable: z.ZodNullable<z.ZodBoolean>;
@@ -197,304 +106,24 @@ export declare const Status: z.ZodObject<{
197
106
  statuses_count: z.ZodNumber;
198
107
  followers_count: z.ZodNumber;
199
108
  following_count: z.ZodNumber;
200
- }, "strip", z.ZodTypeAny, {
201
- id: string;
202
- url: string;
203
- note: string;
204
- fields: {
205
- value: string;
206
- name: string;
207
- verified_at: string | null;
208
- }[];
209
- username: string;
210
- acct: string;
211
- display_name: string;
212
- avatar: string;
213
- avatar_static: string;
214
- header: string;
215
- header_static: string;
216
- locked: boolean;
217
- source: {
218
- note: string;
219
- fields: {
220
- value: string;
221
- name: string;
222
- verified_at: string | null;
223
- }[];
224
- privacy: "public" | "unlist" | "private" | "direct";
225
- sensitive: boolean;
226
- language: string;
227
- follow_requests_count: number;
228
- };
229
- emojis: {
230
- url: string;
231
- shortcode: string;
232
- static_url: string;
233
- visible_in_picker: boolean;
234
- category: string | null;
235
- }[];
236
- bot: boolean;
237
- group: boolean;
238
- discoverable: boolean | null;
239
- created_at: string;
240
- last_status_at: string | null;
241
- statuses_count: number;
242
- followers_count: number;
243
- following_count: number;
244
- noindex?: boolean | null | undefined;
245
- suspended?: boolean | undefined;
246
- limited?: boolean | undefined;
247
- }, {
248
- id: string;
249
- url: string;
250
- note: string;
251
- fields: {
252
- value: string;
253
- name: string;
254
- verified_at: string | null;
255
- }[];
256
- username: string;
257
- acct: string;
258
- display_name: string;
259
- avatar: string;
260
- avatar_static: string;
261
- header: string;
262
- header_static: string;
263
- locked: boolean;
264
- source: {
265
- note: string;
266
- fields: {
267
- value: string;
268
- name: string;
269
- verified_at: string | null;
270
- }[];
271
- privacy: "public" | "unlist" | "private" | "direct";
272
- sensitive: boolean;
273
- language: string;
274
- follow_requests_count: number;
275
- };
276
- emojis: {
277
- url: string;
278
- shortcode: string;
279
- static_url: string;
280
- visible_in_picker: boolean;
281
- category: string | null;
282
- }[];
283
- bot: boolean;
284
- group: boolean;
285
- discoverable: boolean | null;
286
- created_at: string;
287
- last_status_at: string | null;
288
- statuses_count: number;
289
- followers_count: number;
290
- following_count: number;
291
- noindex?: boolean | null | undefined;
292
- suspended?: boolean | undefined;
293
- limited?: boolean | undefined;
294
- }>>>;
295
- }, "strip", z.ZodTypeAny, {
296
- id: string;
297
- url: string;
298
- note: string;
299
- fields: {
300
- value: string;
301
- name: string;
302
- verified_at: string | null;
303
- }[];
304
- username: string;
305
- acct: string;
306
- display_name: string;
307
- avatar: string;
308
- avatar_static: string;
309
- header: string;
310
- header_static: string;
311
- locked: boolean;
312
- source: {
313
- note: string;
314
- fields: {
315
- value: string;
316
- name: string;
317
- verified_at: string | null;
318
- }[];
319
- privacy: "public" | "unlist" | "private" | "direct";
320
- sensitive: boolean;
321
- language: string;
322
- follow_requests_count: number;
323
- };
324
- emojis: {
325
- url: string;
326
- shortcode: string;
327
- static_url: string;
328
- visible_in_picker: boolean;
329
- category: string | null;
330
- }[];
331
- bot: boolean;
332
- group: boolean;
333
- discoverable: boolean | null;
334
- created_at: string;
335
- last_status_at: string | null;
336
- statuses_count: number;
337
- followers_count: number;
338
- following_count: number;
339
- noindex?: boolean | null | undefined;
340
- suspended?: boolean | undefined;
341
- limited?: boolean | undefined;
342
- moved?: {
343
- id: string;
344
- url: string;
345
- note: string;
346
- fields: {
347
- value: string;
348
- name: string;
349
- verified_at: string | null;
350
- }[];
351
- username: string;
352
- acct: string;
353
- display_name: string;
354
- avatar: string;
355
- avatar_static: string;
356
- header: string;
357
- header_static: string;
358
- locked: boolean;
359
- source: {
360
- note: string;
361
- fields: {
362
- value: string;
363
- name: string;
364
- verified_at: string | null;
365
- }[];
366
- privacy: "public" | "unlist" | "private" | "direct";
367
- sensitive: boolean;
368
- language: string;
369
- follow_requests_count: number;
370
- };
371
- emojis: {
372
- url: string;
373
- shortcode: string;
374
- static_url: string;
375
- visible_in_picker: boolean;
376
- category: string | null;
377
- }[];
378
- bot: boolean;
379
- group: boolean;
380
- discoverable: boolean | null;
381
- created_at: string;
382
- last_status_at: string | null;
383
- statuses_count: number;
384
- followers_count: number;
385
- following_count: number;
386
- noindex?: boolean | null | undefined;
387
- suspended?: boolean | undefined;
388
- limited?: boolean | undefined;
389
- } | null | undefined;
390
- }, {
391
- id: string;
392
- url: string;
393
- note: string;
394
- fields: {
395
- value: string;
396
- name: string;
397
- verified_at: string | null;
398
- }[];
399
- username: string;
400
- acct: string;
401
- display_name: string;
402
- avatar: string;
403
- avatar_static: string;
404
- header: string;
405
- header_static: string;
406
- locked: boolean;
407
- source: {
408
- note: string;
409
- fields: {
410
- value: string;
411
- name: string;
412
- verified_at: string | null;
413
- }[];
414
- privacy: "public" | "unlist" | "private" | "direct";
415
- sensitive: boolean;
416
- language: string;
417
- follow_requests_count: number;
418
- };
419
- emojis: {
420
- url: string;
421
- shortcode: string;
422
- static_url: string;
423
- visible_in_picker: boolean;
424
- category: string | null;
425
- }[];
426
- bot: boolean;
427
- group: boolean;
428
- discoverable: boolean | null;
429
- created_at: string;
430
- last_status_at: string | null;
431
- statuses_count: number;
432
- followers_count: number;
433
- following_count: number;
434
- noindex?: boolean | null | undefined;
435
- suspended?: boolean | undefined;
436
- limited?: boolean | undefined;
437
- moved?: {
438
- id: string;
439
- url: string;
440
- note: string;
441
- fields: {
442
- value: string;
443
- name: string;
444
- verified_at: string | null;
445
- }[];
446
- username: string;
447
- acct: string;
448
- display_name: string;
449
- avatar: string;
450
- avatar_static: string;
451
- header: string;
452
- header_static: string;
453
- locked: boolean;
454
- source: {
455
- note: string;
456
- fields: {
457
- value: string;
458
- name: string;
459
- verified_at: string | null;
460
- }[];
461
- privacy: "public" | "unlist" | "private" | "direct";
462
- sensitive: boolean;
463
- language: string;
464
- follow_requests_count: number;
465
- };
466
- emojis: {
467
- url: string;
468
- shortcode: string;
469
- static_url: string;
470
- visible_in_picker: boolean;
471
- category: string | null;
472
- }[];
473
- bot: boolean;
474
- group: boolean;
475
- discoverable: boolean | null;
476
- created_at: string;
477
- last_status_at: string | null;
478
- statuses_count: number;
479
- followers_count: number;
480
- following_count: number;
481
- noindex?: boolean | null | undefined;
482
- suspended?: boolean | undefined;
483
- limited?: boolean | undefined;
484
- } | null | undefined;
485
- }>;
109
+ }, z.core.$strip>>>;
110
+ }, z.core.$strip>;
486
111
  content: z.ZodString;
487
- visibility: z.ZodEnum<["public", "unlist", "private", "direct"]>;
112
+ visibility: z.ZodEnum<{
113
+ public: "public";
114
+ unlist: "unlist";
115
+ private: "private";
116
+ direct: "direct";
117
+ }>;
488
118
  sensitive: z.ZodBoolean;
489
119
  spoiler_text: z.ZodString;
490
- media_attachments: z.ZodArray<z.ZodUnion<[z.ZodObject<{
120
+ media_attachments: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
491
121
  id: z.ZodString;
492
122
  url: z.ZodString;
493
123
  preview_url: z.ZodNullable<z.ZodString>;
494
124
  remote_url: z.ZodNullable<z.ZodString>;
495
125
  description: z.ZodNullable<z.ZodString>;
496
126
  blurhash: z.ZodNullable<z.ZodString>;
497
- } & {
498
127
  type: z.ZodLiteral<"image">;
499
128
  meta: z.ZodOptional<z.ZodNullable<z.ZodObject<{
500
129
  original: z.ZodObject<{
@@ -502,138 +131,25 @@ export declare const Status: z.ZodObject<{
502
131
  height: z.ZodNumber;
503
132
  size: z.ZodString;
504
133
  aspect: z.ZodNumber;
505
- }, "strip", z.ZodTypeAny, {
506
- width: number;
507
- height: number;
508
- size: string;
509
- aspect: number;
510
- }, {
511
- width: number;
512
- height: number;
513
- size: string;
514
- aspect: number;
515
- }>;
134
+ }, z.core.$strip>;
516
135
  small: z.ZodOptional<z.ZodNullable<z.ZodObject<{
517
136
  width: z.ZodNumber;
518
137
  height: z.ZodNumber;
519
138
  size: z.ZodString;
520
139
  aspect: z.ZodNumber;
521
- }, "strip", z.ZodTypeAny, {
522
- width: number;
523
- height: number;
524
- size: string;
525
- aspect: number;
526
- }, {
527
- width: number;
528
- height: number;
529
- size: string;
530
- aspect: number;
531
- }>>>;
140
+ }, z.core.$strip>>>;
532
141
  focus: z.ZodOptional<z.ZodNullable<z.ZodObject<{
533
142
  x: z.ZodNumber;
534
143
  y: z.ZodNumber;
535
- }, "strip", z.ZodTypeAny, {
536
- x: number;
537
- y: number;
538
- }, {
539
- x: number;
540
- y: number;
541
- }>>>;
542
- }, "strip", z.ZodTypeAny, {
543
- original: {
544
- width: number;
545
- height: number;
546
- size: string;
547
- aspect: number;
548
- };
549
- small?: {
550
- width: number;
551
- height: number;
552
- size: string;
553
- aspect: number;
554
- } | null | undefined;
555
- focus?: {
556
- x: number;
557
- y: number;
558
- } | null | undefined;
559
- }, {
560
- original: {
561
- width: number;
562
- height: number;
563
- size: string;
564
- aspect: number;
565
- };
566
- small?: {
567
- width: number;
568
- height: number;
569
- size: string;
570
- aspect: number;
571
- } | null | undefined;
572
- focus?: {
573
- x: number;
574
- y: number;
575
- } | null | undefined;
576
- }>>>;
577
- }, "strip", z.ZodTypeAny, {
578
- id: string;
579
- type: "image";
580
- url: string;
581
- description: string | null;
582
- blurhash: string | null;
583
- preview_url: string | null;
584
- remote_url: string | null;
585
- meta?: {
586
- original: {
587
- width: number;
588
- height: number;
589
- size: string;
590
- aspect: number;
591
- };
592
- small?: {
593
- width: number;
594
- height: number;
595
- size: string;
596
- aspect: number;
597
- } | null | undefined;
598
- focus?: {
599
- x: number;
600
- y: number;
601
- } | null | undefined;
602
- } | null | undefined;
603
- }, {
604
- id: string;
605
- type: "image";
606
- url: string;
607
- description: string | null;
608
- blurhash: string | null;
609
- preview_url: string | null;
610
- remote_url: string | null;
611
- meta?: {
612
- original: {
613
- width: number;
614
- height: number;
615
- size: string;
616
- aspect: number;
617
- };
618
- small?: {
619
- width: number;
620
- height: number;
621
- size: string;
622
- aspect: number;
623
- } | null | undefined;
624
- focus?: {
625
- x: number;
626
- y: number;
627
- } | null | undefined;
628
- } | null | undefined;
629
- }>, z.ZodObject<{
144
+ }, z.core.$strip>>>;
145
+ }, z.core.$strip>>>;
146
+ }, z.core.$strip>, z.ZodObject<{
630
147
  id: z.ZodString;
631
148
  url: z.ZodString;
632
149
  preview_url: z.ZodNullable<z.ZodString>;
633
150
  remote_url: z.ZodNullable<z.ZodString>;
634
151
  description: z.ZodNullable<z.ZodString>;
635
152
  blurhash: z.ZodNullable<z.ZodString>;
636
- } & {
637
153
  type: z.ZodLiteral<"gifv">;
638
154
  meta: z.ZodOptional<z.ZodNullable<z.ZodObject<{
639
155
  length: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -649,146 +165,21 @@ export declare const Status: z.ZodObject<{
649
165
  frame_rate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
650
166
  duration: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
651
167
  bitrate: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
652
- }, "strip", z.ZodTypeAny, {
653
- width: number;
654
- height: number;
655
- duration?: number | null | undefined;
656
- frame_rate?: string | null | undefined;
657
- bitrate?: number | null | undefined;
658
- }, {
659
- width: number;
660
- height: number;
661
- duration?: number | null | undefined;
662
- frame_rate?: string | null | undefined;
663
- bitrate?: number | null | undefined;
664
- }>;
168
+ }, z.core.$strip>;
665
169
  small: z.ZodOptional<z.ZodNullable<z.ZodObject<{
666
170
  width: z.ZodNumber;
667
171
  height: z.ZodNumber;
668
172
  size: z.ZodString;
669
173
  aspect: z.ZodNumber;
670
- }, "strip", z.ZodTypeAny, {
671
- width: number;
672
- height: number;
673
- size: string;
674
- aspect: number;
675
- }, {
676
- width: number;
677
- height: number;
678
- size: string;
679
- aspect: number;
680
- }>>>;
681
- }, "strip", z.ZodTypeAny, {
682
- width: number;
683
- height: number;
684
- size: string;
685
- aspect: number;
686
- original: {
687
- width: number;
688
- height: number;
689
- duration?: number | null | undefined;
690
- frame_rate?: string | null | undefined;
691
- bitrate?: number | null | undefined;
692
- };
693
- length?: string | null | undefined;
694
- duration?: number | null | undefined;
695
- fps?: number | null | undefined;
696
- small?: {
697
- width: number;
698
- height: number;
699
- size: string;
700
- aspect: number;
701
- } | null | undefined;
702
- }, {
703
- width: number;
704
- height: number;
705
- size: string;
706
- aspect: number;
707
- original: {
708
- width: number;
709
- height: number;
710
- duration?: number | null | undefined;
711
- frame_rate?: string | null | undefined;
712
- bitrate?: number | null | undefined;
713
- };
714
- length?: string | null | undefined;
715
- duration?: number | null | undefined;
716
- fps?: number | null | undefined;
717
- small?: {
718
- width: number;
719
- height: number;
720
- size: string;
721
- aspect: number;
722
- } | null | undefined;
723
- }>>>;
724
- }, "strip", z.ZodTypeAny, {
725
- id: string;
726
- type: "gifv";
727
- url: string;
728
- description: string | null;
729
- blurhash: string | null;
730
- preview_url: string | null;
731
- remote_url: string | null;
732
- meta?: {
733
- width: number;
734
- height: number;
735
- size: string;
736
- aspect: number;
737
- original: {
738
- width: number;
739
- height: number;
740
- duration?: number | null | undefined;
741
- frame_rate?: string | null | undefined;
742
- bitrate?: number | null | undefined;
743
- };
744
- length?: string | null | undefined;
745
- duration?: number | null | undefined;
746
- fps?: number | null | undefined;
747
- small?: {
748
- width: number;
749
- height: number;
750
- size: string;
751
- aspect: number;
752
- } | null | undefined;
753
- } | null | undefined;
754
- }, {
755
- id: string;
756
- type: "gifv";
757
- url: string;
758
- description: string | null;
759
- blurhash: string | null;
760
- preview_url: string | null;
761
- remote_url: string | null;
762
- meta?: {
763
- width: number;
764
- height: number;
765
- size: string;
766
- aspect: number;
767
- original: {
768
- width: number;
769
- height: number;
770
- duration?: number | null | undefined;
771
- frame_rate?: string | null | undefined;
772
- bitrate?: number | null | undefined;
773
- };
774
- length?: string | null | undefined;
775
- duration?: number | null | undefined;
776
- fps?: number | null | undefined;
777
- small?: {
778
- width: number;
779
- height: number;
780
- size: string;
781
- aspect: number;
782
- } | null | undefined;
783
- } | null | undefined;
784
- }>, z.ZodObject<{
174
+ }, z.core.$strip>>>;
175
+ }, z.core.$strip>>>;
176
+ }, z.core.$strip>, z.ZodObject<{
785
177
  id: z.ZodString;
786
178
  url: z.ZodString;
787
179
  preview_url: z.ZodNullable<z.ZodString>;
788
180
  remote_url: z.ZodNullable<z.ZodString>;
789
181
  description: z.ZodNullable<z.ZodString>;
790
182
  blurhash: z.ZodNullable<z.ZodString>;
791
- } & {
792
183
  type: z.ZodLiteral<"video">;
793
184
  meta: z.ZodOptional<z.ZodNullable<z.ZodObject<{
794
185
  length: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -807,158 +198,21 @@ export declare const Status: z.ZodObject<{
807
198
  frame_rate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
808
199
  duration: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
809
200
  bitrate: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
810
- }, "strip", z.ZodTypeAny, {
811
- width: number;
812
- height: number;
813
- duration?: number | null | undefined;
814
- frame_rate?: string | null | undefined;
815
- bitrate?: number | null | undefined;
816
- }, {
817
- width: number;
818
- height: number;
819
- duration?: number | null | undefined;
820
- frame_rate?: string | null | undefined;
821
- bitrate?: number | null | undefined;
822
- }>;
201
+ }, z.core.$strip>;
823
202
  small: z.ZodOptional<z.ZodNullable<z.ZodObject<{
824
203
  width: z.ZodNumber;
825
204
  height: z.ZodNumber;
826
205
  size: z.ZodString;
827
206
  aspect: z.ZodNumber;
828
- }, "strip", z.ZodTypeAny, {
829
- width: number;
830
- height: number;
831
- size: string;
832
- aspect: number;
833
- }, {
834
- width: number;
835
- height: number;
836
- size: string;
837
- aspect: number;
838
- }>>>;
839
- }, "strip", z.ZodTypeAny, {
840
- width: number;
841
- height: number;
842
- size: string;
843
- aspect: number;
844
- original: {
845
- width: number;
846
- height: number;
847
- duration?: number | null | undefined;
848
- frame_rate?: string | null | undefined;
849
- bitrate?: number | null | undefined;
850
- };
851
- length?: string | null | undefined;
852
- duration?: number | null | undefined;
853
- fps?: number | null | undefined;
854
- small?: {
855
- width: number;
856
- height: number;
857
- size: string;
858
- aspect: number;
859
- } | null | undefined;
860
- audio_encode?: string | null | undefined;
861
- audio_bitrate?: string | null | undefined;
862
- audio_channels?: string | null | undefined;
863
- }, {
864
- width: number;
865
- height: number;
866
- size: string;
867
- aspect: number;
868
- original: {
869
- width: number;
870
- height: number;
871
- duration?: number | null | undefined;
872
- frame_rate?: string | null | undefined;
873
- bitrate?: number | null | undefined;
874
- };
875
- length?: string | null | undefined;
876
- duration?: number | null | undefined;
877
- fps?: number | null | undefined;
878
- small?: {
879
- width: number;
880
- height: number;
881
- size: string;
882
- aspect: number;
883
- } | null | undefined;
884
- audio_encode?: string | null | undefined;
885
- audio_bitrate?: string | null | undefined;
886
- audio_channels?: string | null | undefined;
887
- }>>>;
888
- }, "strip", z.ZodTypeAny, {
889
- id: string;
890
- type: "video";
891
- url: string;
892
- description: string | null;
893
- blurhash: string | null;
894
- preview_url: string | null;
895
- remote_url: string | null;
896
- meta?: {
897
- width: number;
898
- height: number;
899
- size: string;
900
- aspect: number;
901
- original: {
902
- width: number;
903
- height: number;
904
- duration?: number | null | undefined;
905
- frame_rate?: string | null | undefined;
906
- bitrate?: number | null | undefined;
907
- };
908
- length?: string | null | undefined;
909
- duration?: number | null | undefined;
910
- fps?: number | null | undefined;
911
- small?: {
912
- width: number;
913
- height: number;
914
- size: string;
915
- aspect: number;
916
- } | null | undefined;
917
- audio_encode?: string | null | undefined;
918
- audio_bitrate?: string | null | undefined;
919
- audio_channels?: string | null | undefined;
920
- } | null | undefined;
921
- }, {
922
- id: string;
923
- type: "video";
924
- url: string;
925
- description: string | null;
926
- blurhash: string | null;
927
- preview_url: string | null;
928
- remote_url: string | null;
929
- meta?: {
930
- width: number;
931
- height: number;
932
- size: string;
933
- aspect: number;
934
- original: {
935
- width: number;
936
- height: number;
937
- duration?: number | null | undefined;
938
- frame_rate?: string | null | undefined;
939
- bitrate?: number | null | undefined;
940
- };
941
- length?: string | null | undefined;
942
- duration?: number | null | undefined;
943
- fps?: number | null | undefined;
944
- small?: {
945
- width: number;
946
- height: number;
947
- size: string;
948
- aspect: number;
949
- } | null | undefined;
950
- audio_encode?: string | null | undefined;
951
- audio_bitrate?: string | null | undefined;
952
- audio_channels?: string | null | undefined;
953
- } | null | undefined;
954
- }>, z.ZodObject<{
207
+ }, z.core.$strip>>>;
208
+ }, z.core.$strip>>>;
209
+ }, z.core.$strip>, z.ZodObject<{
955
210
  id: z.ZodString;
956
211
  url: z.ZodString;
957
212
  preview_url: z.ZodNullable<z.ZodString>;
958
213
  remote_url: z.ZodNullable<z.ZodString>;
959
214
  description: z.ZodNullable<z.ZodString>;
960
215
  blurhash: z.ZodNullable<z.ZodString>;
961
- } & {
962
216
  type: z.ZodLiteral<"audio">;
963
217
  meta: z.ZodObject<{
964
218
  length: z.ZodString;
@@ -969,153 +223,38 @@ export declare const Status: z.ZodObject<{
969
223
  original: z.ZodObject<{
970
224
  duration: z.ZodNumber;
971
225
  bitrate: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
972
- }, "strip", z.ZodTypeAny, {
973
- duration: number;
974
- bitrate?: number | null | undefined;
975
- }, {
976
- duration: number;
977
- bitrate?: number | null | undefined;
978
- }>;
979
- }, "strip", z.ZodTypeAny, {
980
- length: string;
981
- duration: number;
982
- original: {
983
- duration: number;
984
- bitrate?: number | null | undefined;
985
- };
986
- audio_encode?: string | null | undefined;
987
- audio_bitrate?: string | null | undefined;
988
- audio_channels?: string | null | undefined;
989
- }, {
990
- length: string;
991
- duration: number;
992
- original: {
993
- duration: number;
994
- bitrate?: number | null | undefined;
995
- };
996
- audio_encode?: string | null | undefined;
997
- audio_bitrate?: string | null | undefined;
998
- audio_channels?: string | null | undefined;
999
- }>;
1000
- }, "strip", z.ZodTypeAny, {
1001
- id: string;
1002
- type: "audio";
1003
- url: string;
1004
- description: string | null;
1005
- blurhash: string | null;
1006
- preview_url: string | null;
1007
- remote_url: string | null;
1008
- meta: {
1009
- length: string;
1010
- duration: number;
1011
- original: {
1012
- duration: number;
1013
- bitrate?: number | null | undefined;
1014
- };
1015
- audio_encode?: string | null | undefined;
1016
- audio_bitrate?: string | null | undefined;
1017
- audio_channels?: string | null | undefined;
1018
- };
1019
- }, {
1020
- id: string;
1021
- type: "audio";
1022
- url: string;
1023
- description: string | null;
1024
- blurhash: string | null;
1025
- preview_url: string | null;
1026
- remote_url: string | null;
1027
- meta: {
1028
- length: string;
1029
- duration: number;
1030
- original: {
1031
- duration: number;
1032
- bitrate?: number | null | undefined;
1033
- };
1034
- audio_encode?: string | null | undefined;
1035
- audio_bitrate?: string | null | undefined;
1036
- audio_channels?: string | null | undefined;
1037
- };
1038
- }>, z.ZodObject<{
226
+ }, z.core.$strip>;
227
+ }, z.core.$strip>;
228
+ }, z.core.$strip>, z.ZodObject<{
1039
229
  id: z.ZodString;
1040
230
  url: z.ZodString;
1041
231
  preview_url: z.ZodNullable<z.ZodString>;
1042
232
  remote_url: z.ZodNullable<z.ZodString>;
1043
233
  description: z.ZodNullable<z.ZodString>;
1044
234
  blurhash: z.ZodNullable<z.ZodString>;
1045
- } & {
1046
235
  type: z.ZodLiteral<"unknown">;
1047
- }, "strip", z.ZodTypeAny, {
1048
- id: string;
1049
- type: "unknown";
1050
- url: string;
1051
- description: string | null;
1052
- blurhash: string | null;
1053
- preview_url: string | null;
1054
- remote_url: string | null;
1055
- }, {
1056
- id: string;
1057
- type: "unknown";
1058
- url: string;
1059
- description: string | null;
1060
- blurhash: string | null;
1061
- preview_url: string | null;
1062
- remote_url: string | null;
1063
- }>]>, "many">;
236
+ }, z.core.$strip>]>>;
1064
237
  application: z.ZodOptional<z.ZodObject<{
1065
238
  name: z.ZodString;
1066
239
  website: z.ZodNullable<z.ZodString>;
1067
- }, "strip", z.ZodTypeAny, {
1068
- name: string;
1069
- website: string | null;
1070
- }, {
1071
- name: string;
1072
- website: string | null;
1073
- }>>;
240
+ }, z.core.$strip>>;
1074
241
  emojis: z.ZodArray<z.ZodObject<{
1075
242
  shortcode: z.ZodString;
1076
243
  static_url: z.ZodString;
1077
244
  url: z.ZodString;
1078
245
  visible_in_picker: z.ZodBoolean;
1079
246
  category: z.ZodNullable<z.ZodString>;
1080
- }, "strip", z.ZodTypeAny, {
1081
- url: string;
1082
- shortcode: string;
1083
- static_url: string;
1084
- visible_in_picker: boolean;
1085
- category: string | null;
1086
- }, {
1087
- url: string;
1088
- shortcode: string;
1089
- static_url: string;
1090
- visible_in_picker: boolean;
1091
- category: string | null;
1092
- }>, "many">;
247
+ }, z.core.$strip>>;
1093
248
  mentions: z.ZodArray<z.ZodObject<{
1094
249
  id: z.ZodString;
1095
250
  username: z.ZodString;
1096
251
  url: z.ZodString;
1097
252
  acct: z.ZodString;
1098
- }, "strip", z.ZodTypeAny, {
1099
- id: string;
1100
- url: string;
1101
- username: string;
1102
- acct: string;
1103
- }, {
1104
- id: string;
1105
- url: string;
1106
- username: string;
1107
- acct: string;
1108
- }>, "many">;
253
+ }, z.core.$strip>>;
1109
254
  tags: z.ZodArray<z.ZodObject<{
1110
255
  name: z.ZodString;
1111
256
  url: z.ZodString;
1112
- }, "strip", z.ZodTypeAny, {
1113
- url: string;
1114
- name: string;
1115
- }, {
1116
- url: string;
1117
- name: string;
1118
- }>, "many">;
257
+ }, z.core.$strip>>;
1119
258
  reblogs_count: z.ZodNumber;
1120
259
  favourites_count: z.ZodNumber;
1121
260
  replies_count: z.ZodNumber;
@@ -1132,80 +271,27 @@ export declare const Status: z.ZodObject<{
1132
271
  options: z.ZodArray<z.ZodObject<{
1133
272
  title: z.ZodString;
1134
273
  votes_count: z.ZodNullable<z.ZodNumber>;
1135
- }, "strip", z.ZodTypeAny, {
1136
- title: string;
1137
- votes_count: number | null;
1138
- }, {
1139
- title: string;
1140
- votes_count: number | null;
1141
- }>, "many">;
274
+ }, z.core.$strip>>;
1142
275
  emojis: z.ZodArray<z.ZodObject<{
1143
276
  shortcode: z.ZodString;
1144
277
  static_url: z.ZodString;
1145
278
  url: z.ZodString;
1146
279
  visible_in_picker: z.ZodBoolean;
1147
280
  category: z.ZodNullable<z.ZodString>;
1148
- }, "strip", z.ZodTypeAny, {
1149
- url: string;
1150
- shortcode: string;
1151
- static_url: string;
1152
- visible_in_picker: boolean;
1153
- category: string | null;
1154
- }, {
1155
- url: string;
1156
- shortcode: string;
1157
- static_url: string;
1158
- visible_in_picker: boolean;
1159
- category: string | null;
1160
- }>, "many">;
281
+ }, z.core.$strip>>;
1161
282
  voted: z.ZodOptional<z.ZodBoolean>;
1162
- own_votes: z.ZodArray<z.ZodNumber, "many">;
1163
- }, "strip", z.ZodTypeAny, {
1164
- id: string;
1165
- options: {
1166
- title: string;
1167
- votes_count: number | null;
1168
- }[];
1169
- emojis: {
1170
- url: string;
1171
- shortcode: string;
1172
- static_url: string;
1173
- visible_in_picker: boolean;
1174
- category: string | null;
1175
- }[];
1176
- expires_at: string | null;
1177
- votes_count: number;
1178
- expired: boolean;
1179
- multiple: boolean;
1180
- voters_count: number;
1181
- own_votes: number[];
1182
- voted?: boolean | undefined;
1183
- }, {
1184
- id: string;
1185
- options: {
1186
- title: string;
1187
- votes_count: number | null;
1188
- }[];
1189
- emojis: {
1190
- url: string;
1191
- shortcode: string;
1192
- static_url: string;
1193
- visible_in_picker: boolean;
1194
- category: string | null;
1195
- }[];
1196
- expires_at: string | null;
1197
- votes_count: number;
1198
- expired: boolean;
1199
- multiple: boolean;
1200
- voters_count: number;
1201
- own_votes: number[];
1202
- voted?: boolean | undefined;
1203
- }>>;
283
+ own_votes: z.ZodArray<z.ZodNumber>;
284
+ }, z.core.$strip>>;
1204
285
  card: z.ZodNullable<z.ZodObject<{
1205
286
  url: z.ZodString;
1206
287
  title: z.ZodString;
1207
288
  description: z.ZodString;
1208
- type: z.ZodEnum<["link", "photo", "video", "rich"]>;
289
+ type: z.ZodEnum<{
290
+ link: "link";
291
+ photo: "photo";
292
+ video: "video";
293
+ rich: "rich";
294
+ }>;
1209
295
  author_name: z.ZodString;
1210
296
  author_url: z.ZodString;
1211
297
  provider_name: z.ZodString;
@@ -1216,37 +302,7 @@ export declare const Status: z.ZodObject<{
1216
302
  image: z.ZodNullable<z.ZodString>;
1217
303
  embed_url: z.ZodString;
1218
304
  blurhash: z.ZodNullable<z.ZodString>;
1219
- }, "strip", z.ZodTypeAny, {
1220
- type: "link" | "photo" | "video" | "rich";
1221
- url: string;
1222
- image: string | null;
1223
- description: string;
1224
- blurhash: string | null;
1225
- width: number;
1226
- height: number;
1227
- title: string;
1228
- author_name: string;
1229
- author_url: string;
1230
- provider_name: string;
1231
- provider_url: string;
1232
- html: string;
1233
- embed_url: string;
1234
- }, {
1235
- type: "link" | "photo" | "video" | "rich";
1236
- url: string;
1237
- image: string | null;
1238
- description: string;
1239
- blurhash: string | null;
1240
- width: number;
1241
- height: number;
1242
- title: string;
1243
- author_name: string;
1244
- author_url: string;
1245
- provider_name: string;
1246
- provider_url: string;
1247
- html: string;
1248
- embed_url: string;
1249
- }>>;
305
+ }, z.core.$strip>>;
1250
306
  language: z.ZodNullable<z.ZodString>;
1251
307
  text: z.ZodNullable<z.ZodString>;
1252
308
  created_at: z.ZodString;
@@ -1260,105 +316,31 @@ export declare const Status: z.ZodObject<{
1260
316
  filter: z.ZodObject<{
1261
317
  id: z.ZodString;
1262
318
  title: z.ZodString;
1263
- context: z.ZodArray<z.ZodEnum<["home", "notifications", "public", "thread", "account"]>, "many">;
319
+ context: z.ZodArray<z.ZodEnum<{
320
+ public: "public";
321
+ home: "home";
322
+ notifications: "notifications";
323
+ thread: "thread";
324
+ account: "account";
325
+ }>>;
1264
326
  expires_at: z.ZodNullable<z.ZodString>;
1265
- filter_action: z.ZodEnum<["warn", "hide"]>;
327
+ filter_action: z.ZodEnum<{
328
+ warn: "warn";
329
+ hide: "hide";
330
+ }>;
1266
331
  keywords: z.ZodArray<z.ZodObject<{
1267
332
  id: z.ZodString;
1268
333
  keyword: z.ZodString;
1269
334
  whole_word: z.ZodBoolean;
1270
- }, "strip", z.ZodTypeAny, {
1271
- id: string;
1272
- keyword: string;
1273
- whole_word: boolean;
1274
- }, {
1275
- id: string;
1276
- keyword: string;
1277
- whole_word: boolean;
1278
- }>, "many">;
335
+ }, z.core.$strip>>;
1279
336
  statuses: z.ZodArray<z.ZodObject<{
1280
337
  id: z.ZodString;
1281
338
  status_id: z.ZodString;
1282
- }, "strip", z.ZodTypeAny, {
1283
- id: string;
1284
- status_id: string;
1285
- }, {
1286
- id: string;
1287
- status_id: string;
1288
- }>, "many">;
1289
- }, "strip", z.ZodTypeAny, {
1290
- id: string;
1291
- title: string;
1292
- context: ("public" | "home" | "notifications" | "thread" | "account")[];
1293
- expires_at: string | null;
1294
- filter_action: "warn" | "hide";
1295
- keywords: {
1296
- id: string;
1297
- keyword: string;
1298
- whole_word: boolean;
1299
- }[];
1300
- statuses: {
1301
- id: string;
1302
- status_id: string;
1303
- }[];
1304
- }, {
1305
- id: string;
1306
- title: string;
1307
- context: ("public" | "home" | "notifications" | "thread" | "account")[];
1308
- expires_at: string | null;
1309
- filter_action: "warn" | "hide";
1310
- keywords: {
1311
- id: string;
1312
- keyword: string;
1313
- whole_word: boolean;
1314
- }[];
1315
- statuses: {
1316
- id: string;
1317
- status_id: string;
1318
- }[];
1319
- }>;
1320
- keyword_matches: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
1321
- status_matches: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
1322
- }, "strip", z.ZodTypeAny, {
1323
- filter: {
1324
- id: string;
1325
- title: string;
1326
- context: ("public" | "home" | "notifications" | "thread" | "account")[];
1327
- expires_at: string | null;
1328
- filter_action: "warn" | "hide";
1329
- keywords: {
1330
- id: string;
1331
- keyword: string;
1332
- whole_word: boolean;
1333
- }[];
1334
- statuses: {
1335
- id: string;
1336
- status_id: string;
1337
- }[];
1338
- };
1339
- keyword_matches: string[] | null;
1340
- status_matches: string[] | null;
1341
- }, {
1342
- filter: {
1343
- id: string;
1344
- title: string;
1345
- context: ("public" | "home" | "notifications" | "thread" | "account")[];
1346
- expires_at: string | null;
1347
- filter_action: "warn" | "hide";
1348
- keywords: {
1349
- id: string;
1350
- keyword: string;
1351
- whole_word: boolean;
1352
- }[];
1353
- statuses: {
1354
- id: string;
1355
- status_id: string;
1356
- }[];
1357
- };
1358
- keyword_matches: string[] | null;
1359
- status_matches: string[] | null;
1360
- }>>;
1361
- } & {
339
+ }, z.core.$strip>>;
340
+ }, z.core.$strip>;
341
+ keyword_matches: z.ZodNullable<z.ZodArray<z.ZodString>>;
342
+ status_matches: z.ZodNullable<z.ZodArray<z.ZodString>>;
343
+ }, z.core.$strip>>;
1362
344
  reblog: z.ZodNullable<z.ZodObject<{
1363
345
  id: z.ZodString;
1364
346
  uri: z.ZodString;
@@ -1380,74 +362,29 @@ export declare const Status: z.ZodObject<{
1380
362
  name: z.ZodString;
1381
363
  value: z.ZodString;
1382
364
  verified_at: z.ZodNullable<z.ZodString>;
1383
- }, "strip", z.ZodTypeAny, {
1384
- value: string;
1385
- name: string;
1386
- verified_at: string | null;
1387
- }, {
1388
- value: string;
1389
- name: string;
1390
- verified_at: string | null;
1391
- }>, "many">;
1392
- privacy: z.ZodEnum<["public", "unlist", "private", "direct"]>;
365
+ }, z.core.$strip>>;
366
+ privacy: z.ZodEnum<{
367
+ public: "public";
368
+ unlist: "unlist";
369
+ private: "private";
370
+ direct: "direct";
371
+ }>;
1393
372
  sensitive: z.ZodBoolean;
1394
373
  language: z.ZodString;
1395
374
  follow_requests_count: z.ZodNumber;
1396
- }, "strip", z.ZodTypeAny, {
1397
- note: string;
1398
- fields: {
1399
- value: string;
1400
- name: string;
1401
- verified_at: string | null;
1402
- }[];
1403
- privacy: "public" | "unlist" | "private" | "direct";
1404
- sensitive: boolean;
1405
- language: string;
1406
- follow_requests_count: number;
1407
- }, {
1408
- note: string;
1409
- fields: {
1410
- value: string;
1411
- name: string;
1412
- verified_at: string | null;
1413
- }[];
1414
- privacy: "public" | "unlist" | "private" | "direct";
1415
- sensitive: boolean;
1416
- language: string;
1417
- follow_requests_count: number;
1418
- }>;
375
+ }, z.core.$strip>;
1419
376
  fields: z.ZodArray<z.ZodObject<{
1420
377
  name: z.ZodString;
1421
378
  value: z.ZodString;
1422
379
  verified_at: z.ZodNullable<z.ZodString>;
1423
- }, "strip", z.ZodTypeAny, {
1424
- value: string;
1425
- name: string;
1426
- verified_at: string | null;
1427
- }, {
1428
- value: string;
1429
- name: string;
1430
- verified_at: string | null;
1431
- }>, "many">;
380
+ }, z.core.$strip>>;
1432
381
  emojis: z.ZodArray<z.ZodObject<{
1433
382
  shortcode: z.ZodString;
1434
383
  static_url: z.ZodString;
1435
384
  url: z.ZodString;
1436
385
  visible_in_picker: z.ZodBoolean;
1437
386
  category: z.ZodNullable<z.ZodString>;
1438
- }, "strip", z.ZodTypeAny, {
1439
- url: string;
1440
- shortcode: string;
1441
- static_url: string;
1442
- visible_in_picker: boolean;
1443
- category: string | null;
1444
- }, {
1445
- url: string;
1446
- shortcode: string;
1447
- static_url: string;
1448
- visible_in_picker: boolean;
1449
- category: string | null;
1450
- }>, "many">;
387
+ }, z.core.$strip>>;
1451
388
  bot: z.ZodBoolean;
1452
389
  group: z.ZodBoolean;
1453
390
  discoverable: z.ZodNullable<z.ZodBoolean>;
@@ -1459,7 +396,6 @@ export declare const Status: z.ZodObject<{
1459
396
  statuses_count: z.ZodNumber;
1460
397
  followers_count: z.ZodNumber;
1461
398
  following_count: z.ZodNumber;
1462
- } & {
1463
399
  moved: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1464
400
  id: z.ZodString;
1465
401
  username: z.ZodString;
@@ -1478,74 +414,29 @@ export declare const Status: z.ZodObject<{
1478
414
  name: z.ZodString;
1479
415
  value: z.ZodString;
1480
416
  verified_at: z.ZodNullable<z.ZodString>;
1481
- }, "strip", z.ZodTypeAny, {
1482
- value: string;
1483
- name: string;
1484
- verified_at: string | null;
1485
- }, {
1486
- value: string;
1487
- name: string;
1488
- verified_at: string | null;
1489
- }>, "many">;
1490
- privacy: z.ZodEnum<["public", "unlist", "private", "direct"]>;
417
+ }, z.core.$strip>>;
418
+ privacy: z.ZodEnum<{
419
+ public: "public";
420
+ unlist: "unlist";
421
+ private: "private";
422
+ direct: "direct";
423
+ }>;
1491
424
  sensitive: z.ZodBoolean;
1492
425
  language: z.ZodString;
1493
426
  follow_requests_count: z.ZodNumber;
1494
- }, "strip", z.ZodTypeAny, {
1495
- note: string;
1496
- fields: {
1497
- value: string;
1498
- name: string;
1499
- verified_at: string | null;
1500
- }[];
1501
- privacy: "public" | "unlist" | "private" | "direct";
1502
- sensitive: boolean;
1503
- language: string;
1504
- follow_requests_count: number;
1505
- }, {
1506
- note: string;
1507
- fields: {
1508
- value: string;
1509
- name: string;
1510
- verified_at: string | null;
1511
- }[];
1512
- privacy: "public" | "unlist" | "private" | "direct";
1513
- sensitive: boolean;
1514
- language: string;
1515
- follow_requests_count: number;
1516
- }>;
427
+ }, z.core.$strip>;
1517
428
  fields: z.ZodArray<z.ZodObject<{
1518
429
  name: z.ZodString;
1519
430
  value: z.ZodString;
1520
431
  verified_at: z.ZodNullable<z.ZodString>;
1521
- }, "strip", z.ZodTypeAny, {
1522
- value: string;
1523
- name: string;
1524
- verified_at: string | null;
1525
- }, {
1526
- value: string;
1527
- name: string;
1528
- verified_at: string | null;
1529
- }>, "many">;
432
+ }, z.core.$strip>>;
1530
433
  emojis: z.ZodArray<z.ZodObject<{
1531
434
  shortcode: z.ZodString;
1532
435
  static_url: z.ZodString;
1533
436
  url: z.ZodString;
1534
437
  visible_in_picker: z.ZodBoolean;
1535
438
  category: z.ZodNullable<z.ZodString>;
1536
- }, "strip", z.ZodTypeAny, {
1537
- url: string;
1538
- shortcode: string;
1539
- static_url: string;
1540
- visible_in_picker: boolean;
1541
- category: string | null;
1542
- }, {
1543
- url: string;
1544
- shortcode: string;
1545
- static_url: string;
1546
- visible_in_picker: boolean;
1547
- category: string | null;
1548
- }>, "many">;
439
+ }, z.core.$strip>>;
1549
440
  bot: z.ZodBoolean;
1550
441
  group: z.ZodBoolean;
1551
442
  discoverable: z.ZodNullable<z.ZodBoolean>;
@@ -1557,304 +448,24 @@ export declare const Status: z.ZodObject<{
1557
448
  statuses_count: z.ZodNumber;
1558
449
  followers_count: z.ZodNumber;
1559
450
  following_count: z.ZodNumber;
1560
- }, "strip", z.ZodTypeAny, {
1561
- id: string;
1562
- url: string;
1563
- note: string;
1564
- fields: {
1565
- value: string;
1566
- name: string;
1567
- verified_at: string | null;
1568
- }[];
1569
- username: string;
1570
- acct: string;
1571
- display_name: string;
1572
- avatar: string;
1573
- avatar_static: string;
1574
- header: string;
1575
- header_static: string;
1576
- locked: boolean;
1577
- source: {
1578
- note: string;
1579
- fields: {
1580
- value: string;
1581
- name: string;
1582
- verified_at: string | null;
1583
- }[];
1584
- privacy: "public" | "unlist" | "private" | "direct";
1585
- sensitive: boolean;
1586
- language: string;
1587
- follow_requests_count: number;
1588
- };
1589
- emojis: {
1590
- url: string;
1591
- shortcode: string;
1592
- static_url: string;
1593
- visible_in_picker: boolean;
1594
- category: string | null;
1595
- }[];
1596
- bot: boolean;
1597
- group: boolean;
1598
- discoverable: boolean | null;
1599
- created_at: string;
1600
- last_status_at: string | null;
1601
- statuses_count: number;
1602
- followers_count: number;
1603
- following_count: number;
1604
- noindex?: boolean | null | undefined;
1605
- suspended?: boolean | undefined;
1606
- limited?: boolean | undefined;
1607
- }, {
1608
- id: string;
1609
- url: string;
1610
- note: string;
1611
- fields: {
1612
- value: string;
1613
- name: string;
1614
- verified_at: string | null;
1615
- }[];
1616
- username: string;
1617
- acct: string;
1618
- display_name: string;
1619
- avatar: string;
1620
- avatar_static: string;
1621
- header: string;
1622
- header_static: string;
1623
- locked: boolean;
1624
- source: {
1625
- note: string;
1626
- fields: {
1627
- value: string;
1628
- name: string;
1629
- verified_at: string | null;
1630
- }[];
1631
- privacy: "public" | "unlist" | "private" | "direct";
1632
- sensitive: boolean;
1633
- language: string;
1634
- follow_requests_count: number;
1635
- };
1636
- emojis: {
1637
- url: string;
1638
- shortcode: string;
1639
- static_url: string;
1640
- visible_in_picker: boolean;
1641
- category: string | null;
1642
- }[];
1643
- bot: boolean;
1644
- group: boolean;
1645
- discoverable: boolean | null;
1646
- created_at: string;
1647
- last_status_at: string | null;
1648
- statuses_count: number;
1649
- followers_count: number;
1650
- following_count: number;
1651
- noindex?: boolean | null | undefined;
1652
- suspended?: boolean | undefined;
1653
- limited?: boolean | undefined;
1654
- }>>>;
1655
- }, "strip", z.ZodTypeAny, {
1656
- id: string;
1657
- url: string;
1658
- note: string;
1659
- fields: {
1660
- value: string;
1661
- name: string;
1662
- verified_at: string | null;
1663
- }[];
1664
- username: string;
1665
- acct: string;
1666
- display_name: string;
1667
- avatar: string;
1668
- avatar_static: string;
1669
- header: string;
1670
- header_static: string;
1671
- locked: boolean;
1672
- source: {
1673
- note: string;
1674
- fields: {
1675
- value: string;
1676
- name: string;
1677
- verified_at: string | null;
1678
- }[];
1679
- privacy: "public" | "unlist" | "private" | "direct";
1680
- sensitive: boolean;
1681
- language: string;
1682
- follow_requests_count: number;
1683
- };
1684
- emojis: {
1685
- url: string;
1686
- shortcode: string;
1687
- static_url: string;
1688
- visible_in_picker: boolean;
1689
- category: string | null;
1690
- }[];
1691
- bot: boolean;
1692
- group: boolean;
1693
- discoverable: boolean | null;
1694
- created_at: string;
1695
- last_status_at: string | null;
1696
- statuses_count: number;
1697
- followers_count: number;
1698
- following_count: number;
1699
- noindex?: boolean | null | undefined;
1700
- suspended?: boolean | undefined;
1701
- limited?: boolean | undefined;
1702
- moved?: {
1703
- id: string;
1704
- url: string;
1705
- note: string;
1706
- fields: {
1707
- value: string;
1708
- name: string;
1709
- verified_at: string | null;
1710
- }[];
1711
- username: string;
1712
- acct: string;
1713
- display_name: string;
1714
- avatar: string;
1715
- avatar_static: string;
1716
- header: string;
1717
- header_static: string;
1718
- locked: boolean;
1719
- source: {
1720
- note: string;
1721
- fields: {
1722
- value: string;
1723
- name: string;
1724
- verified_at: string | null;
1725
- }[];
1726
- privacy: "public" | "unlist" | "private" | "direct";
1727
- sensitive: boolean;
1728
- language: string;
1729
- follow_requests_count: number;
1730
- };
1731
- emojis: {
1732
- url: string;
1733
- shortcode: string;
1734
- static_url: string;
1735
- visible_in_picker: boolean;
1736
- category: string | null;
1737
- }[];
1738
- bot: boolean;
1739
- group: boolean;
1740
- discoverable: boolean | null;
1741
- created_at: string;
1742
- last_status_at: string | null;
1743
- statuses_count: number;
1744
- followers_count: number;
1745
- following_count: number;
1746
- noindex?: boolean | null | undefined;
1747
- suspended?: boolean | undefined;
1748
- limited?: boolean | undefined;
1749
- } | null | undefined;
1750
- }, {
1751
- id: string;
1752
- url: string;
1753
- note: string;
1754
- fields: {
1755
- value: string;
1756
- name: string;
1757
- verified_at: string | null;
1758
- }[];
1759
- username: string;
1760
- acct: string;
1761
- display_name: string;
1762
- avatar: string;
1763
- avatar_static: string;
1764
- header: string;
1765
- header_static: string;
1766
- locked: boolean;
1767
- source: {
1768
- note: string;
1769
- fields: {
1770
- value: string;
1771
- name: string;
1772
- verified_at: string | null;
1773
- }[];
1774
- privacy: "public" | "unlist" | "private" | "direct";
1775
- sensitive: boolean;
1776
- language: string;
1777
- follow_requests_count: number;
1778
- };
1779
- emojis: {
1780
- url: string;
1781
- shortcode: string;
1782
- static_url: string;
1783
- visible_in_picker: boolean;
1784
- category: string | null;
1785
- }[];
1786
- bot: boolean;
1787
- group: boolean;
1788
- discoverable: boolean | null;
1789
- created_at: string;
1790
- last_status_at: string | null;
1791
- statuses_count: number;
1792
- followers_count: number;
1793
- following_count: number;
1794
- noindex?: boolean | null | undefined;
1795
- suspended?: boolean | undefined;
1796
- limited?: boolean | undefined;
1797
- moved?: {
1798
- id: string;
1799
- url: string;
1800
- note: string;
1801
- fields: {
1802
- value: string;
1803
- name: string;
1804
- verified_at: string | null;
1805
- }[];
1806
- username: string;
1807
- acct: string;
1808
- display_name: string;
1809
- avatar: string;
1810
- avatar_static: string;
1811
- header: string;
1812
- header_static: string;
1813
- locked: boolean;
1814
- source: {
1815
- note: string;
1816
- fields: {
1817
- value: string;
1818
- name: string;
1819
- verified_at: string | null;
1820
- }[];
1821
- privacy: "public" | "unlist" | "private" | "direct";
1822
- sensitive: boolean;
1823
- language: string;
1824
- follow_requests_count: number;
1825
- };
1826
- emojis: {
1827
- url: string;
1828
- shortcode: string;
1829
- static_url: string;
1830
- visible_in_picker: boolean;
1831
- category: string | null;
1832
- }[];
1833
- bot: boolean;
1834
- group: boolean;
1835
- discoverable: boolean | null;
1836
- created_at: string;
1837
- last_status_at: string | null;
1838
- statuses_count: number;
1839
- followers_count: number;
1840
- following_count: number;
1841
- noindex?: boolean | null | undefined;
1842
- suspended?: boolean | undefined;
1843
- limited?: boolean | undefined;
1844
- } | null | undefined;
1845
- }>;
451
+ }, z.core.$strip>>>;
452
+ }, z.core.$strip>;
1846
453
  content: z.ZodString;
1847
- visibility: z.ZodEnum<["public", "unlist", "private", "direct"]>;
454
+ visibility: z.ZodEnum<{
455
+ public: "public";
456
+ unlist: "unlist";
457
+ private: "private";
458
+ direct: "direct";
459
+ }>;
1848
460
  sensitive: z.ZodBoolean;
1849
461
  spoiler_text: z.ZodString;
1850
- media_attachments: z.ZodArray<z.ZodUnion<[z.ZodObject<{
462
+ media_attachments: z.ZodArray<z.ZodUnion<readonly [z.ZodObject<{
1851
463
  id: z.ZodString;
1852
464
  url: z.ZodString;
1853
465
  preview_url: z.ZodNullable<z.ZodString>;
1854
466
  remote_url: z.ZodNullable<z.ZodString>;
1855
467
  description: z.ZodNullable<z.ZodString>;
1856
468
  blurhash: z.ZodNullable<z.ZodString>;
1857
- } & {
1858
469
  type: z.ZodLiteral<"image">;
1859
470
  meta: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1860
471
  original: z.ZodObject<{
@@ -1862,138 +473,25 @@ export declare const Status: z.ZodObject<{
1862
473
  height: z.ZodNumber;
1863
474
  size: z.ZodString;
1864
475
  aspect: z.ZodNumber;
1865
- }, "strip", z.ZodTypeAny, {
1866
- width: number;
1867
- height: number;
1868
- size: string;
1869
- aspect: number;
1870
- }, {
1871
- width: number;
1872
- height: number;
1873
- size: string;
1874
- aspect: number;
1875
- }>;
476
+ }, z.core.$strip>;
1876
477
  small: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1877
478
  width: z.ZodNumber;
1878
479
  height: z.ZodNumber;
1879
480
  size: z.ZodString;
1880
481
  aspect: z.ZodNumber;
1881
- }, "strip", z.ZodTypeAny, {
1882
- width: number;
1883
- height: number;
1884
- size: string;
1885
- aspect: number;
1886
- }, {
1887
- width: number;
1888
- height: number;
1889
- size: string;
1890
- aspect: number;
1891
- }>>>;
482
+ }, z.core.$strip>>>;
1892
483
  focus: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1893
484
  x: z.ZodNumber;
1894
485
  y: z.ZodNumber;
1895
- }, "strip", z.ZodTypeAny, {
1896
- x: number;
1897
- y: number;
1898
- }, {
1899
- x: number;
1900
- y: number;
1901
- }>>>;
1902
- }, "strip", z.ZodTypeAny, {
1903
- original: {
1904
- width: number;
1905
- height: number;
1906
- size: string;
1907
- aspect: number;
1908
- };
1909
- small?: {
1910
- width: number;
1911
- height: number;
1912
- size: string;
1913
- aspect: number;
1914
- } | null | undefined;
1915
- focus?: {
1916
- x: number;
1917
- y: number;
1918
- } | null | undefined;
1919
- }, {
1920
- original: {
1921
- width: number;
1922
- height: number;
1923
- size: string;
1924
- aspect: number;
1925
- };
1926
- small?: {
1927
- width: number;
1928
- height: number;
1929
- size: string;
1930
- aspect: number;
1931
- } | null | undefined;
1932
- focus?: {
1933
- x: number;
1934
- y: number;
1935
- } | null | undefined;
1936
- }>>>;
1937
- }, "strip", z.ZodTypeAny, {
1938
- id: string;
1939
- type: "image";
1940
- url: string;
1941
- description: string | null;
1942
- blurhash: string | null;
1943
- preview_url: string | null;
1944
- remote_url: string | null;
1945
- meta?: {
1946
- original: {
1947
- width: number;
1948
- height: number;
1949
- size: string;
1950
- aspect: number;
1951
- };
1952
- small?: {
1953
- width: number;
1954
- height: number;
1955
- size: string;
1956
- aspect: number;
1957
- } | null | undefined;
1958
- focus?: {
1959
- x: number;
1960
- y: number;
1961
- } | null | undefined;
1962
- } | null | undefined;
1963
- }, {
1964
- id: string;
1965
- type: "image";
1966
- url: string;
1967
- description: string | null;
1968
- blurhash: string | null;
1969
- preview_url: string | null;
1970
- remote_url: string | null;
1971
- meta?: {
1972
- original: {
1973
- width: number;
1974
- height: number;
1975
- size: string;
1976
- aspect: number;
1977
- };
1978
- small?: {
1979
- width: number;
1980
- height: number;
1981
- size: string;
1982
- aspect: number;
1983
- } | null | undefined;
1984
- focus?: {
1985
- x: number;
1986
- y: number;
1987
- } | null | undefined;
1988
- } | null | undefined;
1989
- }>, z.ZodObject<{
486
+ }, z.core.$strip>>>;
487
+ }, z.core.$strip>>>;
488
+ }, z.core.$strip>, z.ZodObject<{
1990
489
  id: z.ZodString;
1991
490
  url: z.ZodString;
1992
491
  preview_url: z.ZodNullable<z.ZodString>;
1993
492
  remote_url: z.ZodNullable<z.ZodString>;
1994
493
  description: z.ZodNullable<z.ZodString>;
1995
494
  blurhash: z.ZodNullable<z.ZodString>;
1996
- } & {
1997
495
  type: z.ZodLiteral<"gifv">;
1998
496
  meta: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1999
497
  length: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -2009,146 +507,21 @@ export declare const Status: z.ZodObject<{
2009
507
  frame_rate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2010
508
  duration: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2011
509
  bitrate: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2012
- }, "strip", z.ZodTypeAny, {
2013
- width: number;
2014
- height: number;
2015
- duration?: number | null | undefined;
2016
- frame_rate?: string | null | undefined;
2017
- bitrate?: number | null | undefined;
2018
- }, {
2019
- width: number;
2020
- height: number;
2021
- duration?: number | null | undefined;
2022
- frame_rate?: string | null | undefined;
2023
- bitrate?: number | null | undefined;
2024
- }>;
510
+ }, z.core.$strip>;
2025
511
  small: z.ZodOptional<z.ZodNullable<z.ZodObject<{
2026
512
  width: z.ZodNumber;
2027
513
  height: z.ZodNumber;
2028
514
  size: z.ZodString;
2029
515
  aspect: z.ZodNumber;
2030
- }, "strip", z.ZodTypeAny, {
2031
- width: number;
2032
- height: number;
2033
- size: string;
2034
- aspect: number;
2035
- }, {
2036
- width: number;
2037
- height: number;
2038
- size: string;
2039
- aspect: number;
2040
- }>>>;
2041
- }, "strip", z.ZodTypeAny, {
2042
- width: number;
2043
- height: number;
2044
- size: string;
2045
- aspect: number;
2046
- original: {
2047
- width: number;
2048
- height: number;
2049
- duration?: number | null | undefined;
2050
- frame_rate?: string | null | undefined;
2051
- bitrate?: number | null | undefined;
2052
- };
2053
- length?: string | null | undefined;
2054
- duration?: number | null | undefined;
2055
- fps?: number | null | undefined;
2056
- small?: {
2057
- width: number;
2058
- height: number;
2059
- size: string;
2060
- aspect: number;
2061
- } | null | undefined;
2062
- }, {
2063
- width: number;
2064
- height: number;
2065
- size: string;
2066
- aspect: number;
2067
- original: {
2068
- width: number;
2069
- height: number;
2070
- duration?: number | null | undefined;
2071
- frame_rate?: string | null | undefined;
2072
- bitrate?: number | null | undefined;
2073
- };
2074
- length?: string | null | undefined;
2075
- duration?: number | null | undefined;
2076
- fps?: number | null | undefined;
2077
- small?: {
2078
- width: number;
2079
- height: number;
2080
- size: string;
2081
- aspect: number;
2082
- } | null | undefined;
2083
- }>>>;
2084
- }, "strip", z.ZodTypeAny, {
2085
- id: string;
2086
- type: "gifv";
2087
- url: string;
2088
- description: string | null;
2089
- blurhash: string | null;
2090
- preview_url: string | null;
2091
- remote_url: string | null;
2092
- meta?: {
2093
- width: number;
2094
- height: number;
2095
- size: string;
2096
- aspect: number;
2097
- original: {
2098
- width: number;
2099
- height: number;
2100
- duration?: number | null | undefined;
2101
- frame_rate?: string | null | undefined;
2102
- bitrate?: number | null | undefined;
2103
- };
2104
- length?: string | null | undefined;
2105
- duration?: number | null | undefined;
2106
- fps?: number | null | undefined;
2107
- small?: {
2108
- width: number;
2109
- height: number;
2110
- size: string;
2111
- aspect: number;
2112
- } | null | undefined;
2113
- } | null | undefined;
2114
- }, {
2115
- id: string;
2116
- type: "gifv";
2117
- url: string;
2118
- description: string | null;
2119
- blurhash: string | null;
2120
- preview_url: string | null;
2121
- remote_url: string | null;
2122
- meta?: {
2123
- width: number;
2124
- height: number;
2125
- size: string;
2126
- aspect: number;
2127
- original: {
2128
- width: number;
2129
- height: number;
2130
- duration?: number | null | undefined;
2131
- frame_rate?: string | null | undefined;
2132
- bitrate?: number | null | undefined;
2133
- };
2134
- length?: string | null | undefined;
2135
- duration?: number | null | undefined;
2136
- fps?: number | null | undefined;
2137
- small?: {
2138
- width: number;
2139
- height: number;
2140
- size: string;
2141
- aspect: number;
2142
- } | null | undefined;
2143
- } | null | undefined;
2144
- }>, z.ZodObject<{
516
+ }, z.core.$strip>>>;
517
+ }, z.core.$strip>>>;
518
+ }, z.core.$strip>, z.ZodObject<{
2145
519
  id: z.ZodString;
2146
520
  url: z.ZodString;
2147
521
  preview_url: z.ZodNullable<z.ZodString>;
2148
522
  remote_url: z.ZodNullable<z.ZodString>;
2149
523
  description: z.ZodNullable<z.ZodString>;
2150
524
  blurhash: z.ZodNullable<z.ZodString>;
2151
- } & {
2152
525
  type: z.ZodLiteral<"video">;
2153
526
  meta: z.ZodOptional<z.ZodNullable<z.ZodObject<{
2154
527
  length: z.ZodOptional<z.ZodNullable<z.ZodString>>;
@@ -2167,158 +540,21 @@ export declare const Status: z.ZodObject<{
2167
540
  frame_rate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
2168
541
  duration: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2169
542
  bitrate: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2170
- }, "strip", z.ZodTypeAny, {
2171
- width: number;
2172
- height: number;
2173
- duration?: number | null | undefined;
2174
- frame_rate?: string | null | undefined;
2175
- bitrate?: number | null | undefined;
2176
- }, {
2177
- width: number;
2178
- height: number;
2179
- duration?: number | null | undefined;
2180
- frame_rate?: string | null | undefined;
2181
- bitrate?: number | null | undefined;
2182
- }>;
543
+ }, z.core.$strip>;
2183
544
  small: z.ZodOptional<z.ZodNullable<z.ZodObject<{
2184
545
  width: z.ZodNumber;
2185
546
  height: z.ZodNumber;
2186
547
  size: z.ZodString;
2187
548
  aspect: z.ZodNumber;
2188
- }, "strip", z.ZodTypeAny, {
2189
- width: number;
2190
- height: number;
2191
- size: string;
2192
- aspect: number;
2193
- }, {
2194
- width: number;
2195
- height: number;
2196
- size: string;
2197
- aspect: number;
2198
- }>>>;
2199
- }, "strip", z.ZodTypeAny, {
2200
- width: number;
2201
- height: number;
2202
- size: string;
2203
- aspect: number;
2204
- original: {
2205
- width: number;
2206
- height: number;
2207
- duration?: number | null | undefined;
2208
- frame_rate?: string | null | undefined;
2209
- bitrate?: number | null | undefined;
2210
- };
2211
- length?: string | null | undefined;
2212
- duration?: number | null | undefined;
2213
- fps?: number | null | undefined;
2214
- small?: {
2215
- width: number;
2216
- height: number;
2217
- size: string;
2218
- aspect: number;
2219
- } | null | undefined;
2220
- audio_encode?: string | null | undefined;
2221
- audio_bitrate?: string | null | undefined;
2222
- audio_channels?: string | null | undefined;
2223
- }, {
2224
- width: number;
2225
- height: number;
2226
- size: string;
2227
- aspect: number;
2228
- original: {
2229
- width: number;
2230
- height: number;
2231
- duration?: number | null | undefined;
2232
- frame_rate?: string | null | undefined;
2233
- bitrate?: number | null | undefined;
2234
- };
2235
- length?: string | null | undefined;
2236
- duration?: number | null | undefined;
2237
- fps?: number | null | undefined;
2238
- small?: {
2239
- width: number;
2240
- height: number;
2241
- size: string;
2242
- aspect: number;
2243
- } | null | undefined;
2244
- audio_encode?: string | null | undefined;
2245
- audio_bitrate?: string | null | undefined;
2246
- audio_channels?: string | null | undefined;
2247
- }>>>;
2248
- }, "strip", z.ZodTypeAny, {
2249
- id: string;
2250
- type: "video";
2251
- url: string;
2252
- description: string | null;
2253
- blurhash: string | null;
2254
- preview_url: string | null;
2255
- remote_url: string | null;
2256
- meta?: {
2257
- width: number;
2258
- height: number;
2259
- size: string;
2260
- aspect: number;
2261
- original: {
2262
- width: number;
2263
- height: number;
2264
- duration?: number | null | undefined;
2265
- frame_rate?: string | null | undefined;
2266
- bitrate?: number | null | undefined;
2267
- };
2268
- length?: string | null | undefined;
2269
- duration?: number | null | undefined;
2270
- fps?: number | null | undefined;
2271
- small?: {
2272
- width: number;
2273
- height: number;
2274
- size: string;
2275
- aspect: number;
2276
- } | null | undefined;
2277
- audio_encode?: string | null | undefined;
2278
- audio_bitrate?: string | null | undefined;
2279
- audio_channels?: string | null | undefined;
2280
- } | null | undefined;
2281
- }, {
2282
- id: string;
2283
- type: "video";
2284
- url: string;
2285
- description: string | null;
2286
- blurhash: string | null;
2287
- preview_url: string | null;
2288
- remote_url: string | null;
2289
- meta?: {
2290
- width: number;
2291
- height: number;
2292
- size: string;
2293
- aspect: number;
2294
- original: {
2295
- width: number;
2296
- height: number;
2297
- duration?: number | null | undefined;
2298
- frame_rate?: string | null | undefined;
2299
- bitrate?: number | null | undefined;
2300
- };
2301
- length?: string | null | undefined;
2302
- duration?: number | null | undefined;
2303
- fps?: number | null | undefined;
2304
- small?: {
2305
- width: number;
2306
- height: number;
2307
- size: string;
2308
- aspect: number;
2309
- } | null | undefined;
2310
- audio_encode?: string | null | undefined;
2311
- audio_bitrate?: string | null | undefined;
2312
- audio_channels?: string | null | undefined;
2313
- } | null | undefined;
2314
- }>, z.ZodObject<{
549
+ }, z.core.$strip>>>;
550
+ }, z.core.$strip>>>;
551
+ }, z.core.$strip>, z.ZodObject<{
2315
552
  id: z.ZodString;
2316
553
  url: z.ZodString;
2317
554
  preview_url: z.ZodNullable<z.ZodString>;
2318
555
  remote_url: z.ZodNullable<z.ZodString>;
2319
556
  description: z.ZodNullable<z.ZodString>;
2320
557
  blurhash: z.ZodNullable<z.ZodString>;
2321
- } & {
2322
558
  type: z.ZodLiteral<"audio">;
2323
559
  meta: z.ZodObject<{
2324
560
  length: z.ZodString;
@@ -2329,153 +565,38 @@ export declare const Status: z.ZodObject<{
2329
565
  original: z.ZodObject<{
2330
566
  duration: z.ZodNumber;
2331
567
  bitrate: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2332
- }, "strip", z.ZodTypeAny, {
2333
- duration: number;
2334
- bitrate?: number | null | undefined;
2335
- }, {
2336
- duration: number;
2337
- bitrate?: number | null | undefined;
2338
- }>;
2339
- }, "strip", z.ZodTypeAny, {
2340
- length: string;
2341
- duration: number;
2342
- original: {
2343
- duration: number;
2344
- bitrate?: number | null | undefined;
2345
- };
2346
- audio_encode?: string | null | undefined;
2347
- audio_bitrate?: string | null | undefined;
2348
- audio_channels?: string | null | undefined;
2349
- }, {
2350
- length: string;
2351
- duration: number;
2352
- original: {
2353
- duration: number;
2354
- bitrate?: number | null | undefined;
2355
- };
2356
- audio_encode?: string | null | undefined;
2357
- audio_bitrate?: string | null | undefined;
2358
- audio_channels?: string | null | undefined;
2359
- }>;
2360
- }, "strip", z.ZodTypeAny, {
2361
- id: string;
2362
- type: "audio";
2363
- url: string;
2364
- description: string | null;
2365
- blurhash: string | null;
2366
- preview_url: string | null;
2367
- remote_url: string | null;
2368
- meta: {
2369
- length: string;
2370
- duration: number;
2371
- original: {
2372
- duration: number;
2373
- bitrate?: number | null | undefined;
2374
- };
2375
- audio_encode?: string | null | undefined;
2376
- audio_bitrate?: string | null | undefined;
2377
- audio_channels?: string | null | undefined;
2378
- };
2379
- }, {
2380
- id: string;
2381
- type: "audio";
2382
- url: string;
2383
- description: string | null;
2384
- blurhash: string | null;
2385
- preview_url: string | null;
2386
- remote_url: string | null;
2387
- meta: {
2388
- length: string;
2389
- duration: number;
2390
- original: {
2391
- duration: number;
2392
- bitrate?: number | null | undefined;
2393
- };
2394
- audio_encode?: string | null | undefined;
2395
- audio_bitrate?: string | null | undefined;
2396
- audio_channels?: string | null | undefined;
2397
- };
2398
- }>, z.ZodObject<{
568
+ }, z.core.$strip>;
569
+ }, z.core.$strip>;
570
+ }, z.core.$strip>, z.ZodObject<{
2399
571
  id: z.ZodString;
2400
572
  url: z.ZodString;
2401
573
  preview_url: z.ZodNullable<z.ZodString>;
2402
574
  remote_url: z.ZodNullable<z.ZodString>;
2403
575
  description: z.ZodNullable<z.ZodString>;
2404
576
  blurhash: z.ZodNullable<z.ZodString>;
2405
- } & {
2406
577
  type: z.ZodLiteral<"unknown">;
2407
- }, "strip", z.ZodTypeAny, {
2408
- id: string;
2409
- type: "unknown";
2410
- url: string;
2411
- description: string | null;
2412
- blurhash: string | null;
2413
- preview_url: string | null;
2414
- remote_url: string | null;
2415
- }, {
2416
- id: string;
2417
- type: "unknown";
2418
- url: string;
2419
- description: string | null;
2420
- blurhash: string | null;
2421
- preview_url: string | null;
2422
- remote_url: string | null;
2423
- }>]>, "many">;
578
+ }, z.core.$strip>]>>;
2424
579
  application: z.ZodOptional<z.ZodObject<{
2425
580
  name: z.ZodString;
2426
581
  website: z.ZodNullable<z.ZodString>;
2427
- }, "strip", z.ZodTypeAny, {
2428
- name: string;
2429
- website: string | null;
2430
- }, {
2431
- name: string;
2432
- website: string | null;
2433
- }>>;
582
+ }, z.core.$strip>>;
2434
583
  emojis: z.ZodArray<z.ZodObject<{
2435
584
  shortcode: z.ZodString;
2436
585
  static_url: z.ZodString;
2437
586
  url: z.ZodString;
2438
587
  visible_in_picker: z.ZodBoolean;
2439
588
  category: z.ZodNullable<z.ZodString>;
2440
- }, "strip", z.ZodTypeAny, {
2441
- url: string;
2442
- shortcode: string;
2443
- static_url: string;
2444
- visible_in_picker: boolean;
2445
- category: string | null;
2446
- }, {
2447
- url: string;
2448
- shortcode: string;
2449
- static_url: string;
2450
- visible_in_picker: boolean;
2451
- category: string | null;
2452
- }>, "many">;
589
+ }, z.core.$strip>>;
2453
590
  mentions: z.ZodArray<z.ZodObject<{
2454
591
  id: z.ZodString;
2455
592
  username: z.ZodString;
2456
593
  url: z.ZodString;
2457
594
  acct: z.ZodString;
2458
- }, "strip", z.ZodTypeAny, {
2459
- id: string;
2460
- url: string;
2461
- username: string;
2462
- acct: string;
2463
- }, {
2464
- id: string;
2465
- url: string;
2466
- username: string;
2467
- acct: string;
2468
- }>, "many">;
595
+ }, z.core.$strip>>;
2469
596
  tags: z.ZodArray<z.ZodObject<{
2470
597
  name: z.ZodString;
2471
598
  url: z.ZodString;
2472
- }, "strip", z.ZodTypeAny, {
2473
- url: string;
2474
- name: string;
2475
- }, {
2476
- url: string;
2477
- name: string;
2478
- }>, "many">;
599
+ }, z.core.$strip>>;
2479
600
  reblogs_count: z.ZodNumber;
2480
601
  favourites_count: z.ZodNumber;
2481
602
  replies_count: z.ZodNumber;
@@ -2492,80 +613,27 @@ export declare const Status: z.ZodObject<{
2492
613
  options: z.ZodArray<z.ZodObject<{
2493
614
  title: z.ZodString;
2494
615
  votes_count: z.ZodNullable<z.ZodNumber>;
2495
- }, "strip", z.ZodTypeAny, {
2496
- title: string;
2497
- votes_count: number | null;
2498
- }, {
2499
- title: string;
2500
- votes_count: number | null;
2501
- }>, "many">;
616
+ }, z.core.$strip>>;
2502
617
  emojis: z.ZodArray<z.ZodObject<{
2503
618
  shortcode: z.ZodString;
2504
619
  static_url: z.ZodString;
2505
620
  url: z.ZodString;
2506
621
  visible_in_picker: z.ZodBoolean;
2507
622
  category: z.ZodNullable<z.ZodString>;
2508
- }, "strip", z.ZodTypeAny, {
2509
- url: string;
2510
- shortcode: string;
2511
- static_url: string;
2512
- visible_in_picker: boolean;
2513
- category: string | null;
2514
- }, {
2515
- url: string;
2516
- shortcode: string;
2517
- static_url: string;
2518
- visible_in_picker: boolean;
2519
- category: string | null;
2520
- }>, "many">;
623
+ }, z.core.$strip>>;
2521
624
  voted: z.ZodOptional<z.ZodBoolean>;
2522
- own_votes: z.ZodArray<z.ZodNumber, "many">;
2523
- }, "strip", z.ZodTypeAny, {
2524
- id: string;
2525
- options: {
2526
- title: string;
2527
- votes_count: number | null;
2528
- }[];
2529
- emojis: {
2530
- url: string;
2531
- shortcode: string;
2532
- static_url: string;
2533
- visible_in_picker: boolean;
2534
- category: string | null;
2535
- }[];
2536
- expires_at: string | null;
2537
- votes_count: number;
2538
- expired: boolean;
2539
- multiple: boolean;
2540
- voters_count: number;
2541
- own_votes: number[];
2542
- voted?: boolean | undefined;
2543
- }, {
2544
- id: string;
2545
- options: {
2546
- title: string;
2547
- votes_count: number | null;
2548
- }[];
2549
- emojis: {
2550
- url: string;
2551
- shortcode: string;
2552
- static_url: string;
2553
- visible_in_picker: boolean;
2554
- category: string | null;
2555
- }[];
2556
- expires_at: string | null;
2557
- votes_count: number;
2558
- expired: boolean;
2559
- multiple: boolean;
2560
- voters_count: number;
2561
- own_votes: number[];
2562
- voted?: boolean | undefined;
2563
- }>>;
625
+ own_votes: z.ZodArray<z.ZodNumber>;
626
+ }, z.core.$strip>>;
2564
627
  card: z.ZodNullable<z.ZodObject<{
2565
628
  url: z.ZodString;
2566
629
  title: z.ZodString;
2567
630
  description: z.ZodString;
2568
- type: z.ZodEnum<["link", "photo", "video", "rich"]>;
631
+ type: z.ZodEnum<{
632
+ link: "link";
633
+ photo: "photo";
634
+ video: "video";
635
+ rich: "rich";
636
+ }>;
2569
637
  author_name: z.ZodString;
2570
638
  author_url: z.ZodString;
2571
639
  provider_name: z.ZodString;
@@ -2576,37 +644,7 @@ export declare const Status: z.ZodObject<{
2576
644
  image: z.ZodNullable<z.ZodString>;
2577
645
  embed_url: z.ZodString;
2578
646
  blurhash: z.ZodNullable<z.ZodString>;
2579
- }, "strip", z.ZodTypeAny, {
2580
- type: "link" | "photo" | "video" | "rich";
2581
- url: string;
2582
- image: string | null;
2583
- description: string;
2584
- blurhash: string | null;
2585
- width: number;
2586
- height: number;
2587
- title: string;
2588
- author_name: string;
2589
- author_url: string;
2590
- provider_name: string;
2591
- provider_url: string;
2592
- html: string;
2593
- embed_url: string;
2594
- }, {
2595
- type: "link" | "photo" | "video" | "rich";
2596
- url: string;
2597
- image: string | null;
2598
- description: string;
2599
- blurhash: string | null;
2600
- width: number;
2601
- height: number;
2602
- title: string;
2603
- author_name: string;
2604
- author_url: string;
2605
- provider_name: string;
2606
- provider_url: string;
2607
- html: string;
2608
- embed_url: string;
2609
- }>>;
647
+ }, z.core.$strip>>;
2610
648
  language: z.ZodNullable<z.ZodString>;
2611
649
  text: z.ZodNullable<z.ZodString>;
2612
650
  created_at: z.ZodString;
@@ -2620,1984 +658,31 @@ export declare const Status: z.ZodObject<{
2620
658
  filter: z.ZodObject<{
2621
659
  id: z.ZodString;
2622
660
  title: z.ZodString;
2623
- context: z.ZodArray<z.ZodEnum<["home", "notifications", "public", "thread", "account"]>, "many">;
661
+ context: z.ZodArray<z.ZodEnum<{
662
+ public: "public";
663
+ home: "home";
664
+ notifications: "notifications";
665
+ thread: "thread";
666
+ account: "account";
667
+ }>>;
2624
668
  expires_at: z.ZodNullable<z.ZodString>;
2625
- filter_action: z.ZodEnum<["warn", "hide"]>;
669
+ filter_action: z.ZodEnum<{
670
+ warn: "warn";
671
+ hide: "hide";
672
+ }>;
2626
673
  keywords: z.ZodArray<z.ZodObject<{
2627
674
  id: z.ZodString;
2628
675
  keyword: z.ZodString;
2629
676
  whole_word: z.ZodBoolean;
2630
- }, "strip", z.ZodTypeAny, {
2631
- id: string;
2632
- keyword: string;
2633
- whole_word: boolean;
2634
- }, {
2635
- id: string;
2636
- keyword: string;
2637
- whole_word: boolean;
2638
- }>, "many">;
677
+ }, z.core.$strip>>;
2639
678
  statuses: z.ZodArray<z.ZodObject<{
2640
679
  id: z.ZodString;
2641
680
  status_id: z.ZodString;
2642
- }, "strip", z.ZodTypeAny, {
2643
- id: string;
2644
- status_id: string;
2645
- }, {
2646
- id: string;
2647
- status_id: string;
2648
- }>, "many">;
2649
- }, "strip", z.ZodTypeAny, {
2650
- id: string;
2651
- title: string;
2652
- context: ("public" | "home" | "notifications" | "thread" | "account")[];
2653
- expires_at: string | null;
2654
- filter_action: "warn" | "hide";
2655
- keywords: {
2656
- id: string;
2657
- keyword: string;
2658
- whole_word: boolean;
2659
- }[];
2660
- statuses: {
2661
- id: string;
2662
- status_id: string;
2663
- }[];
2664
- }, {
2665
- id: string;
2666
- title: string;
2667
- context: ("public" | "home" | "notifications" | "thread" | "account")[];
2668
- expires_at: string | null;
2669
- filter_action: "warn" | "hide";
2670
- keywords: {
2671
- id: string;
2672
- keyword: string;
2673
- whole_word: boolean;
2674
- }[];
2675
- statuses: {
2676
- id: string;
2677
- status_id: string;
2678
- }[];
2679
- }>;
2680
- keyword_matches: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
2681
- status_matches: z.ZodNullable<z.ZodArray<z.ZodString, "many">>;
2682
- }, "strip", z.ZodTypeAny, {
2683
- filter: {
2684
- id: string;
2685
- title: string;
2686
- context: ("public" | "home" | "notifications" | "thread" | "account")[];
2687
- expires_at: string | null;
2688
- filter_action: "warn" | "hide";
2689
- keywords: {
2690
- id: string;
2691
- keyword: string;
2692
- whole_word: boolean;
2693
- }[];
2694
- statuses: {
2695
- id: string;
2696
- status_id: string;
2697
- }[];
2698
- };
2699
- keyword_matches: string[] | null;
2700
- status_matches: string[] | null;
2701
- }, {
2702
- filter: {
2703
- id: string;
2704
- title: string;
2705
- context: ("public" | "home" | "notifications" | "thread" | "account")[];
2706
- expires_at: string | null;
2707
- filter_action: "warn" | "hide";
2708
- keywords: {
2709
- id: string;
2710
- keyword: string;
2711
- whole_word: boolean;
2712
- }[];
2713
- statuses: {
2714
- id: string;
2715
- status_id: string;
2716
- }[];
2717
- };
2718
- keyword_matches: string[] | null;
2719
- status_matches: string[] | null;
2720
- }>>;
2721
- }, "strip", z.ZodTypeAny, {
2722
- id: string;
2723
- url: string | null;
2724
- content: string;
2725
- sensitive: boolean;
2726
- language: string | null;
2727
- emojis: {
2728
- url: string;
2729
- shortcode: string;
2730
- static_url: string;
2731
- visible_in_picker: boolean;
2732
- category: string | null;
2733
- }[];
2734
- created_at: string;
2735
- account: {
2736
- id: string;
2737
- url: string;
2738
- note: string;
2739
- fields: {
2740
- value: string;
2741
- name: string;
2742
- verified_at: string | null;
2743
- }[];
2744
- username: string;
2745
- acct: string;
2746
- display_name: string;
2747
- avatar: string;
2748
- avatar_static: string;
2749
- header: string;
2750
- header_static: string;
2751
- locked: boolean;
2752
- source: {
2753
- note: string;
2754
- fields: {
2755
- value: string;
2756
- name: string;
2757
- verified_at: string | null;
2758
- }[];
2759
- privacy: "public" | "unlist" | "private" | "direct";
2760
- sensitive: boolean;
2761
- language: string;
2762
- follow_requests_count: number;
2763
- };
2764
- emojis: {
2765
- url: string;
2766
- shortcode: string;
2767
- static_url: string;
2768
- visible_in_picker: boolean;
2769
- category: string | null;
2770
- }[];
2771
- bot: boolean;
2772
- group: boolean;
2773
- discoverable: boolean | null;
2774
- created_at: string;
2775
- last_status_at: string | null;
2776
- statuses_count: number;
2777
- followers_count: number;
2778
- following_count: number;
2779
- noindex?: boolean | null | undefined;
2780
- suspended?: boolean | undefined;
2781
- limited?: boolean | undefined;
2782
- moved?: {
2783
- id: string;
2784
- url: string;
2785
- note: string;
2786
- fields: {
2787
- value: string;
2788
- name: string;
2789
- verified_at: string | null;
2790
- }[];
2791
- username: string;
2792
- acct: string;
2793
- display_name: string;
2794
- avatar: string;
2795
- avatar_static: string;
2796
- header: string;
2797
- header_static: string;
2798
- locked: boolean;
2799
- source: {
2800
- note: string;
2801
- fields: {
2802
- value: string;
2803
- name: string;
2804
- verified_at: string | null;
2805
- }[];
2806
- privacy: "public" | "unlist" | "private" | "direct";
2807
- sensitive: boolean;
2808
- language: string;
2809
- follow_requests_count: number;
2810
- };
2811
- emojis: {
2812
- url: string;
2813
- shortcode: string;
2814
- static_url: string;
2815
- visible_in_picker: boolean;
2816
- category: string | null;
2817
- }[];
2818
- bot: boolean;
2819
- group: boolean;
2820
- discoverable: boolean | null;
2821
- created_at: string;
2822
- last_status_at: string | null;
2823
- statuses_count: number;
2824
- followers_count: number;
2825
- following_count: number;
2826
- noindex?: boolean | null | undefined;
2827
- suspended?: boolean | undefined;
2828
- limited?: boolean | undefined;
2829
- } | null | undefined;
2830
- };
2831
- uri: string;
2832
- visibility: "public" | "unlist" | "private" | "direct";
2833
- spoiler_text: string;
2834
- media_attachments: ({
2835
- id: string;
2836
- type: "gifv";
2837
- url: string;
2838
- description: string | null;
2839
- blurhash: string | null;
2840
- preview_url: string | null;
2841
- remote_url: string | null;
2842
- meta?: {
2843
- width: number;
2844
- height: number;
2845
- size: string;
2846
- aspect: number;
2847
- original: {
2848
- width: number;
2849
- height: number;
2850
- duration?: number | null | undefined;
2851
- frame_rate?: string | null | undefined;
2852
- bitrate?: number | null | undefined;
2853
- };
2854
- length?: string | null | undefined;
2855
- duration?: number | null | undefined;
2856
- fps?: number | null | undefined;
2857
- small?: {
2858
- width: number;
2859
- height: number;
2860
- size: string;
2861
- aspect: number;
2862
- } | null | undefined;
2863
- } | null | undefined;
2864
- } | {
2865
- id: string;
2866
- type: "image";
2867
- url: string;
2868
- description: string | null;
2869
- blurhash: string | null;
2870
- preview_url: string | null;
2871
- remote_url: string | null;
2872
- meta?: {
2873
- original: {
2874
- width: number;
2875
- height: number;
2876
- size: string;
2877
- aspect: number;
2878
- };
2879
- small?: {
2880
- width: number;
2881
- height: number;
2882
- size: string;
2883
- aspect: number;
2884
- } | null | undefined;
2885
- focus?: {
2886
- x: number;
2887
- y: number;
2888
- } | null | undefined;
2889
- } | null | undefined;
2890
- } | {
2891
- id: string;
2892
- type: "video";
2893
- url: string;
2894
- description: string | null;
2895
- blurhash: string | null;
2896
- preview_url: string | null;
2897
- remote_url: string | null;
2898
- meta?: {
2899
- width: number;
2900
- height: number;
2901
- size: string;
2902
- aspect: number;
2903
- original: {
2904
- width: number;
2905
- height: number;
2906
- duration?: number | null | undefined;
2907
- frame_rate?: string | null | undefined;
2908
- bitrate?: number | null | undefined;
2909
- };
2910
- length?: string | null | undefined;
2911
- duration?: number | null | undefined;
2912
- fps?: number | null | undefined;
2913
- small?: {
2914
- width: number;
2915
- height: number;
2916
- size: string;
2917
- aspect: number;
2918
- } | null | undefined;
2919
- audio_encode?: string | null | undefined;
2920
- audio_bitrate?: string | null | undefined;
2921
- audio_channels?: string | null | undefined;
2922
- } | null | undefined;
2923
- } | {
2924
- id: string;
2925
- type: "audio";
2926
- url: string;
2927
- description: string | null;
2928
- blurhash: string | null;
2929
- preview_url: string | null;
2930
- remote_url: string | null;
2931
- meta: {
2932
- length: string;
2933
- duration: number;
2934
- original: {
2935
- duration: number;
2936
- bitrate?: number | null | undefined;
2937
- };
2938
- audio_encode?: string | null | undefined;
2939
- audio_bitrate?: string | null | undefined;
2940
- audio_channels?: string | null | undefined;
2941
- };
2942
- } | {
2943
- id: string;
2944
- type: "unknown";
2945
- url: string;
2946
- description: string | null;
2947
- blurhash: string | null;
2948
- preview_url: string | null;
2949
- remote_url: string | null;
2950
- })[];
2951
- mentions: {
2952
- id: string;
2953
- url: string;
2954
- username: string;
2955
- acct: string;
2956
- }[];
2957
- tags: {
2958
- url: string;
2959
- name: string;
2960
- }[];
2961
- reblogs_count: number;
2962
- favourites_count: number;
2963
- replies_count: number;
2964
- in_reply_to_id: string | null;
2965
- in_reply_to_account_id: string | null;
2966
- poll: {
2967
- id: string;
2968
- options: {
2969
- title: string;
2970
- votes_count: number | null;
2971
- }[];
2972
- emojis: {
2973
- url: string;
2974
- shortcode: string;
2975
- static_url: string;
2976
- visible_in_picker: boolean;
2977
- category: string | null;
2978
- }[];
2979
- expires_at: string | null;
2980
- votes_count: number;
2981
- expired: boolean;
2982
- multiple: boolean;
2983
- voters_count: number;
2984
- own_votes: number[];
2985
- voted?: boolean | undefined;
2986
- } | null;
2987
- card: {
2988
- type: "link" | "photo" | "video" | "rich";
2989
- url: string;
2990
- image: string | null;
2991
- description: string;
2992
- blurhash: string | null;
2993
- width: number;
2994
- height: number;
2995
- title: string;
2996
- author_name: string;
2997
- author_url: string;
2998
- provider_name: string;
2999
- provider_url: string;
3000
- html: string;
3001
- embed_url: string;
3002
- } | null;
3003
- text: string | null;
3004
- edited_at: string | null;
3005
- application?: {
3006
- name: string;
3007
- website: string | null;
3008
- } | undefined;
3009
- favourited?: boolean | undefined;
3010
- reblogged?: boolean | undefined;
3011
- muted?: boolean | undefined;
3012
- bookmarked?: boolean | undefined;
3013
- pinned?: boolean | undefined;
3014
- filtered?: {
3015
- filter: {
3016
- id: string;
3017
- title: string;
3018
- context: ("public" | "home" | "notifications" | "thread" | "account")[];
3019
- expires_at: string | null;
3020
- filter_action: "warn" | "hide";
3021
- keywords: {
3022
- id: string;
3023
- keyword: string;
3024
- whole_word: boolean;
3025
- }[];
3026
- statuses: {
3027
- id: string;
3028
- status_id: string;
3029
- }[];
3030
- };
3031
- keyword_matches: string[] | null;
3032
- status_matches: string[] | null;
3033
- } | undefined;
3034
- }, {
3035
- id: string;
3036
- url: string | null;
3037
- content: string;
3038
- sensitive: boolean;
3039
- language: string | null;
3040
- emojis: {
3041
- url: string;
3042
- shortcode: string;
3043
- static_url: string;
3044
- visible_in_picker: boolean;
3045
- category: string | null;
3046
- }[];
3047
- created_at: string;
3048
- account: {
3049
- id: string;
3050
- url: string;
3051
- note: string;
3052
- fields: {
3053
- value: string;
3054
- name: string;
3055
- verified_at: string | null;
3056
- }[];
3057
- username: string;
3058
- acct: string;
3059
- display_name: string;
3060
- avatar: string;
3061
- avatar_static: string;
3062
- header: string;
3063
- header_static: string;
3064
- locked: boolean;
3065
- source: {
3066
- note: string;
3067
- fields: {
3068
- value: string;
3069
- name: string;
3070
- verified_at: string | null;
3071
- }[];
3072
- privacy: "public" | "unlist" | "private" | "direct";
3073
- sensitive: boolean;
3074
- language: string;
3075
- follow_requests_count: number;
3076
- };
3077
- emojis: {
3078
- url: string;
3079
- shortcode: string;
3080
- static_url: string;
3081
- visible_in_picker: boolean;
3082
- category: string | null;
3083
- }[];
3084
- bot: boolean;
3085
- group: boolean;
3086
- discoverable: boolean | null;
3087
- created_at: string;
3088
- last_status_at: string | null;
3089
- statuses_count: number;
3090
- followers_count: number;
3091
- following_count: number;
3092
- noindex?: boolean | null | undefined;
3093
- suspended?: boolean | undefined;
3094
- limited?: boolean | undefined;
3095
- moved?: {
3096
- id: string;
3097
- url: string;
3098
- note: string;
3099
- fields: {
3100
- value: string;
3101
- name: string;
3102
- verified_at: string | null;
3103
- }[];
3104
- username: string;
3105
- acct: string;
3106
- display_name: string;
3107
- avatar: string;
3108
- avatar_static: string;
3109
- header: string;
3110
- header_static: string;
3111
- locked: boolean;
3112
- source: {
3113
- note: string;
3114
- fields: {
3115
- value: string;
3116
- name: string;
3117
- verified_at: string | null;
3118
- }[];
3119
- privacy: "public" | "unlist" | "private" | "direct";
3120
- sensitive: boolean;
3121
- language: string;
3122
- follow_requests_count: number;
3123
- };
3124
- emojis: {
3125
- url: string;
3126
- shortcode: string;
3127
- static_url: string;
3128
- visible_in_picker: boolean;
3129
- category: string | null;
3130
- }[];
3131
- bot: boolean;
3132
- group: boolean;
3133
- discoverable: boolean | null;
3134
- created_at: string;
3135
- last_status_at: string | null;
3136
- statuses_count: number;
3137
- followers_count: number;
3138
- following_count: number;
3139
- noindex?: boolean | null | undefined;
3140
- suspended?: boolean | undefined;
3141
- limited?: boolean | undefined;
3142
- } | null | undefined;
3143
- };
3144
- uri: string;
3145
- visibility: "public" | "unlist" | "private" | "direct";
3146
- spoiler_text: string;
3147
- media_attachments: ({
3148
- id: string;
3149
- type: "gifv";
3150
- url: string;
3151
- description: string | null;
3152
- blurhash: string | null;
3153
- preview_url: string | null;
3154
- remote_url: string | null;
3155
- meta?: {
3156
- width: number;
3157
- height: number;
3158
- size: string;
3159
- aspect: number;
3160
- original: {
3161
- width: number;
3162
- height: number;
3163
- duration?: number | null | undefined;
3164
- frame_rate?: string | null | undefined;
3165
- bitrate?: number | null | undefined;
3166
- };
3167
- length?: string | null | undefined;
3168
- duration?: number | null | undefined;
3169
- fps?: number | null | undefined;
3170
- small?: {
3171
- width: number;
3172
- height: number;
3173
- size: string;
3174
- aspect: number;
3175
- } | null | undefined;
3176
- } | null | undefined;
3177
- } | {
3178
- id: string;
3179
- type: "image";
3180
- url: string;
3181
- description: string | null;
3182
- blurhash: string | null;
3183
- preview_url: string | null;
3184
- remote_url: string | null;
3185
- meta?: {
3186
- original: {
3187
- width: number;
3188
- height: number;
3189
- size: string;
3190
- aspect: number;
3191
- };
3192
- small?: {
3193
- width: number;
3194
- height: number;
3195
- size: string;
3196
- aspect: number;
3197
- } | null | undefined;
3198
- focus?: {
3199
- x: number;
3200
- y: number;
3201
- } | null | undefined;
3202
- } | null | undefined;
3203
- } | {
3204
- id: string;
3205
- type: "video";
3206
- url: string;
3207
- description: string | null;
3208
- blurhash: string | null;
3209
- preview_url: string | null;
3210
- remote_url: string | null;
3211
- meta?: {
3212
- width: number;
3213
- height: number;
3214
- size: string;
3215
- aspect: number;
3216
- original: {
3217
- width: number;
3218
- height: number;
3219
- duration?: number | null | undefined;
3220
- frame_rate?: string | null | undefined;
3221
- bitrate?: number | null | undefined;
3222
- };
3223
- length?: string | null | undefined;
3224
- duration?: number | null | undefined;
3225
- fps?: number | null | undefined;
3226
- small?: {
3227
- width: number;
3228
- height: number;
3229
- size: string;
3230
- aspect: number;
3231
- } | null | undefined;
3232
- audio_encode?: string | null | undefined;
3233
- audio_bitrate?: string | null | undefined;
3234
- audio_channels?: string | null | undefined;
3235
- } | null | undefined;
3236
- } | {
3237
- id: string;
3238
- type: "audio";
3239
- url: string;
3240
- description: string | null;
3241
- blurhash: string | null;
3242
- preview_url: string | null;
3243
- remote_url: string | null;
3244
- meta: {
3245
- length: string;
3246
- duration: number;
3247
- original: {
3248
- duration: number;
3249
- bitrate?: number | null | undefined;
3250
- };
3251
- audio_encode?: string | null | undefined;
3252
- audio_bitrate?: string | null | undefined;
3253
- audio_channels?: string | null | undefined;
3254
- };
3255
- } | {
3256
- id: string;
3257
- type: "unknown";
3258
- url: string;
3259
- description: string | null;
3260
- blurhash: string | null;
3261
- preview_url: string | null;
3262
- remote_url: string | null;
3263
- })[];
3264
- mentions: {
3265
- id: string;
3266
- url: string;
3267
- username: string;
3268
- acct: string;
3269
- }[];
3270
- tags: {
3271
- url: string;
3272
- name: string;
3273
- }[];
3274
- reblogs_count: number;
3275
- favourites_count: number;
3276
- replies_count: number;
3277
- in_reply_to_id: string | null;
3278
- in_reply_to_account_id: string | null;
3279
- poll: {
3280
- id: string;
3281
- options: {
3282
- title: string;
3283
- votes_count: number | null;
3284
- }[];
3285
- emojis: {
3286
- url: string;
3287
- shortcode: string;
3288
- static_url: string;
3289
- visible_in_picker: boolean;
3290
- category: string | null;
3291
- }[];
3292
- expires_at: string | null;
3293
- votes_count: number;
3294
- expired: boolean;
3295
- multiple: boolean;
3296
- voters_count: number;
3297
- own_votes: number[];
3298
- voted?: boolean | undefined;
3299
- } | null;
3300
- card: {
3301
- type: "link" | "photo" | "video" | "rich";
3302
- url: string;
3303
- image: string | null;
3304
- description: string;
3305
- blurhash: string | null;
3306
- width: number;
3307
- height: number;
3308
- title: string;
3309
- author_name: string;
3310
- author_url: string;
3311
- provider_name: string;
3312
- provider_url: string;
3313
- html: string;
3314
- embed_url: string;
3315
- } | null;
3316
- text: string | null;
3317
- edited_at: string | null;
3318
- application?: {
3319
- name: string;
3320
- website: string | null;
3321
- } | undefined;
3322
- favourited?: boolean | undefined;
3323
- reblogged?: boolean | undefined;
3324
- muted?: boolean | undefined;
3325
- bookmarked?: boolean | undefined;
3326
- pinned?: boolean | undefined;
3327
- filtered?: {
3328
- filter: {
3329
- id: string;
3330
- title: string;
3331
- context: ("public" | "home" | "notifications" | "thread" | "account")[];
3332
- expires_at: string | null;
3333
- filter_action: "warn" | "hide";
3334
- keywords: {
3335
- id: string;
3336
- keyword: string;
3337
- whole_word: boolean;
3338
- }[];
3339
- statuses: {
3340
- id: string;
3341
- status_id: string;
3342
- }[];
3343
- };
3344
- keyword_matches: string[] | null;
3345
- status_matches: string[] | null;
3346
- } | undefined;
3347
- }>>;
3348
- }, "strip", z.ZodTypeAny, {
3349
- id: string;
3350
- url: string | null;
3351
- content: string;
3352
- sensitive: boolean;
3353
- language: string | null;
3354
- emojis: {
3355
- url: string;
3356
- shortcode: string;
3357
- static_url: string;
3358
- visible_in_picker: boolean;
3359
- category: string | null;
3360
- }[];
3361
- created_at: string;
3362
- account: {
3363
- id: string;
3364
- url: string;
3365
- note: string;
3366
- fields: {
3367
- value: string;
3368
- name: string;
3369
- verified_at: string | null;
3370
- }[];
3371
- username: string;
3372
- acct: string;
3373
- display_name: string;
3374
- avatar: string;
3375
- avatar_static: string;
3376
- header: string;
3377
- header_static: string;
3378
- locked: boolean;
3379
- source: {
3380
- note: string;
3381
- fields: {
3382
- value: string;
3383
- name: string;
3384
- verified_at: string | null;
3385
- }[];
3386
- privacy: "public" | "unlist" | "private" | "direct";
3387
- sensitive: boolean;
3388
- language: string;
3389
- follow_requests_count: number;
3390
- };
3391
- emojis: {
3392
- url: string;
3393
- shortcode: string;
3394
- static_url: string;
3395
- visible_in_picker: boolean;
3396
- category: string | null;
3397
- }[];
3398
- bot: boolean;
3399
- group: boolean;
3400
- discoverable: boolean | null;
3401
- created_at: string;
3402
- last_status_at: string | null;
3403
- statuses_count: number;
3404
- followers_count: number;
3405
- following_count: number;
3406
- noindex?: boolean | null | undefined;
3407
- suspended?: boolean | undefined;
3408
- limited?: boolean | undefined;
3409
- moved?: {
3410
- id: string;
3411
- url: string;
3412
- note: string;
3413
- fields: {
3414
- value: string;
3415
- name: string;
3416
- verified_at: string | null;
3417
- }[];
3418
- username: string;
3419
- acct: string;
3420
- display_name: string;
3421
- avatar: string;
3422
- avatar_static: string;
3423
- header: string;
3424
- header_static: string;
3425
- locked: boolean;
3426
- source: {
3427
- note: string;
3428
- fields: {
3429
- value: string;
3430
- name: string;
3431
- verified_at: string | null;
3432
- }[];
3433
- privacy: "public" | "unlist" | "private" | "direct";
3434
- sensitive: boolean;
3435
- language: string;
3436
- follow_requests_count: number;
3437
- };
3438
- emojis: {
3439
- url: string;
3440
- shortcode: string;
3441
- static_url: string;
3442
- visible_in_picker: boolean;
3443
- category: string | null;
3444
- }[];
3445
- bot: boolean;
3446
- group: boolean;
3447
- discoverable: boolean | null;
3448
- created_at: string;
3449
- last_status_at: string | null;
3450
- statuses_count: number;
3451
- followers_count: number;
3452
- following_count: number;
3453
- noindex?: boolean | null | undefined;
3454
- suspended?: boolean | undefined;
3455
- limited?: boolean | undefined;
3456
- } | null | undefined;
3457
- };
3458
- uri: string;
3459
- visibility: "public" | "unlist" | "private" | "direct";
3460
- spoiler_text: string;
3461
- media_attachments: ({
3462
- id: string;
3463
- type: "gifv";
3464
- url: string;
3465
- description: string | null;
3466
- blurhash: string | null;
3467
- preview_url: string | null;
3468
- remote_url: string | null;
3469
- meta?: {
3470
- width: number;
3471
- height: number;
3472
- size: string;
3473
- aspect: number;
3474
- original: {
3475
- width: number;
3476
- height: number;
3477
- duration?: number | null | undefined;
3478
- frame_rate?: string | null | undefined;
3479
- bitrate?: number | null | undefined;
3480
- };
3481
- length?: string | null | undefined;
3482
- duration?: number | null | undefined;
3483
- fps?: number | null | undefined;
3484
- small?: {
3485
- width: number;
3486
- height: number;
3487
- size: string;
3488
- aspect: number;
3489
- } | null | undefined;
3490
- } | null | undefined;
3491
- } | {
3492
- id: string;
3493
- type: "image";
3494
- url: string;
3495
- description: string | null;
3496
- blurhash: string | null;
3497
- preview_url: string | null;
3498
- remote_url: string | null;
3499
- meta?: {
3500
- original: {
3501
- width: number;
3502
- height: number;
3503
- size: string;
3504
- aspect: number;
3505
- };
3506
- small?: {
3507
- width: number;
3508
- height: number;
3509
- size: string;
3510
- aspect: number;
3511
- } | null | undefined;
3512
- focus?: {
3513
- x: number;
3514
- y: number;
3515
- } | null | undefined;
3516
- } | null | undefined;
3517
- } | {
3518
- id: string;
3519
- type: "video";
3520
- url: string;
3521
- description: string | null;
3522
- blurhash: string | null;
3523
- preview_url: string | null;
3524
- remote_url: string | null;
3525
- meta?: {
3526
- width: number;
3527
- height: number;
3528
- size: string;
3529
- aspect: number;
3530
- original: {
3531
- width: number;
3532
- height: number;
3533
- duration?: number | null | undefined;
3534
- frame_rate?: string | null | undefined;
3535
- bitrate?: number | null | undefined;
3536
- };
3537
- length?: string | null | undefined;
3538
- duration?: number | null | undefined;
3539
- fps?: number | null | undefined;
3540
- small?: {
3541
- width: number;
3542
- height: number;
3543
- size: string;
3544
- aspect: number;
3545
- } | null | undefined;
3546
- audio_encode?: string | null | undefined;
3547
- audio_bitrate?: string | null | undefined;
3548
- audio_channels?: string | null | undefined;
3549
- } | null | undefined;
3550
- } | {
3551
- id: string;
3552
- type: "audio";
3553
- url: string;
3554
- description: string | null;
3555
- blurhash: string | null;
3556
- preview_url: string | null;
3557
- remote_url: string | null;
3558
- meta: {
3559
- length: string;
3560
- duration: number;
3561
- original: {
3562
- duration: number;
3563
- bitrate?: number | null | undefined;
3564
- };
3565
- audio_encode?: string | null | undefined;
3566
- audio_bitrate?: string | null | undefined;
3567
- audio_channels?: string | null | undefined;
3568
- };
3569
- } | {
3570
- id: string;
3571
- type: "unknown";
3572
- url: string;
3573
- description: string | null;
3574
- blurhash: string | null;
3575
- preview_url: string | null;
3576
- remote_url: string | null;
3577
- })[];
3578
- mentions: {
3579
- id: string;
3580
- url: string;
3581
- username: string;
3582
- acct: string;
3583
- }[];
3584
- tags: {
3585
- url: string;
3586
- name: string;
3587
- }[];
3588
- reblogs_count: number;
3589
- favourites_count: number;
3590
- replies_count: number;
3591
- in_reply_to_id: string | null;
3592
- in_reply_to_account_id: string | null;
3593
- poll: {
3594
- id: string;
3595
- options: {
3596
- title: string;
3597
- votes_count: number | null;
3598
- }[];
3599
- emojis: {
3600
- url: string;
3601
- shortcode: string;
3602
- static_url: string;
3603
- visible_in_picker: boolean;
3604
- category: string | null;
3605
- }[];
3606
- expires_at: string | null;
3607
- votes_count: number;
3608
- expired: boolean;
3609
- multiple: boolean;
3610
- voters_count: number;
3611
- own_votes: number[];
3612
- voted?: boolean | undefined;
3613
- } | null;
3614
- card: {
3615
- type: "link" | "photo" | "video" | "rich";
3616
- url: string;
3617
- image: string | null;
3618
- description: string;
3619
- blurhash: string | null;
3620
- width: number;
3621
- height: number;
3622
- title: string;
3623
- author_name: string;
3624
- author_url: string;
3625
- provider_name: string;
3626
- provider_url: string;
3627
- html: string;
3628
- embed_url: string;
3629
- } | null;
3630
- text: string | null;
3631
- edited_at: string | null;
3632
- reblog: {
3633
- id: string;
3634
- url: string | null;
3635
- content: string;
3636
- sensitive: boolean;
3637
- language: string | null;
3638
- emojis: {
3639
- url: string;
3640
- shortcode: string;
3641
- static_url: string;
3642
- visible_in_picker: boolean;
3643
- category: string | null;
3644
- }[];
3645
- created_at: string;
3646
- account: {
3647
- id: string;
3648
- url: string;
3649
- note: string;
3650
- fields: {
3651
- value: string;
3652
- name: string;
3653
- verified_at: string | null;
3654
- }[];
3655
- username: string;
3656
- acct: string;
3657
- display_name: string;
3658
- avatar: string;
3659
- avatar_static: string;
3660
- header: string;
3661
- header_static: string;
3662
- locked: boolean;
3663
- source: {
3664
- note: string;
3665
- fields: {
3666
- value: string;
3667
- name: string;
3668
- verified_at: string | null;
3669
- }[];
3670
- privacy: "public" | "unlist" | "private" | "direct";
3671
- sensitive: boolean;
3672
- language: string;
3673
- follow_requests_count: number;
3674
- };
3675
- emojis: {
3676
- url: string;
3677
- shortcode: string;
3678
- static_url: string;
3679
- visible_in_picker: boolean;
3680
- category: string | null;
3681
- }[];
3682
- bot: boolean;
3683
- group: boolean;
3684
- discoverable: boolean | null;
3685
- created_at: string;
3686
- last_status_at: string | null;
3687
- statuses_count: number;
3688
- followers_count: number;
3689
- following_count: number;
3690
- noindex?: boolean | null | undefined;
3691
- suspended?: boolean | undefined;
3692
- limited?: boolean | undefined;
3693
- moved?: {
3694
- id: string;
3695
- url: string;
3696
- note: string;
3697
- fields: {
3698
- value: string;
3699
- name: string;
3700
- verified_at: string | null;
3701
- }[];
3702
- username: string;
3703
- acct: string;
3704
- display_name: string;
3705
- avatar: string;
3706
- avatar_static: string;
3707
- header: string;
3708
- header_static: string;
3709
- locked: boolean;
3710
- source: {
3711
- note: string;
3712
- fields: {
3713
- value: string;
3714
- name: string;
3715
- verified_at: string | null;
3716
- }[];
3717
- privacy: "public" | "unlist" | "private" | "direct";
3718
- sensitive: boolean;
3719
- language: string;
3720
- follow_requests_count: number;
3721
- };
3722
- emojis: {
3723
- url: string;
3724
- shortcode: string;
3725
- static_url: string;
3726
- visible_in_picker: boolean;
3727
- category: string | null;
3728
- }[];
3729
- bot: boolean;
3730
- group: boolean;
3731
- discoverable: boolean | null;
3732
- created_at: string;
3733
- last_status_at: string | null;
3734
- statuses_count: number;
3735
- followers_count: number;
3736
- following_count: number;
3737
- noindex?: boolean | null | undefined;
3738
- suspended?: boolean | undefined;
3739
- limited?: boolean | undefined;
3740
- } | null | undefined;
3741
- };
3742
- uri: string;
3743
- visibility: "public" | "unlist" | "private" | "direct";
3744
- spoiler_text: string;
3745
- media_attachments: ({
3746
- id: string;
3747
- type: "gifv";
3748
- url: string;
3749
- description: string | null;
3750
- blurhash: string | null;
3751
- preview_url: string | null;
3752
- remote_url: string | null;
3753
- meta?: {
3754
- width: number;
3755
- height: number;
3756
- size: string;
3757
- aspect: number;
3758
- original: {
3759
- width: number;
3760
- height: number;
3761
- duration?: number | null | undefined;
3762
- frame_rate?: string | null | undefined;
3763
- bitrate?: number | null | undefined;
3764
- };
3765
- length?: string | null | undefined;
3766
- duration?: number | null | undefined;
3767
- fps?: number | null | undefined;
3768
- small?: {
3769
- width: number;
3770
- height: number;
3771
- size: string;
3772
- aspect: number;
3773
- } | null | undefined;
3774
- } | null | undefined;
3775
- } | {
3776
- id: string;
3777
- type: "image";
3778
- url: string;
3779
- description: string | null;
3780
- blurhash: string | null;
3781
- preview_url: string | null;
3782
- remote_url: string | null;
3783
- meta?: {
3784
- original: {
3785
- width: number;
3786
- height: number;
3787
- size: string;
3788
- aspect: number;
3789
- };
3790
- small?: {
3791
- width: number;
3792
- height: number;
3793
- size: string;
3794
- aspect: number;
3795
- } | null | undefined;
3796
- focus?: {
3797
- x: number;
3798
- y: number;
3799
- } | null | undefined;
3800
- } | null | undefined;
3801
- } | {
3802
- id: string;
3803
- type: "video";
3804
- url: string;
3805
- description: string | null;
3806
- blurhash: string | null;
3807
- preview_url: string | null;
3808
- remote_url: string | null;
3809
- meta?: {
3810
- width: number;
3811
- height: number;
3812
- size: string;
3813
- aspect: number;
3814
- original: {
3815
- width: number;
3816
- height: number;
3817
- duration?: number | null | undefined;
3818
- frame_rate?: string | null | undefined;
3819
- bitrate?: number | null | undefined;
3820
- };
3821
- length?: string | null | undefined;
3822
- duration?: number | null | undefined;
3823
- fps?: number | null | undefined;
3824
- small?: {
3825
- width: number;
3826
- height: number;
3827
- size: string;
3828
- aspect: number;
3829
- } | null | undefined;
3830
- audio_encode?: string | null | undefined;
3831
- audio_bitrate?: string | null | undefined;
3832
- audio_channels?: string | null | undefined;
3833
- } | null | undefined;
3834
- } | {
3835
- id: string;
3836
- type: "audio";
3837
- url: string;
3838
- description: string | null;
3839
- blurhash: string | null;
3840
- preview_url: string | null;
3841
- remote_url: string | null;
3842
- meta: {
3843
- length: string;
3844
- duration: number;
3845
- original: {
3846
- duration: number;
3847
- bitrate?: number | null | undefined;
3848
- };
3849
- audio_encode?: string | null | undefined;
3850
- audio_bitrate?: string | null | undefined;
3851
- audio_channels?: string | null | undefined;
3852
- };
3853
- } | {
3854
- id: string;
3855
- type: "unknown";
3856
- url: string;
3857
- description: string | null;
3858
- blurhash: string | null;
3859
- preview_url: string | null;
3860
- remote_url: string | null;
3861
- })[];
3862
- mentions: {
3863
- id: string;
3864
- url: string;
3865
- username: string;
3866
- acct: string;
3867
- }[];
3868
- tags: {
3869
- url: string;
3870
- name: string;
3871
- }[];
3872
- reblogs_count: number;
3873
- favourites_count: number;
3874
- replies_count: number;
3875
- in_reply_to_id: string | null;
3876
- in_reply_to_account_id: string | null;
3877
- poll: {
3878
- id: string;
3879
- options: {
3880
- title: string;
3881
- votes_count: number | null;
3882
- }[];
3883
- emojis: {
3884
- url: string;
3885
- shortcode: string;
3886
- static_url: string;
3887
- visible_in_picker: boolean;
3888
- category: string | null;
3889
- }[];
3890
- expires_at: string | null;
3891
- votes_count: number;
3892
- expired: boolean;
3893
- multiple: boolean;
3894
- voters_count: number;
3895
- own_votes: number[];
3896
- voted?: boolean | undefined;
3897
- } | null;
3898
- card: {
3899
- type: "link" | "photo" | "video" | "rich";
3900
- url: string;
3901
- image: string | null;
3902
- description: string;
3903
- blurhash: string | null;
3904
- width: number;
3905
- height: number;
3906
- title: string;
3907
- author_name: string;
3908
- author_url: string;
3909
- provider_name: string;
3910
- provider_url: string;
3911
- html: string;
3912
- embed_url: string;
3913
- } | null;
3914
- text: string | null;
3915
- edited_at: string | null;
3916
- application?: {
3917
- name: string;
3918
- website: string | null;
3919
- } | undefined;
3920
- favourited?: boolean | undefined;
3921
- reblogged?: boolean | undefined;
3922
- muted?: boolean | undefined;
3923
- bookmarked?: boolean | undefined;
3924
- pinned?: boolean | undefined;
3925
- filtered?: {
3926
- filter: {
3927
- id: string;
3928
- title: string;
3929
- context: ("public" | "home" | "notifications" | "thread" | "account")[];
3930
- expires_at: string | null;
3931
- filter_action: "warn" | "hide";
3932
- keywords: {
3933
- id: string;
3934
- keyword: string;
3935
- whole_word: boolean;
3936
- }[];
3937
- statuses: {
3938
- id: string;
3939
- status_id: string;
3940
- }[];
3941
- };
3942
- keyword_matches: string[] | null;
3943
- status_matches: string[] | null;
3944
- } | undefined;
3945
- } | null;
3946
- application?: {
3947
- name: string;
3948
- website: string | null;
3949
- } | undefined;
3950
- favourited?: boolean | undefined;
3951
- reblogged?: boolean | undefined;
3952
- muted?: boolean | undefined;
3953
- bookmarked?: boolean | undefined;
3954
- pinned?: boolean | undefined;
3955
- filtered?: {
3956
- filter: {
3957
- id: string;
3958
- title: string;
3959
- context: ("public" | "home" | "notifications" | "thread" | "account")[];
3960
- expires_at: string | null;
3961
- filter_action: "warn" | "hide";
3962
- keywords: {
3963
- id: string;
3964
- keyword: string;
3965
- whole_word: boolean;
3966
- }[];
3967
- statuses: {
3968
- id: string;
3969
- status_id: string;
3970
- }[];
3971
- };
3972
- keyword_matches: string[] | null;
3973
- status_matches: string[] | null;
3974
- } | undefined;
3975
- }, {
3976
- id: string;
3977
- url: string | null;
3978
- content: string;
3979
- sensitive: boolean;
3980
- language: string | null;
3981
- emojis: {
3982
- url: string;
3983
- shortcode: string;
3984
- static_url: string;
3985
- visible_in_picker: boolean;
3986
- category: string | null;
3987
- }[];
3988
- created_at: string;
3989
- account: {
3990
- id: string;
3991
- url: string;
3992
- note: string;
3993
- fields: {
3994
- value: string;
3995
- name: string;
3996
- verified_at: string | null;
3997
- }[];
3998
- username: string;
3999
- acct: string;
4000
- display_name: string;
4001
- avatar: string;
4002
- avatar_static: string;
4003
- header: string;
4004
- header_static: string;
4005
- locked: boolean;
4006
- source: {
4007
- note: string;
4008
- fields: {
4009
- value: string;
4010
- name: string;
4011
- verified_at: string | null;
4012
- }[];
4013
- privacy: "public" | "unlist" | "private" | "direct";
4014
- sensitive: boolean;
4015
- language: string;
4016
- follow_requests_count: number;
4017
- };
4018
- emojis: {
4019
- url: string;
4020
- shortcode: string;
4021
- static_url: string;
4022
- visible_in_picker: boolean;
4023
- category: string | null;
4024
- }[];
4025
- bot: boolean;
4026
- group: boolean;
4027
- discoverable: boolean | null;
4028
- created_at: string;
4029
- last_status_at: string | null;
4030
- statuses_count: number;
4031
- followers_count: number;
4032
- following_count: number;
4033
- noindex?: boolean | null | undefined;
4034
- suspended?: boolean | undefined;
4035
- limited?: boolean | undefined;
4036
- moved?: {
4037
- id: string;
4038
- url: string;
4039
- note: string;
4040
- fields: {
4041
- value: string;
4042
- name: string;
4043
- verified_at: string | null;
4044
- }[];
4045
- username: string;
4046
- acct: string;
4047
- display_name: string;
4048
- avatar: string;
4049
- avatar_static: string;
4050
- header: string;
4051
- header_static: string;
4052
- locked: boolean;
4053
- source: {
4054
- note: string;
4055
- fields: {
4056
- value: string;
4057
- name: string;
4058
- verified_at: string | null;
4059
- }[];
4060
- privacy: "public" | "unlist" | "private" | "direct";
4061
- sensitive: boolean;
4062
- language: string;
4063
- follow_requests_count: number;
4064
- };
4065
- emojis: {
4066
- url: string;
4067
- shortcode: string;
4068
- static_url: string;
4069
- visible_in_picker: boolean;
4070
- category: string | null;
4071
- }[];
4072
- bot: boolean;
4073
- group: boolean;
4074
- discoverable: boolean | null;
4075
- created_at: string;
4076
- last_status_at: string | null;
4077
- statuses_count: number;
4078
- followers_count: number;
4079
- following_count: number;
4080
- noindex?: boolean | null | undefined;
4081
- suspended?: boolean | undefined;
4082
- limited?: boolean | undefined;
4083
- } | null | undefined;
4084
- };
4085
- uri: string;
4086
- visibility: "public" | "unlist" | "private" | "direct";
4087
- spoiler_text: string;
4088
- media_attachments: ({
4089
- id: string;
4090
- type: "gifv";
4091
- url: string;
4092
- description: string | null;
4093
- blurhash: string | null;
4094
- preview_url: string | null;
4095
- remote_url: string | null;
4096
- meta?: {
4097
- width: number;
4098
- height: number;
4099
- size: string;
4100
- aspect: number;
4101
- original: {
4102
- width: number;
4103
- height: number;
4104
- duration?: number | null | undefined;
4105
- frame_rate?: string | null | undefined;
4106
- bitrate?: number | null | undefined;
4107
- };
4108
- length?: string | null | undefined;
4109
- duration?: number | null | undefined;
4110
- fps?: number | null | undefined;
4111
- small?: {
4112
- width: number;
4113
- height: number;
4114
- size: string;
4115
- aspect: number;
4116
- } | null | undefined;
4117
- } | null | undefined;
4118
- } | {
4119
- id: string;
4120
- type: "image";
4121
- url: string;
4122
- description: string | null;
4123
- blurhash: string | null;
4124
- preview_url: string | null;
4125
- remote_url: string | null;
4126
- meta?: {
4127
- original: {
4128
- width: number;
4129
- height: number;
4130
- size: string;
4131
- aspect: number;
4132
- };
4133
- small?: {
4134
- width: number;
4135
- height: number;
4136
- size: string;
4137
- aspect: number;
4138
- } | null | undefined;
4139
- focus?: {
4140
- x: number;
4141
- y: number;
4142
- } | null | undefined;
4143
- } | null | undefined;
4144
- } | {
4145
- id: string;
4146
- type: "video";
4147
- url: string;
4148
- description: string | null;
4149
- blurhash: string | null;
4150
- preview_url: string | null;
4151
- remote_url: string | null;
4152
- meta?: {
4153
- width: number;
4154
- height: number;
4155
- size: string;
4156
- aspect: number;
4157
- original: {
4158
- width: number;
4159
- height: number;
4160
- duration?: number | null | undefined;
4161
- frame_rate?: string | null | undefined;
4162
- bitrate?: number | null | undefined;
4163
- };
4164
- length?: string | null | undefined;
4165
- duration?: number | null | undefined;
4166
- fps?: number | null | undefined;
4167
- small?: {
4168
- width: number;
4169
- height: number;
4170
- size: string;
4171
- aspect: number;
4172
- } | null | undefined;
4173
- audio_encode?: string | null | undefined;
4174
- audio_bitrate?: string | null | undefined;
4175
- audio_channels?: string | null | undefined;
4176
- } | null | undefined;
4177
- } | {
4178
- id: string;
4179
- type: "audio";
4180
- url: string;
4181
- description: string | null;
4182
- blurhash: string | null;
4183
- preview_url: string | null;
4184
- remote_url: string | null;
4185
- meta: {
4186
- length: string;
4187
- duration: number;
4188
- original: {
4189
- duration: number;
4190
- bitrate?: number | null | undefined;
4191
- };
4192
- audio_encode?: string | null | undefined;
4193
- audio_bitrate?: string | null | undefined;
4194
- audio_channels?: string | null | undefined;
4195
- };
4196
- } | {
4197
- id: string;
4198
- type: "unknown";
4199
- url: string;
4200
- description: string | null;
4201
- blurhash: string | null;
4202
- preview_url: string | null;
4203
- remote_url: string | null;
4204
- })[];
4205
- mentions: {
4206
- id: string;
4207
- url: string;
4208
- username: string;
4209
- acct: string;
4210
- }[];
4211
- tags: {
4212
- url: string;
4213
- name: string;
4214
- }[];
4215
- reblogs_count: number;
4216
- favourites_count: number;
4217
- replies_count: number;
4218
- in_reply_to_id: string | null;
4219
- in_reply_to_account_id: string | null;
4220
- poll: {
4221
- id: string;
4222
- options: {
4223
- title: string;
4224
- votes_count: number | null;
4225
- }[];
4226
- emojis: {
4227
- url: string;
4228
- shortcode: string;
4229
- static_url: string;
4230
- visible_in_picker: boolean;
4231
- category: string | null;
4232
- }[];
4233
- expires_at: string | null;
4234
- votes_count: number;
4235
- expired: boolean;
4236
- multiple: boolean;
4237
- voters_count: number;
4238
- own_votes: number[];
4239
- voted?: boolean | undefined;
4240
- } | null;
4241
- card: {
4242
- type: "link" | "photo" | "video" | "rich";
4243
- url: string;
4244
- image: string | null;
4245
- description: string;
4246
- blurhash: string | null;
4247
- width: number;
4248
- height: number;
4249
- title: string;
4250
- author_name: string;
4251
- author_url: string;
4252
- provider_name: string;
4253
- provider_url: string;
4254
- html: string;
4255
- embed_url: string;
4256
- } | null;
4257
- text: string | null;
4258
- edited_at: string | null;
4259
- reblog: {
4260
- id: string;
4261
- url: string | null;
4262
- content: string;
4263
- sensitive: boolean;
4264
- language: string | null;
4265
- emojis: {
4266
- url: string;
4267
- shortcode: string;
4268
- static_url: string;
4269
- visible_in_picker: boolean;
4270
- category: string | null;
4271
- }[];
4272
- created_at: string;
4273
- account: {
4274
- id: string;
4275
- url: string;
4276
- note: string;
4277
- fields: {
4278
- value: string;
4279
- name: string;
4280
- verified_at: string | null;
4281
- }[];
4282
- username: string;
4283
- acct: string;
4284
- display_name: string;
4285
- avatar: string;
4286
- avatar_static: string;
4287
- header: string;
4288
- header_static: string;
4289
- locked: boolean;
4290
- source: {
4291
- note: string;
4292
- fields: {
4293
- value: string;
4294
- name: string;
4295
- verified_at: string | null;
4296
- }[];
4297
- privacy: "public" | "unlist" | "private" | "direct";
4298
- sensitive: boolean;
4299
- language: string;
4300
- follow_requests_count: number;
4301
- };
4302
- emojis: {
4303
- url: string;
4304
- shortcode: string;
4305
- static_url: string;
4306
- visible_in_picker: boolean;
4307
- category: string | null;
4308
- }[];
4309
- bot: boolean;
4310
- group: boolean;
4311
- discoverable: boolean | null;
4312
- created_at: string;
4313
- last_status_at: string | null;
4314
- statuses_count: number;
4315
- followers_count: number;
4316
- following_count: number;
4317
- noindex?: boolean | null | undefined;
4318
- suspended?: boolean | undefined;
4319
- limited?: boolean | undefined;
4320
- moved?: {
4321
- id: string;
4322
- url: string;
4323
- note: string;
4324
- fields: {
4325
- value: string;
4326
- name: string;
4327
- verified_at: string | null;
4328
- }[];
4329
- username: string;
4330
- acct: string;
4331
- display_name: string;
4332
- avatar: string;
4333
- avatar_static: string;
4334
- header: string;
4335
- header_static: string;
4336
- locked: boolean;
4337
- source: {
4338
- note: string;
4339
- fields: {
4340
- value: string;
4341
- name: string;
4342
- verified_at: string | null;
4343
- }[];
4344
- privacy: "public" | "unlist" | "private" | "direct";
4345
- sensitive: boolean;
4346
- language: string;
4347
- follow_requests_count: number;
4348
- };
4349
- emojis: {
4350
- url: string;
4351
- shortcode: string;
4352
- static_url: string;
4353
- visible_in_picker: boolean;
4354
- category: string | null;
4355
- }[];
4356
- bot: boolean;
4357
- group: boolean;
4358
- discoverable: boolean | null;
4359
- created_at: string;
4360
- last_status_at: string | null;
4361
- statuses_count: number;
4362
- followers_count: number;
4363
- following_count: number;
4364
- noindex?: boolean | null | undefined;
4365
- suspended?: boolean | undefined;
4366
- limited?: boolean | undefined;
4367
- } | null | undefined;
4368
- };
4369
- uri: string;
4370
- visibility: "public" | "unlist" | "private" | "direct";
4371
- spoiler_text: string;
4372
- media_attachments: ({
4373
- id: string;
4374
- type: "gifv";
4375
- url: string;
4376
- description: string | null;
4377
- blurhash: string | null;
4378
- preview_url: string | null;
4379
- remote_url: string | null;
4380
- meta?: {
4381
- width: number;
4382
- height: number;
4383
- size: string;
4384
- aspect: number;
4385
- original: {
4386
- width: number;
4387
- height: number;
4388
- duration?: number | null | undefined;
4389
- frame_rate?: string | null | undefined;
4390
- bitrate?: number | null | undefined;
4391
- };
4392
- length?: string | null | undefined;
4393
- duration?: number | null | undefined;
4394
- fps?: number | null | undefined;
4395
- small?: {
4396
- width: number;
4397
- height: number;
4398
- size: string;
4399
- aspect: number;
4400
- } | null | undefined;
4401
- } | null | undefined;
4402
- } | {
4403
- id: string;
4404
- type: "image";
4405
- url: string;
4406
- description: string | null;
4407
- blurhash: string | null;
4408
- preview_url: string | null;
4409
- remote_url: string | null;
4410
- meta?: {
4411
- original: {
4412
- width: number;
4413
- height: number;
4414
- size: string;
4415
- aspect: number;
4416
- };
4417
- small?: {
4418
- width: number;
4419
- height: number;
4420
- size: string;
4421
- aspect: number;
4422
- } | null | undefined;
4423
- focus?: {
4424
- x: number;
4425
- y: number;
4426
- } | null | undefined;
4427
- } | null | undefined;
4428
- } | {
4429
- id: string;
4430
- type: "video";
4431
- url: string;
4432
- description: string | null;
4433
- blurhash: string | null;
4434
- preview_url: string | null;
4435
- remote_url: string | null;
4436
- meta?: {
4437
- width: number;
4438
- height: number;
4439
- size: string;
4440
- aspect: number;
4441
- original: {
4442
- width: number;
4443
- height: number;
4444
- duration?: number | null | undefined;
4445
- frame_rate?: string | null | undefined;
4446
- bitrate?: number | null | undefined;
4447
- };
4448
- length?: string | null | undefined;
4449
- duration?: number | null | undefined;
4450
- fps?: number | null | undefined;
4451
- small?: {
4452
- width: number;
4453
- height: number;
4454
- size: string;
4455
- aspect: number;
4456
- } | null | undefined;
4457
- audio_encode?: string | null | undefined;
4458
- audio_bitrate?: string | null | undefined;
4459
- audio_channels?: string | null | undefined;
4460
- } | null | undefined;
4461
- } | {
4462
- id: string;
4463
- type: "audio";
4464
- url: string;
4465
- description: string | null;
4466
- blurhash: string | null;
4467
- preview_url: string | null;
4468
- remote_url: string | null;
4469
- meta: {
4470
- length: string;
4471
- duration: number;
4472
- original: {
4473
- duration: number;
4474
- bitrate?: number | null | undefined;
4475
- };
4476
- audio_encode?: string | null | undefined;
4477
- audio_bitrate?: string | null | undefined;
4478
- audio_channels?: string | null | undefined;
4479
- };
4480
- } | {
4481
- id: string;
4482
- type: "unknown";
4483
- url: string;
4484
- description: string | null;
4485
- blurhash: string | null;
4486
- preview_url: string | null;
4487
- remote_url: string | null;
4488
- })[];
4489
- mentions: {
4490
- id: string;
4491
- url: string;
4492
- username: string;
4493
- acct: string;
4494
- }[];
4495
- tags: {
4496
- url: string;
4497
- name: string;
4498
- }[];
4499
- reblogs_count: number;
4500
- favourites_count: number;
4501
- replies_count: number;
4502
- in_reply_to_id: string | null;
4503
- in_reply_to_account_id: string | null;
4504
- poll: {
4505
- id: string;
4506
- options: {
4507
- title: string;
4508
- votes_count: number | null;
4509
- }[];
4510
- emojis: {
4511
- url: string;
4512
- shortcode: string;
4513
- static_url: string;
4514
- visible_in_picker: boolean;
4515
- category: string | null;
4516
- }[];
4517
- expires_at: string | null;
4518
- votes_count: number;
4519
- expired: boolean;
4520
- multiple: boolean;
4521
- voters_count: number;
4522
- own_votes: number[];
4523
- voted?: boolean | undefined;
4524
- } | null;
4525
- card: {
4526
- type: "link" | "photo" | "video" | "rich";
4527
- url: string;
4528
- image: string | null;
4529
- description: string;
4530
- blurhash: string | null;
4531
- width: number;
4532
- height: number;
4533
- title: string;
4534
- author_name: string;
4535
- author_url: string;
4536
- provider_name: string;
4537
- provider_url: string;
4538
- html: string;
4539
- embed_url: string;
4540
- } | null;
4541
- text: string | null;
4542
- edited_at: string | null;
4543
- application?: {
4544
- name: string;
4545
- website: string | null;
4546
- } | undefined;
4547
- favourited?: boolean | undefined;
4548
- reblogged?: boolean | undefined;
4549
- muted?: boolean | undefined;
4550
- bookmarked?: boolean | undefined;
4551
- pinned?: boolean | undefined;
4552
- filtered?: {
4553
- filter: {
4554
- id: string;
4555
- title: string;
4556
- context: ("public" | "home" | "notifications" | "thread" | "account")[];
4557
- expires_at: string | null;
4558
- filter_action: "warn" | "hide";
4559
- keywords: {
4560
- id: string;
4561
- keyword: string;
4562
- whole_word: boolean;
4563
- }[];
4564
- statuses: {
4565
- id: string;
4566
- status_id: string;
4567
- }[];
4568
- };
4569
- keyword_matches: string[] | null;
4570
- status_matches: string[] | null;
4571
- } | undefined;
4572
- } | null;
4573
- application?: {
4574
- name: string;
4575
- website: string | null;
4576
- } | undefined;
4577
- favourited?: boolean | undefined;
4578
- reblogged?: boolean | undefined;
4579
- muted?: boolean | undefined;
4580
- bookmarked?: boolean | undefined;
4581
- pinned?: boolean | undefined;
4582
- filtered?: {
4583
- filter: {
4584
- id: string;
4585
- title: string;
4586
- context: ("public" | "home" | "notifications" | "thread" | "account")[];
4587
- expires_at: string | null;
4588
- filter_action: "warn" | "hide";
4589
- keywords: {
4590
- id: string;
4591
- keyword: string;
4592
- whole_word: boolean;
4593
- }[];
4594
- statuses: {
4595
- id: string;
4596
- status_id: string;
4597
- }[];
4598
- };
4599
- keyword_matches: string[] | null;
4600
- status_matches: string[] | null;
4601
- } | undefined;
4602
- }>;
681
+ }, z.core.$strip>>;
682
+ }, z.core.$strip>;
683
+ keyword_matches: z.ZodNullable<z.ZodArray<z.ZodString>>;
684
+ status_matches: z.ZodNullable<z.ZodArray<z.ZodString>>;
685
+ }, z.core.$strip>>;
686
+ }, z.core.$strip>>;
687
+ }, z.core.$strip>;
4603
688
  export type Status = z.infer<typeof Status>;