@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 Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
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 Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
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 Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
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 Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
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 Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
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 Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
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 Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
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 Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
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 Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
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 Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
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 Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
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 Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
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 Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
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 Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
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 Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
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 Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
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 Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
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 Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
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 Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
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 Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
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 Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
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 Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
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 Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
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: {
|
|
@@ -1185,6 +1349,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1185
1349
|
username: z.ZodString;
|
|
1186
1350
|
acct: z.ZodString;
|
|
1187
1351
|
url: z.ZodString;
|
|
1352
|
+
uri: z.ZodString;
|
|
1188
1353
|
display_name: z.ZodString;
|
|
1189
1354
|
note: z.ZodString;
|
|
1190
1355
|
avatar: z.ZodString;
|
|
@@ -1192,6 +1357,48 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1192
1357
|
header: z.ZodString;
|
|
1193
1358
|
header_static: z.ZodString;
|
|
1194
1359
|
locked: z.ZodBoolean;
|
|
1360
|
+
source: z.ZodObject<{
|
|
1361
|
+
note: z.ZodString;
|
|
1362
|
+
fields: z.ZodArray<z.ZodObject<{
|
|
1363
|
+
name: z.ZodString;
|
|
1364
|
+
value: z.ZodString;
|
|
1365
|
+
verified_at: z.ZodNullable<z.ZodString>;
|
|
1366
|
+
}, "strip", z.ZodTypeAny, {
|
|
1367
|
+
value: string;
|
|
1368
|
+
name: string;
|
|
1369
|
+
verified_at: string | null;
|
|
1370
|
+
}, {
|
|
1371
|
+
value: string;
|
|
1372
|
+
name: string;
|
|
1373
|
+
verified_at: string | null;
|
|
1374
|
+
}>, "many">;
|
|
1375
|
+
privacy: z.ZodEnum<["public", "unlist", "private", "direct"]>;
|
|
1376
|
+
sensitive: z.ZodBoolean;
|
|
1377
|
+
language: z.ZodString;
|
|
1378
|
+
follow_requests_count: z.ZodNumber;
|
|
1379
|
+
}, "strip", z.ZodTypeAny, {
|
|
1380
|
+
note: string;
|
|
1381
|
+
fields: {
|
|
1382
|
+
value: string;
|
|
1383
|
+
name: string;
|
|
1384
|
+
verified_at: string | null;
|
|
1385
|
+
}[];
|
|
1386
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
1387
|
+
sensitive: boolean;
|
|
1388
|
+
language: string;
|
|
1389
|
+
follow_requests_count: number;
|
|
1390
|
+
}, {
|
|
1391
|
+
note: string;
|
|
1392
|
+
fields: {
|
|
1393
|
+
value: string;
|
|
1394
|
+
name: string;
|
|
1395
|
+
verified_at: string | null;
|
|
1396
|
+
}[];
|
|
1397
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
1398
|
+
sensitive: boolean;
|
|
1399
|
+
language: string;
|
|
1400
|
+
follow_requests_count: number;
|
|
1401
|
+
}>;
|
|
1195
1402
|
fields: z.ZodArray<z.ZodObject<{
|
|
1196
1403
|
name: z.ZodString;
|
|
1197
1404
|
value: z.ZodString;
|
|
@@ -1241,6 +1448,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1241
1448
|
username: z.ZodString;
|
|
1242
1449
|
acct: z.ZodString;
|
|
1243
1450
|
url: z.ZodString;
|
|
1451
|
+
uri: z.ZodString;
|
|
1244
1452
|
display_name: z.ZodString;
|
|
1245
1453
|
note: z.ZodString;
|
|
1246
1454
|
avatar: z.ZodString;
|
|
@@ -1248,6 +1456,48 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1248
1456
|
header: z.ZodString;
|
|
1249
1457
|
header_static: z.ZodString;
|
|
1250
1458
|
locked: z.ZodBoolean;
|
|
1459
|
+
source: z.ZodObject<{
|
|
1460
|
+
note: z.ZodString;
|
|
1461
|
+
fields: z.ZodArray<z.ZodObject<{
|
|
1462
|
+
name: z.ZodString;
|
|
1463
|
+
value: z.ZodString;
|
|
1464
|
+
verified_at: z.ZodNullable<z.ZodString>;
|
|
1465
|
+
}, "strip", z.ZodTypeAny, {
|
|
1466
|
+
value: string;
|
|
1467
|
+
name: string;
|
|
1468
|
+
verified_at: string | null;
|
|
1469
|
+
}, {
|
|
1470
|
+
value: string;
|
|
1471
|
+
name: string;
|
|
1472
|
+
verified_at: string | null;
|
|
1473
|
+
}>, "many">;
|
|
1474
|
+
privacy: z.ZodEnum<["public", "unlist", "private", "direct"]>;
|
|
1475
|
+
sensitive: z.ZodBoolean;
|
|
1476
|
+
language: z.ZodString;
|
|
1477
|
+
follow_requests_count: z.ZodNumber;
|
|
1478
|
+
}, "strip", z.ZodTypeAny, {
|
|
1479
|
+
note: string;
|
|
1480
|
+
fields: {
|
|
1481
|
+
value: string;
|
|
1482
|
+
name: string;
|
|
1483
|
+
verified_at: string | null;
|
|
1484
|
+
}[];
|
|
1485
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
1486
|
+
sensitive: boolean;
|
|
1487
|
+
language: string;
|
|
1488
|
+
follow_requests_count: number;
|
|
1489
|
+
}, {
|
|
1490
|
+
note: string;
|
|
1491
|
+
fields: {
|
|
1492
|
+
value: string;
|
|
1493
|
+
name: string;
|
|
1494
|
+
verified_at: string | null;
|
|
1495
|
+
}[];
|
|
1496
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
1497
|
+
sensitive: boolean;
|
|
1498
|
+
language: string;
|
|
1499
|
+
follow_requests_count: number;
|
|
1500
|
+
}>;
|
|
1251
1501
|
fields: z.ZodArray<z.ZodObject<{
|
|
1252
1502
|
name: z.ZodString;
|
|
1253
1503
|
value: z.ZodString;
|
|
@@ -1294,20 +1544,33 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1294
1544
|
}, "strip", z.ZodTypeAny, {
|
|
1295
1545
|
id: string;
|
|
1296
1546
|
url: string;
|
|
1547
|
+
note: string;
|
|
1548
|
+
fields: {
|
|
1549
|
+
value: string;
|
|
1550
|
+
name: string;
|
|
1551
|
+
verified_at: string | null;
|
|
1552
|
+
}[];
|
|
1297
1553
|
username: string;
|
|
1298
1554
|
acct: string;
|
|
1555
|
+
uri: string;
|
|
1299
1556
|
display_name: string;
|
|
1300
|
-
note: string;
|
|
1301
1557
|
avatar: string;
|
|
1302
1558
|
avatar_static: string;
|
|
1303
1559
|
header: string;
|
|
1304
1560
|
header_static: string;
|
|
1305
1561
|
locked: boolean;
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
|
|
1562
|
+
source: {
|
|
1563
|
+
note: string;
|
|
1564
|
+
fields: {
|
|
1565
|
+
value: string;
|
|
1566
|
+
name: string;
|
|
1567
|
+
verified_at: string | null;
|
|
1568
|
+
}[];
|
|
1569
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
1570
|
+
sensitive: boolean;
|
|
1571
|
+
language: string;
|
|
1572
|
+
follow_requests_count: number;
|
|
1573
|
+
};
|
|
1311
1574
|
emojis: {
|
|
1312
1575
|
url: string;
|
|
1313
1576
|
shortcode: string;
|
|
@@ -1329,20 +1592,33 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1329
1592
|
}, {
|
|
1330
1593
|
id: string;
|
|
1331
1594
|
url: string;
|
|
1595
|
+
note: string;
|
|
1596
|
+
fields: {
|
|
1597
|
+
value: string;
|
|
1598
|
+
name: string;
|
|
1599
|
+
verified_at: string | null;
|
|
1600
|
+
}[];
|
|
1332
1601
|
username: string;
|
|
1333
1602
|
acct: string;
|
|
1603
|
+
uri: string;
|
|
1334
1604
|
display_name: string;
|
|
1335
|
-
note: string;
|
|
1336
1605
|
avatar: string;
|
|
1337
1606
|
avatar_static: string;
|
|
1338
1607
|
header: string;
|
|
1339
1608
|
header_static: string;
|
|
1340
1609
|
locked: boolean;
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1610
|
+
source: {
|
|
1611
|
+
note: string;
|
|
1612
|
+
fields: {
|
|
1613
|
+
value: string;
|
|
1614
|
+
name: string;
|
|
1615
|
+
verified_at: string | null;
|
|
1616
|
+
}[];
|
|
1617
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
1618
|
+
sensitive: boolean;
|
|
1619
|
+
language: string;
|
|
1620
|
+
follow_requests_count: number;
|
|
1621
|
+
};
|
|
1346
1622
|
emojis: {
|
|
1347
1623
|
url: string;
|
|
1348
1624
|
shortcode: string;
|
|
@@ -1365,20 +1641,33 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1365
1641
|
}>, "strip", z.ZodTypeAny, {
|
|
1366
1642
|
id: string;
|
|
1367
1643
|
url: string;
|
|
1644
|
+
note: string;
|
|
1645
|
+
fields: {
|
|
1646
|
+
value: string;
|
|
1647
|
+
name: string;
|
|
1648
|
+
verified_at: string | null;
|
|
1649
|
+
}[];
|
|
1368
1650
|
username: string;
|
|
1369
1651
|
acct: string;
|
|
1652
|
+
uri: string;
|
|
1370
1653
|
display_name: string;
|
|
1371
|
-
note: string;
|
|
1372
1654
|
avatar: string;
|
|
1373
1655
|
avatar_static: string;
|
|
1374
1656
|
header: string;
|
|
1375
1657
|
header_static: string;
|
|
1376
1658
|
locked: boolean;
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
|
|
1659
|
+
source: {
|
|
1660
|
+
note: string;
|
|
1661
|
+
fields: {
|
|
1662
|
+
value: string;
|
|
1663
|
+
name: string;
|
|
1664
|
+
verified_at: string | null;
|
|
1665
|
+
}[];
|
|
1666
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
1667
|
+
sensitive: boolean;
|
|
1668
|
+
language: string;
|
|
1669
|
+
follow_requests_count: number;
|
|
1670
|
+
};
|
|
1382
1671
|
emojis: {
|
|
1383
1672
|
url: string;
|
|
1384
1673
|
shortcode: string;
|
|
@@ -1400,20 +1689,33 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1400
1689
|
moved?: {
|
|
1401
1690
|
id: string;
|
|
1402
1691
|
url: string;
|
|
1692
|
+
note: string;
|
|
1693
|
+
fields: {
|
|
1694
|
+
value: string;
|
|
1695
|
+
name: string;
|
|
1696
|
+
verified_at: string | null;
|
|
1697
|
+
}[];
|
|
1403
1698
|
username: string;
|
|
1404
1699
|
acct: string;
|
|
1700
|
+
uri: string;
|
|
1405
1701
|
display_name: string;
|
|
1406
|
-
note: string;
|
|
1407
1702
|
avatar: string;
|
|
1408
1703
|
avatar_static: string;
|
|
1409
1704
|
header: string;
|
|
1410
1705
|
header_static: string;
|
|
1411
1706
|
locked: boolean;
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
|
|
1707
|
+
source: {
|
|
1708
|
+
note: string;
|
|
1709
|
+
fields: {
|
|
1710
|
+
value: string;
|
|
1711
|
+
name: string;
|
|
1712
|
+
verified_at: string | null;
|
|
1713
|
+
}[];
|
|
1714
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
1715
|
+
sensitive: boolean;
|
|
1716
|
+
language: string;
|
|
1717
|
+
follow_requests_count: number;
|
|
1718
|
+
};
|
|
1417
1719
|
emojis: {
|
|
1418
1720
|
url: string;
|
|
1419
1721
|
shortcode: string;
|
|
@@ -1436,20 +1738,33 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1436
1738
|
}, {
|
|
1437
1739
|
id: string;
|
|
1438
1740
|
url: string;
|
|
1741
|
+
note: string;
|
|
1742
|
+
fields: {
|
|
1743
|
+
value: string;
|
|
1744
|
+
name: string;
|
|
1745
|
+
verified_at: string | null;
|
|
1746
|
+
}[];
|
|
1439
1747
|
username: string;
|
|
1440
1748
|
acct: string;
|
|
1749
|
+
uri: string;
|
|
1441
1750
|
display_name: string;
|
|
1442
|
-
note: string;
|
|
1443
1751
|
avatar: string;
|
|
1444
1752
|
avatar_static: string;
|
|
1445
1753
|
header: string;
|
|
1446
1754
|
header_static: string;
|
|
1447
1755
|
locked: boolean;
|
|
1448
|
-
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
|
|
1452
|
-
|
|
1756
|
+
source: {
|
|
1757
|
+
note: string;
|
|
1758
|
+
fields: {
|
|
1759
|
+
value: string;
|
|
1760
|
+
name: string;
|
|
1761
|
+
verified_at: string | null;
|
|
1762
|
+
}[];
|
|
1763
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
1764
|
+
sensitive: boolean;
|
|
1765
|
+
language: string;
|
|
1766
|
+
follow_requests_count: number;
|
|
1767
|
+
};
|
|
1453
1768
|
emojis: {
|
|
1454
1769
|
url: string;
|
|
1455
1770
|
shortcode: string;
|
|
@@ -1471,20 +1786,33 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1471
1786
|
moved?: {
|
|
1472
1787
|
id: string;
|
|
1473
1788
|
url: string;
|
|
1789
|
+
note: string;
|
|
1790
|
+
fields: {
|
|
1791
|
+
value: string;
|
|
1792
|
+
name: string;
|
|
1793
|
+
verified_at: string | null;
|
|
1794
|
+
}[];
|
|
1474
1795
|
username: string;
|
|
1475
1796
|
acct: string;
|
|
1797
|
+
uri: string;
|
|
1476
1798
|
display_name: string;
|
|
1477
|
-
note: string;
|
|
1478
1799
|
avatar: string;
|
|
1479
1800
|
avatar_static: string;
|
|
1480
1801
|
header: string;
|
|
1481
1802
|
header_static: string;
|
|
1482
1803
|
locked: boolean;
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
|
|
1804
|
+
source: {
|
|
1805
|
+
note: string;
|
|
1806
|
+
fields: {
|
|
1807
|
+
value: string;
|
|
1808
|
+
name: string;
|
|
1809
|
+
verified_at: string | null;
|
|
1810
|
+
}[];
|
|
1811
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
1812
|
+
sensitive: boolean;
|
|
1813
|
+
language: string;
|
|
1814
|
+
follow_requests_count: number;
|
|
1815
|
+
};
|
|
1488
1816
|
emojis: {
|
|
1489
1817
|
url: string;
|
|
1490
1818
|
shortcode: string;
|
|
@@ -1512,13 +1840,13 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1512
1840
|
media_attachments: z.ZodArray<z.ZodUnion<[z.ZodObject<z.objectUtil.extendShape<{
|
|
1513
1841
|
id: z.ZodString;
|
|
1514
1842
|
url: z.ZodString;
|
|
1515
|
-
preview_url: z.ZodString
|
|
1843
|
+
preview_url: z.ZodNullable<z.ZodString>;
|
|
1516
1844
|
remote_url: z.ZodNullable<z.ZodString>;
|
|
1517
1845
|
description: z.ZodNullable<z.ZodString>;
|
|
1518
|
-
bluehash: z.ZodString
|
|
1846
|
+
bluehash: z.ZodNullable<z.ZodString>;
|
|
1519
1847
|
}, {
|
|
1520
1848
|
type: z.ZodLiteral<"image">;
|
|
1521
|
-
meta: z.ZodObject<{
|
|
1849
|
+
meta: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1522
1850
|
original: z.ZodObject<{
|
|
1523
1851
|
width: z.ZodNumber;
|
|
1524
1852
|
height: z.ZodNumber;
|
|
@@ -1595,16 +1923,16 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1595
1923
|
x: number;
|
|
1596
1924
|
y: number;
|
|
1597
1925
|
} | null | undefined;
|
|
1598
|
-
}
|
|
1926
|
+
}>>>;
|
|
1599
1927
|
}>, "strip", z.ZodTypeAny, {
|
|
1600
1928
|
id: string;
|
|
1601
1929
|
type: "image";
|
|
1602
1930
|
description: string | null;
|
|
1603
1931
|
url: string;
|
|
1604
|
-
preview_url: string;
|
|
1932
|
+
preview_url: string | null;
|
|
1605
1933
|
remote_url: string | null;
|
|
1606
|
-
bluehash: string;
|
|
1607
|
-
meta
|
|
1934
|
+
bluehash: string | null;
|
|
1935
|
+
meta?: {
|
|
1608
1936
|
original: {
|
|
1609
1937
|
width: number;
|
|
1610
1938
|
height: number;
|
|
@@ -1621,16 +1949,16 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1621
1949
|
x: number;
|
|
1622
1950
|
y: number;
|
|
1623
1951
|
} | null | undefined;
|
|
1624
|
-
};
|
|
1952
|
+
} | null | undefined;
|
|
1625
1953
|
}, {
|
|
1626
1954
|
id: string;
|
|
1627
1955
|
type: "image";
|
|
1628
1956
|
description: string | null;
|
|
1629
1957
|
url: string;
|
|
1630
|
-
preview_url: string;
|
|
1958
|
+
preview_url: string | null;
|
|
1631
1959
|
remote_url: string | null;
|
|
1632
|
-
bluehash: string;
|
|
1633
|
-
meta
|
|
1960
|
+
bluehash: string | null;
|
|
1961
|
+
meta?: {
|
|
1634
1962
|
original: {
|
|
1635
1963
|
width: number;
|
|
1636
1964
|
height: number;
|
|
@@ -1647,20 +1975,20 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1647
1975
|
x: number;
|
|
1648
1976
|
y: number;
|
|
1649
1977
|
} | null | undefined;
|
|
1650
|
-
};
|
|
1978
|
+
} | null | undefined;
|
|
1651
1979
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1652
1980
|
id: z.ZodString;
|
|
1653
1981
|
url: z.ZodString;
|
|
1654
|
-
preview_url: z.ZodString
|
|
1982
|
+
preview_url: z.ZodNullable<z.ZodString>;
|
|
1655
1983
|
remote_url: z.ZodNullable<z.ZodString>;
|
|
1656
1984
|
description: z.ZodNullable<z.ZodString>;
|
|
1657
|
-
bluehash: z.ZodString
|
|
1985
|
+
bluehash: z.ZodNullable<z.ZodString>;
|
|
1658
1986
|
}, {
|
|
1659
1987
|
type: z.ZodLiteral<"gifv">;
|
|
1660
|
-
meta: z.ZodObject<{
|
|
1661
|
-
length: z.ZodString
|
|
1662
|
-
duration: z.ZodNumber
|
|
1663
|
-
fps: z.ZodNumber
|
|
1988
|
+
meta: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1989
|
+
length: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1990
|
+
duration: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1991
|
+
fps: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1664
1992
|
size: z.ZodString;
|
|
1665
1993
|
width: z.ZodNumber;
|
|
1666
1994
|
height: z.ZodNumber;
|
|
@@ -1668,21 +1996,21 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1668
1996
|
original: z.ZodObject<{
|
|
1669
1997
|
width: z.ZodNumber;
|
|
1670
1998
|
height: z.ZodNumber;
|
|
1671
|
-
frame_rate: z.ZodString
|
|
1672
|
-
duration: z.ZodNumber
|
|
1673
|
-
bitrate: z.ZodNumber
|
|
1999
|
+
frame_rate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2000
|
+
duration: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2001
|
+
bitrate: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1674
2002
|
}, "strip", z.ZodTypeAny, {
|
|
1675
2003
|
width: number;
|
|
1676
2004
|
height: number;
|
|
1677
|
-
duration
|
|
1678
|
-
frame_rate
|
|
1679
|
-
bitrate
|
|
2005
|
+
duration?: number | null | undefined;
|
|
2006
|
+
frame_rate?: string | null | undefined;
|
|
2007
|
+
bitrate?: number | null | undefined;
|
|
1680
2008
|
}, {
|
|
1681
2009
|
width: number;
|
|
1682
2010
|
height: number;
|
|
1683
|
-
duration
|
|
1684
|
-
frame_rate
|
|
1685
|
-
bitrate
|
|
2011
|
+
duration?: number | null | undefined;
|
|
2012
|
+
frame_rate?: string | null | undefined;
|
|
2013
|
+
bitrate?: number | null | undefined;
|
|
1686
2014
|
}>;
|
|
1687
2015
|
small: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1688
2016
|
width: z.ZodNumber;
|
|
@@ -1701,20 +2029,20 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1701
2029
|
aspect: number;
|
|
1702
2030
|
}>>>;
|
|
1703
2031
|
}, "strip", z.ZodTypeAny, {
|
|
1704
|
-
length: string;
|
|
1705
2032
|
width: number;
|
|
1706
2033
|
height: number;
|
|
1707
|
-
duration: number;
|
|
1708
|
-
fps: number;
|
|
1709
2034
|
size: string;
|
|
1710
2035
|
aspect: number;
|
|
1711
2036
|
original: {
|
|
1712
2037
|
width: number;
|
|
1713
2038
|
height: number;
|
|
1714
|
-
duration
|
|
1715
|
-
frame_rate
|
|
1716
|
-
bitrate
|
|
2039
|
+
duration?: number | null | undefined;
|
|
2040
|
+
frame_rate?: string | null | undefined;
|
|
2041
|
+
bitrate?: number | null | undefined;
|
|
1717
2042
|
};
|
|
2043
|
+
length?: string | null | undefined;
|
|
2044
|
+
duration?: number | null | undefined;
|
|
2045
|
+
fps?: number | null | undefined;
|
|
1718
2046
|
small?: {
|
|
1719
2047
|
width: number;
|
|
1720
2048
|
height: number;
|
|
@@ -1722,125 +2050,125 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1722
2050
|
aspect: number;
|
|
1723
2051
|
} | null | undefined;
|
|
1724
2052
|
}, {
|
|
1725
|
-
length: string;
|
|
1726
2053
|
width: number;
|
|
1727
2054
|
height: number;
|
|
1728
|
-
duration: number;
|
|
1729
|
-
fps: number;
|
|
1730
2055
|
size: string;
|
|
1731
2056
|
aspect: number;
|
|
1732
2057
|
original: {
|
|
1733
2058
|
width: number;
|
|
1734
2059
|
height: number;
|
|
1735
|
-
duration
|
|
1736
|
-
frame_rate
|
|
1737
|
-
bitrate
|
|
2060
|
+
duration?: number | null | undefined;
|
|
2061
|
+
frame_rate?: string | null | undefined;
|
|
2062
|
+
bitrate?: number | null | undefined;
|
|
1738
2063
|
};
|
|
2064
|
+
length?: string | null | undefined;
|
|
2065
|
+
duration?: number | null | undefined;
|
|
2066
|
+
fps?: number | null | undefined;
|
|
1739
2067
|
small?: {
|
|
1740
2068
|
width: number;
|
|
1741
2069
|
height: number;
|
|
1742
2070
|
size: string;
|
|
1743
2071
|
aspect: number;
|
|
1744
2072
|
} | null | undefined;
|
|
1745
|
-
}
|
|
2073
|
+
}>>>;
|
|
1746
2074
|
}>, "strip", z.ZodTypeAny, {
|
|
1747
2075
|
id: string;
|
|
1748
2076
|
type: "gifv";
|
|
1749
2077
|
description: string | null;
|
|
1750
2078
|
url: string;
|
|
1751
|
-
preview_url: string;
|
|
2079
|
+
preview_url: string | null;
|
|
1752
2080
|
remote_url: string | null;
|
|
1753
|
-
bluehash: string;
|
|
1754
|
-
meta
|
|
1755
|
-
length: string;
|
|
2081
|
+
bluehash: string | null;
|
|
2082
|
+
meta?: {
|
|
1756
2083
|
width: number;
|
|
1757
2084
|
height: number;
|
|
1758
|
-
duration: number;
|
|
1759
|
-
fps: number;
|
|
1760
2085
|
size: string;
|
|
1761
2086
|
aspect: number;
|
|
1762
2087
|
original: {
|
|
1763
2088
|
width: number;
|
|
1764
2089
|
height: number;
|
|
1765
|
-
duration
|
|
1766
|
-
frame_rate
|
|
1767
|
-
bitrate
|
|
2090
|
+
duration?: number | null | undefined;
|
|
2091
|
+
frame_rate?: string | null | undefined;
|
|
2092
|
+
bitrate?: number | null | undefined;
|
|
1768
2093
|
};
|
|
2094
|
+
length?: string | null | undefined;
|
|
2095
|
+
duration?: number | null | undefined;
|
|
2096
|
+
fps?: number | null | undefined;
|
|
1769
2097
|
small?: {
|
|
1770
2098
|
width: number;
|
|
1771
2099
|
height: number;
|
|
1772
2100
|
size: string;
|
|
1773
2101
|
aspect: number;
|
|
1774
2102
|
} | null | undefined;
|
|
1775
|
-
};
|
|
2103
|
+
} | null | undefined;
|
|
1776
2104
|
}, {
|
|
1777
2105
|
id: string;
|
|
1778
2106
|
type: "gifv";
|
|
1779
2107
|
description: string | null;
|
|
1780
2108
|
url: string;
|
|
1781
|
-
preview_url: string;
|
|
2109
|
+
preview_url: string | null;
|
|
1782
2110
|
remote_url: string | null;
|
|
1783
|
-
bluehash: string;
|
|
1784
|
-
meta
|
|
1785
|
-
length: string;
|
|
2111
|
+
bluehash: string | null;
|
|
2112
|
+
meta?: {
|
|
1786
2113
|
width: number;
|
|
1787
2114
|
height: number;
|
|
1788
|
-
duration: number;
|
|
1789
|
-
fps: number;
|
|
1790
2115
|
size: string;
|
|
1791
2116
|
aspect: number;
|
|
1792
2117
|
original: {
|
|
1793
2118
|
width: number;
|
|
1794
2119
|
height: number;
|
|
1795
|
-
duration
|
|
1796
|
-
frame_rate
|
|
1797
|
-
bitrate
|
|
2120
|
+
duration?: number | null | undefined;
|
|
2121
|
+
frame_rate?: string | null | undefined;
|
|
2122
|
+
bitrate?: number | null | undefined;
|
|
1798
2123
|
};
|
|
2124
|
+
length?: string | null | undefined;
|
|
2125
|
+
duration?: number | null | undefined;
|
|
2126
|
+
fps?: number | null | undefined;
|
|
1799
2127
|
small?: {
|
|
1800
2128
|
width: number;
|
|
1801
2129
|
height: number;
|
|
1802
2130
|
size: string;
|
|
1803
2131
|
aspect: number;
|
|
1804
2132
|
} | null | undefined;
|
|
1805
|
-
};
|
|
2133
|
+
} | null | undefined;
|
|
1806
2134
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1807
2135
|
id: z.ZodString;
|
|
1808
2136
|
url: z.ZodString;
|
|
1809
|
-
preview_url: z.ZodString
|
|
2137
|
+
preview_url: z.ZodNullable<z.ZodString>;
|
|
1810
2138
|
remote_url: z.ZodNullable<z.ZodString>;
|
|
1811
2139
|
description: z.ZodNullable<z.ZodString>;
|
|
1812
|
-
bluehash: z.ZodString
|
|
2140
|
+
bluehash: z.ZodNullable<z.ZodString>;
|
|
1813
2141
|
}, {
|
|
1814
2142
|
type: z.ZodLiteral<"video">;
|
|
1815
|
-
meta: z.ZodObject<{
|
|
1816
|
-
length: z.ZodString
|
|
1817
|
-
duration: z.ZodNumber
|
|
1818
|
-
fps: z.ZodNumber
|
|
2143
|
+
meta: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2144
|
+
length: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2145
|
+
duration: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2146
|
+
fps: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1819
2147
|
size: z.ZodString;
|
|
1820
2148
|
width: z.ZodNumber;
|
|
1821
2149
|
height: z.ZodNumber;
|
|
1822
2150
|
aspect: z.ZodNumber;
|
|
1823
|
-
audio_encode: z.ZodString
|
|
1824
|
-
audio_bitrate: z.ZodString
|
|
1825
|
-
audio_channels: z.ZodString
|
|
2151
|
+
audio_encode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2152
|
+
audio_bitrate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2153
|
+
audio_channels: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1826
2154
|
original: z.ZodObject<{
|
|
1827
2155
|
width: z.ZodNumber;
|
|
1828
2156
|
height: z.ZodNumber;
|
|
1829
|
-
frame_rate: z.ZodString
|
|
1830
|
-
duration: z.ZodNumber
|
|
1831
|
-
bitrate: z.ZodNumber
|
|
2157
|
+
frame_rate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2158
|
+
duration: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2159
|
+
bitrate: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1832
2160
|
}, "strip", z.ZodTypeAny, {
|
|
1833
2161
|
width: number;
|
|
1834
2162
|
height: number;
|
|
1835
|
-
duration
|
|
1836
|
-
frame_rate
|
|
1837
|
-
bitrate
|
|
2163
|
+
duration?: number | null | undefined;
|
|
2164
|
+
frame_rate?: string | null | undefined;
|
|
2165
|
+
bitrate?: number | null | undefined;
|
|
1838
2166
|
}, {
|
|
1839
2167
|
width: number;
|
|
1840
2168
|
height: number;
|
|
1841
|
-
duration
|
|
1842
|
-
frame_rate
|
|
1843
|
-
bitrate
|
|
2169
|
+
duration?: number | null | undefined;
|
|
2170
|
+
frame_rate?: string | null | undefined;
|
|
2171
|
+
bitrate?: number | null | undefined;
|
|
1844
2172
|
}>;
|
|
1845
2173
|
small: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1846
2174
|
width: z.ZodNumber;
|
|
@@ -1859,211 +2187,211 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1859
2187
|
aspect: number;
|
|
1860
2188
|
}>>>;
|
|
1861
2189
|
}, "strip", z.ZodTypeAny, {
|
|
1862
|
-
length: string;
|
|
1863
2190
|
width: number;
|
|
1864
2191
|
height: number;
|
|
1865
|
-
duration: number;
|
|
1866
|
-
fps: number;
|
|
1867
2192
|
size: string;
|
|
1868
2193
|
aspect: number;
|
|
1869
2194
|
original: {
|
|
1870
2195
|
width: number;
|
|
1871
2196
|
height: number;
|
|
1872
|
-
duration
|
|
1873
|
-
frame_rate
|
|
1874
|
-
bitrate
|
|
2197
|
+
duration?: number | null | undefined;
|
|
2198
|
+
frame_rate?: string | null | undefined;
|
|
2199
|
+
bitrate?: number | null | undefined;
|
|
1875
2200
|
};
|
|
1876
|
-
|
|
1877
|
-
|
|
1878
|
-
|
|
2201
|
+
length?: string | null | undefined;
|
|
2202
|
+
duration?: number | null | undefined;
|
|
2203
|
+
fps?: number | null | undefined;
|
|
1879
2204
|
small?: {
|
|
1880
2205
|
width: number;
|
|
1881
2206
|
height: number;
|
|
1882
2207
|
size: string;
|
|
1883
2208
|
aspect: number;
|
|
1884
2209
|
} | null | undefined;
|
|
2210
|
+
audio_encode?: string | null | undefined;
|
|
2211
|
+
audio_bitrate?: string | null | undefined;
|
|
2212
|
+
audio_channels?: string | null | undefined;
|
|
1885
2213
|
}, {
|
|
1886
|
-
length: string;
|
|
1887
2214
|
width: number;
|
|
1888
2215
|
height: number;
|
|
1889
|
-
duration: number;
|
|
1890
|
-
fps: number;
|
|
1891
2216
|
size: string;
|
|
1892
2217
|
aspect: number;
|
|
1893
2218
|
original: {
|
|
1894
2219
|
width: number;
|
|
1895
2220
|
height: number;
|
|
1896
|
-
duration
|
|
1897
|
-
frame_rate
|
|
1898
|
-
bitrate
|
|
2221
|
+
duration?: number | null | undefined;
|
|
2222
|
+
frame_rate?: string | null | undefined;
|
|
2223
|
+
bitrate?: number | null | undefined;
|
|
1899
2224
|
};
|
|
1900
|
-
|
|
1901
|
-
|
|
1902
|
-
|
|
2225
|
+
length?: string | null | undefined;
|
|
2226
|
+
duration?: number | null | undefined;
|
|
2227
|
+
fps?: number | null | undefined;
|
|
1903
2228
|
small?: {
|
|
1904
2229
|
width: number;
|
|
1905
2230
|
height: number;
|
|
1906
2231
|
size: string;
|
|
1907
2232
|
aspect: number;
|
|
1908
2233
|
} | null | undefined;
|
|
1909
|
-
|
|
2234
|
+
audio_encode?: string | null | undefined;
|
|
2235
|
+
audio_bitrate?: string | null | undefined;
|
|
2236
|
+
audio_channels?: string | null | undefined;
|
|
2237
|
+
}>>>;
|
|
1910
2238
|
}>, "strip", z.ZodTypeAny, {
|
|
1911
2239
|
id: string;
|
|
1912
2240
|
type: "video";
|
|
1913
2241
|
description: string | null;
|
|
1914
2242
|
url: string;
|
|
1915
|
-
preview_url: string;
|
|
2243
|
+
preview_url: string | null;
|
|
1916
2244
|
remote_url: string | null;
|
|
1917
|
-
bluehash: string;
|
|
1918
|
-
meta
|
|
1919
|
-
length: string;
|
|
2245
|
+
bluehash: string | null;
|
|
2246
|
+
meta?: {
|
|
1920
2247
|
width: number;
|
|
1921
2248
|
height: number;
|
|
1922
|
-
duration: number;
|
|
1923
|
-
fps: number;
|
|
1924
2249
|
size: string;
|
|
1925
2250
|
aspect: number;
|
|
1926
2251
|
original: {
|
|
1927
2252
|
width: number;
|
|
1928
2253
|
height: number;
|
|
1929
|
-
duration
|
|
1930
|
-
frame_rate
|
|
1931
|
-
bitrate
|
|
2254
|
+
duration?: number | null | undefined;
|
|
2255
|
+
frame_rate?: string | null | undefined;
|
|
2256
|
+
bitrate?: number | null | undefined;
|
|
1932
2257
|
};
|
|
1933
|
-
|
|
1934
|
-
|
|
1935
|
-
|
|
2258
|
+
length?: string | null | undefined;
|
|
2259
|
+
duration?: number | null | undefined;
|
|
2260
|
+
fps?: number | null | undefined;
|
|
1936
2261
|
small?: {
|
|
1937
2262
|
width: number;
|
|
1938
2263
|
height: number;
|
|
1939
2264
|
size: string;
|
|
1940
2265
|
aspect: number;
|
|
1941
2266
|
} | null | undefined;
|
|
1942
|
-
|
|
2267
|
+
audio_encode?: string | null | undefined;
|
|
2268
|
+
audio_bitrate?: string | null | undefined;
|
|
2269
|
+
audio_channels?: string | null | undefined;
|
|
2270
|
+
} | null | undefined;
|
|
1943
2271
|
}, {
|
|
1944
2272
|
id: string;
|
|
1945
2273
|
type: "video";
|
|
1946
2274
|
description: string | null;
|
|
1947
2275
|
url: string;
|
|
1948
|
-
preview_url: string;
|
|
2276
|
+
preview_url: string | null;
|
|
1949
2277
|
remote_url: string | null;
|
|
1950
|
-
bluehash: string;
|
|
1951
|
-
meta
|
|
1952
|
-
length: string;
|
|
2278
|
+
bluehash: string | null;
|
|
2279
|
+
meta?: {
|
|
1953
2280
|
width: number;
|
|
1954
2281
|
height: number;
|
|
1955
|
-
duration: number;
|
|
1956
|
-
fps: number;
|
|
1957
2282
|
size: string;
|
|
1958
2283
|
aspect: number;
|
|
1959
2284
|
original: {
|
|
1960
2285
|
width: number;
|
|
1961
2286
|
height: number;
|
|
1962
|
-
duration
|
|
1963
|
-
frame_rate
|
|
1964
|
-
bitrate
|
|
2287
|
+
duration?: number | null | undefined;
|
|
2288
|
+
frame_rate?: string | null | undefined;
|
|
2289
|
+
bitrate?: number | null | undefined;
|
|
1965
2290
|
};
|
|
1966
|
-
|
|
1967
|
-
|
|
1968
|
-
|
|
2291
|
+
length?: string | null | undefined;
|
|
2292
|
+
duration?: number | null | undefined;
|
|
2293
|
+
fps?: number | null | undefined;
|
|
1969
2294
|
small?: {
|
|
1970
2295
|
width: number;
|
|
1971
2296
|
height: number;
|
|
1972
2297
|
size: string;
|
|
1973
2298
|
aspect: number;
|
|
1974
2299
|
} | null | undefined;
|
|
1975
|
-
|
|
2300
|
+
audio_encode?: string | null | undefined;
|
|
2301
|
+
audio_bitrate?: string | null | undefined;
|
|
2302
|
+
audio_channels?: string | null | undefined;
|
|
2303
|
+
} | null | undefined;
|
|
1976
2304
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
1977
2305
|
id: z.ZodString;
|
|
1978
2306
|
url: z.ZodString;
|
|
1979
|
-
preview_url: z.ZodString
|
|
2307
|
+
preview_url: z.ZodNullable<z.ZodString>;
|
|
1980
2308
|
remote_url: z.ZodNullable<z.ZodString>;
|
|
1981
2309
|
description: z.ZodNullable<z.ZodString>;
|
|
1982
|
-
bluehash: z.ZodString
|
|
2310
|
+
bluehash: z.ZodNullable<z.ZodString>;
|
|
1983
2311
|
}, {
|
|
1984
2312
|
type: z.ZodLiteral<"audio">;
|
|
1985
2313
|
meta: z.ZodObject<{
|
|
1986
2314
|
length: z.ZodString;
|
|
1987
2315
|
duration: z.ZodNumber;
|
|
1988
|
-
audio_encode: z.ZodString
|
|
1989
|
-
audio_bitrate: z.ZodString
|
|
1990
|
-
audio_channels: z.ZodString
|
|
2316
|
+
audio_encode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2317
|
+
audio_bitrate: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2318
|
+
audio_channels: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1991
2319
|
original: z.ZodObject<{
|
|
1992
2320
|
duration: z.ZodNumber;
|
|
1993
|
-
bitrate: z.ZodNumber
|
|
2321
|
+
bitrate: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1994
2322
|
}, "strip", z.ZodTypeAny, {
|
|
1995
2323
|
duration: number;
|
|
1996
|
-
bitrate
|
|
2324
|
+
bitrate?: number | null | undefined;
|
|
1997
2325
|
}, {
|
|
1998
2326
|
duration: number;
|
|
1999
|
-
bitrate
|
|
2327
|
+
bitrate?: number | null | undefined;
|
|
2000
2328
|
}>;
|
|
2001
2329
|
}, "strip", z.ZodTypeAny, {
|
|
2002
2330
|
length: string;
|
|
2003
2331
|
duration: number;
|
|
2004
2332
|
original: {
|
|
2005
2333
|
duration: number;
|
|
2006
|
-
bitrate
|
|
2334
|
+
bitrate?: number | null | undefined;
|
|
2007
2335
|
};
|
|
2008
|
-
audio_encode
|
|
2009
|
-
audio_bitrate
|
|
2010
|
-
audio_channels
|
|
2336
|
+
audio_encode?: string | null | undefined;
|
|
2337
|
+
audio_bitrate?: string | null | undefined;
|
|
2338
|
+
audio_channels?: string | null | undefined;
|
|
2011
2339
|
}, {
|
|
2012
2340
|
length: string;
|
|
2013
2341
|
duration: number;
|
|
2014
2342
|
original: {
|
|
2015
2343
|
duration: number;
|
|
2016
|
-
bitrate
|
|
2344
|
+
bitrate?: number | null | undefined;
|
|
2017
2345
|
};
|
|
2018
|
-
audio_encode
|
|
2019
|
-
audio_bitrate
|
|
2020
|
-
audio_channels
|
|
2346
|
+
audio_encode?: string | null | undefined;
|
|
2347
|
+
audio_bitrate?: string | null | undefined;
|
|
2348
|
+
audio_channels?: string | null | undefined;
|
|
2021
2349
|
}>;
|
|
2022
2350
|
}>, "strip", z.ZodTypeAny, {
|
|
2023
2351
|
id: string;
|
|
2024
2352
|
type: "audio";
|
|
2025
2353
|
description: string | null;
|
|
2026
2354
|
url: string;
|
|
2027
|
-
preview_url: string;
|
|
2355
|
+
preview_url: string | null;
|
|
2028
2356
|
remote_url: string | null;
|
|
2029
|
-
bluehash: string;
|
|
2357
|
+
bluehash: string | null;
|
|
2030
2358
|
meta: {
|
|
2031
2359
|
length: string;
|
|
2032
2360
|
duration: number;
|
|
2033
2361
|
original: {
|
|
2034
2362
|
duration: number;
|
|
2035
|
-
bitrate
|
|
2363
|
+
bitrate?: number | null | undefined;
|
|
2036
2364
|
};
|
|
2037
|
-
audio_encode
|
|
2038
|
-
audio_bitrate
|
|
2039
|
-
audio_channels
|
|
2365
|
+
audio_encode?: string | null | undefined;
|
|
2366
|
+
audio_bitrate?: string | null | undefined;
|
|
2367
|
+
audio_channels?: string | null | undefined;
|
|
2040
2368
|
};
|
|
2041
2369
|
}, {
|
|
2042
2370
|
id: string;
|
|
2043
2371
|
type: "audio";
|
|
2044
2372
|
description: string | null;
|
|
2045
2373
|
url: string;
|
|
2046
|
-
preview_url: string;
|
|
2374
|
+
preview_url: string | null;
|
|
2047
2375
|
remote_url: string | null;
|
|
2048
|
-
bluehash: string;
|
|
2376
|
+
bluehash: string | null;
|
|
2049
2377
|
meta: {
|
|
2050
2378
|
length: string;
|
|
2051
2379
|
duration: number;
|
|
2052
2380
|
original: {
|
|
2053
2381
|
duration: number;
|
|
2054
|
-
bitrate
|
|
2382
|
+
bitrate?: number | null | undefined;
|
|
2055
2383
|
};
|
|
2056
|
-
audio_encode
|
|
2057
|
-
audio_bitrate
|
|
2058
|
-
audio_channels
|
|
2384
|
+
audio_encode?: string | null | undefined;
|
|
2385
|
+
audio_bitrate?: string | null | undefined;
|
|
2386
|
+
audio_channels?: string | null | undefined;
|
|
2059
2387
|
};
|
|
2060
2388
|
}>, z.ZodObject<z.objectUtil.extendShape<{
|
|
2061
2389
|
id: z.ZodString;
|
|
2062
2390
|
url: z.ZodString;
|
|
2063
|
-
preview_url: z.ZodString
|
|
2391
|
+
preview_url: z.ZodNullable<z.ZodString>;
|
|
2064
2392
|
remote_url: z.ZodNullable<z.ZodString>;
|
|
2065
2393
|
description: z.ZodNullable<z.ZodString>;
|
|
2066
|
-
bluehash: z.ZodString
|
|
2394
|
+
bluehash: z.ZodNullable<z.ZodString>;
|
|
2067
2395
|
}, {
|
|
2068
2396
|
type: z.ZodLiteral<"unknown">;
|
|
2069
2397
|
}>, "strip", z.ZodTypeAny, {
|
|
@@ -2071,17 +2399,17 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2071
2399
|
type: "unknown";
|
|
2072
2400
|
description: string | null;
|
|
2073
2401
|
url: string;
|
|
2074
|
-
preview_url: string;
|
|
2402
|
+
preview_url: string | null;
|
|
2075
2403
|
remote_url: string | null;
|
|
2076
|
-
bluehash: string;
|
|
2404
|
+
bluehash: string | null;
|
|
2077
2405
|
}, {
|
|
2078
2406
|
id: string;
|
|
2079
2407
|
type: "unknown";
|
|
2080
2408
|
description: string | null;
|
|
2081
2409
|
url: string;
|
|
2082
|
-
preview_url: string;
|
|
2410
|
+
preview_url: string | null;
|
|
2083
2411
|
remote_url: string | null;
|
|
2084
|
-
bluehash: string;
|
|
2412
|
+
bluehash: string | null;
|
|
2085
2413
|
}>]>, "many">;
|
|
2086
2414
|
application: z.ZodOptional<z.ZodObject<{
|
|
2087
2415
|
name: z.ZodString;
|
|
@@ -2285,7 +2613,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2285
2613
|
}, "strip", z.ZodTypeAny, {
|
|
2286
2614
|
id: string;
|
|
2287
2615
|
title: string;
|
|
2288
|
-
context: ("
|
|
2616
|
+
context: ("public" | "home" | "notifications" | "thread" | "account")[];
|
|
2289
2617
|
expires_at: string | null;
|
|
2290
2618
|
filter_action: "warn" | "hide";
|
|
2291
2619
|
keywords: {
|
|
@@ -2300,7 +2628,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2300
2628
|
}, {
|
|
2301
2629
|
id: string;
|
|
2302
2630
|
title: string;
|
|
2303
|
-
context: ("
|
|
2631
|
+
context: ("public" | "home" | "notifications" | "thread" | "account")[];
|
|
2304
2632
|
expires_at: string | null;
|
|
2305
2633
|
filter_action: "warn" | "hide";
|
|
2306
2634
|
keywords: {
|
|
@@ -2319,7 +2647,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2319
2647
|
filter: {
|
|
2320
2648
|
id: string;
|
|
2321
2649
|
title: string;
|
|
2322
|
-
context: ("
|
|
2650
|
+
context: ("public" | "home" | "notifications" | "thread" | "account")[];
|
|
2323
2651
|
expires_at: string | null;
|
|
2324
2652
|
filter_action: "warn" | "hide";
|
|
2325
2653
|
keywords: {
|
|
@@ -2338,7 +2666,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2338
2666
|
filter: {
|
|
2339
2667
|
id: string;
|
|
2340
2668
|
title: string;
|
|
2341
|
-
context: ("
|
|
2669
|
+
context: ("public" | "home" | "notifications" | "thread" | "account")[];
|
|
2342
2670
|
expires_at: string | null;
|
|
2343
2671
|
filter_action: "warn" | "hide";
|
|
2344
2672
|
keywords: {
|
|
@@ -2358,6 +2686,9 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2358
2686
|
id: string;
|
|
2359
2687
|
url: string | null;
|
|
2360
2688
|
content: string;
|
|
2689
|
+
sensitive: boolean;
|
|
2690
|
+
language: string | null;
|
|
2691
|
+
uri: string;
|
|
2361
2692
|
emojis: {
|
|
2362
2693
|
url: string;
|
|
2363
2694
|
shortcode: string;
|
|
@@ -2369,20 +2700,33 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2369
2700
|
account: {
|
|
2370
2701
|
id: string;
|
|
2371
2702
|
url: string;
|
|
2703
|
+
note: string;
|
|
2704
|
+
fields: {
|
|
2705
|
+
value: string;
|
|
2706
|
+
name: string;
|
|
2707
|
+
verified_at: string | null;
|
|
2708
|
+
}[];
|
|
2372
2709
|
username: string;
|
|
2373
2710
|
acct: string;
|
|
2711
|
+
uri: string;
|
|
2374
2712
|
display_name: string;
|
|
2375
|
-
note: string;
|
|
2376
2713
|
avatar: string;
|
|
2377
2714
|
avatar_static: string;
|
|
2378
2715
|
header: string;
|
|
2379
2716
|
header_static: string;
|
|
2380
2717
|
locked: boolean;
|
|
2381
|
-
|
|
2382
|
-
|
|
2383
|
-
|
|
2384
|
-
|
|
2385
|
-
|
|
2718
|
+
source: {
|
|
2719
|
+
note: string;
|
|
2720
|
+
fields: {
|
|
2721
|
+
value: string;
|
|
2722
|
+
name: string;
|
|
2723
|
+
verified_at: string | null;
|
|
2724
|
+
}[];
|
|
2725
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
2726
|
+
sensitive: boolean;
|
|
2727
|
+
language: string;
|
|
2728
|
+
follow_requests_count: number;
|
|
2729
|
+
};
|
|
2386
2730
|
emojis: {
|
|
2387
2731
|
url: string;
|
|
2388
2732
|
shortcode: string;
|
|
@@ -2404,20 +2748,33 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2404
2748
|
moved?: {
|
|
2405
2749
|
id: string;
|
|
2406
2750
|
url: string;
|
|
2751
|
+
note: string;
|
|
2752
|
+
fields: {
|
|
2753
|
+
value: string;
|
|
2754
|
+
name: string;
|
|
2755
|
+
verified_at: string | null;
|
|
2756
|
+
}[];
|
|
2407
2757
|
username: string;
|
|
2408
2758
|
acct: string;
|
|
2759
|
+
uri: string;
|
|
2409
2760
|
display_name: string;
|
|
2410
|
-
note: string;
|
|
2411
2761
|
avatar: string;
|
|
2412
2762
|
avatar_static: string;
|
|
2413
2763
|
header: string;
|
|
2414
2764
|
header_static: string;
|
|
2415
2765
|
locked: boolean;
|
|
2416
|
-
|
|
2417
|
-
|
|
2418
|
-
|
|
2419
|
-
|
|
2420
|
-
|
|
2766
|
+
source: {
|
|
2767
|
+
note: string;
|
|
2768
|
+
fields: {
|
|
2769
|
+
value: string;
|
|
2770
|
+
name: string;
|
|
2771
|
+
verified_at: string | null;
|
|
2772
|
+
}[];
|
|
2773
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
2774
|
+
sensitive: boolean;
|
|
2775
|
+
language: string;
|
|
2776
|
+
follow_requests_count: number;
|
|
2777
|
+
};
|
|
2421
2778
|
emojis: {
|
|
2422
2779
|
url: string;
|
|
2423
2780
|
shortcode: string;
|
|
@@ -2438,49 +2795,47 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2438
2795
|
limited?: boolean | undefined;
|
|
2439
2796
|
} | null | undefined;
|
|
2440
2797
|
};
|
|
2441
|
-
uri: string;
|
|
2442
2798
|
visibility: "public" | "unlist" | "private" | "direct";
|
|
2443
|
-
sensitive: boolean;
|
|
2444
2799
|
spoiler_text: string;
|
|
2445
2800
|
media_attachments: ({
|
|
2446
2801
|
id: string;
|
|
2447
2802
|
type: "gifv";
|
|
2448
2803
|
description: string | null;
|
|
2449
2804
|
url: string;
|
|
2450
|
-
preview_url: string;
|
|
2805
|
+
preview_url: string | null;
|
|
2451
2806
|
remote_url: string | null;
|
|
2452
|
-
bluehash: string;
|
|
2453
|
-
meta
|
|
2454
|
-
length: string;
|
|
2807
|
+
bluehash: string | null;
|
|
2808
|
+
meta?: {
|
|
2455
2809
|
width: number;
|
|
2456
2810
|
height: number;
|
|
2457
|
-
duration: number;
|
|
2458
|
-
fps: number;
|
|
2459
2811
|
size: string;
|
|
2460
2812
|
aspect: number;
|
|
2461
2813
|
original: {
|
|
2462
2814
|
width: number;
|
|
2463
2815
|
height: number;
|
|
2464
|
-
duration
|
|
2465
|
-
frame_rate
|
|
2466
|
-
bitrate
|
|
2816
|
+
duration?: number | null | undefined;
|
|
2817
|
+
frame_rate?: string | null | undefined;
|
|
2818
|
+
bitrate?: number | null | undefined;
|
|
2467
2819
|
};
|
|
2820
|
+
length?: string | null | undefined;
|
|
2821
|
+
duration?: number | null | undefined;
|
|
2822
|
+
fps?: number | null | undefined;
|
|
2468
2823
|
small?: {
|
|
2469
2824
|
width: number;
|
|
2470
2825
|
height: number;
|
|
2471
2826
|
size: string;
|
|
2472
2827
|
aspect: number;
|
|
2473
2828
|
} | null | undefined;
|
|
2474
|
-
};
|
|
2829
|
+
} | null | undefined;
|
|
2475
2830
|
} | {
|
|
2476
2831
|
id: string;
|
|
2477
2832
|
type: "image";
|
|
2478
2833
|
description: string | null;
|
|
2479
2834
|
url: string;
|
|
2480
|
-
preview_url: string;
|
|
2835
|
+
preview_url: string | null;
|
|
2481
2836
|
remote_url: string | null;
|
|
2482
|
-
bluehash: string;
|
|
2483
|
-
meta
|
|
2837
|
+
bluehash: string | null;
|
|
2838
|
+
meta?: {
|
|
2484
2839
|
original: {
|
|
2485
2840
|
width: number;
|
|
2486
2841
|
height: number;
|
|
@@ -2497,67 +2852,67 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2497
2852
|
x: number;
|
|
2498
2853
|
y: number;
|
|
2499
2854
|
} | null | undefined;
|
|
2500
|
-
};
|
|
2855
|
+
} | null | undefined;
|
|
2501
2856
|
} | {
|
|
2502
2857
|
id: string;
|
|
2503
2858
|
type: "video";
|
|
2504
2859
|
description: string | null;
|
|
2505
2860
|
url: string;
|
|
2506
|
-
preview_url: string;
|
|
2861
|
+
preview_url: string | null;
|
|
2507
2862
|
remote_url: string | null;
|
|
2508
|
-
bluehash: string;
|
|
2509
|
-
meta
|
|
2510
|
-
length: string;
|
|
2863
|
+
bluehash: string | null;
|
|
2864
|
+
meta?: {
|
|
2511
2865
|
width: number;
|
|
2512
2866
|
height: number;
|
|
2513
|
-
duration: number;
|
|
2514
|
-
fps: number;
|
|
2515
2867
|
size: string;
|
|
2516
2868
|
aspect: number;
|
|
2517
2869
|
original: {
|
|
2518
2870
|
width: number;
|
|
2519
2871
|
height: number;
|
|
2520
|
-
duration
|
|
2521
|
-
frame_rate
|
|
2522
|
-
bitrate
|
|
2872
|
+
duration?: number | null | undefined;
|
|
2873
|
+
frame_rate?: string | null | undefined;
|
|
2874
|
+
bitrate?: number | null | undefined;
|
|
2523
2875
|
};
|
|
2524
|
-
|
|
2525
|
-
|
|
2526
|
-
|
|
2876
|
+
length?: string | null | undefined;
|
|
2877
|
+
duration?: number | null | undefined;
|
|
2878
|
+
fps?: number | null | undefined;
|
|
2527
2879
|
small?: {
|
|
2528
2880
|
width: number;
|
|
2529
2881
|
height: number;
|
|
2530
2882
|
size: string;
|
|
2531
2883
|
aspect: number;
|
|
2532
2884
|
} | null | undefined;
|
|
2533
|
-
|
|
2885
|
+
audio_encode?: string | null | undefined;
|
|
2886
|
+
audio_bitrate?: string | null | undefined;
|
|
2887
|
+
audio_channels?: string | null | undefined;
|
|
2888
|
+
} | null | undefined;
|
|
2534
2889
|
} | {
|
|
2535
2890
|
id: string;
|
|
2536
2891
|
type: "audio";
|
|
2537
2892
|
description: string | null;
|
|
2538
2893
|
url: string;
|
|
2539
|
-
preview_url: string;
|
|
2894
|
+
preview_url: string | null;
|
|
2540
2895
|
remote_url: string | null;
|
|
2541
|
-
bluehash: string;
|
|
2896
|
+
bluehash: string | null;
|
|
2542
2897
|
meta: {
|
|
2543
2898
|
length: string;
|
|
2544
2899
|
duration: number;
|
|
2545
2900
|
original: {
|
|
2546
2901
|
duration: number;
|
|
2547
|
-
bitrate
|
|
2902
|
+
bitrate?: number | null | undefined;
|
|
2548
2903
|
};
|
|
2549
|
-
audio_encode
|
|
2550
|
-
audio_bitrate
|
|
2551
|
-
audio_channels
|
|
2904
|
+
audio_encode?: string | null | undefined;
|
|
2905
|
+
audio_bitrate?: string | null | undefined;
|
|
2906
|
+
audio_channels?: string | null | undefined;
|
|
2552
2907
|
};
|
|
2553
2908
|
} | {
|
|
2554
2909
|
id: string;
|
|
2555
2910
|
type: "unknown";
|
|
2556
2911
|
description: string | null;
|
|
2557
2912
|
url: string;
|
|
2558
|
-
preview_url: string;
|
|
2913
|
+
preview_url: string | null;
|
|
2559
2914
|
remote_url: string | null;
|
|
2560
|
-
bluehash: string;
|
|
2915
|
+
bluehash: string | null;
|
|
2561
2916
|
})[];
|
|
2562
2917
|
reblogs_count: number;
|
|
2563
2918
|
favourites_count: number;
|
|
@@ -2601,7 +2956,6 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2601
2956
|
html: string;
|
|
2602
2957
|
embed_url: string;
|
|
2603
2958
|
} | null;
|
|
2604
|
-
language: string | null;
|
|
2605
2959
|
text: string | null;
|
|
2606
2960
|
edited_at: string | null;
|
|
2607
2961
|
application?: {
|
|
@@ -2617,7 +2971,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2617
2971
|
filter: {
|
|
2618
2972
|
id: string;
|
|
2619
2973
|
title: string;
|
|
2620
|
-
context: ("
|
|
2974
|
+
context: ("public" | "home" | "notifications" | "thread" | "account")[];
|
|
2621
2975
|
expires_at: string | null;
|
|
2622
2976
|
filter_action: "warn" | "hide";
|
|
2623
2977
|
keywords: {
|
|
@@ -2637,6 +2991,9 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2637
2991
|
id: string;
|
|
2638
2992
|
url: string | null;
|
|
2639
2993
|
content: string;
|
|
2994
|
+
sensitive: boolean;
|
|
2995
|
+
language: string | null;
|
|
2996
|
+
uri: string;
|
|
2640
2997
|
emojis: {
|
|
2641
2998
|
url: string;
|
|
2642
2999
|
shortcode: string;
|
|
@@ -2648,20 +3005,33 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2648
3005
|
account: {
|
|
2649
3006
|
id: string;
|
|
2650
3007
|
url: string;
|
|
3008
|
+
note: string;
|
|
3009
|
+
fields: {
|
|
3010
|
+
value: string;
|
|
3011
|
+
name: string;
|
|
3012
|
+
verified_at: string | null;
|
|
3013
|
+
}[];
|
|
2651
3014
|
username: string;
|
|
2652
3015
|
acct: string;
|
|
3016
|
+
uri: string;
|
|
2653
3017
|
display_name: string;
|
|
2654
|
-
note: string;
|
|
2655
3018
|
avatar: string;
|
|
2656
3019
|
avatar_static: string;
|
|
2657
3020
|
header: string;
|
|
2658
3021
|
header_static: string;
|
|
2659
3022
|
locked: boolean;
|
|
2660
|
-
|
|
2661
|
-
|
|
2662
|
-
|
|
2663
|
-
|
|
2664
|
-
|
|
3023
|
+
source: {
|
|
3024
|
+
note: string;
|
|
3025
|
+
fields: {
|
|
3026
|
+
value: string;
|
|
3027
|
+
name: string;
|
|
3028
|
+
verified_at: string | null;
|
|
3029
|
+
}[];
|
|
3030
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
3031
|
+
sensitive: boolean;
|
|
3032
|
+
language: string;
|
|
3033
|
+
follow_requests_count: number;
|
|
3034
|
+
};
|
|
2665
3035
|
emojis: {
|
|
2666
3036
|
url: string;
|
|
2667
3037
|
shortcode: string;
|
|
@@ -2683,20 +3053,33 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2683
3053
|
moved?: {
|
|
2684
3054
|
id: string;
|
|
2685
3055
|
url: string;
|
|
3056
|
+
note: string;
|
|
3057
|
+
fields: {
|
|
3058
|
+
value: string;
|
|
3059
|
+
name: string;
|
|
3060
|
+
verified_at: string | null;
|
|
3061
|
+
}[];
|
|
2686
3062
|
username: string;
|
|
2687
3063
|
acct: string;
|
|
3064
|
+
uri: string;
|
|
2688
3065
|
display_name: string;
|
|
2689
|
-
note: string;
|
|
2690
3066
|
avatar: string;
|
|
2691
3067
|
avatar_static: string;
|
|
2692
3068
|
header: string;
|
|
2693
3069
|
header_static: string;
|
|
2694
3070
|
locked: boolean;
|
|
2695
|
-
|
|
2696
|
-
|
|
2697
|
-
|
|
2698
|
-
|
|
2699
|
-
|
|
3071
|
+
source: {
|
|
3072
|
+
note: string;
|
|
3073
|
+
fields: {
|
|
3074
|
+
value: string;
|
|
3075
|
+
name: string;
|
|
3076
|
+
verified_at: string | null;
|
|
3077
|
+
}[];
|
|
3078
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
3079
|
+
sensitive: boolean;
|
|
3080
|
+
language: string;
|
|
3081
|
+
follow_requests_count: number;
|
|
3082
|
+
};
|
|
2700
3083
|
emojis: {
|
|
2701
3084
|
url: string;
|
|
2702
3085
|
shortcode: string;
|
|
@@ -2717,49 +3100,47 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2717
3100
|
limited?: boolean | undefined;
|
|
2718
3101
|
} | null | undefined;
|
|
2719
3102
|
};
|
|
2720
|
-
uri: string;
|
|
2721
3103
|
visibility: "public" | "unlist" | "private" | "direct";
|
|
2722
|
-
sensitive: boolean;
|
|
2723
3104
|
spoiler_text: string;
|
|
2724
3105
|
media_attachments: ({
|
|
2725
3106
|
id: string;
|
|
2726
3107
|
type: "gifv";
|
|
2727
3108
|
description: string | null;
|
|
2728
3109
|
url: string;
|
|
2729
|
-
preview_url: string;
|
|
3110
|
+
preview_url: string | null;
|
|
2730
3111
|
remote_url: string | null;
|
|
2731
|
-
bluehash: string;
|
|
2732
|
-
meta
|
|
2733
|
-
length: string;
|
|
3112
|
+
bluehash: string | null;
|
|
3113
|
+
meta?: {
|
|
2734
3114
|
width: number;
|
|
2735
3115
|
height: number;
|
|
2736
|
-
duration: number;
|
|
2737
|
-
fps: number;
|
|
2738
3116
|
size: string;
|
|
2739
3117
|
aspect: number;
|
|
2740
3118
|
original: {
|
|
2741
3119
|
width: number;
|
|
2742
3120
|
height: number;
|
|
2743
|
-
duration
|
|
2744
|
-
frame_rate
|
|
2745
|
-
bitrate
|
|
3121
|
+
duration?: number | null | undefined;
|
|
3122
|
+
frame_rate?: string | null | undefined;
|
|
3123
|
+
bitrate?: number | null | undefined;
|
|
2746
3124
|
};
|
|
3125
|
+
length?: string | null | undefined;
|
|
3126
|
+
duration?: number | null | undefined;
|
|
3127
|
+
fps?: number | null | undefined;
|
|
2747
3128
|
small?: {
|
|
2748
3129
|
width: number;
|
|
2749
3130
|
height: number;
|
|
2750
3131
|
size: string;
|
|
2751
3132
|
aspect: number;
|
|
2752
3133
|
} | null | undefined;
|
|
2753
|
-
};
|
|
3134
|
+
} | null | undefined;
|
|
2754
3135
|
} | {
|
|
2755
3136
|
id: string;
|
|
2756
3137
|
type: "image";
|
|
2757
3138
|
description: string | null;
|
|
2758
3139
|
url: string;
|
|
2759
|
-
preview_url: string;
|
|
3140
|
+
preview_url: string | null;
|
|
2760
3141
|
remote_url: string | null;
|
|
2761
|
-
bluehash: string;
|
|
2762
|
-
meta
|
|
3142
|
+
bluehash: string | null;
|
|
3143
|
+
meta?: {
|
|
2763
3144
|
original: {
|
|
2764
3145
|
width: number;
|
|
2765
3146
|
height: number;
|
|
@@ -2776,67 +3157,67 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2776
3157
|
x: number;
|
|
2777
3158
|
y: number;
|
|
2778
3159
|
} | null | undefined;
|
|
2779
|
-
};
|
|
3160
|
+
} | null | undefined;
|
|
2780
3161
|
} | {
|
|
2781
3162
|
id: string;
|
|
2782
3163
|
type: "video";
|
|
2783
3164
|
description: string | null;
|
|
2784
3165
|
url: string;
|
|
2785
|
-
preview_url: string;
|
|
3166
|
+
preview_url: string | null;
|
|
2786
3167
|
remote_url: string | null;
|
|
2787
|
-
bluehash: string;
|
|
2788
|
-
meta
|
|
2789
|
-
length: string;
|
|
3168
|
+
bluehash: string | null;
|
|
3169
|
+
meta?: {
|
|
2790
3170
|
width: number;
|
|
2791
3171
|
height: number;
|
|
2792
|
-
duration: number;
|
|
2793
|
-
fps: number;
|
|
2794
3172
|
size: string;
|
|
2795
3173
|
aspect: number;
|
|
2796
3174
|
original: {
|
|
2797
3175
|
width: number;
|
|
2798
3176
|
height: number;
|
|
2799
|
-
duration
|
|
2800
|
-
frame_rate
|
|
2801
|
-
bitrate
|
|
3177
|
+
duration?: number | null | undefined;
|
|
3178
|
+
frame_rate?: string | null | undefined;
|
|
3179
|
+
bitrate?: number | null | undefined;
|
|
2802
3180
|
};
|
|
2803
|
-
|
|
2804
|
-
|
|
2805
|
-
|
|
3181
|
+
length?: string | null | undefined;
|
|
3182
|
+
duration?: number | null | undefined;
|
|
3183
|
+
fps?: number | null | undefined;
|
|
2806
3184
|
small?: {
|
|
2807
3185
|
width: number;
|
|
2808
3186
|
height: number;
|
|
2809
3187
|
size: string;
|
|
2810
3188
|
aspect: number;
|
|
2811
3189
|
} | null | undefined;
|
|
2812
|
-
|
|
3190
|
+
audio_encode?: string | null | undefined;
|
|
3191
|
+
audio_bitrate?: string | null | undefined;
|
|
3192
|
+
audio_channels?: string | null | undefined;
|
|
3193
|
+
} | null | undefined;
|
|
2813
3194
|
} | {
|
|
2814
3195
|
id: string;
|
|
2815
3196
|
type: "audio";
|
|
2816
3197
|
description: string | null;
|
|
2817
3198
|
url: string;
|
|
2818
|
-
preview_url: string;
|
|
3199
|
+
preview_url: string | null;
|
|
2819
3200
|
remote_url: string | null;
|
|
2820
|
-
bluehash: string;
|
|
3201
|
+
bluehash: string | null;
|
|
2821
3202
|
meta: {
|
|
2822
3203
|
length: string;
|
|
2823
3204
|
duration: number;
|
|
2824
3205
|
original: {
|
|
2825
3206
|
duration: number;
|
|
2826
|
-
bitrate
|
|
3207
|
+
bitrate?: number | null | undefined;
|
|
2827
3208
|
};
|
|
2828
|
-
audio_encode
|
|
2829
|
-
audio_bitrate
|
|
2830
|
-
audio_channels
|
|
3209
|
+
audio_encode?: string | null | undefined;
|
|
3210
|
+
audio_bitrate?: string | null | undefined;
|
|
3211
|
+
audio_channels?: string | null | undefined;
|
|
2831
3212
|
};
|
|
2832
3213
|
} | {
|
|
2833
3214
|
id: string;
|
|
2834
3215
|
type: "unknown";
|
|
2835
3216
|
description: string | null;
|
|
2836
3217
|
url: string;
|
|
2837
|
-
preview_url: string;
|
|
3218
|
+
preview_url: string | null;
|
|
2838
3219
|
remote_url: string | null;
|
|
2839
|
-
bluehash: string;
|
|
3220
|
+
bluehash: string | null;
|
|
2840
3221
|
})[];
|
|
2841
3222
|
reblogs_count: number;
|
|
2842
3223
|
favourites_count: number;
|
|
@@ -2880,7 +3261,6 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2880
3261
|
html: string;
|
|
2881
3262
|
embed_url: string;
|
|
2882
3263
|
} | null;
|
|
2883
|
-
language: string | null;
|
|
2884
3264
|
text: string | null;
|
|
2885
3265
|
edited_at: string | null;
|
|
2886
3266
|
application?: {
|
|
@@ -2896,7 +3276,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2896
3276
|
filter: {
|
|
2897
3277
|
id: string;
|
|
2898
3278
|
title: string;
|
|
2899
|
-
context: ("
|
|
3279
|
+
context: ("public" | "home" | "notifications" | "thread" | "account")[];
|
|
2900
3280
|
expires_at: string | null;
|
|
2901
3281
|
filter_action: "warn" | "hide";
|
|
2902
3282
|
keywords: {
|
|
@@ -2917,6 +3297,9 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2917
3297
|
id: string;
|
|
2918
3298
|
url: string | null;
|
|
2919
3299
|
content: string;
|
|
3300
|
+
sensitive: boolean;
|
|
3301
|
+
language: string | null;
|
|
3302
|
+
uri: string;
|
|
2920
3303
|
emojis: {
|
|
2921
3304
|
url: string;
|
|
2922
3305
|
shortcode: string;
|
|
@@ -2928,20 +3311,33 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2928
3311
|
account: {
|
|
2929
3312
|
id: string;
|
|
2930
3313
|
url: string;
|
|
3314
|
+
note: string;
|
|
3315
|
+
fields: {
|
|
3316
|
+
value: string;
|
|
3317
|
+
name: string;
|
|
3318
|
+
verified_at: string | null;
|
|
3319
|
+
}[];
|
|
2931
3320
|
username: string;
|
|
2932
3321
|
acct: string;
|
|
3322
|
+
uri: string;
|
|
2933
3323
|
display_name: string;
|
|
2934
|
-
note: string;
|
|
2935
3324
|
avatar: string;
|
|
2936
3325
|
avatar_static: string;
|
|
2937
3326
|
header: string;
|
|
2938
3327
|
header_static: string;
|
|
2939
3328
|
locked: boolean;
|
|
2940
|
-
|
|
2941
|
-
|
|
2942
|
-
|
|
2943
|
-
|
|
2944
|
-
|
|
3329
|
+
source: {
|
|
3330
|
+
note: string;
|
|
3331
|
+
fields: {
|
|
3332
|
+
value: string;
|
|
3333
|
+
name: string;
|
|
3334
|
+
verified_at: string | null;
|
|
3335
|
+
}[];
|
|
3336
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
3337
|
+
sensitive: boolean;
|
|
3338
|
+
language: string;
|
|
3339
|
+
follow_requests_count: number;
|
|
3340
|
+
};
|
|
2945
3341
|
emojis: {
|
|
2946
3342
|
url: string;
|
|
2947
3343
|
shortcode: string;
|
|
@@ -2963,20 +3359,33 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2963
3359
|
moved?: {
|
|
2964
3360
|
id: string;
|
|
2965
3361
|
url: string;
|
|
3362
|
+
note: string;
|
|
3363
|
+
fields: {
|
|
3364
|
+
value: string;
|
|
3365
|
+
name: string;
|
|
3366
|
+
verified_at: string | null;
|
|
3367
|
+
}[];
|
|
2966
3368
|
username: string;
|
|
2967
3369
|
acct: string;
|
|
3370
|
+
uri: string;
|
|
2968
3371
|
display_name: string;
|
|
2969
|
-
note: string;
|
|
2970
3372
|
avatar: string;
|
|
2971
3373
|
avatar_static: string;
|
|
2972
3374
|
header: string;
|
|
2973
3375
|
header_static: string;
|
|
2974
3376
|
locked: boolean;
|
|
2975
|
-
|
|
2976
|
-
|
|
2977
|
-
|
|
2978
|
-
|
|
2979
|
-
|
|
3377
|
+
source: {
|
|
3378
|
+
note: string;
|
|
3379
|
+
fields: {
|
|
3380
|
+
value: string;
|
|
3381
|
+
name: string;
|
|
3382
|
+
verified_at: string | null;
|
|
3383
|
+
}[];
|
|
3384
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
3385
|
+
sensitive: boolean;
|
|
3386
|
+
language: string;
|
|
3387
|
+
follow_requests_count: number;
|
|
3388
|
+
};
|
|
2980
3389
|
emojis: {
|
|
2981
3390
|
url: string;
|
|
2982
3391
|
shortcode: string;
|
|
@@ -2997,49 +3406,47 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2997
3406
|
limited?: boolean | undefined;
|
|
2998
3407
|
} | null | undefined;
|
|
2999
3408
|
};
|
|
3000
|
-
uri: string;
|
|
3001
3409
|
visibility: "public" | "unlist" | "private" | "direct";
|
|
3002
|
-
sensitive: boolean;
|
|
3003
3410
|
spoiler_text: string;
|
|
3004
3411
|
media_attachments: ({
|
|
3005
3412
|
id: string;
|
|
3006
3413
|
type: "gifv";
|
|
3007
3414
|
description: string | null;
|
|
3008
3415
|
url: string;
|
|
3009
|
-
preview_url: string;
|
|
3416
|
+
preview_url: string | null;
|
|
3010
3417
|
remote_url: string | null;
|
|
3011
|
-
bluehash: string;
|
|
3012
|
-
meta
|
|
3013
|
-
length: string;
|
|
3418
|
+
bluehash: string | null;
|
|
3419
|
+
meta?: {
|
|
3014
3420
|
width: number;
|
|
3015
3421
|
height: number;
|
|
3016
|
-
duration: number;
|
|
3017
|
-
fps: number;
|
|
3018
3422
|
size: string;
|
|
3019
3423
|
aspect: number;
|
|
3020
3424
|
original: {
|
|
3021
3425
|
width: number;
|
|
3022
3426
|
height: number;
|
|
3023
|
-
duration
|
|
3024
|
-
frame_rate
|
|
3025
|
-
bitrate
|
|
3427
|
+
duration?: number | null | undefined;
|
|
3428
|
+
frame_rate?: string | null | undefined;
|
|
3429
|
+
bitrate?: number | null | undefined;
|
|
3026
3430
|
};
|
|
3431
|
+
length?: string | null | undefined;
|
|
3432
|
+
duration?: number | null | undefined;
|
|
3433
|
+
fps?: number | null | undefined;
|
|
3027
3434
|
small?: {
|
|
3028
3435
|
width: number;
|
|
3029
3436
|
height: number;
|
|
3030
3437
|
size: string;
|
|
3031
3438
|
aspect: number;
|
|
3032
3439
|
} | null | undefined;
|
|
3033
|
-
};
|
|
3440
|
+
} | null | undefined;
|
|
3034
3441
|
} | {
|
|
3035
3442
|
id: string;
|
|
3036
3443
|
type: "image";
|
|
3037
3444
|
description: string | null;
|
|
3038
3445
|
url: string;
|
|
3039
|
-
preview_url: string;
|
|
3446
|
+
preview_url: string | null;
|
|
3040
3447
|
remote_url: string | null;
|
|
3041
|
-
bluehash: string;
|
|
3042
|
-
meta
|
|
3448
|
+
bluehash: string | null;
|
|
3449
|
+
meta?: {
|
|
3043
3450
|
original: {
|
|
3044
3451
|
width: number;
|
|
3045
3452
|
height: number;
|
|
@@ -3056,67 +3463,67 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3056
3463
|
x: number;
|
|
3057
3464
|
y: number;
|
|
3058
3465
|
} | null | undefined;
|
|
3059
|
-
};
|
|
3466
|
+
} | null | undefined;
|
|
3060
3467
|
} | {
|
|
3061
3468
|
id: string;
|
|
3062
3469
|
type: "video";
|
|
3063
3470
|
description: string | null;
|
|
3064
3471
|
url: string;
|
|
3065
|
-
preview_url: string;
|
|
3472
|
+
preview_url: string | null;
|
|
3066
3473
|
remote_url: string | null;
|
|
3067
|
-
bluehash: string;
|
|
3068
|
-
meta
|
|
3069
|
-
length: string;
|
|
3474
|
+
bluehash: string | null;
|
|
3475
|
+
meta?: {
|
|
3070
3476
|
width: number;
|
|
3071
3477
|
height: number;
|
|
3072
|
-
duration: number;
|
|
3073
|
-
fps: number;
|
|
3074
3478
|
size: string;
|
|
3075
3479
|
aspect: number;
|
|
3076
3480
|
original: {
|
|
3077
3481
|
width: number;
|
|
3078
3482
|
height: number;
|
|
3079
|
-
duration
|
|
3080
|
-
frame_rate
|
|
3081
|
-
bitrate
|
|
3483
|
+
duration?: number | null | undefined;
|
|
3484
|
+
frame_rate?: string | null | undefined;
|
|
3485
|
+
bitrate?: number | null | undefined;
|
|
3082
3486
|
};
|
|
3083
|
-
|
|
3084
|
-
|
|
3085
|
-
|
|
3487
|
+
length?: string | null | undefined;
|
|
3488
|
+
duration?: number | null | undefined;
|
|
3489
|
+
fps?: number | null | undefined;
|
|
3086
3490
|
small?: {
|
|
3087
3491
|
width: number;
|
|
3088
3492
|
height: number;
|
|
3089
3493
|
size: string;
|
|
3090
3494
|
aspect: number;
|
|
3091
3495
|
} | null | undefined;
|
|
3092
|
-
|
|
3496
|
+
audio_encode?: string | null | undefined;
|
|
3497
|
+
audio_bitrate?: string | null | undefined;
|
|
3498
|
+
audio_channels?: string | null | undefined;
|
|
3499
|
+
} | null | undefined;
|
|
3093
3500
|
} | {
|
|
3094
3501
|
id: string;
|
|
3095
3502
|
type: "audio";
|
|
3096
3503
|
description: string | null;
|
|
3097
3504
|
url: string;
|
|
3098
|
-
preview_url: string;
|
|
3505
|
+
preview_url: string | null;
|
|
3099
3506
|
remote_url: string | null;
|
|
3100
|
-
bluehash: string;
|
|
3507
|
+
bluehash: string | null;
|
|
3101
3508
|
meta: {
|
|
3102
3509
|
length: string;
|
|
3103
3510
|
duration: number;
|
|
3104
3511
|
original: {
|
|
3105
3512
|
duration: number;
|
|
3106
|
-
bitrate
|
|
3513
|
+
bitrate?: number | null | undefined;
|
|
3107
3514
|
};
|
|
3108
|
-
audio_encode
|
|
3109
|
-
audio_bitrate
|
|
3110
|
-
audio_channels
|
|
3515
|
+
audio_encode?: string | null | undefined;
|
|
3516
|
+
audio_bitrate?: string | null | undefined;
|
|
3517
|
+
audio_channels?: string | null | undefined;
|
|
3111
3518
|
};
|
|
3112
3519
|
} | {
|
|
3113
3520
|
id: string;
|
|
3114
3521
|
type: "unknown";
|
|
3115
3522
|
description: string | null;
|
|
3116
3523
|
url: string;
|
|
3117
|
-
preview_url: string;
|
|
3524
|
+
preview_url: string | null;
|
|
3118
3525
|
remote_url: string | null;
|
|
3119
|
-
bluehash: string;
|
|
3526
|
+
bluehash: string | null;
|
|
3120
3527
|
})[];
|
|
3121
3528
|
reblogs_count: number;
|
|
3122
3529
|
favourites_count: number;
|
|
@@ -3160,13 +3567,15 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3160
3567
|
html: string;
|
|
3161
3568
|
embed_url: string;
|
|
3162
3569
|
} | null;
|
|
3163
|
-
language: string | null;
|
|
3164
3570
|
text: string | null;
|
|
3165
3571
|
edited_at: string | null;
|
|
3166
3572
|
reblog: {
|
|
3167
3573
|
id: string;
|
|
3168
3574
|
url: string | null;
|
|
3169
3575
|
content: string;
|
|
3576
|
+
sensitive: boolean;
|
|
3577
|
+
language: string | null;
|
|
3578
|
+
uri: string;
|
|
3170
3579
|
emojis: {
|
|
3171
3580
|
url: string;
|
|
3172
3581
|
shortcode: string;
|
|
@@ -3178,20 +3587,33 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3178
3587
|
account: {
|
|
3179
3588
|
id: string;
|
|
3180
3589
|
url: string;
|
|
3590
|
+
note: string;
|
|
3591
|
+
fields: {
|
|
3592
|
+
value: string;
|
|
3593
|
+
name: string;
|
|
3594
|
+
verified_at: string | null;
|
|
3595
|
+
}[];
|
|
3181
3596
|
username: string;
|
|
3182
3597
|
acct: string;
|
|
3598
|
+
uri: string;
|
|
3183
3599
|
display_name: string;
|
|
3184
|
-
note: string;
|
|
3185
3600
|
avatar: string;
|
|
3186
3601
|
avatar_static: string;
|
|
3187
3602
|
header: string;
|
|
3188
3603
|
header_static: string;
|
|
3189
3604
|
locked: boolean;
|
|
3190
|
-
|
|
3191
|
-
|
|
3192
|
-
|
|
3193
|
-
|
|
3194
|
-
|
|
3605
|
+
source: {
|
|
3606
|
+
note: string;
|
|
3607
|
+
fields: {
|
|
3608
|
+
value: string;
|
|
3609
|
+
name: string;
|
|
3610
|
+
verified_at: string | null;
|
|
3611
|
+
}[];
|
|
3612
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
3613
|
+
sensitive: boolean;
|
|
3614
|
+
language: string;
|
|
3615
|
+
follow_requests_count: number;
|
|
3616
|
+
};
|
|
3195
3617
|
emojis: {
|
|
3196
3618
|
url: string;
|
|
3197
3619
|
shortcode: string;
|
|
@@ -3213,20 +3635,33 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3213
3635
|
moved?: {
|
|
3214
3636
|
id: string;
|
|
3215
3637
|
url: string;
|
|
3638
|
+
note: string;
|
|
3639
|
+
fields: {
|
|
3640
|
+
value: string;
|
|
3641
|
+
name: string;
|
|
3642
|
+
verified_at: string | null;
|
|
3643
|
+
}[];
|
|
3216
3644
|
username: string;
|
|
3217
3645
|
acct: string;
|
|
3646
|
+
uri: string;
|
|
3218
3647
|
display_name: string;
|
|
3219
|
-
note: string;
|
|
3220
3648
|
avatar: string;
|
|
3221
3649
|
avatar_static: string;
|
|
3222
3650
|
header: string;
|
|
3223
3651
|
header_static: string;
|
|
3224
3652
|
locked: boolean;
|
|
3225
|
-
|
|
3226
|
-
|
|
3227
|
-
|
|
3228
|
-
|
|
3229
|
-
|
|
3653
|
+
source: {
|
|
3654
|
+
note: string;
|
|
3655
|
+
fields: {
|
|
3656
|
+
value: string;
|
|
3657
|
+
name: string;
|
|
3658
|
+
verified_at: string | null;
|
|
3659
|
+
}[];
|
|
3660
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
3661
|
+
sensitive: boolean;
|
|
3662
|
+
language: string;
|
|
3663
|
+
follow_requests_count: number;
|
|
3664
|
+
};
|
|
3230
3665
|
emojis: {
|
|
3231
3666
|
url: string;
|
|
3232
3667
|
shortcode: string;
|
|
@@ -3247,49 +3682,47 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3247
3682
|
limited?: boolean | undefined;
|
|
3248
3683
|
} | null | undefined;
|
|
3249
3684
|
};
|
|
3250
|
-
uri: string;
|
|
3251
3685
|
visibility: "public" | "unlist" | "private" | "direct";
|
|
3252
|
-
sensitive: boolean;
|
|
3253
3686
|
spoiler_text: string;
|
|
3254
3687
|
media_attachments: ({
|
|
3255
3688
|
id: string;
|
|
3256
3689
|
type: "gifv";
|
|
3257
3690
|
description: string | null;
|
|
3258
3691
|
url: string;
|
|
3259
|
-
preview_url: string;
|
|
3692
|
+
preview_url: string | null;
|
|
3260
3693
|
remote_url: string | null;
|
|
3261
|
-
bluehash: string;
|
|
3262
|
-
meta
|
|
3263
|
-
length: string;
|
|
3694
|
+
bluehash: string | null;
|
|
3695
|
+
meta?: {
|
|
3264
3696
|
width: number;
|
|
3265
3697
|
height: number;
|
|
3266
|
-
duration: number;
|
|
3267
|
-
fps: number;
|
|
3268
3698
|
size: string;
|
|
3269
3699
|
aspect: number;
|
|
3270
3700
|
original: {
|
|
3271
3701
|
width: number;
|
|
3272
3702
|
height: number;
|
|
3273
|
-
duration
|
|
3274
|
-
frame_rate
|
|
3275
|
-
bitrate
|
|
3703
|
+
duration?: number | null | undefined;
|
|
3704
|
+
frame_rate?: string | null | undefined;
|
|
3705
|
+
bitrate?: number | null | undefined;
|
|
3276
3706
|
};
|
|
3707
|
+
length?: string | null | undefined;
|
|
3708
|
+
duration?: number | null | undefined;
|
|
3709
|
+
fps?: number | null | undefined;
|
|
3277
3710
|
small?: {
|
|
3278
3711
|
width: number;
|
|
3279
3712
|
height: number;
|
|
3280
3713
|
size: string;
|
|
3281
3714
|
aspect: number;
|
|
3282
3715
|
} | null | undefined;
|
|
3283
|
-
};
|
|
3716
|
+
} | null | undefined;
|
|
3284
3717
|
} | {
|
|
3285
3718
|
id: string;
|
|
3286
3719
|
type: "image";
|
|
3287
3720
|
description: string | null;
|
|
3288
3721
|
url: string;
|
|
3289
|
-
preview_url: string;
|
|
3722
|
+
preview_url: string | null;
|
|
3290
3723
|
remote_url: string | null;
|
|
3291
|
-
bluehash: string;
|
|
3292
|
-
meta
|
|
3724
|
+
bluehash: string | null;
|
|
3725
|
+
meta?: {
|
|
3293
3726
|
original: {
|
|
3294
3727
|
width: number;
|
|
3295
3728
|
height: number;
|
|
@@ -3306,67 +3739,67 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3306
3739
|
x: number;
|
|
3307
3740
|
y: number;
|
|
3308
3741
|
} | null | undefined;
|
|
3309
|
-
};
|
|
3742
|
+
} | null | undefined;
|
|
3310
3743
|
} | {
|
|
3311
3744
|
id: string;
|
|
3312
3745
|
type: "video";
|
|
3313
3746
|
description: string | null;
|
|
3314
3747
|
url: string;
|
|
3315
|
-
preview_url: string;
|
|
3748
|
+
preview_url: string | null;
|
|
3316
3749
|
remote_url: string | null;
|
|
3317
|
-
bluehash: string;
|
|
3318
|
-
meta
|
|
3319
|
-
length: string;
|
|
3750
|
+
bluehash: string | null;
|
|
3751
|
+
meta?: {
|
|
3320
3752
|
width: number;
|
|
3321
3753
|
height: number;
|
|
3322
|
-
duration: number;
|
|
3323
|
-
fps: number;
|
|
3324
3754
|
size: string;
|
|
3325
3755
|
aspect: number;
|
|
3326
3756
|
original: {
|
|
3327
3757
|
width: number;
|
|
3328
3758
|
height: number;
|
|
3329
|
-
duration
|
|
3330
|
-
frame_rate
|
|
3331
|
-
bitrate
|
|
3759
|
+
duration?: number | null | undefined;
|
|
3760
|
+
frame_rate?: string | null | undefined;
|
|
3761
|
+
bitrate?: number | null | undefined;
|
|
3332
3762
|
};
|
|
3333
|
-
|
|
3334
|
-
|
|
3335
|
-
|
|
3763
|
+
length?: string | null | undefined;
|
|
3764
|
+
duration?: number | null | undefined;
|
|
3765
|
+
fps?: number | null | undefined;
|
|
3336
3766
|
small?: {
|
|
3337
3767
|
width: number;
|
|
3338
3768
|
height: number;
|
|
3339
3769
|
size: string;
|
|
3340
3770
|
aspect: number;
|
|
3341
3771
|
} | null | undefined;
|
|
3342
|
-
|
|
3772
|
+
audio_encode?: string | null | undefined;
|
|
3773
|
+
audio_bitrate?: string | null | undefined;
|
|
3774
|
+
audio_channels?: string | null | undefined;
|
|
3775
|
+
} | null | undefined;
|
|
3343
3776
|
} | {
|
|
3344
3777
|
id: string;
|
|
3345
3778
|
type: "audio";
|
|
3346
3779
|
description: string | null;
|
|
3347
3780
|
url: string;
|
|
3348
|
-
preview_url: string;
|
|
3781
|
+
preview_url: string | null;
|
|
3349
3782
|
remote_url: string | null;
|
|
3350
|
-
bluehash: string;
|
|
3783
|
+
bluehash: string | null;
|
|
3351
3784
|
meta: {
|
|
3352
3785
|
length: string;
|
|
3353
3786
|
duration: number;
|
|
3354
3787
|
original: {
|
|
3355
3788
|
duration: number;
|
|
3356
|
-
bitrate
|
|
3789
|
+
bitrate?: number | null | undefined;
|
|
3357
3790
|
};
|
|
3358
|
-
audio_encode
|
|
3359
|
-
audio_bitrate
|
|
3360
|
-
audio_channels
|
|
3791
|
+
audio_encode?: string | null | undefined;
|
|
3792
|
+
audio_bitrate?: string | null | undefined;
|
|
3793
|
+
audio_channels?: string | null | undefined;
|
|
3361
3794
|
};
|
|
3362
3795
|
} | {
|
|
3363
3796
|
id: string;
|
|
3364
3797
|
type: "unknown";
|
|
3365
3798
|
description: string | null;
|
|
3366
3799
|
url: string;
|
|
3367
|
-
preview_url: string;
|
|
3800
|
+
preview_url: string | null;
|
|
3368
3801
|
remote_url: string | null;
|
|
3369
|
-
bluehash: string;
|
|
3802
|
+
bluehash: string | null;
|
|
3370
3803
|
})[];
|
|
3371
3804
|
reblogs_count: number;
|
|
3372
3805
|
favourites_count: number;
|
|
@@ -3410,7 +3843,6 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3410
3843
|
html: string;
|
|
3411
3844
|
embed_url: string;
|
|
3412
3845
|
} | null;
|
|
3413
|
-
language: string | null;
|
|
3414
3846
|
text: string | null;
|
|
3415
3847
|
edited_at: string | null;
|
|
3416
3848
|
application?: {
|
|
@@ -3426,7 +3858,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3426
3858
|
filter: {
|
|
3427
3859
|
id: string;
|
|
3428
3860
|
title: string;
|
|
3429
|
-
context: ("
|
|
3861
|
+
context: ("public" | "home" | "notifications" | "thread" | "account")[];
|
|
3430
3862
|
expires_at: string | null;
|
|
3431
3863
|
filter_action: "warn" | "hide";
|
|
3432
3864
|
keywords: {
|
|
@@ -3456,7 +3888,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3456
3888
|
filter: {
|
|
3457
3889
|
id: string;
|
|
3458
3890
|
title: string;
|
|
3459
|
-
context: ("
|
|
3891
|
+
context: ("public" | "home" | "notifications" | "thread" | "account")[];
|
|
3460
3892
|
expires_at: string | null;
|
|
3461
3893
|
filter_action: "warn" | "hide";
|
|
3462
3894
|
keywords: {
|
|
@@ -3476,6 +3908,9 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3476
3908
|
id: string;
|
|
3477
3909
|
url: string | null;
|
|
3478
3910
|
content: string;
|
|
3911
|
+
sensitive: boolean;
|
|
3912
|
+
language: string | null;
|
|
3913
|
+
uri: string;
|
|
3479
3914
|
emojis: {
|
|
3480
3915
|
url: string;
|
|
3481
3916
|
shortcode: string;
|
|
@@ -3487,20 +3922,33 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3487
3922
|
account: {
|
|
3488
3923
|
id: string;
|
|
3489
3924
|
url: string;
|
|
3925
|
+
note: string;
|
|
3926
|
+
fields: {
|
|
3927
|
+
value: string;
|
|
3928
|
+
name: string;
|
|
3929
|
+
verified_at: string | null;
|
|
3930
|
+
}[];
|
|
3490
3931
|
username: string;
|
|
3491
3932
|
acct: string;
|
|
3933
|
+
uri: string;
|
|
3492
3934
|
display_name: string;
|
|
3493
|
-
note: string;
|
|
3494
3935
|
avatar: string;
|
|
3495
3936
|
avatar_static: string;
|
|
3496
3937
|
header: string;
|
|
3497
3938
|
header_static: string;
|
|
3498
3939
|
locked: boolean;
|
|
3499
|
-
|
|
3500
|
-
|
|
3501
|
-
|
|
3502
|
-
|
|
3503
|
-
|
|
3940
|
+
source: {
|
|
3941
|
+
note: string;
|
|
3942
|
+
fields: {
|
|
3943
|
+
value: string;
|
|
3944
|
+
name: string;
|
|
3945
|
+
verified_at: string | null;
|
|
3946
|
+
}[];
|
|
3947
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
3948
|
+
sensitive: boolean;
|
|
3949
|
+
language: string;
|
|
3950
|
+
follow_requests_count: number;
|
|
3951
|
+
};
|
|
3504
3952
|
emojis: {
|
|
3505
3953
|
url: string;
|
|
3506
3954
|
shortcode: string;
|
|
@@ -3522,20 +3970,33 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3522
3970
|
moved?: {
|
|
3523
3971
|
id: string;
|
|
3524
3972
|
url: string;
|
|
3973
|
+
note: string;
|
|
3974
|
+
fields: {
|
|
3975
|
+
value: string;
|
|
3976
|
+
name: string;
|
|
3977
|
+
verified_at: string | null;
|
|
3978
|
+
}[];
|
|
3525
3979
|
username: string;
|
|
3526
3980
|
acct: string;
|
|
3981
|
+
uri: string;
|
|
3527
3982
|
display_name: string;
|
|
3528
|
-
note: string;
|
|
3529
3983
|
avatar: string;
|
|
3530
3984
|
avatar_static: string;
|
|
3531
3985
|
header: string;
|
|
3532
3986
|
header_static: string;
|
|
3533
3987
|
locked: boolean;
|
|
3534
|
-
|
|
3535
|
-
|
|
3536
|
-
|
|
3537
|
-
|
|
3538
|
-
|
|
3988
|
+
source: {
|
|
3989
|
+
note: string;
|
|
3990
|
+
fields: {
|
|
3991
|
+
value: string;
|
|
3992
|
+
name: string;
|
|
3993
|
+
verified_at: string | null;
|
|
3994
|
+
}[];
|
|
3995
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
3996
|
+
sensitive: boolean;
|
|
3997
|
+
language: string;
|
|
3998
|
+
follow_requests_count: number;
|
|
3999
|
+
};
|
|
3539
4000
|
emojis: {
|
|
3540
4001
|
url: string;
|
|
3541
4002
|
shortcode: string;
|
|
@@ -3556,49 +4017,47 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3556
4017
|
limited?: boolean | undefined;
|
|
3557
4018
|
} | null | undefined;
|
|
3558
4019
|
};
|
|
3559
|
-
uri: string;
|
|
3560
4020
|
visibility: "public" | "unlist" | "private" | "direct";
|
|
3561
|
-
sensitive: boolean;
|
|
3562
4021
|
spoiler_text: string;
|
|
3563
4022
|
media_attachments: ({
|
|
3564
4023
|
id: string;
|
|
3565
4024
|
type: "gifv";
|
|
3566
4025
|
description: string | null;
|
|
3567
4026
|
url: string;
|
|
3568
|
-
preview_url: string;
|
|
4027
|
+
preview_url: string | null;
|
|
3569
4028
|
remote_url: string | null;
|
|
3570
|
-
bluehash: string;
|
|
3571
|
-
meta
|
|
3572
|
-
length: string;
|
|
4029
|
+
bluehash: string | null;
|
|
4030
|
+
meta?: {
|
|
3573
4031
|
width: number;
|
|
3574
4032
|
height: number;
|
|
3575
|
-
duration: number;
|
|
3576
|
-
fps: number;
|
|
3577
4033
|
size: string;
|
|
3578
4034
|
aspect: number;
|
|
3579
4035
|
original: {
|
|
3580
4036
|
width: number;
|
|
3581
4037
|
height: number;
|
|
3582
|
-
duration
|
|
3583
|
-
frame_rate
|
|
3584
|
-
bitrate
|
|
4038
|
+
duration?: number | null | undefined;
|
|
4039
|
+
frame_rate?: string | null | undefined;
|
|
4040
|
+
bitrate?: number | null | undefined;
|
|
3585
4041
|
};
|
|
4042
|
+
length?: string | null | undefined;
|
|
4043
|
+
duration?: number | null | undefined;
|
|
4044
|
+
fps?: number | null | undefined;
|
|
3586
4045
|
small?: {
|
|
3587
4046
|
width: number;
|
|
3588
4047
|
height: number;
|
|
3589
4048
|
size: string;
|
|
3590
4049
|
aspect: number;
|
|
3591
4050
|
} | null | undefined;
|
|
3592
|
-
};
|
|
4051
|
+
} | null | undefined;
|
|
3593
4052
|
} | {
|
|
3594
4053
|
id: string;
|
|
3595
4054
|
type: "image";
|
|
3596
4055
|
description: string | null;
|
|
3597
4056
|
url: string;
|
|
3598
|
-
preview_url: string;
|
|
4057
|
+
preview_url: string | null;
|
|
3599
4058
|
remote_url: string | null;
|
|
3600
|
-
bluehash: string;
|
|
3601
|
-
meta
|
|
4059
|
+
bluehash: string | null;
|
|
4060
|
+
meta?: {
|
|
3602
4061
|
original: {
|
|
3603
4062
|
width: number;
|
|
3604
4063
|
height: number;
|
|
@@ -3615,67 +4074,67 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3615
4074
|
x: number;
|
|
3616
4075
|
y: number;
|
|
3617
4076
|
} | null | undefined;
|
|
3618
|
-
};
|
|
4077
|
+
} | null | undefined;
|
|
3619
4078
|
} | {
|
|
3620
4079
|
id: string;
|
|
3621
4080
|
type: "video";
|
|
3622
4081
|
description: string | null;
|
|
3623
4082
|
url: string;
|
|
3624
|
-
preview_url: string;
|
|
4083
|
+
preview_url: string | null;
|
|
3625
4084
|
remote_url: string | null;
|
|
3626
|
-
bluehash: string;
|
|
3627
|
-
meta
|
|
3628
|
-
length: string;
|
|
4085
|
+
bluehash: string | null;
|
|
4086
|
+
meta?: {
|
|
3629
4087
|
width: number;
|
|
3630
4088
|
height: number;
|
|
3631
|
-
duration: number;
|
|
3632
|
-
fps: number;
|
|
3633
4089
|
size: string;
|
|
3634
4090
|
aspect: number;
|
|
3635
4091
|
original: {
|
|
3636
4092
|
width: number;
|
|
3637
4093
|
height: number;
|
|
3638
|
-
duration
|
|
3639
|
-
frame_rate
|
|
3640
|
-
bitrate
|
|
4094
|
+
duration?: number | null | undefined;
|
|
4095
|
+
frame_rate?: string | null | undefined;
|
|
4096
|
+
bitrate?: number | null | undefined;
|
|
3641
4097
|
};
|
|
3642
|
-
|
|
3643
|
-
|
|
3644
|
-
|
|
4098
|
+
length?: string | null | undefined;
|
|
4099
|
+
duration?: number | null | undefined;
|
|
4100
|
+
fps?: number | null | undefined;
|
|
3645
4101
|
small?: {
|
|
3646
4102
|
width: number;
|
|
3647
4103
|
height: number;
|
|
3648
4104
|
size: string;
|
|
3649
4105
|
aspect: number;
|
|
3650
4106
|
} | null | undefined;
|
|
3651
|
-
|
|
4107
|
+
audio_encode?: string | null | undefined;
|
|
4108
|
+
audio_bitrate?: string | null | undefined;
|
|
4109
|
+
audio_channels?: string | null | undefined;
|
|
4110
|
+
} | null | undefined;
|
|
3652
4111
|
} | {
|
|
3653
4112
|
id: string;
|
|
3654
4113
|
type: "audio";
|
|
3655
4114
|
description: string | null;
|
|
3656
4115
|
url: string;
|
|
3657
|
-
preview_url: string;
|
|
4116
|
+
preview_url: string | null;
|
|
3658
4117
|
remote_url: string | null;
|
|
3659
|
-
bluehash: string;
|
|
4118
|
+
bluehash: string | null;
|
|
3660
4119
|
meta: {
|
|
3661
4120
|
length: string;
|
|
3662
4121
|
duration: number;
|
|
3663
4122
|
original: {
|
|
3664
4123
|
duration: number;
|
|
3665
|
-
bitrate
|
|
4124
|
+
bitrate?: number | null | undefined;
|
|
3666
4125
|
};
|
|
3667
|
-
audio_encode
|
|
3668
|
-
audio_bitrate
|
|
3669
|
-
audio_channels
|
|
4126
|
+
audio_encode?: string | null | undefined;
|
|
4127
|
+
audio_bitrate?: string | null | undefined;
|
|
4128
|
+
audio_channels?: string | null | undefined;
|
|
3670
4129
|
};
|
|
3671
4130
|
} | {
|
|
3672
4131
|
id: string;
|
|
3673
4132
|
type: "unknown";
|
|
3674
4133
|
description: string | null;
|
|
3675
4134
|
url: string;
|
|
3676
|
-
preview_url: string;
|
|
4135
|
+
preview_url: string | null;
|
|
3677
4136
|
remote_url: string | null;
|
|
3678
|
-
bluehash: string;
|
|
4137
|
+
bluehash: string | null;
|
|
3679
4138
|
})[];
|
|
3680
4139
|
reblogs_count: number;
|
|
3681
4140
|
favourites_count: number;
|
|
@@ -3719,13 +4178,15 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3719
4178
|
html: string;
|
|
3720
4179
|
embed_url: string;
|
|
3721
4180
|
} | null;
|
|
3722
|
-
language: string | null;
|
|
3723
4181
|
text: string | null;
|
|
3724
4182
|
edited_at: string | null;
|
|
3725
4183
|
reblog: {
|
|
3726
4184
|
id: string;
|
|
3727
4185
|
url: string | null;
|
|
3728
4186
|
content: string;
|
|
4187
|
+
sensitive: boolean;
|
|
4188
|
+
language: string | null;
|
|
4189
|
+
uri: string;
|
|
3729
4190
|
emojis: {
|
|
3730
4191
|
url: string;
|
|
3731
4192
|
shortcode: string;
|
|
@@ -3737,20 +4198,33 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3737
4198
|
account: {
|
|
3738
4199
|
id: string;
|
|
3739
4200
|
url: string;
|
|
4201
|
+
note: string;
|
|
4202
|
+
fields: {
|
|
4203
|
+
value: string;
|
|
4204
|
+
name: string;
|
|
4205
|
+
verified_at: string | null;
|
|
4206
|
+
}[];
|
|
3740
4207
|
username: string;
|
|
3741
4208
|
acct: string;
|
|
4209
|
+
uri: string;
|
|
3742
4210
|
display_name: string;
|
|
3743
|
-
note: string;
|
|
3744
4211
|
avatar: string;
|
|
3745
4212
|
avatar_static: string;
|
|
3746
4213
|
header: string;
|
|
3747
4214
|
header_static: string;
|
|
3748
4215
|
locked: boolean;
|
|
3749
|
-
|
|
3750
|
-
|
|
3751
|
-
|
|
3752
|
-
|
|
3753
|
-
|
|
4216
|
+
source: {
|
|
4217
|
+
note: string;
|
|
4218
|
+
fields: {
|
|
4219
|
+
value: string;
|
|
4220
|
+
name: string;
|
|
4221
|
+
verified_at: string | null;
|
|
4222
|
+
}[];
|
|
4223
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
4224
|
+
sensitive: boolean;
|
|
4225
|
+
language: string;
|
|
4226
|
+
follow_requests_count: number;
|
|
4227
|
+
};
|
|
3754
4228
|
emojis: {
|
|
3755
4229
|
url: string;
|
|
3756
4230
|
shortcode: string;
|
|
@@ -3772,20 +4246,33 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3772
4246
|
moved?: {
|
|
3773
4247
|
id: string;
|
|
3774
4248
|
url: string;
|
|
4249
|
+
note: string;
|
|
4250
|
+
fields: {
|
|
4251
|
+
value: string;
|
|
4252
|
+
name: string;
|
|
4253
|
+
verified_at: string | null;
|
|
4254
|
+
}[];
|
|
3775
4255
|
username: string;
|
|
3776
4256
|
acct: string;
|
|
4257
|
+
uri: string;
|
|
3777
4258
|
display_name: string;
|
|
3778
|
-
note: string;
|
|
3779
4259
|
avatar: string;
|
|
3780
4260
|
avatar_static: string;
|
|
3781
4261
|
header: string;
|
|
3782
4262
|
header_static: string;
|
|
3783
4263
|
locked: boolean;
|
|
3784
|
-
|
|
3785
|
-
|
|
3786
|
-
|
|
3787
|
-
|
|
3788
|
-
|
|
4264
|
+
source: {
|
|
4265
|
+
note: string;
|
|
4266
|
+
fields: {
|
|
4267
|
+
value: string;
|
|
4268
|
+
name: string;
|
|
4269
|
+
verified_at: string | null;
|
|
4270
|
+
}[];
|
|
4271
|
+
privacy: "public" | "unlist" | "private" | "direct";
|
|
4272
|
+
sensitive: boolean;
|
|
4273
|
+
language: string;
|
|
4274
|
+
follow_requests_count: number;
|
|
4275
|
+
};
|
|
3789
4276
|
emojis: {
|
|
3790
4277
|
url: string;
|
|
3791
4278
|
shortcode: string;
|
|
@@ -3806,49 +4293,47 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3806
4293
|
limited?: boolean | undefined;
|
|
3807
4294
|
} | null | undefined;
|
|
3808
4295
|
};
|
|
3809
|
-
uri: string;
|
|
3810
4296
|
visibility: "public" | "unlist" | "private" | "direct";
|
|
3811
|
-
sensitive: boolean;
|
|
3812
4297
|
spoiler_text: string;
|
|
3813
4298
|
media_attachments: ({
|
|
3814
4299
|
id: string;
|
|
3815
4300
|
type: "gifv";
|
|
3816
4301
|
description: string | null;
|
|
3817
4302
|
url: string;
|
|
3818
|
-
preview_url: string;
|
|
4303
|
+
preview_url: string | null;
|
|
3819
4304
|
remote_url: string | null;
|
|
3820
|
-
bluehash: string;
|
|
3821
|
-
meta
|
|
3822
|
-
length: string;
|
|
4305
|
+
bluehash: string | null;
|
|
4306
|
+
meta?: {
|
|
3823
4307
|
width: number;
|
|
3824
4308
|
height: number;
|
|
3825
|
-
duration: number;
|
|
3826
|
-
fps: number;
|
|
3827
4309
|
size: string;
|
|
3828
4310
|
aspect: number;
|
|
3829
4311
|
original: {
|
|
3830
4312
|
width: number;
|
|
3831
4313
|
height: number;
|
|
3832
|
-
duration
|
|
3833
|
-
frame_rate
|
|
3834
|
-
bitrate
|
|
4314
|
+
duration?: number | null | undefined;
|
|
4315
|
+
frame_rate?: string | null | undefined;
|
|
4316
|
+
bitrate?: number | null | undefined;
|
|
3835
4317
|
};
|
|
4318
|
+
length?: string | null | undefined;
|
|
4319
|
+
duration?: number | null | undefined;
|
|
4320
|
+
fps?: number | null | undefined;
|
|
3836
4321
|
small?: {
|
|
3837
4322
|
width: number;
|
|
3838
4323
|
height: number;
|
|
3839
4324
|
size: string;
|
|
3840
4325
|
aspect: number;
|
|
3841
4326
|
} | null | undefined;
|
|
3842
|
-
};
|
|
4327
|
+
} | null | undefined;
|
|
3843
4328
|
} | {
|
|
3844
4329
|
id: string;
|
|
3845
4330
|
type: "image";
|
|
3846
4331
|
description: string | null;
|
|
3847
4332
|
url: string;
|
|
3848
|
-
preview_url: string;
|
|
4333
|
+
preview_url: string | null;
|
|
3849
4334
|
remote_url: string | null;
|
|
3850
|
-
bluehash: string;
|
|
3851
|
-
meta
|
|
4335
|
+
bluehash: string | null;
|
|
4336
|
+
meta?: {
|
|
3852
4337
|
original: {
|
|
3853
4338
|
width: number;
|
|
3854
4339
|
height: number;
|
|
@@ -3865,67 +4350,67 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3865
4350
|
x: number;
|
|
3866
4351
|
y: number;
|
|
3867
4352
|
} | null | undefined;
|
|
3868
|
-
};
|
|
4353
|
+
} | null | undefined;
|
|
3869
4354
|
} | {
|
|
3870
4355
|
id: string;
|
|
3871
4356
|
type: "video";
|
|
3872
4357
|
description: string | null;
|
|
3873
4358
|
url: string;
|
|
3874
|
-
preview_url: string;
|
|
4359
|
+
preview_url: string | null;
|
|
3875
4360
|
remote_url: string | null;
|
|
3876
|
-
bluehash: string;
|
|
3877
|
-
meta
|
|
3878
|
-
length: string;
|
|
4361
|
+
bluehash: string | null;
|
|
4362
|
+
meta?: {
|
|
3879
4363
|
width: number;
|
|
3880
4364
|
height: number;
|
|
3881
|
-
duration: number;
|
|
3882
|
-
fps: number;
|
|
3883
4365
|
size: string;
|
|
3884
4366
|
aspect: number;
|
|
3885
4367
|
original: {
|
|
3886
4368
|
width: number;
|
|
3887
4369
|
height: number;
|
|
3888
|
-
duration
|
|
3889
|
-
frame_rate
|
|
3890
|
-
bitrate
|
|
4370
|
+
duration?: number | null | undefined;
|
|
4371
|
+
frame_rate?: string | null | undefined;
|
|
4372
|
+
bitrate?: number | null | undefined;
|
|
3891
4373
|
};
|
|
3892
|
-
|
|
3893
|
-
|
|
3894
|
-
|
|
4374
|
+
length?: string | null | undefined;
|
|
4375
|
+
duration?: number | null | undefined;
|
|
4376
|
+
fps?: number | null | undefined;
|
|
3895
4377
|
small?: {
|
|
3896
4378
|
width: number;
|
|
3897
4379
|
height: number;
|
|
3898
4380
|
size: string;
|
|
3899
4381
|
aspect: number;
|
|
3900
4382
|
} | null | undefined;
|
|
3901
|
-
|
|
4383
|
+
audio_encode?: string | null | undefined;
|
|
4384
|
+
audio_bitrate?: string | null | undefined;
|
|
4385
|
+
audio_channels?: string | null | undefined;
|
|
4386
|
+
} | null | undefined;
|
|
3902
4387
|
} | {
|
|
3903
4388
|
id: string;
|
|
3904
4389
|
type: "audio";
|
|
3905
4390
|
description: string | null;
|
|
3906
4391
|
url: string;
|
|
3907
|
-
preview_url: string;
|
|
4392
|
+
preview_url: string | null;
|
|
3908
4393
|
remote_url: string | null;
|
|
3909
|
-
bluehash: string;
|
|
4394
|
+
bluehash: string | null;
|
|
3910
4395
|
meta: {
|
|
3911
4396
|
length: string;
|
|
3912
4397
|
duration: number;
|
|
3913
4398
|
original: {
|
|
3914
4399
|
duration: number;
|
|
3915
|
-
bitrate
|
|
4400
|
+
bitrate?: number | null | undefined;
|
|
3916
4401
|
};
|
|
3917
|
-
audio_encode
|
|
3918
|
-
audio_bitrate
|
|
3919
|
-
audio_channels
|
|
4402
|
+
audio_encode?: string | null | undefined;
|
|
4403
|
+
audio_bitrate?: string | null | undefined;
|
|
4404
|
+
audio_channels?: string | null | undefined;
|
|
3920
4405
|
};
|
|
3921
4406
|
} | {
|
|
3922
4407
|
id: string;
|
|
3923
4408
|
type: "unknown";
|
|
3924
4409
|
description: string | null;
|
|
3925
4410
|
url: string;
|
|
3926
|
-
preview_url: string;
|
|
4411
|
+
preview_url: string | null;
|
|
3927
4412
|
remote_url: string | null;
|
|
3928
|
-
bluehash: string;
|
|
4413
|
+
bluehash: string | null;
|
|
3929
4414
|
})[];
|
|
3930
4415
|
reblogs_count: number;
|
|
3931
4416
|
favourites_count: number;
|
|
@@ -3969,7 +4454,6 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3969
4454
|
html: string;
|
|
3970
4455
|
embed_url: string;
|
|
3971
4456
|
} | null;
|
|
3972
|
-
language: string | null;
|
|
3973
4457
|
text: string | null;
|
|
3974
4458
|
edited_at: string | null;
|
|
3975
4459
|
application?: {
|
|
@@ -3985,7 +4469,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3985
4469
|
filter: {
|
|
3986
4470
|
id: string;
|
|
3987
4471
|
title: string;
|
|
3988
|
-
context: ("
|
|
4472
|
+
context: ("public" | "home" | "notifications" | "thread" | "account")[];
|
|
3989
4473
|
expires_at: string | null;
|
|
3990
4474
|
filter_action: "warn" | "hide";
|
|
3991
4475
|
keywords: {
|
|
@@ -4015,7 +4499,7 @@ export declare const Status: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4015
4499
|
filter: {
|
|
4016
4500
|
id: string;
|
|
4017
4501
|
title: string;
|
|
4018
|
-
context: ("
|
|
4502
|
+
context: ("public" | "home" | "notifications" | "thread" | "account")[];
|
|
4019
4503
|
expires_at: string | null;
|
|
4020
4504
|
filter_action: "warn" | "hide";
|
|
4021
4505
|
keywords: {
|