@fedify/fedify 1.4.0-dev.595 → 1.4.0-dev.598
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/CHANGES.md +17 -0
- package/esm/deno.js +1 -1
- package/esm/runtime/contexts.js +33 -0
- package/esm/vocab/announce.yaml +3 -0
- package/esm/vocab/article.yaml +3 -0
- package/esm/vocab/chatmessage.yaml +3 -0
- package/esm/vocab/collection.yaml +10 -0
- package/esm/vocab/collectionpage.yaml +10 -0
- package/esm/vocab/create.yaml +3 -0
- package/esm/vocab/note.yaml +3 -0
- package/esm/vocab/object.yaml +15 -1
- package/esm/vocab/orderedcollection.yaml +10 -0
- package/esm/vocab/orderedcollectionpage.yaml +10 -0
- package/esm/vocab/question.yaml +3 -0
- package/esm/vocab/update.yaml +3 -0
- package/esm/vocab/vocab.js +512 -175
- package/package.json +1 -1
- package/types/runtime/contexts.d.ts.map +1 -1
- package/types/vocab/vocab.d.ts +125 -0
- package/types/vocab/vocab.d.ts.map +1 -1
package/types/vocab/vocab.d.ts
CHANGED
@@ -53,6 +53,7 @@ export declare class Object {
|
|
53
53
|
previews?: (Link | Object | URL)[];
|
54
54
|
published?: dntShim.Temporal.Instant | null;
|
55
55
|
replies?: Collection | URL | null;
|
56
|
+
emojiReactions?: Collection | URL | null;
|
56
57
|
startTime?: dntShim.Temporal.Instant | null;
|
57
58
|
summary?: string | LanguageString | null;
|
58
59
|
summaries?: ((string | LanguageString))[];
|
@@ -111,6 +112,7 @@ export declare class Object {
|
|
111
112
|
previews?: (Link | Object | URL)[];
|
112
113
|
published?: dntShim.Temporal.Instant | null;
|
113
114
|
replies?: Collection | URL | null;
|
115
|
+
emojiReactions?: Collection | URL | null;
|
114
116
|
startTime?: dntShim.Temporal.Instant | null;
|
115
117
|
summary?: string | LanguageString | null;
|
116
118
|
summaries?: ((string | LanguageString))[];
|
@@ -448,6 +450,21 @@ export declare class Object {
|
|
448
450
|
suppressError?: boolean;
|
449
451
|
tracerProvider?: TracerProvider;
|
450
452
|
}): Promise<Collection | null>;
|
453
|
+
/**
|
454
|
+
* Similar to
|
455
|
+
* {@link Object.getEmojiReactions},
|
456
|
+
* but returns its `@id` URL instead of the object itself.
|
457
|
+
*/
|
458
|
+
get emojiReactionsId(): URL | null;
|
459
|
+
/** Identifies a {@link Collection} containing objects considered to be
|
460
|
+
* emoji reactions to this object.
|
461
|
+
*/
|
462
|
+
getEmojiReactions(options?: {
|
463
|
+
documentLoader?: DocumentLoader;
|
464
|
+
contextLoader?: DocumentLoader;
|
465
|
+
suppressError?: boolean;
|
466
|
+
tracerProvider?: TracerProvider;
|
467
|
+
}): Promise<Collection | null>;
|
451
468
|
/** The date and time describing the actual or expected starting time of
|
452
469
|
* the object. When used with an {@link Activity} object, for instance,
|
453
470
|
* the `startTime` property specifies the moment the activity began or
|
@@ -734,6 +751,7 @@ export declare class Emoji extends Object {
|
|
734
751
|
previews?: (Link | Object | URL)[];
|
735
752
|
published?: dntShim.Temporal.Instant | null;
|
736
753
|
replies?: Collection | URL | null;
|
754
|
+
emojiReactions?: Collection | URL | null;
|
737
755
|
startTime?: dntShim.Temporal.Instant | null;
|
738
756
|
summary?: string | LanguageString | null;
|
739
757
|
summaries?: ((string | LanguageString))[];
|
@@ -792,6 +810,7 @@ export declare class Emoji extends Object {
|
|
792
810
|
previews?: (Link | Object | URL)[];
|
793
811
|
published?: dntShim.Temporal.Instant | null;
|
794
812
|
replies?: Collection | URL | null;
|
813
|
+
emojiReactions?: Collection | URL | null;
|
795
814
|
startTime?: dntShim.Temporal.Instant | null;
|
796
815
|
summary?: string | LanguageString | null;
|
797
816
|
summaries?: ((string | LanguageString))[];
|
@@ -899,6 +918,7 @@ export declare class ChatMessage extends Object {
|
|
899
918
|
previews?: (Link | Object | URL)[];
|
900
919
|
published?: dntShim.Temporal.Instant | null;
|
901
920
|
replies?: Collection | URL | null;
|
921
|
+
emojiReactions?: Collection | URL | null;
|
902
922
|
startTime?: dntShim.Temporal.Instant | null;
|
903
923
|
summary?: string | LanguageString | null;
|
904
924
|
summaries?: ((string | LanguageString))[];
|
@@ -958,6 +978,7 @@ export declare class ChatMessage extends Object {
|
|
958
978
|
previews?: (Link | Object | URL)[];
|
959
979
|
published?: dntShim.Temporal.Instant | null;
|
960
980
|
replies?: Collection | URL | null;
|
981
|
+
emojiReactions?: Collection | URL | null;
|
961
982
|
startTime?: dntShim.Temporal.Instant | null;
|
962
983
|
summary?: string | LanguageString | null;
|
963
984
|
summaries?: ((string | LanguageString))[];
|
@@ -1078,6 +1099,7 @@ export declare class Activity extends Object {
|
|
1078
1099
|
previews?: (Link | Object | URL)[];
|
1079
1100
|
published?: dntShim.Temporal.Instant | null;
|
1080
1101
|
replies?: Collection | URL | null;
|
1102
|
+
emojiReactions?: Collection | URL | null;
|
1081
1103
|
startTime?: dntShim.Temporal.Instant | null;
|
1082
1104
|
summary?: string | LanguageString | null;
|
1083
1105
|
summaries?: ((string | LanguageString))[];
|
@@ -1148,6 +1170,7 @@ export declare class Activity extends Object {
|
|
1148
1170
|
previews?: (Link | Object | URL)[];
|
1149
1171
|
published?: dntShim.Temporal.Instant | null;
|
1150
1172
|
replies?: Collection | URL | null;
|
1173
|
+
emojiReactions?: Collection | URL | null;
|
1151
1174
|
startTime?: dntShim.Temporal.Instant | null;
|
1152
1175
|
summary?: string | LanguageString | null;
|
1153
1176
|
summaries?: ((string | LanguageString))[];
|
@@ -1460,6 +1483,7 @@ export declare class EmojiReact extends Activity {
|
|
1460
1483
|
previews?: (Link | Object | URL)[];
|
1461
1484
|
published?: dntShim.Temporal.Instant | null;
|
1462
1485
|
replies?: Collection | URL | null;
|
1486
|
+
emojiReactions?: Collection | URL | null;
|
1463
1487
|
startTime?: dntShim.Temporal.Instant | null;
|
1464
1488
|
summary?: string | LanguageString | null;
|
1465
1489
|
summaries?: ((string | LanguageString))[];
|
@@ -1530,6 +1554,7 @@ export declare class EmojiReact extends Activity {
|
|
1530
1554
|
previews?: (Link | Object | URL)[];
|
1531
1555
|
published?: dntShim.Temporal.Instant | null;
|
1532
1556
|
replies?: Collection | URL | null;
|
1557
|
+
emojiReactions?: Collection | URL | null;
|
1533
1558
|
startTime?: dntShim.Temporal.Instant | null;
|
1534
1559
|
summary?: string | LanguageString | null;
|
1535
1560
|
summaries?: ((string | LanguageString))[];
|
@@ -2224,6 +2249,7 @@ export declare class Accept extends Activity {
|
|
2224
2249
|
previews?: (Link | Object | URL)[];
|
2225
2250
|
published?: dntShim.Temporal.Instant | null;
|
2226
2251
|
replies?: Collection | URL | null;
|
2252
|
+
emojiReactions?: Collection | URL | null;
|
2227
2253
|
startTime?: dntShim.Temporal.Instant | null;
|
2228
2254
|
summary?: string | LanguageString | null;
|
2229
2255
|
summaries?: ((string | LanguageString))[];
|
@@ -2294,6 +2320,7 @@ export declare class Accept extends Activity {
|
|
2294
2320
|
previews?: (Link | Object | URL)[];
|
2295
2321
|
published?: dntShim.Temporal.Instant | null;
|
2296
2322
|
replies?: Collection | URL | null;
|
2323
|
+
emojiReactions?: Collection | URL | null;
|
2297
2324
|
startTime?: dntShim.Temporal.Instant | null;
|
2298
2325
|
summary?: string | LanguageString | null;
|
2299
2326
|
summaries?: ((string | LanguageString))[];
|
@@ -2411,6 +2438,7 @@ export declare class Add extends Activity {
|
|
2411
2438
|
previews?: (Link | Object | URL)[];
|
2412
2439
|
published?: dntShim.Temporal.Instant | null;
|
2413
2440
|
replies?: Collection | URL | null;
|
2441
|
+
emojiReactions?: Collection | URL | null;
|
2414
2442
|
startTime?: dntShim.Temporal.Instant | null;
|
2415
2443
|
summary?: string | LanguageString | null;
|
2416
2444
|
summaries?: ((string | LanguageString))[];
|
@@ -2481,6 +2509,7 @@ export declare class Add extends Activity {
|
|
2481
2509
|
previews?: (Link | Object | URL)[];
|
2482
2510
|
published?: dntShim.Temporal.Instant | null;
|
2483
2511
|
replies?: Collection | URL | null;
|
2512
|
+
emojiReactions?: Collection | URL | null;
|
2484
2513
|
startTime?: dntShim.Temporal.Instant | null;
|
2485
2514
|
summary?: string | LanguageString | null;
|
2486
2515
|
summaries?: ((string | LanguageString))[];
|
@@ -2597,6 +2626,7 @@ export declare class Announce extends Activity {
|
|
2597
2626
|
previews?: (Link | Object | URL)[];
|
2598
2627
|
published?: dntShim.Temporal.Instant | null;
|
2599
2628
|
replies?: Collection | URL | null;
|
2629
|
+
emojiReactions?: Collection | URL | null;
|
2600
2630
|
startTime?: dntShim.Temporal.Instant | null;
|
2601
2631
|
summary?: string | LanguageString | null;
|
2602
2632
|
summaries?: ((string | LanguageString))[];
|
@@ -2667,6 +2697,7 @@ export declare class Announce extends Activity {
|
|
2667
2697
|
previews?: (Link | Object | URL)[];
|
2668
2698
|
published?: dntShim.Temporal.Instant | null;
|
2669
2699
|
replies?: Collection | URL | null;
|
2700
|
+
emojiReactions?: Collection | URL | null;
|
2670
2701
|
startTime?: dntShim.Temporal.Instant | null;
|
2671
2702
|
summary?: string | LanguageString | null;
|
2672
2703
|
summaries?: ((string | LanguageString))[];
|
@@ -2782,6 +2813,7 @@ export declare class Application extends Object {
|
|
2782
2813
|
previews?: (Link | Object | URL)[];
|
2783
2814
|
published?: dntShim.Temporal.Instant | null;
|
2784
2815
|
replies?: Collection | URL | null;
|
2816
|
+
emojiReactions?: Collection | URL | null;
|
2785
2817
|
startTime?: dntShim.Temporal.Instant | null;
|
2786
2818
|
summary?: string | LanguageString | null;
|
2787
2819
|
summaries?: ((string | LanguageString))[];
|
@@ -2867,6 +2899,7 @@ export declare class Application extends Object {
|
|
2867
2899
|
previews?: (Link | Object | URL)[];
|
2868
2900
|
published?: dntShim.Temporal.Instant | null;
|
2869
2901
|
replies?: Collection | URL | null;
|
2902
|
+
emojiReactions?: Collection | URL | null;
|
2870
2903
|
startTime?: dntShim.Temporal.Instant | null;
|
2871
2904
|
summary?: string | LanguageString | null;
|
2872
2905
|
summaries?: ((string | LanguageString))[];
|
@@ -3344,6 +3377,7 @@ export declare class IntransitiveActivity extends Activity {
|
|
3344
3377
|
previews?: (Link | Object | URL)[];
|
3345
3378
|
published?: dntShim.Temporal.Instant | null;
|
3346
3379
|
replies?: Collection | URL | null;
|
3380
|
+
emojiReactions?: Collection | URL | null;
|
3347
3381
|
startTime?: dntShim.Temporal.Instant | null;
|
3348
3382
|
summary?: string | LanguageString | null;
|
3349
3383
|
summaries?: ((string | LanguageString))[];
|
@@ -3414,6 +3448,7 @@ export declare class IntransitiveActivity extends Activity {
|
|
3414
3448
|
previews?: (Link | Object | URL)[];
|
3415
3449
|
published?: dntShim.Temporal.Instant | null;
|
3416
3450
|
replies?: Collection | URL | null;
|
3451
|
+
emojiReactions?: Collection | URL | null;
|
3417
3452
|
startTime?: dntShim.Temporal.Instant | null;
|
3418
3453
|
summary?: string | LanguageString | null;
|
3419
3454
|
summaries?: ((string | LanguageString))[];
|
@@ -3530,6 +3565,7 @@ export declare class Arrive extends IntransitiveActivity {
|
|
3530
3565
|
previews?: (Link | Object | URL)[];
|
3531
3566
|
published?: dntShim.Temporal.Instant | null;
|
3532
3567
|
replies?: Collection | URL | null;
|
3568
|
+
emojiReactions?: Collection | URL | null;
|
3533
3569
|
startTime?: dntShim.Temporal.Instant | null;
|
3534
3570
|
summary?: string | LanguageString | null;
|
3535
3571
|
summaries?: ((string | LanguageString))[];
|
@@ -3600,6 +3636,7 @@ export declare class Arrive extends IntransitiveActivity {
|
|
3600
3636
|
previews?: (Link | Object | URL)[];
|
3601
3637
|
published?: dntShim.Temporal.Instant | null;
|
3602
3638
|
replies?: Collection | URL | null;
|
3639
|
+
emojiReactions?: Collection | URL | null;
|
3603
3640
|
startTime?: dntShim.Temporal.Instant | null;
|
3604
3641
|
summary?: string | LanguageString | null;
|
3605
3642
|
summaries?: ((string | LanguageString))[];
|
@@ -3715,6 +3752,7 @@ export declare class Article extends Object {
|
|
3715
3752
|
previews?: (Link | Object | URL)[];
|
3716
3753
|
published?: dntShim.Temporal.Instant | null;
|
3717
3754
|
replies?: Collection | URL | null;
|
3755
|
+
emojiReactions?: Collection | URL | null;
|
3718
3756
|
startTime?: dntShim.Temporal.Instant | null;
|
3719
3757
|
summary?: string | LanguageString | null;
|
3720
3758
|
summaries?: ((string | LanguageString))[];
|
@@ -3774,6 +3812,7 @@ export declare class Article extends Object {
|
|
3774
3812
|
previews?: (Link | Object | URL)[];
|
3775
3813
|
published?: dntShim.Temporal.Instant | null;
|
3776
3814
|
replies?: Collection | URL | null;
|
3815
|
+
emojiReactions?: Collection | URL | null;
|
3777
3816
|
startTime?: dntShim.Temporal.Instant | null;
|
3778
3817
|
summary?: string | LanguageString | null;
|
3779
3818
|
summaries?: ((string | LanguageString))[];
|
@@ -3890,6 +3929,7 @@ export declare class Document extends Object {
|
|
3890
3929
|
previews?: (Link | Object | URL)[];
|
3891
3930
|
published?: dntShim.Temporal.Instant | null;
|
3892
3931
|
replies?: Collection | URL | null;
|
3932
|
+
emojiReactions?: Collection | URL | null;
|
3893
3933
|
startTime?: dntShim.Temporal.Instant | null;
|
3894
3934
|
summary?: string | LanguageString | null;
|
3895
3935
|
summaries?: ((string | LanguageString))[];
|
@@ -3950,6 +3990,7 @@ export declare class Document extends Object {
|
|
3950
3990
|
previews?: (Link | Object | URL)[];
|
3951
3991
|
published?: dntShim.Temporal.Instant | null;
|
3952
3992
|
replies?: Collection | URL | null;
|
3993
|
+
emojiReactions?: Collection | URL | null;
|
3953
3994
|
startTime?: dntShim.Temporal.Instant | null;
|
3954
3995
|
summary?: string | LanguageString | null;
|
3955
3996
|
summaries?: ((string | LanguageString))[];
|
@@ -4062,6 +4103,7 @@ export declare class Audio extends Document {
|
|
4062
4103
|
previews?: (Link | Object | URL)[];
|
4063
4104
|
published?: dntShim.Temporal.Instant | null;
|
4064
4105
|
replies?: Collection | URL | null;
|
4106
|
+
emojiReactions?: Collection | URL | null;
|
4065
4107
|
startTime?: dntShim.Temporal.Instant | null;
|
4066
4108
|
summary?: string | LanguageString | null;
|
4067
4109
|
summaries?: ((string | LanguageString))[];
|
@@ -4122,6 +4164,7 @@ export declare class Audio extends Document {
|
|
4122
4164
|
previews?: (Link | Object | URL)[];
|
4123
4165
|
published?: dntShim.Temporal.Instant | null;
|
4124
4166
|
replies?: Collection | URL | null;
|
4167
|
+
emojiReactions?: Collection | URL | null;
|
4125
4168
|
startTime?: dntShim.Temporal.Instant | null;
|
4126
4169
|
summary?: string | LanguageString | null;
|
4127
4170
|
summaries?: ((string | LanguageString))[];
|
@@ -4227,6 +4270,7 @@ export declare class Ignore extends Activity {
|
|
4227
4270
|
previews?: (Link | Object | URL)[];
|
4228
4271
|
published?: dntShim.Temporal.Instant | null;
|
4229
4272
|
replies?: Collection | URL | null;
|
4273
|
+
emojiReactions?: Collection | URL | null;
|
4230
4274
|
startTime?: dntShim.Temporal.Instant | null;
|
4231
4275
|
summary?: string | LanguageString | null;
|
4232
4276
|
summaries?: ((string | LanguageString))[];
|
@@ -4297,6 +4341,7 @@ export declare class Ignore extends Activity {
|
|
4297
4341
|
previews?: (Link | Object | URL)[];
|
4298
4342
|
published?: dntShim.Temporal.Instant | null;
|
4299
4343
|
replies?: Collection | URL | null;
|
4344
|
+
emojiReactions?: Collection | URL | null;
|
4300
4345
|
startTime?: dntShim.Temporal.Instant | null;
|
4301
4346
|
summary?: string | LanguageString | null;
|
4302
4347
|
summaries?: ((string | LanguageString))[];
|
@@ -4414,6 +4459,7 @@ export declare class Block extends Ignore {
|
|
4414
4459
|
previews?: (Link | Object | URL)[];
|
4415
4460
|
published?: dntShim.Temporal.Instant | null;
|
4416
4461
|
replies?: Collection | URL | null;
|
4462
|
+
emojiReactions?: Collection | URL | null;
|
4417
4463
|
startTime?: dntShim.Temporal.Instant | null;
|
4418
4464
|
summary?: string | LanguageString | null;
|
4419
4465
|
summaries?: ((string | LanguageString))[];
|
@@ -4484,6 +4530,7 @@ export declare class Block extends Ignore {
|
|
4484
4530
|
previews?: (Link | Object | URL)[];
|
4485
4531
|
published?: dntShim.Temporal.Instant | null;
|
4486
4532
|
replies?: Collection | URL | null;
|
4533
|
+
emojiReactions?: Collection | URL | null;
|
4487
4534
|
startTime?: dntShim.Temporal.Instant | null;
|
4488
4535
|
summary?: string | LanguageString | null;
|
4489
4536
|
summaries?: ((string | LanguageString))[];
|
@@ -4603,6 +4650,7 @@ export declare class Collection extends Object {
|
|
4603
4650
|
previews?: (Link | Object | URL)[];
|
4604
4651
|
published?: dntShim.Temporal.Instant | null;
|
4605
4652
|
replies?: Collection | URL | null;
|
4653
|
+
emojiReactions?: Collection | URL | null;
|
4606
4654
|
startTime?: dntShim.Temporal.Instant | null;
|
4607
4655
|
summary?: string | LanguageString | null;
|
4608
4656
|
summaries?: ((string | LanguageString))[];
|
@@ -4666,6 +4714,7 @@ export declare class Collection extends Object {
|
|
4666
4714
|
previews?: (Link | Object | URL)[];
|
4667
4715
|
published?: dntShim.Temporal.Instant | null;
|
4668
4716
|
replies?: Collection | URL | null;
|
4717
|
+
emojiReactions?: Collection | URL | null;
|
4669
4718
|
startTime?: dntShim.Temporal.Instant | null;
|
4670
4719
|
summary?: string | LanguageString | null;
|
4671
4720
|
summaries?: ((string | LanguageString))[];
|
@@ -4841,6 +4890,7 @@ export declare class CollectionPage extends Collection {
|
|
4841
4890
|
previews?: (Link | Object | URL)[];
|
4842
4891
|
published?: dntShim.Temporal.Instant | null;
|
4843
4892
|
replies?: Collection | URL | null;
|
4893
|
+
emojiReactions?: Collection | URL | null;
|
4844
4894
|
startTime?: dntShim.Temporal.Instant | null;
|
4845
4895
|
summary?: string | LanguageString | null;
|
4846
4896
|
summaries?: ((string | LanguageString))[];
|
@@ -4907,6 +4957,7 @@ export declare class CollectionPage extends Collection {
|
|
4907
4957
|
previews?: (Link | Object | URL)[];
|
4908
4958
|
published?: dntShim.Temporal.Instant | null;
|
4909
4959
|
replies?: Collection | URL | null;
|
4960
|
+
emojiReactions?: Collection | URL | null;
|
4910
4961
|
startTime?: dntShim.Temporal.Instant | null;
|
4911
4962
|
summary?: string | LanguageString | null;
|
4912
4963
|
summaries?: ((string | LanguageString))[];
|
@@ -5060,6 +5111,7 @@ export declare class Create extends Activity {
|
|
5060
5111
|
previews?: (Link | Object | URL)[];
|
5061
5112
|
published?: dntShim.Temporal.Instant | null;
|
5062
5113
|
replies?: Collection | URL | null;
|
5114
|
+
emojiReactions?: Collection | URL | null;
|
5063
5115
|
startTime?: dntShim.Temporal.Instant | null;
|
5064
5116
|
summary?: string | LanguageString | null;
|
5065
5117
|
summaries?: ((string | LanguageString))[];
|
@@ -5130,6 +5182,7 @@ export declare class Create extends Activity {
|
|
5130
5182
|
previews?: (Link | Object | URL)[];
|
5131
5183
|
published?: dntShim.Temporal.Instant | null;
|
5132
5184
|
replies?: Collection | URL | null;
|
5185
|
+
emojiReactions?: Collection | URL | null;
|
5133
5186
|
startTime?: dntShim.Temporal.Instant | null;
|
5134
5187
|
summary?: string | LanguageString | null;
|
5135
5188
|
summaries?: ((string | LanguageString))[];
|
@@ -5245,6 +5298,7 @@ export declare class Delete extends Activity {
|
|
5245
5298
|
previews?: (Link | Object | URL)[];
|
5246
5299
|
published?: dntShim.Temporal.Instant | null;
|
5247
5300
|
replies?: Collection | URL | null;
|
5301
|
+
emojiReactions?: Collection | URL | null;
|
5248
5302
|
startTime?: dntShim.Temporal.Instant | null;
|
5249
5303
|
summary?: string | LanguageString | null;
|
5250
5304
|
summaries?: ((string | LanguageString))[];
|
@@ -5315,6 +5369,7 @@ export declare class Delete extends Activity {
|
|
5315
5369
|
previews?: (Link | Object | URL)[];
|
5316
5370
|
published?: dntShim.Temporal.Instant | null;
|
5317
5371
|
replies?: Collection | URL | null;
|
5372
|
+
emojiReactions?: Collection | URL | null;
|
5318
5373
|
startTime?: dntShim.Temporal.Instant | null;
|
5319
5374
|
summary?: string | LanguageString | null;
|
5320
5375
|
summaries?: ((string | LanguageString))[];
|
@@ -5429,6 +5484,7 @@ export declare class Dislike extends Activity {
|
|
5429
5484
|
previews?: (Link | Object | URL)[];
|
5430
5485
|
published?: dntShim.Temporal.Instant | null;
|
5431
5486
|
replies?: Collection | URL | null;
|
5487
|
+
emojiReactions?: Collection | URL | null;
|
5432
5488
|
startTime?: dntShim.Temporal.Instant | null;
|
5433
5489
|
summary?: string | LanguageString | null;
|
5434
5490
|
summaries?: ((string | LanguageString))[];
|
@@ -5499,6 +5555,7 @@ export declare class Dislike extends Activity {
|
|
5499
5555
|
previews?: (Link | Object | URL)[];
|
5500
5556
|
published?: dntShim.Temporal.Instant | null;
|
5501
5557
|
replies?: Collection | URL | null;
|
5558
|
+
emojiReactions?: Collection | URL | null;
|
5502
5559
|
startTime?: dntShim.Temporal.Instant | null;
|
5503
5560
|
summary?: string | LanguageString | null;
|
5504
5561
|
summaries?: ((string | LanguageString))[];
|
@@ -5743,6 +5800,7 @@ export declare class Event extends Object {
|
|
5743
5800
|
previews?: (Link | Object | URL)[];
|
5744
5801
|
published?: dntShim.Temporal.Instant | null;
|
5745
5802
|
replies?: Collection | URL | null;
|
5803
|
+
emojiReactions?: Collection | URL | null;
|
5746
5804
|
startTime?: dntShim.Temporal.Instant | null;
|
5747
5805
|
summary?: string | LanguageString | null;
|
5748
5806
|
summaries?: ((string | LanguageString))[];
|
@@ -5801,6 +5859,7 @@ export declare class Event extends Object {
|
|
5801
5859
|
previews?: (Link | Object | URL)[];
|
5802
5860
|
published?: dntShim.Temporal.Instant | null;
|
5803
5861
|
replies?: Collection | URL | null;
|
5862
|
+
emojiReactions?: Collection | URL | null;
|
5804
5863
|
startTime?: dntShim.Temporal.Instant | null;
|
5805
5864
|
summary?: string | LanguageString | null;
|
5806
5865
|
summaries?: ((string | LanguageString))[];
|
@@ -5905,6 +5964,7 @@ export declare class Flag extends Activity {
|
|
5905
5964
|
previews?: (Link | Object | URL)[];
|
5906
5965
|
published?: dntShim.Temporal.Instant | null;
|
5907
5966
|
replies?: Collection | URL | null;
|
5967
|
+
emojiReactions?: Collection | URL | null;
|
5908
5968
|
startTime?: dntShim.Temporal.Instant | null;
|
5909
5969
|
summary?: string | LanguageString | null;
|
5910
5970
|
summaries?: ((string | LanguageString))[];
|
@@ -5975,6 +6035,7 @@ export declare class Flag extends Activity {
|
|
5975
6035
|
previews?: (Link | Object | URL)[];
|
5976
6036
|
published?: dntShim.Temporal.Instant | null;
|
5977
6037
|
replies?: Collection | URL | null;
|
6038
|
+
emojiReactions?: Collection | URL | null;
|
5978
6039
|
startTime?: dntShim.Temporal.Instant | null;
|
5979
6040
|
summary?: string | LanguageString | null;
|
5980
6041
|
summaries?: ((string | LanguageString))[];
|
@@ -6092,6 +6153,7 @@ export declare class Follow extends Activity {
|
|
6092
6153
|
previews?: (Link | Object | URL)[];
|
6093
6154
|
published?: dntShim.Temporal.Instant | null;
|
6094
6155
|
replies?: Collection | URL | null;
|
6156
|
+
emojiReactions?: Collection | URL | null;
|
6095
6157
|
startTime?: dntShim.Temporal.Instant | null;
|
6096
6158
|
summary?: string | LanguageString | null;
|
6097
6159
|
summaries?: ((string | LanguageString))[];
|
@@ -6162,6 +6224,7 @@ export declare class Follow extends Activity {
|
|
6162
6224
|
previews?: (Link | Object | URL)[];
|
6163
6225
|
published?: dntShim.Temporal.Instant | null;
|
6164
6226
|
replies?: Collection | URL | null;
|
6227
|
+
emojiReactions?: Collection | URL | null;
|
6165
6228
|
startTime?: dntShim.Temporal.Instant | null;
|
6166
6229
|
summary?: string | LanguageString | null;
|
6167
6230
|
summaries?: ((string | LanguageString))[];
|
@@ -6277,6 +6340,7 @@ export declare class Group extends Object {
|
|
6277
6340
|
previews?: (Link | Object | URL)[];
|
6278
6341
|
published?: dntShim.Temporal.Instant | null;
|
6279
6342
|
replies?: Collection | URL | null;
|
6343
|
+
emojiReactions?: Collection | URL | null;
|
6280
6344
|
startTime?: dntShim.Temporal.Instant | null;
|
6281
6345
|
summary?: string | LanguageString | null;
|
6282
6346
|
summaries?: ((string | LanguageString))[];
|
@@ -6362,6 +6426,7 @@ export declare class Group extends Object {
|
|
6362
6426
|
previews?: (Link | Object | URL)[];
|
6363
6427
|
published?: dntShim.Temporal.Instant | null;
|
6364
6428
|
replies?: Collection | URL | null;
|
6429
|
+
emojiReactions?: Collection | URL | null;
|
6365
6430
|
startTime?: dntShim.Temporal.Instant | null;
|
6366
6431
|
summary?: string | LanguageString | null;
|
6367
6432
|
summaries?: ((string | LanguageString))[];
|
@@ -7092,6 +7157,7 @@ export declare class Image extends Document {
|
|
7092
7157
|
previews?: (Link | Object | URL)[];
|
7093
7158
|
published?: dntShim.Temporal.Instant | null;
|
7094
7159
|
replies?: Collection | URL | null;
|
7160
|
+
emojiReactions?: Collection | URL | null;
|
7095
7161
|
startTime?: dntShim.Temporal.Instant | null;
|
7096
7162
|
summary?: string | LanguageString | null;
|
7097
7163
|
summaries?: ((string | LanguageString))[];
|
@@ -7152,6 +7218,7 @@ export declare class Image extends Document {
|
|
7152
7218
|
previews?: (Link | Object | URL)[];
|
7153
7219
|
published?: dntShim.Temporal.Instant | null;
|
7154
7220
|
replies?: Collection | URL | null;
|
7221
|
+
emojiReactions?: Collection | URL | null;
|
7155
7222
|
startTime?: dntShim.Temporal.Instant | null;
|
7156
7223
|
summary?: string | LanguageString | null;
|
7157
7224
|
summaries?: ((string | LanguageString))[];
|
@@ -7258,6 +7325,7 @@ export declare class Offer extends Activity {
|
|
7258
7325
|
previews?: (Link | Object | URL)[];
|
7259
7326
|
published?: dntShim.Temporal.Instant | null;
|
7260
7327
|
replies?: Collection | URL | null;
|
7328
|
+
emojiReactions?: Collection | URL | null;
|
7261
7329
|
startTime?: dntShim.Temporal.Instant | null;
|
7262
7330
|
summary?: string | LanguageString | null;
|
7263
7331
|
summaries?: ((string | LanguageString))[];
|
@@ -7328,6 +7396,7 @@ export declare class Offer extends Activity {
|
|
7328
7396
|
previews?: (Link | Object | URL)[];
|
7329
7397
|
published?: dntShim.Temporal.Instant | null;
|
7330
7398
|
replies?: Collection | URL | null;
|
7399
|
+
emojiReactions?: Collection | URL | null;
|
7331
7400
|
startTime?: dntShim.Temporal.Instant | null;
|
7332
7401
|
summary?: string | LanguageString | null;
|
7333
7402
|
summaries?: ((string | LanguageString))[];
|
@@ -7443,6 +7512,7 @@ export declare class Invite extends Offer {
|
|
7443
7512
|
previews?: (Link | Object | URL)[];
|
7444
7513
|
published?: dntShim.Temporal.Instant | null;
|
7445
7514
|
replies?: Collection | URL | null;
|
7515
|
+
emojiReactions?: Collection | URL | null;
|
7446
7516
|
startTime?: dntShim.Temporal.Instant | null;
|
7447
7517
|
summary?: string | LanguageString | null;
|
7448
7518
|
summaries?: ((string | LanguageString))[];
|
@@ -7513,6 +7583,7 @@ export declare class Invite extends Offer {
|
|
7513
7583
|
previews?: (Link | Object | URL)[];
|
7514
7584
|
published?: dntShim.Temporal.Instant | null;
|
7515
7585
|
replies?: Collection | URL | null;
|
7586
|
+
emojiReactions?: Collection | URL | null;
|
7516
7587
|
startTime?: dntShim.Temporal.Instant | null;
|
7517
7588
|
summary?: string | LanguageString | null;
|
7518
7589
|
summaries?: ((string | LanguageString))[];
|
@@ -7628,6 +7699,7 @@ export declare class Join extends Activity {
|
|
7628
7699
|
previews?: (Link | Object | URL)[];
|
7629
7700
|
published?: dntShim.Temporal.Instant | null;
|
7630
7701
|
replies?: Collection | URL | null;
|
7702
|
+
emojiReactions?: Collection | URL | null;
|
7631
7703
|
startTime?: dntShim.Temporal.Instant | null;
|
7632
7704
|
summary?: string | LanguageString | null;
|
7633
7705
|
summaries?: ((string | LanguageString))[];
|
@@ -7698,6 +7770,7 @@ export declare class Join extends Activity {
|
|
7698
7770
|
previews?: (Link | Object | URL)[];
|
7699
7771
|
published?: dntShim.Temporal.Instant | null;
|
7700
7772
|
replies?: Collection | URL | null;
|
7773
|
+
emojiReactions?: Collection | URL | null;
|
7701
7774
|
startTime?: dntShim.Temporal.Instant | null;
|
7702
7775
|
summary?: string | LanguageString | null;
|
7703
7776
|
summaries?: ((string | LanguageString))[];
|
@@ -7813,6 +7886,7 @@ export declare class Leave extends Activity {
|
|
7813
7886
|
previews?: (Link | Object | URL)[];
|
7814
7887
|
published?: dntShim.Temporal.Instant | null;
|
7815
7888
|
replies?: Collection | URL | null;
|
7889
|
+
emojiReactions?: Collection | URL | null;
|
7816
7890
|
startTime?: dntShim.Temporal.Instant | null;
|
7817
7891
|
summary?: string | LanguageString | null;
|
7818
7892
|
summaries?: ((string | LanguageString))[];
|
@@ -7883,6 +7957,7 @@ export declare class Leave extends Activity {
|
|
7883
7957
|
previews?: (Link | Object | URL)[];
|
7884
7958
|
published?: dntShim.Temporal.Instant | null;
|
7885
7959
|
replies?: Collection | URL | null;
|
7960
|
+
emojiReactions?: Collection | URL | null;
|
7886
7961
|
startTime?: dntShim.Temporal.Instant | null;
|
7887
7962
|
summary?: string | LanguageString | null;
|
7888
7963
|
summaries?: ((string | LanguageString))[];
|
@@ -7998,6 +8073,7 @@ export declare class Like extends Activity {
|
|
7998
8073
|
previews?: (Link | Object | URL)[];
|
7999
8074
|
published?: dntShim.Temporal.Instant | null;
|
8000
8075
|
replies?: Collection | URL | null;
|
8076
|
+
emojiReactions?: Collection | URL | null;
|
8001
8077
|
startTime?: dntShim.Temporal.Instant | null;
|
8002
8078
|
summary?: string | LanguageString | null;
|
8003
8079
|
summaries?: ((string | LanguageString))[];
|
@@ -8068,6 +8144,7 @@ export declare class Like extends Activity {
|
|
8068
8144
|
previews?: (Link | Object | URL)[];
|
8069
8145
|
published?: dntShim.Temporal.Instant | null;
|
8070
8146
|
replies?: Collection | URL | null;
|
8147
|
+
emojiReactions?: Collection | URL | null;
|
8071
8148
|
startTime?: dntShim.Temporal.Instant | null;
|
8072
8149
|
summary?: string | LanguageString | null;
|
8073
8150
|
summaries?: ((string | LanguageString))[];
|
@@ -8182,6 +8259,7 @@ export declare class Listen extends Activity {
|
|
8182
8259
|
previews?: (Link | Object | URL)[];
|
8183
8260
|
published?: dntShim.Temporal.Instant | null;
|
8184
8261
|
replies?: Collection | URL | null;
|
8262
|
+
emojiReactions?: Collection | URL | null;
|
8185
8263
|
startTime?: dntShim.Temporal.Instant | null;
|
8186
8264
|
summary?: string | LanguageString | null;
|
8187
8265
|
summaries?: ((string | LanguageString))[];
|
@@ -8252,6 +8330,7 @@ export declare class Listen extends Activity {
|
|
8252
8330
|
previews?: (Link | Object | URL)[];
|
8253
8331
|
published?: dntShim.Temporal.Instant | null;
|
8254
8332
|
replies?: Collection | URL | null;
|
8333
|
+
emojiReactions?: Collection | URL | null;
|
8255
8334
|
startTime?: dntShim.Temporal.Instant | null;
|
8256
8335
|
summary?: string | LanguageString | null;
|
8257
8336
|
summaries?: ((string | LanguageString))[];
|
@@ -8458,6 +8537,7 @@ export declare class Move extends Activity {
|
|
8458
8537
|
previews?: (Link | Object | URL)[];
|
8459
8538
|
published?: dntShim.Temporal.Instant | null;
|
8460
8539
|
replies?: Collection | URL | null;
|
8540
|
+
emojiReactions?: Collection | URL | null;
|
8461
8541
|
startTime?: dntShim.Temporal.Instant | null;
|
8462
8542
|
summary?: string | LanguageString | null;
|
8463
8543
|
summaries?: ((string | LanguageString))[];
|
@@ -8528,6 +8608,7 @@ export declare class Move extends Activity {
|
|
8528
8608
|
previews?: (Link | Object | URL)[];
|
8529
8609
|
published?: dntShim.Temporal.Instant | null;
|
8530
8610
|
replies?: Collection | URL | null;
|
8611
|
+
emojiReactions?: Collection | URL | null;
|
8531
8612
|
startTime?: dntShim.Temporal.Instant | null;
|
8532
8613
|
summary?: string | LanguageString | null;
|
8533
8614
|
summaries?: ((string | LanguageString))[];
|
@@ -8644,6 +8725,7 @@ export declare class Note extends Object {
|
|
8644
8725
|
previews?: (Link | Object | URL)[];
|
8645
8726
|
published?: dntShim.Temporal.Instant | null;
|
8646
8727
|
replies?: Collection | URL | null;
|
8728
|
+
emojiReactions?: Collection | URL | null;
|
8647
8729
|
startTime?: dntShim.Temporal.Instant | null;
|
8648
8730
|
summary?: string | LanguageString | null;
|
8649
8731
|
summaries?: ((string | LanguageString))[];
|
@@ -8703,6 +8785,7 @@ export declare class Note extends Object {
|
|
8703
8785
|
previews?: (Link | Object | URL)[];
|
8704
8786
|
published?: dntShim.Temporal.Instant | null;
|
8705
8787
|
replies?: Collection | URL | null;
|
8788
|
+
emojiReactions?: Collection | URL | null;
|
8706
8789
|
startTime?: dntShim.Temporal.Instant | null;
|
8707
8790
|
summary?: string | LanguageString | null;
|
8708
8791
|
summaries?: ((string | LanguageString))[];
|
@@ -8820,6 +8903,7 @@ export declare class OrderedCollection extends Collection {
|
|
8820
8903
|
previews?: (Link | Object | URL)[];
|
8821
8904
|
published?: dntShim.Temporal.Instant | null;
|
8822
8905
|
replies?: Collection | URL | null;
|
8906
|
+
emojiReactions?: Collection | URL | null;
|
8823
8907
|
startTime?: dntShim.Temporal.Instant | null;
|
8824
8908
|
summary?: string | LanguageString | null;
|
8825
8909
|
summaries?: ((string | LanguageString))[];
|
@@ -8883,6 +8967,7 @@ export declare class OrderedCollection extends Collection {
|
|
8883
8967
|
previews?: (Link | Object | URL)[];
|
8884
8968
|
published?: dntShim.Temporal.Instant | null;
|
8885
8969
|
replies?: Collection | URL | null;
|
8970
|
+
emojiReactions?: Collection | URL | null;
|
8886
8971
|
startTime?: dntShim.Temporal.Instant | null;
|
8887
8972
|
summary?: string | LanguageString | null;
|
8888
8973
|
summaries?: ((string | LanguageString))[];
|
@@ -9008,6 +9093,7 @@ export declare class OrderedCollectionPage extends CollectionPage {
|
|
9008
9093
|
previews?: (Link | Object | URL)[];
|
9009
9094
|
published?: dntShim.Temporal.Instant | null;
|
9010
9095
|
replies?: Collection | URL | null;
|
9096
|
+
emojiReactions?: Collection | URL | null;
|
9011
9097
|
startTime?: dntShim.Temporal.Instant | null;
|
9012
9098
|
summary?: string | LanguageString | null;
|
9013
9099
|
summaries?: ((string | LanguageString))[];
|
@@ -9075,6 +9161,7 @@ export declare class OrderedCollectionPage extends CollectionPage {
|
|
9075
9161
|
previews?: (Link | Object | URL)[];
|
9076
9162
|
published?: dntShim.Temporal.Instant | null;
|
9077
9163
|
replies?: Collection | URL | null;
|
9164
|
+
emojiReactions?: Collection | URL | null;
|
9078
9165
|
startTime?: dntShim.Temporal.Instant | null;
|
9079
9166
|
summary?: string | LanguageString | null;
|
9080
9167
|
summaries?: ((string | LanguageString))[];
|
@@ -9206,6 +9293,7 @@ export declare class Organization extends Object {
|
|
9206
9293
|
previews?: (Link | Object | URL)[];
|
9207
9294
|
published?: dntShim.Temporal.Instant | null;
|
9208
9295
|
replies?: Collection | URL | null;
|
9296
|
+
emojiReactions?: Collection | URL | null;
|
9209
9297
|
startTime?: dntShim.Temporal.Instant | null;
|
9210
9298
|
summary?: string | LanguageString | null;
|
9211
9299
|
summaries?: ((string | LanguageString))[];
|
@@ -9291,6 +9379,7 @@ export declare class Organization extends Object {
|
|
9291
9379
|
previews?: (Link | Object | URL)[];
|
9292
9380
|
published?: dntShim.Temporal.Instant | null;
|
9293
9381
|
replies?: Collection | URL | null;
|
9382
|
+
emojiReactions?: Collection | URL | null;
|
9294
9383
|
startTime?: dntShim.Temporal.Instant | null;
|
9295
9384
|
summary?: string | LanguageString | null;
|
9296
9385
|
summaries?: ((string | LanguageString))[];
|
@@ -9766,6 +9855,7 @@ export declare class Page extends Document {
|
|
9766
9855
|
previews?: (Link | Object | URL)[];
|
9767
9856
|
published?: dntShim.Temporal.Instant | null;
|
9768
9857
|
replies?: Collection | URL | null;
|
9858
|
+
emojiReactions?: Collection | URL | null;
|
9769
9859
|
startTime?: dntShim.Temporal.Instant | null;
|
9770
9860
|
summary?: string | LanguageString | null;
|
9771
9861
|
summaries?: ((string | LanguageString))[];
|
@@ -9826,6 +9916,7 @@ export declare class Page extends Document {
|
|
9826
9916
|
previews?: (Link | Object | URL)[];
|
9827
9917
|
published?: dntShim.Temporal.Instant | null;
|
9828
9918
|
replies?: Collection | URL | null;
|
9919
|
+
emojiReactions?: Collection | URL | null;
|
9829
9920
|
startTime?: dntShim.Temporal.Instant | null;
|
9830
9921
|
summary?: string | LanguageString | null;
|
9831
9922
|
summaries?: ((string | LanguageString))[];
|
@@ -9931,6 +10022,7 @@ export declare class Person extends Object {
|
|
9931
10022
|
previews?: (Link | Object | URL)[];
|
9932
10023
|
published?: dntShim.Temporal.Instant | null;
|
9933
10024
|
replies?: Collection | URL | null;
|
10025
|
+
emojiReactions?: Collection | URL | null;
|
9934
10026
|
startTime?: dntShim.Temporal.Instant | null;
|
9935
10027
|
summary?: string | LanguageString | null;
|
9936
10028
|
summaries?: ((string | LanguageString))[];
|
@@ -10016,6 +10108,7 @@ export declare class Person extends Object {
|
|
10016
10108
|
previews?: (Link | Object | URL)[];
|
10017
10109
|
published?: dntShim.Temporal.Instant | null;
|
10018
10110
|
replies?: Collection | URL | null;
|
10111
|
+
emojiReactions?: Collection | URL | null;
|
10019
10112
|
startTime?: dntShim.Temporal.Instant | null;
|
10020
10113
|
summary?: string | LanguageString | null;
|
10021
10114
|
summaries?: ((string | LanguageString))[];
|
@@ -10494,6 +10587,7 @@ export declare class Place extends Object {
|
|
10494
10587
|
previews?: (Link | Object | URL)[];
|
10495
10588
|
published?: dntShim.Temporal.Instant | null;
|
10496
10589
|
replies?: Collection | URL | null;
|
10590
|
+
emojiReactions?: Collection | URL | null;
|
10497
10591
|
startTime?: dntShim.Temporal.Instant | null;
|
10498
10592
|
summary?: string | LanguageString | null;
|
10499
10593
|
summaries?: ((string | LanguageString))[];
|
@@ -10558,6 +10652,7 @@ export declare class Place extends Object {
|
|
10558
10652
|
previews?: (Link | Object | URL)[];
|
10559
10653
|
published?: dntShim.Temporal.Instant | null;
|
10560
10654
|
replies?: Collection | URL | null;
|
10655
|
+
emojiReactions?: Collection | URL | null;
|
10561
10656
|
startTime?: dntShim.Temporal.Instant | null;
|
10562
10657
|
summary?: string | LanguageString | null;
|
10563
10658
|
summaries?: ((string | LanguageString))[];
|
@@ -10697,6 +10792,7 @@ export declare class Profile extends Object {
|
|
10697
10792
|
previews?: (Link | Object | URL)[];
|
10698
10793
|
published?: dntShim.Temporal.Instant | null;
|
10699
10794
|
replies?: Collection | URL | null;
|
10795
|
+
emojiReactions?: Collection | URL | null;
|
10700
10796
|
startTime?: dntShim.Temporal.Instant | null;
|
10701
10797
|
summary?: string | LanguageString | null;
|
10702
10798
|
summaries?: ((string | LanguageString))[];
|
@@ -10756,6 +10852,7 @@ export declare class Profile extends Object {
|
|
10756
10852
|
previews?: (Link | Object | URL)[];
|
10757
10853
|
published?: dntShim.Temporal.Instant | null;
|
10758
10854
|
replies?: Collection | URL | null;
|
10855
|
+
emojiReactions?: Collection | URL | null;
|
10759
10856
|
startTime?: dntShim.Temporal.Instant | null;
|
10760
10857
|
summary?: string | LanguageString | null;
|
10761
10858
|
summaries?: ((string | LanguageString))[];
|
@@ -10882,6 +10979,7 @@ export declare class Question extends IntransitiveActivity {
|
|
10882
10979
|
previews?: (Link | Object | URL)[];
|
10883
10980
|
published?: dntShim.Temporal.Instant | null;
|
10884
10981
|
replies?: Collection | URL | null;
|
10982
|
+
emojiReactions?: Collection | URL | null;
|
10885
10983
|
startTime?: dntShim.Temporal.Instant | null;
|
10886
10984
|
summary?: string | LanguageString | null;
|
10887
10985
|
summaries?: ((string | LanguageString))[];
|
@@ -10957,6 +11055,7 @@ export declare class Question extends IntransitiveActivity {
|
|
10957
11055
|
previews?: (Link | Object | URL)[];
|
10958
11056
|
published?: dntShim.Temporal.Instant | null;
|
10959
11057
|
replies?: Collection | URL | null;
|
11058
|
+
emojiReactions?: Collection | URL | null;
|
10960
11059
|
startTime?: dntShim.Temporal.Instant | null;
|
10961
11060
|
summary?: string | LanguageString | null;
|
10962
11061
|
summaries?: ((string | LanguageString))[];
|
@@ -11128,6 +11227,7 @@ export declare class Read extends Activity {
|
|
11128
11227
|
previews?: (Link | Object | URL)[];
|
11129
11228
|
published?: dntShim.Temporal.Instant | null;
|
11130
11229
|
replies?: Collection | URL | null;
|
11230
|
+
emojiReactions?: Collection | URL | null;
|
11131
11231
|
startTime?: dntShim.Temporal.Instant | null;
|
11132
11232
|
summary?: string | LanguageString | null;
|
11133
11233
|
summaries?: ((string | LanguageString))[];
|
@@ -11198,6 +11298,7 @@ export declare class Read extends Activity {
|
|
11198
11298
|
previews?: (Link | Object | URL)[];
|
11199
11299
|
published?: dntShim.Temporal.Instant | null;
|
11200
11300
|
replies?: Collection | URL | null;
|
11301
|
+
emojiReactions?: Collection | URL | null;
|
11201
11302
|
startTime?: dntShim.Temporal.Instant | null;
|
11202
11303
|
summary?: string | LanguageString | null;
|
11203
11304
|
summaries?: ((string | LanguageString))[];
|
@@ -11313,6 +11414,7 @@ export declare class Reject extends Activity {
|
|
11313
11414
|
previews?: (Link | Object | URL)[];
|
11314
11415
|
published?: dntShim.Temporal.Instant | null;
|
11315
11416
|
replies?: Collection | URL | null;
|
11417
|
+
emojiReactions?: Collection | URL | null;
|
11316
11418
|
startTime?: dntShim.Temporal.Instant | null;
|
11317
11419
|
summary?: string | LanguageString | null;
|
11318
11420
|
summaries?: ((string | LanguageString))[];
|
@@ -11383,6 +11485,7 @@ export declare class Reject extends Activity {
|
|
11383
11485
|
previews?: (Link | Object | URL)[];
|
11384
11486
|
published?: dntShim.Temporal.Instant | null;
|
11385
11487
|
replies?: Collection | URL | null;
|
11488
|
+
emojiReactions?: Collection | URL | null;
|
11386
11489
|
startTime?: dntShim.Temporal.Instant | null;
|
11387
11490
|
summary?: string | LanguageString | null;
|
11388
11491
|
summaries?: ((string | LanguageString))[];
|
@@ -11504,6 +11607,7 @@ export declare class Relationship extends Object {
|
|
11504
11607
|
previews?: (Link | Object | URL)[];
|
11505
11608
|
published?: dntShim.Temporal.Instant | null;
|
11506
11609
|
replies?: Collection | URL | null;
|
11610
|
+
emojiReactions?: Collection | URL | null;
|
11507
11611
|
startTime?: dntShim.Temporal.Instant | null;
|
11508
11612
|
summary?: string | LanguageString | null;
|
11509
11613
|
summaries?: ((string | LanguageString))[];
|
@@ -11567,6 +11671,7 @@ export declare class Relationship extends Object {
|
|
11567
11671
|
previews?: (Link | Object | URL)[];
|
11568
11672
|
published?: dntShim.Temporal.Instant | null;
|
11569
11673
|
replies?: Collection | URL | null;
|
11674
|
+
emojiReactions?: Collection | URL | null;
|
11570
11675
|
startTime?: dntShim.Temporal.Instant | null;
|
11571
11676
|
summary?: string | LanguageString | null;
|
11572
11677
|
summaries?: ((string | LanguageString))[];
|
@@ -11752,6 +11857,7 @@ export declare class Remove extends Activity {
|
|
11752
11857
|
previews?: (Link | Object | URL)[];
|
11753
11858
|
published?: dntShim.Temporal.Instant | null;
|
11754
11859
|
replies?: Collection | URL | null;
|
11860
|
+
emojiReactions?: Collection | URL | null;
|
11755
11861
|
startTime?: dntShim.Temporal.Instant | null;
|
11756
11862
|
summary?: string | LanguageString | null;
|
11757
11863
|
summaries?: ((string | LanguageString))[];
|
@@ -11822,6 +11928,7 @@ export declare class Remove extends Activity {
|
|
11822
11928
|
previews?: (Link | Object | URL)[];
|
11823
11929
|
published?: dntShim.Temporal.Instant | null;
|
11824
11930
|
replies?: Collection | URL | null;
|
11931
|
+
emojiReactions?: Collection | URL | null;
|
11825
11932
|
startTime?: dntShim.Temporal.Instant | null;
|
11826
11933
|
summary?: string | LanguageString | null;
|
11827
11934
|
summaries?: ((string | LanguageString))[];
|
@@ -11937,6 +12044,7 @@ export declare class Service extends Object {
|
|
11937
12044
|
previews?: (Link | Object | URL)[];
|
11938
12045
|
published?: dntShim.Temporal.Instant | null;
|
11939
12046
|
replies?: Collection | URL | null;
|
12047
|
+
emojiReactions?: Collection | URL | null;
|
11940
12048
|
startTime?: dntShim.Temporal.Instant | null;
|
11941
12049
|
summary?: string | LanguageString | null;
|
11942
12050
|
summaries?: ((string | LanguageString))[];
|
@@ -12022,6 +12130,7 @@ export declare class Service extends Object {
|
|
12022
12130
|
previews?: (Link | Object | URL)[];
|
12023
12131
|
published?: dntShim.Temporal.Instant | null;
|
12024
12132
|
replies?: Collection | URL | null;
|
12133
|
+
emojiReactions?: Collection | URL | null;
|
12025
12134
|
startTime?: dntShim.Temporal.Instant | null;
|
12026
12135
|
summary?: string | LanguageString | null;
|
12027
12136
|
summaries?: ((string | LanguageString))[];
|
@@ -12590,6 +12699,7 @@ export declare class TentativeAccept extends Accept {
|
|
12590
12699
|
previews?: (Link | Object | URL)[];
|
12591
12700
|
published?: dntShim.Temporal.Instant | null;
|
12592
12701
|
replies?: Collection | URL | null;
|
12702
|
+
emojiReactions?: Collection | URL | null;
|
12593
12703
|
startTime?: dntShim.Temporal.Instant | null;
|
12594
12704
|
summary?: string | LanguageString | null;
|
12595
12705
|
summaries?: ((string | LanguageString))[];
|
@@ -12660,6 +12770,7 @@ export declare class TentativeAccept extends Accept {
|
|
12660
12770
|
previews?: (Link | Object | URL)[];
|
12661
12771
|
published?: dntShim.Temporal.Instant | null;
|
12662
12772
|
replies?: Collection | URL | null;
|
12773
|
+
emojiReactions?: Collection | URL | null;
|
12663
12774
|
startTime?: dntShim.Temporal.Instant | null;
|
12664
12775
|
summary?: string | LanguageString | null;
|
12665
12776
|
summaries?: ((string | LanguageString))[];
|
@@ -12775,6 +12886,7 @@ export declare class TentativeReject extends Reject {
|
|
12775
12886
|
previews?: (Link | Object | URL)[];
|
12776
12887
|
published?: dntShim.Temporal.Instant | null;
|
12777
12888
|
replies?: Collection | URL | null;
|
12889
|
+
emojiReactions?: Collection | URL | null;
|
12778
12890
|
startTime?: dntShim.Temporal.Instant | null;
|
12779
12891
|
summary?: string | LanguageString | null;
|
12780
12892
|
summaries?: ((string | LanguageString))[];
|
@@ -12845,6 +12957,7 @@ export declare class TentativeReject extends Reject {
|
|
12845
12957
|
previews?: (Link | Object | URL)[];
|
12846
12958
|
published?: dntShim.Temporal.Instant | null;
|
12847
12959
|
replies?: Collection | URL | null;
|
12960
|
+
emojiReactions?: Collection | URL | null;
|
12848
12961
|
startTime?: dntShim.Temporal.Instant | null;
|
12849
12962
|
summary?: string | LanguageString | null;
|
12850
12963
|
summaries?: ((string | LanguageString))[];
|
@@ -12962,6 +13075,7 @@ export declare class Tombstone extends Object {
|
|
12962
13075
|
previews?: (Link | Object | URL)[];
|
12963
13076
|
published?: dntShim.Temporal.Instant | null;
|
12964
13077
|
replies?: Collection | URL | null;
|
13078
|
+
emojiReactions?: Collection | URL | null;
|
12965
13079
|
startTime?: dntShim.Temporal.Instant | null;
|
12966
13080
|
summary?: string | LanguageString | null;
|
12967
13081
|
summaries?: ((string | LanguageString))[];
|
@@ -13021,6 +13135,7 @@ export declare class Tombstone extends Object {
|
|
13021
13135
|
previews?: (Link | Object | URL)[];
|
13022
13136
|
published?: dntShim.Temporal.Instant | null;
|
13023
13137
|
replies?: Collection | URL | null;
|
13138
|
+
emojiReactions?: Collection | URL | null;
|
13024
13139
|
startTime?: dntShim.Temporal.Instant | null;
|
13025
13140
|
summary?: string | LanguageString | null;
|
13026
13141
|
summaries?: ((string | LanguageString))[];
|
@@ -13131,6 +13246,7 @@ export declare class Travel extends IntransitiveActivity {
|
|
13131
13246
|
previews?: (Link | Object | URL)[];
|
13132
13247
|
published?: dntShim.Temporal.Instant | null;
|
13133
13248
|
replies?: Collection | URL | null;
|
13249
|
+
emojiReactions?: Collection | URL | null;
|
13134
13250
|
startTime?: dntShim.Temporal.Instant | null;
|
13135
13251
|
summary?: string | LanguageString | null;
|
13136
13252
|
summaries?: ((string | LanguageString))[];
|
@@ -13201,6 +13317,7 @@ export declare class Travel extends IntransitiveActivity {
|
|
13201
13317
|
previews?: (Link | Object | URL)[];
|
13202
13318
|
published?: dntShim.Temporal.Instant | null;
|
13203
13319
|
replies?: Collection | URL | null;
|
13320
|
+
emojiReactions?: Collection | URL | null;
|
13204
13321
|
startTime?: dntShim.Temporal.Instant | null;
|
13205
13322
|
summary?: string | LanguageString | null;
|
13206
13323
|
summaries?: ((string | LanguageString))[];
|
@@ -13321,6 +13438,7 @@ export declare class Undo extends Activity {
|
|
13321
13438
|
previews?: (Link | Object | URL)[];
|
13322
13439
|
published?: dntShim.Temporal.Instant | null;
|
13323
13440
|
replies?: Collection | URL | null;
|
13441
|
+
emojiReactions?: Collection | URL | null;
|
13324
13442
|
startTime?: dntShim.Temporal.Instant | null;
|
13325
13443
|
summary?: string | LanguageString | null;
|
13326
13444
|
summaries?: ((string | LanguageString))[];
|
@@ -13391,6 +13509,7 @@ export declare class Undo extends Activity {
|
|
13391
13509
|
previews?: (Link | Object | URL)[];
|
13392
13510
|
published?: dntShim.Temporal.Instant | null;
|
13393
13511
|
replies?: Collection | URL | null;
|
13512
|
+
emojiReactions?: Collection | URL | null;
|
13394
13513
|
startTime?: dntShim.Temporal.Instant | null;
|
13395
13514
|
summary?: string | LanguageString | null;
|
13396
13515
|
summaries?: ((string | LanguageString))[];
|
@@ -13509,6 +13628,7 @@ export declare class Update extends Activity {
|
|
13509
13628
|
previews?: (Link | Object | URL)[];
|
13510
13629
|
published?: dntShim.Temporal.Instant | null;
|
13511
13630
|
replies?: Collection | URL | null;
|
13631
|
+
emojiReactions?: Collection | URL | null;
|
13512
13632
|
startTime?: dntShim.Temporal.Instant | null;
|
13513
13633
|
summary?: string | LanguageString | null;
|
13514
13634
|
summaries?: ((string | LanguageString))[];
|
@@ -13579,6 +13699,7 @@ export declare class Update extends Activity {
|
|
13579
13699
|
previews?: (Link | Object | URL)[];
|
13580
13700
|
published?: dntShim.Temporal.Instant | null;
|
13581
13701
|
replies?: Collection | URL | null;
|
13702
|
+
emojiReactions?: Collection | URL | null;
|
13582
13703
|
startTime?: dntShim.Temporal.Instant | null;
|
13583
13704
|
summary?: string | LanguageString | null;
|
13584
13705
|
summaries?: ((string | LanguageString))[];
|
@@ -13693,6 +13814,7 @@ export declare class Video extends Document {
|
|
13693
13814
|
previews?: (Link | Object | URL)[];
|
13694
13815
|
published?: dntShim.Temporal.Instant | null;
|
13695
13816
|
replies?: Collection | URL | null;
|
13817
|
+
emojiReactions?: Collection | URL | null;
|
13696
13818
|
startTime?: dntShim.Temporal.Instant | null;
|
13697
13819
|
summary?: string | LanguageString | null;
|
13698
13820
|
summaries?: ((string | LanguageString))[];
|
@@ -13753,6 +13875,7 @@ export declare class Video extends Document {
|
|
13753
13875
|
previews?: (Link | Object | URL)[];
|
13754
13876
|
published?: dntShim.Temporal.Instant | null;
|
13755
13877
|
replies?: Collection | URL | null;
|
13878
|
+
emojiReactions?: Collection | URL | null;
|
13756
13879
|
startTime?: dntShim.Temporal.Instant | null;
|
13757
13880
|
summary?: string | LanguageString | null;
|
13758
13881
|
summaries?: ((string | LanguageString))[];
|
@@ -13857,6 +13980,7 @@ export declare class View extends Activity {
|
|
13857
13980
|
previews?: (Link | Object | URL)[];
|
13858
13981
|
published?: dntShim.Temporal.Instant | null;
|
13859
13982
|
replies?: Collection | URL | null;
|
13983
|
+
emojiReactions?: Collection | URL | null;
|
13860
13984
|
startTime?: dntShim.Temporal.Instant | null;
|
13861
13985
|
summary?: string | LanguageString | null;
|
13862
13986
|
summaries?: ((string | LanguageString))[];
|
@@ -13927,6 +14051,7 @@ export declare class View extends Activity {
|
|
13927
14051
|
previews?: (Link | Object | URL)[];
|
13928
14052
|
published?: dntShim.Temporal.Instant | null;
|
13929
14053
|
replies?: Collection | URL | null;
|
14054
|
+
emojiReactions?: Collection | URL | null;
|
13930
14055
|
startTime?: dntShim.Temporal.Instant | null;
|
13931
14056
|
summary?: string | LanguageString | null;
|
13932
14057
|
summaries?: ((string | LanguageString))[];
|