@llun/activities.schema 0.0.5 → 0.0.7

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/undo.d.ts CHANGED
@@ -10,16 +10,143 @@ export declare const Undo: z.ZodObject<{
10
10
  object: z.ZodUnion<[z.ZodString, z.ZodObject<{
11
11
  id: z.ZodString;
12
12
  url: z.ZodString;
13
+ updated: z.ZodOptional<z.ZodString>;
13
14
  attributedTo: z.ZodString;
14
15
  to: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
15
16
  cc: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
16
- inReplyTo: z.ZodOptional<z.ZodString>;
17
+ inReplyTo: z.ZodNullable<z.ZodString>;
17
18
  summary: z.ZodOptional<z.ZodString>;
18
19
  summaryMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
19
20
  content: z.ZodOptional<z.ZodString>;
20
21
  contentMap: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodString>>;
22
+ attachment: z.ZodOptional<z.ZodUnion<[z.ZodUnion<[z.ZodObject<{
23
+ type: z.ZodLiteral<"PropertyValue">;
24
+ name: z.ZodString;
25
+ value: z.ZodString;
26
+ }, "strip", z.ZodTypeAny, {
27
+ type: "PropertyValue";
28
+ value: string;
29
+ name: string;
30
+ }, {
31
+ type: "PropertyValue";
32
+ value: string;
33
+ name: string;
34
+ }>, z.ZodObject<{
35
+ type: z.ZodLiteral<"Document">;
36
+ mediaType: z.ZodString;
37
+ url: z.ZodString;
38
+ blurhash: z.ZodOptional<z.ZodString>;
39
+ width: z.ZodOptional<z.ZodNumber>;
40
+ height: z.ZodOptional<z.ZodNumber>;
41
+ name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
42
+ focalPoint: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>>;
43
+ }, "strip", z.ZodTypeAny, {
44
+ type: "Document";
45
+ mediaType: string;
46
+ url: string;
47
+ blurhash?: string | undefined;
48
+ width?: number | undefined;
49
+ height?: number | undefined;
50
+ name?: string | null | undefined;
51
+ focalPoint?: [number, number] | undefined;
52
+ }, {
53
+ type: "Document";
54
+ mediaType: string;
55
+ url: string;
56
+ blurhash?: string | undefined;
57
+ width?: number | undefined;
58
+ height?: number | undefined;
59
+ name?: string | null | undefined;
60
+ focalPoint?: [number, number] | undefined;
61
+ }>]>, z.ZodArray<z.ZodUnion<[z.ZodObject<{
62
+ type: z.ZodLiteral<"PropertyValue">;
63
+ name: z.ZodString;
64
+ value: z.ZodString;
65
+ }, "strip", z.ZodTypeAny, {
66
+ type: "PropertyValue";
67
+ value: string;
68
+ name: string;
69
+ }, {
70
+ type: "PropertyValue";
71
+ value: string;
72
+ name: string;
73
+ }>, z.ZodObject<{
74
+ type: z.ZodLiteral<"Document">;
75
+ mediaType: z.ZodString;
76
+ url: z.ZodString;
77
+ blurhash: z.ZodOptional<z.ZodString>;
78
+ width: z.ZodOptional<z.ZodNumber>;
79
+ height: z.ZodOptional<z.ZodNumber>;
80
+ name: z.ZodNullable<z.ZodOptional<z.ZodString>>;
81
+ focalPoint: z.ZodOptional<z.ZodTuple<[z.ZodNumber, z.ZodNumber], null>>;
82
+ }, "strip", z.ZodTypeAny, {
83
+ type: "Document";
84
+ mediaType: string;
85
+ url: string;
86
+ blurhash?: string | undefined;
87
+ width?: number | undefined;
88
+ height?: number | undefined;
89
+ name?: string | null | undefined;
90
+ focalPoint?: [number, number] | undefined;
91
+ }, {
92
+ type: "Document";
93
+ mediaType: string;
94
+ url: string;
95
+ blurhash?: string | undefined;
96
+ width?: number | undefined;
97
+ height?: number | undefined;
98
+ name?: string | null | undefined;
99
+ focalPoint?: [number, number] | undefined;
100
+ }>]>, "many">]>>;
101
+ tag: z.ZodArray<z.ZodUnion<[z.ZodObject<{
102
+ type: z.ZodLiteral<"Mention">;
103
+ href: z.ZodString;
104
+ name: z.ZodString;
105
+ }, "strip", z.ZodTypeAny, {
106
+ type: "Mention";
107
+ name: string;
108
+ href: string;
109
+ }, {
110
+ type: "Mention";
111
+ name: string;
112
+ href: string;
113
+ }>, z.ZodObject<{
114
+ type: z.ZodLiteral<"Emoji">;
115
+ name: z.ZodString;
116
+ updated: z.ZodString;
117
+ icon: z.ZodObject<{
118
+ type: z.ZodLiteral<"Image">;
119
+ mediaType: z.ZodString;
120
+ url: z.ZodString;
121
+ }, "strip", z.ZodTypeAny, {
122
+ type: "Image";
123
+ mediaType: string;
124
+ url: string;
125
+ }, {
126
+ type: "Image";
127
+ mediaType: string;
128
+ url: string;
129
+ }>;
130
+ }, "strip", z.ZodTypeAny, {
131
+ type: "Emoji";
132
+ name: string;
133
+ updated: string;
134
+ icon: {
135
+ type: "Image";
136
+ mediaType: string;
137
+ url: string;
138
+ };
139
+ }, {
140
+ type: "Emoji";
141
+ name: string;
142
+ updated: string;
143
+ icon: {
144
+ type: "Image";
145
+ mediaType: string;
146
+ url: string;
147
+ };
148
+ }>]>, "many">;
21
149
  published: z.ZodString;
22
- updated: z.ZodOptional<z.ZodString>;
23
150
  type: z.ZodLiteral<"Note">;
24
151
  }, "strip", z.ZodTypeAny, {
25
152
  id: string;
@@ -28,13 +155,54 @@ export declare const Undo: z.ZodObject<{
28
155
  attributedTo: string;
29
156
  to: (string | string[]) & (string | string[] | undefined);
30
157
  cc: (string | string[]) & (string | string[] | undefined);
158
+ inReplyTo: string | null;
159
+ tag: ({
160
+ type: "Emoji";
161
+ name: string;
162
+ updated: string;
163
+ icon: {
164
+ type: "Image";
165
+ mediaType: string;
166
+ url: string;
167
+ };
168
+ } | {
169
+ type: "Mention";
170
+ name: string;
171
+ href: string;
172
+ })[];
31
173
  published: string;
32
- inReplyTo?: string | undefined;
174
+ updated?: string | undefined;
33
175
  summary?: string | undefined;
34
176
  summaryMap?: Record<string, string> | undefined;
35
177
  content?: string | undefined;
36
178
  contentMap?: Record<string, string> | undefined;
37
- updated?: string | undefined;
179
+ attachment?: {
180
+ type: "Document";
181
+ mediaType: string;
182
+ url: string;
183
+ blurhash?: string | undefined;
184
+ width?: number | undefined;
185
+ height?: number | undefined;
186
+ name?: string | null | undefined;
187
+ focalPoint?: [number, number] | undefined;
188
+ } | {
189
+ type: "PropertyValue";
190
+ value: string;
191
+ name: string;
192
+ } | ({
193
+ type: "Document";
194
+ mediaType: string;
195
+ url: string;
196
+ blurhash?: string | undefined;
197
+ width?: number | undefined;
198
+ height?: number | undefined;
199
+ name?: string | null | undefined;
200
+ focalPoint?: [number, number] | undefined;
201
+ } | {
202
+ type: "PropertyValue";
203
+ value: string;
204
+ name: string;
205
+ })[] | undefined;
38
206
  }, {
39
207
  id: string;
40
208
  type: "Note";
@@ -42,13 +210,54 @@ export declare const Undo: z.ZodObject<{
42
210
  attributedTo: string;
43
211
  to: (string | string[]) & (string | string[] | undefined);
44
212
  cc: (string | string[]) & (string | string[] | undefined);
213
+ inReplyTo: string | null;
214
+ tag: ({
215
+ type: "Emoji";
216
+ name: string;
217
+ updated: string;
218
+ icon: {
219
+ type: "Image";
220
+ mediaType: string;
221
+ url: string;
222
+ };
223
+ } | {
224
+ type: "Mention";
225
+ name: string;
226
+ href: string;
227
+ })[];
45
228
  published: string;
46
- inReplyTo?: string | undefined;
229
+ updated?: string | undefined;
47
230
  summary?: string | undefined;
48
231
  summaryMap?: Record<string, string> | undefined;
49
232
  content?: string | undefined;
50
233
  contentMap?: Record<string, string> | undefined;
51
- updated?: string | undefined;
234
+ attachment?: {
235
+ type: "Document";
236
+ mediaType: string;
237
+ url: string;
238
+ blurhash?: string | undefined;
239
+ width?: number | undefined;
240
+ height?: number | undefined;
241
+ name?: string | null | undefined;
242
+ focalPoint?: [number, number] | undefined;
243
+ } | {
244
+ type: "PropertyValue";
245
+ value: string;
246
+ name: string;
247
+ } | ({
248
+ type: "Document";
249
+ mediaType: string;
250
+ url: string;
251
+ blurhash?: string | undefined;
252
+ width?: number | undefined;
253
+ height?: number | undefined;
254
+ name?: string | null | undefined;
255
+ focalPoint?: [number, number] | undefined;
256
+ } | {
257
+ type: "PropertyValue";
258
+ value: string;
259
+ name: string;
260
+ })[] | undefined;
52
261
  }>]>;
53
262
  }, "strip", z.ZodTypeAny, {
54
263
  object: (string | {
@@ -58,13 +267,54 @@ export declare const Undo: z.ZodObject<{
58
267
  attributedTo: string;
59
268
  to: (string | string[]) & (string | string[] | undefined);
60
269
  cc: (string | string[]) & (string | string[] | undefined);
270
+ inReplyTo: string | null;
271
+ tag: ({
272
+ type: "Emoji";
273
+ name: string;
274
+ updated: string;
275
+ icon: {
276
+ type: "Image";
277
+ mediaType: string;
278
+ url: string;
279
+ };
280
+ } | {
281
+ type: "Mention";
282
+ name: string;
283
+ href: string;
284
+ })[];
61
285
  published: string;
62
- inReplyTo?: string | undefined;
286
+ updated?: string | undefined;
63
287
  summary?: string | undefined;
64
288
  summaryMap?: Record<string, string> | undefined;
65
289
  content?: string | undefined;
66
290
  contentMap?: Record<string, string> | undefined;
67
- updated?: string | undefined;
291
+ attachment?: {
292
+ type: "Document";
293
+ mediaType: string;
294
+ url: string;
295
+ blurhash?: string | undefined;
296
+ width?: number | undefined;
297
+ height?: number | undefined;
298
+ name?: string | null | undefined;
299
+ focalPoint?: [number, number] | undefined;
300
+ } | {
301
+ type: "PropertyValue";
302
+ value: string;
303
+ name: string;
304
+ } | ({
305
+ type: "Document";
306
+ mediaType: string;
307
+ url: string;
308
+ blurhash?: string | undefined;
309
+ width?: number | undefined;
310
+ height?: number | undefined;
311
+ name?: string | null | undefined;
312
+ focalPoint?: [number, number] | undefined;
313
+ } | {
314
+ type: "PropertyValue";
315
+ value: string;
316
+ name: string;
317
+ })[] | undefined;
68
318
  }) & (string | {
69
319
  id: string;
70
320
  type: "Note";
@@ -72,13 +322,54 @@ export declare const Undo: z.ZodObject<{
72
322
  attributedTo: string;
73
323
  to: (string | string[]) & (string | string[] | undefined);
74
324
  cc: (string | string[]) & (string | string[] | undefined);
325
+ inReplyTo: string | null;
326
+ tag: ({
327
+ type: "Emoji";
328
+ name: string;
329
+ updated: string;
330
+ icon: {
331
+ type: "Image";
332
+ mediaType: string;
333
+ url: string;
334
+ };
335
+ } | {
336
+ type: "Mention";
337
+ name: string;
338
+ href: string;
339
+ })[];
75
340
  published: string;
76
- inReplyTo?: string | undefined;
341
+ updated?: string | undefined;
77
342
  summary?: string | undefined;
78
343
  summaryMap?: Record<string, string> | undefined;
79
344
  content?: string | undefined;
80
345
  contentMap?: Record<string, string> | undefined;
81
- updated?: string | undefined;
346
+ attachment?: {
347
+ type: "Document";
348
+ mediaType: string;
349
+ url: string;
350
+ blurhash?: string | undefined;
351
+ width?: number | undefined;
352
+ height?: number | undefined;
353
+ name?: string | null | undefined;
354
+ focalPoint?: [number, number] | undefined;
355
+ } | {
356
+ type: "PropertyValue";
357
+ value: string;
358
+ name: string;
359
+ } | ({
360
+ type: "Document";
361
+ mediaType: string;
362
+ url: string;
363
+ blurhash?: string | undefined;
364
+ width?: number | undefined;
365
+ height?: number | undefined;
366
+ name?: string | null | undefined;
367
+ focalPoint?: [number, number] | undefined;
368
+ } | {
369
+ type: "PropertyValue";
370
+ value: string;
371
+ name: string;
372
+ })[] | undefined;
82
373
  } | undefined);
83
374
  id: string;
84
375
  type: "Like";
@@ -91,13 +382,54 @@ export declare const Undo: z.ZodObject<{
91
382
  attributedTo: string;
92
383
  to: (string | string[]) & (string | string[] | undefined);
93
384
  cc: (string | string[]) & (string | string[] | undefined);
385
+ inReplyTo: string | null;
386
+ tag: ({
387
+ type: "Emoji";
388
+ name: string;
389
+ updated: string;
390
+ icon: {
391
+ type: "Image";
392
+ mediaType: string;
393
+ url: string;
394
+ };
395
+ } | {
396
+ type: "Mention";
397
+ name: string;
398
+ href: string;
399
+ })[];
94
400
  published: string;
95
- inReplyTo?: string | undefined;
401
+ updated?: string | undefined;
96
402
  summary?: string | undefined;
97
403
  summaryMap?: Record<string, string> | undefined;
98
404
  content?: string | undefined;
99
405
  contentMap?: Record<string, string> | undefined;
100
- updated?: string | undefined;
406
+ attachment?: {
407
+ type: "Document";
408
+ mediaType: string;
409
+ url: string;
410
+ blurhash?: string | undefined;
411
+ width?: number | undefined;
412
+ height?: number | undefined;
413
+ name?: string | null | undefined;
414
+ focalPoint?: [number, number] | undefined;
415
+ } | {
416
+ type: "PropertyValue";
417
+ value: string;
418
+ name: string;
419
+ } | ({
420
+ type: "Document";
421
+ mediaType: string;
422
+ url: string;
423
+ blurhash?: string | undefined;
424
+ width?: number | undefined;
425
+ height?: number | undefined;
426
+ name?: string | null | undefined;
427
+ focalPoint?: [number, number] | undefined;
428
+ } | {
429
+ type: "PropertyValue";
430
+ value: string;
431
+ name: string;
432
+ })[] | undefined;
101
433
  }) & (string | {
102
434
  id: string;
103
435
  type: "Note";
@@ -105,13 +437,54 @@ export declare const Undo: z.ZodObject<{
105
437
  attributedTo: string;
106
438
  to: (string | string[]) & (string | string[] | undefined);
107
439
  cc: (string | string[]) & (string | string[] | undefined);
440
+ inReplyTo: string | null;
441
+ tag: ({
442
+ type: "Emoji";
443
+ name: string;
444
+ updated: string;
445
+ icon: {
446
+ type: "Image";
447
+ mediaType: string;
448
+ url: string;
449
+ };
450
+ } | {
451
+ type: "Mention";
452
+ name: string;
453
+ href: string;
454
+ })[];
108
455
  published: string;
109
- inReplyTo?: string | undefined;
456
+ updated?: string | undefined;
110
457
  summary?: string | undefined;
111
458
  summaryMap?: Record<string, string> | undefined;
112
459
  content?: string | undefined;
113
460
  contentMap?: Record<string, string> | undefined;
114
- updated?: string | undefined;
461
+ attachment?: {
462
+ type: "Document";
463
+ mediaType: string;
464
+ url: string;
465
+ blurhash?: string | undefined;
466
+ width?: number | undefined;
467
+ height?: number | undefined;
468
+ name?: string | null | undefined;
469
+ focalPoint?: [number, number] | undefined;
470
+ } | {
471
+ type: "PropertyValue";
472
+ value: string;
473
+ name: string;
474
+ } | ({
475
+ type: "Document";
476
+ mediaType: string;
477
+ url: string;
478
+ blurhash?: string | undefined;
479
+ width?: number | undefined;
480
+ height?: number | undefined;
481
+ name?: string | null | undefined;
482
+ focalPoint?: [number, number] | undefined;
483
+ } | {
484
+ type: "PropertyValue";
485
+ value: string;
486
+ name: string;
487
+ })[] | undefined;
115
488
  } | undefined);
116
489
  id: string;
117
490
  type: "Like";
@@ -146,13 +519,54 @@ export declare const Undo: z.ZodObject<{
146
519
  attributedTo: string;
147
520
  to: (string | string[]) & (string | string[] | undefined);
148
521
  cc: (string | string[]) & (string | string[] | undefined);
522
+ inReplyTo: string | null;
523
+ tag: ({
524
+ type: "Emoji";
525
+ name: string;
526
+ updated: string;
527
+ icon: {
528
+ type: "Image";
529
+ mediaType: string;
530
+ url: string;
531
+ };
532
+ } | {
533
+ type: "Mention";
534
+ name: string;
535
+ href: string;
536
+ })[];
149
537
  published: string;
150
- inReplyTo?: string | undefined;
538
+ updated?: string | undefined;
151
539
  summary?: string | undefined;
152
540
  summaryMap?: Record<string, string> | undefined;
153
541
  content?: string | undefined;
154
542
  contentMap?: Record<string, string> | undefined;
155
- updated?: string | undefined;
543
+ attachment?: {
544
+ type: "Document";
545
+ mediaType: string;
546
+ url: string;
547
+ blurhash?: string | undefined;
548
+ width?: number | undefined;
549
+ height?: number | undefined;
550
+ name?: string | null | undefined;
551
+ focalPoint?: [number, number] | undefined;
552
+ } | {
553
+ type: "PropertyValue";
554
+ value: string;
555
+ name: string;
556
+ } | ({
557
+ type: "Document";
558
+ mediaType: string;
559
+ url: string;
560
+ blurhash?: string | undefined;
561
+ width?: number | undefined;
562
+ height?: number | undefined;
563
+ name?: string | null | undefined;
564
+ focalPoint?: [number, number] | undefined;
565
+ } | {
566
+ type: "PropertyValue";
567
+ value: string;
568
+ name: string;
569
+ })[] | undefined;
156
570
  }) & (string | {
157
571
  id: string;
158
572
  type: "Note";
@@ -160,13 +574,54 @@ export declare const Undo: z.ZodObject<{
160
574
  attributedTo: string;
161
575
  to: (string | string[]) & (string | string[] | undefined);
162
576
  cc: (string | string[]) & (string | string[] | undefined);
577
+ inReplyTo: string | null;
578
+ tag: ({
579
+ type: "Emoji";
580
+ name: string;
581
+ updated: string;
582
+ icon: {
583
+ type: "Image";
584
+ mediaType: string;
585
+ url: string;
586
+ };
587
+ } | {
588
+ type: "Mention";
589
+ name: string;
590
+ href: string;
591
+ })[];
163
592
  published: string;
164
- inReplyTo?: string | undefined;
593
+ updated?: string | undefined;
165
594
  summary?: string | undefined;
166
595
  summaryMap?: Record<string, string> | undefined;
167
596
  content?: string | undefined;
168
597
  contentMap?: Record<string, string> | undefined;
169
- updated?: string | undefined;
598
+ attachment?: {
599
+ type: "Document";
600
+ mediaType: string;
601
+ url: string;
602
+ blurhash?: string | undefined;
603
+ width?: number | undefined;
604
+ height?: number | undefined;
605
+ name?: string | null | undefined;
606
+ focalPoint?: [number, number] | undefined;
607
+ } | {
608
+ type: "PropertyValue";
609
+ value: string;
610
+ name: string;
611
+ } | ({
612
+ type: "Document";
613
+ mediaType: string;
614
+ url: string;
615
+ blurhash?: string | undefined;
616
+ width?: number | undefined;
617
+ height?: number | undefined;
618
+ name?: string | null | undefined;
619
+ focalPoint?: [number, number] | undefined;
620
+ } | {
621
+ type: "PropertyValue";
622
+ value: string;
623
+ name: string;
624
+ })[] | undefined;
170
625
  } | undefined);
171
626
  id: string;
172
627
  type: "Like";
@@ -189,13 +644,54 @@ export declare const Undo: z.ZodObject<{
189
644
  attributedTo: string;
190
645
  to: (string | string[]) & (string | string[] | undefined);
191
646
  cc: (string | string[]) & (string | string[] | undefined);
647
+ inReplyTo: string | null;
648
+ tag: ({
649
+ type: "Emoji";
650
+ name: string;
651
+ updated: string;
652
+ icon: {
653
+ type: "Image";
654
+ mediaType: string;
655
+ url: string;
656
+ };
657
+ } | {
658
+ type: "Mention";
659
+ name: string;
660
+ href: string;
661
+ })[];
192
662
  published: string;
193
- inReplyTo?: string | undefined;
663
+ updated?: string | undefined;
194
664
  summary?: string | undefined;
195
665
  summaryMap?: Record<string, string> | undefined;
196
666
  content?: string | undefined;
197
667
  contentMap?: Record<string, string> | undefined;
198
- updated?: string | undefined;
668
+ attachment?: {
669
+ type: "Document";
670
+ mediaType: string;
671
+ url: string;
672
+ blurhash?: string | undefined;
673
+ width?: number | undefined;
674
+ height?: number | undefined;
675
+ name?: string | null | undefined;
676
+ focalPoint?: [number, number] | undefined;
677
+ } | {
678
+ type: "PropertyValue";
679
+ value: string;
680
+ name: string;
681
+ } | ({
682
+ type: "Document";
683
+ mediaType: string;
684
+ url: string;
685
+ blurhash?: string | undefined;
686
+ width?: number | undefined;
687
+ height?: number | undefined;
688
+ name?: string | null | undefined;
689
+ focalPoint?: [number, number] | undefined;
690
+ } | {
691
+ type: "PropertyValue";
692
+ value: string;
693
+ name: string;
694
+ })[] | undefined;
199
695
  }) & (string | {
200
696
  id: string;
201
697
  type: "Note";
@@ -203,13 +699,54 @@ export declare const Undo: z.ZodObject<{
203
699
  attributedTo: string;
204
700
  to: (string | string[]) & (string | string[] | undefined);
205
701
  cc: (string | string[]) & (string | string[] | undefined);
702
+ inReplyTo: string | null;
703
+ tag: ({
704
+ type: "Emoji";
705
+ name: string;
706
+ updated: string;
707
+ icon: {
708
+ type: "Image";
709
+ mediaType: string;
710
+ url: string;
711
+ };
712
+ } | {
713
+ type: "Mention";
714
+ name: string;
715
+ href: string;
716
+ })[];
206
717
  published: string;
207
- inReplyTo?: string | undefined;
718
+ updated?: string | undefined;
208
719
  summary?: string | undefined;
209
720
  summaryMap?: Record<string, string> | undefined;
210
721
  content?: string | undefined;
211
722
  contentMap?: Record<string, string> | undefined;
212
- updated?: string | undefined;
723
+ attachment?: {
724
+ type: "Document";
725
+ mediaType: string;
726
+ url: string;
727
+ blurhash?: string | undefined;
728
+ width?: number | undefined;
729
+ height?: number | undefined;
730
+ name?: string | null | undefined;
731
+ focalPoint?: [number, number] | undefined;
732
+ } | {
733
+ type: "PropertyValue";
734
+ value: string;
735
+ name: string;
736
+ } | ({
737
+ type: "Document";
738
+ mediaType: string;
739
+ url: string;
740
+ blurhash?: string | undefined;
741
+ width?: number | undefined;
742
+ height?: number | undefined;
743
+ name?: string | null | undefined;
744
+ focalPoint?: [number, number] | undefined;
745
+ } | {
746
+ type: "PropertyValue";
747
+ value: string;
748
+ name: string;
749
+ })[] | undefined;
213
750
  } | undefined);
214
751
  id: string;
215
752
  type: "Like";
@@ -219,3 +756,4 @@ export declare const Undo: z.ZodObject<{
219
756
  type: "Undo";
220
757
  actor: string;
221
758
  }>;
759
+ export type Undo = z.infer<typeof Undo>;