@fedify/fedify 0.11.0-dev.236 → 0.11.0-dev.238
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGES.md +8 -1
- package/esm/federation/middleware.js +66 -1
- package/esm/vocab/vocab.js +1117 -76
- package/package.json +1 -1
- package/types/federation/context.d.ts +16 -0
- package/types/federation/context.d.ts.map +1 -1
- package/types/federation/middleware.d.ts +14 -1
- package/types/federation/middleware.d.ts.map +1 -1
- package/types/testing/context.d.ts.map +1 -1
- package/types/vocab/vocab.d.ts +102 -0
- package/types/vocab/vocab.d.ts.map +1 -1
package/types/vocab/vocab.d.ts
CHANGED
@@ -142,6 +142,7 @@ export declare class Object {
|
|
142
142
|
getAttachments(options?: {
|
143
143
|
documentLoader?: DocumentLoader;
|
144
144
|
contextLoader?: DocumentLoader;
|
145
|
+
suppressError?: boolean;
|
145
146
|
}): AsyncIterable<Object | Link | PropertyValue>;
|
146
147
|
/**
|
147
148
|
* Similar to
|
@@ -156,6 +157,7 @@ export declare class Object {
|
|
156
157
|
getAttribution(options?: {
|
157
158
|
documentLoader?: DocumentLoader;
|
158
159
|
contextLoader?: DocumentLoader;
|
160
|
+
suppressError?: boolean;
|
159
161
|
}): Promise<Application | Group | Organization | Person | Service | null>;
|
160
162
|
/**
|
161
163
|
* Similar to
|
@@ -170,6 +172,7 @@ export declare class Object {
|
|
170
172
|
getAttributions(options?: {
|
171
173
|
documentLoader?: DocumentLoader;
|
172
174
|
contextLoader?: DocumentLoader;
|
175
|
+
suppressError?: boolean;
|
173
176
|
}): AsyncIterable<Application | Group | Organization | Person | Service>;
|
174
177
|
/**
|
175
178
|
* Similar to
|
@@ -183,6 +186,7 @@ export declare class Object {
|
|
183
186
|
getAudience(options?: {
|
184
187
|
documentLoader?: DocumentLoader;
|
185
188
|
contextLoader?: DocumentLoader;
|
189
|
+
suppressError?: boolean;
|
186
190
|
}): Promise<Object | null>;
|
187
191
|
/**
|
188
192
|
* Similar to
|
@@ -196,6 +200,7 @@ export declare class Object {
|
|
196
200
|
getAudiences(options?: {
|
197
201
|
documentLoader?: DocumentLoader;
|
198
202
|
contextLoader?: DocumentLoader;
|
203
|
+
suppressError?: boolean;
|
199
204
|
}): AsyncIterable<Object>;
|
200
205
|
/** The content or textual representation of the Object encoded as a JSON
|
201
206
|
* string. By default, the value of `content` is HTML. The `mediaType`
|
@@ -228,6 +233,7 @@ export declare class Object {
|
|
228
233
|
getContexts(options?: {
|
229
234
|
documentLoader?: DocumentLoader;
|
230
235
|
contextLoader?: DocumentLoader;
|
236
|
+
suppressError?: boolean;
|
231
237
|
}): AsyncIterable<Object | Link>;
|
232
238
|
/** A simple, human-readable, plain-text name for the object. HTML markup MUST
|
233
239
|
* NOT be included. The name MAY be expressed using multiple language-tagged
|
@@ -256,6 +262,7 @@ export declare class Object {
|
|
256
262
|
getGenerators(options?: {
|
257
263
|
documentLoader?: DocumentLoader;
|
258
264
|
contextLoader?: DocumentLoader;
|
265
|
+
suppressError?: boolean;
|
259
266
|
}): AsyncIterable<Object | Link>;
|
260
267
|
/**
|
261
268
|
* Similar to
|
@@ -270,6 +277,7 @@ export declare class Object {
|
|
270
277
|
getIcon(options?: {
|
271
278
|
documentLoader?: DocumentLoader;
|
272
279
|
contextLoader?: DocumentLoader;
|
280
|
+
suppressError?: boolean;
|
273
281
|
}): Promise<Image | null>;
|
274
282
|
/**
|
275
283
|
* Similar to
|
@@ -284,6 +292,7 @@ export declare class Object {
|
|
284
292
|
getIcons(options?: {
|
285
293
|
documentLoader?: DocumentLoader;
|
286
294
|
contextLoader?: DocumentLoader;
|
295
|
+
suppressError?: boolean;
|
287
296
|
}): AsyncIterable<Image>;
|
288
297
|
/**
|
289
298
|
* Similar to
|
@@ -298,6 +307,7 @@ export declare class Object {
|
|
298
307
|
getImage(options?: {
|
299
308
|
documentLoader?: DocumentLoader;
|
300
309
|
contextLoader?: DocumentLoader;
|
310
|
+
suppressError?: boolean;
|
301
311
|
}): Promise<Image | null>;
|
302
312
|
/**
|
303
313
|
* Similar to
|
@@ -312,6 +322,7 @@ export declare class Object {
|
|
312
322
|
getImages(options?: {
|
313
323
|
documentLoader?: DocumentLoader;
|
314
324
|
contextLoader?: DocumentLoader;
|
325
|
+
suppressError?: boolean;
|
315
326
|
}): AsyncIterable<Image>;
|
316
327
|
/**
|
317
328
|
* Similar to
|
@@ -325,6 +336,7 @@ export declare class Object {
|
|
325
336
|
getReplyTarget(options?: {
|
326
337
|
documentLoader?: DocumentLoader;
|
327
338
|
contextLoader?: DocumentLoader;
|
339
|
+
suppressError?: boolean;
|
328
340
|
}): Promise<Object | Link | null>;
|
329
341
|
/**
|
330
342
|
* Similar to
|
@@ -338,6 +350,7 @@ export declare class Object {
|
|
338
350
|
getReplyTargets(options?: {
|
339
351
|
documentLoader?: DocumentLoader;
|
340
352
|
contextLoader?: DocumentLoader;
|
353
|
+
suppressError?: boolean;
|
341
354
|
}): AsyncIterable<Object | Link>;
|
342
355
|
/**
|
343
356
|
* Similar to
|
@@ -351,6 +364,7 @@ export declare class Object {
|
|
351
364
|
getLocation(options?: {
|
352
365
|
documentLoader?: DocumentLoader;
|
353
366
|
contextLoader?: DocumentLoader;
|
367
|
+
suppressError?: boolean;
|
354
368
|
}): Promise<Object | Link | null>;
|
355
369
|
/**
|
356
370
|
* Similar to
|
@@ -364,6 +378,7 @@ export declare class Object {
|
|
364
378
|
getLocations(options?: {
|
365
379
|
documentLoader?: DocumentLoader;
|
366
380
|
contextLoader?: DocumentLoader;
|
381
|
+
suppressError?: boolean;
|
367
382
|
}): AsyncIterable<Object | Link>;
|
368
383
|
/**
|
369
384
|
* Similar to
|
@@ -376,6 +391,7 @@ export declare class Object {
|
|
376
391
|
getPreview(options?: {
|
377
392
|
documentLoader?: DocumentLoader;
|
378
393
|
contextLoader?: DocumentLoader;
|
394
|
+
suppressError?: boolean;
|
379
395
|
}): Promise<Link | Object | null>;
|
380
396
|
/**
|
381
397
|
* Similar to
|
@@ -388,6 +404,7 @@ export declare class Object {
|
|
388
404
|
getPreviews(options?: {
|
389
405
|
documentLoader?: DocumentLoader;
|
390
406
|
contextLoader?: DocumentLoader;
|
407
|
+
suppressError?: boolean;
|
391
408
|
}): AsyncIterable<Link | Object>;
|
392
409
|
/** The date and time at which the object was published.
|
393
410
|
*/
|
@@ -404,6 +421,7 @@ export declare class Object {
|
|
404
421
|
getReplies(options?: {
|
405
422
|
documentLoader?: DocumentLoader;
|
406
423
|
contextLoader?: DocumentLoader;
|
424
|
+
suppressError?: boolean;
|
407
425
|
}): Promise<Collection | null>;
|
408
426
|
/** The date and time describing the actual or expected starting time of
|
409
427
|
* the object. When used with an {@link Activity} object, for instance,
|
@@ -433,6 +451,7 @@ export declare class Object {
|
|
433
451
|
getTags(options?: {
|
434
452
|
documentLoader?: DocumentLoader;
|
435
453
|
contextLoader?: DocumentLoader;
|
454
|
+
suppressError?: boolean;
|
436
455
|
}): AsyncIterable<Object | Link>;
|
437
456
|
/** The date and time at which the object was updated.
|
438
457
|
*/
|
@@ -455,6 +474,7 @@ export declare class Object {
|
|
455
474
|
getTo(options?: {
|
456
475
|
documentLoader?: DocumentLoader;
|
457
476
|
contextLoader?: DocumentLoader;
|
477
|
+
suppressError?: boolean;
|
458
478
|
}): Promise<Object | null>;
|
459
479
|
/**
|
460
480
|
* Similar to
|
@@ -468,6 +488,7 @@ export declare class Object {
|
|
468
488
|
getTos(options?: {
|
469
489
|
documentLoader?: DocumentLoader;
|
470
490
|
contextLoader?: DocumentLoader;
|
491
|
+
suppressError?: boolean;
|
471
492
|
}): AsyncIterable<Object>;
|
472
493
|
/**
|
473
494
|
* Similar to
|
@@ -481,6 +502,7 @@ export declare class Object {
|
|
481
502
|
getBto(options?: {
|
482
503
|
documentLoader?: DocumentLoader;
|
483
504
|
contextLoader?: DocumentLoader;
|
505
|
+
suppressError?: boolean;
|
484
506
|
}): Promise<Object | null>;
|
485
507
|
/**
|
486
508
|
* Similar to
|
@@ -494,6 +516,7 @@ export declare class Object {
|
|
494
516
|
getBtos(options?: {
|
495
517
|
documentLoader?: DocumentLoader;
|
496
518
|
contextLoader?: DocumentLoader;
|
519
|
+
suppressError?: boolean;
|
497
520
|
}): AsyncIterable<Object>;
|
498
521
|
/**
|
499
522
|
* Similar to
|
@@ -507,6 +530,7 @@ export declare class Object {
|
|
507
530
|
getCc(options?: {
|
508
531
|
documentLoader?: DocumentLoader;
|
509
532
|
contextLoader?: DocumentLoader;
|
533
|
+
suppressError?: boolean;
|
510
534
|
}): Promise<Object | null>;
|
511
535
|
/**
|
512
536
|
* Similar to
|
@@ -520,6 +544,7 @@ export declare class Object {
|
|
520
544
|
getCcs(options?: {
|
521
545
|
documentLoader?: DocumentLoader;
|
522
546
|
contextLoader?: DocumentLoader;
|
547
|
+
suppressError?: boolean;
|
523
548
|
}): AsyncIterable<Object>;
|
524
549
|
/**
|
525
550
|
* Similar to
|
@@ -533,6 +558,7 @@ export declare class Object {
|
|
533
558
|
getBcc(options?: {
|
534
559
|
documentLoader?: DocumentLoader;
|
535
560
|
contextLoader?: DocumentLoader;
|
561
|
+
suppressError?: boolean;
|
536
562
|
}): Promise<Object | null>;
|
537
563
|
/**
|
538
564
|
* Similar to
|
@@ -546,6 +572,7 @@ export declare class Object {
|
|
546
572
|
getBccs(options?: {
|
547
573
|
documentLoader?: DocumentLoader;
|
548
574
|
contextLoader?: DocumentLoader;
|
575
|
+
suppressError?: boolean;
|
549
576
|
}): AsyncIterable<Object>;
|
550
577
|
/** When used on an {@link Object}, identifies the MIME media type of the value
|
551
578
|
* of the `content` property. If not specified, the `content` property is
|
@@ -573,6 +600,7 @@ export declare class Object {
|
|
573
600
|
getProof(options?: {
|
574
601
|
documentLoader?: DocumentLoader;
|
575
602
|
contextLoader?: DocumentLoader;
|
603
|
+
suppressError?: boolean;
|
576
604
|
}): Promise<DataIntegrityProof | null>;
|
577
605
|
/**
|
578
606
|
* Similar to
|
@@ -585,6 +613,7 @@ export declare class Object {
|
|
585
613
|
getProofs(options?: {
|
586
614
|
documentLoader?: DocumentLoader;
|
587
615
|
contextLoader?: DocumentLoader;
|
616
|
+
suppressError?: boolean;
|
588
617
|
}): AsyncIterable<DataIntegrityProof>;
|
589
618
|
/**
|
590
619
|
* Converts this object to a JSON-LD structure.
|
@@ -873,6 +902,7 @@ export declare class DataIntegrityProof {
|
|
873
902
|
getVerificationMethod(options?: {
|
874
903
|
documentLoader?: DocumentLoader;
|
875
904
|
contextLoader?: DocumentLoader;
|
905
|
+
suppressError?: boolean;
|
876
906
|
}): Promise<Multikey | null>;
|
877
907
|
/** The reason the proof was created.
|
878
908
|
*
|
@@ -959,6 +989,7 @@ export declare class CryptographicKey {
|
|
959
989
|
getOwner(options?: {
|
960
990
|
documentLoader?: DocumentLoader;
|
961
991
|
contextLoader?: DocumentLoader;
|
992
|
+
suppressError?: boolean;
|
962
993
|
}): Promise<Application | Group | Organization | Person | Service | null>;
|
963
994
|
/** A PEM-encoded public key.
|
964
995
|
*/
|
@@ -1036,6 +1067,7 @@ export declare class Multikey {
|
|
1036
1067
|
getController(options?: {
|
1037
1068
|
documentLoader?: DocumentLoader;
|
1038
1069
|
contextLoader?: DocumentLoader;
|
1070
|
+
suppressError?: boolean;
|
1039
1071
|
}): Promise<Application | Group | Organization | Person | Service | null>;
|
1040
1072
|
/** A [Multibase]-encoded value of a [Multicodec] prefix and the key.
|
1041
1073
|
*
|
@@ -1208,6 +1240,7 @@ export declare class Activity extends Object {
|
|
1208
1240
|
getActor(options?: {
|
1209
1241
|
documentLoader?: DocumentLoader;
|
1210
1242
|
contextLoader?: DocumentLoader;
|
1243
|
+
suppressError?: boolean;
|
1211
1244
|
}): Promise<Application | Group | Organization | Person | Service | null>;
|
1212
1245
|
/**
|
1213
1246
|
* Similar to
|
@@ -1222,6 +1255,7 @@ export declare class Activity extends Object {
|
|
1222
1255
|
getActors(options?: {
|
1223
1256
|
documentLoader?: DocumentLoader;
|
1224
1257
|
contextLoader?: DocumentLoader;
|
1258
|
+
suppressError?: boolean;
|
1225
1259
|
}): AsyncIterable<Application | Group | Organization | Person | Service>;
|
1226
1260
|
/**
|
1227
1261
|
* Similar to
|
@@ -1236,6 +1270,7 @@ export declare class Activity extends Object {
|
|
1236
1270
|
getObject(options?: {
|
1237
1271
|
documentLoader?: DocumentLoader;
|
1238
1272
|
contextLoader?: DocumentLoader;
|
1273
|
+
suppressError?: boolean;
|
1239
1274
|
}): Promise<Object | null>;
|
1240
1275
|
/**
|
1241
1276
|
* Similar to
|
@@ -1250,6 +1285,7 @@ export declare class Activity extends Object {
|
|
1250
1285
|
getObjects(options?: {
|
1251
1286
|
documentLoader?: DocumentLoader;
|
1252
1287
|
contextLoader?: DocumentLoader;
|
1288
|
+
suppressError?: boolean;
|
1253
1289
|
}): AsyncIterable<Object>;
|
1254
1290
|
/**
|
1255
1291
|
* Converts this object to a JSON-LD structure.
|
@@ -1894,6 +1930,7 @@ export declare class Application extends Object {
|
|
1894
1930
|
getPublicKey(options?: {
|
1895
1931
|
documentLoader?: DocumentLoader;
|
1896
1932
|
contextLoader?: DocumentLoader;
|
1933
|
+
suppressError?: boolean;
|
1897
1934
|
}): Promise<CryptographicKey | null>;
|
1898
1935
|
/**
|
1899
1936
|
* Similar to
|
@@ -1906,6 +1943,7 @@ export declare class Application extends Object {
|
|
1906
1943
|
getPublicKeys(options?: {
|
1907
1944
|
documentLoader?: DocumentLoader;
|
1908
1945
|
contextLoader?: DocumentLoader;
|
1946
|
+
suppressError?: boolean;
|
1909
1947
|
}): AsyncIterable<CryptographicKey>;
|
1910
1948
|
/**
|
1911
1949
|
* Similar to
|
@@ -1921,6 +1959,7 @@ export declare class Application extends Object {
|
|
1921
1959
|
getAssertionMethod(options?: {
|
1922
1960
|
documentLoader?: DocumentLoader;
|
1923
1961
|
contextLoader?: DocumentLoader;
|
1962
|
+
suppressError?: boolean;
|
1924
1963
|
}): Promise<Multikey | null>;
|
1925
1964
|
/**
|
1926
1965
|
* Similar to
|
@@ -1936,6 +1975,7 @@ export declare class Application extends Object {
|
|
1936
1975
|
getAssertionMethods(options?: {
|
1937
1976
|
documentLoader?: DocumentLoader;
|
1938
1977
|
contextLoader?: DocumentLoader;
|
1978
|
+
suppressError?: boolean;
|
1939
1979
|
}): AsyncIterable<Multikey>;
|
1940
1980
|
/** When `true`, conveys that for this actor, follow requests are not usually
|
1941
1981
|
* automatically approved, but instead are examined by a person who may accept
|
@@ -1968,6 +2008,7 @@ export declare class Application extends Object {
|
|
1968
2008
|
getInbox(options?: {
|
1969
2009
|
documentLoader?: DocumentLoader;
|
1970
2010
|
contextLoader?: DocumentLoader;
|
2011
|
+
suppressError?: boolean;
|
1971
2012
|
}): Promise<OrderedCollection | null>;
|
1972
2013
|
/**
|
1973
2014
|
* Similar to
|
@@ -1989,6 +2030,7 @@ export declare class Application extends Object {
|
|
1989
2030
|
getOutbox(options?: {
|
1990
2031
|
documentLoader?: DocumentLoader;
|
1991
2032
|
contextLoader?: DocumentLoader;
|
2033
|
+
suppressError?: boolean;
|
1992
2034
|
}): Promise<OrderedCollection | null>;
|
1993
2035
|
/**
|
1994
2036
|
* Similar to
|
@@ -2005,6 +2047,7 @@ export declare class Application extends Object {
|
|
2005
2047
|
getFollowing(options?: {
|
2006
2048
|
documentLoader?: DocumentLoader;
|
2007
2049
|
contextLoader?: DocumentLoader;
|
2050
|
+
suppressError?: boolean;
|
2008
2051
|
}): Promise<Collection | null>;
|
2009
2052
|
/**
|
2010
2053
|
* Similar to
|
@@ -2024,6 +2067,7 @@ export declare class Application extends Object {
|
|
2024
2067
|
getFollowers(options?: {
|
2025
2068
|
documentLoader?: DocumentLoader;
|
2026
2069
|
contextLoader?: DocumentLoader;
|
2070
|
+
suppressError?: boolean;
|
2027
2071
|
}): Promise<Collection | null>;
|
2028
2072
|
/**
|
2029
2073
|
* Similar to
|
@@ -2041,6 +2085,7 @@ export declare class Application extends Object {
|
|
2041
2085
|
getLinked(options?: {
|
2042
2086
|
documentLoader?: DocumentLoader;
|
2043
2087
|
contextLoader?: DocumentLoader;
|
2088
|
+
suppressError?: boolean;
|
2044
2089
|
}): Promise<Collection | null>;
|
2045
2090
|
/**
|
2046
2091
|
* Similar to
|
@@ -2053,6 +2098,7 @@ export declare class Application extends Object {
|
|
2053
2098
|
getStreams(options?: {
|
2054
2099
|
documentLoader?: DocumentLoader;
|
2055
2100
|
contextLoader?: DocumentLoader;
|
2101
|
+
suppressError?: boolean;
|
2056
2102
|
}): AsyncIterable<Collection>;
|
2057
2103
|
/** A JSON object which maps additional (typically server/domain-wide) endpoints
|
2058
2104
|
* which may be useful either for this actor or someone referencing this actor.
|
@@ -3277,6 +3323,7 @@ export declare class Collection extends Object {
|
|
3277
3323
|
getCurrent(options?: {
|
3278
3324
|
documentLoader?: DocumentLoader;
|
3279
3325
|
contextLoader?: DocumentLoader;
|
3326
|
+
suppressError?: boolean;
|
3280
3327
|
}): Promise<CollectionPage | Link | null>;
|
3281
3328
|
/**
|
3282
3329
|
* Similar to
|
@@ -3290,6 +3337,7 @@ export declare class Collection extends Object {
|
|
3290
3337
|
getFirst(options?: {
|
3291
3338
|
documentLoader?: DocumentLoader;
|
3292
3339
|
contextLoader?: DocumentLoader;
|
3340
|
+
suppressError?: boolean;
|
3293
3341
|
}): Promise<CollectionPage | Link | null>;
|
3294
3342
|
/**
|
3295
3343
|
* Similar to
|
@@ -3303,6 +3351,7 @@ export declare class Collection extends Object {
|
|
3303
3351
|
getLast(options?: {
|
3304
3352
|
documentLoader?: DocumentLoader;
|
3305
3353
|
contextLoader?: DocumentLoader;
|
3354
|
+
suppressError?: boolean;
|
3306
3355
|
}): Promise<CollectionPage | Link | null>;
|
3307
3356
|
/**
|
3308
3357
|
* Similar to
|
@@ -3316,6 +3365,7 @@ export declare class Collection extends Object {
|
|
3316
3365
|
getItems(options?: {
|
3317
3366
|
documentLoader?: DocumentLoader;
|
3318
3367
|
contextLoader?: DocumentLoader;
|
3368
|
+
suppressError?: boolean;
|
3319
3369
|
}): AsyncIterable<Object | Link>;
|
3320
3370
|
/**
|
3321
3371
|
* Converts this object to a JSON-LD structure.
|
@@ -3487,6 +3537,7 @@ export declare class CollectionPage extends Collection {
|
|
3487
3537
|
getPartOf(options?: {
|
3488
3538
|
documentLoader?: DocumentLoader;
|
3489
3539
|
contextLoader?: DocumentLoader;
|
3540
|
+
suppressError?: boolean;
|
3490
3541
|
}): Promise<Link | Collection | null>;
|
3491
3542
|
/**
|
3492
3543
|
* Similar to
|
@@ -3499,6 +3550,7 @@ export declare class CollectionPage extends Collection {
|
|
3499
3550
|
getNext(options?: {
|
3500
3551
|
documentLoader?: DocumentLoader;
|
3501
3552
|
contextLoader?: DocumentLoader;
|
3553
|
+
suppressError?: boolean;
|
3502
3554
|
}): Promise<CollectionPage | Link | null>;
|
3503
3555
|
/**
|
3504
3556
|
* Similar to
|
@@ -3511,6 +3563,7 @@ export declare class CollectionPage extends Collection {
|
|
3511
3563
|
getPrev(options?: {
|
3512
3564
|
documentLoader?: DocumentLoader;
|
3513
3565
|
contextLoader?: DocumentLoader;
|
3566
|
+
suppressError?: boolean;
|
3514
3567
|
}): Promise<CollectionPage | Link | null>;
|
3515
3568
|
/**
|
3516
3569
|
* Converts this object to a JSON-LD structure.
|
@@ -4695,6 +4748,7 @@ export declare class Group extends Object {
|
|
4695
4748
|
getPublicKey(options?: {
|
4696
4749
|
documentLoader?: DocumentLoader;
|
4697
4750
|
contextLoader?: DocumentLoader;
|
4751
|
+
suppressError?: boolean;
|
4698
4752
|
}): Promise<CryptographicKey | null>;
|
4699
4753
|
/**
|
4700
4754
|
* Similar to
|
@@ -4707,6 +4761,7 @@ export declare class Group extends Object {
|
|
4707
4761
|
getPublicKeys(options?: {
|
4708
4762
|
documentLoader?: DocumentLoader;
|
4709
4763
|
contextLoader?: DocumentLoader;
|
4764
|
+
suppressError?: boolean;
|
4710
4765
|
}): AsyncIterable<CryptographicKey>;
|
4711
4766
|
/**
|
4712
4767
|
* Similar to
|
@@ -4722,6 +4777,7 @@ export declare class Group extends Object {
|
|
4722
4777
|
getAssertionMethod(options?: {
|
4723
4778
|
documentLoader?: DocumentLoader;
|
4724
4779
|
contextLoader?: DocumentLoader;
|
4780
|
+
suppressError?: boolean;
|
4725
4781
|
}): Promise<Multikey | null>;
|
4726
4782
|
/**
|
4727
4783
|
* Similar to
|
@@ -4737,6 +4793,7 @@ export declare class Group extends Object {
|
|
4737
4793
|
getAssertionMethods(options?: {
|
4738
4794
|
documentLoader?: DocumentLoader;
|
4739
4795
|
contextLoader?: DocumentLoader;
|
4796
|
+
suppressError?: boolean;
|
4740
4797
|
}): AsyncIterable<Multikey>;
|
4741
4798
|
/** When `true`, conveys that for this actor, follow requests are not usually
|
4742
4799
|
* automatically approved, but instead are examined by a person who may accept
|
@@ -4769,6 +4826,7 @@ export declare class Group extends Object {
|
|
4769
4826
|
getInbox(options?: {
|
4770
4827
|
documentLoader?: DocumentLoader;
|
4771
4828
|
contextLoader?: DocumentLoader;
|
4829
|
+
suppressError?: boolean;
|
4772
4830
|
}): Promise<OrderedCollection | null>;
|
4773
4831
|
/**
|
4774
4832
|
* Similar to
|
@@ -4790,6 +4848,7 @@ export declare class Group extends Object {
|
|
4790
4848
|
getOutbox(options?: {
|
4791
4849
|
documentLoader?: DocumentLoader;
|
4792
4850
|
contextLoader?: DocumentLoader;
|
4851
|
+
suppressError?: boolean;
|
4793
4852
|
}): Promise<OrderedCollection | null>;
|
4794
4853
|
/**
|
4795
4854
|
* Similar to
|
@@ -4806,6 +4865,7 @@ export declare class Group extends Object {
|
|
4806
4865
|
getFollowing(options?: {
|
4807
4866
|
documentLoader?: DocumentLoader;
|
4808
4867
|
contextLoader?: DocumentLoader;
|
4868
|
+
suppressError?: boolean;
|
4809
4869
|
}): Promise<Collection | null>;
|
4810
4870
|
/**
|
4811
4871
|
* Similar to
|
@@ -4825,6 +4885,7 @@ export declare class Group extends Object {
|
|
4825
4885
|
getFollowers(options?: {
|
4826
4886
|
documentLoader?: DocumentLoader;
|
4827
4887
|
contextLoader?: DocumentLoader;
|
4888
|
+
suppressError?: boolean;
|
4828
4889
|
}): Promise<Collection | null>;
|
4829
4890
|
/**
|
4830
4891
|
* Similar to
|
@@ -4842,6 +4903,7 @@ export declare class Group extends Object {
|
|
4842
4903
|
getLinked(options?: {
|
4843
4904
|
documentLoader?: DocumentLoader;
|
4844
4905
|
contextLoader?: DocumentLoader;
|
4906
|
+
suppressError?: boolean;
|
4845
4907
|
}): Promise<Collection | null>;
|
4846
4908
|
/**
|
4847
4909
|
* Similar to
|
@@ -4854,6 +4916,7 @@ export declare class Group extends Object {
|
|
4854
4916
|
getStreams(options?: {
|
4855
4917
|
documentLoader?: DocumentLoader;
|
4856
4918
|
contextLoader?: DocumentLoader;
|
4919
|
+
suppressError?: boolean;
|
4857
4920
|
}): AsyncIterable<Collection>;
|
4858
4921
|
/** A JSON object which maps additional (typically server/domain-wide) endpoints
|
4859
4922
|
* which may be useful either for this actor or someone referencing this actor.
|
@@ -5015,6 +5078,7 @@ export declare class Link {
|
|
5015
5078
|
getPreviews(options?: {
|
5016
5079
|
documentLoader?: DocumentLoader;
|
5017
5080
|
contextLoader?: DocumentLoader;
|
5081
|
+
suppressError?: boolean;
|
5018
5082
|
}): AsyncIterable<Link | Object>;
|
5019
5083
|
/**
|
5020
5084
|
* Converts this object to a JSON-LD structure.
|
@@ -6249,6 +6313,7 @@ export declare class Organization extends Object {
|
|
6249
6313
|
getPublicKey(options?: {
|
6250
6314
|
documentLoader?: DocumentLoader;
|
6251
6315
|
contextLoader?: DocumentLoader;
|
6316
|
+
suppressError?: boolean;
|
6252
6317
|
}): Promise<CryptographicKey | null>;
|
6253
6318
|
/**
|
6254
6319
|
* Similar to
|
@@ -6261,6 +6326,7 @@ export declare class Organization extends Object {
|
|
6261
6326
|
getPublicKeys(options?: {
|
6262
6327
|
documentLoader?: DocumentLoader;
|
6263
6328
|
contextLoader?: DocumentLoader;
|
6329
|
+
suppressError?: boolean;
|
6264
6330
|
}): AsyncIterable<CryptographicKey>;
|
6265
6331
|
/**
|
6266
6332
|
* Similar to
|
@@ -6276,6 +6342,7 @@ export declare class Organization extends Object {
|
|
6276
6342
|
getAssertionMethod(options?: {
|
6277
6343
|
documentLoader?: DocumentLoader;
|
6278
6344
|
contextLoader?: DocumentLoader;
|
6345
|
+
suppressError?: boolean;
|
6279
6346
|
}): Promise<Multikey | null>;
|
6280
6347
|
/**
|
6281
6348
|
* Similar to
|
@@ -6291,6 +6358,7 @@ export declare class Organization extends Object {
|
|
6291
6358
|
getAssertionMethods(options?: {
|
6292
6359
|
documentLoader?: DocumentLoader;
|
6293
6360
|
contextLoader?: DocumentLoader;
|
6361
|
+
suppressError?: boolean;
|
6294
6362
|
}): AsyncIterable<Multikey>;
|
6295
6363
|
/** When `true`, conveys that for this actor, follow requests are not usually
|
6296
6364
|
* automatically approved, but instead are examined by a person who may accept
|
@@ -6323,6 +6391,7 @@ export declare class Organization extends Object {
|
|
6323
6391
|
getInbox(options?: {
|
6324
6392
|
documentLoader?: DocumentLoader;
|
6325
6393
|
contextLoader?: DocumentLoader;
|
6394
|
+
suppressError?: boolean;
|
6326
6395
|
}): Promise<OrderedCollection | null>;
|
6327
6396
|
/**
|
6328
6397
|
* Similar to
|
@@ -6344,6 +6413,7 @@ export declare class Organization extends Object {
|
|
6344
6413
|
getOutbox(options?: {
|
6345
6414
|
documentLoader?: DocumentLoader;
|
6346
6415
|
contextLoader?: DocumentLoader;
|
6416
|
+
suppressError?: boolean;
|
6347
6417
|
}): Promise<OrderedCollection | null>;
|
6348
6418
|
/**
|
6349
6419
|
* Similar to
|
@@ -6360,6 +6430,7 @@ export declare class Organization extends Object {
|
|
6360
6430
|
getFollowing(options?: {
|
6361
6431
|
documentLoader?: DocumentLoader;
|
6362
6432
|
contextLoader?: DocumentLoader;
|
6433
|
+
suppressError?: boolean;
|
6363
6434
|
}): Promise<Collection | null>;
|
6364
6435
|
/**
|
6365
6436
|
* Similar to
|
@@ -6379,6 +6450,7 @@ export declare class Organization extends Object {
|
|
6379
6450
|
getFollowers(options?: {
|
6380
6451
|
documentLoader?: DocumentLoader;
|
6381
6452
|
contextLoader?: DocumentLoader;
|
6453
|
+
suppressError?: boolean;
|
6382
6454
|
}): Promise<Collection | null>;
|
6383
6455
|
/**
|
6384
6456
|
* Similar to
|
@@ -6396,6 +6468,7 @@ export declare class Organization extends Object {
|
|
6396
6468
|
getLinked(options?: {
|
6397
6469
|
documentLoader?: DocumentLoader;
|
6398
6470
|
contextLoader?: DocumentLoader;
|
6471
|
+
suppressError?: boolean;
|
6399
6472
|
}): Promise<Collection | null>;
|
6400
6473
|
/**
|
6401
6474
|
* Similar to
|
@@ -6408,6 +6481,7 @@ export declare class Organization extends Object {
|
|
6408
6481
|
getStreams(options?: {
|
6409
6482
|
documentLoader?: DocumentLoader;
|
6410
6483
|
contextLoader?: DocumentLoader;
|
6484
|
+
suppressError?: boolean;
|
6411
6485
|
}): AsyncIterable<Collection>;
|
6412
6486
|
/** A JSON object which maps additional (typically server/domain-wide) endpoints
|
6413
6487
|
* which may be useful either for this actor or someone referencing this actor.
|
@@ -6769,6 +6843,7 @@ export declare class Person extends Object {
|
|
6769
6843
|
getPublicKey(options?: {
|
6770
6844
|
documentLoader?: DocumentLoader;
|
6771
6845
|
contextLoader?: DocumentLoader;
|
6846
|
+
suppressError?: boolean;
|
6772
6847
|
}): Promise<CryptographicKey | null>;
|
6773
6848
|
/**
|
6774
6849
|
* Similar to
|
@@ -6781,6 +6856,7 @@ export declare class Person extends Object {
|
|
6781
6856
|
getPublicKeys(options?: {
|
6782
6857
|
documentLoader?: DocumentLoader;
|
6783
6858
|
contextLoader?: DocumentLoader;
|
6859
|
+
suppressError?: boolean;
|
6784
6860
|
}): AsyncIterable<CryptographicKey>;
|
6785
6861
|
/**
|
6786
6862
|
* Similar to
|
@@ -6796,6 +6872,7 @@ export declare class Person extends Object {
|
|
6796
6872
|
getAssertionMethod(options?: {
|
6797
6873
|
documentLoader?: DocumentLoader;
|
6798
6874
|
contextLoader?: DocumentLoader;
|
6875
|
+
suppressError?: boolean;
|
6799
6876
|
}): Promise<Multikey | null>;
|
6800
6877
|
/**
|
6801
6878
|
* Similar to
|
@@ -6811,6 +6888,7 @@ export declare class Person extends Object {
|
|
6811
6888
|
getAssertionMethods(options?: {
|
6812
6889
|
documentLoader?: DocumentLoader;
|
6813
6890
|
contextLoader?: DocumentLoader;
|
6891
|
+
suppressError?: boolean;
|
6814
6892
|
}): AsyncIterable<Multikey>;
|
6815
6893
|
/** When `true`, conveys that for this actor, follow requests are not usually
|
6816
6894
|
* automatically approved, but instead are examined by a person who may accept
|
@@ -6843,6 +6921,7 @@ export declare class Person extends Object {
|
|
6843
6921
|
getInbox(options?: {
|
6844
6922
|
documentLoader?: DocumentLoader;
|
6845
6923
|
contextLoader?: DocumentLoader;
|
6924
|
+
suppressError?: boolean;
|
6846
6925
|
}): Promise<OrderedCollection | null>;
|
6847
6926
|
/**
|
6848
6927
|
* Similar to
|
@@ -6864,6 +6943,7 @@ export declare class Person extends Object {
|
|
6864
6943
|
getOutbox(options?: {
|
6865
6944
|
documentLoader?: DocumentLoader;
|
6866
6945
|
contextLoader?: DocumentLoader;
|
6946
|
+
suppressError?: boolean;
|
6867
6947
|
}): Promise<OrderedCollection | null>;
|
6868
6948
|
/**
|
6869
6949
|
* Similar to
|
@@ -6880,6 +6960,7 @@ export declare class Person extends Object {
|
|
6880
6960
|
getFollowing(options?: {
|
6881
6961
|
documentLoader?: DocumentLoader;
|
6882
6962
|
contextLoader?: DocumentLoader;
|
6963
|
+
suppressError?: boolean;
|
6883
6964
|
}): Promise<Collection | null>;
|
6884
6965
|
/**
|
6885
6966
|
* Similar to
|
@@ -6899,6 +6980,7 @@ export declare class Person extends Object {
|
|
6899
6980
|
getFollowers(options?: {
|
6900
6981
|
documentLoader?: DocumentLoader;
|
6901
6982
|
contextLoader?: DocumentLoader;
|
6983
|
+
suppressError?: boolean;
|
6902
6984
|
}): Promise<Collection | null>;
|
6903
6985
|
/**
|
6904
6986
|
* Similar to
|
@@ -6916,6 +6998,7 @@ export declare class Person extends Object {
|
|
6916
6998
|
getLinked(options?: {
|
6917
6999
|
documentLoader?: DocumentLoader;
|
6918
7000
|
contextLoader?: DocumentLoader;
|
7001
|
+
suppressError?: boolean;
|
6919
7002
|
}): Promise<Collection | null>;
|
6920
7003
|
/**
|
6921
7004
|
* Similar to
|
@@ -6928,6 +7011,7 @@ export declare class Person extends Object {
|
|
6928
7011
|
getStreams(options?: {
|
6929
7012
|
documentLoader?: DocumentLoader;
|
6930
7013
|
contextLoader?: DocumentLoader;
|
7014
|
+
suppressError?: boolean;
|
6931
7015
|
}): AsyncIterable<Collection>;
|
6932
7016
|
/** A JSON object which maps additional (typically server/domain-wide) endpoints
|
6933
7017
|
* which may be useful either for this actor or someone referencing this actor.
|
@@ -7289,6 +7373,7 @@ export declare class Profile extends Object {
|
|
7289
7373
|
getDescribes(options?: {
|
7290
7374
|
documentLoader?: DocumentLoader;
|
7291
7375
|
contextLoader?: DocumentLoader;
|
7376
|
+
suppressError?: boolean;
|
7292
7377
|
}): Promise<Object | null>;
|
7293
7378
|
/**
|
7294
7379
|
* Converts this object to a JSON-LD structure.
|
@@ -7461,6 +7546,7 @@ export declare class Question extends IntransitiveActivity {
|
|
7461
7546
|
getExclusiveOptions(options?: {
|
7462
7547
|
documentLoader?: DocumentLoader;
|
7463
7548
|
contextLoader?: DocumentLoader;
|
7549
|
+
suppressError?: boolean;
|
7464
7550
|
}): AsyncIterable<Object>;
|
7465
7551
|
/**
|
7466
7552
|
* Similar to
|
@@ -7475,6 +7561,7 @@ export declare class Question extends IntransitiveActivity {
|
|
7475
7561
|
getInclusiveOptions(options?: {
|
7476
7562
|
documentLoader?: DocumentLoader;
|
7477
7563
|
contextLoader?: DocumentLoader;
|
7564
|
+
suppressError?: boolean;
|
7478
7565
|
}): AsyncIterable<Object>;
|
7479
7566
|
/**
|
7480
7567
|
* Converts this object to a JSON-LD structure.
|
@@ -7794,6 +7881,7 @@ export declare class Relationship extends Object {
|
|
7794
7881
|
getSubject(options?: {
|
7795
7882
|
documentLoader?: DocumentLoader;
|
7796
7883
|
contextLoader?: DocumentLoader;
|
7884
|
+
suppressError?: boolean;
|
7797
7885
|
}): Promise<Object | null>;
|
7798
7886
|
/**
|
7799
7887
|
* Similar to
|
@@ -7806,6 +7894,7 @@ export declare class Relationship extends Object {
|
|
7806
7894
|
getObject(options?: {
|
7807
7895
|
documentLoader?: DocumentLoader;
|
7808
7896
|
contextLoader?: DocumentLoader;
|
7897
|
+
suppressError?: boolean;
|
7809
7898
|
}): Promise<Object | null>;
|
7810
7899
|
/**
|
7811
7900
|
* Similar to
|
@@ -7818,6 +7907,7 @@ export declare class Relationship extends Object {
|
|
7818
7907
|
getObjects(options?: {
|
7819
7908
|
documentLoader?: DocumentLoader;
|
7820
7909
|
contextLoader?: DocumentLoader;
|
7910
|
+
suppressError?: boolean;
|
7821
7911
|
}): AsyncIterable<Object>;
|
7822
7912
|
/**
|
7823
7913
|
* Similar to
|
@@ -7832,6 +7922,7 @@ export declare class Relationship extends Object {
|
|
7832
7922
|
getRelationship(options?: {
|
7833
7923
|
documentLoader?: DocumentLoader;
|
7834
7924
|
contextLoader?: DocumentLoader;
|
7925
|
+
suppressError?: boolean;
|
7835
7926
|
}): Promise<Object | null>;
|
7836
7927
|
/**
|
7837
7928
|
* Similar to
|
@@ -7846,6 +7937,7 @@ export declare class Relationship extends Object {
|
|
7846
7937
|
getRelationships(options?: {
|
7847
7938
|
documentLoader?: DocumentLoader;
|
7848
7939
|
contextLoader?: DocumentLoader;
|
7940
|
+
suppressError?: boolean;
|
7849
7941
|
}): AsyncIterable<Object>;
|
7850
7942
|
/**
|
7851
7943
|
* Converts this object to a JSON-LD structure.
|
@@ -8190,6 +8282,7 @@ export declare class Service extends Object {
|
|
8190
8282
|
getPublicKey(options?: {
|
8191
8283
|
documentLoader?: DocumentLoader;
|
8192
8284
|
contextLoader?: DocumentLoader;
|
8285
|
+
suppressError?: boolean;
|
8193
8286
|
}): Promise<CryptographicKey | null>;
|
8194
8287
|
/**
|
8195
8288
|
* Similar to
|
@@ -8202,6 +8295,7 @@ export declare class Service extends Object {
|
|
8202
8295
|
getPublicKeys(options?: {
|
8203
8296
|
documentLoader?: DocumentLoader;
|
8204
8297
|
contextLoader?: DocumentLoader;
|
8298
|
+
suppressError?: boolean;
|
8205
8299
|
}): AsyncIterable<CryptographicKey>;
|
8206
8300
|
/**
|
8207
8301
|
* Similar to
|
@@ -8217,6 +8311,7 @@ export declare class Service extends Object {
|
|
8217
8311
|
getAssertionMethod(options?: {
|
8218
8312
|
documentLoader?: DocumentLoader;
|
8219
8313
|
contextLoader?: DocumentLoader;
|
8314
|
+
suppressError?: boolean;
|
8220
8315
|
}): Promise<Multikey | null>;
|
8221
8316
|
/**
|
8222
8317
|
* Similar to
|
@@ -8232,6 +8327,7 @@ export declare class Service extends Object {
|
|
8232
8327
|
getAssertionMethods(options?: {
|
8233
8328
|
documentLoader?: DocumentLoader;
|
8234
8329
|
contextLoader?: DocumentLoader;
|
8330
|
+
suppressError?: boolean;
|
8235
8331
|
}): AsyncIterable<Multikey>;
|
8236
8332
|
/** When `true`, conveys that for this actor, follow requests are not usually
|
8237
8333
|
* automatically approved, but instead are examined by a person who may accept
|
@@ -8264,6 +8360,7 @@ export declare class Service extends Object {
|
|
8264
8360
|
getInbox(options?: {
|
8265
8361
|
documentLoader?: DocumentLoader;
|
8266
8362
|
contextLoader?: DocumentLoader;
|
8363
|
+
suppressError?: boolean;
|
8267
8364
|
}): Promise<OrderedCollection | null>;
|
8268
8365
|
/**
|
8269
8366
|
* Similar to
|
@@ -8285,6 +8382,7 @@ export declare class Service extends Object {
|
|
8285
8382
|
getOutbox(options?: {
|
8286
8383
|
documentLoader?: DocumentLoader;
|
8287
8384
|
contextLoader?: DocumentLoader;
|
8385
|
+
suppressError?: boolean;
|
8288
8386
|
}): Promise<OrderedCollection | null>;
|
8289
8387
|
/**
|
8290
8388
|
* Similar to
|
@@ -8301,6 +8399,7 @@ export declare class Service extends Object {
|
|
8301
8399
|
getFollowing(options?: {
|
8302
8400
|
documentLoader?: DocumentLoader;
|
8303
8401
|
contextLoader?: DocumentLoader;
|
8402
|
+
suppressError?: boolean;
|
8304
8403
|
}): Promise<Collection | null>;
|
8305
8404
|
/**
|
8306
8405
|
* Similar to
|
@@ -8320,6 +8419,7 @@ export declare class Service extends Object {
|
|
8320
8419
|
getFollowers(options?: {
|
8321
8420
|
documentLoader?: DocumentLoader;
|
8322
8421
|
contextLoader?: DocumentLoader;
|
8422
|
+
suppressError?: boolean;
|
8323
8423
|
}): Promise<Collection | null>;
|
8324
8424
|
/**
|
8325
8425
|
* Similar to
|
@@ -8337,6 +8437,7 @@ export declare class Service extends Object {
|
|
8337
8437
|
getLinked(options?: {
|
8338
8438
|
documentLoader?: DocumentLoader;
|
8339
8439
|
contextLoader?: DocumentLoader;
|
8440
|
+
suppressError?: boolean;
|
8340
8441
|
}): Promise<Collection | null>;
|
8341
8442
|
/**
|
8342
8443
|
* Similar to
|
@@ -8349,6 +8450,7 @@ export declare class Service extends Object {
|
|
8349
8450
|
getStreams(options?: {
|
8350
8451
|
documentLoader?: DocumentLoader;
|
8351
8452
|
contextLoader?: DocumentLoader;
|
8453
|
+
suppressError?: boolean;
|
8352
8454
|
}): AsyncIterable<Collection>;
|
8353
8455
|
/** A JSON object which maps additional (typically server/domain-wide) endpoints
|
8354
8456
|
* which may be useful either for this actor or someone referencing this actor.
|