@llun/activities.schema 0.2.31 → 0.2.32
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/{person.js → actor.js} +8 -5
- package/dist/cjs/index.js +1 -1
- package/dist/esm/{person.js → actor.js} +7 -4
- package/dist/esm/index.js +1 -1
- package/dist/types/actor.d.ts +370 -0
- package/dist/types/index.d.ts +1 -1
- package/dist/types/like.d.ts +28 -28
- package/dist/types/mastodon/mediaAttachment/audio.d.ts +2 -2
- package/dist/types/mastodon/mediaAttachment/base.d.ts +2 -2
- package/dist/types/mastodon/mediaAttachment/gifv.d.ts +2 -2
- package/dist/types/mastodon/mediaAttachment/image.d.ts +2 -2
- package/dist/types/mastodon/mediaAttachment/index.d.ts +20 -20
- package/dist/types/mastodon/mediaAttachment/unknown.d.ts +2 -2
- package/dist/types/mastodon/mediaAttachment/video.d.ts +2 -2
- package/dist/types/mastodon/previewCard.d.ts +4 -4
- package/dist/types/mastodon/status/base.d.ts +28 -28
- package/dist/types/mastodon/status/index.d.ts +70 -70
- package/dist/types/note/attachment.d.ts +2 -2
- package/dist/types/note/baseContent.d.ts +18 -18
- package/dist/types/note/document.d.ts +2 -2
- package/dist/types/note/emoji.d.ts +2 -2
- package/dist/types/note/tag.d.ts +2 -2
- package/dist/types/note.d.ts +18 -18
- package/dist/types/question.d.ts +18 -18
- package/dist/types/undo.d.ts +38 -38
- package/package.json +1 -1
- package/src/{person.ts → actor.ts} +11 -4
- package/src/index.ts +1 -1
- package/dist/types/person.d.ts +0 -121
package/dist/types/question.d.ts
CHANGED
|
@@ -89,19 +89,19 @@ export declare const Question: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
89
89
|
type: "Document";
|
|
90
90
|
mediaType: string;
|
|
91
91
|
url: string;
|
|
92
|
+
name?: string | null | undefined;
|
|
92
93
|
blurhash?: string | undefined;
|
|
93
94
|
width?: number | undefined;
|
|
94
95
|
height?: number | undefined;
|
|
95
|
-
name?: string | null | undefined;
|
|
96
96
|
focalPoint?: [number, number] | undefined;
|
|
97
97
|
}, {
|
|
98
98
|
type: "Document";
|
|
99
99
|
mediaType: string;
|
|
100
100
|
url: string;
|
|
101
|
+
name?: string | null | undefined;
|
|
101
102
|
blurhash?: string | undefined;
|
|
102
103
|
width?: number | undefined;
|
|
103
104
|
height?: number | undefined;
|
|
104
|
-
name?: string | null | undefined;
|
|
105
105
|
focalPoint?: [number, number] | undefined;
|
|
106
106
|
}>]>, z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
107
107
|
type: z.ZodLiteral<"PropertyValue">;
|
|
@@ -128,19 +128,19 @@ export declare const Question: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
128
128
|
type: "Document";
|
|
129
129
|
mediaType: string;
|
|
130
130
|
url: string;
|
|
131
|
+
name?: string | null | undefined;
|
|
131
132
|
blurhash?: string | undefined;
|
|
132
133
|
width?: number | undefined;
|
|
133
134
|
height?: number | undefined;
|
|
134
|
-
name?: string | null | undefined;
|
|
135
135
|
focalPoint?: [number, number] | undefined;
|
|
136
136
|
}, {
|
|
137
137
|
type: "Document";
|
|
138
138
|
mediaType: string;
|
|
139
139
|
url: string;
|
|
140
|
+
name?: string | null | undefined;
|
|
140
141
|
blurhash?: string | undefined;
|
|
141
142
|
width?: number | undefined;
|
|
142
143
|
height?: number | undefined;
|
|
143
|
-
name?: string | null | undefined;
|
|
144
144
|
focalPoint?: [number, number] | undefined;
|
|
145
145
|
}>]>, "many">]>>>;
|
|
146
146
|
tag: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
@@ -175,21 +175,21 @@ export declare const Question: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
175
175
|
}, "strip", z.ZodTypeAny, {
|
|
176
176
|
type: "Emoji";
|
|
177
177
|
name: string;
|
|
178
|
-
updated: string;
|
|
179
178
|
icon: {
|
|
180
179
|
type: "Image";
|
|
181
180
|
url: string;
|
|
182
181
|
mediaType?: string | null | undefined;
|
|
183
182
|
};
|
|
183
|
+
updated: string;
|
|
184
184
|
}, {
|
|
185
185
|
type: "Emoji";
|
|
186
186
|
name: string;
|
|
187
|
-
updated: string;
|
|
188
187
|
icon: {
|
|
189
188
|
type: "Image";
|
|
190
189
|
url: string;
|
|
191
190
|
mediaType?: string | null | undefined;
|
|
192
191
|
};
|
|
192
|
+
updated: string;
|
|
193
193
|
}>, z.ZodObject<{
|
|
194
194
|
type: z.ZodLiteral<"Hashtag">;
|
|
195
195
|
href: z.ZodString;
|
|
@@ -234,21 +234,21 @@ export declare const Question: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
234
234
|
}, "strip", z.ZodTypeAny, {
|
|
235
235
|
type: "Emoji";
|
|
236
236
|
name: string;
|
|
237
|
-
updated: string;
|
|
238
237
|
icon: {
|
|
239
238
|
type: "Image";
|
|
240
239
|
url: string;
|
|
241
240
|
mediaType?: string | null | undefined;
|
|
242
241
|
};
|
|
242
|
+
updated: string;
|
|
243
243
|
}, {
|
|
244
244
|
type: "Emoji";
|
|
245
245
|
name: string;
|
|
246
|
-
updated: string;
|
|
247
246
|
icon: {
|
|
248
247
|
type: "Image";
|
|
249
248
|
url: string;
|
|
250
249
|
mediaType?: string | null | undefined;
|
|
251
250
|
};
|
|
251
|
+
updated: string;
|
|
252
252
|
}>, z.ZodObject<{
|
|
253
253
|
type: z.ZodLiteral<"Hashtag">;
|
|
254
254
|
href: z.ZodString;
|
|
@@ -305,12 +305,12 @@ export declare const Question: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
305
305
|
tag: {
|
|
306
306
|
type: "Emoji";
|
|
307
307
|
name: string;
|
|
308
|
-
updated: string;
|
|
309
308
|
icon: {
|
|
310
309
|
type: "Image";
|
|
311
310
|
url: string;
|
|
312
311
|
mediaType?: string | null | undefined;
|
|
313
312
|
};
|
|
313
|
+
updated: string;
|
|
314
314
|
} | {
|
|
315
315
|
type: "Mention";
|
|
316
316
|
name: string;
|
|
@@ -322,12 +322,12 @@ export declare const Question: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
322
322
|
} | ({
|
|
323
323
|
type: "Emoji";
|
|
324
324
|
name: string;
|
|
325
|
-
updated: string;
|
|
326
325
|
icon: {
|
|
327
326
|
type: "Image";
|
|
328
327
|
url: string;
|
|
329
328
|
mediaType?: string | null | undefined;
|
|
330
329
|
};
|
|
330
|
+
updated: string;
|
|
331
331
|
} | {
|
|
332
332
|
type: "Mention";
|
|
333
333
|
name: string;
|
|
@@ -347,9 +347,9 @@ export declare const Question: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
347
347
|
};
|
|
348
348
|
}[];
|
|
349
349
|
url?: string | null | undefined;
|
|
350
|
+
summary?: string | null | undefined;
|
|
350
351
|
updated?: string | null | undefined;
|
|
351
352
|
inReplyTo?: string | null | undefined;
|
|
352
|
-
summary?: string | null | undefined;
|
|
353
353
|
summaryMap?: Record<string, string> | null | undefined;
|
|
354
354
|
content?: string | string[] | null | undefined;
|
|
355
355
|
contentMap?: string[] | Record<string, string> | null | undefined;
|
|
@@ -372,10 +372,10 @@ export declare const Question: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
372
372
|
type: "Document";
|
|
373
373
|
mediaType: string;
|
|
374
374
|
url: string;
|
|
375
|
+
name?: string | null | undefined;
|
|
375
376
|
blurhash?: string | undefined;
|
|
376
377
|
width?: number | undefined;
|
|
377
378
|
height?: number | undefined;
|
|
378
|
-
name?: string | null | undefined;
|
|
379
379
|
focalPoint?: [number, number] | undefined;
|
|
380
380
|
} | {
|
|
381
381
|
type: "PropertyValue";
|
|
@@ -385,10 +385,10 @@ export declare const Question: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
385
385
|
type: "Document";
|
|
386
386
|
mediaType: string;
|
|
387
387
|
url: string;
|
|
388
|
+
name?: string | null | undefined;
|
|
388
389
|
blurhash?: string | undefined;
|
|
389
390
|
width?: number | undefined;
|
|
390
391
|
height?: number | undefined;
|
|
391
|
-
name?: string | null | undefined;
|
|
392
392
|
focalPoint?: [number, number] | undefined;
|
|
393
393
|
} | {
|
|
394
394
|
type: "PropertyValue";
|
|
@@ -405,12 +405,12 @@ export declare const Question: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
405
405
|
tag: {
|
|
406
406
|
type: "Emoji";
|
|
407
407
|
name: string;
|
|
408
|
-
updated: string;
|
|
409
408
|
icon: {
|
|
410
409
|
type: "Image";
|
|
411
410
|
url: string;
|
|
412
411
|
mediaType?: string | null | undefined;
|
|
413
412
|
};
|
|
413
|
+
updated: string;
|
|
414
414
|
} | {
|
|
415
415
|
type: "Mention";
|
|
416
416
|
name: string;
|
|
@@ -422,12 +422,12 @@ export declare const Question: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
422
422
|
} | ({
|
|
423
423
|
type: "Emoji";
|
|
424
424
|
name: string;
|
|
425
|
-
updated: string;
|
|
426
425
|
icon: {
|
|
427
426
|
type: "Image";
|
|
428
427
|
url: string;
|
|
429
428
|
mediaType?: string | null | undefined;
|
|
430
429
|
};
|
|
430
|
+
updated: string;
|
|
431
431
|
} | {
|
|
432
432
|
type: "Mention";
|
|
433
433
|
name: string;
|
|
@@ -447,9 +447,9 @@ export declare const Question: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
447
447
|
};
|
|
448
448
|
}[];
|
|
449
449
|
url?: string | null | undefined;
|
|
450
|
+
summary?: string | null | undefined;
|
|
450
451
|
updated?: string | null | undefined;
|
|
451
452
|
inReplyTo?: string | null | undefined;
|
|
452
|
-
summary?: string | null | undefined;
|
|
453
453
|
summaryMap?: Record<string, string> | null | undefined;
|
|
454
454
|
content?: string | string[] | null | undefined;
|
|
455
455
|
contentMap?: string[] | Record<string, string> | null | undefined;
|
|
@@ -472,10 +472,10 @@ export declare const Question: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
472
472
|
type: "Document";
|
|
473
473
|
mediaType: string;
|
|
474
474
|
url: string;
|
|
475
|
+
name?: string | null | undefined;
|
|
475
476
|
blurhash?: string | undefined;
|
|
476
477
|
width?: number | undefined;
|
|
477
478
|
height?: number | undefined;
|
|
478
|
-
name?: string | null | undefined;
|
|
479
479
|
focalPoint?: [number, number] | undefined;
|
|
480
480
|
} | {
|
|
481
481
|
type: "PropertyValue";
|
|
@@ -485,10 +485,10 @@ export declare const Question: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
485
485
|
type: "Document";
|
|
486
486
|
mediaType: string;
|
|
487
487
|
url: string;
|
|
488
|
+
name?: string | null | undefined;
|
|
488
489
|
blurhash?: string | undefined;
|
|
489
490
|
width?: number | undefined;
|
|
490
491
|
height?: number | undefined;
|
|
491
|
-
name?: string | null | undefined;
|
|
492
492
|
focalPoint?: [number, number] | undefined;
|
|
493
493
|
} | {
|
|
494
494
|
type: "PropertyValue";
|
package/dist/types/undo.d.ts
CHANGED
|
@@ -96,19 +96,19 @@ export declare const Undo: z.ZodObject<{
|
|
|
96
96
|
type: "Document";
|
|
97
97
|
mediaType: string;
|
|
98
98
|
url: string;
|
|
99
|
+
name?: string | null | undefined;
|
|
99
100
|
blurhash?: string | undefined;
|
|
100
101
|
width?: number | undefined;
|
|
101
102
|
height?: number | undefined;
|
|
102
|
-
name?: string | null | undefined;
|
|
103
103
|
focalPoint?: [number, number] | undefined;
|
|
104
104
|
}, {
|
|
105
105
|
type: "Document";
|
|
106
106
|
mediaType: string;
|
|
107
107
|
url: string;
|
|
108
|
+
name?: string | null | undefined;
|
|
108
109
|
blurhash?: string | undefined;
|
|
109
110
|
width?: number | undefined;
|
|
110
111
|
height?: number | undefined;
|
|
111
|
-
name?: string | null | undefined;
|
|
112
112
|
focalPoint?: [number, number] | undefined;
|
|
113
113
|
}>]>, z.ZodArray<z.ZodUnion<[z.ZodObject<{
|
|
114
114
|
type: z.ZodLiteral<"PropertyValue">;
|
|
@@ -135,19 +135,19 @@ export declare const Undo: z.ZodObject<{
|
|
|
135
135
|
type: "Document";
|
|
136
136
|
mediaType: string;
|
|
137
137
|
url: string;
|
|
138
|
+
name?: string | null | undefined;
|
|
138
139
|
blurhash?: string | undefined;
|
|
139
140
|
width?: number | undefined;
|
|
140
141
|
height?: number | undefined;
|
|
141
|
-
name?: string | null | undefined;
|
|
142
142
|
focalPoint?: [number, number] | undefined;
|
|
143
143
|
}, {
|
|
144
144
|
type: "Document";
|
|
145
145
|
mediaType: string;
|
|
146
146
|
url: string;
|
|
147
|
+
name?: string | null | undefined;
|
|
147
148
|
blurhash?: string | undefined;
|
|
148
149
|
width?: number | undefined;
|
|
149
150
|
height?: number | undefined;
|
|
150
|
-
name?: string | null | undefined;
|
|
151
151
|
focalPoint?: [number, number] | undefined;
|
|
152
152
|
}>]>, "many">]>>>;
|
|
153
153
|
tag: z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
|
|
@@ -182,21 +182,21 @@ export declare const Undo: z.ZodObject<{
|
|
|
182
182
|
}, "strip", z.ZodTypeAny, {
|
|
183
183
|
type: "Emoji";
|
|
184
184
|
name: string;
|
|
185
|
-
updated: string;
|
|
186
185
|
icon: {
|
|
187
186
|
type: "Image";
|
|
188
187
|
url: string;
|
|
189
188
|
mediaType?: string | null | undefined;
|
|
190
189
|
};
|
|
190
|
+
updated: string;
|
|
191
191
|
}, {
|
|
192
192
|
type: "Emoji";
|
|
193
193
|
name: string;
|
|
194
|
-
updated: string;
|
|
195
194
|
icon: {
|
|
196
195
|
type: "Image";
|
|
197
196
|
url: string;
|
|
198
197
|
mediaType?: string | null | undefined;
|
|
199
198
|
};
|
|
199
|
+
updated: string;
|
|
200
200
|
}>, z.ZodObject<{
|
|
201
201
|
type: z.ZodLiteral<"Hashtag">;
|
|
202
202
|
href: z.ZodString;
|
|
@@ -241,21 +241,21 @@ export declare const Undo: z.ZodObject<{
|
|
|
241
241
|
}, "strip", z.ZodTypeAny, {
|
|
242
242
|
type: "Emoji";
|
|
243
243
|
name: string;
|
|
244
|
-
updated: string;
|
|
245
244
|
icon: {
|
|
246
245
|
type: "Image";
|
|
247
246
|
url: string;
|
|
248
247
|
mediaType?: string | null | undefined;
|
|
249
248
|
};
|
|
249
|
+
updated: string;
|
|
250
250
|
}, {
|
|
251
251
|
type: "Emoji";
|
|
252
252
|
name: string;
|
|
253
|
-
updated: string;
|
|
254
253
|
icon: {
|
|
255
254
|
type: "Image";
|
|
256
255
|
url: string;
|
|
257
256
|
mediaType?: string | null | undefined;
|
|
258
257
|
};
|
|
258
|
+
updated: string;
|
|
259
259
|
}>, z.ZodObject<{
|
|
260
260
|
type: z.ZodLiteral<"Hashtag">;
|
|
261
261
|
href: z.ZodString;
|
|
@@ -283,12 +283,12 @@ export declare const Undo: z.ZodObject<{
|
|
|
283
283
|
tag: {
|
|
284
284
|
type: "Emoji";
|
|
285
285
|
name: string;
|
|
286
|
-
updated: string;
|
|
287
286
|
icon: {
|
|
288
287
|
type: "Image";
|
|
289
288
|
url: string;
|
|
290
289
|
mediaType?: string | null | undefined;
|
|
291
290
|
};
|
|
291
|
+
updated: string;
|
|
292
292
|
} | {
|
|
293
293
|
type: "Mention";
|
|
294
294
|
name: string;
|
|
@@ -300,12 +300,12 @@ export declare const Undo: z.ZodObject<{
|
|
|
300
300
|
} | ({
|
|
301
301
|
type: "Emoji";
|
|
302
302
|
name: string;
|
|
303
|
-
updated: string;
|
|
304
303
|
icon: {
|
|
305
304
|
type: "Image";
|
|
306
305
|
url: string;
|
|
307
306
|
mediaType?: string | null | undefined;
|
|
308
307
|
};
|
|
308
|
+
updated: string;
|
|
309
309
|
} | {
|
|
310
310
|
type: "Mention";
|
|
311
311
|
name: string;
|
|
@@ -316,9 +316,9 @@ export declare const Undo: z.ZodObject<{
|
|
|
316
316
|
href: string;
|
|
317
317
|
})[];
|
|
318
318
|
url?: string | null | undefined;
|
|
319
|
+
summary?: string | null | undefined;
|
|
319
320
|
updated?: string | null | undefined;
|
|
320
321
|
inReplyTo?: string | null | undefined;
|
|
321
|
-
summary?: string | null | undefined;
|
|
322
322
|
summaryMap?: Record<string, string> | null | undefined;
|
|
323
323
|
content?: string | string[] | null | undefined;
|
|
324
324
|
contentMap?: string[] | Record<string, string> | null | undefined;
|
|
@@ -341,10 +341,10 @@ export declare const Undo: z.ZodObject<{
|
|
|
341
341
|
type: "Document";
|
|
342
342
|
mediaType: string;
|
|
343
343
|
url: string;
|
|
344
|
+
name?: string | null | undefined;
|
|
344
345
|
blurhash?: string | undefined;
|
|
345
346
|
width?: number | undefined;
|
|
346
347
|
height?: number | undefined;
|
|
347
|
-
name?: string | null | undefined;
|
|
348
348
|
focalPoint?: [number, number] | undefined;
|
|
349
349
|
} | {
|
|
350
350
|
type: "PropertyValue";
|
|
@@ -354,10 +354,10 @@ export declare const Undo: z.ZodObject<{
|
|
|
354
354
|
type: "Document";
|
|
355
355
|
mediaType: string;
|
|
356
356
|
url: string;
|
|
357
|
+
name?: string | null | undefined;
|
|
357
358
|
blurhash?: string | undefined;
|
|
358
359
|
width?: number | undefined;
|
|
359
360
|
height?: number | undefined;
|
|
360
|
-
name?: string | null | undefined;
|
|
361
361
|
focalPoint?: [number, number] | undefined;
|
|
362
362
|
} | {
|
|
363
363
|
type: "PropertyValue";
|
|
@@ -374,12 +374,12 @@ export declare const Undo: z.ZodObject<{
|
|
|
374
374
|
tag: {
|
|
375
375
|
type: "Emoji";
|
|
376
376
|
name: string;
|
|
377
|
-
updated: string;
|
|
378
377
|
icon: {
|
|
379
378
|
type: "Image";
|
|
380
379
|
url: string;
|
|
381
380
|
mediaType?: string | null | undefined;
|
|
382
381
|
};
|
|
382
|
+
updated: string;
|
|
383
383
|
} | {
|
|
384
384
|
type: "Mention";
|
|
385
385
|
name: string;
|
|
@@ -391,12 +391,12 @@ export declare const Undo: z.ZodObject<{
|
|
|
391
391
|
} | ({
|
|
392
392
|
type: "Emoji";
|
|
393
393
|
name: string;
|
|
394
|
-
updated: string;
|
|
395
394
|
icon: {
|
|
396
395
|
type: "Image";
|
|
397
396
|
url: string;
|
|
398
397
|
mediaType?: string | null | undefined;
|
|
399
398
|
};
|
|
399
|
+
updated: string;
|
|
400
400
|
} | {
|
|
401
401
|
type: "Mention";
|
|
402
402
|
name: string;
|
|
@@ -407,9 +407,9 @@ export declare const Undo: z.ZodObject<{
|
|
|
407
407
|
href: string;
|
|
408
408
|
})[];
|
|
409
409
|
url?: string | null | undefined;
|
|
410
|
+
summary?: string | null | undefined;
|
|
410
411
|
updated?: string | null | undefined;
|
|
411
412
|
inReplyTo?: string | null | undefined;
|
|
412
|
-
summary?: string | null | undefined;
|
|
413
413
|
summaryMap?: Record<string, string> | null | undefined;
|
|
414
414
|
content?: string | string[] | null | undefined;
|
|
415
415
|
contentMap?: string[] | Record<string, string> | null | undefined;
|
|
@@ -432,10 +432,10 @@ export declare const Undo: z.ZodObject<{
|
|
|
432
432
|
type: "Document";
|
|
433
433
|
mediaType: string;
|
|
434
434
|
url: string;
|
|
435
|
+
name?: string | null | undefined;
|
|
435
436
|
blurhash?: string | undefined;
|
|
436
437
|
width?: number | undefined;
|
|
437
438
|
height?: number | undefined;
|
|
438
|
-
name?: string | null | undefined;
|
|
439
439
|
focalPoint?: [number, number] | undefined;
|
|
440
440
|
} | {
|
|
441
441
|
type: "PropertyValue";
|
|
@@ -445,10 +445,10 @@ export declare const Undo: z.ZodObject<{
|
|
|
445
445
|
type: "Document";
|
|
446
446
|
mediaType: string;
|
|
447
447
|
url: string;
|
|
448
|
+
name?: string | null | undefined;
|
|
448
449
|
blurhash?: string | undefined;
|
|
449
450
|
width?: number | undefined;
|
|
450
451
|
height?: number | undefined;
|
|
451
|
-
name?: string | null | undefined;
|
|
452
452
|
focalPoint?: [number, number] | undefined;
|
|
453
453
|
} | {
|
|
454
454
|
type: "PropertyValue";
|
|
@@ -467,12 +467,12 @@ export declare const Undo: z.ZodObject<{
|
|
|
467
467
|
tag: {
|
|
468
468
|
type: "Emoji";
|
|
469
469
|
name: string;
|
|
470
|
-
updated: string;
|
|
471
470
|
icon: {
|
|
472
471
|
type: "Image";
|
|
473
472
|
url: string;
|
|
474
473
|
mediaType?: string | null | undefined;
|
|
475
474
|
};
|
|
475
|
+
updated: string;
|
|
476
476
|
} | {
|
|
477
477
|
type: "Mention";
|
|
478
478
|
name: string;
|
|
@@ -484,12 +484,12 @@ export declare const Undo: z.ZodObject<{
|
|
|
484
484
|
} | ({
|
|
485
485
|
type: "Emoji";
|
|
486
486
|
name: string;
|
|
487
|
-
updated: string;
|
|
488
487
|
icon: {
|
|
489
488
|
type: "Image";
|
|
490
489
|
url: string;
|
|
491
490
|
mediaType?: string | null | undefined;
|
|
492
491
|
};
|
|
492
|
+
updated: string;
|
|
493
493
|
} | {
|
|
494
494
|
type: "Mention";
|
|
495
495
|
name: string;
|
|
@@ -500,9 +500,9 @@ export declare const Undo: z.ZodObject<{
|
|
|
500
500
|
href: string;
|
|
501
501
|
})[];
|
|
502
502
|
url?: string | null | undefined;
|
|
503
|
+
summary?: string | null | undefined;
|
|
503
504
|
updated?: string | null | undefined;
|
|
504
505
|
inReplyTo?: string | null | undefined;
|
|
505
|
-
summary?: string | null | undefined;
|
|
506
506
|
summaryMap?: Record<string, string> | null | undefined;
|
|
507
507
|
content?: string | string[] | null | undefined;
|
|
508
508
|
contentMap?: string[] | Record<string, string> | null | undefined;
|
|
@@ -525,10 +525,10 @@ export declare const Undo: z.ZodObject<{
|
|
|
525
525
|
type: "Document";
|
|
526
526
|
mediaType: string;
|
|
527
527
|
url: string;
|
|
528
|
+
name?: string | null | undefined;
|
|
528
529
|
blurhash?: string | undefined;
|
|
529
530
|
width?: number | undefined;
|
|
530
531
|
height?: number | undefined;
|
|
531
|
-
name?: string | null | undefined;
|
|
532
532
|
focalPoint?: [number, number] | undefined;
|
|
533
533
|
} | {
|
|
534
534
|
type: "PropertyValue";
|
|
@@ -538,10 +538,10 @@ export declare const Undo: z.ZodObject<{
|
|
|
538
538
|
type: "Document";
|
|
539
539
|
mediaType: string;
|
|
540
540
|
url: string;
|
|
541
|
+
name?: string | null | undefined;
|
|
541
542
|
blurhash?: string | undefined;
|
|
542
543
|
width?: number | undefined;
|
|
543
544
|
height?: number | undefined;
|
|
544
|
-
name?: string | null | undefined;
|
|
545
545
|
focalPoint?: [number, number] | undefined;
|
|
546
546
|
} | {
|
|
547
547
|
type: "PropertyValue";
|
|
@@ -563,12 +563,12 @@ export declare const Undo: z.ZodObject<{
|
|
|
563
563
|
tag: {
|
|
564
564
|
type: "Emoji";
|
|
565
565
|
name: string;
|
|
566
|
-
updated: string;
|
|
567
566
|
icon: {
|
|
568
567
|
type: "Image";
|
|
569
568
|
url: string;
|
|
570
569
|
mediaType?: string | null | undefined;
|
|
571
570
|
};
|
|
571
|
+
updated: string;
|
|
572
572
|
} | {
|
|
573
573
|
type: "Mention";
|
|
574
574
|
name: string;
|
|
@@ -580,12 +580,12 @@ export declare const Undo: z.ZodObject<{
|
|
|
580
580
|
} | ({
|
|
581
581
|
type: "Emoji";
|
|
582
582
|
name: string;
|
|
583
|
-
updated: string;
|
|
584
583
|
icon: {
|
|
585
584
|
type: "Image";
|
|
586
585
|
url: string;
|
|
587
586
|
mediaType?: string | null | undefined;
|
|
588
587
|
};
|
|
588
|
+
updated: string;
|
|
589
589
|
} | {
|
|
590
590
|
type: "Mention";
|
|
591
591
|
name: string;
|
|
@@ -596,9 +596,9 @@ export declare const Undo: z.ZodObject<{
|
|
|
596
596
|
href: string;
|
|
597
597
|
})[];
|
|
598
598
|
url?: string | null | undefined;
|
|
599
|
+
summary?: string | null | undefined;
|
|
599
600
|
updated?: string | null | undefined;
|
|
600
601
|
inReplyTo?: string | null | undefined;
|
|
601
|
-
summary?: string | null | undefined;
|
|
602
602
|
summaryMap?: Record<string, string> | null | undefined;
|
|
603
603
|
content?: string | string[] | null | undefined;
|
|
604
604
|
contentMap?: string[] | Record<string, string> | null | undefined;
|
|
@@ -621,10 +621,10 @@ export declare const Undo: z.ZodObject<{
|
|
|
621
621
|
type: "Document";
|
|
622
622
|
mediaType: string;
|
|
623
623
|
url: string;
|
|
624
|
+
name?: string | null | undefined;
|
|
624
625
|
blurhash?: string | undefined;
|
|
625
626
|
width?: number | undefined;
|
|
626
627
|
height?: number | undefined;
|
|
627
|
-
name?: string | null | undefined;
|
|
628
628
|
focalPoint?: [number, number] | undefined;
|
|
629
629
|
} | {
|
|
630
630
|
type: "PropertyValue";
|
|
@@ -634,10 +634,10 @@ export declare const Undo: z.ZodObject<{
|
|
|
634
634
|
type: "Document";
|
|
635
635
|
mediaType: string;
|
|
636
636
|
url: string;
|
|
637
|
+
name?: string | null | undefined;
|
|
637
638
|
blurhash?: string | undefined;
|
|
638
639
|
width?: number | undefined;
|
|
639
640
|
height?: number | undefined;
|
|
640
|
-
name?: string | null | undefined;
|
|
641
641
|
focalPoint?: [number, number] | undefined;
|
|
642
642
|
} | {
|
|
643
643
|
type: "PropertyValue";
|
|
@@ -681,12 +681,12 @@ export declare const Undo: z.ZodObject<{
|
|
|
681
681
|
tag: {
|
|
682
682
|
type: "Emoji";
|
|
683
683
|
name: string;
|
|
684
|
-
updated: string;
|
|
685
684
|
icon: {
|
|
686
685
|
type: "Image";
|
|
687
686
|
url: string;
|
|
688
687
|
mediaType?: string | null | undefined;
|
|
689
688
|
};
|
|
689
|
+
updated: string;
|
|
690
690
|
} | {
|
|
691
691
|
type: "Mention";
|
|
692
692
|
name: string;
|
|
@@ -698,12 +698,12 @@ export declare const Undo: z.ZodObject<{
|
|
|
698
698
|
} | ({
|
|
699
699
|
type: "Emoji";
|
|
700
700
|
name: string;
|
|
701
|
-
updated: string;
|
|
702
701
|
icon: {
|
|
703
702
|
type: "Image";
|
|
704
703
|
url: string;
|
|
705
704
|
mediaType?: string | null | undefined;
|
|
706
705
|
};
|
|
706
|
+
updated: string;
|
|
707
707
|
} | {
|
|
708
708
|
type: "Mention";
|
|
709
709
|
name: string;
|
|
@@ -714,9 +714,9 @@ export declare const Undo: z.ZodObject<{
|
|
|
714
714
|
href: string;
|
|
715
715
|
})[];
|
|
716
716
|
url?: string | null | undefined;
|
|
717
|
+
summary?: string | null | undefined;
|
|
717
718
|
updated?: string | null | undefined;
|
|
718
719
|
inReplyTo?: string | null | undefined;
|
|
719
|
-
summary?: string | null | undefined;
|
|
720
720
|
summaryMap?: Record<string, string> | null | undefined;
|
|
721
721
|
content?: string | string[] | null | undefined;
|
|
722
722
|
contentMap?: string[] | Record<string, string> | null | undefined;
|
|
@@ -739,10 +739,10 @@ export declare const Undo: z.ZodObject<{
|
|
|
739
739
|
type: "Document";
|
|
740
740
|
mediaType: string;
|
|
741
741
|
url: string;
|
|
742
|
+
name?: string | null | undefined;
|
|
742
743
|
blurhash?: string | undefined;
|
|
743
744
|
width?: number | undefined;
|
|
744
745
|
height?: number | undefined;
|
|
745
|
-
name?: string | null | undefined;
|
|
746
746
|
focalPoint?: [number, number] | undefined;
|
|
747
747
|
} | {
|
|
748
748
|
type: "PropertyValue";
|
|
@@ -752,10 +752,10 @@ export declare const Undo: z.ZodObject<{
|
|
|
752
752
|
type: "Document";
|
|
753
753
|
mediaType: string;
|
|
754
754
|
url: string;
|
|
755
|
+
name?: string | null | undefined;
|
|
755
756
|
blurhash?: string | undefined;
|
|
756
757
|
width?: number | undefined;
|
|
757
758
|
height?: number | undefined;
|
|
758
|
-
name?: string | null | undefined;
|
|
759
759
|
focalPoint?: [number, number] | undefined;
|
|
760
760
|
} | {
|
|
761
761
|
type: "PropertyValue";
|
|
@@ -787,12 +787,12 @@ export declare const Undo: z.ZodObject<{
|
|
|
787
787
|
tag: {
|
|
788
788
|
type: "Emoji";
|
|
789
789
|
name: string;
|
|
790
|
-
updated: string;
|
|
791
790
|
icon: {
|
|
792
791
|
type: "Image";
|
|
793
792
|
url: string;
|
|
794
793
|
mediaType?: string | null | undefined;
|
|
795
794
|
};
|
|
795
|
+
updated: string;
|
|
796
796
|
} | {
|
|
797
797
|
type: "Mention";
|
|
798
798
|
name: string;
|
|
@@ -804,12 +804,12 @@ export declare const Undo: z.ZodObject<{
|
|
|
804
804
|
} | ({
|
|
805
805
|
type: "Emoji";
|
|
806
806
|
name: string;
|
|
807
|
-
updated: string;
|
|
808
807
|
icon: {
|
|
809
808
|
type: "Image";
|
|
810
809
|
url: string;
|
|
811
810
|
mediaType?: string | null | undefined;
|
|
812
811
|
};
|
|
812
|
+
updated: string;
|
|
813
813
|
} | {
|
|
814
814
|
type: "Mention";
|
|
815
815
|
name: string;
|
|
@@ -820,9 +820,9 @@ export declare const Undo: z.ZodObject<{
|
|
|
820
820
|
href: string;
|
|
821
821
|
})[];
|
|
822
822
|
url?: string | null | undefined;
|
|
823
|
+
summary?: string | null | undefined;
|
|
823
824
|
updated?: string | null | undefined;
|
|
824
825
|
inReplyTo?: string | null | undefined;
|
|
825
|
-
summary?: string | null | undefined;
|
|
826
826
|
summaryMap?: Record<string, string> | null | undefined;
|
|
827
827
|
content?: string | string[] | null | undefined;
|
|
828
828
|
contentMap?: string[] | Record<string, string> | null | undefined;
|
|
@@ -845,10 +845,10 @@ export declare const Undo: z.ZodObject<{
|
|
|
845
845
|
type: "Document";
|
|
846
846
|
mediaType: string;
|
|
847
847
|
url: string;
|
|
848
|
+
name?: string | null | undefined;
|
|
848
849
|
blurhash?: string | undefined;
|
|
849
850
|
width?: number | undefined;
|
|
850
851
|
height?: number | undefined;
|
|
851
|
-
name?: string | null | undefined;
|
|
852
852
|
focalPoint?: [number, number] | undefined;
|
|
853
853
|
} | {
|
|
854
854
|
type: "PropertyValue";
|
|
@@ -858,10 +858,10 @@ export declare const Undo: z.ZodObject<{
|
|
|
858
858
|
type: "Document";
|
|
859
859
|
mediaType: string;
|
|
860
860
|
url: string;
|
|
861
|
+
name?: string | null | undefined;
|
|
861
862
|
blurhash?: string | undefined;
|
|
862
863
|
width?: number | undefined;
|
|
863
864
|
height?: number | undefined;
|
|
864
|
-
name?: string | null | undefined;
|
|
865
865
|
focalPoint?: [number, number] | undefined;
|
|
866
866
|
} | {
|
|
867
867
|
type: "PropertyValue";
|