@llun/activities.schema 0.2.20 → 0.2.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/mastodon/{accountField.js → account/field.js} +2 -2
- package/dist/cjs/mastodon/account/source.js +23 -0
- package/dist/cjs/mastodon/account.js +7 -2
- package/dist/cjs/mastodon/index.js +2 -1
- package/dist/cjs/mastodon/mediaAttachment/audio.js +4 -4
- package/dist/cjs/mastodon/mediaAttachment/base.js +8 -4
- package/dist/cjs/mastodon/mediaAttachment/gifv.js +10 -8
- package/dist/cjs/mastodon/mediaAttachment/image.js +4 -2
- package/dist/cjs/mastodon/mediaAttachment/video.js +13 -11
- package/dist/cjs/mastodon/status/base.js +1 -1
- package/dist/esm/mastodon/{accountField.js → account/field.js} +1 -1
- package/dist/esm/mastodon/account/source.js +20 -0
- package/dist/esm/mastodon/account.js +7 -2
- package/dist/esm/mastodon/index.js +2 -1
- package/dist/esm/mastodon/mediaAttachment/audio.js +4 -4
- package/dist/esm/mastodon/mediaAttachment/base.js +8 -4
- package/dist/esm/mastodon/mediaAttachment/gifv.js +10 -8
- package/dist/esm/mastodon/mediaAttachment/image.js +4 -2
- package/dist/esm/mastodon/mediaAttachment/video.js +13 -11
- package/dist/esm/mastodon/status/base.js +1 -1
- package/dist/types/mastodon/{accountField.d.ts → account/field.d.ts} +2 -2
- package/dist/types/mastodon/account/source.d.ts +44 -0
- package/dist/types/mastodon/account.d.ts +200 -36
- package/dist/types/mastodon/filter/index.d.ts +2 -2
- package/dist/types/mastodon/filterResult.d.ts +4 -4
- package/dist/types/mastodon/index.d.ts +2 -1
- package/dist/types/mastodon/mediaAttachment/audio.d.ts +28 -28
- package/dist/types/mastodon/mediaAttachment/base.d.ts +6 -6
- package/dist/types/mastodon/mediaAttachment/gifv.d.ts +48 -48
- package/dist/types/mastodon/mediaAttachment/image.d.ts +12 -12
- package/dist/types/mastodon/mediaAttachment/index.d.ts +157 -157
- package/dist/types/mastodon/mediaAttachment/unknown.d.ts +6 -6
- package/dist/types/mastodon/mediaAttachment/video.d.ts +63 -63
- package/dist/types/mastodon/status/base.d.ts +515 -299
- package/dist/types/mastodon/status/index.d.ts +1184 -700
- package/package.json +1 -1
- package/src/mastodon/{accountField.ts → account/field.ts} +2 -2
- package/src/mastodon/account/source.ts +24 -0
- package/src/mastodon/account.ts +9 -2
- package/src/mastodon/index.ts +2 -1
- package/src/mastodon/mediaAttachment/audio.ts +4 -4
- package/src/mastodon/mediaAttachment/base.ts +11 -7
- package/src/mastodon/mediaAttachment/gifv.ts +28 -26
- package/src/mastodon/mediaAttachment/image.ts +20 -18
- package/src/mastodon/mediaAttachment/video.ts +32 -30
- package/src/mastodon/status/base.ts +1 -1
- /package/dist/cjs/mastodon/{status/visibility.js → visibility.js} +0 -0
- /package/dist/esm/mastodon/{status/visibility.js → visibility.js} +0 -0
- /package/dist/types/mastodon/{status/visibility.d.ts → visibility.d.ts} +0 -0
- /package/src/mastodon/{status/visibility.ts → visibility.ts} +0 -0
|
@@ -7,6 +7,7 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
7
7
|
username: z.ZodString;
|
|
8
8
|
acct: z.ZodString;
|
|
9
9
|
url: z.ZodString;
|
|
10
|
+
uri: z.ZodString;
|
|
10
11
|
display_name: z.ZodString;
|
|
11
12
|
note: z.ZodString;
|
|
12
13
|
avatar: z.ZodString;
|
|
@@ -14,6 +15,48 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
14
15
|
header: z.ZodString;
|
|
15
16
|
header_static: z.ZodString;
|
|
16
17
|
locked: z.ZodBoolean;
|
|
18
|
+
source: z.ZodObject<{
|
|
19
|
+
note: z.ZodString;
|
|
20
|
+
fields: z.ZodArray<z.ZodObject<{
|
|
21
|
+
name: z.ZodString;
|
|
22
|
+
value: z.ZodString;
|
|
23
|
+
verified_at: z.ZodNullable<z.ZodString>;
|
|
24
|
+
}, "strip", z.ZodTypeAny, {
|
|
25
|
+
value: string;
|
|
26
|
+
name: string;
|
|
27
|
+
verified_at: string | null;
|
|
28
|
+
}, {
|
|
29
|
+
value: string;
|
|
30
|
+
name: string;
|
|
31
|
+
verified_at: string | null;
|
|
32
|
+
}>, "many">;
|
|
33
|
+
privacy: z.ZodEnum<["public", "unlist", "private", "direct"]>;
|
|
34
|
+
sensitive: z.ZodBoolean;
|
|
35
|
+
language: z.ZodString;
|
|
36
|
+
follow_requests_count: z.ZodNumber;
|
|
37
|
+
}, "strip", z.ZodTypeAny, {
|
|
38
|
+
note: string;
|
|
39
|
+
fields: {
|
|
40
|
+
value: string;
|
|
41
|
+
name: string;
|
|
42
|
+
verified_at: string | null;
|
|
43
|
+
}[];
|
|
44
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
45
|
+
sensitive: boolean;
|
|
46
|
+
language: string;
|
|
47
|
+
follow_requests_count: number;
|
|
48
|
+
}, {
|
|
49
|
+
note: string;
|
|
50
|
+
fields: {
|
|
51
|
+
value: string;
|
|
52
|
+
name: string;
|
|
53
|
+
verified_at: string | null;
|
|
54
|
+
}[];
|
|
55
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
56
|
+
sensitive: boolean;
|
|
57
|
+
language: string;
|
|
58
|
+
follow_requests_count: number;
|
|
59
|
+
}>;
|
|
17
60
|
fields: z.ZodArray<z.ZodObject<{
|
|
18
61
|
name: z.ZodString;
|
|
19
62
|
value: z.ZodString;
|
|
@@ -63,6 +106,7 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
63
106
|
username: z.ZodString;
|
|
64
107
|
acct: z.ZodString;
|
|
65
108
|
url: z.ZodString;
|
|
109
|
+
uri: z.ZodString;
|
|
66
110
|
display_name: z.ZodString;
|
|
67
111
|
note: z.ZodString;
|
|
68
112
|
avatar: z.ZodString;
|
|
@@ -70,6 +114,48 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
70
114
|
header: z.ZodString;
|
|
71
115
|
header_static: z.ZodString;
|
|
72
116
|
locked: z.ZodBoolean;
|
|
117
|
+
source: z.ZodObject<{
|
|
118
|
+
note: z.ZodString;
|
|
119
|
+
fields: z.ZodArray<z.ZodObject<{
|
|
120
|
+
name: z.ZodString;
|
|
121
|
+
value: z.ZodString;
|
|
122
|
+
verified_at: z.ZodNullable<z.ZodString>;
|
|
123
|
+
}, "strip", z.ZodTypeAny, {
|
|
124
|
+
value: string;
|
|
125
|
+
name: string;
|
|
126
|
+
verified_at: string | null;
|
|
127
|
+
}, {
|
|
128
|
+
value: string;
|
|
129
|
+
name: string;
|
|
130
|
+
verified_at: string | null;
|
|
131
|
+
}>, "many">;
|
|
132
|
+
privacy: z.ZodEnum<["public", "unlist", "private", "direct"]>;
|
|
133
|
+
sensitive: z.ZodBoolean;
|
|
134
|
+
language: z.ZodString;
|
|
135
|
+
follow_requests_count: z.ZodNumber;
|
|
136
|
+
}, "strip", z.ZodTypeAny, {
|
|
137
|
+
note: string;
|
|
138
|
+
fields: {
|
|
139
|
+
value: string;
|
|
140
|
+
name: string;
|
|
141
|
+
verified_at: string | null;
|
|
142
|
+
}[];
|
|
143
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
144
|
+
sensitive: boolean;
|
|
145
|
+
language: string;
|
|
146
|
+
follow_requests_count: number;
|
|
147
|
+
}, {
|
|
148
|
+
note: string;
|
|
149
|
+
fields: {
|
|
150
|
+
value: string;
|
|
151
|
+
name: string;
|
|
152
|
+
verified_at: string | null;
|
|
153
|
+
}[];
|
|
154
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
155
|
+
sensitive: boolean;
|
|
156
|
+
language: string;
|
|
157
|
+
follow_requests_count: number;
|
|
158
|
+
}>;
|
|
73
159
|
fields: z.ZodArray<z.ZodObject<{
|
|
74
160
|
name: z.ZodString;
|
|
75
161
|
value: z.ZodString;
|
|
@@ -116,20 +202,33 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
116
202
|
}, "strip", z.ZodTypeAny, {
|
|
117
203
|
id: string;
|
|
118
204
|
url: string;
|
|
205
|
+
note: string;
|
|
206
|
+
fields: {
|
|
207
|
+
value: string;
|
|
208
|
+
name: string;
|
|
209
|
+
verified_at: string | null;
|
|
210
|
+
}[];
|
|
119
211
|
username: string;
|
|
120
212
|
acct: string;
|
|
213
|
+
uri: string;
|
|
121
214
|
display_name: string;
|
|
122
|
-
note: string;
|
|
123
215
|
avatar: string;
|
|
124
216
|
avatar_static: string;
|
|
125
217
|
header: string;
|
|
126
218
|
header_static: string;
|
|
127
219
|
locked: boolean;
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
220
|
+
source: {
|
|
221
|
+
note: string;
|
|
222
|
+
fields: {
|
|
223
|
+
value: string;
|
|
224
|
+
name: string;
|
|
225
|
+
verified_at: string | null;
|
|
226
|
+
}[];
|
|
227
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
228
|
+
sensitive: boolean;
|
|
229
|
+
language: string;
|
|
230
|
+
follow_requests_count: number;
|
|
231
|
+
};
|
|
133
232
|
emojis: {
|
|
134
233
|
url: string;
|
|
135
234
|
shortcode: string;
|
|
@@ -151,20 +250,33 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
151
250
|
}, {
|
|
152
251
|
id: string;
|
|
153
252
|
url: string;
|
|
253
|
+
note: string;
|
|
254
|
+
fields: {
|
|
255
|
+
value: string;
|
|
256
|
+
name: string;
|
|
257
|
+
verified_at: string | null;
|
|
258
|
+
}[];
|
|
154
259
|
username: string;
|
|
155
260
|
acct: string;
|
|
261
|
+
uri: string;
|
|
156
262
|
display_name: string;
|
|
157
|
-
note: string;
|
|
158
263
|
avatar: string;
|
|
159
264
|
avatar_static: string;
|
|
160
265
|
header: string;
|
|
161
266
|
header_static: string;
|
|
162
267
|
locked: boolean;
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
268
|
+
source: {
|
|
269
|
+
note: string;
|
|
270
|
+
fields: {
|
|
271
|
+
value: string;
|
|
272
|
+
name: string;
|
|
273
|
+
verified_at: string | null;
|
|
274
|
+
}[];
|
|
275
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
276
|
+
sensitive: boolean;
|
|
277
|
+
language: string;
|
|
278
|
+
follow_requests_count: number;
|
|
279
|
+
};
|
|
168
280
|
emojis: {
|
|
169
281
|
url: string;
|
|
170
282
|
shortcode: string;
|
|
@@ -187,20 +299,33 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
187
299
|
}>, "strip", z.ZodTypeAny, {
|
|
188
300
|
id: string;
|
|
189
301
|
url: string;
|
|
302
|
+
note: string;
|
|
303
|
+
fields: {
|
|
304
|
+
value: string;
|
|
305
|
+
name: string;
|
|
306
|
+
verified_at: string | null;
|
|
307
|
+
}[];
|
|
190
308
|
username: string;
|
|
191
309
|
acct: string;
|
|
310
|
+
uri: string;
|
|
192
311
|
display_name: string;
|
|
193
|
-
note: string;
|
|
194
312
|
avatar: string;
|
|
195
313
|
avatar_static: string;
|
|
196
314
|
header: string;
|
|
197
315
|
header_static: string;
|
|
198
316
|
locked: boolean;
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
317
|
+
source: {
|
|
318
|
+
note: string;
|
|
319
|
+
fields: {
|
|
320
|
+
value: string;
|
|
321
|
+
name: string;
|
|
322
|
+
verified_at: string | null;
|
|
323
|
+
}[];
|
|
324
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
325
|
+
sensitive: boolean;
|
|
326
|
+
language: string;
|
|
327
|
+
follow_requests_count: number;
|
|
328
|
+
};
|
|
204
329
|
emojis: {
|
|
205
330
|
url: string;
|
|
206
331
|
shortcode: string;
|
|
@@ -222,20 +347,33 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
222
347
|
moved?: {
|
|
223
348
|
id: string;
|
|
224
349
|
url: string;
|
|
350
|
+
note: string;
|
|
351
|
+
fields: {
|
|
352
|
+
value: string;
|
|
353
|
+
name: string;
|
|
354
|
+
verified_at: string | null;
|
|
355
|
+
}[];
|
|
225
356
|
username: string;
|
|
226
357
|
acct: string;
|
|
358
|
+
uri: string;
|
|
227
359
|
display_name: string;
|
|
228
|
-
note: string;
|
|
229
360
|
avatar: string;
|
|
230
361
|
avatar_static: string;
|
|
231
362
|
header: string;
|
|
232
363
|
header_static: string;
|
|
233
364
|
locked: boolean;
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
365
|
+
source: {
|
|
366
|
+
note: string;
|
|
367
|
+
fields: {
|
|
368
|
+
value: string;
|
|
369
|
+
name: string;
|
|
370
|
+
verified_at: string | null;
|
|
371
|
+
}[];
|
|
372
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
373
|
+
sensitive: boolean;
|
|
374
|
+
language: string;
|
|
375
|
+
follow_requests_count: number;
|
|
376
|
+
};
|
|
239
377
|
emojis: {
|
|
240
378
|
url: string;
|
|
241
379
|
shortcode: string;
|
|
@@ -258,20 +396,33 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
258
396
|
}, {
|
|
259
397
|
id: string;
|
|
260
398
|
url: string;
|
|
399
|
+
note: string;
|
|
400
|
+
fields: {
|
|
401
|
+
value: string;
|
|
402
|
+
name: string;
|
|
403
|
+
verified_at: string | null;
|
|
404
|
+
}[];
|
|
261
405
|
username: string;
|
|
262
406
|
acct: string;
|
|
407
|
+
uri: string;
|
|
263
408
|
display_name: string;
|
|
264
|
-
note: string;
|
|
265
409
|
avatar: string;
|
|
266
410
|
avatar_static: string;
|
|
267
411
|
header: string;
|
|
268
412
|
header_static: string;
|
|
269
413
|
locked: boolean;
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
414
|
+
source: {
|
|
415
|
+
note: string;
|
|
416
|
+
fields: {
|
|
417
|
+
value: string;
|
|
418
|
+
name: string;
|
|
419
|
+
verified_at: string | null;
|
|
420
|
+
}[];
|
|
421
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
422
|
+
sensitive: boolean;
|
|
423
|
+
language: string;
|
|
424
|
+
follow_requests_count: number;
|
|
425
|
+
};
|
|
275
426
|
emojis: {
|
|
276
427
|
url: string;
|
|
277
428
|
shortcode: string;
|
|
@@ -293,20 +444,33 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
293
444
|
moved?: {
|
|
294
445
|
id: string;
|
|
295
446
|
url: string;
|
|
447
|
+
note: string;
|
|
448
|
+
fields: {
|
|
449
|
+
value: string;
|
|
450
|
+
name: string;
|
|
451
|
+
verified_at: string | null;
|
|
452
|
+
}[];
|
|
296
453
|
username: string;
|
|
297
454
|
acct: string;
|
|
455
|
+
uri: string;
|
|
298
456
|
display_name: string;
|
|
299
|
-
note: string;
|
|
300
457
|
avatar: string;
|
|
301
458
|
avatar_static: string;
|
|
302
459
|
header: string;
|
|
303
460
|
header_static: string;
|
|
304
461
|
locked: boolean;
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
462
|
+
source: {
|
|
463
|
+
note: string;
|
|
464
|
+
fields: {
|
|
465
|
+
value: string;
|
|
466
|
+
name: string;
|
|
467
|
+
verified_at: string | null;
|
|
468
|
+
}[];
|
|
469
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
470
|
+
sensitive: boolean;
|
|
471
|
+
language: string;
|
|
472
|
+
follow_requests_count: number;
|
|
473
|
+
};
|
|
310
474
|
emojis: {
|
|
311
475
|
url: string;
|
|
312
476
|
shortcode: string;
|
|
@@ -334,13 +498,13 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
334
498
|
media_attachments: z.ZodArray<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
335
499
|
id: z.ZodString;
|
|
336
500
|
url: z.ZodString;
|
|
337
|
-
preview_url: z.ZodString
|
|
501
|
+
preview_url: z.ZodNullable<z.ZodString>;
|
|
338
502
|
remote_url: z.ZodNullable<z.ZodString>;
|
|
339
503
|
description: z.ZodNullable<z.ZodString>;
|
|
340
|
-
bluehash: z.ZodString
|
|
504
|
+
bluehash: z.ZodNullable<z.ZodString>;
|
|
341
505
|
}, {
|
|
342
506
|
type: z.ZodLiteral<"image">;
|
|
343
|
-
meta: z.ZodObject<{
|
|
507
|
+
meta: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
344
508
|
original: z.ZodObject<{
|
|
345
509
|
width: z.ZodNumber;
|
|
346
510
|
height: z.ZodNumber;
|
|
@@ -417,16 +581,16 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
417
581
|
x: number;
|
|
418
582
|
y: number;
|
|
419
583
|
} | null | undefined;
|
|
420
|
-
}
|
|
584
|
+
}>>>;
|
|
421
585
|
}>, "strip", z.ZodTypeAny, {
|
|
422
586
|
id: string;
|
|
423
587
|
type: "image";
|
|
424
588
|
description: string | null;
|
|
425
589
|
url: string;
|
|
426
|
-
preview_url: string;
|
|
590
|
+
preview_url: string | null;
|
|
427
591
|
remote_url: string | null;
|
|
428
|
-
bluehash: string;
|
|
429
|
-
meta
|
|
592
|
+
bluehash: string | null;
|
|
593
|
+
meta?: {
|
|
430
594
|
original: {
|
|
431
595
|
width: number;
|
|
432
596
|
height: number;
|
|
@@ -443,16 +607,16 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
443
607
|
x: number;
|
|
444
608
|
y: number;
|
|
445
609
|
} | null | undefined;
|
|
446
|
-
};
|
|
610
|
+
} | null | undefined;
|
|
447
611
|
}, {
|
|
448
612
|
id: string;
|
|
449
613
|
type: "image";
|
|
450
614
|
description: string | null;
|
|
451
615
|
url: string;
|
|
452
|
-
preview_url: string;
|
|
616
|
+
preview_url: string | null;
|
|
453
617
|
remote_url: string | null;
|
|
454
|
-
bluehash: string;
|
|
455
|
-
meta
|
|
618
|
+
bluehash: string | null;
|
|
619
|
+
meta?: {
|
|
456
620
|
original: {
|
|
457
621
|
width: number;
|
|
458
622
|
height: number;
|
|
@@ -469,20 +633,20 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
469
633
|
x: number;
|
|
470
634
|
y: number;
|
|
471
635
|
} | null | undefined;
|
|
472
|
-
};
|
|
636
|
+
} | null | undefined;
|
|
473
637
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
474
638
|
id: z.ZodString;
|
|
475
639
|
url: z.ZodString;
|
|
476
|
-
preview_url: z.ZodString
|
|
640
|
+
preview_url: z.ZodNullable<z.ZodString>;
|
|
477
641
|
remote_url: z.ZodNullable<z.ZodString>;
|
|
478
642
|
description: z.ZodNullable<z.ZodString>;
|
|
479
|
-
bluehash: z.ZodString
|
|
643
|
+
bluehash: z.ZodNullable<z.ZodString>;
|
|
480
644
|
}, {
|
|
481
645
|
type: z.ZodLiteral<"gifv">;
|
|
482
|
-
meta: z.ZodObject<{
|
|
483
|
-
length: z.ZodString
|
|
484
|
-
duration: z.ZodNumber
|
|
485
|
-
fps: z.ZodNumber
|
|
646
|
+
meta: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
647
|
+
length: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
648
|
+
duration: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
649
|
+
fps: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
486
650
|
size: z.ZodString;
|
|
487
651
|
width: z.ZodNumber;
|
|
488
652
|
height: z.ZodNumber;
|
|
@@ -490,21 +654,21 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
490
654
|
original: z.ZodObject<{
|
|
491
655
|
width: z.ZodNumber;
|
|
492
656
|
height: z.ZodNumber;
|
|
493
|
-
frame_rate: z.ZodString
|
|
494
|
-
duration: z.ZodNumber
|
|
495
|
-
bitrate: z.ZodNumber
|
|
657
|
+
frame_rate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
658
|
+
duration: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
659
|
+
bitrate: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
496
660
|
}, "strip", z.ZodTypeAny, {
|
|
497
661
|
width: number;
|
|
498
662
|
height: number;
|
|
499
|
-
duration
|
|
500
|
-
frame_rate
|
|
501
|
-
bitrate
|
|
663
|
+
duration?: number | null | undefined;
|
|
664
|
+
frame_rate?: string | null | undefined;
|
|
665
|
+
bitrate?: number | null | undefined;
|
|
502
666
|
}, {
|
|
503
667
|
width: number;
|
|
504
668
|
height: number;
|
|
505
|
-
duration
|
|
506
|
-
frame_rate
|
|
507
|
-
bitrate
|
|
669
|
+
duration?: number | null | undefined;
|
|
670
|
+
frame_rate?: string | null | undefined;
|
|
671
|
+
bitrate?: number | null | undefined;
|
|
508
672
|
}>;
|
|
509
673
|
small: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
510
674
|
width: z.ZodNumber;
|
|
@@ -523,20 +687,20 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
523
687
|
aspect: number;
|
|
524
688
|
}>>>;
|
|
525
689
|
}, "strip", z.ZodTypeAny, {
|
|
526
|
-
length: string;
|
|
527
690
|
width: number;
|
|
528
691
|
height: number;
|
|
529
|
-
duration: number;
|
|
530
|
-
fps: number;
|
|
531
692
|
size: string;
|
|
532
693
|
aspect: number;
|
|
533
694
|
original: {
|
|
534
695
|
width: number;
|
|
535
696
|
height: number;
|
|
536
|
-
duration
|
|
537
|
-
frame_rate
|
|
538
|
-
bitrate
|
|
697
|
+
duration?: number | null | undefined;
|
|
698
|
+
frame_rate?: string | null | undefined;
|
|
699
|
+
bitrate?: number | null | undefined;
|
|
539
700
|
};
|
|
701
|
+
length?: string | null | undefined;
|
|
702
|
+
duration?: number | null | undefined;
|
|
703
|
+
fps?: number | null | undefined;
|
|
540
704
|
small?: {
|
|
541
705
|
width: number;
|
|
542
706
|
height: number;
|
|
@@ -544,125 +708,125 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
544
708
|
aspect: number;
|
|
545
709
|
} | null | undefined;
|
|
546
710
|
}, {
|
|
547
|
-
length: string;
|
|
548
711
|
width: number;
|
|
549
712
|
height: number;
|
|
550
|
-
duration: number;
|
|
551
|
-
fps: number;
|
|
552
713
|
size: string;
|
|
553
714
|
aspect: number;
|
|
554
715
|
original: {
|
|
555
716
|
width: number;
|
|
556
717
|
height: number;
|
|
557
|
-
duration
|
|
558
|
-
frame_rate
|
|
559
|
-
bitrate
|
|
718
|
+
duration?: number | null | undefined;
|
|
719
|
+
frame_rate?: string | null | undefined;
|
|
720
|
+
bitrate?: number | null | undefined;
|
|
560
721
|
};
|
|
722
|
+
length?: string | null | undefined;
|
|
723
|
+
duration?: number | null | undefined;
|
|
724
|
+
fps?: number | null | undefined;
|
|
561
725
|
small?: {
|
|
562
726
|
width: number;
|
|
563
727
|
height: number;
|
|
564
728
|
size: string;
|
|
565
729
|
aspect: number;
|
|
566
730
|
} | null | undefined;
|
|
567
|
-
}
|
|
731
|
+
}>>>;
|
|
568
732
|
}>, "strip", z.ZodTypeAny, {
|
|
569
733
|
id: string;
|
|
570
734
|
type: "gifv";
|
|
571
735
|
description: string | null;
|
|
572
736
|
url: string;
|
|
573
|
-
preview_url: string;
|
|
737
|
+
preview_url: string | null;
|
|
574
738
|
remote_url: string | null;
|
|
575
|
-
bluehash: string;
|
|
576
|
-
meta
|
|
577
|
-
length: string;
|
|
739
|
+
bluehash: string | null;
|
|
740
|
+
meta?: {
|
|
578
741
|
width: number;
|
|
579
742
|
height: number;
|
|
580
|
-
duration: number;
|
|
581
|
-
fps: number;
|
|
582
743
|
size: string;
|
|
583
744
|
aspect: number;
|
|
584
745
|
original: {
|
|
585
746
|
width: number;
|
|
586
747
|
height: number;
|
|
587
|
-
duration
|
|
588
|
-
frame_rate
|
|
589
|
-
bitrate
|
|
748
|
+
duration?: number | null | undefined;
|
|
749
|
+
frame_rate?: string | null | undefined;
|
|
750
|
+
bitrate?: number | null | undefined;
|
|
590
751
|
};
|
|
752
|
+
length?: string | null | undefined;
|
|
753
|
+
duration?: number | null | undefined;
|
|
754
|
+
fps?: number | null | undefined;
|
|
591
755
|
small?: {
|
|
592
756
|
width: number;
|
|
593
757
|
height: number;
|
|
594
758
|
size: string;
|
|
595
759
|
aspect: number;
|
|
596
760
|
} | null | undefined;
|
|
597
|
-
};
|
|
761
|
+
} | null | undefined;
|
|
598
762
|
}, {
|
|
599
763
|
id: string;
|
|
600
764
|
type: "gifv";
|
|
601
765
|
description: string | null;
|
|
602
766
|
url: string;
|
|
603
|
-
preview_url: string;
|
|
767
|
+
preview_url: string | null;
|
|
604
768
|
remote_url: string | null;
|
|
605
|
-
bluehash: string;
|
|
606
|
-
meta
|
|
607
|
-
length: string;
|
|
769
|
+
bluehash: string | null;
|
|
770
|
+
meta?: {
|
|
608
771
|
width: number;
|
|
609
772
|
height: number;
|
|
610
|
-
duration: number;
|
|
611
|
-
fps: number;
|
|
612
773
|
size: string;
|
|
613
774
|
aspect: number;
|
|
614
775
|
original: {
|
|
615
776
|
width: number;
|
|
616
777
|
height: number;
|
|
617
|
-
duration
|
|
618
|
-
frame_rate
|
|
619
|
-
bitrate
|
|
778
|
+
duration?: number | null | undefined;
|
|
779
|
+
frame_rate?: string | null | undefined;
|
|
780
|
+
bitrate?: number | null | undefined;
|
|
620
781
|
};
|
|
782
|
+
length?: string | null | undefined;
|
|
783
|
+
duration?: number | null | undefined;
|
|
784
|
+
fps?: number | null | undefined;
|
|
621
785
|
small?: {
|
|
622
786
|
width: number;
|
|
623
787
|
height: number;
|
|
624
788
|
size: string;
|
|
625
789
|
aspect: number;
|
|
626
790
|
} | null | undefined;
|
|
627
|
-
};
|
|
791
|
+
} | null | undefined;
|
|
628
792
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
629
793
|
id: z.ZodString;
|
|
630
794
|
url: z.ZodString;
|
|
631
|
-
preview_url: z.ZodString
|
|
795
|
+
preview_url: z.ZodNullable<z.ZodString>;
|
|
632
796
|
remote_url: z.ZodNullable<z.ZodString>;
|
|
633
797
|
description: z.ZodNullable<z.ZodString>;
|
|
634
|
-
bluehash: z.ZodString
|
|
798
|
+
bluehash: z.ZodNullable<z.ZodString>;
|
|
635
799
|
}, {
|
|
636
800
|
type: z.ZodLiteral<"video">;
|
|
637
|
-
meta: z.ZodObject<{
|
|
638
|
-
length: z.ZodString
|
|
639
|
-
duration: z.ZodNumber
|
|
640
|
-
fps: z.ZodNumber
|
|
801
|
+
meta: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
802
|
+
length: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
803
|
+
duration: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
804
|
+
fps: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
641
805
|
size: z.ZodString;
|
|
642
806
|
width: z.ZodNumber;
|
|
643
807
|
height: z.ZodNumber;
|
|
644
808
|
aspect: z.ZodNumber;
|
|
645
|
-
audio_encode: z.ZodString
|
|
646
|
-
audio_bitrate: z.ZodString
|
|
647
|
-
audio_channels: z.ZodString
|
|
809
|
+
audio_encode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
810
|
+
audio_bitrate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
811
|
+
audio_channels: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
648
812
|
original: z.ZodObject<{
|
|
649
813
|
width: z.ZodNumber;
|
|
650
814
|
height: z.ZodNumber;
|
|
651
|
-
frame_rate: z.ZodString
|
|
652
|
-
duration: z.ZodNumber
|
|
653
|
-
bitrate: z.ZodNumber
|
|
815
|
+
frame_rate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
816
|
+
duration: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
817
|
+
bitrate: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
654
818
|
}, "strip", z.ZodTypeAny, {
|
|
655
819
|
width: number;
|
|
656
820
|
height: number;
|
|
657
|
-
duration
|
|
658
|
-
frame_rate
|
|
659
|
-
bitrate
|
|
821
|
+
duration?: number | null | undefined;
|
|
822
|
+
frame_rate?: string | null | undefined;
|
|
823
|
+
bitrate?: number | null | undefined;
|
|
660
824
|
}, {
|
|
661
825
|
width: number;
|
|
662
826
|
height: number;
|
|
663
|
-
duration
|
|
664
|
-
frame_rate
|
|
665
|
-
bitrate
|
|
827
|
+
duration?: number | null | undefined;
|
|
828
|
+
frame_rate?: string | null | undefined;
|
|
829
|
+
bitrate?: number | null | undefined;
|
|
666
830
|
}>;
|
|
667
831
|
small: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
668
832
|
width: z.ZodNumber;
|
|
@@ -681,211 +845,211 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
681
845
|
aspect: number;
|
|
682
846
|
}>>>;
|
|
683
847
|
}, "strip", z.ZodTypeAny, {
|
|
684
|
-
length: string;
|
|
685
848
|
width: number;
|
|
686
849
|
height: number;
|
|
687
|
-
duration: number;
|
|
688
|
-
fps: number;
|
|
689
850
|
size: string;
|
|
690
851
|
aspect: number;
|
|
691
852
|
original: {
|
|
692
853
|
width: number;
|
|
693
854
|
height: number;
|
|
694
|
-
duration
|
|
695
|
-
frame_rate
|
|
696
|
-
bitrate
|
|
855
|
+
duration?: number | null | undefined;
|
|
856
|
+
frame_rate?: string | null | undefined;
|
|
857
|
+
bitrate?: number | null | undefined;
|
|
697
858
|
};
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
859
|
+
length?: string | null | undefined;
|
|
860
|
+
duration?: number | null | undefined;
|
|
861
|
+
fps?: number | null | undefined;
|
|
701
862
|
small?: {
|
|
702
863
|
width: number;
|
|
703
864
|
height: number;
|
|
704
865
|
size: string;
|
|
705
866
|
aspect: number;
|
|
706
867
|
} | null | undefined;
|
|
868
|
+
audio_encode?: string | null | undefined;
|
|
869
|
+
audio_bitrate?: string | null | undefined;
|
|
870
|
+
audio_channels?: string | null | undefined;
|
|
707
871
|
}, {
|
|
708
|
-
length: string;
|
|
709
872
|
width: number;
|
|
710
873
|
height: number;
|
|
711
|
-
duration: number;
|
|
712
|
-
fps: number;
|
|
713
874
|
size: string;
|
|
714
875
|
aspect: number;
|
|
715
876
|
original: {
|
|
716
877
|
width: number;
|
|
717
878
|
height: number;
|
|
718
|
-
duration
|
|
719
|
-
frame_rate
|
|
720
|
-
bitrate
|
|
879
|
+
duration?: number | null | undefined;
|
|
880
|
+
frame_rate?: string | null | undefined;
|
|
881
|
+
bitrate?: number | null | undefined;
|
|
721
882
|
};
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
883
|
+
length?: string | null | undefined;
|
|
884
|
+
duration?: number | null | undefined;
|
|
885
|
+
fps?: number | null | undefined;
|
|
725
886
|
small?: {
|
|
726
887
|
width: number;
|
|
727
888
|
height: number;
|
|
728
889
|
size: string;
|
|
729
890
|
aspect: number;
|
|
730
891
|
} | null | undefined;
|
|
731
|
-
|
|
892
|
+
audio_encode?: string | null | undefined;
|
|
893
|
+
audio_bitrate?: string | null | undefined;
|
|
894
|
+
audio_channels?: string | null | undefined;
|
|
895
|
+
}>>>;
|
|
732
896
|
}>, "strip", z.ZodTypeAny, {
|
|
733
897
|
id: string;
|
|
734
898
|
type: "video";
|
|
735
899
|
description: string | null;
|
|
736
900
|
url: string;
|
|
737
|
-
preview_url: string;
|
|
901
|
+
preview_url: string | null;
|
|
738
902
|
remote_url: string | null;
|
|
739
|
-
bluehash: string;
|
|
740
|
-
meta
|
|
741
|
-
length: string;
|
|
903
|
+
bluehash: string | null;
|
|
904
|
+
meta?: {
|
|
742
905
|
width: number;
|
|
743
906
|
height: number;
|
|
744
|
-
duration: number;
|
|
745
|
-
fps: number;
|
|
746
907
|
size: string;
|
|
747
908
|
aspect: number;
|
|
748
909
|
original: {
|
|
749
910
|
width: number;
|
|
750
911
|
height: number;
|
|
751
|
-
duration
|
|
752
|
-
frame_rate
|
|
753
|
-
bitrate
|
|
912
|
+
duration?: number | null | undefined;
|
|
913
|
+
frame_rate?: string | null | undefined;
|
|
914
|
+
bitrate?: number | null | undefined;
|
|
754
915
|
};
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
916
|
+
length?: string | null | undefined;
|
|
917
|
+
duration?: number | null | undefined;
|
|
918
|
+
fps?: number | null | undefined;
|
|
758
919
|
small?: {
|
|
759
920
|
width: number;
|
|
760
921
|
height: number;
|
|
761
922
|
size: string;
|
|
762
923
|
aspect: number;
|
|
763
924
|
} | null | undefined;
|
|
764
|
-
|
|
925
|
+
audio_encode?: string | null | undefined;
|
|
926
|
+
audio_bitrate?: string | null | undefined;
|
|
927
|
+
audio_channels?: string | null | undefined;
|
|
928
|
+
} | null | undefined;
|
|
765
929
|
}, {
|
|
766
930
|
id: string;
|
|
767
931
|
type: "video";
|
|
768
932
|
description: string | null;
|
|
769
933
|
url: string;
|
|
770
|
-
preview_url: string;
|
|
934
|
+
preview_url: string | null;
|
|
771
935
|
remote_url: string | null;
|
|
772
|
-
bluehash: string;
|
|
773
|
-
meta
|
|
774
|
-
length: string;
|
|
936
|
+
bluehash: string | null;
|
|
937
|
+
meta?: {
|
|
775
938
|
width: number;
|
|
776
939
|
height: number;
|
|
777
|
-
duration: number;
|
|
778
|
-
fps: number;
|
|
779
940
|
size: string;
|
|
780
941
|
aspect: number;
|
|
781
942
|
original: {
|
|
782
943
|
width: number;
|
|
783
944
|
height: number;
|
|
784
|
-
duration
|
|
785
|
-
frame_rate
|
|
786
|
-
bitrate
|
|
945
|
+
duration?: number | null | undefined;
|
|
946
|
+
frame_rate?: string | null | undefined;
|
|
947
|
+
bitrate?: number | null | undefined;
|
|
787
948
|
};
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
949
|
+
length?: string | null | undefined;
|
|
950
|
+
duration?: number | null | undefined;
|
|
951
|
+
fps?: number | null | undefined;
|
|
791
952
|
small?: {
|
|
792
953
|
width: number;
|
|
793
954
|
height: number;
|
|
794
955
|
size: string;
|
|
795
956
|
aspect: number;
|
|
796
957
|
} | null | undefined;
|
|
797
|
-
|
|
958
|
+
audio_encode?: string | null | undefined;
|
|
959
|
+
audio_bitrate?: string | null | undefined;
|
|
960
|
+
audio_channels?: string | null | undefined;
|
|
961
|
+
} | null | undefined;
|
|
798
962
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
799
963
|
id: z.ZodString;
|
|
800
964
|
url: z.ZodString;
|
|
801
|
-
preview_url: z.ZodString
|
|
965
|
+
preview_url: z.ZodNullable<z.ZodString>;
|
|
802
966
|
remote_url: z.ZodNullable<z.ZodString>;
|
|
803
967
|
description: z.ZodNullable<z.ZodString>;
|
|
804
|
-
bluehash: z.ZodString
|
|
968
|
+
bluehash: z.ZodNullable<z.ZodString>;
|
|
805
969
|
}, {
|
|
806
970
|
type: z.ZodLiteral<"audio">;
|
|
807
971
|
meta: z.ZodObject<{
|
|
808
972
|
length: z.ZodString;
|
|
809
973
|
duration: z.ZodNumber;
|
|
810
|
-
audio_encode: z.ZodString
|
|
811
|
-
audio_bitrate: z.ZodString
|
|
812
|
-
audio_channels: z.ZodString
|
|
974
|
+
audio_encode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
975
|
+
audio_bitrate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
976
|
+
audio_channels: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
813
977
|
original: z.ZodObject<{
|
|
814
978
|
duration: z.ZodNumber;
|
|
815
|
-
bitrate: z.ZodNumber
|
|
979
|
+
bitrate: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
816
980
|
}, "strip", z.ZodTypeAny, {
|
|
817
981
|
duration: number;
|
|
818
|
-
bitrate
|
|
982
|
+
bitrate?: number | null | undefined;
|
|
819
983
|
}, {
|
|
820
984
|
duration: number;
|
|
821
|
-
bitrate
|
|
985
|
+
bitrate?: number | null | undefined;
|
|
822
986
|
}>;
|
|
823
987
|
}, "strip", z.ZodTypeAny, {
|
|
824
988
|
length: string;
|
|
825
989
|
duration: number;
|
|
826
990
|
original: {
|
|
827
991
|
duration: number;
|
|
828
|
-
bitrate
|
|
992
|
+
bitrate?: number | null | undefined;
|
|
829
993
|
};
|
|
830
|
-
audio_encode
|
|
831
|
-
audio_bitrate
|
|
832
|
-
audio_channels
|
|
994
|
+
audio_encode?: string | null | undefined;
|
|
995
|
+
audio_bitrate?: string | null | undefined;
|
|
996
|
+
audio_channels?: string | null | undefined;
|
|
833
997
|
}, {
|
|
834
998
|
length: string;
|
|
835
999
|
duration: number;
|
|
836
1000
|
original: {
|
|
837
1001
|
duration: number;
|
|
838
|
-
bitrate
|
|
1002
|
+
bitrate?: number | null | undefined;
|
|
839
1003
|
};
|
|
840
|
-
audio_encode
|
|
841
|
-
audio_bitrate
|
|
842
|
-
audio_channels
|
|
1004
|
+
audio_encode?: string | null | undefined;
|
|
1005
|
+
audio_bitrate?: string | null | undefined;
|
|
1006
|
+
audio_channels?: string | null | undefined;
|
|
843
1007
|
}>;
|
|
844
1008
|
}>, "strip", z.ZodTypeAny, {
|
|
845
1009
|
id: string;
|
|
846
1010
|
type: "audio";
|
|
847
1011
|
description: string | null;
|
|
848
1012
|
url: string;
|
|
849
|
-
preview_url: string;
|
|
1013
|
+
preview_url: string | null;
|
|
850
1014
|
remote_url: string | null;
|
|
851
|
-
bluehash: string;
|
|
1015
|
+
bluehash: string | null;
|
|
852
1016
|
meta: {
|
|
853
1017
|
length: string;
|
|
854
1018
|
duration: number;
|
|
855
1019
|
original: {
|
|
856
1020
|
duration: number;
|
|
857
|
-
bitrate
|
|
1021
|
+
bitrate?: number | null | undefined;
|
|
858
1022
|
};
|
|
859
|
-
audio_encode
|
|
860
|
-
audio_bitrate
|
|
861
|
-
audio_channels
|
|
1023
|
+
audio_encode?: string | null | undefined;
|
|
1024
|
+
audio_bitrate?: string | null | undefined;
|
|
1025
|
+
audio_channels?: string | null | undefined;
|
|
862
1026
|
};
|
|
863
1027
|
}, {
|
|
864
1028
|
id: string;
|
|
865
1029
|
type: "audio";
|
|
866
1030
|
description: string | null;
|
|
867
1031
|
url: string;
|
|
868
|
-
preview_url: string;
|
|
1032
|
+
preview_url: string | null;
|
|
869
1033
|
remote_url: string | null;
|
|
870
|
-
bluehash: string;
|
|
1034
|
+
bluehash: string | null;
|
|
871
1035
|
meta: {
|
|
872
1036
|
length: string;
|
|
873
1037
|
duration: number;
|
|
874
1038
|
original: {
|
|
875
1039
|
duration: number;
|
|
876
|
-
bitrate
|
|
1040
|
+
bitrate?: number | null | undefined;
|
|
877
1041
|
};
|
|
878
|
-
audio_encode
|
|
879
|
-
audio_bitrate
|
|
880
|
-
audio_channels
|
|
1042
|
+
audio_encode?: string | null | undefined;
|
|
1043
|
+
audio_bitrate?: string | null | undefined;
|
|
1044
|
+
audio_channels?: string | null | undefined;
|
|
881
1045
|
};
|
|
882
1046
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
883
1047
|
id: z.ZodString;
|
|
884
1048
|
url: z.ZodString;
|
|
885
|
-
preview_url: z.ZodString
|
|
1049
|
+
preview_url: z.ZodNullable<z.ZodString>;
|
|
886
1050
|
remote_url: z.ZodNullable<z.ZodString>;
|
|
887
1051
|
description: z.ZodNullable<z.ZodString>;
|
|
888
|
-
bluehash: z.ZodString
|
|
1052
|
+
bluehash: z.ZodNullable<z.ZodString>;
|
|
889
1053
|
}, {
|
|
890
1054
|
type: z.ZodLiteral<"unknown">;
|
|
891
1055
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -893,17 +1057,17 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
893
1057
|
type: "unknown";
|
|
894
1058
|
description: string | null;
|
|
895
1059
|
url: string;
|
|
896
|
-
preview_url: string;
|
|
1060
|
+
preview_url: string | null;
|
|
897
1061
|
remote_url: string | null;
|
|
898
|
-
bluehash: string;
|
|
1062
|
+
bluehash: string | null;
|
|
899
1063
|
}, {
|
|
900
1064
|
id: string;
|
|
901
1065
|
type: "unknown";
|
|
902
1066
|
description: string | null;
|
|
903
1067
|
url: string;
|
|
904
|
-
preview_url: string;
|
|
1068
|
+
preview_url: string | null;
|
|
905
1069
|
remote_url: string | null;
|
|
906
|
-
bluehash: string;
|
|
1070
|
+
bluehash: string | null;
|
|
907
1071
|
}>]>, "many">;
|
|
908
1072
|
application: z.ZodOptional<z.ZodObject<{
|
|
909
1073
|
name: z.ZodString;
|
|
@@ -1107,7 +1271,7 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
1107
1271
|
}, "strip", z.ZodTypeAny, {
|
|
1108
1272
|
id: string;
|
|
1109
1273
|
title: string;
|
|
1110
|
-
context: ("
|
|
1274
|
+
context: ("public" | "home" | "notifications" | "thread" | "account")[];
|
|
1111
1275
|
expires_at: string | null;
|
|
1112
1276
|
filter_action: "warn" | "hide";
|
|
1113
1277
|
keywords: {
|
|
@@ -1122,7 +1286,7 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
1122
1286
|
}, {
|
|
1123
1287
|
id: string;
|
|
1124
1288
|
title: string;
|
|
1125
|
-
context: ("
|
|
1289
|
+
context: ("public" | "home" | "notifications" | "thread" | "account")[];
|
|
1126
1290
|
expires_at: string | null;
|
|
1127
1291
|
filter_action: "warn" | "hide";
|
|
1128
1292
|
keywords: {
|
|
@@ -1141,7 +1305,7 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
1141
1305
|
filter: {
|
|
1142
1306
|
id: string;
|
|
1143
1307
|
title: string;
|
|
1144
|
-
context: ("
|
|
1308
|
+
context: ("public" | "home" | "notifications" | "thread" | "account")[];
|
|
1145
1309
|
expires_at: string | null;
|
|
1146
1310
|
filter_action: "warn" | "hide";
|
|
1147
1311
|
keywords: {
|
|
@@ -1160,7 +1324,7 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
1160
1324
|
filter: {
|
|
1161
1325
|
id: string;
|
|
1162
1326
|
title: string;
|
|
1163
|
-
context: ("
|
|
1327
|
+
context: ("public" | "home" | "notifications" | "thread" | "account")[];
|
|
1164
1328
|
expires_at: string | null;
|
|
1165
1329
|
filter_action: "warn" | "hide";
|
|
1166
1330
|
keywords: {
|
|
@@ -1180,6 +1344,9 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
1180
1344
|
id: string;
|
|
1181
1345
|
url: string | null;
|
|
1182
1346
|
content: string;
|
|
1347
|
+
sensitive: boolean;
|
|
1348
|
+
language: string | null;
|
|
1349
|
+
uri: string;
|
|
1183
1350
|
emojis: {
|
|
1184
1351
|
url: string;
|
|
1185
1352
|
shortcode: string;
|
|
@@ -1191,20 +1358,33 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
1191
1358
|
account: {
|
|
1192
1359
|
id: string;
|
|
1193
1360
|
url: string;
|
|
1361
|
+
note: string;
|
|
1362
|
+
fields: {
|
|
1363
|
+
value: string;
|
|
1364
|
+
name: string;
|
|
1365
|
+
verified_at: string | null;
|
|
1366
|
+
}[];
|
|
1194
1367
|
username: string;
|
|
1195
1368
|
acct: string;
|
|
1369
|
+
uri: string;
|
|
1196
1370
|
display_name: string;
|
|
1197
|
-
note: string;
|
|
1198
1371
|
avatar: string;
|
|
1199
1372
|
avatar_static: string;
|
|
1200
1373
|
header: string;
|
|
1201
1374
|
header_static: string;
|
|
1202
1375
|
locked: boolean;
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1376
|
+
source: {
|
|
1377
|
+
note: string;
|
|
1378
|
+
fields: {
|
|
1379
|
+
value: string;
|
|
1380
|
+
name: string;
|
|
1381
|
+
verified_at: string | null;
|
|
1382
|
+
}[];
|
|
1383
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
1384
|
+
sensitive: boolean;
|
|
1385
|
+
language: string;
|
|
1386
|
+
follow_requests_count: number;
|
|
1387
|
+
};
|
|
1208
1388
|
emojis: {
|
|
1209
1389
|
url: string;
|
|
1210
1390
|
shortcode: string;
|
|
@@ -1226,20 +1406,33 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
1226
1406
|
moved?: {
|
|
1227
1407
|
id: string;
|
|
1228
1408
|
url: string;
|
|
1409
|
+
note: string;
|
|
1410
|
+
fields: {
|
|
1411
|
+
value: string;
|
|
1412
|
+
name: string;
|
|
1413
|
+
verified_at: string | null;
|
|
1414
|
+
}[];
|
|
1229
1415
|
username: string;
|
|
1230
1416
|
acct: string;
|
|
1417
|
+
uri: string;
|
|
1231
1418
|
display_name: string;
|
|
1232
|
-
note: string;
|
|
1233
1419
|
avatar: string;
|
|
1234
1420
|
avatar_static: string;
|
|
1235
1421
|
header: string;
|
|
1236
1422
|
header_static: string;
|
|
1237
1423
|
locked: boolean;
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1424
|
+
source: {
|
|
1425
|
+
note: string;
|
|
1426
|
+
fields: {
|
|
1427
|
+
value: string;
|
|
1428
|
+
name: string;
|
|
1429
|
+
verified_at: string | null;
|
|
1430
|
+
}[];
|
|
1431
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
1432
|
+
sensitive: boolean;
|
|
1433
|
+
language: string;
|
|
1434
|
+
follow_requests_count: number;
|
|
1435
|
+
};
|
|
1243
1436
|
emojis: {
|
|
1244
1437
|
url: string;
|
|
1245
1438
|
shortcode: string;
|
|
@@ -1260,49 +1453,47 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
1260
1453
|
limited?: boolean | undefined;
|
|
1261
1454
|
} | null | undefined;
|
|
1262
1455
|
};
|
|
1263
|
-
uri: string;
|
|
1264
1456
|
visibility: "public" | "unlist" | "private" | "direct";
|
|
1265
|
-
sensitive: boolean;
|
|
1266
1457
|
spoiler_text: string;
|
|
1267
1458
|
media_attachments: ({
|
|
1268
1459
|
id: string;
|
|
1269
1460
|
type: "gifv";
|
|
1270
1461
|
description: string | null;
|
|
1271
1462
|
url: string;
|
|
1272
|
-
preview_url: string;
|
|
1463
|
+
preview_url: string | null;
|
|
1273
1464
|
remote_url: string | null;
|
|
1274
|
-
bluehash: string;
|
|
1275
|
-
meta
|
|
1276
|
-
length: string;
|
|
1465
|
+
bluehash: string | null;
|
|
1466
|
+
meta?: {
|
|
1277
1467
|
width: number;
|
|
1278
1468
|
height: number;
|
|
1279
|
-
duration: number;
|
|
1280
|
-
fps: number;
|
|
1281
1469
|
size: string;
|
|
1282
1470
|
aspect: number;
|
|
1283
1471
|
original: {
|
|
1284
1472
|
width: number;
|
|
1285
1473
|
height: number;
|
|
1286
|
-
duration
|
|
1287
|
-
frame_rate
|
|
1288
|
-
bitrate
|
|
1474
|
+
duration?: number | null | undefined;
|
|
1475
|
+
frame_rate?: string | null | undefined;
|
|
1476
|
+
bitrate?: number | null | undefined;
|
|
1289
1477
|
};
|
|
1478
|
+
length?: string | null | undefined;
|
|
1479
|
+
duration?: number | null | undefined;
|
|
1480
|
+
fps?: number | null | undefined;
|
|
1290
1481
|
small?: {
|
|
1291
1482
|
width: number;
|
|
1292
1483
|
height: number;
|
|
1293
1484
|
size: string;
|
|
1294
1485
|
aspect: number;
|
|
1295
1486
|
} | null | undefined;
|
|
1296
|
-
};
|
|
1487
|
+
} | null | undefined;
|
|
1297
1488
|
} | {
|
|
1298
1489
|
id: string;
|
|
1299
1490
|
type: "image";
|
|
1300
1491
|
description: string | null;
|
|
1301
1492
|
url: string;
|
|
1302
|
-
preview_url: string;
|
|
1493
|
+
preview_url: string | null;
|
|
1303
1494
|
remote_url: string | null;
|
|
1304
|
-
bluehash: string;
|
|
1305
|
-
meta
|
|
1495
|
+
bluehash: string | null;
|
|
1496
|
+
meta?: {
|
|
1306
1497
|
original: {
|
|
1307
1498
|
width: number;
|
|
1308
1499
|
height: number;
|
|
@@ -1319,67 +1510,67 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
1319
1510
|
x: number;
|
|
1320
1511
|
y: number;
|
|
1321
1512
|
} | null | undefined;
|
|
1322
|
-
};
|
|
1513
|
+
} | null | undefined;
|
|
1323
1514
|
} | {
|
|
1324
1515
|
id: string;
|
|
1325
1516
|
type: "video";
|
|
1326
1517
|
description: string | null;
|
|
1327
1518
|
url: string;
|
|
1328
|
-
preview_url: string;
|
|
1519
|
+
preview_url: string | null;
|
|
1329
1520
|
remote_url: string | null;
|
|
1330
|
-
bluehash: string;
|
|
1331
|
-
meta
|
|
1332
|
-
length: string;
|
|
1521
|
+
bluehash: string | null;
|
|
1522
|
+
meta?: {
|
|
1333
1523
|
width: number;
|
|
1334
1524
|
height: number;
|
|
1335
|
-
duration: number;
|
|
1336
|
-
fps: number;
|
|
1337
1525
|
size: string;
|
|
1338
1526
|
aspect: number;
|
|
1339
1527
|
original: {
|
|
1340
1528
|
width: number;
|
|
1341
1529
|
height: number;
|
|
1342
|
-
duration
|
|
1343
|
-
frame_rate
|
|
1344
|
-
bitrate
|
|
1530
|
+
duration?: number | null | undefined;
|
|
1531
|
+
frame_rate?: string | null | undefined;
|
|
1532
|
+
bitrate?: number | null | undefined;
|
|
1345
1533
|
};
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1534
|
+
length?: string | null | undefined;
|
|
1535
|
+
duration?: number | null | undefined;
|
|
1536
|
+
fps?: number | null | undefined;
|
|
1349
1537
|
small?: {
|
|
1350
1538
|
width: number;
|
|
1351
1539
|
height: number;
|
|
1352
1540
|
size: string;
|
|
1353
1541
|
aspect: number;
|
|
1354
1542
|
} | null | undefined;
|
|
1355
|
-
|
|
1543
|
+
audio_encode?: string | null | undefined;
|
|
1544
|
+
audio_bitrate?: string | null | undefined;
|
|
1545
|
+
audio_channels?: string | null | undefined;
|
|
1546
|
+
} | null | undefined;
|
|
1356
1547
|
} | {
|
|
1357
1548
|
id: string;
|
|
1358
1549
|
type: "audio";
|
|
1359
1550
|
description: string | null;
|
|
1360
1551
|
url: string;
|
|
1361
|
-
preview_url: string;
|
|
1552
|
+
preview_url: string | null;
|
|
1362
1553
|
remote_url: string | null;
|
|
1363
|
-
bluehash: string;
|
|
1554
|
+
bluehash: string | null;
|
|
1364
1555
|
meta: {
|
|
1365
1556
|
length: string;
|
|
1366
1557
|
duration: number;
|
|
1367
1558
|
original: {
|
|
1368
1559
|
duration: number;
|
|
1369
|
-
bitrate
|
|
1560
|
+
bitrate?: number | null | undefined;
|
|
1370
1561
|
};
|
|
1371
|
-
audio_encode
|
|
1372
|
-
audio_bitrate
|
|
1373
|
-
audio_channels
|
|
1562
|
+
audio_encode?: string | null | undefined;
|
|
1563
|
+
audio_bitrate?: string | null | undefined;
|
|
1564
|
+
audio_channels?: string | null | undefined;
|
|
1374
1565
|
};
|
|
1375
1566
|
} | {
|
|
1376
1567
|
id: string;
|
|
1377
1568
|
type: "unknown";
|
|
1378
1569
|
description: string | null;
|
|
1379
1570
|
url: string;
|
|
1380
|
-
preview_url: string;
|
|
1571
|
+
preview_url: string | null;
|
|
1381
1572
|
remote_url: string | null;
|
|
1382
|
-
bluehash: string;
|
|
1573
|
+
bluehash: string | null;
|
|
1383
1574
|
})[];
|
|
1384
1575
|
reblogs_count: number;
|
|
1385
1576
|
favourites_count: number;
|
|
@@ -1423,7 +1614,6 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
1423
1614
|
html: string;
|
|
1424
1615
|
embed_url: string;
|
|
1425
1616
|
} | null;
|
|
1426
|
-
language: string | null;
|
|
1427
1617
|
text: string | null;
|
|
1428
1618
|
edited_at: string | null;
|
|
1429
1619
|
application?: {
|
|
@@ -1439,7 +1629,7 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
1439
1629
|
filter: {
|
|
1440
1630
|
id: string;
|
|
1441
1631
|
title: string;
|
|
1442
|
-
context: ("
|
|
1632
|
+
context: ("public" | "home" | "notifications" | "thread" | "account")[];
|
|
1443
1633
|
expires_at: string | null;
|
|
1444
1634
|
filter_action: "warn" | "hide";
|
|
1445
1635
|
keywords: {
|
|
@@ -1459,6 +1649,9 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
1459
1649
|
id: string;
|
|
1460
1650
|
url: string | null;
|
|
1461
1651
|
content: string;
|
|
1652
|
+
sensitive: boolean;
|
|
1653
|
+
language: string | null;
|
|
1654
|
+
uri: string;
|
|
1462
1655
|
emojis: {
|
|
1463
1656
|
url: string;
|
|
1464
1657
|
shortcode: string;
|
|
@@ -1470,20 +1663,33 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
1470
1663
|
account: {
|
|
1471
1664
|
id: string;
|
|
1472
1665
|
url: string;
|
|
1666
|
+
note: string;
|
|
1667
|
+
fields: {
|
|
1668
|
+
value: string;
|
|
1669
|
+
name: string;
|
|
1670
|
+
verified_at: string | null;
|
|
1671
|
+
}[];
|
|
1473
1672
|
username: string;
|
|
1474
1673
|
acct: string;
|
|
1674
|
+
uri: string;
|
|
1475
1675
|
display_name: string;
|
|
1476
|
-
note: string;
|
|
1477
1676
|
avatar: string;
|
|
1478
1677
|
avatar_static: string;
|
|
1479
1678
|
header: string;
|
|
1480
1679
|
header_static: string;
|
|
1481
1680
|
locked: boolean;
|
|
1482
|
-
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
|
|
1486
|
-
|
|
1681
|
+
source: {
|
|
1682
|
+
note: string;
|
|
1683
|
+
fields: {
|
|
1684
|
+
value: string;
|
|
1685
|
+
name: string;
|
|
1686
|
+
verified_at: string | null;
|
|
1687
|
+
}[];
|
|
1688
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
1689
|
+
sensitive: boolean;
|
|
1690
|
+
language: string;
|
|
1691
|
+
follow_requests_count: number;
|
|
1692
|
+
};
|
|
1487
1693
|
emojis: {
|
|
1488
1694
|
url: string;
|
|
1489
1695
|
shortcode: string;
|
|
@@ -1505,20 +1711,33 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
1505
1711
|
moved?: {
|
|
1506
1712
|
id: string;
|
|
1507
1713
|
url: string;
|
|
1714
|
+
note: string;
|
|
1715
|
+
fields: {
|
|
1716
|
+
value: string;
|
|
1717
|
+
name: string;
|
|
1718
|
+
verified_at: string | null;
|
|
1719
|
+
}[];
|
|
1508
1720
|
username: string;
|
|
1509
1721
|
acct: string;
|
|
1722
|
+
uri: string;
|
|
1510
1723
|
display_name: string;
|
|
1511
|
-
note: string;
|
|
1512
1724
|
avatar: string;
|
|
1513
1725
|
avatar_static: string;
|
|
1514
1726
|
header: string;
|
|
1515
1727
|
header_static: string;
|
|
1516
1728
|
locked: boolean;
|
|
1517
|
-
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
|
|
1521
|
-
|
|
1729
|
+
source: {
|
|
1730
|
+
note: string;
|
|
1731
|
+
fields: {
|
|
1732
|
+
value: string;
|
|
1733
|
+
name: string;
|
|
1734
|
+
verified_at: string | null;
|
|
1735
|
+
}[];
|
|
1736
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
1737
|
+
sensitive: boolean;
|
|
1738
|
+
language: string;
|
|
1739
|
+
follow_requests_count: number;
|
|
1740
|
+
};
|
|
1522
1741
|
emojis: {
|
|
1523
1742
|
url: string;
|
|
1524
1743
|
shortcode: string;
|
|
@@ -1539,49 +1758,47 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
1539
1758
|
limited?: boolean | undefined;
|
|
1540
1759
|
} | null | undefined;
|
|
1541
1760
|
};
|
|
1542
|
-
uri: string;
|
|
1543
1761
|
visibility: "public" | "unlist" | "private" | "direct";
|
|
1544
|
-
sensitive: boolean;
|
|
1545
1762
|
spoiler_text: string;
|
|
1546
1763
|
media_attachments: ({
|
|
1547
1764
|
id: string;
|
|
1548
1765
|
type: "gifv";
|
|
1549
1766
|
description: string | null;
|
|
1550
1767
|
url: string;
|
|
1551
|
-
preview_url: string;
|
|
1768
|
+
preview_url: string | null;
|
|
1552
1769
|
remote_url: string | null;
|
|
1553
|
-
bluehash: string;
|
|
1554
|
-
meta
|
|
1555
|
-
length: string;
|
|
1770
|
+
bluehash: string | null;
|
|
1771
|
+
meta?: {
|
|
1556
1772
|
width: number;
|
|
1557
1773
|
height: number;
|
|
1558
|
-
duration: number;
|
|
1559
|
-
fps: number;
|
|
1560
1774
|
size: string;
|
|
1561
1775
|
aspect: number;
|
|
1562
1776
|
original: {
|
|
1563
1777
|
width: number;
|
|
1564
1778
|
height: number;
|
|
1565
|
-
duration
|
|
1566
|
-
frame_rate
|
|
1567
|
-
bitrate
|
|
1779
|
+
duration?: number | null | undefined;
|
|
1780
|
+
frame_rate?: string | null | undefined;
|
|
1781
|
+
bitrate?: number | null | undefined;
|
|
1568
1782
|
};
|
|
1783
|
+
length?: string | null | undefined;
|
|
1784
|
+
duration?: number | null | undefined;
|
|
1785
|
+
fps?: number | null | undefined;
|
|
1569
1786
|
small?: {
|
|
1570
1787
|
width: number;
|
|
1571
1788
|
height: number;
|
|
1572
1789
|
size: string;
|
|
1573
1790
|
aspect: number;
|
|
1574
1791
|
} | null | undefined;
|
|
1575
|
-
};
|
|
1792
|
+
} | null | undefined;
|
|
1576
1793
|
} | {
|
|
1577
1794
|
id: string;
|
|
1578
1795
|
type: "image";
|
|
1579
1796
|
description: string | null;
|
|
1580
1797
|
url: string;
|
|
1581
|
-
preview_url: string;
|
|
1798
|
+
preview_url: string | null;
|
|
1582
1799
|
remote_url: string | null;
|
|
1583
|
-
bluehash: string;
|
|
1584
|
-
meta
|
|
1800
|
+
bluehash: string | null;
|
|
1801
|
+
meta?: {
|
|
1585
1802
|
original: {
|
|
1586
1803
|
width: number;
|
|
1587
1804
|
height: number;
|
|
@@ -1598,67 +1815,67 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
1598
1815
|
x: number;
|
|
1599
1816
|
y: number;
|
|
1600
1817
|
} | null | undefined;
|
|
1601
|
-
};
|
|
1818
|
+
} | null | undefined;
|
|
1602
1819
|
} | {
|
|
1603
1820
|
id: string;
|
|
1604
1821
|
type: "video";
|
|
1605
1822
|
description: string | null;
|
|
1606
1823
|
url: string;
|
|
1607
|
-
preview_url: string;
|
|
1824
|
+
preview_url: string | null;
|
|
1608
1825
|
remote_url: string | null;
|
|
1609
|
-
bluehash: string;
|
|
1610
|
-
meta
|
|
1611
|
-
length: string;
|
|
1826
|
+
bluehash: string | null;
|
|
1827
|
+
meta?: {
|
|
1612
1828
|
width: number;
|
|
1613
1829
|
height: number;
|
|
1614
|
-
duration: number;
|
|
1615
|
-
fps: number;
|
|
1616
1830
|
size: string;
|
|
1617
1831
|
aspect: number;
|
|
1618
1832
|
original: {
|
|
1619
1833
|
width: number;
|
|
1620
1834
|
height: number;
|
|
1621
|
-
duration
|
|
1622
|
-
frame_rate
|
|
1623
|
-
bitrate
|
|
1835
|
+
duration?: number | null | undefined;
|
|
1836
|
+
frame_rate?: string | null | undefined;
|
|
1837
|
+
bitrate?: number | null | undefined;
|
|
1624
1838
|
};
|
|
1625
|
-
|
|
1626
|
-
|
|
1627
|
-
|
|
1839
|
+
length?: string | null | undefined;
|
|
1840
|
+
duration?: number | null | undefined;
|
|
1841
|
+
fps?: number | null | undefined;
|
|
1628
1842
|
small?: {
|
|
1629
1843
|
width: number;
|
|
1630
1844
|
height: number;
|
|
1631
1845
|
size: string;
|
|
1632
1846
|
aspect: number;
|
|
1633
1847
|
} | null | undefined;
|
|
1634
|
-
|
|
1848
|
+
audio_encode?: string | null | undefined;
|
|
1849
|
+
audio_bitrate?: string | null | undefined;
|
|
1850
|
+
audio_channels?: string | null | undefined;
|
|
1851
|
+
} | null | undefined;
|
|
1635
1852
|
} | {
|
|
1636
1853
|
id: string;
|
|
1637
1854
|
type: "audio";
|
|
1638
1855
|
description: string | null;
|
|
1639
1856
|
url: string;
|
|
1640
|
-
preview_url: string;
|
|
1857
|
+
preview_url: string | null;
|
|
1641
1858
|
remote_url: string | null;
|
|
1642
|
-
bluehash: string;
|
|
1859
|
+
bluehash: string | null;
|
|
1643
1860
|
meta: {
|
|
1644
1861
|
length: string;
|
|
1645
1862
|
duration: number;
|
|
1646
1863
|
original: {
|
|
1647
1864
|
duration: number;
|
|
1648
|
-
bitrate
|
|
1865
|
+
bitrate?: number | null | undefined;
|
|
1649
1866
|
};
|
|
1650
|
-
audio_encode
|
|
1651
|
-
audio_bitrate
|
|
1652
|
-
audio_channels
|
|
1867
|
+
audio_encode?: string | null | undefined;
|
|
1868
|
+
audio_bitrate?: string | null | undefined;
|
|
1869
|
+
audio_channels?: string | null | undefined;
|
|
1653
1870
|
};
|
|
1654
1871
|
} | {
|
|
1655
1872
|
id: string;
|
|
1656
1873
|
type: "unknown";
|
|
1657
1874
|
description: string | null;
|
|
1658
1875
|
url: string;
|
|
1659
|
-
preview_url: string;
|
|
1876
|
+
preview_url: string | null;
|
|
1660
1877
|
remote_url: string | null;
|
|
1661
|
-
bluehash: string;
|
|
1878
|
+
bluehash: string | null;
|
|
1662
1879
|
})[];
|
|
1663
1880
|
reblogs_count: number;
|
|
1664
1881
|
favourites_count: number;
|
|
@@ -1702,7 +1919,6 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
1702
1919
|
html: string;
|
|
1703
1920
|
embed_url: string;
|
|
1704
1921
|
} | null;
|
|
1705
|
-
language: string | null;
|
|
1706
1922
|
text: string | null;
|
|
1707
1923
|
edited_at: string | null;
|
|
1708
1924
|
application?: {
|
|
@@ -1718,7 +1934,7 @@ export declare const BaseStatus: z.ZodObject<{
|
|
|
1718
1934
|
filter: {
|
|
1719
1935
|
id: string;
|
|
1720
1936
|
title: string;
|
|
1721
|
-
context: ("
|
|
1937
|
+
context: ("public" | "home" | "notifications" | "thread" | "account")[];
|
|
1722
1938
|
expires_at: string | null;
|
|
1723
1939
|
filter_action: "warn" | "hide";
|
|
1724
1940
|
keywords: {
|