@fedify/fedify 0.10.0-dev.197 → 0.10.0-dev.198
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 +10 -0
- package/esm/vocab/accept.yaml +3 -1
- package/esm/vocab/activity.yaml +1 -0
- package/esm/vocab/add.yaml +3 -1
- package/esm/vocab/announce.yaml +1 -0
- package/esm/vocab/application.yaml +1 -0
- package/esm/vocab/article.yaml +1 -0
- package/esm/vocab/audio.yaml +3 -1
- package/esm/vocab/block.yaml +3 -1
- package/esm/vocab/create.yaml +1 -0
- package/esm/vocab/delete.yaml +3 -1
- package/esm/vocab/dislike.yaml +3 -1
- package/esm/vocab/document.yaml +4 -2
- package/esm/vocab/event.yaml +3 -1
- package/esm/vocab/flag.yaml +3 -1
- package/esm/vocab/follow.yaml +3 -1
- package/esm/vocab/group.yaml +1 -0
- package/esm/vocab/ignore.yaml +3 -1
- package/esm/vocab/intransitiveactivity.yaml +3 -1
- package/esm/vocab/like.yaml +3 -1
- package/esm/vocab/note.yaml +1 -0
- package/esm/vocab/object.yaml +10 -0
- package/esm/vocab/organization.yaml +1 -0
- package/esm/vocab/page.yaml +3 -1
- package/esm/vocab/person.yaml +1 -0
- package/esm/vocab/place.yaml +3 -1
- package/esm/vocab/profile.yaml +3 -1
- package/esm/vocab/reject.yaml +3 -1
- package/esm/vocab/relationship.yaml +3 -1
- package/esm/vocab/remove.yaml +3 -1
- package/esm/vocab/service.yaml +1 -0
- package/esm/vocab/tombstone.yaml +3 -1
- package/esm/vocab/undo.yaml +4 -2
- package/esm/vocab/update.yaml +1 -0
- package/esm/vocab/video.yaml +3 -1
- package/esm/vocab/vocab.js +256 -36
- package/package.json +1 -1
- package/types/vocab/vocab.d.ts +184 -0
- package/types/vocab/vocab.d.ts.map +1 -1
package/types/vocab/vocab.d.ts
CHANGED
@@ -67,6 +67,8 @@ export declare class Object {
|
|
67
67
|
mediaType?: string | null;
|
68
68
|
duration?: dntShim.Temporal.Duration | null;
|
69
69
|
sensitive?: boolean | null;
|
70
|
+
proof?: DataIntegrityProof | URL | null;
|
71
|
+
proofs?: (DataIntegrityProof | URL)[];
|
70
72
|
}, { documentLoader, contextLoader, }?: {
|
71
73
|
documentLoader?: DocumentLoader;
|
72
74
|
contextLoader?: DocumentLoader;
|
@@ -121,6 +123,8 @@ export declare class Object {
|
|
121
123
|
mediaType?: string | null;
|
122
124
|
duration?: dntShim.Temporal.Duration | null;
|
123
125
|
sensitive?: boolean | null;
|
126
|
+
proof?: DataIntegrityProof | URL | null;
|
127
|
+
proofs?: (DataIntegrityProof | URL)[];
|
124
128
|
}, options?: {
|
125
129
|
documentLoader?: DocumentLoader;
|
126
130
|
contextLoader?: DocumentLoader;
|
@@ -558,6 +562,30 @@ export declare class Object {
|
|
558
562
|
/** Whether it contains any sensitive contents.
|
559
563
|
*/
|
560
564
|
get sensitive(): boolean | null;
|
565
|
+
/**
|
566
|
+
* Similar to
|
567
|
+
* {@link Object.getProof},
|
568
|
+
* but returns its `@id` URL instead of the object itself.
|
569
|
+
*/
|
570
|
+
get proofId(): URL | null;
|
571
|
+
/** A cryptographic proof that can be used to verify the integrity of an object.
|
572
|
+
*/
|
573
|
+
getProof(options?: {
|
574
|
+
documentLoader?: DocumentLoader;
|
575
|
+
contextLoader?: DocumentLoader;
|
576
|
+
}): Promise<DataIntegrityProof | null>;
|
577
|
+
/**
|
578
|
+
* Similar to
|
579
|
+
* {@link Object.getProofs},
|
580
|
+
* but returns their `@id`s instead of the objects themselves.
|
581
|
+
*/
|
582
|
+
get proofIds(): URL[];
|
583
|
+
/** A cryptographic proof that can be used to verify the integrity of an object.
|
584
|
+
*/
|
585
|
+
getProofs(options?: {
|
586
|
+
documentLoader?: DocumentLoader;
|
587
|
+
contextLoader?: DocumentLoader;
|
588
|
+
}): AsyncIterable<DataIntegrityProof>;
|
561
589
|
/**
|
562
590
|
* Converts this object to a JSON-LD structure.
|
563
591
|
* @returns The JSON-LD representation of this object.
|
@@ -634,6 +662,8 @@ export declare class Emoji extends Object {
|
|
634
662
|
mediaType?: string | null;
|
635
663
|
duration?: dntShim.Temporal.Duration | null;
|
636
664
|
sensitive?: boolean | null;
|
665
|
+
proof?: DataIntegrityProof | URL | null;
|
666
|
+
proofs?: (DataIntegrityProof | URL)[];
|
637
667
|
}, { documentLoader, contextLoader, }?: {
|
638
668
|
documentLoader?: DocumentLoader;
|
639
669
|
contextLoader?: DocumentLoader;
|
@@ -688,6 +718,8 @@ export declare class Emoji extends Object {
|
|
688
718
|
mediaType?: string | null;
|
689
719
|
duration?: dntShim.Temporal.Duration | null;
|
690
720
|
sensitive?: boolean | null;
|
721
|
+
proof?: DataIntegrityProof | URL | null;
|
722
|
+
proofs?: (DataIntegrityProof | URL)[];
|
691
723
|
}, options?: {
|
692
724
|
documentLoader?: DocumentLoader;
|
693
725
|
contextLoader?: DocumentLoader;
|
@@ -1087,6 +1119,8 @@ export declare class Activity extends Object {
|
|
1087
1119
|
mediaType?: string | null;
|
1088
1120
|
duration?: dntShim.Temporal.Duration | null;
|
1089
1121
|
sensitive?: boolean | null;
|
1122
|
+
proof?: DataIntegrityProof | URL | null;
|
1123
|
+
proofs?: (DataIntegrityProof | URL)[];
|
1090
1124
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
1091
1125
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
1092
1126
|
object?: Object | URL | null;
|
@@ -1145,6 +1179,8 @@ export declare class Activity extends Object {
|
|
1145
1179
|
mediaType?: string | null;
|
1146
1180
|
duration?: dntShim.Temporal.Duration | null;
|
1147
1181
|
sensitive?: boolean | null;
|
1182
|
+
proof?: DataIntegrityProof | URL | null;
|
1183
|
+
proofs?: (DataIntegrityProof | URL)[];
|
1148
1184
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
1149
1185
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
1150
1186
|
object?: Object | URL | null;
|
@@ -1287,6 +1323,8 @@ export declare class Accept extends Activity {
|
|
1287
1323
|
mediaType?: string | null;
|
1288
1324
|
duration?: dntShim.Temporal.Duration | null;
|
1289
1325
|
sensitive?: boolean | null;
|
1326
|
+
proof?: DataIntegrityProof | URL | null;
|
1327
|
+
proofs?: (DataIntegrityProof | URL)[];
|
1290
1328
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
1291
1329
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
1292
1330
|
object?: Object | URL | null;
|
@@ -1345,6 +1383,8 @@ export declare class Accept extends Activity {
|
|
1345
1383
|
mediaType?: string | null;
|
1346
1384
|
duration?: dntShim.Temporal.Duration | null;
|
1347
1385
|
sensitive?: boolean | null;
|
1386
|
+
proof?: DataIntegrityProof | URL | null;
|
1387
|
+
proofs?: (DataIntegrityProof | URL)[];
|
1348
1388
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
1349
1389
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
1350
1390
|
object?: Object | URL | null;
|
@@ -1432,6 +1472,8 @@ export declare class Add extends Activity {
|
|
1432
1472
|
mediaType?: string | null;
|
1433
1473
|
duration?: dntShim.Temporal.Duration | null;
|
1434
1474
|
sensitive?: boolean | null;
|
1475
|
+
proof?: DataIntegrityProof | URL | null;
|
1476
|
+
proofs?: (DataIntegrityProof | URL)[];
|
1435
1477
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
1436
1478
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
1437
1479
|
object?: Object | URL | null;
|
@@ -1490,6 +1532,8 @@ export declare class Add extends Activity {
|
|
1490
1532
|
mediaType?: string | null;
|
1491
1533
|
duration?: dntShim.Temporal.Duration | null;
|
1492
1534
|
sensitive?: boolean | null;
|
1535
|
+
proof?: DataIntegrityProof | URL | null;
|
1536
|
+
proofs?: (DataIntegrityProof | URL)[];
|
1493
1537
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
1494
1538
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
1495
1539
|
object?: Object | URL | null;
|
@@ -1576,6 +1620,8 @@ export declare class Announce extends Activity {
|
|
1576
1620
|
mediaType?: string | null;
|
1577
1621
|
duration?: dntShim.Temporal.Duration | null;
|
1578
1622
|
sensitive?: boolean | null;
|
1623
|
+
proof?: DataIntegrityProof | URL | null;
|
1624
|
+
proofs?: (DataIntegrityProof | URL)[];
|
1579
1625
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
1580
1626
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
1581
1627
|
object?: Object | URL | null;
|
@@ -1634,6 +1680,8 @@ export declare class Announce extends Activity {
|
|
1634
1680
|
mediaType?: string | null;
|
1635
1681
|
duration?: dntShim.Temporal.Duration | null;
|
1636
1682
|
sensitive?: boolean | null;
|
1683
|
+
proof?: DataIntegrityProof | URL | null;
|
1684
|
+
proofs?: (DataIntegrityProof | URL)[];
|
1637
1685
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
1638
1686
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
1639
1687
|
object?: Object | URL | null;
|
@@ -1719,6 +1767,8 @@ export declare class Application extends Object {
|
|
1719
1767
|
mediaType?: string | null;
|
1720
1768
|
duration?: dntShim.Temporal.Duration | null;
|
1721
1769
|
sensitive?: boolean | null;
|
1770
|
+
proof?: DataIntegrityProof | URL | null;
|
1771
|
+
proofs?: (DataIntegrityProof | URL)[];
|
1722
1772
|
preferredUsername?: string | LanguageString | null;
|
1723
1773
|
preferredUsernames?: (string | LanguageString)[];
|
1724
1774
|
publicKey?: CryptographicKey | URL | null;
|
@@ -1791,6 +1841,8 @@ export declare class Application extends Object {
|
|
1791
1841
|
mediaType?: string | null;
|
1792
1842
|
duration?: dntShim.Temporal.Duration | null;
|
1793
1843
|
sensitive?: boolean | null;
|
1844
|
+
proof?: DataIntegrityProof | URL | null;
|
1845
|
+
proofs?: (DataIntegrityProof | URL)[];
|
1794
1846
|
preferredUsername?: string | LanguageString | null;
|
1795
1847
|
preferredUsernames?: (string | LanguageString)[];
|
1796
1848
|
publicKey?: CryptographicKey | URL | null;
|
@@ -2090,6 +2142,8 @@ export declare class Article extends Object {
|
|
2090
2142
|
mediaType?: string | null;
|
2091
2143
|
duration?: dntShim.Temporal.Duration | null;
|
2092
2144
|
sensitive?: boolean | null;
|
2145
|
+
proof?: DataIntegrityProof | URL | null;
|
2146
|
+
proofs?: (DataIntegrityProof | URL)[];
|
2093
2147
|
}, { documentLoader, contextLoader, }?: {
|
2094
2148
|
documentLoader?: DocumentLoader;
|
2095
2149
|
contextLoader?: DocumentLoader;
|
@@ -2144,6 +2198,8 @@ export declare class Article extends Object {
|
|
2144
2198
|
mediaType?: string | null;
|
2145
2199
|
duration?: dntShim.Temporal.Duration | null;
|
2146
2200
|
sensitive?: boolean | null;
|
2201
|
+
proof?: DataIntegrityProof | URL | null;
|
2202
|
+
proofs?: (DataIntegrityProof | URL)[];
|
2147
2203
|
}, options?: {
|
2148
2204
|
documentLoader?: DocumentLoader;
|
2149
2205
|
contextLoader?: DocumentLoader;
|
@@ -2225,6 +2281,8 @@ export declare class Document extends Object {
|
|
2225
2281
|
mediaType?: string | null;
|
2226
2282
|
duration?: dntShim.Temporal.Duration | null;
|
2227
2283
|
sensitive?: boolean | null;
|
2284
|
+
proof?: DataIntegrityProof | URL | null;
|
2285
|
+
proofs?: (DataIntegrityProof | URL)[];
|
2228
2286
|
width?: number | null;
|
2229
2287
|
height?: number | null;
|
2230
2288
|
}, { documentLoader, contextLoader, }?: {
|
@@ -2281,6 +2339,8 @@ export declare class Document extends Object {
|
|
2281
2339
|
mediaType?: string | null;
|
2282
2340
|
duration?: dntShim.Temporal.Duration | null;
|
2283
2341
|
sensitive?: boolean | null;
|
2342
|
+
proof?: DataIntegrityProof | URL | null;
|
2343
|
+
proofs?: (DataIntegrityProof | URL)[];
|
2284
2344
|
width?: number | null;
|
2285
2345
|
height?: number | null;
|
2286
2346
|
}, options?: {
|
@@ -2371,6 +2431,8 @@ export declare class Audio extends Document {
|
|
2371
2431
|
mediaType?: string | null;
|
2372
2432
|
duration?: dntShim.Temporal.Duration | null;
|
2373
2433
|
sensitive?: boolean | null;
|
2434
|
+
proof?: DataIntegrityProof | URL | null;
|
2435
|
+
proofs?: (DataIntegrityProof | URL)[];
|
2374
2436
|
width?: number | null;
|
2375
2437
|
height?: number | null;
|
2376
2438
|
}, { documentLoader, contextLoader, }?: {
|
@@ -2427,6 +2489,8 @@ export declare class Audio extends Document {
|
|
2427
2489
|
mediaType?: string | null;
|
2428
2490
|
duration?: dntShim.Temporal.Duration | null;
|
2429
2491
|
sensitive?: boolean | null;
|
2492
|
+
proof?: DataIntegrityProof | URL | null;
|
2493
|
+
proofs?: (DataIntegrityProof | URL)[];
|
2430
2494
|
width?: number | null;
|
2431
2495
|
height?: number | null;
|
2432
2496
|
}, options?: {
|
@@ -2510,6 +2574,8 @@ export declare class Ignore extends Activity {
|
|
2510
2574
|
mediaType?: string | null;
|
2511
2575
|
duration?: dntShim.Temporal.Duration | null;
|
2512
2576
|
sensitive?: boolean | null;
|
2577
|
+
proof?: DataIntegrityProof | URL | null;
|
2578
|
+
proofs?: (DataIntegrityProof | URL)[];
|
2513
2579
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
2514
2580
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
2515
2581
|
object?: Object | URL | null;
|
@@ -2568,6 +2634,8 @@ export declare class Ignore extends Activity {
|
|
2568
2634
|
mediaType?: string | null;
|
2569
2635
|
duration?: dntShim.Temporal.Duration | null;
|
2570
2636
|
sensitive?: boolean | null;
|
2637
|
+
proof?: DataIntegrityProof | URL | null;
|
2638
|
+
proofs?: (DataIntegrityProof | URL)[];
|
2571
2639
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
2572
2640
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
2573
2641
|
object?: Object | URL | null;
|
@@ -2655,6 +2723,8 @@ export declare class Block extends Ignore {
|
|
2655
2723
|
mediaType?: string | null;
|
2656
2724
|
duration?: dntShim.Temporal.Duration | null;
|
2657
2725
|
sensitive?: boolean | null;
|
2726
|
+
proof?: DataIntegrityProof | URL | null;
|
2727
|
+
proofs?: (DataIntegrityProof | URL)[];
|
2658
2728
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
2659
2729
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
2660
2730
|
object?: Object | URL | null;
|
@@ -2713,6 +2783,8 @@ export declare class Block extends Ignore {
|
|
2713
2783
|
mediaType?: string | null;
|
2714
2784
|
duration?: dntShim.Temporal.Duration | null;
|
2715
2785
|
sensitive?: boolean | null;
|
2786
|
+
proof?: DataIntegrityProof | URL | null;
|
2787
|
+
proofs?: (DataIntegrityProof | URL)[];
|
2716
2788
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
2717
2789
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
2718
2790
|
object?: Object | URL | null;
|
@@ -2802,6 +2874,8 @@ export declare class Collection extends Object {
|
|
2802
2874
|
mediaType?: string | null;
|
2803
2875
|
duration?: dntShim.Temporal.Duration | null;
|
2804
2876
|
sensitive?: boolean | null;
|
2877
|
+
proof?: DataIntegrityProof | URL | null;
|
2878
|
+
proofs?: (DataIntegrityProof | URL)[];
|
2805
2879
|
totalItems?: number | null;
|
2806
2880
|
current?: CollectionPage | Link | URL | null;
|
2807
2881
|
first?: CollectionPage | Link | URL | null;
|
@@ -2861,6 +2935,8 @@ export declare class Collection extends Object {
|
|
2861
2935
|
mediaType?: string | null;
|
2862
2936
|
duration?: dntShim.Temporal.Duration | null;
|
2863
2937
|
sensitive?: boolean | null;
|
2938
|
+
proof?: DataIntegrityProof | URL | null;
|
2939
|
+
proofs?: (DataIntegrityProof | URL)[];
|
2864
2940
|
totalItems?: number | null;
|
2865
2941
|
current?: CollectionPage | Link | URL | null;
|
2866
2942
|
first?: CollectionPage | Link | URL | null;
|
@@ -3006,6 +3082,8 @@ export declare class CollectionPage extends Collection {
|
|
3006
3082
|
mediaType?: string | null;
|
3007
3083
|
duration?: dntShim.Temporal.Duration | null;
|
3008
3084
|
sensitive?: boolean | null;
|
3085
|
+
proof?: DataIntegrityProof | URL | null;
|
3086
|
+
proofs?: (DataIntegrityProof | URL)[];
|
3009
3087
|
totalItems?: number | null;
|
3010
3088
|
current?: CollectionPage | Link | URL | null;
|
3011
3089
|
first?: CollectionPage | Link | URL | null;
|
@@ -3068,6 +3146,8 @@ export declare class CollectionPage extends Collection {
|
|
3068
3146
|
mediaType?: string | null;
|
3069
3147
|
duration?: dntShim.Temporal.Duration | null;
|
3070
3148
|
sensitive?: boolean | null;
|
3149
|
+
proof?: DataIntegrityProof | URL | null;
|
3150
|
+
proofs?: (DataIntegrityProof | URL)[];
|
3071
3151
|
totalItems?: number | null;
|
3072
3152
|
current?: CollectionPage | Link | URL | null;
|
3073
3153
|
first?: CollectionPage | Link | URL | null;
|
@@ -3193,6 +3273,8 @@ export declare class Create extends Activity {
|
|
3193
3273
|
mediaType?: string | null;
|
3194
3274
|
duration?: dntShim.Temporal.Duration | null;
|
3195
3275
|
sensitive?: boolean | null;
|
3276
|
+
proof?: DataIntegrityProof | URL | null;
|
3277
|
+
proofs?: (DataIntegrityProof | URL)[];
|
3196
3278
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
3197
3279
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
3198
3280
|
object?: Object | URL | null;
|
@@ -3251,6 +3333,8 @@ export declare class Create extends Activity {
|
|
3251
3333
|
mediaType?: string | null;
|
3252
3334
|
duration?: dntShim.Temporal.Duration | null;
|
3253
3335
|
sensitive?: boolean | null;
|
3336
|
+
proof?: DataIntegrityProof | URL | null;
|
3337
|
+
proofs?: (DataIntegrityProof | URL)[];
|
3254
3338
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
3255
3339
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
3256
3340
|
object?: Object | URL | null;
|
@@ -3336,6 +3420,8 @@ export declare class Delete extends Activity {
|
|
3336
3420
|
mediaType?: string | null;
|
3337
3421
|
duration?: dntShim.Temporal.Duration | null;
|
3338
3422
|
sensitive?: boolean | null;
|
3423
|
+
proof?: DataIntegrityProof | URL | null;
|
3424
|
+
proofs?: (DataIntegrityProof | URL)[];
|
3339
3425
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
3340
3426
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
3341
3427
|
object?: Object | URL | null;
|
@@ -3394,6 +3480,8 @@ export declare class Delete extends Activity {
|
|
3394
3480
|
mediaType?: string | null;
|
3395
3481
|
duration?: dntShim.Temporal.Duration | null;
|
3396
3482
|
sensitive?: boolean | null;
|
3483
|
+
proof?: DataIntegrityProof | URL | null;
|
3484
|
+
proofs?: (DataIntegrityProof | URL)[];
|
3397
3485
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
3398
3486
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
3399
3487
|
object?: Object | URL | null;
|
@@ -3478,6 +3566,8 @@ export declare class Dislike extends Activity {
|
|
3478
3566
|
mediaType?: string | null;
|
3479
3567
|
duration?: dntShim.Temporal.Duration | null;
|
3480
3568
|
sensitive?: boolean | null;
|
3569
|
+
proof?: DataIntegrityProof | URL | null;
|
3570
|
+
proofs?: (DataIntegrityProof | URL)[];
|
3481
3571
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
3482
3572
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
3483
3573
|
object?: Object | URL | null;
|
@@ -3536,6 +3626,8 @@ export declare class Dislike extends Activity {
|
|
3536
3626
|
mediaType?: string | null;
|
3537
3627
|
duration?: dntShim.Temporal.Duration | null;
|
3538
3628
|
sensitive?: boolean | null;
|
3629
|
+
proof?: DataIntegrityProof | URL | null;
|
3630
|
+
proofs?: (DataIntegrityProof | URL)[];
|
3539
3631
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
3540
3632
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
3541
3633
|
object?: Object | URL | null;
|
@@ -3727,6 +3819,8 @@ export declare class Event extends Object {
|
|
3727
3819
|
mediaType?: string | null;
|
3728
3820
|
duration?: dntShim.Temporal.Duration | null;
|
3729
3821
|
sensitive?: boolean | null;
|
3822
|
+
proof?: DataIntegrityProof | URL | null;
|
3823
|
+
proofs?: (DataIntegrityProof | URL)[];
|
3730
3824
|
}, { documentLoader, contextLoader, }?: {
|
3731
3825
|
documentLoader?: DocumentLoader;
|
3732
3826
|
contextLoader?: DocumentLoader;
|
@@ -3781,6 +3875,8 @@ export declare class Event extends Object {
|
|
3781
3875
|
mediaType?: string | null;
|
3782
3876
|
duration?: dntShim.Temporal.Duration | null;
|
3783
3877
|
sensitive?: boolean | null;
|
3878
|
+
proof?: DataIntegrityProof | URL | null;
|
3879
|
+
proofs?: (DataIntegrityProof | URL)[];
|
3784
3880
|
}, options?: {
|
3785
3881
|
documentLoader?: DocumentLoader;
|
3786
3882
|
contextLoader?: DocumentLoader;
|
@@ -3863,6 +3959,8 @@ export declare class Flag extends Activity {
|
|
3863
3959
|
mediaType?: string | null;
|
3864
3960
|
duration?: dntShim.Temporal.Duration | null;
|
3865
3961
|
sensitive?: boolean | null;
|
3962
|
+
proof?: DataIntegrityProof | URL | null;
|
3963
|
+
proofs?: (DataIntegrityProof | URL)[];
|
3866
3964
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
3867
3965
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
3868
3966
|
object?: Object | URL | null;
|
@@ -3921,6 +4019,8 @@ export declare class Flag extends Activity {
|
|
3921
4019
|
mediaType?: string | null;
|
3922
4020
|
duration?: dntShim.Temporal.Duration | null;
|
3923
4021
|
sensitive?: boolean | null;
|
4022
|
+
proof?: DataIntegrityProof | URL | null;
|
4023
|
+
proofs?: (DataIntegrityProof | URL)[];
|
3924
4024
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
3925
4025
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
3926
4026
|
object?: Object | URL | null;
|
@@ -4008,6 +4108,8 @@ export declare class Follow extends Activity {
|
|
4008
4108
|
mediaType?: string | null;
|
4009
4109
|
duration?: dntShim.Temporal.Duration | null;
|
4010
4110
|
sensitive?: boolean | null;
|
4111
|
+
proof?: DataIntegrityProof | URL | null;
|
4112
|
+
proofs?: (DataIntegrityProof | URL)[];
|
4011
4113
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
4012
4114
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
4013
4115
|
object?: Object | URL | null;
|
@@ -4066,6 +4168,8 @@ export declare class Follow extends Activity {
|
|
4066
4168
|
mediaType?: string | null;
|
4067
4169
|
duration?: dntShim.Temporal.Duration | null;
|
4068
4170
|
sensitive?: boolean | null;
|
4171
|
+
proof?: DataIntegrityProof | URL | null;
|
4172
|
+
proofs?: (DataIntegrityProof | URL)[];
|
4069
4173
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
4070
4174
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
4071
4175
|
object?: Object | URL | null;
|
@@ -4151,6 +4255,8 @@ export declare class Group extends Object {
|
|
4151
4255
|
mediaType?: string | null;
|
4152
4256
|
duration?: dntShim.Temporal.Duration | null;
|
4153
4257
|
sensitive?: boolean | null;
|
4258
|
+
proof?: DataIntegrityProof | URL | null;
|
4259
|
+
proofs?: (DataIntegrityProof | URL)[];
|
4154
4260
|
preferredUsername?: string | LanguageString | null;
|
4155
4261
|
preferredUsernames?: (string | LanguageString)[];
|
4156
4262
|
publicKey?: CryptographicKey | URL | null;
|
@@ -4223,6 +4329,8 @@ export declare class Group extends Object {
|
|
4223
4329
|
mediaType?: string | null;
|
4224
4330
|
duration?: dntShim.Temporal.Duration | null;
|
4225
4331
|
sensitive?: boolean | null;
|
4332
|
+
proof?: DataIntegrityProof | URL | null;
|
4333
|
+
proofs?: (DataIntegrityProof | URL)[];
|
4226
4334
|
preferredUsername?: string | LanguageString | null;
|
4227
4335
|
preferredUsernames?: (string | LanguageString)[];
|
4228
4336
|
publicKey?: CryptographicKey | URL | null;
|
@@ -4732,6 +4840,8 @@ export declare class Image extends Document {
|
|
4732
4840
|
mediaType?: string | null;
|
4733
4841
|
duration?: dntShim.Temporal.Duration | null;
|
4734
4842
|
sensitive?: boolean | null;
|
4843
|
+
proof?: DataIntegrityProof | URL | null;
|
4844
|
+
proofs?: (DataIntegrityProof | URL)[];
|
4735
4845
|
width?: number | null;
|
4736
4846
|
height?: number | null;
|
4737
4847
|
}, { documentLoader, contextLoader, }?: {
|
@@ -4788,6 +4898,8 @@ export declare class Image extends Document {
|
|
4788
4898
|
mediaType?: string | null;
|
4789
4899
|
duration?: dntShim.Temporal.Duration | null;
|
4790
4900
|
sensitive?: boolean | null;
|
4901
|
+
proof?: DataIntegrityProof | URL | null;
|
4902
|
+
proofs?: (DataIntegrityProof | URL)[];
|
4791
4903
|
width?: number | null;
|
4792
4904
|
height?: number | null;
|
4793
4905
|
}, options?: {
|
@@ -4872,6 +4984,8 @@ export declare class IntransitiveActivity extends Activity {
|
|
4872
4984
|
mediaType?: string | null;
|
4873
4985
|
duration?: dntShim.Temporal.Duration | null;
|
4874
4986
|
sensitive?: boolean | null;
|
4987
|
+
proof?: DataIntegrityProof | URL | null;
|
4988
|
+
proofs?: (DataIntegrityProof | URL)[];
|
4875
4989
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
4876
4990
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
4877
4991
|
object?: Object | URL | null;
|
@@ -4930,6 +5044,8 @@ export declare class IntransitiveActivity extends Activity {
|
|
4930
5044
|
mediaType?: string | null;
|
4931
5045
|
duration?: dntShim.Temporal.Duration | null;
|
4932
5046
|
sensitive?: boolean | null;
|
5047
|
+
proof?: DataIntegrityProof | URL | null;
|
5048
|
+
proofs?: (DataIntegrityProof | URL)[];
|
4933
5049
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
4934
5050
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
4935
5051
|
object?: Object | URL | null;
|
@@ -5015,6 +5131,8 @@ export declare class Like extends Activity {
|
|
5015
5131
|
mediaType?: string | null;
|
5016
5132
|
duration?: dntShim.Temporal.Duration | null;
|
5017
5133
|
sensitive?: boolean | null;
|
5134
|
+
proof?: DataIntegrityProof | URL | null;
|
5135
|
+
proofs?: (DataIntegrityProof | URL)[];
|
5018
5136
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
5019
5137
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
5020
5138
|
object?: Object | URL | null;
|
@@ -5073,6 +5191,8 @@ export declare class Like extends Activity {
|
|
5073
5191
|
mediaType?: string | null;
|
5074
5192
|
duration?: dntShim.Temporal.Duration | null;
|
5075
5193
|
sensitive?: boolean | null;
|
5194
|
+
proof?: DataIntegrityProof | URL | null;
|
5195
|
+
proofs?: (DataIntegrityProof | URL)[];
|
5076
5196
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
5077
5197
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
5078
5198
|
object?: Object | URL | null;
|
@@ -5228,6 +5348,8 @@ export declare class Note extends Object {
|
|
5228
5348
|
mediaType?: string | null;
|
5229
5349
|
duration?: dntShim.Temporal.Duration | null;
|
5230
5350
|
sensitive?: boolean | null;
|
5351
|
+
proof?: DataIntegrityProof | URL | null;
|
5352
|
+
proofs?: (DataIntegrityProof | URL)[];
|
5231
5353
|
}, { documentLoader, contextLoader, }?: {
|
5232
5354
|
documentLoader?: DocumentLoader;
|
5233
5355
|
contextLoader?: DocumentLoader;
|
@@ -5282,6 +5404,8 @@ export declare class Note extends Object {
|
|
5282
5404
|
mediaType?: string | null;
|
5283
5405
|
duration?: dntShim.Temporal.Duration | null;
|
5284
5406
|
sensitive?: boolean | null;
|
5407
|
+
proof?: DataIntegrityProof | URL | null;
|
5408
|
+
proofs?: (DataIntegrityProof | URL)[];
|
5285
5409
|
}, options?: {
|
5286
5410
|
documentLoader?: DocumentLoader;
|
5287
5411
|
contextLoader?: DocumentLoader;
|
@@ -5363,6 +5487,8 @@ export declare class OrderedCollection extends Collection {
|
|
5363
5487
|
mediaType?: string | null;
|
5364
5488
|
duration?: dntShim.Temporal.Duration | null;
|
5365
5489
|
sensitive?: boolean | null;
|
5490
|
+
proof?: DataIntegrityProof | URL | null;
|
5491
|
+
proofs?: (DataIntegrityProof | URL)[];
|
5366
5492
|
totalItems?: number | null;
|
5367
5493
|
current?: CollectionPage | Link | URL | null;
|
5368
5494
|
first?: CollectionPage | Link | URL | null;
|
@@ -5422,6 +5548,8 @@ export declare class OrderedCollection extends Collection {
|
|
5422
5548
|
mediaType?: string | null;
|
5423
5549
|
duration?: dntShim.Temporal.Duration | null;
|
5424
5550
|
sensitive?: boolean | null;
|
5551
|
+
proof?: DataIntegrityProof | URL | null;
|
5552
|
+
proofs?: (DataIntegrityProof | URL)[];
|
5425
5553
|
totalItems?: number | null;
|
5426
5554
|
current?: CollectionPage | Link | URL | null;
|
5427
5555
|
first?: CollectionPage | Link | URL | null;
|
@@ -5510,6 +5638,8 @@ export declare class OrderedCollectionPage extends CollectionPage {
|
|
5510
5638
|
mediaType?: string | null;
|
5511
5639
|
duration?: dntShim.Temporal.Duration | null;
|
5512
5640
|
sensitive?: boolean | null;
|
5641
|
+
proof?: DataIntegrityProof | URL | null;
|
5642
|
+
proofs?: (DataIntegrityProof | URL)[];
|
5513
5643
|
totalItems?: number | null;
|
5514
5644
|
current?: CollectionPage | Link | URL | null;
|
5515
5645
|
first?: CollectionPage | Link | URL | null;
|
@@ -5573,6 +5703,8 @@ export declare class OrderedCollectionPage extends CollectionPage {
|
|
5573
5703
|
mediaType?: string | null;
|
5574
5704
|
duration?: dntShim.Temporal.Duration | null;
|
5575
5705
|
sensitive?: boolean | null;
|
5706
|
+
proof?: DataIntegrityProof | URL | null;
|
5707
|
+
proofs?: (DataIntegrityProof | URL)[];
|
5576
5708
|
totalItems?: number | null;
|
5577
5709
|
current?: CollectionPage | Link | URL | null;
|
5578
5710
|
first?: CollectionPage | Link | URL | null;
|
@@ -5667,6 +5799,8 @@ export declare class Organization extends Object {
|
|
5667
5799
|
mediaType?: string | null;
|
5668
5800
|
duration?: dntShim.Temporal.Duration | null;
|
5669
5801
|
sensitive?: boolean | null;
|
5802
|
+
proof?: DataIntegrityProof | URL | null;
|
5803
|
+
proofs?: (DataIntegrityProof | URL)[];
|
5670
5804
|
preferredUsername?: string | LanguageString | null;
|
5671
5805
|
preferredUsernames?: (string | LanguageString)[];
|
5672
5806
|
publicKey?: CryptographicKey | URL | null;
|
@@ -5739,6 +5873,8 @@ export declare class Organization extends Object {
|
|
5739
5873
|
mediaType?: string | null;
|
5740
5874
|
duration?: dntShim.Temporal.Duration | null;
|
5741
5875
|
sensitive?: boolean | null;
|
5876
|
+
proof?: DataIntegrityProof | URL | null;
|
5877
|
+
proofs?: (DataIntegrityProof | URL)[];
|
5742
5878
|
preferredUsername?: string | LanguageString | null;
|
5743
5879
|
preferredUsernames?: (string | LanguageString)[];
|
5744
5880
|
publicKey?: CryptographicKey | URL | null;
|
@@ -6038,6 +6174,8 @@ export declare class Page extends Document {
|
|
6038
6174
|
mediaType?: string | null;
|
6039
6175
|
duration?: dntShim.Temporal.Duration | null;
|
6040
6176
|
sensitive?: boolean | null;
|
6177
|
+
proof?: DataIntegrityProof | URL | null;
|
6178
|
+
proofs?: (DataIntegrityProof | URL)[];
|
6041
6179
|
width?: number | null;
|
6042
6180
|
height?: number | null;
|
6043
6181
|
}, { documentLoader, contextLoader, }?: {
|
@@ -6094,6 +6232,8 @@ export declare class Page extends Document {
|
|
6094
6232
|
mediaType?: string | null;
|
6095
6233
|
duration?: dntShim.Temporal.Duration | null;
|
6096
6234
|
sensitive?: boolean | null;
|
6235
|
+
proof?: DataIntegrityProof | URL | null;
|
6236
|
+
proofs?: (DataIntegrityProof | URL)[];
|
6097
6237
|
width?: number | null;
|
6098
6238
|
height?: number | null;
|
6099
6239
|
}, options?: {
|
@@ -6177,6 +6317,8 @@ export declare class Person extends Object {
|
|
6177
6317
|
mediaType?: string | null;
|
6178
6318
|
duration?: dntShim.Temporal.Duration | null;
|
6179
6319
|
sensitive?: boolean | null;
|
6320
|
+
proof?: DataIntegrityProof | URL | null;
|
6321
|
+
proofs?: (DataIntegrityProof | URL)[];
|
6180
6322
|
preferredUsername?: string | LanguageString | null;
|
6181
6323
|
preferredUsernames?: (string | LanguageString)[];
|
6182
6324
|
publicKey?: CryptographicKey | URL | null;
|
@@ -6249,6 +6391,8 @@ export declare class Person extends Object {
|
|
6249
6391
|
mediaType?: string | null;
|
6250
6392
|
duration?: dntShim.Temporal.Duration | null;
|
6251
6393
|
sensitive?: boolean | null;
|
6394
|
+
proof?: DataIntegrityProof | URL | null;
|
6395
|
+
proofs?: (DataIntegrityProof | URL)[];
|
6252
6396
|
preferredUsername?: string | LanguageString | null;
|
6253
6397
|
preferredUsernames?: (string | LanguageString)[];
|
6254
6398
|
publicKey?: CryptographicKey | URL | null;
|
@@ -6551,6 +6695,8 @@ export declare class Place extends Object {
|
|
6551
6695
|
mediaType?: string | null;
|
6552
6696
|
duration?: dntShim.Temporal.Duration | null;
|
6553
6697
|
sensitive?: boolean | null;
|
6698
|
+
proof?: DataIntegrityProof | URL | null;
|
6699
|
+
proofs?: (DataIntegrityProof | URL)[];
|
6554
6700
|
accuracy?: number | null;
|
6555
6701
|
altitude?: number | null;
|
6556
6702
|
latitude?: number | null;
|
@@ -6611,6 +6757,8 @@ export declare class Place extends Object {
|
|
6611
6757
|
mediaType?: string | null;
|
6612
6758
|
duration?: dntShim.Temporal.Duration | null;
|
6613
6759
|
sensitive?: boolean | null;
|
6760
|
+
proof?: DataIntegrityProof | URL | null;
|
6761
|
+
proofs?: (DataIntegrityProof | URL)[];
|
6614
6762
|
accuracy?: number | null;
|
6615
6763
|
altitude?: number | null;
|
6616
6764
|
latitude?: number | null;
|
@@ -6728,6 +6876,8 @@ export declare class Profile extends Object {
|
|
6728
6876
|
mediaType?: string | null;
|
6729
6877
|
duration?: dntShim.Temporal.Duration | null;
|
6730
6878
|
sensitive?: boolean | null;
|
6879
|
+
proof?: DataIntegrityProof | URL | null;
|
6880
|
+
proofs?: (DataIntegrityProof | URL)[];
|
6731
6881
|
describes?: Object | URL | null;
|
6732
6882
|
}, { documentLoader, contextLoader, }?: {
|
6733
6883
|
documentLoader?: DocumentLoader;
|
@@ -6783,6 +6933,8 @@ export declare class Profile extends Object {
|
|
6783
6933
|
mediaType?: string | null;
|
6784
6934
|
duration?: dntShim.Temporal.Duration | null;
|
6785
6935
|
sensitive?: boolean | null;
|
6936
|
+
proof?: DataIntegrityProof | URL | null;
|
6937
|
+
proofs?: (DataIntegrityProof | URL)[];
|
6786
6938
|
describes?: Object | URL | null;
|
6787
6939
|
}, options?: {
|
6788
6940
|
documentLoader?: DocumentLoader;
|
@@ -6878,6 +7030,8 @@ export declare class Reject extends Activity {
|
|
6878
7030
|
mediaType?: string | null;
|
6879
7031
|
duration?: dntShim.Temporal.Duration | null;
|
6880
7032
|
sensitive?: boolean | null;
|
7033
|
+
proof?: DataIntegrityProof | URL | null;
|
7034
|
+
proofs?: (DataIntegrityProof | URL)[];
|
6881
7035
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
6882
7036
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
6883
7037
|
object?: Object | URL | null;
|
@@ -6936,6 +7090,8 @@ export declare class Reject extends Activity {
|
|
6936
7090
|
mediaType?: string | null;
|
6937
7091
|
duration?: dntShim.Temporal.Duration | null;
|
6938
7092
|
sensitive?: boolean | null;
|
7093
|
+
proof?: DataIntegrityProof | URL | null;
|
7094
|
+
proofs?: (DataIntegrityProof | URL)[];
|
6939
7095
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
6940
7096
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
6941
7097
|
object?: Object | URL | null;
|
@@ -7027,6 +7183,8 @@ export declare class Relationship extends Object {
|
|
7027
7183
|
mediaType?: string | null;
|
7028
7184
|
duration?: dntShim.Temporal.Duration | null;
|
7029
7185
|
sensitive?: boolean | null;
|
7186
|
+
proof?: DataIntegrityProof | URL | null;
|
7187
|
+
proofs?: (DataIntegrityProof | URL)[];
|
7030
7188
|
subject?: Object | URL | null;
|
7031
7189
|
object?: Object | URL | null;
|
7032
7190
|
objects?: (Object | URL)[];
|
@@ -7086,6 +7244,8 @@ export declare class Relationship extends Object {
|
|
7086
7244
|
mediaType?: string | null;
|
7087
7245
|
duration?: dntShim.Temporal.Duration | null;
|
7088
7246
|
sensitive?: boolean | null;
|
7247
|
+
proof?: DataIntegrityProof | URL | null;
|
7248
|
+
proofs?: (DataIntegrityProof | URL)[];
|
7089
7249
|
subject?: Object | URL | null;
|
7090
7250
|
object?: Object | URL | null;
|
7091
7251
|
objects?: (Object | URL)[];
|
@@ -7239,6 +7399,8 @@ export declare class Remove extends Activity {
|
|
7239
7399
|
mediaType?: string | null;
|
7240
7400
|
duration?: dntShim.Temporal.Duration | null;
|
7241
7401
|
sensitive?: boolean | null;
|
7402
|
+
proof?: DataIntegrityProof | URL | null;
|
7403
|
+
proofs?: (DataIntegrityProof | URL)[];
|
7242
7404
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
7243
7405
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
7244
7406
|
object?: Object | URL | null;
|
@@ -7297,6 +7459,8 @@ export declare class Remove extends Activity {
|
|
7297
7459
|
mediaType?: string | null;
|
7298
7460
|
duration?: dntShim.Temporal.Duration | null;
|
7299
7461
|
sensitive?: boolean | null;
|
7462
|
+
proof?: DataIntegrityProof | URL | null;
|
7463
|
+
proofs?: (DataIntegrityProof | URL)[];
|
7300
7464
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
7301
7465
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
7302
7466
|
object?: Object | URL | null;
|
@@ -7382,6 +7546,8 @@ export declare class Service extends Object {
|
|
7382
7546
|
mediaType?: string | null;
|
7383
7547
|
duration?: dntShim.Temporal.Duration | null;
|
7384
7548
|
sensitive?: boolean | null;
|
7549
|
+
proof?: DataIntegrityProof | URL | null;
|
7550
|
+
proofs?: (DataIntegrityProof | URL)[];
|
7385
7551
|
preferredUsername?: string | LanguageString | null;
|
7386
7552
|
preferredUsernames?: (string | LanguageString)[];
|
7387
7553
|
publicKey?: CryptographicKey | URL | null;
|
@@ -7454,6 +7620,8 @@ export declare class Service extends Object {
|
|
7454
7620
|
mediaType?: string | null;
|
7455
7621
|
duration?: dntShim.Temporal.Duration | null;
|
7456
7622
|
sensitive?: boolean | null;
|
7623
|
+
proof?: DataIntegrityProof | URL | null;
|
7624
|
+
proofs?: (DataIntegrityProof | URL)[];
|
7457
7625
|
preferredUsername?: string | LanguageString | null;
|
7458
7626
|
preferredUsernames?: (string | LanguageString)[];
|
7459
7627
|
publicKey?: CryptographicKey | URL | null;
|
@@ -7756,6 +7924,8 @@ export declare class Tombstone extends Object {
|
|
7756
7924
|
mediaType?: string | null;
|
7757
7925
|
duration?: dntShim.Temporal.Duration | null;
|
7758
7926
|
sensitive?: boolean | null;
|
7927
|
+
proof?: DataIntegrityProof | URL | null;
|
7928
|
+
proofs?: (DataIntegrityProof | URL)[];
|
7759
7929
|
deleted?: dntShim.Temporal.Instant | null;
|
7760
7930
|
}, { documentLoader, contextLoader, }?: {
|
7761
7931
|
documentLoader?: DocumentLoader;
|
@@ -7811,6 +7981,8 @@ export declare class Tombstone extends Object {
|
|
7811
7981
|
mediaType?: string | null;
|
7812
7982
|
duration?: dntShim.Temporal.Duration | null;
|
7813
7983
|
sensitive?: boolean | null;
|
7984
|
+
proof?: DataIntegrityProof | URL | null;
|
7985
|
+
proofs?: (DataIntegrityProof | URL)[];
|
7814
7986
|
deleted?: dntShim.Temporal.Instant | null;
|
7815
7987
|
}, options?: {
|
7816
7988
|
documentLoader?: DocumentLoader;
|
@@ -7902,6 +8074,8 @@ export declare class Undo extends Activity {
|
|
7902
8074
|
mediaType?: string | null;
|
7903
8075
|
duration?: dntShim.Temporal.Duration | null;
|
7904
8076
|
sensitive?: boolean | null;
|
8077
|
+
proof?: DataIntegrityProof | URL | null;
|
8078
|
+
proofs?: (DataIntegrityProof | URL)[];
|
7905
8079
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
7906
8080
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
7907
8081
|
object?: Object | URL | null;
|
@@ -7960,6 +8134,8 @@ export declare class Undo extends Activity {
|
|
7960
8134
|
mediaType?: string | null;
|
7961
8135
|
duration?: dntShim.Temporal.Duration | null;
|
7962
8136
|
sensitive?: boolean | null;
|
8137
|
+
proof?: DataIntegrityProof | URL | null;
|
8138
|
+
proofs?: (DataIntegrityProof | URL)[];
|
7963
8139
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
7964
8140
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
7965
8141
|
object?: Object | URL | null;
|
@@ -8048,6 +8224,8 @@ export declare class Update extends Activity {
|
|
8048
8224
|
mediaType?: string | null;
|
8049
8225
|
duration?: dntShim.Temporal.Duration | null;
|
8050
8226
|
sensitive?: boolean | null;
|
8227
|
+
proof?: DataIntegrityProof | URL | null;
|
8228
|
+
proofs?: (DataIntegrityProof | URL)[];
|
8051
8229
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
8052
8230
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
8053
8231
|
object?: Object | URL | null;
|
@@ -8106,6 +8284,8 @@ export declare class Update extends Activity {
|
|
8106
8284
|
mediaType?: string | null;
|
8107
8285
|
duration?: dntShim.Temporal.Duration | null;
|
8108
8286
|
sensitive?: boolean | null;
|
8287
|
+
proof?: DataIntegrityProof | URL | null;
|
8288
|
+
proofs?: (DataIntegrityProof | URL)[];
|
8109
8289
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
8110
8290
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
8111
8291
|
object?: Object | URL | null;
|
@@ -8190,6 +8370,8 @@ export declare class Video extends Document {
|
|
8190
8370
|
mediaType?: string | null;
|
8191
8371
|
duration?: dntShim.Temporal.Duration | null;
|
8192
8372
|
sensitive?: boolean | null;
|
8373
|
+
proof?: DataIntegrityProof | URL | null;
|
8374
|
+
proofs?: (DataIntegrityProof | URL)[];
|
8193
8375
|
width?: number | null;
|
8194
8376
|
height?: number | null;
|
8195
8377
|
}, { documentLoader, contextLoader, }?: {
|
@@ -8246,6 +8428,8 @@ export declare class Video extends Document {
|
|
8246
8428
|
mediaType?: string | null;
|
8247
8429
|
duration?: dntShim.Temporal.Duration | null;
|
8248
8430
|
sensitive?: boolean | null;
|
8431
|
+
proof?: DataIntegrityProof | URL | null;
|
8432
|
+
proofs?: (DataIntegrityProof | URL)[];
|
8249
8433
|
width?: number | null;
|
8250
8434
|
height?: number | null;
|
8251
8435
|
}, options?: {
|