@fedify/fedify 0.10.0-dev.196 → 0.10.0-dev.198

Sign up to get free protection for your applications and to get access to all the features.
Files changed (42) hide show
  1. package/CHANGES.md +15 -0
  2. package/esm/testing/fixtures/w3id.org/security/data-integrity/v1 +74 -0
  3. package/esm/vocab/accept.yaml +3 -1
  4. package/esm/vocab/activity.yaml +1 -0
  5. package/esm/vocab/add.yaml +3 -1
  6. package/esm/vocab/announce.yaml +1 -0
  7. package/esm/vocab/application.yaml +1 -0
  8. package/esm/vocab/article.yaml +1 -0
  9. package/esm/vocab/audio.yaml +3 -1
  10. package/esm/vocab/block.yaml +3 -1
  11. package/esm/vocab/create.yaml +1 -0
  12. package/esm/vocab/dataintegrityproof.yaml +56 -0
  13. package/esm/vocab/delete.yaml +3 -1
  14. package/esm/vocab/dislike.yaml +3 -1
  15. package/esm/vocab/document.yaml +4 -2
  16. package/esm/vocab/event.yaml +3 -1
  17. package/esm/vocab/flag.yaml +3 -1
  18. package/esm/vocab/follow.yaml +3 -1
  19. package/esm/vocab/group.yaml +1 -0
  20. package/esm/vocab/ignore.yaml +3 -1
  21. package/esm/vocab/intransitiveactivity.yaml +3 -1
  22. package/esm/vocab/like.yaml +3 -1
  23. package/esm/vocab/note.yaml +1 -0
  24. package/esm/vocab/object.yaml +10 -0
  25. package/esm/vocab/organization.yaml +1 -0
  26. package/esm/vocab/page.yaml +3 -1
  27. package/esm/vocab/person.yaml +1 -0
  28. package/esm/vocab/place.yaml +3 -1
  29. package/esm/vocab/profile.yaml +3 -1
  30. package/esm/vocab/reject.yaml +3 -1
  31. package/esm/vocab/relationship.yaml +3 -1
  32. package/esm/vocab/remove.yaml +3 -1
  33. package/esm/vocab/service.yaml +1 -0
  34. package/esm/vocab/tombstone.yaml +3 -1
  35. package/esm/vocab/undo.yaml +4 -2
  36. package/esm/vocab/update.yaml +1 -0
  37. package/esm/vocab/video.yaml +3 -1
  38. package/esm/vocab/vocab.js +632 -36
  39. package/package.json +1 -1
  40. package/types/codegen/type.d.ts.map +1 -1
  41. package/types/vocab/vocab.d.ts +282 -0
  42. package/types/vocab/vocab.d.ts.map +1 -1
@@ -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;
@@ -776,6 +808,104 @@ export declare class PropertyValue {
776
808
  }): Promise<PropertyValue>;
777
809
  protected _getCustomInspectProxy(): Record<string, unknown>;
778
810
  }
811
+ /** A proof that can be added to any activity or object, allowing recipients to
812
+ * verify the identity of the actor and the integrity of the data.
813
+ */
814
+ export declare class DataIntegrityProof {
815
+ #private;
816
+ readonly id: URL | null;
817
+ protected get _documentLoader(): DocumentLoader | undefined;
818
+ protected get _contextLoader(): DocumentLoader | undefined;
819
+ /**
820
+ * The type URI of {@link DataIntegrityProof}: `https://w3id.org/security#DataIntegrityProof`.
821
+ */
822
+ static get typeId(): URL;
823
+ /**
824
+ * Constructs a new instance of DataIntegrityProof with the given values.
825
+ * @param values The values to initialize the instance with.
826
+ * @param options The options to use for initialization.
827
+ */
828
+ constructor(values: {
829
+ id?: URL | null;
830
+ cryptosuite?: "eddsa-jcs-2022" | null;
831
+ verificationMethod?: Multikey | URL | null;
832
+ proofPurpose?: ("assertionMethod" | "authentication" | "capabilityInvocation" | "capabilityDelegation" | "keyAgreement") | null;
833
+ proofValue?: Uint8Array | null;
834
+ created?: dntShim.Temporal.Instant | null;
835
+ }, { documentLoader, contextLoader, }?: {
836
+ documentLoader?: DocumentLoader;
837
+ contextLoader?: DocumentLoader;
838
+ });
839
+ /**
840
+ * Clones this instance, optionally updating it with the given values.
841
+ * @param values The values to update the clone with.
842
+ * @options The options to use for cloning.
843
+ * @returns The cloned instance.
844
+ */
845
+ clone(values?: {
846
+ id?: URL | null;
847
+ cryptosuite?: "eddsa-jcs-2022" | null;
848
+ verificationMethod?: Multikey | URL | null;
849
+ proofPurpose?: ("assertionMethod" | "authentication" | "capabilityInvocation" | "capabilityDelegation" | "keyAgreement") | null;
850
+ proofValue?: Uint8Array | null;
851
+ created?: dntShim.Temporal.Instant | null;
852
+ }, options?: {
853
+ documentLoader?: DocumentLoader;
854
+ contextLoader?: DocumentLoader;
855
+ }): DataIntegrityProof;
856
+ /** The cryptographic suite used to create the proof.
857
+ */
858
+ get cryptosuite(): "eddsa-jcs-2022" | null;
859
+ /**
860
+ * Similar to
861
+ * {@link DataIntegrityProof.getVerificationMethod},
862
+ * but returns its `@id` URL instead of the object itself.
863
+ */
864
+ get verificationMethodId(): URL | null;
865
+ /** A key owned by an actor according to [FEP-521a: Representing actor's public
866
+ * keys][1].
867
+ *
868
+ * [1]: https://codeberg.org/fediverse/fep/src/branch/main/fep/521a/fep-521a.md
869
+ */
870
+ getVerificationMethod(options?: {
871
+ documentLoader?: DocumentLoader;
872
+ contextLoader?: DocumentLoader;
873
+ }): Promise<Multikey | null>;
874
+ /** The reason the proof was created.
875
+ *
876
+ * - `"assertionMethod"`
877
+ * - `"authentication"`
878
+ * - `"capabilityInvocation"`
879
+ * - `"capabilityDelegation"`
880
+ * - `"keyAgreement"`
881
+ */
882
+ get proofPurpose(): ("assertionMethod" | "authentication" | "capabilityInvocation" | "capabilityDelegation" | "keyAgreement") | null;
883
+ /** The proof value.
884
+ */
885
+ get proofValue(): Uint8Array | null;
886
+ /** The date and time the proof was created.
887
+ */
888
+ get created(): dntShim.Temporal.Instant | null;
889
+ /**
890
+ * Converts this object to a JSON-LD structure.
891
+ * @returns The JSON-LD representation of this object.
892
+ */
893
+ toJsonLd(options?: {
894
+ expand?: boolean;
895
+ contextLoader?: DocumentLoader;
896
+ }): Promise<unknown>;
897
+ /**
898
+ * Converts a JSON-LD structure to an object of this type.
899
+ * @param json The JSON-LD structure to convert.
900
+ * @returns The object of this type.
901
+ * @throws {TypeError} If the given `json` is invalid.
902
+ */
903
+ static fromJsonLd(json: unknown, options?: {
904
+ documentLoader?: DocumentLoader;
905
+ contextLoader?: DocumentLoader;
906
+ }): Promise<DataIntegrityProof>;
907
+ protected _getCustomInspectProxy(): Record<string, unknown>;
908
+ }
779
909
  /** A key owned by an actor.
780
910
  */
781
911
  export declare class CryptographicKey {
@@ -989,6 +1119,8 @@ export declare class Activity extends Object {
989
1119
  mediaType?: string | null;
990
1120
  duration?: dntShim.Temporal.Duration | null;
991
1121
  sensitive?: boolean | null;
1122
+ proof?: DataIntegrityProof | URL | null;
1123
+ proofs?: (DataIntegrityProof | URL)[];
992
1124
  actor?: Application | Group | Organization | Person | Service | URL | null;
993
1125
  actors?: (Application | Group | Organization | Person | Service | URL)[];
994
1126
  object?: Object | URL | null;
@@ -1047,6 +1179,8 @@ export declare class Activity extends Object {
1047
1179
  mediaType?: string | null;
1048
1180
  duration?: dntShim.Temporal.Duration | null;
1049
1181
  sensitive?: boolean | null;
1182
+ proof?: DataIntegrityProof | URL | null;
1183
+ proofs?: (DataIntegrityProof | URL)[];
1050
1184
  actor?: Application | Group | Organization | Person | Service | URL | null;
1051
1185
  actors?: (Application | Group | Organization | Person | Service | URL)[];
1052
1186
  object?: Object | URL | null;
@@ -1189,6 +1323,8 @@ export declare class Accept extends Activity {
1189
1323
  mediaType?: string | null;
1190
1324
  duration?: dntShim.Temporal.Duration | null;
1191
1325
  sensitive?: boolean | null;
1326
+ proof?: DataIntegrityProof | URL | null;
1327
+ proofs?: (DataIntegrityProof | URL)[];
1192
1328
  actor?: Application | Group | Organization | Person | Service | URL | null;
1193
1329
  actors?: (Application | Group | Organization | Person | Service | URL)[];
1194
1330
  object?: Object | URL | null;
@@ -1247,6 +1383,8 @@ export declare class Accept extends Activity {
1247
1383
  mediaType?: string | null;
1248
1384
  duration?: dntShim.Temporal.Duration | null;
1249
1385
  sensitive?: boolean | null;
1386
+ proof?: DataIntegrityProof | URL | null;
1387
+ proofs?: (DataIntegrityProof | URL)[];
1250
1388
  actor?: Application | Group | Organization | Person | Service | URL | null;
1251
1389
  actors?: (Application | Group | Organization | Person | Service | URL)[];
1252
1390
  object?: Object | URL | null;
@@ -1334,6 +1472,8 @@ export declare class Add extends Activity {
1334
1472
  mediaType?: string | null;
1335
1473
  duration?: dntShim.Temporal.Duration | null;
1336
1474
  sensitive?: boolean | null;
1475
+ proof?: DataIntegrityProof | URL | null;
1476
+ proofs?: (DataIntegrityProof | URL)[];
1337
1477
  actor?: Application | Group | Organization | Person | Service | URL | null;
1338
1478
  actors?: (Application | Group | Organization | Person | Service | URL)[];
1339
1479
  object?: Object | URL | null;
@@ -1392,6 +1532,8 @@ export declare class Add extends Activity {
1392
1532
  mediaType?: string | null;
1393
1533
  duration?: dntShim.Temporal.Duration | null;
1394
1534
  sensitive?: boolean | null;
1535
+ proof?: DataIntegrityProof | URL | null;
1536
+ proofs?: (DataIntegrityProof | URL)[];
1395
1537
  actor?: Application | Group | Organization | Person | Service | URL | null;
1396
1538
  actors?: (Application | Group | Organization | Person | Service | URL)[];
1397
1539
  object?: Object | URL | null;
@@ -1478,6 +1620,8 @@ export declare class Announce extends Activity {
1478
1620
  mediaType?: string | null;
1479
1621
  duration?: dntShim.Temporal.Duration | null;
1480
1622
  sensitive?: boolean | null;
1623
+ proof?: DataIntegrityProof | URL | null;
1624
+ proofs?: (DataIntegrityProof | URL)[];
1481
1625
  actor?: Application | Group | Organization | Person | Service | URL | null;
1482
1626
  actors?: (Application | Group | Organization | Person | Service | URL)[];
1483
1627
  object?: Object | URL | null;
@@ -1536,6 +1680,8 @@ export declare class Announce extends Activity {
1536
1680
  mediaType?: string | null;
1537
1681
  duration?: dntShim.Temporal.Duration | null;
1538
1682
  sensitive?: boolean | null;
1683
+ proof?: DataIntegrityProof | URL | null;
1684
+ proofs?: (DataIntegrityProof | URL)[];
1539
1685
  actor?: Application | Group | Organization | Person | Service | URL | null;
1540
1686
  actors?: (Application | Group | Organization | Person | Service | URL)[];
1541
1687
  object?: Object | URL | null;
@@ -1621,6 +1767,8 @@ export declare class Application extends Object {
1621
1767
  mediaType?: string | null;
1622
1768
  duration?: dntShim.Temporal.Duration | null;
1623
1769
  sensitive?: boolean | null;
1770
+ proof?: DataIntegrityProof | URL | null;
1771
+ proofs?: (DataIntegrityProof | URL)[];
1624
1772
  preferredUsername?: string | LanguageString | null;
1625
1773
  preferredUsernames?: (string | LanguageString)[];
1626
1774
  publicKey?: CryptographicKey | URL | null;
@@ -1693,6 +1841,8 @@ export declare class Application extends Object {
1693
1841
  mediaType?: string | null;
1694
1842
  duration?: dntShim.Temporal.Duration | null;
1695
1843
  sensitive?: boolean | null;
1844
+ proof?: DataIntegrityProof | URL | null;
1845
+ proofs?: (DataIntegrityProof | URL)[];
1696
1846
  preferredUsername?: string | LanguageString | null;
1697
1847
  preferredUsernames?: (string | LanguageString)[];
1698
1848
  publicKey?: CryptographicKey | URL | null;
@@ -1992,6 +2142,8 @@ export declare class Article extends Object {
1992
2142
  mediaType?: string | null;
1993
2143
  duration?: dntShim.Temporal.Duration | null;
1994
2144
  sensitive?: boolean | null;
2145
+ proof?: DataIntegrityProof | URL | null;
2146
+ proofs?: (DataIntegrityProof | URL)[];
1995
2147
  }, { documentLoader, contextLoader, }?: {
1996
2148
  documentLoader?: DocumentLoader;
1997
2149
  contextLoader?: DocumentLoader;
@@ -2046,6 +2198,8 @@ export declare class Article extends Object {
2046
2198
  mediaType?: string | null;
2047
2199
  duration?: dntShim.Temporal.Duration | null;
2048
2200
  sensitive?: boolean | null;
2201
+ proof?: DataIntegrityProof | URL | null;
2202
+ proofs?: (DataIntegrityProof | URL)[];
2049
2203
  }, options?: {
2050
2204
  documentLoader?: DocumentLoader;
2051
2205
  contextLoader?: DocumentLoader;
@@ -2127,6 +2281,8 @@ export declare class Document extends Object {
2127
2281
  mediaType?: string | null;
2128
2282
  duration?: dntShim.Temporal.Duration | null;
2129
2283
  sensitive?: boolean | null;
2284
+ proof?: DataIntegrityProof | URL | null;
2285
+ proofs?: (DataIntegrityProof | URL)[];
2130
2286
  width?: number | null;
2131
2287
  height?: number | null;
2132
2288
  }, { documentLoader, contextLoader, }?: {
@@ -2183,6 +2339,8 @@ export declare class Document extends Object {
2183
2339
  mediaType?: string | null;
2184
2340
  duration?: dntShim.Temporal.Duration | null;
2185
2341
  sensitive?: boolean | null;
2342
+ proof?: DataIntegrityProof | URL | null;
2343
+ proofs?: (DataIntegrityProof | URL)[];
2186
2344
  width?: number | null;
2187
2345
  height?: number | null;
2188
2346
  }, options?: {
@@ -2273,6 +2431,8 @@ export declare class Audio extends Document {
2273
2431
  mediaType?: string | null;
2274
2432
  duration?: dntShim.Temporal.Duration | null;
2275
2433
  sensitive?: boolean | null;
2434
+ proof?: DataIntegrityProof | URL | null;
2435
+ proofs?: (DataIntegrityProof | URL)[];
2276
2436
  width?: number | null;
2277
2437
  height?: number | null;
2278
2438
  }, { documentLoader, contextLoader, }?: {
@@ -2329,6 +2489,8 @@ export declare class Audio extends Document {
2329
2489
  mediaType?: string | null;
2330
2490
  duration?: dntShim.Temporal.Duration | null;
2331
2491
  sensitive?: boolean | null;
2492
+ proof?: DataIntegrityProof | URL | null;
2493
+ proofs?: (DataIntegrityProof | URL)[];
2332
2494
  width?: number | null;
2333
2495
  height?: number | null;
2334
2496
  }, options?: {
@@ -2412,6 +2574,8 @@ export declare class Ignore extends Activity {
2412
2574
  mediaType?: string | null;
2413
2575
  duration?: dntShim.Temporal.Duration | null;
2414
2576
  sensitive?: boolean | null;
2577
+ proof?: DataIntegrityProof | URL | null;
2578
+ proofs?: (DataIntegrityProof | URL)[];
2415
2579
  actor?: Application | Group | Organization | Person | Service | URL | null;
2416
2580
  actors?: (Application | Group | Organization | Person | Service | URL)[];
2417
2581
  object?: Object | URL | null;
@@ -2470,6 +2634,8 @@ export declare class Ignore extends Activity {
2470
2634
  mediaType?: string | null;
2471
2635
  duration?: dntShim.Temporal.Duration | null;
2472
2636
  sensitive?: boolean | null;
2637
+ proof?: DataIntegrityProof | URL | null;
2638
+ proofs?: (DataIntegrityProof | URL)[];
2473
2639
  actor?: Application | Group | Organization | Person | Service | URL | null;
2474
2640
  actors?: (Application | Group | Organization | Person | Service | URL)[];
2475
2641
  object?: Object | URL | null;
@@ -2557,6 +2723,8 @@ export declare class Block extends Ignore {
2557
2723
  mediaType?: string | null;
2558
2724
  duration?: dntShim.Temporal.Duration | null;
2559
2725
  sensitive?: boolean | null;
2726
+ proof?: DataIntegrityProof | URL | null;
2727
+ proofs?: (DataIntegrityProof | URL)[];
2560
2728
  actor?: Application | Group | Organization | Person | Service | URL | null;
2561
2729
  actors?: (Application | Group | Organization | Person | Service | URL)[];
2562
2730
  object?: Object | URL | null;
@@ -2615,6 +2783,8 @@ export declare class Block extends Ignore {
2615
2783
  mediaType?: string | null;
2616
2784
  duration?: dntShim.Temporal.Duration | null;
2617
2785
  sensitive?: boolean | null;
2786
+ proof?: DataIntegrityProof | URL | null;
2787
+ proofs?: (DataIntegrityProof | URL)[];
2618
2788
  actor?: Application | Group | Organization | Person | Service | URL | null;
2619
2789
  actors?: (Application | Group | Organization | Person | Service | URL)[];
2620
2790
  object?: Object | URL | null;
@@ -2704,6 +2874,8 @@ export declare class Collection extends Object {
2704
2874
  mediaType?: string | null;
2705
2875
  duration?: dntShim.Temporal.Duration | null;
2706
2876
  sensitive?: boolean | null;
2877
+ proof?: DataIntegrityProof | URL | null;
2878
+ proofs?: (DataIntegrityProof | URL)[];
2707
2879
  totalItems?: number | null;
2708
2880
  current?: CollectionPage | Link | URL | null;
2709
2881
  first?: CollectionPage | Link | URL | null;
@@ -2763,6 +2935,8 @@ export declare class Collection extends Object {
2763
2935
  mediaType?: string | null;
2764
2936
  duration?: dntShim.Temporal.Duration | null;
2765
2937
  sensitive?: boolean | null;
2938
+ proof?: DataIntegrityProof | URL | null;
2939
+ proofs?: (DataIntegrityProof | URL)[];
2766
2940
  totalItems?: number | null;
2767
2941
  current?: CollectionPage | Link | URL | null;
2768
2942
  first?: CollectionPage | Link | URL | null;
@@ -2908,6 +3082,8 @@ export declare class CollectionPage extends Collection {
2908
3082
  mediaType?: string | null;
2909
3083
  duration?: dntShim.Temporal.Duration | null;
2910
3084
  sensitive?: boolean | null;
3085
+ proof?: DataIntegrityProof | URL | null;
3086
+ proofs?: (DataIntegrityProof | URL)[];
2911
3087
  totalItems?: number | null;
2912
3088
  current?: CollectionPage | Link | URL | null;
2913
3089
  first?: CollectionPage | Link | URL | null;
@@ -2970,6 +3146,8 @@ export declare class CollectionPage extends Collection {
2970
3146
  mediaType?: string | null;
2971
3147
  duration?: dntShim.Temporal.Duration | null;
2972
3148
  sensitive?: boolean | null;
3149
+ proof?: DataIntegrityProof | URL | null;
3150
+ proofs?: (DataIntegrityProof | URL)[];
2973
3151
  totalItems?: number | null;
2974
3152
  current?: CollectionPage | Link | URL | null;
2975
3153
  first?: CollectionPage | Link | URL | null;
@@ -3095,6 +3273,8 @@ export declare class Create extends Activity {
3095
3273
  mediaType?: string | null;
3096
3274
  duration?: dntShim.Temporal.Duration | null;
3097
3275
  sensitive?: boolean | null;
3276
+ proof?: DataIntegrityProof | URL | null;
3277
+ proofs?: (DataIntegrityProof | URL)[];
3098
3278
  actor?: Application | Group | Organization | Person | Service | URL | null;
3099
3279
  actors?: (Application | Group | Organization | Person | Service | URL)[];
3100
3280
  object?: Object | URL | null;
@@ -3153,6 +3333,8 @@ export declare class Create extends Activity {
3153
3333
  mediaType?: string | null;
3154
3334
  duration?: dntShim.Temporal.Duration | null;
3155
3335
  sensitive?: boolean | null;
3336
+ proof?: DataIntegrityProof | URL | null;
3337
+ proofs?: (DataIntegrityProof | URL)[];
3156
3338
  actor?: Application | Group | Organization | Person | Service | URL | null;
3157
3339
  actors?: (Application | Group | Organization | Person | Service | URL)[];
3158
3340
  object?: Object | URL | null;
@@ -3238,6 +3420,8 @@ export declare class Delete extends Activity {
3238
3420
  mediaType?: string | null;
3239
3421
  duration?: dntShim.Temporal.Duration | null;
3240
3422
  sensitive?: boolean | null;
3423
+ proof?: DataIntegrityProof | URL | null;
3424
+ proofs?: (DataIntegrityProof | URL)[];
3241
3425
  actor?: Application | Group | Organization | Person | Service | URL | null;
3242
3426
  actors?: (Application | Group | Organization | Person | Service | URL)[];
3243
3427
  object?: Object | URL | null;
@@ -3296,6 +3480,8 @@ export declare class Delete extends Activity {
3296
3480
  mediaType?: string | null;
3297
3481
  duration?: dntShim.Temporal.Duration | null;
3298
3482
  sensitive?: boolean | null;
3483
+ proof?: DataIntegrityProof | URL | null;
3484
+ proofs?: (DataIntegrityProof | URL)[];
3299
3485
  actor?: Application | Group | Organization | Person | Service | URL | null;
3300
3486
  actors?: (Application | Group | Organization | Person | Service | URL)[];
3301
3487
  object?: Object | URL | null;
@@ -3380,6 +3566,8 @@ export declare class Dislike extends Activity {
3380
3566
  mediaType?: string | null;
3381
3567
  duration?: dntShim.Temporal.Duration | null;
3382
3568
  sensitive?: boolean | null;
3569
+ proof?: DataIntegrityProof | URL | null;
3570
+ proofs?: (DataIntegrityProof | URL)[];
3383
3571
  actor?: Application | Group | Organization | Person | Service | URL | null;
3384
3572
  actors?: (Application | Group | Organization | Person | Service | URL)[];
3385
3573
  object?: Object | URL | null;
@@ -3438,6 +3626,8 @@ export declare class Dislike extends Activity {
3438
3626
  mediaType?: string | null;
3439
3627
  duration?: dntShim.Temporal.Duration | null;
3440
3628
  sensitive?: boolean | null;
3629
+ proof?: DataIntegrityProof | URL | null;
3630
+ proofs?: (DataIntegrityProof | URL)[];
3441
3631
  actor?: Application | Group | Organization | Person | Service | URL | null;
3442
3632
  actors?: (Application | Group | Organization | Person | Service | URL)[];
3443
3633
  object?: Object | URL | null;
@@ -3629,6 +3819,8 @@ export declare class Event extends Object {
3629
3819
  mediaType?: string | null;
3630
3820
  duration?: dntShim.Temporal.Duration | null;
3631
3821
  sensitive?: boolean | null;
3822
+ proof?: DataIntegrityProof | URL | null;
3823
+ proofs?: (DataIntegrityProof | URL)[];
3632
3824
  }, { documentLoader, contextLoader, }?: {
3633
3825
  documentLoader?: DocumentLoader;
3634
3826
  contextLoader?: DocumentLoader;
@@ -3683,6 +3875,8 @@ export declare class Event extends Object {
3683
3875
  mediaType?: string | null;
3684
3876
  duration?: dntShim.Temporal.Duration | null;
3685
3877
  sensitive?: boolean | null;
3878
+ proof?: DataIntegrityProof | URL | null;
3879
+ proofs?: (DataIntegrityProof | URL)[];
3686
3880
  }, options?: {
3687
3881
  documentLoader?: DocumentLoader;
3688
3882
  contextLoader?: DocumentLoader;
@@ -3765,6 +3959,8 @@ export declare class Flag extends Activity {
3765
3959
  mediaType?: string | null;
3766
3960
  duration?: dntShim.Temporal.Duration | null;
3767
3961
  sensitive?: boolean | null;
3962
+ proof?: DataIntegrityProof | URL | null;
3963
+ proofs?: (DataIntegrityProof | URL)[];
3768
3964
  actor?: Application | Group | Organization | Person | Service | URL | null;
3769
3965
  actors?: (Application | Group | Organization | Person | Service | URL)[];
3770
3966
  object?: Object | URL | null;
@@ -3823,6 +4019,8 @@ export declare class Flag extends Activity {
3823
4019
  mediaType?: string | null;
3824
4020
  duration?: dntShim.Temporal.Duration | null;
3825
4021
  sensitive?: boolean | null;
4022
+ proof?: DataIntegrityProof | URL | null;
4023
+ proofs?: (DataIntegrityProof | URL)[];
3826
4024
  actor?: Application | Group | Organization | Person | Service | URL | null;
3827
4025
  actors?: (Application | Group | Organization | Person | Service | URL)[];
3828
4026
  object?: Object | URL | null;
@@ -3910,6 +4108,8 @@ export declare class Follow extends Activity {
3910
4108
  mediaType?: string | null;
3911
4109
  duration?: dntShim.Temporal.Duration | null;
3912
4110
  sensitive?: boolean | null;
4111
+ proof?: DataIntegrityProof | URL | null;
4112
+ proofs?: (DataIntegrityProof | URL)[];
3913
4113
  actor?: Application | Group | Organization | Person | Service | URL | null;
3914
4114
  actors?: (Application | Group | Organization | Person | Service | URL)[];
3915
4115
  object?: Object | URL | null;
@@ -3968,6 +4168,8 @@ export declare class Follow extends Activity {
3968
4168
  mediaType?: string | null;
3969
4169
  duration?: dntShim.Temporal.Duration | null;
3970
4170
  sensitive?: boolean | null;
4171
+ proof?: DataIntegrityProof | URL | null;
4172
+ proofs?: (DataIntegrityProof | URL)[];
3971
4173
  actor?: Application | Group | Organization | Person | Service | URL | null;
3972
4174
  actors?: (Application | Group | Organization | Person | Service | URL)[];
3973
4175
  object?: Object | URL | null;
@@ -4053,6 +4255,8 @@ export declare class Group extends Object {
4053
4255
  mediaType?: string | null;
4054
4256
  duration?: dntShim.Temporal.Duration | null;
4055
4257
  sensitive?: boolean | null;
4258
+ proof?: DataIntegrityProof | URL | null;
4259
+ proofs?: (DataIntegrityProof | URL)[];
4056
4260
  preferredUsername?: string | LanguageString | null;
4057
4261
  preferredUsernames?: (string | LanguageString)[];
4058
4262
  publicKey?: CryptographicKey | URL | null;
@@ -4125,6 +4329,8 @@ export declare class Group extends Object {
4125
4329
  mediaType?: string | null;
4126
4330
  duration?: dntShim.Temporal.Duration | null;
4127
4331
  sensitive?: boolean | null;
4332
+ proof?: DataIntegrityProof | URL | null;
4333
+ proofs?: (DataIntegrityProof | URL)[];
4128
4334
  preferredUsername?: string | LanguageString | null;
4129
4335
  preferredUsernames?: (string | LanguageString)[];
4130
4336
  publicKey?: CryptographicKey | URL | null;
@@ -4634,6 +4840,8 @@ export declare class Image extends Document {
4634
4840
  mediaType?: string | null;
4635
4841
  duration?: dntShim.Temporal.Duration | null;
4636
4842
  sensitive?: boolean | null;
4843
+ proof?: DataIntegrityProof | URL | null;
4844
+ proofs?: (DataIntegrityProof | URL)[];
4637
4845
  width?: number | null;
4638
4846
  height?: number | null;
4639
4847
  }, { documentLoader, contextLoader, }?: {
@@ -4690,6 +4898,8 @@ export declare class Image extends Document {
4690
4898
  mediaType?: string | null;
4691
4899
  duration?: dntShim.Temporal.Duration | null;
4692
4900
  sensitive?: boolean | null;
4901
+ proof?: DataIntegrityProof | URL | null;
4902
+ proofs?: (DataIntegrityProof | URL)[];
4693
4903
  width?: number | null;
4694
4904
  height?: number | null;
4695
4905
  }, options?: {
@@ -4774,6 +4984,8 @@ export declare class IntransitiveActivity extends Activity {
4774
4984
  mediaType?: string | null;
4775
4985
  duration?: dntShim.Temporal.Duration | null;
4776
4986
  sensitive?: boolean | null;
4987
+ proof?: DataIntegrityProof | URL | null;
4988
+ proofs?: (DataIntegrityProof | URL)[];
4777
4989
  actor?: Application | Group | Organization | Person | Service | URL | null;
4778
4990
  actors?: (Application | Group | Organization | Person | Service | URL)[];
4779
4991
  object?: Object | URL | null;
@@ -4832,6 +5044,8 @@ export declare class IntransitiveActivity extends Activity {
4832
5044
  mediaType?: string | null;
4833
5045
  duration?: dntShim.Temporal.Duration | null;
4834
5046
  sensitive?: boolean | null;
5047
+ proof?: DataIntegrityProof | URL | null;
5048
+ proofs?: (DataIntegrityProof | URL)[];
4835
5049
  actor?: Application | Group | Organization | Person | Service | URL | null;
4836
5050
  actors?: (Application | Group | Organization | Person | Service | URL)[];
4837
5051
  object?: Object | URL | null;
@@ -4917,6 +5131,8 @@ export declare class Like extends Activity {
4917
5131
  mediaType?: string | null;
4918
5132
  duration?: dntShim.Temporal.Duration | null;
4919
5133
  sensitive?: boolean | null;
5134
+ proof?: DataIntegrityProof | URL | null;
5135
+ proofs?: (DataIntegrityProof | URL)[];
4920
5136
  actor?: Application | Group | Organization | Person | Service | URL | null;
4921
5137
  actors?: (Application | Group | Organization | Person | Service | URL)[];
4922
5138
  object?: Object | URL | null;
@@ -4975,6 +5191,8 @@ export declare class Like extends Activity {
4975
5191
  mediaType?: string | null;
4976
5192
  duration?: dntShim.Temporal.Duration | null;
4977
5193
  sensitive?: boolean | null;
5194
+ proof?: DataIntegrityProof | URL | null;
5195
+ proofs?: (DataIntegrityProof | URL)[];
4978
5196
  actor?: Application | Group | Organization | Person | Service | URL | null;
4979
5197
  actors?: (Application | Group | Organization | Person | Service | URL)[];
4980
5198
  object?: Object | URL | null;
@@ -5130,6 +5348,8 @@ export declare class Note extends Object {
5130
5348
  mediaType?: string | null;
5131
5349
  duration?: dntShim.Temporal.Duration | null;
5132
5350
  sensitive?: boolean | null;
5351
+ proof?: DataIntegrityProof | URL | null;
5352
+ proofs?: (DataIntegrityProof | URL)[];
5133
5353
  }, { documentLoader, contextLoader, }?: {
5134
5354
  documentLoader?: DocumentLoader;
5135
5355
  contextLoader?: DocumentLoader;
@@ -5184,6 +5404,8 @@ export declare class Note extends Object {
5184
5404
  mediaType?: string | null;
5185
5405
  duration?: dntShim.Temporal.Duration | null;
5186
5406
  sensitive?: boolean | null;
5407
+ proof?: DataIntegrityProof | URL | null;
5408
+ proofs?: (DataIntegrityProof | URL)[];
5187
5409
  }, options?: {
5188
5410
  documentLoader?: DocumentLoader;
5189
5411
  contextLoader?: DocumentLoader;
@@ -5265,6 +5487,8 @@ export declare class OrderedCollection extends Collection {
5265
5487
  mediaType?: string | null;
5266
5488
  duration?: dntShim.Temporal.Duration | null;
5267
5489
  sensitive?: boolean | null;
5490
+ proof?: DataIntegrityProof | URL | null;
5491
+ proofs?: (DataIntegrityProof | URL)[];
5268
5492
  totalItems?: number | null;
5269
5493
  current?: CollectionPage | Link | URL | null;
5270
5494
  first?: CollectionPage | Link | URL | null;
@@ -5324,6 +5548,8 @@ export declare class OrderedCollection extends Collection {
5324
5548
  mediaType?: string | null;
5325
5549
  duration?: dntShim.Temporal.Duration | null;
5326
5550
  sensitive?: boolean | null;
5551
+ proof?: DataIntegrityProof | URL | null;
5552
+ proofs?: (DataIntegrityProof | URL)[];
5327
5553
  totalItems?: number | null;
5328
5554
  current?: CollectionPage | Link | URL | null;
5329
5555
  first?: CollectionPage | Link | URL | null;
@@ -5412,6 +5638,8 @@ export declare class OrderedCollectionPage extends CollectionPage {
5412
5638
  mediaType?: string | null;
5413
5639
  duration?: dntShim.Temporal.Duration | null;
5414
5640
  sensitive?: boolean | null;
5641
+ proof?: DataIntegrityProof | URL | null;
5642
+ proofs?: (DataIntegrityProof | URL)[];
5415
5643
  totalItems?: number | null;
5416
5644
  current?: CollectionPage | Link | URL | null;
5417
5645
  first?: CollectionPage | Link | URL | null;
@@ -5475,6 +5703,8 @@ export declare class OrderedCollectionPage extends CollectionPage {
5475
5703
  mediaType?: string | null;
5476
5704
  duration?: dntShim.Temporal.Duration | null;
5477
5705
  sensitive?: boolean | null;
5706
+ proof?: DataIntegrityProof | URL | null;
5707
+ proofs?: (DataIntegrityProof | URL)[];
5478
5708
  totalItems?: number | null;
5479
5709
  current?: CollectionPage | Link | URL | null;
5480
5710
  first?: CollectionPage | Link | URL | null;
@@ -5569,6 +5799,8 @@ export declare class Organization extends Object {
5569
5799
  mediaType?: string | null;
5570
5800
  duration?: dntShim.Temporal.Duration | null;
5571
5801
  sensitive?: boolean | null;
5802
+ proof?: DataIntegrityProof | URL | null;
5803
+ proofs?: (DataIntegrityProof | URL)[];
5572
5804
  preferredUsername?: string | LanguageString | null;
5573
5805
  preferredUsernames?: (string | LanguageString)[];
5574
5806
  publicKey?: CryptographicKey | URL | null;
@@ -5641,6 +5873,8 @@ export declare class Organization extends Object {
5641
5873
  mediaType?: string | null;
5642
5874
  duration?: dntShim.Temporal.Duration | null;
5643
5875
  sensitive?: boolean | null;
5876
+ proof?: DataIntegrityProof | URL | null;
5877
+ proofs?: (DataIntegrityProof | URL)[];
5644
5878
  preferredUsername?: string | LanguageString | null;
5645
5879
  preferredUsernames?: (string | LanguageString)[];
5646
5880
  publicKey?: CryptographicKey | URL | null;
@@ -5940,6 +6174,8 @@ export declare class Page extends Document {
5940
6174
  mediaType?: string | null;
5941
6175
  duration?: dntShim.Temporal.Duration | null;
5942
6176
  sensitive?: boolean | null;
6177
+ proof?: DataIntegrityProof | URL | null;
6178
+ proofs?: (DataIntegrityProof | URL)[];
5943
6179
  width?: number | null;
5944
6180
  height?: number | null;
5945
6181
  }, { documentLoader, contextLoader, }?: {
@@ -5996,6 +6232,8 @@ export declare class Page extends Document {
5996
6232
  mediaType?: string | null;
5997
6233
  duration?: dntShim.Temporal.Duration | null;
5998
6234
  sensitive?: boolean | null;
6235
+ proof?: DataIntegrityProof | URL | null;
6236
+ proofs?: (DataIntegrityProof | URL)[];
5999
6237
  width?: number | null;
6000
6238
  height?: number | null;
6001
6239
  }, options?: {
@@ -6079,6 +6317,8 @@ export declare class Person extends Object {
6079
6317
  mediaType?: string | null;
6080
6318
  duration?: dntShim.Temporal.Duration | null;
6081
6319
  sensitive?: boolean | null;
6320
+ proof?: DataIntegrityProof | URL | null;
6321
+ proofs?: (DataIntegrityProof | URL)[];
6082
6322
  preferredUsername?: string | LanguageString | null;
6083
6323
  preferredUsernames?: (string | LanguageString)[];
6084
6324
  publicKey?: CryptographicKey | URL | null;
@@ -6151,6 +6391,8 @@ export declare class Person extends Object {
6151
6391
  mediaType?: string | null;
6152
6392
  duration?: dntShim.Temporal.Duration | null;
6153
6393
  sensitive?: boolean | null;
6394
+ proof?: DataIntegrityProof | URL | null;
6395
+ proofs?: (DataIntegrityProof | URL)[];
6154
6396
  preferredUsername?: string | LanguageString | null;
6155
6397
  preferredUsernames?: (string | LanguageString)[];
6156
6398
  publicKey?: CryptographicKey | URL | null;
@@ -6453,6 +6695,8 @@ export declare class Place extends Object {
6453
6695
  mediaType?: string | null;
6454
6696
  duration?: dntShim.Temporal.Duration | null;
6455
6697
  sensitive?: boolean | null;
6698
+ proof?: DataIntegrityProof | URL | null;
6699
+ proofs?: (DataIntegrityProof | URL)[];
6456
6700
  accuracy?: number | null;
6457
6701
  altitude?: number | null;
6458
6702
  latitude?: number | null;
@@ -6513,6 +6757,8 @@ export declare class Place extends Object {
6513
6757
  mediaType?: string | null;
6514
6758
  duration?: dntShim.Temporal.Duration | null;
6515
6759
  sensitive?: boolean | null;
6760
+ proof?: DataIntegrityProof | URL | null;
6761
+ proofs?: (DataIntegrityProof | URL)[];
6516
6762
  accuracy?: number | null;
6517
6763
  altitude?: number | null;
6518
6764
  latitude?: number | null;
@@ -6630,6 +6876,8 @@ export declare class Profile extends Object {
6630
6876
  mediaType?: string | null;
6631
6877
  duration?: dntShim.Temporal.Duration | null;
6632
6878
  sensitive?: boolean | null;
6879
+ proof?: DataIntegrityProof | URL | null;
6880
+ proofs?: (DataIntegrityProof | URL)[];
6633
6881
  describes?: Object | URL | null;
6634
6882
  }, { documentLoader, contextLoader, }?: {
6635
6883
  documentLoader?: DocumentLoader;
@@ -6685,6 +6933,8 @@ export declare class Profile extends Object {
6685
6933
  mediaType?: string | null;
6686
6934
  duration?: dntShim.Temporal.Duration | null;
6687
6935
  sensitive?: boolean | null;
6936
+ proof?: DataIntegrityProof | URL | null;
6937
+ proofs?: (DataIntegrityProof | URL)[];
6688
6938
  describes?: Object | URL | null;
6689
6939
  }, options?: {
6690
6940
  documentLoader?: DocumentLoader;
@@ -6780,6 +7030,8 @@ export declare class Reject extends Activity {
6780
7030
  mediaType?: string | null;
6781
7031
  duration?: dntShim.Temporal.Duration | null;
6782
7032
  sensitive?: boolean | null;
7033
+ proof?: DataIntegrityProof | URL | null;
7034
+ proofs?: (DataIntegrityProof | URL)[];
6783
7035
  actor?: Application | Group | Organization | Person | Service | URL | null;
6784
7036
  actors?: (Application | Group | Organization | Person | Service | URL)[];
6785
7037
  object?: Object | URL | null;
@@ -6838,6 +7090,8 @@ export declare class Reject extends Activity {
6838
7090
  mediaType?: string | null;
6839
7091
  duration?: dntShim.Temporal.Duration | null;
6840
7092
  sensitive?: boolean | null;
7093
+ proof?: DataIntegrityProof | URL | null;
7094
+ proofs?: (DataIntegrityProof | URL)[];
6841
7095
  actor?: Application | Group | Organization | Person | Service | URL | null;
6842
7096
  actors?: (Application | Group | Organization | Person | Service | URL)[];
6843
7097
  object?: Object | URL | null;
@@ -6929,6 +7183,8 @@ export declare class Relationship extends Object {
6929
7183
  mediaType?: string | null;
6930
7184
  duration?: dntShim.Temporal.Duration | null;
6931
7185
  sensitive?: boolean | null;
7186
+ proof?: DataIntegrityProof | URL | null;
7187
+ proofs?: (DataIntegrityProof | URL)[];
6932
7188
  subject?: Object | URL | null;
6933
7189
  object?: Object | URL | null;
6934
7190
  objects?: (Object | URL)[];
@@ -6988,6 +7244,8 @@ export declare class Relationship extends Object {
6988
7244
  mediaType?: string | null;
6989
7245
  duration?: dntShim.Temporal.Duration | null;
6990
7246
  sensitive?: boolean | null;
7247
+ proof?: DataIntegrityProof | URL | null;
7248
+ proofs?: (DataIntegrityProof | URL)[];
6991
7249
  subject?: Object | URL | null;
6992
7250
  object?: Object | URL | null;
6993
7251
  objects?: (Object | URL)[];
@@ -7141,6 +7399,8 @@ export declare class Remove extends Activity {
7141
7399
  mediaType?: string | null;
7142
7400
  duration?: dntShim.Temporal.Duration | null;
7143
7401
  sensitive?: boolean | null;
7402
+ proof?: DataIntegrityProof | URL | null;
7403
+ proofs?: (DataIntegrityProof | URL)[];
7144
7404
  actor?: Application | Group | Organization | Person | Service | URL | null;
7145
7405
  actors?: (Application | Group | Organization | Person | Service | URL)[];
7146
7406
  object?: Object | URL | null;
@@ -7199,6 +7459,8 @@ export declare class Remove extends Activity {
7199
7459
  mediaType?: string | null;
7200
7460
  duration?: dntShim.Temporal.Duration | null;
7201
7461
  sensitive?: boolean | null;
7462
+ proof?: DataIntegrityProof | URL | null;
7463
+ proofs?: (DataIntegrityProof | URL)[];
7202
7464
  actor?: Application | Group | Organization | Person | Service | URL | null;
7203
7465
  actors?: (Application | Group | Organization | Person | Service | URL)[];
7204
7466
  object?: Object | URL | null;
@@ -7284,6 +7546,8 @@ export declare class Service extends Object {
7284
7546
  mediaType?: string | null;
7285
7547
  duration?: dntShim.Temporal.Duration | null;
7286
7548
  sensitive?: boolean | null;
7549
+ proof?: DataIntegrityProof | URL | null;
7550
+ proofs?: (DataIntegrityProof | URL)[];
7287
7551
  preferredUsername?: string | LanguageString | null;
7288
7552
  preferredUsernames?: (string | LanguageString)[];
7289
7553
  publicKey?: CryptographicKey | URL | null;
@@ -7356,6 +7620,8 @@ export declare class Service extends Object {
7356
7620
  mediaType?: string | null;
7357
7621
  duration?: dntShim.Temporal.Duration | null;
7358
7622
  sensitive?: boolean | null;
7623
+ proof?: DataIntegrityProof | URL | null;
7624
+ proofs?: (DataIntegrityProof | URL)[];
7359
7625
  preferredUsername?: string | LanguageString | null;
7360
7626
  preferredUsernames?: (string | LanguageString)[];
7361
7627
  publicKey?: CryptographicKey | URL | null;
@@ -7658,6 +7924,8 @@ export declare class Tombstone extends Object {
7658
7924
  mediaType?: string | null;
7659
7925
  duration?: dntShim.Temporal.Duration | null;
7660
7926
  sensitive?: boolean | null;
7927
+ proof?: DataIntegrityProof | URL | null;
7928
+ proofs?: (DataIntegrityProof | URL)[];
7661
7929
  deleted?: dntShim.Temporal.Instant | null;
7662
7930
  }, { documentLoader, contextLoader, }?: {
7663
7931
  documentLoader?: DocumentLoader;
@@ -7713,6 +7981,8 @@ export declare class Tombstone extends Object {
7713
7981
  mediaType?: string | null;
7714
7982
  duration?: dntShim.Temporal.Duration | null;
7715
7983
  sensitive?: boolean | null;
7984
+ proof?: DataIntegrityProof | URL | null;
7985
+ proofs?: (DataIntegrityProof | URL)[];
7716
7986
  deleted?: dntShim.Temporal.Instant | null;
7717
7987
  }, options?: {
7718
7988
  documentLoader?: DocumentLoader;
@@ -7804,6 +8074,8 @@ export declare class Undo extends Activity {
7804
8074
  mediaType?: string | null;
7805
8075
  duration?: dntShim.Temporal.Duration | null;
7806
8076
  sensitive?: boolean | null;
8077
+ proof?: DataIntegrityProof | URL | null;
8078
+ proofs?: (DataIntegrityProof | URL)[];
7807
8079
  actor?: Application | Group | Organization | Person | Service | URL | null;
7808
8080
  actors?: (Application | Group | Organization | Person | Service | URL)[];
7809
8081
  object?: Object | URL | null;
@@ -7862,6 +8134,8 @@ export declare class Undo extends Activity {
7862
8134
  mediaType?: string | null;
7863
8135
  duration?: dntShim.Temporal.Duration | null;
7864
8136
  sensitive?: boolean | null;
8137
+ proof?: DataIntegrityProof | URL | null;
8138
+ proofs?: (DataIntegrityProof | URL)[];
7865
8139
  actor?: Application | Group | Organization | Person | Service | URL | null;
7866
8140
  actors?: (Application | Group | Organization | Person | Service | URL)[];
7867
8141
  object?: Object | URL | null;
@@ -7950,6 +8224,8 @@ export declare class Update extends Activity {
7950
8224
  mediaType?: string | null;
7951
8225
  duration?: dntShim.Temporal.Duration | null;
7952
8226
  sensitive?: boolean | null;
8227
+ proof?: DataIntegrityProof | URL | null;
8228
+ proofs?: (DataIntegrityProof | URL)[];
7953
8229
  actor?: Application | Group | Organization | Person | Service | URL | null;
7954
8230
  actors?: (Application | Group | Organization | Person | Service | URL)[];
7955
8231
  object?: Object | URL | null;
@@ -8008,6 +8284,8 @@ export declare class Update extends Activity {
8008
8284
  mediaType?: string | null;
8009
8285
  duration?: dntShim.Temporal.Duration | null;
8010
8286
  sensitive?: boolean | null;
8287
+ proof?: DataIntegrityProof | URL | null;
8288
+ proofs?: (DataIntegrityProof | URL)[];
8011
8289
  actor?: Application | Group | Organization | Person | Service | URL | null;
8012
8290
  actors?: (Application | Group | Organization | Person | Service | URL)[];
8013
8291
  object?: Object | URL | null;
@@ -8092,6 +8370,8 @@ export declare class Video extends Document {
8092
8370
  mediaType?: string | null;
8093
8371
  duration?: dntShim.Temporal.Duration | null;
8094
8372
  sensitive?: boolean | null;
8373
+ proof?: DataIntegrityProof | URL | null;
8374
+ proofs?: (DataIntegrityProof | URL)[];
8095
8375
  width?: number | null;
8096
8376
  height?: number | null;
8097
8377
  }, { documentLoader, contextLoader, }?: {
@@ -8148,6 +8428,8 @@ export declare class Video extends Document {
8148
8428
  mediaType?: string | null;
8149
8429
  duration?: dntShim.Temporal.Duration | null;
8150
8430
  sensitive?: boolean | null;
8431
+ proof?: DataIntegrityProof | URL | null;
8432
+ proofs?: (DataIntegrityProof | URL)[];
8151
8433
  width?: number | null;
8152
8434
  height?: number | null;
8153
8435
  }, options?: {