@fedify/fedify 1.4.0-dev.596 → 1.4.0-dev.599

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.
@@ -53,6 +53,8 @@ export declare class Object {
53
53
  previews?: (Link | Object | URL)[];
54
54
  published?: dntShim.Temporal.Instant | null;
55
55
  replies?: Collection | URL | null;
56
+ shares?: Collection | URL | null;
57
+ likes?: Collection | URL | null;
56
58
  emojiReactions?: Collection | URL | null;
57
59
  startTime?: dntShim.Temporal.Instant | null;
58
60
  summary?: string | LanguageString | null;
@@ -112,6 +114,8 @@ export declare class Object {
112
114
  previews?: (Link | Object | URL)[];
113
115
  published?: dntShim.Temporal.Instant | null;
114
116
  replies?: Collection | URL | null;
117
+ shares?: Collection | URL | null;
118
+ likes?: Collection | URL | null;
115
119
  emojiReactions?: Collection | URL | null;
116
120
  startTime?: dntShim.Temporal.Instant | null;
117
121
  summary?: string | LanguageString | null;
@@ -450,6 +454,48 @@ export declare class Object {
450
454
  suppressError?: boolean;
451
455
  tracerProvider?: TracerProvider;
452
456
  }): Promise<Collection | null>;
457
+ /**
458
+ * Similar to
459
+ * {@link Object.getShares},
460
+ * but returns its `@id` URL instead of the object itself.
461
+ */
462
+ get sharesId(): URL | null;
463
+ /** Every object *may* have a `shares` collection. This is a list of all
464
+ * {@link Announce} activities with this object as the `object` property,
465
+ * added as a [side effect]. The `shares` collection *must* be either
466
+ * an {@link OrderedCollection} or a {@link Collection} and *may* be filtered
467
+ * on privileges of an authenticated user or as appropriate
468
+ * when no authentication is given.
469
+ *
470
+ * [side effect]: https://www.w3.org/TR/activitypub/#announce-activity-inbox
471
+ */
472
+ getShares(options?: {
473
+ documentLoader?: DocumentLoader;
474
+ contextLoader?: DocumentLoader;
475
+ suppressError?: boolean;
476
+ tracerProvider?: TracerProvider;
477
+ }): Promise<Collection | null>;
478
+ /**
479
+ * Similar to
480
+ * {@link Object.getLikes},
481
+ * but returns its `@id` URL instead of the object itself.
482
+ */
483
+ get likesId(): URL | null;
484
+ /** Every object *may* have a `likes` collection. This is a list of all
485
+ * {@link Like} activities with this object as the `object` property,
486
+ * added as a [side effect]. The `likes` collection *must* be either
487
+ * an {@link OrderedCollection} or a {@link Collection} and *may* be filtered
488
+ * on privileges of an authenticated user or as appropriate
489
+ * when no authentication is given.
490
+ *
491
+ * [side effect]: https://www.w3.org/TR/activitypub/#announce-activity-inbox
492
+ */
493
+ getLikes(options?: {
494
+ documentLoader?: DocumentLoader;
495
+ contextLoader?: DocumentLoader;
496
+ suppressError?: boolean;
497
+ tracerProvider?: TracerProvider;
498
+ }): Promise<Collection | null>;
453
499
  /**
454
500
  * Similar to
455
501
  * {@link Object.getEmojiReactions},
@@ -751,6 +797,8 @@ export declare class Emoji extends Object {
751
797
  previews?: (Link | Object | URL)[];
752
798
  published?: dntShim.Temporal.Instant | null;
753
799
  replies?: Collection | URL | null;
800
+ shares?: Collection | URL | null;
801
+ likes?: Collection | URL | null;
754
802
  emojiReactions?: Collection | URL | null;
755
803
  startTime?: dntShim.Temporal.Instant | null;
756
804
  summary?: string | LanguageString | null;
@@ -810,6 +858,8 @@ export declare class Emoji extends Object {
810
858
  previews?: (Link | Object | URL)[];
811
859
  published?: dntShim.Temporal.Instant | null;
812
860
  replies?: Collection | URL | null;
861
+ shares?: Collection | URL | null;
862
+ likes?: Collection | URL | null;
813
863
  emojiReactions?: Collection | URL | null;
814
864
  startTime?: dntShim.Temporal.Instant | null;
815
865
  summary?: string | LanguageString | null;
@@ -918,6 +968,8 @@ export declare class ChatMessage extends Object {
918
968
  previews?: (Link | Object | URL)[];
919
969
  published?: dntShim.Temporal.Instant | null;
920
970
  replies?: Collection | URL | null;
971
+ shares?: Collection | URL | null;
972
+ likes?: Collection | URL | null;
921
973
  emojiReactions?: Collection | URL | null;
922
974
  startTime?: dntShim.Temporal.Instant | null;
923
975
  summary?: string | LanguageString | null;
@@ -978,6 +1030,8 @@ export declare class ChatMessage extends Object {
978
1030
  previews?: (Link | Object | URL)[];
979
1031
  published?: dntShim.Temporal.Instant | null;
980
1032
  replies?: Collection | URL | null;
1033
+ shares?: Collection | URL | null;
1034
+ likes?: Collection | URL | null;
981
1035
  emojiReactions?: Collection | URL | null;
982
1036
  startTime?: dntShim.Temporal.Instant | null;
983
1037
  summary?: string | LanguageString | null;
@@ -1099,6 +1153,8 @@ export declare class Activity extends Object {
1099
1153
  previews?: (Link | Object | URL)[];
1100
1154
  published?: dntShim.Temporal.Instant | null;
1101
1155
  replies?: Collection | URL | null;
1156
+ shares?: Collection | URL | null;
1157
+ likes?: Collection | URL | null;
1102
1158
  emojiReactions?: Collection | URL | null;
1103
1159
  startTime?: dntShim.Temporal.Instant | null;
1104
1160
  summary?: string | LanguageString | null;
@@ -1170,6 +1226,8 @@ export declare class Activity extends Object {
1170
1226
  previews?: (Link | Object | URL)[];
1171
1227
  published?: dntShim.Temporal.Instant | null;
1172
1228
  replies?: Collection | URL | null;
1229
+ shares?: Collection | URL | null;
1230
+ likes?: Collection | URL | null;
1173
1231
  emojiReactions?: Collection | URL | null;
1174
1232
  startTime?: dntShim.Temporal.Instant | null;
1175
1233
  summary?: string | LanguageString | null;
@@ -1483,6 +1541,8 @@ export declare class EmojiReact extends Activity {
1483
1541
  previews?: (Link | Object | URL)[];
1484
1542
  published?: dntShim.Temporal.Instant | null;
1485
1543
  replies?: Collection | URL | null;
1544
+ shares?: Collection | URL | null;
1545
+ likes?: Collection | URL | null;
1486
1546
  emojiReactions?: Collection | URL | null;
1487
1547
  startTime?: dntShim.Temporal.Instant | null;
1488
1548
  summary?: string | LanguageString | null;
@@ -1554,6 +1614,8 @@ export declare class EmojiReact extends Activity {
1554
1614
  previews?: (Link | Object | URL)[];
1555
1615
  published?: dntShim.Temporal.Instant | null;
1556
1616
  replies?: Collection | URL | null;
1617
+ shares?: Collection | URL | null;
1618
+ likes?: Collection | URL | null;
1557
1619
  emojiReactions?: Collection | URL | null;
1558
1620
  startTime?: dntShim.Temporal.Instant | null;
1559
1621
  summary?: string | LanguageString | null;
@@ -2249,6 +2311,8 @@ export declare class Accept extends Activity {
2249
2311
  previews?: (Link | Object | URL)[];
2250
2312
  published?: dntShim.Temporal.Instant | null;
2251
2313
  replies?: Collection | URL | null;
2314
+ shares?: Collection | URL | null;
2315
+ likes?: Collection | URL | null;
2252
2316
  emojiReactions?: Collection | URL | null;
2253
2317
  startTime?: dntShim.Temporal.Instant | null;
2254
2318
  summary?: string | LanguageString | null;
@@ -2320,6 +2384,8 @@ export declare class Accept extends Activity {
2320
2384
  previews?: (Link | Object | URL)[];
2321
2385
  published?: dntShim.Temporal.Instant | null;
2322
2386
  replies?: Collection | URL | null;
2387
+ shares?: Collection | URL | null;
2388
+ likes?: Collection | URL | null;
2323
2389
  emojiReactions?: Collection | URL | null;
2324
2390
  startTime?: dntShim.Temporal.Instant | null;
2325
2391
  summary?: string | LanguageString | null;
@@ -2438,6 +2504,8 @@ export declare class Add extends Activity {
2438
2504
  previews?: (Link | Object | URL)[];
2439
2505
  published?: dntShim.Temporal.Instant | null;
2440
2506
  replies?: Collection | URL | null;
2507
+ shares?: Collection | URL | null;
2508
+ likes?: Collection | URL | null;
2441
2509
  emojiReactions?: Collection | URL | null;
2442
2510
  startTime?: dntShim.Temporal.Instant | null;
2443
2511
  summary?: string | LanguageString | null;
@@ -2509,6 +2577,8 @@ export declare class Add extends Activity {
2509
2577
  previews?: (Link | Object | URL)[];
2510
2578
  published?: dntShim.Temporal.Instant | null;
2511
2579
  replies?: Collection | URL | null;
2580
+ shares?: Collection | URL | null;
2581
+ likes?: Collection | URL | null;
2512
2582
  emojiReactions?: Collection | URL | null;
2513
2583
  startTime?: dntShim.Temporal.Instant | null;
2514
2584
  summary?: string | LanguageString | null;
@@ -2626,6 +2696,8 @@ export declare class Announce extends Activity {
2626
2696
  previews?: (Link | Object | URL)[];
2627
2697
  published?: dntShim.Temporal.Instant | null;
2628
2698
  replies?: Collection | URL | null;
2699
+ shares?: Collection | URL | null;
2700
+ likes?: Collection | URL | null;
2629
2701
  emojiReactions?: Collection | URL | null;
2630
2702
  startTime?: dntShim.Temporal.Instant | null;
2631
2703
  summary?: string | LanguageString | null;
@@ -2697,6 +2769,8 @@ export declare class Announce extends Activity {
2697
2769
  previews?: (Link | Object | URL)[];
2698
2770
  published?: dntShim.Temporal.Instant | null;
2699
2771
  replies?: Collection | URL | null;
2772
+ shares?: Collection | URL | null;
2773
+ likes?: Collection | URL | null;
2700
2774
  emojiReactions?: Collection | URL | null;
2701
2775
  startTime?: dntShim.Temporal.Instant | null;
2702
2776
  summary?: string | LanguageString | null;
@@ -2813,6 +2887,8 @@ export declare class Application extends Object {
2813
2887
  previews?: (Link | Object | URL)[];
2814
2888
  published?: dntShim.Temporal.Instant | null;
2815
2889
  replies?: Collection | URL | null;
2890
+ shares?: Collection | URL | null;
2891
+ likes?: Collection | URL | null;
2816
2892
  emojiReactions?: Collection | URL | null;
2817
2893
  startTime?: dntShim.Temporal.Instant | null;
2818
2894
  summary?: string | LanguageString | null;
@@ -2899,6 +2975,8 @@ export declare class Application extends Object {
2899
2975
  previews?: (Link | Object | URL)[];
2900
2976
  published?: dntShim.Temporal.Instant | null;
2901
2977
  replies?: Collection | URL | null;
2978
+ shares?: Collection | URL | null;
2979
+ likes?: Collection | URL | null;
2902
2980
  emojiReactions?: Collection | URL | null;
2903
2981
  startTime?: dntShim.Temporal.Instant | null;
2904
2982
  summary?: string | LanguageString | null;
@@ -3377,6 +3455,8 @@ export declare class IntransitiveActivity extends Activity {
3377
3455
  previews?: (Link | Object | URL)[];
3378
3456
  published?: dntShim.Temporal.Instant | null;
3379
3457
  replies?: Collection | URL | null;
3458
+ shares?: Collection | URL | null;
3459
+ likes?: Collection | URL | null;
3380
3460
  emojiReactions?: Collection | URL | null;
3381
3461
  startTime?: dntShim.Temporal.Instant | null;
3382
3462
  summary?: string | LanguageString | null;
@@ -3448,6 +3528,8 @@ export declare class IntransitiveActivity extends Activity {
3448
3528
  previews?: (Link | Object | URL)[];
3449
3529
  published?: dntShim.Temporal.Instant | null;
3450
3530
  replies?: Collection | URL | null;
3531
+ shares?: Collection | URL | null;
3532
+ likes?: Collection | URL | null;
3451
3533
  emojiReactions?: Collection | URL | null;
3452
3534
  startTime?: dntShim.Temporal.Instant | null;
3453
3535
  summary?: string | LanguageString | null;
@@ -3565,6 +3647,8 @@ export declare class Arrive extends IntransitiveActivity {
3565
3647
  previews?: (Link | Object | URL)[];
3566
3648
  published?: dntShim.Temporal.Instant | null;
3567
3649
  replies?: Collection | URL | null;
3650
+ shares?: Collection | URL | null;
3651
+ likes?: Collection | URL | null;
3568
3652
  emojiReactions?: Collection | URL | null;
3569
3653
  startTime?: dntShim.Temporal.Instant | null;
3570
3654
  summary?: string | LanguageString | null;
@@ -3636,6 +3720,8 @@ export declare class Arrive extends IntransitiveActivity {
3636
3720
  previews?: (Link | Object | URL)[];
3637
3721
  published?: dntShim.Temporal.Instant | null;
3638
3722
  replies?: Collection | URL | null;
3723
+ shares?: Collection | URL | null;
3724
+ likes?: Collection | URL | null;
3639
3725
  emojiReactions?: Collection | URL | null;
3640
3726
  startTime?: dntShim.Temporal.Instant | null;
3641
3727
  summary?: string | LanguageString | null;
@@ -3752,6 +3838,8 @@ export declare class Article extends Object {
3752
3838
  previews?: (Link | Object | URL)[];
3753
3839
  published?: dntShim.Temporal.Instant | null;
3754
3840
  replies?: Collection | URL | null;
3841
+ shares?: Collection | URL | null;
3842
+ likes?: Collection | URL | null;
3755
3843
  emojiReactions?: Collection | URL | null;
3756
3844
  startTime?: dntShim.Temporal.Instant | null;
3757
3845
  summary?: string | LanguageString | null;
@@ -3812,6 +3900,8 @@ export declare class Article extends Object {
3812
3900
  previews?: (Link | Object | URL)[];
3813
3901
  published?: dntShim.Temporal.Instant | null;
3814
3902
  replies?: Collection | URL | null;
3903
+ shares?: Collection | URL | null;
3904
+ likes?: Collection | URL | null;
3815
3905
  emojiReactions?: Collection | URL | null;
3816
3906
  startTime?: dntShim.Temporal.Instant | null;
3817
3907
  summary?: string | LanguageString | null;
@@ -3929,6 +4019,8 @@ export declare class Document extends Object {
3929
4019
  previews?: (Link | Object | URL)[];
3930
4020
  published?: dntShim.Temporal.Instant | null;
3931
4021
  replies?: Collection | URL | null;
4022
+ shares?: Collection | URL | null;
4023
+ likes?: Collection | URL | null;
3932
4024
  emojiReactions?: Collection | URL | null;
3933
4025
  startTime?: dntShim.Temporal.Instant | null;
3934
4026
  summary?: string | LanguageString | null;
@@ -3990,6 +4082,8 @@ export declare class Document extends Object {
3990
4082
  previews?: (Link | Object | URL)[];
3991
4083
  published?: dntShim.Temporal.Instant | null;
3992
4084
  replies?: Collection | URL | null;
4085
+ shares?: Collection | URL | null;
4086
+ likes?: Collection | URL | null;
3993
4087
  emojiReactions?: Collection | URL | null;
3994
4088
  startTime?: dntShim.Temporal.Instant | null;
3995
4089
  summary?: string | LanguageString | null;
@@ -4103,6 +4197,8 @@ export declare class Audio extends Document {
4103
4197
  previews?: (Link | Object | URL)[];
4104
4198
  published?: dntShim.Temporal.Instant | null;
4105
4199
  replies?: Collection | URL | null;
4200
+ shares?: Collection | URL | null;
4201
+ likes?: Collection | URL | null;
4106
4202
  emojiReactions?: Collection | URL | null;
4107
4203
  startTime?: dntShim.Temporal.Instant | null;
4108
4204
  summary?: string | LanguageString | null;
@@ -4164,6 +4260,8 @@ export declare class Audio extends Document {
4164
4260
  previews?: (Link | Object | URL)[];
4165
4261
  published?: dntShim.Temporal.Instant | null;
4166
4262
  replies?: Collection | URL | null;
4263
+ shares?: Collection | URL | null;
4264
+ likes?: Collection | URL | null;
4167
4265
  emojiReactions?: Collection | URL | null;
4168
4266
  startTime?: dntShim.Temporal.Instant | null;
4169
4267
  summary?: string | LanguageString | null;
@@ -4270,6 +4368,8 @@ export declare class Ignore extends Activity {
4270
4368
  previews?: (Link | Object | URL)[];
4271
4369
  published?: dntShim.Temporal.Instant | null;
4272
4370
  replies?: Collection | URL | null;
4371
+ shares?: Collection | URL | null;
4372
+ likes?: Collection | URL | null;
4273
4373
  emojiReactions?: Collection | URL | null;
4274
4374
  startTime?: dntShim.Temporal.Instant | null;
4275
4375
  summary?: string | LanguageString | null;
@@ -4341,6 +4441,8 @@ export declare class Ignore extends Activity {
4341
4441
  previews?: (Link | Object | URL)[];
4342
4442
  published?: dntShim.Temporal.Instant | null;
4343
4443
  replies?: Collection | URL | null;
4444
+ shares?: Collection | URL | null;
4445
+ likes?: Collection | URL | null;
4344
4446
  emojiReactions?: Collection | URL | null;
4345
4447
  startTime?: dntShim.Temporal.Instant | null;
4346
4448
  summary?: string | LanguageString | null;
@@ -4459,6 +4561,8 @@ export declare class Block extends Ignore {
4459
4561
  previews?: (Link | Object | URL)[];
4460
4562
  published?: dntShim.Temporal.Instant | null;
4461
4563
  replies?: Collection | URL | null;
4564
+ shares?: Collection | URL | null;
4565
+ likes?: Collection | URL | null;
4462
4566
  emojiReactions?: Collection | URL | null;
4463
4567
  startTime?: dntShim.Temporal.Instant | null;
4464
4568
  summary?: string | LanguageString | null;
@@ -4530,6 +4634,8 @@ export declare class Block extends Ignore {
4530
4634
  previews?: (Link | Object | URL)[];
4531
4635
  published?: dntShim.Temporal.Instant | null;
4532
4636
  replies?: Collection | URL | null;
4637
+ shares?: Collection | URL | null;
4638
+ likes?: Collection | URL | null;
4533
4639
  emojiReactions?: Collection | URL | null;
4534
4640
  startTime?: dntShim.Temporal.Instant | null;
4535
4641
  summary?: string | LanguageString | null;
@@ -4650,6 +4756,8 @@ export declare class Collection extends Object {
4650
4756
  previews?: (Link | Object | URL)[];
4651
4757
  published?: dntShim.Temporal.Instant | null;
4652
4758
  replies?: Collection | URL | null;
4759
+ shares?: Collection | URL | null;
4760
+ likes?: Collection | URL | null;
4653
4761
  emojiReactions?: Collection | URL | null;
4654
4762
  startTime?: dntShim.Temporal.Instant | null;
4655
4763
  summary?: string | LanguageString | null;
@@ -4714,6 +4822,8 @@ export declare class Collection extends Object {
4714
4822
  previews?: (Link | Object | URL)[];
4715
4823
  published?: dntShim.Temporal.Instant | null;
4716
4824
  replies?: Collection | URL | null;
4825
+ shares?: Collection | URL | null;
4826
+ likes?: Collection | URL | null;
4717
4827
  emojiReactions?: Collection | URL | null;
4718
4828
  startTime?: dntShim.Temporal.Instant | null;
4719
4829
  summary?: string | LanguageString | null;
@@ -4890,6 +5000,8 @@ export declare class CollectionPage extends Collection {
4890
5000
  previews?: (Link | Object | URL)[];
4891
5001
  published?: dntShim.Temporal.Instant | null;
4892
5002
  replies?: Collection | URL | null;
5003
+ shares?: Collection | URL | null;
5004
+ likes?: Collection | URL | null;
4893
5005
  emojiReactions?: Collection | URL | null;
4894
5006
  startTime?: dntShim.Temporal.Instant | null;
4895
5007
  summary?: string | LanguageString | null;
@@ -4957,6 +5069,8 @@ export declare class CollectionPage extends Collection {
4957
5069
  previews?: (Link | Object | URL)[];
4958
5070
  published?: dntShim.Temporal.Instant | null;
4959
5071
  replies?: Collection | URL | null;
5072
+ shares?: Collection | URL | null;
5073
+ likes?: Collection | URL | null;
4960
5074
  emojiReactions?: Collection | URL | null;
4961
5075
  startTime?: dntShim.Temporal.Instant | null;
4962
5076
  summary?: string | LanguageString | null;
@@ -5111,6 +5225,8 @@ export declare class Create extends Activity {
5111
5225
  previews?: (Link | Object | URL)[];
5112
5226
  published?: dntShim.Temporal.Instant | null;
5113
5227
  replies?: Collection | URL | null;
5228
+ shares?: Collection | URL | null;
5229
+ likes?: Collection | URL | null;
5114
5230
  emojiReactions?: Collection | URL | null;
5115
5231
  startTime?: dntShim.Temporal.Instant | null;
5116
5232
  summary?: string | LanguageString | null;
@@ -5182,6 +5298,8 @@ export declare class Create extends Activity {
5182
5298
  previews?: (Link | Object | URL)[];
5183
5299
  published?: dntShim.Temporal.Instant | null;
5184
5300
  replies?: Collection | URL | null;
5301
+ shares?: Collection | URL | null;
5302
+ likes?: Collection | URL | null;
5185
5303
  emojiReactions?: Collection | URL | null;
5186
5304
  startTime?: dntShim.Temporal.Instant | null;
5187
5305
  summary?: string | LanguageString | null;
@@ -5298,6 +5416,8 @@ export declare class Delete extends Activity {
5298
5416
  previews?: (Link | Object | URL)[];
5299
5417
  published?: dntShim.Temporal.Instant | null;
5300
5418
  replies?: Collection | URL | null;
5419
+ shares?: Collection | URL | null;
5420
+ likes?: Collection | URL | null;
5301
5421
  emojiReactions?: Collection | URL | null;
5302
5422
  startTime?: dntShim.Temporal.Instant | null;
5303
5423
  summary?: string | LanguageString | null;
@@ -5369,6 +5489,8 @@ export declare class Delete extends Activity {
5369
5489
  previews?: (Link | Object | URL)[];
5370
5490
  published?: dntShim.Temporal.Instant | null;
5371
5491
  replies?: Collection | URL | null;
5492
+ shares?: Collection | URL | null;
5493
+ likes?: Collection | URL | null;
5372
5494
  emojiReactions?: Collection | URL | null;
5373
5495
  startTime?: dntShim.Temporal.Instant | null;
5374
5496
  summary?: string | LanguageString | null;
@@ -5484,6 +5606,8 @@ export declare class Dislike extends Activity {
5484
5606
  previews?: (Link | Object | URL)[];
5485
5607
  published?: dntShim.Temporal.Instant | null;
5486
5608
  replies?: Collection | URL | null;
5609
+ shares?: Collection | URL | null;
5610
+ likes?: Collection | URL | null;
5487
5611
  emojiReactions?: Collection | URL | null;
5488
5612
  startTime?: dntShim.Temporal.Instant | null;
5489
5613
  summary?: string | LanguageString | null;
@@ -5555,6 +5679,8 @@ export declare class Dislike extends Activity {
5555
5679
  previews?: (Link | Object | URL)[];
5556
5680
  published?: dntShim.Temporal.Instant | null;
5557
5681
  replies?: Collection | URL | null;
5682
+ shares?: Collection | URL | null;
5683
+ likes?: Collection | URL | null;
5558
5684
  emojiReactions?: Collection | URL | null;
5559
5685
  startTime?: dntShim.Temporal.Instant | null;
5560
5686
  summary?: string | LanguageString | null;
@@ -5800,6 +5926,8 @@ export declare class Event extends Object {
5800
5926
  previews?: (Link | Object | URL)[];
5801
5927
  published?: dntShim.Temporal.Instant | null;
5802
5928
  replies?: Collection | URL | null;
5929
+ shares?: Collection | URL | null;
5930
+ likes?: Collection | URL | null;
5803
5931
  emojiReactions?: Collection | URL | null;
5804
5932
  startTime?: dntShim.Temporal.Instant | null;
5805
5933
  summary?: string | LanguageString | null;
@@ -5859,6 +5987,8 @@ export declare class Event extends Object {
5859
5987
  previews?: (Link | Object | URL)[];
5860
5988
  published?: dntShim.Temporal.Instant | null;
5861
5989
  replies?: Collection | URL | null;
5990
+ shares?: Collection | URL | null;
5991
+ likes?: Collection | URL | null;
5862
5992
  emojiReactions?: Collection | URL | null;
5863
5993
  startTime?: dntShim.Temporal.Instant | null;
5864
5994
  summary?: string | LanguageString | null;
@@ -5964,6 +6094,8 @@ export declare class Flag extends Activity {
5964
6094
  previews?: (Link | Object | URL)[];
5965
6095
  published?: dntShim.Temporal.Instant | null;
5966
6096
  replies?: Collection | URL | null;
6097
+ shares?: Collection | URL | null;
6098
+ likes?: Collection | URL | null;
5967
6099
  emojiReactions?: Collection | URL | null;
5968
6100
  startTime?: dntShim.Temporal.Instant | null;
5969
6101
  summary?: string | LanguageString | null;
@@ -6035,6 +6167,8 @@ export declare class Flag extends Activity {
6035
6167
  previews?: (Link | Object | URL)[];
6036
6168
  published?: dntShim.Temporal.Instant | null;
6037
6169
  replies?: Collection | URL | null;
6170
+ shares?: Collection | URL | null;
6171
+ likes?: Collection | URL | null;
6038
6172
  emojiReactions?: Collection | URL | null;
6039
6173
  startTime?: dntShim.Temporal.Instant | null;
6040
6174
  summary?: string | LanguageString | null;
@@ -6153,6 +6287,8 @@ export declare class Follow extends Activity {
6153
6287
  previews?: (Link | Object | URL)[];
6154
6288
  published?: dntShim.Temporal.Instant | null;
6155
6289
  replies?: Collection | URL | null;
6290
+ shares?: Collection | URL | null;
6291
+ likes?: Collection | URL | null;
6156
6292
  emojiReactions?: Collection | URL | null;
6157
6293
  startTime?: dntShim.Temporal.Instant | null;
6158
6294
  summary?: string | LanguageString | null;
@@ -6224,6 +6360,8 @@ export declare class Follow extends Activity {
6224
6360
  previews?: (Link | Object | URL)[];
6225
6361
  published?: dntShim.Temporal.Instant | null;
6226
6362
  replies?: Collection | URL | null;
6363
+ shares?: Collection | URL | null;
6364
+ likes?: Collection | URL | null;
6227
6365
  emojiReactions?: Collection | URL | null;
6228
6366
  startTime?: dntShim.Temporal.Instant | null;
6229
6367
  summary?: string | LanguageString | null;
@@ -6340,6 +6478,8 @@ export declare class Group extends Object {
6340
6478
  previews?: (Link | Object | URL)[];
6341
6479
  published?: dntShim.Temporal.Instant | null;
6342
6480
  replies?: Collection | URL | null;
6481
+ shares?: Collection | URL | null;
6482
+ likes?: Collection | URL | null;
6343
6483
  emojiReactions?: Collection | URL | null;
6344
6484
  startTime?: dntShim.Temporal.Instant | null;
6345
6485
  summary?: string | LanguageString | null;
@@ -6426,6 +6566,8 @@ export declare class Group extends Object {
6426
6566
  previews?: (Link | Object | URL)[];
6427
6567
  published?: dntShim.Temporal.Instant | null;
6428
6568
  replies?: Collection | URL | null;
6569
+ shares?: Collection | URL | null;
6570
+ likes?: Collection | URL | null;
6429
6571
  emojiReactions?: Collection | URL | null;
6430
6572
  startTime?: dntShim.Temporal.Instant | null;
6431
6573
  summary?: string | LanguageString | null;
@@ -7157,6 +7299,8 @@ export declare class Image extends Document {
7157
7299
  previews?: (Link | Object | URL)[];
7158
7300
  published?: dntShim.Temporal.Instant | null;
7159
7301
  replies?: Collection | URL | null;
7302
+ shares?: Collection | URL | null;
7303
+ likes?: Collection | URL | null;
7160
7304
  emojiReactions?: Collection | URL | null;
7161
7305
  startTime?: dntShim.Temporal.Instant | null;
7162
7306
  summary?: string | LanguageString | null;
@@ -7218,6 +7362,8 @@ export declare class Image extends Document {
7218
7362
  previews?: (Link | Object | URL)[];
7219
7363
  published?: dntShim.Temporal.Instant | null;
7220
7364
  replies?: Collection | URL | null;
7365
+ shares?: Collection | URL | null;
7366
+ likes?: Collection | URL | null;
7221
7367
  emojiReactions?: Collection | URL | null;
7222
7368
  startTime?: dntShim.Temporal.Instant | null;
7223
7369
  summary?: string | LanguageString | null;
@@ -7325,6 +7471,8 @@ export declare class Offer extends Activity {
7325
7471
  previews?: (Link | Object | URL)[];
7326
7472
  published?: dntShim.Temporal.Instant | null;
7327
7473
  replies?: Collection | URL | null;
7474
+ shares?: Collection | URL | null;
7475
+ likes?: Collection | URL | null;
7328
7476
  emojiReactions?: Collection | URL | null;
7329
7477
  startTime?: dntShim.Temporal.Instant | null;
7330
7478
  summary?: string | LanguageString | null;
@@ -7396,6 +7544,8 @@ export declare class Offer extends Activity {
7396
7544
  previews?: (Link | Object | URL)[];
7397
7545
  published?: dntShim.Temporal.Instant | null;
7398
7546
  replies?: Collection | URL | null;
7547
+ shares?: Collection | URL | null;
7548
+ likes?: Collection | URL | null;
7399
7549
  emojiReactions?: Collection | URL | null;
7400
7550
  startTime?: dntShim.Temporal.Instant | null;
7401
7551
  summary?: string | LanguageString | null;
@@ -7512,6 +7662,8 @@ export declare class Invite extends Offer {
7512
7662
  previews?: (Link | Object | URL)[];
7513
7663
  published?: dntShim.Temporal.Instant | null;
7514
7664
  replies?: Collection | URL | null;
7665
+ shares?: Collection | URL | null;
7666
+ likes?: Collection | URL | null;
7515
7667
  emojiReactions?: Collection | URL | null;
7516
7668
  startTime?: dntShim.Temporal.Instant | null;
7517
7669
  summary?: string | LanguageString | null;
@@ -7583,6 +7735,8 @@ export declare class Invite extends Offer {
7583
7735
  previews?: (Link | Object | URL)[];
7584
7736
  published?: dntShim.Temporal.Instant | null;
7585
7737
  replies?: Collection | URL | null;
7738
+ shares?: Collection | URL | null;
7739
+ likes?: Collection | URL | null;
7586
7740
  emojiReactions?: Collection | URL | null;
7587
7741
  startTime?: dntShim.Temporal.Instant | null;
7588
7742
  summary?: string | LanguageString | null;
@@ -7699,6 +7853,8 @@ export declare class Join extends Activity {
7699
7853
  previews?: (Link | Object | URL)[];
7700
7854
  published?: dntShim.Temporal.Instant | null;
7701
7855
  replies?: Collection | URL | null;
7856
+ shares?: Collection | URL | null;
7857
+ likes?: Collection | URL | null;
7702
7858
  emojiReactions?: Collection | URL | null;
7703
7859
  startTime?: dntShim.Temporal.Instant | null;
7704
7860
  summary?: string | LanguageString | null;
@@ -7770,6 +7926,8 @@ export declare class Join extends Activity {
7770
7926
  previews?: (Link | Object | URL)[];
7771
7927
  published?: dntShim.Temporal.Instant | null;
7772
7928
  replies?: Collection | URL | null;
7929
+ shares?: Collection | URL | null;
7930
+ likes?: Collection | URL | null;
7773
7931
  emojiReactions?: Collection | URL | null;
7774
7932
  startTime?: dntShim.Temporal.Instant | null;
7775
7933
  summary?: string | LanguageString | null;
@@ -7886,6 +8044,8 @@ export declare class Leave extends Activity {
7886
8044
  previews?: (Link | Object | URL)[];
7887
8045
  published?: dntShim.Temporal.Instant | null;
7888
8046
  replies?: Collection | URL | null;
8047
+ shares?: Collection | URL | null;
8048
+ likes?: Collection | URL | null;
7889
8049
  emojiReactions?: Collection | URL | null;
7890
8050
  startTime?: dntShim.Temporal.Instant | null;
7891
8051
  summary?: string | LanguageString | null;
@@ -7957,6 +8117,8 @@ export declare class Leave extends Activity {
7957
8117
  previews?: (Link | Object | URL)[];
7958
8118
  published?: dntShim.Temporal.Instant | null;
7959
8119
  replies?: Collection | URL | null;
8120
+ shares?: Collection | URL | null;
8121
+ likes?: Collection | URL | null;
7960
8122
  emojiReactions?: Collection | URL | null;
7961
8123
  startTime?: dntShim.Temporal.Instant | null;
7962
8124
  summary?: string | LanguageString | null;
@@ -8073,6 +8235,8 @@ export declare class Like extends Activity {
8073
8235
  previews?: (Link | Object | URL)[];
8074
8236
  published?: dntShim.Temporal.Instant | null;
8075
8237
  replies?: Collection | URL | null;
8238
+ shares?: Collection | URL | null;
8239
+ likes?: Collection | URL | null;
8076
8240
  emojiReactions?: Collection | URL | null;
8077
8241
  startTime?: dntShim.Temporal.Instant | null;
8078
8242
  summary?: string | LanguageString | null;
@@ -8144,6 +8308,8 @@ export declare class Like extends Activity {
8144
8308
  previews?: (Link | Object | URL)[];
8145
8309
  published?: dntShim.Temporal.Instant | null;
8146
8310
  replies?: Collection | URL | null;
8311
+ shares?: Collection | URL | null;
8312
+ likes?: Collection | URL | null;
8147
8313
  emojiReactions?: Collection | URL | null;
8148
8314
  startTime?: dntShim.Temporal.Instant | null;
8149
8315
  summary?: string | LanguageString | null;
@@ -8259,6 +8425,8 @@ export declare class Listen extends Activity {
8259
8425
  previews?: (Link | Object | URL)[];
8260
8426
  published?: dntShim.Temporal.Instant | null;
8261
8427
  replies?: Collection | URL | null;
8428
+ shares?: Collection | URL | null;
8429
+ likes?: Collection | URL | null;
8262
8430
  emojiReactions?: Collection | URL | null;
8263
8431
  startTime?: dntShim.Temporal.Instant | null;
8264
8432
  summary?: string | LanguageString | null;
@@ -8330,6 +8498,8 @@ export declare class Listen extends Activity {
8330
8498
  previews?: (Link | Object | URL)[];
8331
8499
  published?: dntShim.Temporal.Instant | null;
8332
8500
  replies?: Collection | URL | null;
8501
+ shares?: Collection | URL | null;
8502
+ likes?: Collection | URL | null;
8333
8503
  emojiReactions?: Collection | URL | null;
8334
8504
  startTime?: dntShim.Temporal.Instant | null;
8335
8505
  summary?: string | LanguageString | null;
@@ -8537,6 +8707,8 @@ export declare class Move extends Activity {
8537
8707
  previews?: (Link | Object | URL)[];
8538
8708
  published?: dntShim.Temporal.Instant | null;
8539
8709
  replies?: Collection | URL | null;
8710
+ shares?: Collection | URL | null;
8711
+ likes?: Collection | URL | null;
8540
8712
  emojiReactions?: Collection | URL | null;
8541
8713
  startTime?: dntShim.Temporal.Instant | null;
8542
8714
  summary?: string | LanguageString | null;
@@ -8608,6 +8780,8 @@ export declare class Move extends Activity {
8608
8780
  previews?: (Link | Object | URL)[];
8609
8781
  published?: dntShim.Temporal.Instant | null;
8610
8782
  replies?: Collection | URL | null;
8783
+ shares?: Collection | URL | null;
8784
+ likes?: Collection | URL | null;
8611
8785
  emojiReactions?: Collection | URL | null;
8612
8786
  startTime?: dntShim.Temporal.Instant | null;
8613
8787
  summary?: string | LanguageString | null;
@@ -8725,6 +8899,8 @@ export declare class Note extends Object {
8725
8899
  previews?: (Link | Object | URL)[];
8726
8900
  published?: dntShim.Temporal.Instant | null;
8727
8901
  replies?: Collection | URL | null;
8902
+ shares?: Collection | URL | null;
8903
+ likes?: Collection | URL | null;
8728
8904
  emojiReactions?: Collection | URL | null;
8729
8905
  startTime?: dntShim.Temporal.Instant | null;
8730
8906
  summary?: string | LanguageString | null;
@@ -8785,6 +8961,8 @@ export declare class Note extends Object {
8785
8961
  previews?: (Link | Object | URL)[];
8786
8962
  published?: dntShim.Temporal.Instant | null;
8787
8963
  replies?: Collection | URL | null;
8964
+ shares?: Collection | URL | null;
8965
+ likes?: Collection | URL | null;
8788
8966
  emojiReactions?: Collection | URL | null;
8789
8967
  startTime?: dntShim.Temporal.Instant | null;
8790
8968
  summary?: string | LanguageString | null;
@@ -8903,6 +9081,8 @@ export declare class OrderedCollection extends Collection {
8903
9081
  previews?: (Link | Object | URL)[];
8904
9082
  published?: dntShim.Temporal.Instant | null;
8905
9083
  replies?: Collection | URL | null;
9084
+ shares?: Collection | URL | null;
9085
+ likes?: Collection | URL | null;
8906
9086
  emojiReactions?: Collection | URL | null;
8907
9087
  startTime?: dntShim.Temporal.Instant | null;
8908
9088
  summary?: string | LanguageString | null;
@@ -8967,6 +9147,8 @@ export declare class OrderedCollection extends Collection {
8967
9147
  previews?: (Link | Object | URL)[];
8968
9148
  published?: dntShim.Temporal.Instant | null;
8969
9149
  replies?: Collection | URL | null;
9150
+ shares?: Collection | URL | null;
9151
+ likes?: Collection | URL | null;
8970
9152
  emojiReactions?: Collection | URL | null;
8971
9153
  startTime?: dntShim.Temporal.Instant | null;
8972
9154
  summary?: string | LanguageString | null;
@@ -9093,6 +9275,8 @@ export declare class OrderedCollectionPage extends CollectionPage {
9093
9275
  previews?: (Link | Object | URL)[];
9094
9276
  published?: dntShim.Temporal.Instant | null;
9095
9277
  replies?: Collection | URL | null;
9278
+ shares?: Collection | URL | null;
9279
+ likes?: Collection | URL | null;
9096
9280
  emojiReactions?: Collection | URL | null;
9097
9281
  startTime?: dntShim.Temporal.Instant | null;
9098
9282
  summary?: string | LanguageString | null;
@@ -9161,6 +9345,8 @@ export declare class OrderedCollectionPage extends CollectionPage {
9161
9345
  previews?: (Link | Object | URL)[];
9162
9346
  published?: dntShim.Temporal.Instant | null;
9163
9347
  replies?: Collection | URL | null;
9348
+ shares?: Collection | URL | null;
9349
+ likes?: Collection | URL | null;
9164
9350
  emojiReactions?: Collection | URL | null;
9165
9351
  startTime?: dntShim.Temporal.Instant | null;
9166
9352
  summary?: string | LanguageString | null;
@@ -9293,6 +9479,8 @@ export declare class Organization extends Object {
9293
9479
  previews?: (Link | Object | URL)[];
9294
9480
  published?: dntShim.Temporal.Instant | null;
9295
9481
  replies?: Collection | URL | null;
9482
+ shares?: Collection | URL | null;
9483
+ likes?: Collection | URL | null;
9296
9484
  emojiReactions?: Collection | URL | null;
9297
9485
  startTime?: dntShim.Temporal.Instant | null;
9298
9486
  summary?: string | LanguageString | null;
@@ -9379,6 +9567,8 @@ export declare class Organization extends Object {
9379
9567
  previews?: (Link | Object | URL)[];
9380
9568
  published?: dntShim.Temporal.Instant | null;
9381
9569
  replies?: Collection | URL | null;
9570
+ shares?: Collection | URL | null;
9571
+ likes?: Collection | URL | null;
9382
9572
  emojiReactions?: Collection | URL | null;
9383
9573
  startTime?: dntShim.Temporal.Instant | null;
9384
9574
  summary?: string | LanguageString | null;
@@ -9855,6 +10045,8 @@ export declare class Page extends Document {
9855
10045
  previews?: (Link | Object | URL)[];
9856
10046
  published?: dntShim.Temporal.Instant | null;
9857
10047
  replies?: Collection | URL | null;
10048
+ shares?: Collection | URL | null;
10049
+ likes?: Collection | URL | null;
9858
10050
  emojiReactions?: Collection | URL | null;
9859
10051
  startTime?: dntShim.Temporal.Instant | null;
9860
10052
  summary?: string | LanguageString | null;
@@ -9916,6 +10108,8 @@ export declare class Page extends Document {
9916
10108
  previews?: (Link | Object | URL)[];
9917
10109
  published?: dntShim.Temporal.Instant | null;
9918
10110
  replies?: Collection | URL | null;
10111
+ shares?: Collection | URL | null;
10112
+ likes?: Collection | URL | null;
9919
10113
  emojiReactions?: Collection | URL | null;
9920
10114
  startTime?: dntShim.Temporal.Instant | null;
9921
10115
  summary?: string | LanguageString | null;
@@ -10022,6 +10216,8 @@ export declare class Person extends Object {
10022
10216
  previews?: (Link | Object | URL)[];
10023
10217
  published?: dntShim.Temporal.Instant | null;
10024
10218
  replies?: Collection | URL | null;
10219
+ shares?: Collection | URL | null;
10220
+ likes?: Collection | URL | null;
10025
10221
  emojiReactions?: Collection | URL | null;
10026
10222
  startTime?: dntShim.Temporal.Instant | null;
10027
10223
  summary?: string | LanguageString | null;
@@ -10108,6 +10304,8 @@ export declare class Person extends Object {
10108
10304
  previews?: (Link | Object | URL)[];
10109
10305
  published?: dntShim.Temporal.Instant | null;
10110
10306
  replies?: Collection | URL | null;
10307
+ shares?: Collection | URL | null;
10308
+ likes?: Collection | URL | null;
10111
10309
  emojiReactions?: Collection | URL | null;
10112
10310
  startTime?: dntShim.Temporal.Instant | null;
10113
10311
  summary?: string | LanguageString | null;
@@ -10587,6 +10785,8 @@ export declare class Place extends Object {
10587
10785
  previews?: (Link | Object | URL)[];
10588
10786
  published?: dntShim.Temporal.Instant | null;
10589
10787
  replies?: Collection | URL | null;
10788
+ shares?: Collection | URL | null;
10789
+ likes?: Collection | URL | null;
10590
10790
  emojiReactions?: Collection | URL | null;
10591
10791
  startTime?: dntShim.Temporal.Instant | null;
10592
10792
  summary?: string | LanguageString | null;
@@ -10652,6 +10852,8 @@ export declare class Place extends Object {
10652
10852
  previews?: (Link | Object | URL)[];
10653
10853
  published?: dntShim.Temporal.Instant | null;
10654
10854
  replies?: Collection | URL | null;
10855
+ shares?: Collection | URL | null;
10856
+ likes?: Collection | URL | null;
10655
10857
  emojiReactions?: Collection | URL | null;
10656
10858
  startTime?: dntShim.Temporal.Instant | null;
10657
10859
  summary?: string | LanguageString | null;
@@ -10792,6 +10994,8 @@ export declare class Profile extends Object {
10792
10994
  previews?: (Link | Object | URL)[];
10793
10995
  published?: dntShim.Temporal.Instant | null;
10794
10996
  replies?: Collection | URL | null;
10997
+ shares?: Collection | URL | null;
10998
+ likes?: Collection | URL | null;
10795
10999
  emojiReactions?: Collection | URL | null;
10796
11000
  startTime?: dntShim.Temporal.Instant | null;
10797
11001
  summary?: string | LanguageString | null;
@@ -10852,6 +11056,8 @@ export declare class Profile extends Object {
10852
11056
  previews?: (Link | Object | URL)[];
10853
11057
  published?: dntShim.Temporal.Instant | null;
10854
11058
  replies?: Collection | URL | null;
11059
+ shares?: Collection | URL | null;
11060
+ likes?: Collection | URL | null;
10855
11061
  emojiReactions?: Collection | URL | null;
10856
11062
  startTime?: dntShim.Temporal.Instant | null;
10857
11063
  summary?: string | LanguageString | null;
@@ -10979,6 +11185,8 @@ export declare class Question extends IntransitiveActivity {
10979
11185
  previews?: (Link | Object | URL)[];
10980
11186
  published?: dntShim.Temporal.Instant | null;
10981
11187
  replies?: Collection | URL | null;
11188
+ shares?: Collection | URL | null;
11189
+ likes?: Collection | URL | null;
10982
11190
  emojiReactions?: Collection | URL | null;
10983
11191
  startTime?: dntShim.Temporal.Instant | null;
10984
11192
  summary?: string | LanguageString | null;
@@ -11055,6 +11263,8 @@ export declare class Question extends IntransitiveActivity {
11055
11263
  previews?: (Link | Object | URL)[];
11056
11264
  published?: dntShim.Temporal.Instant | null;
11057
11265
  replies?: Collection | URL | null;
11266
+ shares?: Collection | URL | null;
11267
+ likes?: Collection | URL | null;
11058
11268
  emojiReactions?: Collection | URL | null;
11059
11269
  startTime?: dntShim.Temporal.Instant | null;
11060
11270
  summary?: string | LanguageString | null;
@@ -11227,6 +11437,8 @@ export declare class Read extends Activity {
11227
11437
  previews?: (Link | Object | URL)[];
11228
11438
  published?: dntShim.Temporal.Instant | null;
11229
11439
  replies?: Collection | URL | null;
11440
+ shares?: Collection | URL | null;
11441
+ likes?: Collection | URL | null;
11230
11442
  emojiReactions?: Collection | URL | null;
11231
11443
  startTime?: dntShim.Temporal.Instant | null;
11232
11444
  summary?: string | LanguageString | null;
@@ -11298,6 +11510,8 @@ export declare class Read extends Activity {
11298
11510
  previews?: (Link | Object | URL)[];
11299
11511
  published?: dntShim.Temporal.Instant | null;
11300
11512
  replies?: Collection | URL | null;
11513
+ shares?: Collection | URL | null;
11514
+ likes?: Collection | URL | null;
11301
11515
  emojiReactions?: Collection | URL | null;
11302
11516
  startTime?: dntShim.Temporal.Instant | null;
11303
11517
  summary?: string | LanguageString | null;
@@ -11414,6 +11628,8 @@ export declare class Reject extends Activity {
11414
11628
  previews?: (Link | Object | URL)[];
11415
11629
  published?: dntShim.Temporal.Instant | null;
11416
11630
  replies?: Collection | URL | null;
11631
+ shares?: Collection | URL | null;
11632
+ likes?: Collection | URL | null;
11417
11633
  emojiReactions?: Collection | URL | null;
11418
11634
  startTime?: dntShim.Temporal.Instant | null;
11419
11635
  summary?: string | LanguageString | null;
@@ -11485,6 +11701,8 @@ export declare class Reject extends Activity {
11485
11701
  previews?: (Link | Object | URL)[];
11486
11702
  published?: dntShim.Temporal.Instant | null;
11487
11703
  replies?: Collection | URL | null;
11704
+ shares?: Collection | URL | null;
11705
+ likes?: Collection | URL | null;
11488
11706
  emojiReactions?: Collection | URL | null;
11489
11707
  startTime?: dntShim.Temporal.Instant | null;
11490
11708
  summary?: string | LanguageString | null;
@@ -11607,6 +11825,8 @@ export declare class Relationship extends Object {
11607
11825
  previews?: (Link | Object | URL)[];
11608
11826
  published?: dntShim.Temporal.Instant | null;
11609
11827
  replies?: Collection | URL | null;
11828
+ shares?: Collection | URL | null;
11829
+ likes?: Collection | URL | null;
11610
11830
  emojiReactions?: Collection | URL | null;
11611
11831
  startTime?: dntShim.Temporal.Instant | null;
11612
11832
  summary?: string | LanguageString | null;
@@ -11671,6 +11891,8 @@ export declare class Relationship extends Object {
11671
11891
  previews?: (Link | Object | URL)[];
11672
11892
  published?: dntShim.Temporal.Instant | null;
11673
11893
  replies?: Collection | URL | null;
11894
+ shares?: Collection | URL | null;
11895
+ likes?: Collection | URL | null;
11674
11896
  emojiReactions?: Collection | URL | null;
11675
11897
  startTime?: dntShim.Temporal.Instant | null;
11676
11898
  summary?: string | LanguageString | null;
@@ -11857,6 +12079,8 @@ export declare class Remove extends Activity {
11857
12079
  previews?: (Link | Object | URL)[];
11858
12080
  published?: dntShim.Temporal.Instant | null;
11859
12081
  replies?: Collection | URL | null;
12082
+ shares?: Collection | URL | null;
12083
+ likes?: Collection | URL | null;
11860
12084
  emojiReactions?: Collection | URL | null;
11861
12085
  startTime?: dntShim.Temporal.Instant | null;
11862
12086
  summary?: string | LanguageString | null;
@@ -11928,6 +12152,8 @@ export declare class Remove extends Activity {
11928
12152
  previews?: (Link | Object | URL)[];
11929
12153
  published?: dntShim.Temporal.Instant | null;
11930
12154
  replies?: Collection | URL | null;
12155
+ shares?: Collection | URL | null;
12156
+ likes?: Collection | URL | null;
11931
12157
  emojiReactions?: Collection | URL | null;
11932
12158
  startTime?: dntShim.Temporal.Instant | null;
11933
12159
  summary?: string | LanguageString | null;
@@ -12044,6 +12270,8 @@ export declare class Service extends Object {
12044
12270
  previews?: (Link | Object | URL)[];
12045
12271
  published?: dntShim.Temporal.Instant | null;
12046
12272
  replies?: Collection | URL | null;
12273
+ shares?: Collection | URL | null;
12274
+ likes?: Collection | URL | null;
12047
12275
  emojiReactions?: Collection | URL | null;
12048
12276
  startTime?: dntShim.Temporal.Instant | null;
12049
12277
  summary?: string | LanguageString | null;
@@ -12130,6 +12358,8 @@ export declare class Service extends Object {
12130
12358
  previews?: (Link | Object | URL)[];
12131
12359
  published?: dntShim.Temporal.Instant | null;
12132
12360
  replies?: Collection | URL | null;
12361
+ shares?: Collection | URL | null;
12362
+ likes?: Collection | URL | null;
12133
12363
  emojiReactions?: Collection | URL | null;
12134
12364
  startTime?: dntShim.Temporal.Instant | null;
12135
12365
  summary?: string | LanguageString | null;
@@ -12699,6 +12929,8 @@ export declare class TentativeAccept extends Accept {
12699
12929
  previews?: (Link | Object | URL)[];
12700
12930
  published?: dntShim.Temporal.Instant | null;
12701
12931
  replies?: Collection | URL | null;
12932
+ shares?: Collection | URL | null;
12933
+ likes?: Collection | URL | null;
12702
12934
  emojiReactions?: Collection | URL | null;
12703
12935
  startTime?: dntShim.Temporal.Instant | null;
12704
12936
  summary?: string | LanguageString | null;
@@ -12770,6 +13002,8 @@ export declare class TentativeAccept extends Accept {
12770
13002
  previews?: (Link | Object | URL)[];
12771
13003
  published?: dntShim.Temporal.Instant | null;
12772
13004
  replies?: Collection | URL | null;
13005
+ shares?: Collection | URL | null;
13006
+ likes?: Collection | URL | null;
12773
13007
  emojiReactions?: Collection | URL | null;
12774
13008
  startTime?: dntShim.Temporal.Instant | null;
12775
13009
  summary?: string | LanguageString | null;
@@ -12886,6 +13120,8 @@ export declare class TentativeReject extends Reject {
12886
13120
  previews?: (Link | Object | URL)[];
12887
13121
  published?: dntShim.Temporal.Instant | null;
12888
13122
  replies?: Collection | URL | null;
13123
+ shares?: Collection | URL | null;
13124
+ likes?: Collection | URL | null;
12889
13125
  emojiReactions?: Collection | URL | null;
12890
13126
  startTime?: dntShim.Temporal.Instant | null;
12891
13127
  summary?: string | LanguageString | null;
@@ -12957,6 +13193,8 @@ export declare class TentativeReject extends Reject {
12957
13193
  previews?: (Link | Object | URL)[];
12958
13194
  published?: dntShim.Temporal.Instant | null;
12959
13195
  replies?: Collection | URL | null;
13196
+ shares?: Collection | URL | null;
13197
+ likes?: Collection | URL | null;
12960
13198
  emojiReactions?: Collection | URL | null;
12961
13199
  startTime?: dntShim.Temporal.Instant | null;
12962
13200
  summary?: string | LanguageString | null;
@@ -13075,6 +13313,8 @@ export declare class Tombstone extends Object {
13075
13313
  previews?: (Link | Object | URL)[];
13076
13314
  published?: dntShim.Temporal.Instant | null;
13077
13315
  replies?: Collection | URL | null;
13316
+ shares?: Collection | URL | null;
13317
+ likes?: Collection | URL | null;
13078
13318
  emojiReactions?: Collection | URL | null;
13079
13319
  startTime?: dntShim.Temporal.Instant | null;
13080
13320
  summary?: string | LanguageString | null;
@@ -13135,6 +13375,8 @@ export declare class Tombstone extends Object {
13135
13375
  previews?: (Link | Object | URL)[];
13136
13376
  published?: dntShim.Temporal.Instant | null;
13137
13377
  replies?: Collection | URL | null;
13378
+ shares?: Collection | URL | null;
13379
+ likes?: Collection | URL | null;
13138
13380
  emojiReactions?: Collection | URL | null;
13139
13381
  startTime?: dntShim.Temporal.Instant | null;
13140
13382
  summary?: string | LanguageString | null;
@@ -13246,6 +13488,8 @@ export declare class Travel extends IntransitiveActivity {
13246
13488
  previews?: (Link | Object | URL)[];
13247
13489
  published?: dntShim.Temporal.Instant | null;
13248
13490
  replies?: Collection | URL | null;
13491
+ shares?: Collection | URL | null;
13492
+ likes?: Collection | URL | null;
13249
13493
  emojiReactions?: Collection | URL | null;
13250
13494
  startTime?: dntShim.Temporal.Instant | null;
13251
13495
  summary?: string | LanguageString | null;
@@ -13317,6 +13561,8 @@ export declare class Travel extends IntransitiveActivity {
13317
13561
  previews?: (Link | Object | URL)[];
13318
13562
  published?: dntShim.Temporal.Instant | null;
13319
13563
  replies?: Collection | URL | null;
13564
+ shares?: Collection | URL | null;
13565
+ likes?: Collection | URL | null;
13320
13566
  emojiReactions?: Collection | URL | null;
13321
13567
  startTime?: dntShim.Temporal.Instant | null;
13322
13568
  summary?: string | LanguageString | null;
@@ -13438,6 +13684,8 @@ export declare class Undo extends Activity {
13438
13684
  previews?: (Link | Object | URL)[];
13439
13685
  published?: dntShim.Temporal.Instant | null;
13440
13686
  replies?: Collection | URL | null;
13687
+ shares?: Collection | URL | null;
13688
+ likes?: Collection | URL | null;
13441
13689
  emojiReactions?: Collection | URL | null;
13442
13690
  startTime?: dntShim.Temporal.Instant | null;
13443
13691
  summary?: string | LanguageString | null;
@@ -13509,6 +13757,8 @@ export declare class Undo extends Activity {
13509
13757
  previews?: (Link | Object | URL)[];
13510
13758
  published?: dntShim.Temporal.Instant | null;
13511
13759
  replies?: Collection | URL | null;
13760
+ shares?: Collection | URL | null;
13761
+ likes?: Collection | URL | null;
13512
13762
  emojiReactions?: Collection | URL | null;
13513
13763
  startTime?: dntShim.Temporal.Instant | null;
13514
13764
  summary?: string | LanguageString | null;
@@ -13628,6 +13878,8 @@ export declare class Update extends Activity {
13628
13878
  previews?: (Link | Object | URL)[];
13629
13879
  published?: dntShim.Temporal.Instant | null;
13630
13880
  replies?: Collection | URL | null;
13881
+ shares?: Collection | URL | null;
13882
+ likes?: Collection | URL | null;
13631
13883
  emojiReactions?: Collection | URL | null;
13632
13884
  startTime?: dntShim.Temporal.Instant | null;
13633
13885
  summary?: string | LanguageString | null;
@@ -13699,6 +13951,8 @@ export declare class Update extends Activity {
13699
13951
  previews?: (Link | Object | URL)[];
13700
13952
  published?: dntShim.Temporal.Instant | null;
13701
13953
  replies?: Collection | URL | null;
13954
+ shares?: Collection | URL | null;
13955
+ likes?: Collection | URL | null;
13702
13956
  emojiReactions?: Collection | URL | null;
13703
13957
  startTime?: dntShim.Temporal.Instant | null;
13704
13958
  summary?: string | LanguageString | null;
@@ -13814,6 +14068,8 @@ export declare class Video extends Document {
13814
14068
  previews?: (Link | Object | URL)[];
13815
14069
  published?: dntShim.Temporal.Instant | null;
13816
14070
  replies?: Collection | URL | null;
14071
+ shares?: Collection | URL | null;
14072
+ likes?: Collection | URL | null;
13817
14073
  emojiReactions?: Collection | URL | null;
13818
14074
  startTime?: dntShim.Temporal.Instant | null;
13819
14075
  summary?: string | LanguageString | null;
@@ -13875,6 +14131,8 @@ export declare class Video extends Document {
13875
14131
  previews?: (Link | Object | URL)[];
13876
14132
  published?: dntShim.Temporal.Instant | null;
13877
14133
  replies?: Collection | URL | null;
14134
+ shares?: Collection | URL | null;
14135
+ likes?: Collection | URL | null;
13878
14136
  emojiReactions?: Collection | URL | null;
13879
14137
  startTime?: dntShim.Temporal.Instant | null;
13880
14138
  summary?: string | LanguageString | null;
@@ -13980,6 +14238,8 @@ export declare class View extends Activity {
13980
14238
  previews?: (Link | Object | URL)[];
13981
14239
  published?: dntShim.Temporal.Instant | null;
13982
14240
  replies?: Collection | URL | null;
14241
+ shares?: Collection | URL | null;
14242
+ likes?: Collection | URL | null;
13983
14243
  emojiReactions?: Collection | URL | null;
13984
14244
  startTime?: dntShim.Temporal.Instant | null;
13985
14245
  summary?: string | LanguageString | null;
@@ -14051,6 +14311,8 @@ export declare class View extends Activity {
14051
14311
  previews?: (Link | Object | URL)[];
14052
14312
  published?: dntShim.Temporal.Instant | null;
14053
14313
  replies?: Collection | URL | null;
14314
+ shares?: Collection | URL | null;
14315
+ likes?: Collection | URL | null;
14054
14316
  emojiReactions?: Collection | URL | null;
14055
14317
  startTime?: dntShim.Temporal.Instant | null;
14056
14318
  summary?: string | LanguageString | null;