@fedify/fedify 0.10.0-dev.197 → 0.10.0-dev.199
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGES.md +13 -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 +419 -162
- package/package.json +1 -1
- package/types/vocab/vocab.d.ts +232 -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.
|
@@ -565,6 +593,7 @@ export declare class Object {
|
|
565
593
|
toJsonLd(options?: {
|
566
594
|
expand?: boolean;
|
567
595
|
contextLoader?: DocumentLoader;
|
596
|
+
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
568
597
|
}): Promise<unknown>;
|
569
598
|
/**
|
570
599
|
* Converts a JSON-LD structure to an object of this type.
|
@@ -634,6 +663,8 @@ export declare class Emoji extends Object {
|
|
634
663
|
mediaType?: string | null;
|
635
664
|
duration?: dntShim.Temporal.Duration | null;
|
636
665
|
sensitive?: boolean | null;
|
666
|
+
proof?: DataIntegrityProof | URL | null;
|
667
|
+
proofs?: (DataIntegrityProof | URL)[];
|
637
668
|
}, { documentLoader, contextLoader, }?: {
|
638
669
|
documentLoader?: DocumentLoader;
|
639
670
|
contextLoader?: DocumentLoader;
|
@@ -688,6 +719,8 @@ export declare class Emoji extends Object {
|
|
688
719
|
mediaType?: string | null;
|
689
720
|
duration?: dntShim.Temporal.Duration | null;
|
690
721
|
sensitive?: boolean | null;
|
722
|
+
proof?: DataIntegrityProof | URL | null;
|
723
|
+
proofs?: (DataIntegrityProof | URL)[];
|
691
724
|
}, options?: {
|
692
725
|
documentLoader?: DocumentLoader;
|
693
726
|
contextLoader?: DocumentLoader;
|
@@ -699,6 +732,7 @@ export declare class Emoji extends Object {
|
|
699
732
|
toJsonLd(options?: {
|
700
733
|
expand?: boolean;
|
701
734
|
contextLoader?: DocumentLoader;
|
735
|
+
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
702
736
|
}): Promise<unknown>;
|
703
737
|
/**
|
704
738
|
* Converts a JSON-LD structure to an object of this type.
|
@@ -763,6 +797,7 @@ export declare class PropertyValue {
|
|
763
797
|
toJsonLd(options?: {
|
764
798
|
expand?: boolean;
|
765
799
|
contextLoader?: DocumentLoader;
|
800
|
+
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
766
801
|
}): Promise<unknown>;
|
767
802
|
/**
|
768
803
|
* Converts a JSON-LD structure to an object of this type.
|
@@ -861,6 +896,7 @@ export declare class DataIntegrityProof {
|
|
861
896
|
toJsonLd(options?: {
|
862
897
|
expand?: boolean;
|
863
898
|
contextLoader?: DocumentLoader;
|
899
|
+
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
864
900
|
}): Promise<unknown>;
|
865
901
|
/**
|
866
902
|
* Converts a JSON-LD structure to an object of this type.
|
@@ -934,6 +970,7 @@ export declare class CryptographicKey {
|
|
934
970
|
toJsonLd(options?: {
|
935
971
|
expand?: boolean;
|
936
972
|
contextLoader?: DocumentLoader;
|
973
|
+
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
937
974
|
}): Promise<unknown>;
|
938
975
|
/**
|
939
976
|
* Converts a JSON-LD structure to an object of this type.
|
@@ -1013,6 +1050,7 @@ export declare class Multikey {
|
|
1013
1050
|
toJsonLd(options?: {
|
1014
1051
|
expand?: boolean;
|
1015
1052
|
contextLoader?: DocumentLoader;
|
1053
|
+
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
1016
1054
|
}): Promise<unknown>;
|
1017
1055
|
/**
|
1018
1056
|
* Converts a JSON-LD structure to an object of this type.
|
@@ -1087,6 +1125,8 @@ export declare class Activity extends Object {
|
|
1087
1125
|
mediaType?: string | null;
|
1088
1126
|
duration?: dntShim.Temporal.Duration | null;
|
1089
1127
|
sensitive?: boolean | null;
|
1128
|
+
proof?: DataIntegrityProof | URL | null;
|
1129
|
+
proofs?: (DataIntegrityProof | URL)[];
|
1090
1130
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
1091
1131
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
1092
1132
|
object?: Object | URL | null;
|
@@ -1145,6 +1185,8 @@ export declare class Activity extends Object {
|
|
1145
1185
|
mediaType?: string | null;
|
1146
1186
|
duration?: dntShim.Temporal.Duration | null;
|
1147
1187
|
sensitive?: boolean | null;
|
1188
|
+
proof?: DataIntegrityProof | URL | null;
|
1189
|
+
proofs?: (DataIntegrityProof | URL)[];
|
1148
1190
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
1149
1191
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
1150
1192
|
object?: Object | URL | null;
|
@@ -1216,6 +1258,7 @@ export declare class Activity extends Object {
|
|
1216
1258
|
toJsonLd(options?: {
|
1217
1259
|
expand?: boolean;
|
1218
1260
|
contextLoader?: DocumentLoader;
|
1261
|
+
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
1219
1262
|
}): Promise<unknown>;
|
1220
1263
|
/**
|
1221
1264
|
* Converts a JSON-LD structure to an object of this type.
|
@@ -1287,6 +1330,8 @@ export declare class Accept extends Activity {
|
|
1287
1330
|
mediaType?: string | null;
|
1288
1331
|
duration?: dntShim.Temporal.Duration | null;
|
1289
1332
|
sensitive?: boolean | null;
|
1333
|
+
proof?: DataIntegrityProof | URL | null;
|
1334
|
+
proofs?: (DataIntegrityProof | URL)[];
|
1290
1335
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
1291
1336
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
1292
1337
|
object?: Object | URL | null;
|
@@ -1345,6 +1390,8 @@ export declare class Accept extends Activity {
|
|
1345
1390
|
mediaType?: string | null;
|
1346
1391
|
duration?: dntShim.Temporal.Duration | null;
|
1347
1392
|
sensitive?: boolean | null;
|
1393
|
+
proof?: DataIntegrityProof | URL | null;
|
1394
|
+
proofs?: (DataIntegrityProof | URL)[];
|
1348
1395
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
1349
1396
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
1350
1397
|
object?: Object | URL | null;
|
@@ -1360,6 +1407,7 @@ export declare class Accept extends Activity {
|
|
1360
1407
|
toJsonLd(options?: {
|
1361
1408
|
expand?: boolean;
|
1362
1409
|
contextLoader?: DocumentLoader;
|
1410
|
+
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
1363
1411
|
}): Promise<unknown>;
|
1364
1412
|
/**
|
1365
1413
|
* Converts a JSON-LD structure to an object of this type.
|
@@ -1432,6 +1480,8 @@ export declare class Add extends Activity {
|
|
1432
1480
|
mediaType?: string | null;
|
1433
1481
|
duration?: dntShim.Temporal.Duration | null;
|
1434
1482
|
sensitive?: boolean | null;
|
1483
|
+
proof?: DataIntegrityProof | URL | null;
|
1484
|
+
proofs?: (DataIntegrityProof | URL)[];
|
1435
1485
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
1436
1486
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
1437
1487
|
object?: Object | URL | null;
|
@@ -1490,6 +1540,8 @@ export declare class Add extends Activity {
|
|
1490
1540
|
mediaType?: string | null;
|
1491
1541
|
duration?: dntShim.Temporal.Duration | null;
|
1492
1542
|
sensitive?: boolean | null;
|
1543
|
+
proof?: DataIntegrityProof | URL | null;
|
1544
|
+
proofs?: (DataIntegrityProof | URL)[];
|
1493
1545
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
1494
1546
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
1495
1547
|
object?: Object | URL | null;
|
@@ -1505,6 +1557,7 @@ export declare class Add extends Activity {
|
|
1505
1557
|
toJsonLd(options?: {
|
1506
1558
|
expand?: boolean;
|
1507
1559
|
contextLoader?: DocumentLoader;
|
1560
|
+
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
1508
1561
|
}): Promise<unknown>;
|
1509
1562
|
/**
|
1510
1563
|
* Converts a JSON-LD structure to an object of this type.
|
@@ -1576,6 +1629,8 @@ export declare class Announce extends Activity {
|
|
1576
1629
|
mediaType?: string | null;
|
1577
1630
|
duration?: dntShim.Temporal.Duration | null;
|
1578
1631
|
sensitive?: boolean | null;
|
1632
|
+
proof?: DataIntegrityProof | URL | null;
|
1633
|
+
proofs?: (DataIntegrityProof | URL)[];
|
1579
1634
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
1580
1635
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
1581
1636
|
object?: Object | URL | null;
|
@@ -1634,6 +1689,8 @@ export declare class Announce extends Activity {
|
|
1634
1689
|
mediaType?: string | null;
|
1635
1690
|
duration?: dntShim.Temporal.Duration | null;
|
1636
1691
|
sensitive?: boolean | null;
|
1692
|
+
proof?: DataIntegrityProof | URL | null;
|
1693
|
+
proofs?: (DataIntegrityProof | URL)[];
|
1637
1694
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
1638
1695
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
1639
1696
|
object?: Object | URL | null;
|
@@ -1649,6 +1706,7 @@ export declare class Announce extends Activity {
|
|
1649
1706
|
toJsonLd(options?: {
|
1650
1707
|
expand?: boolean;
|
1651
1708
|
contextLoader?: DocumentLoader;
|
1709
|
+
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
1652
1710
|
}): Promise<unknown>;
|
1653
1711
|
/**
|
1654
1712
|
* Converts a JSON-LD structure to an object of this type.
|
@@ -1719,6 +1777,8 @@ export declare class Application extends Object {
|
|
1719
1777
|
mediaType?: string | null;
|
1720
1778
|
duration?: dntShim.Temporal.Duration | null;
|
1721
1779
|
sensitive?: boolean | null;
|
1780
|
+
proof?: DataIntegrityProof | URL | null;
|
1781
|
+
proofs?: (DataIntegrityProof | URL)[];
|
1722
1782
|
preferredUsername?: string | LanguageString | null;
|
1723
1783
|
preferredUsernames?: (string | LanguageString)[];
|
1724
1784
|
publicKey?: CryptographicKey | URL | null;
|
@@ -1791,6 +1851,8 @@ export declare class Application extends Object {
|
|
1791
1851
|
mediaType?: string | null;
|
1792
1852
|
duration?: dntShim.Temporal.Duration | null;
|
1793
1853
|
sensitive?: boolean | null;
|
1854
|
+
proof?: DataIntegrityProof | URL | null;
|
1855
|
+
proofs?: (DataIntegrityProof | URL)[];
|
1794
1856
|
preferredUsername?: string | LanguageString | null;
|
1795
1857
|
preferredUsernames?: (string | LanguageString)[];
|
1796
1858
|
publicKey?: CryptographicKey | URL | null;
|
@@ -2021,6 +2083,7 @@ export declare class Application extends Object {
|
|
2021
2083
|
toJsonLd(options?: {
|
2022
2084
|
expand?: boolean;
|
2023
2085
|
contextLoader?: DocumentLoader;
|
2086
|
+
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
2024
2087
|
}): Promise<unknown>;
|
2025
2088
|
/**
|
2026
2089
|
* Converts a JSON-LD structure to an object of this type.
|
@@ -2090,6 +2153,8 @@ export declare class Article extends Object {
|
|
2090
2153
|
mediaType?: string | null;
|
2091
2154
|
duration?: dntShim.Temporal.Duration | null;
|
2092
2155
|
sensitive?: boolean | null;
|
2156
|
+
proof?: DataIntegrityProof | URL | null;
|
2157
|
+
proofs?: (DataIntegrityProof | URL)[];
|
2093
2158
|
}, { documentLoader, contextLoader, }?: {
|
2094
2159
|
documentLoader?: DocumentLoader;
|
2095
2160
|
contextLoader?: DocumentLoader;
|
@@ -2144,6 +2209,8 @@ export declare class Article extends Object {
|
|
2144
2209
|
mediaType?: string | null;
|
2145
2210
|
duration?: dntShim.Temporal.Duration | null;
|
2146
2211
|
sensitive?: boolean | null;
|
2212
|
+
proof?: DataIntegrityProof | URL | null;
|
2213
|
+
proofs?: (DataIntegrityProof | URL)[];
|
2147
2214
|
}, options?: {
|
2148
2215
|
documentLoader?: DocumentLoader;
|
2149
2216
|
contextLoader?: DocumentLoader;
|
@@ -2155,6 +2222,7 @@ export declare class Article extends Object {
|
|
2155
2222
|
toJsonLd(options?: {
|
2156
2223
|
expand?: boolean;
|
2157
2224
|
contextLoader?: DocumentLoader;
|
2225
|
+
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
2158
2226
|
}): Promise<unknown>;
|
2159
2227
|
/**
|
2160
2228
|
* Converts a JSON-LD structure to an object of this type.
|
@@ -2225,6 +2293,8 @@ export declare class Document extends Object {
|
|
2225
2293
|
mediaType?: string | null;
|
2226
2294
|
duration?: dntShim.Temporal.Duration | null;
|
2227
2295
|
sensitive?: boolean | null;
|
2296
|
+
proof?: DataIntegrityProof | URL | null;
|
2297
|
+
proofs?: (DataIntegrityProof | URL)[];
|
2228
2298
|
width?: number | null;
|
2229
2299
|
height?: number | null;
|
2230
2300
|
}, { documentLoader, contextLoader, }?: {
|
@@ -2281,6 +2351,8 @@ export declare class Document extends Object {
|
|
2281
2351
|
mediaType?: string | null;
|
2282
2352
|
duration?: dntShim.Temporal.Duration | null;
|
2283
2353
|
sensitive?: boolean | null;
|
2354
|
+
proof?: DataIntegrityProof | URL | null;
|
2355
|
+
proofs?: (DataIntegrityProof | URL)[];
|
2284
2356
|
width?: number | null;
|
2285
2357
|
height?: number | null;
|
2286
2358
|
}, options?: {
|
@@ -2302,6 +2374,7 @@ export declare class Document extends Object {
|
|
2302
2374
|
toJsonLd(options?: {
|
2303
2375
|
expand?: boolean;
|
2304
2376
|
contextLoader?: DocumentLoader;
|
2377
|
+
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
2305
2378
|
}): Promise<unknown>;
|
2306
2379
|
/**
|
2307
2380
|
* Converts a JSON-LD structure to an object of this type.
|
@@ -2371,6 +2444,8 @@ export declare class Audio extends Document {
|
|
2371
2444
|
mediaType?: string | null;
|
2372
2445
|
duration?: dntShim.Temporal.Duration | null;
|
2373
2446
|
sensitive?: boolean | null;
|
2447
|
+
proof?: DataIntegrityProof | URL | null;
|
2448
|
+
proofs?: (DataIntegrityProof | URL)[];
|
2374
2449
|
width?: number | null;
|
2375
2450
|
height?: number | null;
|
2376
2451
|
}, { documentLoader, contextLoader, }?: {
|
@@ -2427,6 +2502,8 @@ export declare class Audio extends Document {
|
|
2427
2502
|
mediaType?: string | null;
|
2428
2503
|
duration?: dntShim.Temporal.Duration | null;
|
2429
2504
|
sensitive?: boolean | null;
|
2505
|
+
proof?: DataIntegrityProof | URL | null;
|
2506
|
+
proofs?: (DataIntegrityProof | URL)[];
|
2430
2507
|
width?: number | null;
|
2431
2508
|
height?: number | null;
|
2432
2509
|
}, options?: {
|
@@ -2440,6 +2517,7 @@ export declare class Audio extends Document {
|
|
2440
2517
|
toJsonLd(options?: {
|
2441
2518
|
expand?: boolean;
|
2442
2519
|
contextLoader?: DocumentLoader;
|
2520
|
+
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
2443
2521
|
}): Promise<unknown>;
|
2444
2522
|
/**
|
2445
2523
|
* Converts a JSON-LD structure to an object of this type.
|
@@ -2510,6 +2588,8 @@ export declare class Ignore extends Activity {
|
|
2510
2588
|
mediaType?: string | null;
|
2511
2589
|
duration?: dntShim.Temporal.Duration | null;
|
2512
2590
|
sensitive?: boolean | null;
|
2591
|
+
proof?: DataIntegrityProof | URL | null;
|
2592
|
+
proofs?: (DataIntegrityProof | URL)[];
|
2513
2593
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
2514
2594
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
2515
2595
|
object?: Object | URL | null;
|
@@ -2568,6 +2648,8 @@ export declare class Ignore extends Activity {
|
|
2568
2648
|
mediaType?: string | null;
|
2569
2649
|
duration?: dntShim.Temporal.Duration | null;
|
2570
2650
|
sensitive?: boolean | null;
|
2651
|
+
proof?: DataIntegrityProof | URL | null;
|
2652
|
+
proofs?: (DataIntegrityProof | URL)[];
|
2571
2653
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
2572
2654
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
2573
2655
|
object?: Object | URL | null;
|
@@ -2583,6 +2665,7 @@ export declare class Ignore extends Activity {
|
|
2583
2665
|
toJsonLd(options?: {
|
2584
2666
|
expand?: boolean;
|
2585
2667
|
contextLoader?: DocumentLoader;
|
2668
|
+
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
2586
2669
|
}): Promise<unknown>;
|
2587
2670
|
/**
|
2588
2671
|
* Converts a JSON-LD structure to an object of this type.
|
@@ -2655,6 +2738,8 @@ export declare class Block extends Ignore {
|
|
2655
2738
|
mediaType?: string | null;
|
2656
2739
|
duration?: dntShim.Temporal.Duration | null;
|
2657
2740
|
sensitive?: boolean | null;
|
2741
|
+
proof?: DataIntegrityProof | URL | null;
|
2742
|
+
proofs?: (DataIntegrityProof | URL)[];
|
2658
2743
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
2659
2744
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
2660
2745
|
object?: Object | URL | null;
|
@@ -2713,6 +2798,8 @@ export declare class Block extends Ignore {
|
|
2713
2798
|
mediaType?: string | null;
|
2714
2799
|
duration?: dntShim.Temporal.Duration | null;
|
2715
2800
|
sensitive?: boolean | null;
|
2801
|
+
proof?: DataIntegrityProof | URL | null;
|
2802
|
+
proofs?: (DataIntegrityProof | URL)[];
|
2716
2803
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
2717
2804
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
2718
2805
|
object?: Object | URL | null;
|
@@ -2728,6 +2815,7 @@ export declare class Block extends Ignore {
|
|
2728
2815
|
toJsonLd(options?: {
|
2729
2816
|
expand?: boolean;
|
2730
2817
|
contextLoader?: DocumentLoader;
|
2818
|
+
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
2731
2819
|
}): Promise<unknown>;
|
2732
2820
|
/**
|
2733
2821
|
* Converts a JSON-LD structure to an object of this type.
|
@@ -2802,6 +2890,8 @@ export declare class Collection extends Object {
|
|
2802
2890
|
mediaType?: string | null;
|
2803
2891
|
duration?: dntShim.Temporal.Duration | null;
|
2804
2892
|
sensitive?: boolean | null;
|
2893
|
+
proof?: DataIntegrityProof | URL | null;
|
2894
|
+
proofs?: (DataIntegrityProof | URL)[];
|
2805
2895
|
totalItems?: number | null;
|
2806
2896
|
current?: CollectionPage | Link | URL | null;
|
2807
2897
|
first?: CollectionPage | Link | URL | null;
|
@@ -2861,6 +2951,8 @@ export declare class Collection extends Object {
|
|
2861
2951
|
mediaType?: string | null;
|
2862
2952
|
duration?: dntShim.Temporal.Duration | null;
|
2863
2953
|
sensitive?: boolean | null;
|
2954
|
+
proof?: DataIntegrityProof | URL | null;
|
2955
|
+
proofs?: (DataIntegrityProof | URL)[];
|
2864
2956
|
totalItems?: number | null;
|
2865
2957
|
current?: CollectionPage | Link | URL | null;
|
2866
2958
|
first?: CollectionPage | Link | URL | null;
|
@@ -2934,6 +3026,7 @@ export declare class Collection extends Object {
|
|
2934
3026
|
toJsonLd(options?: {
|
2935
3027
|
expand?: boolean;
|
2936
3028
|
contextLoader?: DocumentLoader;
|
3029
|
+
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
2937
3030
|
}): Promise<unknown>;
|
2938
3031
|
/**
|
2939
3032
|
* Converts a JSON-LD structure to an object of this type.
|
@@ -3006,6 +3099,8 @@ export declare class CollectionPage extends Collection {
|
|
3006
3099
|
mediaType?: string | null;
|
3007
3100
|
duration?: dntShim.Temporal.Duration | null;
|
3008
3101
|
sensitive?: boolean | null;
|
3102
|
+
proof?: DataIntegrityProof | URL | null;
|
3103
|
+
proofs?: (DataIntegrityProof | URL)[];
|
3009
3104
|
totalItems?: number | null;
|
3010
3105
|
current?: CollectionPage | Link | URL | null;
|
3011
3106
|
first?: CollectionPage | Link | URL | null;
|
@@ -3068,6 +3163,8 @@ export declare class CollectionPage extends Collection {
|
|
3068
3163
|
mediaType?: string | null;
|
3069
3164
|
duration?: dntShim.Temporal.Duration | null;
|
3070
3165
|
sensitive?: boolean | null;
|
3166
|
+
proof?: DataIntegrityProof | URL | null;
|
3167
|
+
proofs?: (DataIntegrityProof | URL)[];
|
3071
3168
|
totalItems?: number | null;
|
3072
3169
|
current?: CollectionPage | Link | URL | null;
|
3073
3170
|
first?: CollectionPage | Link | URL | null;
|
@@ -3124,6 +3221,7 @@ export declare class CollectionPage extends Collection {
|
|
3124
3221
|
toJsonLd(options?: {
|
3125
3222
|
expand?: boolean;
|
3126
3223
|
contextLoader?: DocumentLoader;
|
3224
|
+
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
3127
3225
|
}): Promise<unknown>;
|
3128
3226
|
/**
|
3129
3227
|
* Converts a JSON-LD structure to an object of this type.
|
@@ -3193,6 +3291,8 @@ export declare class Create extends Activity {
|
|
3193
3291
|
mediaType?: string | null;
|
3194
3292
|
duration?: dntShim.Temporal.Duration | null;
|
3195
3293
|
sensitive?: boolean | null;
|
3294
|
+
proof?: DataIntegrityProof | URL | null;
|
3295
|
+
proofs?: (DataIntegrityProof | URL)[];
|
3196
3296
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
3197
3297
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
3198
3298
|
object?: Object | URL | null;
|
@@ -3251,6 +3351,8 @@ export declare class Create extends Activity {
|
|
3251
3351
|
mediaType?: string | null;
|
3252
3352
|
duration?: dntShim.Temporal.Duration | null;
|
3253
3353
|
sensitive?: boolean | null;
|
3354
|
+
proof?: DataIntegrityProof | URL | null;
|
3355
|
+
proofs?: (DataIntegrityProof | URL)[];
|
3254
3356
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
3255
3357
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
3256
3358
|
object?: Object | URL | null;
|
@@ -3266,6 +3368,7 @@ export declare class Create extends Activity {
|
|
3266
3368
|
toJsonLd(options?: {
|
3267
3369
|
expand?: boolean;
|
3268
3370
|
contextLoader?: DocumentLoader;
|
3371
|
+
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
3269
3372
|
}): Promise<unknown>;
|
3270
3373
|
/**
|
3271
3374
|
* Converts a JSON-LD structure to an object of this type.
|
@@ -3336,6 +3439,8 @@ export declare class Delete extends Activity {
|
|
3336
3439
|
mediaType?: string | null;
|
3337
3440
|
duration?: dntShim.Temporal.Duration | null;
|
3338
3441
|
sensitive?: boolean | null;
|
3442
|
+
proof?: DataIntegrityProof | URL | null;
|
3443
|
+
proofs?: (DataIntegrityProof | URL)[];
|
3339
3444
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
3340
3445
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
3341
3446
|
object?: Object | URL | null;
|
@@ -3394,6 +3499,8 @@ export declare class Delete extends Activity {
|
|
3394
3499
|
mediaType?: string | null;
|
3395
3500
|
duration?: dntShim.Temporal.Duration | null;
|
3396
3501
|
sensitive?: boolean | null;
|
3502
|
+
proof?: DataIntegrityProof | URL | null;
|
3503
|
+
proofs?: (DataIntegrityProof | URL)[];
|
3397
3504
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
3398
3505
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
3399
3506
|
object?: Object | URL | null;
|
@@ -3409,6 +3516,7 @@ export declare class Delete extends Activity {
|
|
3409
3516
|
toJsonLd(options?: {
|
3410
3517
|
expand?: boolean;
|
3411
3518
|
contextLoader?: DocumentLoader;
|
3519
|
+
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
3412
3520
|
}): Promise<unknown>;
|
3413
3521
|
/**
|
3414
3522
|
* Converts a JSON-LD structure to an object of this type.
|
@@ -3478,6 +3586,8 @@ export declare class Dislike extends Activity {
|
|
3478
3586
|
mediaType?: string | null;
|
3479
3587
|
duration?: dntShim.Temporal.Duration | null;
|
3480
3588
|
sensitive?: boolean | null;
|
3589
|
+
proof?: DataIntegrityProof | URL | null;
|
3590
|
+
proofs?: (DataIntegrityProof | URL)[];
|
3481
3591
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
3482
3592
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
3483
3593
|
object?: Object | URL | null;
|
@@ -3536,6 +3646,8 @@ export declare class Dislike extends Activity {
|
|
3536
3646
|
mediaType?: string | null;
|
3537
3647
|
duration?: dntShim.Temporal.Duration | null;
|
3538
3648
|
sensitive?: boolean | null;
|
3649
|
+
proof?: DataIntegrityProof | URL | null;
|
3650
|
+
proofs?: (DataIntegrityProof | URL)[];
|
3539
3651
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
3540
3652
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
3541
3653
|
object?: Object | URL | null;
|
@@ -3551,6 +3663,7 @@ export declare class Dislike extends Activity {
|
|
3551
3663
|
toJsonLd(options?: {
|
3552
3664
|
expand?: boolean;
|
3553
3665
|
contextLoader?: DocumentLoader;
|
3666
|
+
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
3554
3667
|
}): Promise<unknown>;
|
3555
3668
|
/**
|
3556
3669
|
* Converts a JSON-LD structure to an object of this type.
|
@@ -3658,6 +3771,7 @@ export declare class Endpoints {
|
|
3658
3771
|
toJsonLd(options?: {
|
3659
3772
|
expand?: boolean;
|
3660
3773
|
contextLoader?: DocumentLoader;
|
3774
|
+
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
3661
3775
|
}): Promise<unknown>;
|
3662
3776
|
/**
|
3663
3777
|
* Converts a JSON-LD structure to an object of this type.
|
@@ -3727,6 +3841,8 @@ export declare class Event extends Object {
|
|
3727
3841
|
mediaType?: string | null;
|
3728
3842
|
duration?: dntShim.Temporal.Duration | null;
|
3729
3843
|
sensitive?: boolean | null;
|
3844
|
+
proof?: DataIntegrityProof | URL | null;
|
3845
|
+
proofs?: (DataIntegrityProof | URL)[];
|
3730
3846
|
}, { documentLoader, contextLoader, }?: {
|
3731
3847
|
documentLoader?: DocumentLoader;
|
3732
3848
|
contextLoader?: DocumentLoader;
|
@@ -3781,6 +3897,8 @@ export declare class Event extends Object {
|
|
3781
3897
|
mediaType?: string | null;
|
3782
3898
|
duration?: dntShim.Temporal.Duration | null;
|
3783
3899
|
sensitive?: boolean | null;
|
3900
|
+
proof?: DataIntegrityProof | URL | null;
|
3901
|
+
proofs?: (DataIntegrityProof | URL)[];
|
3784
3902
|
}, options?: {
|
3785
3903
|
documentLoader?: DocumentLoader;
|
3786
3904
|
contextLoader?: DocumentLoader;
|
@@ -3792,6 +3910,7 @@ export declare class Event extends Object {
|
|
3792
3910
|
toJsonLd(options?: {
|
3793
3911
|
expand?: boolean;
|
3794
3912
|
contextLoader?: DocumentLoader;
|
3913
|
+
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
3795
3914
|
}): Promise<unknown>;
|
3796
3915
|
/**
|
3797
3916
|
* Converts a JSON-LD structure to an object of this type.
|
@@ -3863,6 +3982,8 @@ export declare class Flag extends Activity {
|
|
3863
3982
|
mediaType?: string | null;
|
3864
3983
|
duration?: dntShim.Temporal.Duration | null;
|
3865
3984
|
sensitive?: boolean | null;
|
3985
|
+
proof?: DataIntegrityProof | URL | null;
|
3986
|
+
proofs?: (DataIntegrityProof | URL)[];
|
3866
3987
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
3867
3988
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
3868
3989
|
object?: Object | URL | null;
|
@@ -3921,6 +4042,8 @@ export declare class Flag extends Activity {
|
|
3921
4042
|
mediaType?: string | null;
|
3922
4043
|
duration?: dntShim.Temporal.Duration | null;
|
3923
4044
|
sensitive?: boolean | null;
|
4045
|
+
proof?: DataIntegrityProof | URL | null;
|
4046
|
+
proofs?: (DataIntegrityProof | URL)[];
|
3924
4047
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
3925
4048
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
3926
4049
|
object?: Object | URL | null;
|
@@ -3936,6 +4059,7 @@ export declare class Flag extends Activity {
|
|
3936
4059
|
toJsonLd(options?: {
|
3937
4060
|
expand?: boolean;
|
3938
4061
|
contextLoader?: DocumentLoader;
|
4062
|
+
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
3939
4063
|
}): Promise<unknown>;
|
3940
4064
|
/**
|
3941
4065
|
* Converts a JSON-LD structure to an object of this type.
|
@@ -4008,6 +4132,8 @@ export declare class Follow extends Activity {
|
|
4008
4132
|
mediaType?: string | null;
|
4009
4133
|
duration?: dntShim.Temporal.Duration | null;
|
4010
4134
|
sensitive?: boolean | null;
|
4135
|
+
proof?: DataIntegrityProof | URL | null;
|
4136
|
+
proofs?: (DataIntegrityProof | URL)[];
|
4011
4137
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
4012
4138
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
4013
4139
|
object?: Object | URL | null;
|
@@ -4066,6 +4192,8 @@ export declare class Follow extends Activity {
|
|
4066
4192
|
mediaType?: string | null;
|
4067
4193
|
duration?: dntShim.Temporal.Duration | null;
|
4068
4194
|
sensitive?: boolean | null;
|
4195
|
+
proof?: DataIntegrityProof | URL | null;
|
4196
|
+
proofs?: (DataIntegrityProof | URL)[];
|
4069
4197
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
4070
4198
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
4071
4199
|
object?: Object | URL | null;
|
@@ -4081,6 +4209,7 @@ export declare class Follow extends Activity {
|
|
4081
4209
|
toJsonLd(options?: {
|
4082
4210
|
expand?: boolean;
|
4083
4211
|
contextLoader?: DocumentLoader;
|
4212
|
+
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
4084
4213
|
}): Promise<unknown>;
|
4085
4214
|
/**
|
4086
4215
|
* Converts a JSON-LD structure to an object of this type.
|
@@ -4151,6 +4280,8 @@ export declare class Group extends Object {
|
|
4151
4280
|
mediaType?: string | null;
|
4152
4281
|
duration?: dntShim.Temporal.Duration | null;
|
4153
4282
|
sensitive?: boolean | null;
|
4283
|
+
proof?: DataIntegrityProof | URL | null;
|
4284
|
+
proofs?: (DataIntegrityProof | URL)[];
|
4154
4285
|
preferredUsername?: string | LanguageString | null;
|
4155
4286
|
preferredUsernames?: (string | LanguageString)[];
|
4156
4287
|
publicKey?: CryptographicKey | URL | null;
|
@@ -4223,6 +4354,8 @@ export declare class Group extends Object {
|
|
4223
4354
|
mediaType?: string | null;
|
4224
4355
|
duration?: dntShim.Temporal.Duration | null;
|
4225
4356
|
sensitive?: boolean | null;
|
4357
|
+
proof?: DataIntegrityProof | URL | null;
|
4358
|
+
proofs?: (DataIntegrityProof | URL)[];
|
4226
4359
|
preferredUsername?: string | LanguageString | null;
|
4227
4360
|
preferredUsernames?: (string | LanguageString)[];
|
4228
4361
|
publicKey?: CryptographicKey | URL | null;
|
@@ -4453,6 +4586,7 @@ export declare class Group extends Object {
|
|
4453
4586
|
toJsonLd(options?: {
|
4454
4587
|
expand?: boolean;
|
4455
4588
|
contextLoader?: DocumentLoader;
|
4589
|
+
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
4456
4590
|
}): Promise<unknown>;
|
4457
4591
|
/**
|
4458
4592
|
* Converts a JSON-LD structure to an object of this type.
|
@@ -4591,6 +4725,7 @@ export declare class Link {
|
|
4591
4725
|
toJsonLd(options?: {
|
4592
4726
|
expand?: boolean;
|
4593
4727
|
contextLoader?: DocumentLoader;
|
4728
|
+
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
4594
4729
|
}): Promise<unknown>;
|
4595
4730
|
/**
|
4596
4731
|
* Converts a JSON-LD structure to an object of this type.
|
@@ -4663,6 +4798,7 @@ export declare class Hashtag extends Link {
|
|
4663
4798
|
toJsonLd(options?: {
|
4664
4799
|
expand?: boolean;
|
4665
4800
|
contextLoader?: DocumentLoader;
|
4801
|
+
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
4666
4802
|
}): Promise<unknown>;
|
4667
4803
|
/**
|
4668
4804
|
* Converts a JSON-LD structure to an object of this type.
|
@@ -4732,6 +4868,8 @@ export declare class Image extends Document {
|
|
4732
4868
|
mediaType?: string | null;
|
4733
4869
|
duration?: dntShim.Temporal.Duration | null;
|
4734
4870
|
sensitive?: boolean | null;
|
4871
|
+
proof?: DataIntegrityProof | URL | null;
|
4872
|
+
proofs?: (DataIntegrityProof | URL)[];
|
4735
4873
|
width?: number | null;
|
4736
4874
|
height?: number | null;
|
4737
4875
|
}, { documentLoader, contextLoader, }?: {
|
@@ -4788,6 +4926,8 @@ export declare class Image extends Document {
|
|
4788
4926
|
mediaType?: string | null;
|
4789
4927
|
duration?: dntShim.Temporal.Duration | null;
|
4790
4928
|
sensitive?: boolean | null;
|
4929
|
+
proof?: DataIntegrityProof | URL | null;
|
4930
|
+
proofs?: (DataIntegrityProof | URL)[];
|
4791
4931
|
width?: number | null;
|
4792
4932
|
height?: number | null;
|
4793
4933
|
}, options?: {
|
@@ -4801,6 +4941,7 @@ export declare class Image extends Document {
|
|
4801
4941
|
toJsonLd(options?: {
|
4802
4942
|
expand?: boolean;
|
4803
4943
|
contextLoader?: DocumentLoader;
|
4944
|
+
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
4804
4945
|
}): Promise<unknown>;
|
4805
4946
|
/**
|
4806
4947
|
* Converts a JSON-LD structure to an object of this type.
|
@@ -4872,6 +5013,8 @@ export declare class IntransitiveActivity extends Activity {
|
|
4872
5013
|
mediaType?: string | null;
|
4873
5014
|
duration?: dntShim.Temporal.Duration | null;
|
4874
5015
|
sensitive?: boolean | null;
|
5016
|
+
proof?: DataIntegrityProof | URL | null;
|
5017
|
+
proofs?: (DataIntegrityProof | URL)[];
|
4875
5018
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
4876
5019
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
4877
5020
|
object?: Object | URL | null;
|
@@ -4930,6 +5073,8 @@ export declare class IntransitiveActivity extends Activity {
|
|
4930
5073
|
mediaType?: string | null;
|
4931
5074
|
duration?: dntShim.Temporal.Duration | null;
|
4932
5075
|
sensitive?: boolean | null;
|
5076
|
+
proof?: DataIntegrityProof | URL | null;
|
5077
|
+
proofs?: (DataIntegrityProof | URL)[];
|
4933
5078
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
4934
5079
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
4935
5080
|
object?: Object | URL | null;
|
@@ -4945,6 +5090,7 @@ export declare class IntransitiveActivity extends Activity {
|
|
4945
5090
|
toJsonLd(options?: {
|
4946
5091
|
expand?: boolean;
|
4947
5092
|
contextLoader?: DocumentLoader;
|
5093
|
+
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
4948
5094
|
}): Promise<unknown>;
|
4949
5095
|
/**
|
4950
5096
|
* Converts a JSON-LD structure to an object of this type.
|
@@ -5015,6 +5161,8 @@ export declare class Like extends Activity {
|
|
5015
5161
|
mediaType?: string | null;
|
5016
5162
|
duration?: dntShim.Temporal.Duration | null;
|
5017
5163
|
sensitive?: boolean | null;
|
5164
|
+
proof?: DataIntegrityProof | URL | null;
|
5165
|
+
proofs?: (DataIntegrityProof | URL)[];
|
5018
5166
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
5019
5167
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
5020
5168
|
object?: Object | URL | null;
|
@@ -5073,6 +5221,8 @@ export declare class Like extends Activity {
|
|
5073
5221
|
mediaType?: string | null;
|
5074
5222
|
duration?: dntShim.Temporal.Duration | null;
|
5075
5223
|
sensitive?: boolean | null;
|
5224
|
+
proof?: DataIntegrityProof | URL | null;
|
5225
|
+
proofs?: (DataIntegrityProof | URL)[];
|
5076
5226
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
5077
5227
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
5078
5228
|
object?: Object | URL | null;
|
@@ -5088,6 +5238,7 @@ export declare class Like extends Activity {
|
|
5088
5238
|
toJsonLd(options?: {
|
5089
5239
|
expand?: boolean;
|
5090
5240
|
contextLoader?: DocumentLoader;
|
5241
|
+
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
5091
5242
|
}): Promise<unknown>;
|
5092
5243
|
/**
|
5093
5244
|
* Converts a JSON-LD structure to an object of this type.
|
@@ -5158,6 +5309,7 @@ export declare class Mention extends Link {
|
|
5158
5309
|
toJsonLd(options?: {
|
5159
5310
|
expand?: boolean;
|
5160
5311
|
contextLoader?: DocumentLoader;
|
5312
|
+
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
5161
5313
|
}): Promise<unknown>;
|
5162
5314
|
/**
|
5163
5315
|
* Converts a JSON-LD structure to an object of this type.
|
@@ -5228,6 +5380,8 @@ export declare class Note extends Object {
|
|
5228
5380
|
mediaType?: string | null;
|
5229
5381
|
duration?: dntShim.Temporal.Duration | null;
|
5230
5382
|
sensitive?: boolean | null;
|
5383
|
+
proof?: DataIntegrityProof | URL | null;
|
5384
|
+
proofs?: (DataIntegrityProof | URL)[];
|
5231
5385
|
}, { documentLoader, contextLoader, }?: {
|
5232
5386
|
documentLoader?: DocumentLoader;
|
5233
5387
|
contextLoader?: DocumentLoader;
|
@@ -5282,6 +5436,8 @@ export declare class Note extends Object {
|
|
5282
5436
|
mediaType?: string | null;
|
5283
5437
|
duration?: dntShim.Temporal.Duration | null;
|
5284
5438
|
sensitive?: boolean | null;
|
5439
|
+
proof?: DataIntegrityProof | URL | null;
|
5440
|
+
proofs?: (DataIntegrityProof | URL)[];
|
5285
5441
|
}, options?: {
|
5286
5442
|
documentLoader?: DocumentLoader;
|
5287
5443
|
contextLoader?: DocumentLoader;
|
@@ -5293,6 +5449,7 @@ export declare class Note extends Object {
|
|
5293
5449
|
toJsonLd(options?: {
|
5294
5450
|
expand?: boolean;
|
5295
5451
|
contextLoader?: DocumentLoader;
|
5452
|
+
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
5296
5453
|
}): Promise<unknown>;
|
5297
5454
|
/**
|
5298
5455
|
* Converts a JSON-LD structure to an object of this type.
|
@@ -5363,6 +5520,8 @@ export declare class OrderedCollection extends Collection {
|
|
5363
5520
|
mediaType?: string | null;
|
5364
5521
|
duration?: dntShim.Temporal.Duration | null;
|
5365
5522
|
sensitive?: boolean | null;
|
5523
|
+
proof?: DataIntegrityProof | URL | null;
|
5524
|
+
proofs?: (DataIntegrityProof | URL)[];
|
5366
5525
|
totalItems?: number | null;
|
5367
5526
|
current?: CollectionPage | Link | URL | null;
|
5368
5527
|
first?: CollectionPage | Link | URL | null;
|
@@ -5422,6 +5581,8 @@ export declare class OrderedCollection extends Collection {
|
|
5422
5581
|
mediaType?: string | null;
|
5423
5582
|
duration?: dntShim.Temporal.Duration | null;
|
5424
5583
|
sensitive?: boolean | null;
|
5584
|
+
proof?: DataIntegrityProof | URL | null;
|
5585
|
+
proofs?: (DataIntegrityProof | URL)[];
|
5425
5586
|
totalItems?: number | null;
|
5426
5587
|
current?: CollectionPage | Link | URL | null;
|
5427
5588
|
first?: CollectionPage | Link | URL | null;
|
@@ -5438,6 +5599,7 @@ export declare class OrderedCollection extends Collection {
|
|
5438
5599
|
toJsonLd(options?: {
|
5439
5600
|
expand?: boolean;
|
5440
5601
|
contextLoader?: DocumentLoader;
|
5602
|
+
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
5441
5603
|
}): Promise<unknown>;
|
5442
5604
|
/**
|
5443
5605
|
* Converts a JSON-LD structure to an object of this type.
|
@@ -5510,6 +5672,8 @@ export declare class OrderedCollectionPage extends CollectionPage {
|
|
5510
5672
|
mediaType?: string | null;
|
5511
5673
|
duration?: dntShim.Temporal.Duration | null;
|
5512
5674
|
sensitive?: boolean | null;
|
5675
|
+
proof?: DataIntegrityProof | URL | null;
|
5676
|
+
proofs?: (DataIntegrityProof | URL)[];
|
5513
5677
|
totalItems?: number | null;
|
5514
5678
|
current?: CollectionPage | Link | URL | null;
|
5515
5679
|
first?: CollectionPage | Link | URL | null;
|
@@ -5573,6 +5737,8 @@ export declare class OrderedCollectionPage extends CollectionPage {
|
|
5573
5737
|
mediaType?: string | null;
|
5574
5738
|
duration?: dntShim.Temporal.Duration | null;
|
5575
5739
|
sensitive?: boolean | null;
|
5740
|
+
proof?: DataIntegrityProof | URL | null;
|
5741
|
+
proofs?: (DataIntegrityProof | URL)[];
|
5576
5742
|
totalItems?: number | null;
|
5577
5743
|
current?: CollectionPage | Link | URL | null;
|
5578
5744
|
first?: CollectionPage | Link | URL | null;
|
@@ -5597,6 +5763,7 @@ export declare class OrderedCollectionPage extends CollectionPage {
|
|
5597
5763
|
toJsonLd(options?: {
|
5598
5764
|
expand?: boolean;
|
5599
5765
|
contextLoader?: DocumentLoader;
|
5766
|
+
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
5600
5767
|
}): Promise<unknown>;
|
5601
5768
|
/**
|
5602
5769
|
* Converts a JSON-LD structure to an object of this type.
|
@@ -5667,6 +5834,8 @@ export declare class Organization extends Object {
|
|
5667
5834
|
mediaType?: string | null;
|
5668
5835
|
duration?: dntShim.Temporal.Duration | null;
|
5669
5836
|
sensitive?: boolean | null;
|
5837
|
+
proof?: DataIntegrityProof | URL | null;
|
5838
|
+
proofs?: (DataIntegrityProof | URL)[];
|
5670
5839
|
preferredUsername?: string | LanguageString | null;
|
5671
5840
|
preferredUsernames?: (string | LanguageString)[];
|
5672
5841
|
publicKey?: CryptographicKey | URL | null;
|
@@ -5739,6 +5908,8 @@ export declare class Organization extends Object {
|
|
5739
5908
|
mediaType?: string | null;
|
5740
5909
|
duration?: dntShim.Temporal.Duration | null;
|
5741
5910
|
sensitive?: boolean | null;
|
5911
|
+
proof?: DataIntegrityProof | URL | null;
|
5912
|
+
proofs?: (DataIntegrityProof | URL)[];
|
5742
5913
|
preferredUsername?: string | LanguageString | null;
|
5743
5914
|
preferredUsernames?: (string | LanguageString)[];
|
5744
5915
|
publicKey?: CryptographicKey | URL | null;
|
@@ -5969,6 +6140,7 @@ export declare class Organization extends Object {
|
|
5969
6140
|
toJsonLd(options?: {
|
5970
6141
|
expand?: boolean;
|
5971
6142
|
contextLoader?: DocumentLoader;
|
6143
|
+
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
5972
6144
|
}): Promise<unknown>;
|
5973
6145
|
/**
|
5974
6146
|
* Converts a JSON-LD structure to an object of this type.
|
@@ -6038,6 +6210,8 @@ export declare class Page extends Document {
|
|
6038
6210
|
mediaType?: string | null;
|
6039
6211
|
duration?: dntShim.Temporal.Duration | null;
|
6040
6212
|
sensitive?: boolean | null;
|
6213
|
+
proof?: DataIntegrityProof | URL | null;
|
6214
|
+
proofs?: (DataIntegrityProof | URL)[];
|
6041
6215
|
width?: number | null;
|
6042
6216
|
height?: number | null;
|
6043
6217
|
}, { documentLoader, contextLoader, }?: {
|
@@ -6094,6 +6268,8 @@ export declare class Page extends Document {
|
|
6094
6268
|
mediaType?: string | null;
|
6095
6269
|
duration?: dntShim.Temporal.Duration | null;
|
6096
6270
|
sensitive?: boolean | null;
|
6271
|
+
proof?: DataIntegrityProof | URL | null;
|
6272
|
+
proofs?: (DataIntegrityProof | URL)[];
|
6097
6273
|
width?: number | null;
|
6098
6274
|
height?: number | null;
|
6099
6275
|
}, options?: {
|
@@ -6107,6 +6283,7 @@ export declare class Page extends Document {
|
|
6107
6283
|
toJsonLd(options?: {
|
6108
6284
|
expand?: boolean;
|
6109
6285
|
contextLoader?: DocumentLoader;
|
6286
|
+
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
6110
6287
|
}): Promise<unknown>;
|
6111
6288
|
/**
|
6112
6289
|
* Converts a JSON-LD structure to an object of this type.
|
@@ -6177,6 +6354,8 @@ export declare class Person extends Object {
|
|
6177
6354
|
mediaType?: string | null;
|
6178
6355
|
duration?: dntShim.Temporal.Duration | null;
|
6179
6356
|
sensitive?: boolean | null;
|
6357
|
+
proof?: DataIntegrityProof | URL | null;
|
6358
|
+
proofs?: (DataIntegrityProof | URL)[];
|
6180
6359
|
preferredUsername?: string | LanguageString | null;
|
6181
6360
|
preferredUsernames?: (string | LanguageString)[];
|
6182
6361
|
publicKey?: CryptographicKey | URL | null;
|
@@ -6249,6 +6428,8 @@ export declare class Person extends Object {
|
|
6249
6428
|
mediaType?: string | null;
|
6250
6429
|
duration?: dntShim.Temporal.Duration | null;
|
6251
6430
|
sensitive?: boolean | null;
|
6431
|
+
proof?: DataIntegrityProof | URL | null;
|
6432
|
+
proofs?: (DataIntegrityProof | URL)[];
|
6252
6433
|
preferredUsername?: string | LanguageString | null;
|
6253
6434
|
preferredUsernames?: (string | LanguageString)[];
|
6254
6435
|
publicKey?: CryptographicKey | URL | null;
|
@@ -6479,6 +6660,7 @@ export declare class Person extends Object {
|
|
6479
6660
|
toJsonLd(options?: {
|
6480
6661
|
expand?: boolean;
|
6481
6662
|
contextLoader?: DocumentLoader;
|
6663
|
+
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
6482
6664
|
}): Promise<unknown>;
|
6483
6665
|
/**
|
6484
6666
|
* Converts a JSON-LD structure to an object of this type.
|
@@ -6551,6 +6733,8 @@ export declare class Place extends Object {
|
|
6551
6733
|
mediaType?: string | null;
|
6552
6734
|
duration?: dntShim.Temporal.Duration | null;
|
6553
6735
|
sensitive?: boolean | null;
|
6736
|
+
proof?: DataIntegrityProof | URL | null;
|
6737
|
+
proofs?: (DataIntegrityProof | URL)[];
|
6554
6738
|
accuracy?: number | null;
|
6555
6739
|
altitude?: number | null;
|
6556
6740
|
latitude?: number | null;
|
@@ -6611,6 +6795,8 @@ export declare class Place extends Object {
|
|
6611
6795
|
mediaType?: string | null;
|
6612
6796
|
duration?: dntShim.Temporal.Duration | null;
|
6613
6797
|
sensitive?: boolean | null;
|
6798
|
+
proof?: DataIntegrityProof | URL | null;
|
6799
|
+
proofs?: (DataIntegrityProof | URL)[];
|
6614
6800
|
accuracy?: number | null;
|
6615
6801
|
altitude?: number | null;
|
6616
6802
|
latitude?: number | null;
|
@@ -6654,6 +6840,7 @@ export declare class Place extends Object {
|
|
6654
6840
|
toJsonLd(options?: {
|
6655
6841
|
expand?: boolean;
|
6656
6842
|
contextLoader?: DocumentLoader;
|
6843
|
+
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
6657
6844
|
}): Promise<unknown>;
|
6658
6845
|
/**
|
6659
6846
|
* Converts a JSON-LD structure to an object of this type.
|
@@ -6728,6 +6915,8 @@ export declare class Profile extends Object {
|
|
6728
6915
|
mediaType?: string | null;
|
6729
6916
|
duration?: dntShim.Temporal.Duration | null;
|
6730
6917
|
sensitive?: boolean | null;
|
6918
|
+
proof?: DataIntegrityProof | URL | null;
|
6919
|
+
proofs?: (DataIntegrityProof | URL)[];
|
6731
6920
|
describes?: Object | URL | null;
|
6732
6921
|
}, { documentLoader, contextLoader, }?: {
|
6733
6922
|
documentLoader?: DocumentLoader;
|
@@ -6783,6 +6972,8 @@ export declare class Profile extends Object {
|
|
6783
6972
|
mediaType?: string | null;
|
6784
6973
|
duration?: dntShim.Temporal.Duration | null;
|
6785
6974
|
sensitive?: boolean | null;
|
6975
|
+
proof?: DataIntegrityProof | URL | null;
|
6976
|
+
proofs?: (DataIntegrityProof | URL)[];
|
6786
6977
|
describes?: Object | URL | null;
|
6787
6978
|
}, options?: {
|
6788
6979
|
documentLoader?: DocumentLoader;
|
@@ -6808,6 +6999,7 @@ export declare class Profile extends Object {
|
|
6808
6999
|
toJsonLd(options?: {
|
6809
7000
|
expand?: boolean;
|
6810
7001
|
contextLoader?: DocumentLoader;
|
7002
|
+
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
6811
7003
|
}): Promise<unknown>;
|
6812
7004
|
/**
|
6813
7005
|
* Converts a JSON-LD structure to an object of this type.
|
@@ -6878,6 +7070,8 @@ export declare class Reject extends Activity {
|
|
6878
7070
|
mediaType?: string | null;
|
6879
7071
|
duration?: dntShim.Temporal.Duration | null;
|
6880
7072
|
sensitive?: boolean | null;
|
7073
|
+
proof?: DataIntegrityProof | URL | null;
|
7074
|
+
proofs?: (DataIntegrityProof | URL)[];
|
6881
7075
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
6882
7076
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
6883
7077
|
object?: Object | URL | null;
|
@@ -6936,6 +7130,8 @@ export declare class Reject extends Activity {
|
|
6936
7130
|
mediaType?: string | null;
|
6937
7131
|
duration?: dntShim.Temporal.Duration | null;
|
6938
7132
|
sensitive?: boolean | null;
|
7133
|
+
proof?: DataIntegrityProof | URL | null;
|
7134
|
+
proofs?: (DataIntegrityProof | URL)[];
|
6939
7135
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
6940
7136
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
6941
7137
|
object?: Object | URL | null;
|
@@ -6951,6 +7147,7 @@ export declare class Reject extends Activity {
|
|
6951
7147
|
toJsonLd(options?: {
|
6952
7148
|
expand?: boolean;
|
6953
7149
|
contextLoader?: DocumentLoader;
|
7150
|
+
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
6954
7151
|
}): Promise<unknown>;
|
6955
7152
|
/**
|
6956
7153
|
* Converts a JSON-LD structure to an object of this type.
|
@@ -7027,6 +7224,8 @@ export declare class Relationship extends Object {
|
|
7027
7224
|
mediaType?: string | null;
|
7028
7225
|
duration?: dntShim.Temporal.Duration | null;
|
7029
7226
|
sensitive?: boolean | null;
|
7227
|
+
proof?: DataIntegrityProof | URL | null;
|
7228
|
+
proofs?: (DataIntegrityProof | URL)[];
|
7030
7229
|
subject?: Object | URL | null;
|
7031
7230
|
object?: Object | URL | null;
|
7032
7231
|
objects?: (Object | URL)[];
|
@@ -7086,6 +7285,8 @@ export declare class Relationship extends Object {
|
|
7086
7285
|
mediaType?: string | null;
|
7087
7286
|
duration?: dntShim.Temporal.Duration | null;
|
7088
7287
|
sensitive?: boolean | null;
|
7288
|
+
proof?: DataIntegrityProof | URL | null;
|
7289
|
+
proofs?: (DataIntegrityProof | URL)[];
|
7089
7290
|
subject?: Object | URL | null;
|
7090
7291
|
object?: Object | URL | null;
|
7091
7292
|
objects?: (Object | URL)[];
|
@@ -7169,6 +7370,7 @@ export declare class Relationship extends Object {
|
|
7169
7370
|
toJsonLd(options?: {
|
7170
7371
|
expand?: boolean;
|
7171
7372
|
contextLoader?: DocumentLoader;
|
7373
|
+
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
7172
7374
|
}): Promise<unknown>;
|
7173
7375
|
/**
|
7174
7376
|
* Converts a JSON-LD structure to an object of this type.
|
@@ -7239,6 +7441,8 @@ export declare class Remove extends Activity {
|
|
7239
7441
|
mediaType?: string | null;
|
7240
7442
|
duration?: dntShim.Temporal.Duration | null;
|
7241
7443
|
sensitive?: boolean | null;
|
7444
|
+
proof?: DataIntegrityProof | URL | null;
|
7445
|
+
proofs?: (DataIntegrityProof | URL)[];
|
7242
7446
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
7243
7447
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
7244
7448
|
object?: Object | URL | null;
|
@@ -7297,6 +7501,8 @@ export declare class Remove extends Activity {
|
|
7297
7501
|
mediaType?: string | null;
|
7298
7502
|
duration?: dntShim.Temporal.Duration | null;
|
7299
7503
|
sensitive?: boolean | null;
|
7504
|
+
proof?: DataIntegrityProof | URL | null;
|
7505
|
+
proofs?: (DataIntegrityProof | URL)[];
|
7300
7506
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
7301
7507
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
7302
7508
|
object?: Object | URL | null;
|
@@ -7312,6 +7518,7 @@ export declare class Remove extends Activity {
|
|
7312
7518
|
toJsonLd(options?: {
|
7313
7519
|
expand?: boolean;
|
7314
7520
|
contextLoader?: DocumentLoader;
|
7521
|
+
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
7315
7522
|
}): Promise<unknown>;
|
7316
7523
|
/**
|
7317
7524
|
* Converts a JSON-LD structure to an object of this type.
|
@@ -7382,6 +7589,8 @@ export declare class Service extends Object {
|
|
7382
7589
|
mediaType?: string | null;
|
7383
7590
|
duration?: dntShim.Temporal.Duration | null;
|
7384
7591
|
sensitive?: boolean | null;
|
7592
|
+
proof?: DataIntegrityProof | URL | null;
|
7593
|
+
proofs?: (DataIntegrityProof | URL)[];
|
7385
7594
|
preferredUsername?: string | LanguageString | null;
|
7386
7595
|
preferredUsernames?: (string | LanguageString)[];
|
7387
7596
|
publicKey?: CryptographicKey | URL | null;
|
@@ -7454,6 +7663,8 @@ export declare class Service extends Object {
|
|
7454
7663
|
mediaType?: string | null;
|
7455
7664
|
duration?: dntShim.Temporal.Duration | null;
|
7456
7665
|
sensitive?: boolean | null;
|
7666
|
+
proof?: DataIntegrityProof | URL | null;
|
7667
|
+
proofs?: (DataIntegrityProof | URL)[];
|
7457
7668
|
preferredUsername?: string | LanguageString | null;
|
7458
7669
|
preferredUsernames?: (string | LanguageString)[];
|
7459
7670
|
publicKey?: CryptographicKey | URL | null;
|
@@ -7684,6 +7895,7 @@ export declare class Service extends Object {
|
|
7684
7895
|
toJsonLd(options?: {
|
7685
7896
|
expand?: boolean;
|
7686
7897
|
contextLoader?: DocumentLoader;
|
7898
|
+
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
7687
7899
|
}): Promise<unknown>;
|
7688
7900
|
/**
|
7689
7901
|
* Converts a JSON-LD structure to an object of this type.
|
@@ -7756,6 +7968,8 @@ export declare class Tombstone extends Object {
|
|
7756
7968
|
mediaType?: string | null;
|
7757
7969
|
duration?: dntShim.Temporal.Duration | null;
|
7758
7970
|
sensitive?: boolean | null;
|
7971
|
+
proof?: DataIntegrityProof | URL | null;
|
7972
|
+
proofs?: (DataIntegrityProof | URL)[];
|
7759
7973
|
deleted?: dntShim.Temporal.Instant | null;
|
7760
7974
|
}, { documentLoader, contextLoader, }?: {
|
7761
7975
|
documentLoader?: DocumentLoader;
|
@@ -7811,6 +8025,8 @@ export declare class Tombstone extends Object {
|
|
7811
8025
|
mediaType?: string | null;
|
7812
8026
|
duration?: dntShim.Temporal.Duration | null;
|
7813
8027
|
sensitive?: boolean | null;
|
8028
|
+
proof?: DataIntegrityProof | URL | null;
|
8029
|
+
proofs?: (DataIntegrityProof | URL)[];
|
7814
8030
|
deleted?: dntShim.Temporal.Instant | null;
|
7815
8031
|
}, options?: {
|
7816
8032
|
documentLoader?: DocumentLoader;
|
@@ -7827,6 +8043,7 @@ export declare class Tombstone extends Object {
|
|
7827
8043
|
toJsonLd(options?: {
|
7828
8044
|
expand?: boolean;
|
7829
8045
|
contextLoader?: DocumentLoader;
|
8046
|
+
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
7830
8047
|
}): Promise<unknown>;
|
7831
8048
|
/**
|
7832
8049
|
* Converts a JSON-LD structure to an object of this type.
|
@@ -7902,6 +8119,8 @@ export declare class Undo extends Activity {
|
|
7902
8119
|
mediaType?: string | null;
|
7903
8120
|
duration?: dntShim.Temporal.Duration | null;
|
7904
8121
|
sensitive?: boolean | null;
|
8122
|
+
proof?: DataIntegrityProof | URL | null;
|
8123
|
+
proofs?: (DataIntegrityProof | URL)[];
|
7905
8124
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
7906
8125
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
7907
8126
|
object?: Object | URL | null;
|
@@ -7960,6 +8179,8 @@ export declare class Undo extends Activity {
|
|
7960
8179
|
mediaType?: string | null;
|
7961
8180
|
duration?: dntShim.Temporal.Duration | null;
|
7962
8181
|
sensitive?: boolean | null;
|
8182
|
+
proof?: DataIntegrityProof | URL | null;
|
8183
|
+
proofs?: (DataIntegrityProof | URL)[];
|
7963
8184
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
7964
8185
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
7965
8186
|
object?: Object | URL | null;
|
@@ -7975,6 +8196,7 @@ export declare class Undo extends Activity {
|
|
7975
8196
|
toJsonLd(options?: {
|
7976
8197
|
expand?: boolean;
|
7977
8198
|
contextLoader?: DocumentLoader;
|
8199
|
+
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
7978
8200
|
}): Promise<unknown>;
|
7979
8201
|
/**
|
7980
8202
|
* Converts a JSON-LD structure to an object of this type.
|
@@ -8048,6 +8270,8 @@ export declare class Update extends Activity {
|
|
8048
8270
|
mediaType?: string | null;
|
8049
8271
|
duration?: dntShim.Temporal.Duration | null;
|
8050
8272
|
sensitive?: boolean | null;
|
8273
|
+
proof?: DataIntegrityProof | URL | null;
|
8274
|
+
proofs?: (DataIntegrityProof | URL)[];
|
8051
8275
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
8052
8276
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
8053
8277
|
object?: Object | URL | null;
|
@@ -8106,6 +8330,8 @@ export declare class Update extends Activity {
|
|
8106
8330
|
mediaType?: string | null;
|
8107
8331
|
duration?: dntShim.Temporal.Duration | null;
|
8108
8332
|
sensitive?: boolean | null;
|
8333
|
+
proof?: DataIntegrityProof | URL | null;
|
8334
|
+
proofs?: (DataIntegrityProof | URL)[];
|
8109
8335
|
actor?: Application | Group | Organization | Person | Service | URL | null;
|
8110
8336
|
actors?: (Application | Group | Organization | Person | Service | URL)[];
|
8111
8337
|
object?: Object | URL | null;
|
@@ -8121,6 +8347,7 @@ export declare class Update extends Activity {
|
|
8121
8347
|
toJsonLd(options?: {
|
8122
8348
|
expand?: boolean;
|
8123
8349
|
contextLoader?: DocumentLoader;
|
8350
|
+
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
8124
8351
|
}): Promise<unknown>;
|
8125
8352
|
/**
|
8126
8353
|
* Converts a JSON-LD structure to an object of this type.
|
@@ -8190,6 +8417,8 @@ export declare class Video extends Document {
|
|
8190
8417
|
mediaType?: string | null;
|
8191
8418
|
duration?: dntShim.Temporal.Duration | null;
|
8192
8419
|
sensitive?: boolean | null;
|
8420
|
+
proof?: DataIntegrityProof | URL | null;
|
8421
|
+
proofs?: (DataIntegrityProof | URL)[];
|
8193
8422
|
width?: number | null;
|
8194
8423
|
height?: number | null;
|
8195
8424
|
}, { documentLoader, contextLoader, }?: {
|
@@ -8246,6 +8475,8 @@ export declare class Video extends Document {
|
|
8246
8475
|
mediaType?: string | null;
|
8247
8476
|
duration?: dntShim.Temporal.Duration | null;
|
8248
8477
|
sensitive?: boolean | null;
|
8478
|
+
proof?: DataIntegrityProof | URL | null;
|
8479
|
+
proofs?: (DataIntegrityProof | URL)[];
|
8249
8480
|
width?: number | null;
|
8250
8481
|
height?: number | null;
|
8251
8482
|
}, options?: {
|
@@ -8259,6 +8490,7 @@ export declare class Video extends Document {
|
|
8259
8490
|
toJsonLd(options?: {
|
8260
8491
|
expand?: boolean;
|
8261
8492
|
contextLoader?: DocumentLoader;
|
8493
|
+
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
8262
8494
|
}): Promise<unknown>;
|
8263
8495
|
/**
|
8264
8496
|
* Converts a JSON-LD structure to an object of this type.
|