@fedify/vocab 2.4.0-dev.1618 → 2.4.0-dev.1655
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/deno.json +1 -1
- package/dist/mod.cjs +425 -15
- package/dist/mod.d.cts +109 -1
- package/dist/mod.d.ts +109 -1
- package/dist/mod.js +426 -16
- package/dist-tests/{actor-COnJgcOw.mjs → actor-D_oGj9t4.mjs} +2 -2
- package/dist-tests/actor.test.mjs +2 -2
- package/dist-tests/application.yaml +15 -0
- package/dist-tests/audio.yaml +2 -1
- package/dist-tests/document.yaml +14 -1
- package/dist-tests/group.yaml +15 -0
- package/dist-tests/image.yaml +2 -1
- package/dist-tests/link.yaml +14 -1
- package/dist-tests/lookup.test.mjs +2 -2
- package/dist-tests/organization.yaml +15 -0
- package/dist-tests/page.yaml +2 -1
- package/dist-tests/person.yaml +15 -0
- package/dist-tests/service.yaml +15 -0
- package/dist-tests/type.test.mjs +1 -1
- package/dist-tests/video.yaml +2 -1
- package/dist-tests/{vocab-OU5GYbNg.mjs → vocab-Bjwctrxn.mjs} +426 -16
- package/dist-tests/vocab.test.mjs +152 -1
- package/package.json +4 -4
- package/src/__snapshots__/vocab.test.ts.snap +54 -15
- package/src/application.yaml +15 -0
- package/src/audio.yaml +2 -1
- package/src/document.yaml +14 -1
- package/src/group.yaml +15 -0
- package/src/image.yaml +2 -1
- package/src/link.yaml +14 -1
- package/src/organization.yaml +15 -0
- package/src/page.yaml +2 -1
- package/src/person.yaml +15 -0
- package/src/preprocessors.ts +3 -1
- package/src/service.yaml +15 -0
- package/src/video.yaml +2 -1
- package/src/vocab.test.ts +244 -0
package/dist/mod.d.cts
CHANGED
|
@@ -7412,6 +7412,8 @@ declare class Application extends Object$1 {
|
|
|
7412
7412
|
publicKeys?: (CryptographicKey | URL)[];
|
|
7413
7413
|
assertionMethod?: Multikey | URL | null;
|
|
7414
7414
|
assertionMethods?: (Multikey | URL)[];
|
|
7415
|
+
gateway?: URL | null;
|
|
7416
|
+
gateways?: (URL)[];
|
|
7415
7417
|
manuallyApprovesFollowers?: boolean | null;
|
|
7416
7418
|
inbox?: OrderedCollection | OrderedCollectionPage | URL | null;
|
|
7417
7419
|
outbox?: OrderedCollection | OrderedCollectionPage | URL | null;
|
|
@@ -7506,6 +7508,8 @@ declare class Application extends Object$1 {
|
|
|
7506
7508
|
publicKeys?: (CryptographicKey | URL)[];
|
|
7507
7509
|
assertionMethod?: Multikey | URL | null;
|
|
7508
7510
|
assertionMethods?: (Multikey | URL)[];
|
|
7511
|
+
gateway?: URL | null;
|
|
7512
|
+
gateways?: (URL)[];
|
|
7509
7513
|
manuallyApprovesFollowers?: boolean | null;
|
|
7510
7514
|
inbox?: OrderedCollection | OrderedCollectionPage | URL | null;
|
|
7511
7515
|
outbox?: OrderedCollection | OrderedCollectionPage | URL | null;
|
|
@@ -7606,6 +7610,18 @@ declare class Application extends Object$1 {
|
|
|
7606
7610
|
tracerProvider?: TracerProvider;
|
|
7607
7611
|
crossOrigin?: "ignore" | "throw" | "trust";
|
|
7608
7612
|
}): AsyncIterable<Multikey>;
|
|
7613
|
+
/** Gateways where the latest version of this portable actor object can be
|
|
7614
|
+
* retrieved.
|
|
7615
|
+
*
|
|
7616
|
+
* See [FEP-ef61](https://w3id.org/fep/ef61) for details.
|
|
7617
|
+
*/
|
|
7618
|
+
get gateway(): URL | null;
|
|
7619
|
+
/** Gateways where the latest version of this portable actor object can be
|
|
7620
|
+
* retrieved.
|
|
7621
|
+
*
|
|
7622
|
+
* See [FEP-ef61](https://w3id.org/fep/ef61) for details.
|
|
7623
|
+
*/
|
|
7624
|
+
get gateways(): (URL)[];
|
|
7609
7625
|
/** When `true`, conveys that for this actor, follow requests are not usually
|
|
7610
7626
|
* automatically approved, but instead are examined by a person who may accept
|
|
7611
7627
|
* or reject the request, at some time in the future. Setting of `false`
|
|
@@ -8659,6 +8675,7 @@ declare class Document extends Object$1 {
|
|
|
8659
8675
|
announceAuthorization?: AnnounceAuthorization | URL | null;
|
|
8660
8676
|
width?: number | null;
|
|
8661
8677
|
height?: number | null;
|
|
8678
|
+
digestMultibase?: string | null;
|
|
8662
8679
|
}, options?: {
|
|
8663
8680
|
documentLoader?: DocumentLoader$1;
|
|
8664
8681
|
contextLoader?: DocumentLoader$1;
|
|
@@ -8727,6 +8744,7 @@ declare class Document extends Object$1 {
|
|
|
8727
8744
|
announceAuthorization?: AnnounceAuthorization | URL | null;
|
|
8728
8745
|
width?: number | null;
|
|
8729
8746
|
height?: number | null;
|
|
8747
|
+
digestMultibase?: string | null;
|
|
8730
8748
|
}, options?: {
|
|
8731
8749
|
documentLoader?: DocumentLoader$1;
|
|
8732
8750
|
contextLoader?: DocumentLoader$1;
|
|
@@ -8739,6 +8757,12 @@ declare class Document extends Object$1 {
|
|
|
8739
8757
|
* device-independent pixels of the linked resource.
|
|
8740
8758
|
*/
|
|
8741
8759
|
get height(): number | null;
|
|
8760
|
+
/** The multibase-encoded integrity digest of an external resource represented
|
|
8761
|
+
* by this document.
|
|
8762
|
+
*
|
|
8763
|
+
* See [FEP-ef61](https://w3id.org/fep/ef61) for details.
|
|
8764
|
+
*/
|
|
8765
|
+
get digestMultibase(): string | null;
|
|
8742
8766
|
/**
|
|
8743
8767
|
* Converts this object to a JSON-LD structure.
|
|
8744
8768
|
* @param options The options to use.
|
|
@@ -8849,6 +8873,7 @@ declare class Audio extends Document {
|
|
|
8849
8873
|
announceAuthorization?: AnnounceAuthorization | URL | null;
|
|
8850
8874
|
width?: number | null;
|
|
8851
8875
|
height?: number | null;
|
|
8876
|
+
digestMultibase?: string | null;
|
|
8852
8877
|
}, options?: {
|
|
8853
8878
|
documentLoader?: DocumentLoader$1;
|
|
8854
8879
|
contextLoader?: DocumentLoader$1;
|
|
@@ -8917,6 +8942,7 @@ declare class Audio extends Document {
|
|
|
8917
8942
|
announceAuthorization?: AnnounceAuthorization | URL | null;
|
|
8918
8943
|
width?: number | null;
|
|
8919
8944
|
height?: number | null;
|
|
8945
|
+
digestMultibase?: string | null;
|
|
8920
8946
|
}, options?: {
|
|
8921
8947
|
documentLoader?: DocumentLoader$1;
|
|
8922
8948
|
contextLoader?: DocumentLoader$1;
|
|
@@ -11045,6 +11071,8 @@ declare class Group extends Object$1 {
|
|
|
11045
11071
|
publicKeys?: (CryptographicKey | URL)[];
|
|
11046
11072
|
assertionMethod?: Multikey | URL | null;
|
|
11047
11073
|
assertionMethods?: (Multikey | URL)[];
|
|
11074
|
+
gateway?: URL | null;
|
|
11075
|
+
gateways?: (URL)[];
|
|
11048
11076
|
manuallyApprovesFollowers?: boolean | null;
|
|
11049
11077
|
inbox?: OrderedCollection | OrderedCollectionPage | URL | null;
|
|
11050
11078
|
outbox?: OrderedCollection | OrderedCollectionPage | URL | null;
|
|
@@ -11139,6 +11167,8 @@ declare class Group extends Object$1 {
|
|
|
11139
11167
|
publicKeys?: (CryptographicKey | URL)[];
|
|
11140
11168
|
assertionMethod?: Multikey | URL | null;
|
|
11141
11169
|
assertionMethods?: (Multikey | URL)[];
|
|
11170
|
+
gateway?: URL | null;
|
|
11171
|
+
gateways?: (URL)[];
|
|
11142
11172
|
manuallyApprovesFollowers?: boolean | null;
|
|
11143
11173
|
inbox?: OrderedCollection | OrderedCollectionPage | URL | null;
|
|
11144
11174
|
outbox?: OrderedCollection | OrderedCollectionPage | URL | null;
|
|
@@ -11239,6 +11269,18 @@ declare class Group extends Object$1 {
|
|
|
11239
11269
|
tracerProvider?: TracerProvider;
|
|
11240
11270
|
crossOrigin?: "ignore" | "throw" | "trust";
|
|
11241
11271
|
}): AsyncIterable<Multikey>;
|
|
11272
|
+
/** Gateways where the latest version of this portable actor object can be
|
|
11273
|
+
* retrieved.
|
|
11274
|
+
*
|
|
11275
|
+
* See [FEP-ef61](https://w3id.org/fep/ef61) for details.
|
|
11276
|
+
*/
|
|
11277
|
+
get gateway(): URL | null;
|
|
11278
|
+
/** Gateways where the latest version of this portable actor object can be
|
|
11279
|
+
* retrieved.
|
|
11280
|
+
*
|
|
11281
|
+
* See [FEP-ef61](https://w3id.org/fep/ef61) for details.
|
|
11282
|
+
*/
|
|
11283
|
+
get gateways(): (URL)[];
|
|
11242
11284
|
/** When `true`, conveys that for this actor, follow requests are not usually
|
|
11243
11285
|
* automatically approved, but instead are examined by a person who may accept
|
|
11244
11286
|
* or reject the request, at some time in the future. Setting of `false`
|
|
@@ -11622,6 +11664,7 @@ declare class Link {
|
|
|
11622
11664
|
rel?: string | null;
|
|
11623
11665
|
rels?: (string)[];
|
|
11624
11666
|
mediaType?: string | null;
|
|
11667
|
+
digestMultibase?: string | null;
|
|
11625
11668
|
name?: string | LanguageString$1 | null;
|
|
11626
11669
|
names?: ((string | LanguageString$1))[];
|
|
11627
11670
|
language?: Intl.Locale | null;
|
|
@@ -11645,6 +11688,7 @@ declare class Link {
|
|
|
11645
11688
|
rel?: string | null;
|
|
11646
11689
|
rels?: (string)[];
|
|
11647
11690
|
mediaType?: string | null;
|
|
11691
|
+
digestMultibase?: string | null;
|
|
11648
11692
|
name?: string | LanguageString$1 | null;
|
|
11649
11693
|
names?: ((string | LanguageString$1))[];
|
|
11650
11694
|
language?: Intl.Locale | null;
|
|
@@ -11678,6 +11722,11 @@ declare class Link {
|
|
|
11678
11722
|
* referenced resource.
|
|
11679
11723
|
*/
|
|
11680
11724
|
get mediaType(): string | null;
|
|
11725
|
+
/** The multibase-encoded integrity digest of the linked resource.
|
|
11726
|
+
*
|
|
11727
|
+
* See [FEP-ef61](https://w3id.org/fep/ef61) for details.
|
|
11728
|
+
*/
|
|
11729
|
+
get digestMultibase(): string | null;
|
|
11681
11730
|
/** A simple, human-readable, plain-text name for the object. HTML markup MUST
|
|
11682
11731
|
* NOT be included. The name MAY be expressed using multiple language-tagged
|
|
11683
11732
|
* values.
|
|
@@ -11776,6 +11825,7 @@ declare class Hashtag extends Link {
|
|
|
11776
11825
|
rel?: string | null;
|
|
11777
11826
|
rels?: (string)[];
|
|
11778
11827
|
mediaType?: string | null;
|
|
11828
|
+
digestMultibase?: string | null;
|
|
11779
11829
|
name?: string | LanguageString$1 | null;
|
|
11780
11830
|
names?: ((string | LanguageString$1))[];
|
|
11781
11831
|
language?: Intl.Locale | null;
|
|
@@ -11799,6 +11849,7 @@ declare class Hashtag extends Link {
|
|
|
11799
11849
|
rel?: string | null;
|
|
11800
11850
|
rels?: (string)[];
|
|
11801
11851
|
mediaType?: string | null;
|
|
11852
|
+
digestMultibase?: string | null;
|
|
11802
11853
|
name?: string | LanguageString$1 | null;
|
|
11803
11854
|
names?: ((string | LanguageString$1))[];
|
|
11804
11855
|
language?: Intl.Locale | null;
|
|
@@ -11919,6 +11970,7 @@ declare class Image extends Document {
|
|
|
11919
11970
|
announceAuthorization?: AnnounceAuthorization | URL | null;
|
|
11920
11971
|
width?: number | null;
|
|
11921
11972
|
height?: number | null;
|
|
11973
|
+
digestMultibase?: string | null;
|
|
11922
11974
|
}, options?: {
|
|
11923
11975
|
documentLoader?: DocumentLoader$1;
|
|
11924
11976
|
contextLoader?: DocumentLoader$1;
|
|
@@ -11987,6 +12039,7 @@ declare class Image extends Document {
|
|
|
11987
12039
|
announceAuthorization?: AnnounceAuthorization | URL | null;
|
|
11988
12040
|
width?: number | null;
|
|
11989
12041
|
height?: number | null;
|
|
12042
|
+
digestMultibase?: string | null;
|
|
11990
12043
|
}, options?: {
|
|
11991
12044
|
documentLoader?: DocumentLoader$1;
|
|
11992
12045
|
contextLoader?: DocumentLoader$1;
|
|
@@ -13268,6 +13321,7 @@ declare class Mention extends Link {
|
|
|
13268
13321
|
rel?: string | null;
|
|
13269
13322
|
rels?: (string)[];
|
|
13270
13323
|
mediaType?: string | null;
|
|
13324
|
+
digestMultibase?: string | null;
|
|
13271
13325
|
name?: string | LanguageString$1 | null;
|
|
13272
13326
|
names?: ((string | LanguageString$1))[];
|
|
13273
13327
|
language?: Intl.Locale | null;
|
|
@@ -13291,6 +13345,7 @@ declare class Mention extends Link {
|
|
|
13291
13345
|
rel?: string | null;
|
|
13292
13346
|
rels?: (string)[];
|
|
13293
13347
|
mediaType?: string | null;
|
|
13348
|
+
digestMultibase?: string | null;
|
|
13294
13349
|
name?: string | LanguageString$1 | null;
|
|
13295
13350
|
names?: ((string | LanguageString$1))[];
|
|
13296
13351
|
language?: Intl.Locale | null;
|
|
@@ -14086,6 +14141,8 @@ declare class Organization extends Object$1 {
|
|
|
14086
14141
|
publicKeys?: (CryptographicKey | URL)[];
|
|
14087
14142
|
assertionMethod?: Multikey | URL | null;
|
|
14088
14143
|
assertionMethods?: (Multikey | URL)[];
|
|
14144
|
+
gateway?: URL | null;
|
|
14145
|
+
gateways?: (URL)[];
|
|
14089
14146
|
manuallyApprovesFollowers?: boolean | null;
|
|
14090
14147
|
inbox?: OrderedCollection | OrderedCollectionPage | URL | null;
|
|
14091
14148
|
outbox?: OrderedCollection | OrderedCollectionPage | URL | null;
|
|
@@ -14180,6 +14237,8 @@ declare class Organization extends Object$1 {
|
|
|
14180
14237
|
publicKeys?: (CryptographicKey | URL)[];
|
|
14181
14238
|
assertionMethod?: Multikey | URL | null;
|
|
14182
14239
|
assertionMethods?: (Multikey | URL)[];
|
|
14240
|
+
gateway?: URL | null;
|
|
14241
|
+
gateways?: (URL)[];
|
|
14183
14242
|
manuallyApprovesFollowers?: boolean | null;
|
|
14184
14243
|
inbox?: OrderedCollection | OrderedCollectionPage | URL | null;
|
|
14185
14244
|
outbox?: OrderedCollection | OrderedCollectionPage | URL | null;
|
|
@@ -14280,6 +14339,18 @@ declare class Organization extends Object$1 {
|
|
|
14280
14339
|
tracerProvider?: TracerProvider;
|
|
14281
14340
|
crossOrigin?: "ignore" | "throw" | "trust";
|
|
14282
14341
|
}): AsyncIterable<Multikey>;
|
|
14342
|
+
/** Gateways where the latest version of this portable actor object can be
|
|
14343
|
+
* retrieved.
|
|
14344
|
+
*
|
|
14345
|
+
* See [FEP-ef61](https://w3id.org/fep/ef61) for details.
|
|
14346
|
+
*/
|
|
14347
|
+
get gateway(): URL | null;
|
|
14348
|
+
/** Gateways where the latest version of this portable actor object can be
|
|
14349
|
+
* retrieved.
|
|
14350
|
+
*
|
|
14351
|
+
* See [FEP-ef61](https://w3id.org/fep/ef61) for details.
|
|
14352
|
+
*/
|
|
14353
|
+
get gateways(): (URL)[];
|
|
14283
14354
|
/** When `true`, conveys that for this actor, follow requests are not usually
|
|
14284
14355
|
* automatically approved, but instead are examined by a person who may accept
|
|
14285
14356
|
* or reject the request, at some time in the future. Setting of `false`
|
|
@@ -14694,6 +14765,7 @@ declare class Page extends Document {
|
|
|
14694
14765
|
announceAuthorization?: AnnounceAuthorization | URL | null;
|
|
14695
14766
|
width?: number | null;
|
|
14696
14767
|
height?: number | null;
|
|
14768
|
+
digestMultibase?: string | null;
|
|
14697
14769
|
}, options?: {
|
|
14698
14770
|
documentLoader?: DocumentLoader$1;
|
|
14699
14771
|
contextLoader?: DocumentLoader$1;
|
|
@@ -14762,6 +14834,7 @@ declare class Page extends Document {
|
|
|
14762
14834
|
announceAuthorization?: AnnounceAuthorization | URL | null;
|
|
14763
14835
|
width?: number | null;
|
|
14764
14836
|
height?: number | null;
|
|
14837
|
+
digestMultibase?: string | null;
|
|
14765
14838
|
}, options?: {
|
|
14766
14839
|
documentLoader?: DocumentLoader$1;
|
|
14767
14840
|
contextLoader?: DocumentLoader$1;
|
|
@@ -14881,6 +14954,8 @@ declare class Person extends Object$1 {
|
|
|
14881
14954
|
publicKeys?: (CryptographicKey | URL)[];
|
|
14882
14955
|
assertionMethod?: Multikey | URL | null;
|
|
14883
14956
|
assertionMethods?: (Multikey | URL)[];
|
|
14957
|
+
gateway?: URL | null;
|
|
14958
|
+
gateways?: (URL)[];
|
|
14884
14959
|
manuallyApprovesFollowers?: boolean | null;
|
|
14885
14960
|
inbox?: OrderedCollection | OrderedCollectionPage | URL | null;
|
|
14886
14961
|
outbox?: OrderedCollection | OrderedCollectionPage | URL | null;
|
|
@@ -14975,6 +15050,8 @@ declare class Person extends Object$1 {
|
|
|
14975
15050
|
publicKeys?: (CryptographicKey | URL)[];
|
|
14976
15051
|
assertionMethod?: Multikey | URL | null;
|
|
14977
15052
|
assertionMethods?: (Multikey | URL)[];
|
|
15053
|
+
gateway?: URL | null;
|
|
15054
|
+
gateways?: (URL)[];
|
|
14978
15055
|
manuallyApprovesFollowers?: boolean | null;
|
|
14979
15056
|
inbox?: OrderedCollection | OrderedCollectionPage | URL | null;
|
|
14980
15057
|
outbox?: OrderedCollection | OrderedCollectionPage | URL | null;
|
|
@@ -15075,6 +15152,18 @@ declare class Person extends Object$1 {
|
|
|
15075
15152
|
tracerProvider?: TracerProvider;
|
|
15076
15153
|
crossOrigin?: "ignore" | "throw" | "trust";
|
|
15077
15154
|
}): AsyncIterable<Multikey>;
|
|
15155
|
+
/** Gateways where the latest version of this portable actor object can be
|
|
15156
|
+
* retrieved.
|
|
15157
|
+
*
|
|
15158
|
+
* See [FEP-ef61](https://w3id.org/fep/ef61) for details.
|
|
15159
|
+
*/
|
|
15160
|
+
get gateway(): URL | null;
|
|
15161
|
+
/** Gateways where the latest version of this portable actor object can be
|
|
15162
|
+
* retrieved.
|
|
15163
|
+
*
|
|
15164
|
+
* See [FEP-ef61](https://w3id.org/fep/ef61) for details.
|
|
15165
|
+
*/
|
|
15166
|
+
get gateways(): (URL)[];
|
|
15078
15167
|
/** When `true`, conveys that for this actor, follow requests are not usually
|
|
15079
15168
|
* automatically approved, but instead are examined by a person who may accept
|
|
15080
15169
|
* or reject the request, at some time in the future. Setting of `false`
|
|
@@ -17110,6 +17199,8 @@ declare class Service extends Object$1 {
|
|
|
17110
17199
|
publicKeys?: (CryptographicKey | URL)[];
|
|
17111
17200
|
assertionMethod?: Multikey | URL | null;
|
|
17112
17201
|
assertionMethods?: (Multikey | URL)[];
|
|
17202
|
+
gateway?: URL | null;
|
|
17203
|
+
gateways?: (URL)[];
|
|
17113
17204
|
manuallyApprovesFollowers?: boolean | null;
|
|
17114
17205
|
inbox?: OrderedCollection | OrderedCollectionPage | URL | null;
|
|
17115
17206
|
outbox?: OrderedCollection | OrderedCollectionPage | URL | null;
|
|
@@ -17204,6 +17295,8 @@ declare class Service extends Object$1 {
|
|
|
17204
17295
|
publicKeys?: (CryptographicKey | URL)[];
|
|
17205
17296
|
assertionMethod?: Multikey | URL | null;
|
|
17206
17297
|
assertionMethods?: (Multikey | URL)[];
|
|
17298
|
+
gateway?: URL | null;
|
|
17299
|
+
gateways?: (URL)[];
|
|
17207
17300
|
manuallyApprovesFollowers?: boolean | null;
|
|
17208
17301
|
inbox?: OrderedCollection | OrderedCollectionPage | URL | null;
|
|
17209
17302
|
outbox?: OrderedCollection | OrderedCollectionPage | URL | null;
|
|
@@ -17304,6 +17397,18 @@ declare class Service extends Object$1 {
|
|
|
17304
17397
|
tracerProvider?: TracerProvider;
|
|
17305
17398
|
crossOrigin?: "ignore" | "throw" | "trust";
|
|
17306
17399
|
}): AsyncIterable<Multikey>;
|
|
17400
|
+
/** Gateways where the latest version of this portable actor object can be
|
|
17401
|
+
* retrieved.
|
|
17402
|
+
*
|
|
17403
|
+
* See [FEP-ef61](https://w3id.org/fep/ef61) for details.
|
|
17404
|
+
*/
|
|
17405
|
+
get gateway(): URL | null;
|
|
17406
|
+
/** Gateways where the latest version of this portable actor object can be
|
|
17407
|
+
* retrieved.
|
|
17408
|
+
*
|
|
17409
|
+
* See [FEP-ef61](https://w3id.org/fep/ef61) for details.
|
|
17410
|
+
*/
|
|
17411
|
+
get gateways(): (URL)[];
|
|
17307
17412
|
/** When `true`, conveys that for this actor, follow requests are not usually
|
|
17308
17413
|
* automatically approved, but instead are examined by a person who may accept
|
|
17309
17414
|
* or reject the request, at some time in the future. Setting of `false`
|
|
@@ -19042,6 +19147,7 @@ declare class Video extends Document {
|
|
|
19042
19147
|
announceAuthorization?: AnnounceAuthorization | URL | null;
|
|
19043
19148
|
width?: number | null;
|
|
19044
19149
|
height?: number | null;
|
|
19150
|
+
digestMultibase?: string | null;
|
|
19045
19151
|
}, options?: {
|
|
19046
19152
|
documentLoader?: DocumentLoader$1;
|
|
19047
19153
|
contextLoader?: DocumentLoader$1;
|
|
@@ -19110,6 +19216,7 @@ declare class Video extends Document {
|
|
|
19110
19216
|
announceAuthorization?: AnnounceAuthorization | URL | null;
|
|
19111
19217
|
width?: number | null;
|
|
19112
19218
|
height?: number | null;
|
|
19219
|
+
digestMultibase?: string | null;
|
|
19113
19220
|
}, options?: {
|
|
19114
19221
|
documentLoader?: DocumentLoader$1;
|
|
19115
19222
|
contextLoader?: DocumentLoader$1;
|
|
@@ -19770,7 +19877,8 @@ declare function traverseCollection(collection: Collection, options?: TraverseCo
|
|
|
19770
19877
|
* When an `icon` or `image` property on a vocabulary object contains an
|
|
19771
19878
|
* explicit ActivityStreams `Link` rather than an `Image`, this preprocessor
|
|
19772
19879
|
* converts it into an `Image` by mapping `href` to `url`, copying
|
|
19773
|
-
* `mediaType`, `name`, `width`,
|
|
19880
|
+
* `mediaType`, `name`, `width`, `height`, and `digestMultibase`, and
|
|
19881
|
+
* discarding the rest.
|
|
19774
19882
|
*
|
|
19775
19883
|
* If the value is not a Link, or the Link has no `href`, it returns
|
|
19776
19884
|
* `undefined` so the normal range decoder continues.
|
package/dist/mod.d.ts
CHANGED
|
@@ -7412,6 +7412,8 @@ declare class Application extends Object$1 {
|
|
|
7412
7412
|
publicKeys?: (CryptographicKey | URL)[];
|
|
7413
7413
|
assertionMethod?: Multikey | URL | null;
|
|
7414
7414
|
assertionMethods?: (Multikey | URL)[];
|
|
7415
|
+
gateway?: URL | null;
|
|
7416
|
+
gateways?: (URL)[];
|
|
7415
7417
|
manuallyApprovesFollowers?: boolean | null;
|
|
7416
7418
|
inbox?: OrderedCollection | OrderedCollectionPage | URL | null;
|
|
7417
7419
|
outbox?: OrderedCollection | OrderedCollectionPage | URL | null;
|
|
@@ -7506,6 +7508,8 @@ declare class Application extends Object$1 {
|
|
|
7506
7508
|
publicKeys?: (CryptographicKey | URL)[];
|
|
7507
7509
|
assertionMethod?: Multikey | URL | null;
|
|
7508
7510
|
assertionMethods?: (Multikey | URL)[];
|
|
7511
|
+
gateway?: URL | null;
|
|
7512
|
+
gateways?: (URL)[];
|
|
7509
7513
|
manuallyApprovesFollowers?: boolean | null;
|
|
7510
7514
|
inbox?: OrderedCollection | OrderedCollectionPage | URL | null;
|
|
7511
7515
|
outbox?: OrderedCollection | OrderedCollectionPage | URL | null;
|
|
@@ -7606,6 +7610,18 @@ declare class Application extends Object$1 {
|
|
|
7606
7610
|
tracerProvider?: TracerProvider;
|
|
7607
7611
|
crossOrigin?: "ignore" | "throw" | "trust";
|
|
7608
7612
|
}): AsyncIterable<Multikey>;
|
|
7613
|
+
/** Gateways where the latest version of this portable actor object can be
|
|
7614
|
+
* retrieved.
|
|
7615
|
+
*
|
|
7616
|
+
* See [FEP-ef61](https://w3id.org/fep/ef61) for details.
|
|
7617
|
+
*/
|
|
7618
|
+
get gateway(): URL | null;
|
|
7619
|
+
/** Gateways where the latest version of this portable actor object can be
|
|
7620
|
+
* retrieved.
|
|
7621
|
+
*
|
|
7622
|
+
* See [FEP-ef61](https://w3id.org/fep/ef61) for details.
|
|
7623
|
+
*/
|
|
7624
|
+
get gateways(): (URL)[];
|
|
7609
7625
|
/** When `true`, conveys that for this actor, follow requests are not usually
|
|
7610
7626
|
* automatically approved, but instead are examined by a person who may accept
|
|
7611
7627
|
* or reject the request, at some time in the future. Setting of `false`
|
|
@@ -8659,6 +8675,7 @@ declare class Document extends Object$1 {
|
|
|
8659
8675
|
announceAuthorization?: AnnounceAuthorization | URL | null;
|
|
8660
8676
|
width?: number | null;
|
|
8661
8677
|
height?: number | null;
|
|
8678
|
+
digestMultibase?: string | null;
|
|
8662
8679
|
}, options?: {
|
|
8663
8680
|
documentLoader?: DocumentLoader$1;
|
|
8664
8681
|
contextLoader?: DocumentLoader$1;
|
|
@@ -8727,6 +8744,7 @@ declare class Document extends Object$1 {
|
|
|
8727
8744
|
announceAuthorization?: AnnounceAuthorization | URL | null;
|
|
8728
8745
|
width?: number | null;
|
|
8729
8746
|
height?: number | null;
|
|
8747
|
+
digestMultibase?: string | null;
|
|
8730
8748
|
}, options?: {
|
|
8731
8749
|
documentLoader?: DocumentLoader$1;
|
|
8732
8750
|
contextLoader?: DocumentLoader$1;
|
|
@@ -8739,6 +8757,12 @@ declare class Document extends Object$1 {
|
|
|
8739
8757
|
* device-independent pixels of the linked resource.
|
|
8740
8758
|
*/
|
|
8741
8759
|
get height(): number | null;
|
|
8760
|
+
/** The multibase-encoded integrity digest of an external resource represented
|
|
8761
|
+
* by this document.
|
|
8762
|
+
*
|
|
8763
|
+
* See [FEP-ef61](https://w3id.org/fep/ef61) for details.
|
|
8764
|
+
*/
|
|
8765
|
+
get digestMultibase(): string | null;
|
|
8742
8766
|
/**
|
|
8743
8767
|
* Converts this object to a JSON-LD structure.
|
|
8744
8768
|
* @param options The options to use.
|
|
@@ -8849,6 +8873,7 @@ declare class Audio extends Document {
|
|
|
8849
8873
|
announceAuthorization?: AnnounceAuthorization | URL | null;
|
|
8850
8874
|
width?: number | null;
|
|
8851
8875
|
height?: number | null;
|
|
8876
|
+
digestMultibase?: string | null;
|
|
8852
8877
|
}, options?: {
|
|
8853
8878
|
documentLoader?: DocumentLoader$1;
|
|
8854
8879
|
contextLoader?: DocumentLoader$1;
|
|
@@ -8917,6 +8942,7 @@ declare class Audio extends Document {
|
|
|
8917
8942
|
announceAuthorization?: AnnounceAuthorization | URL | null;
|
|
8918
8943
|
width?: number | null;
|
|
8919
8944
|
height?: number | null;
|
|
8945
|
+
digestMultibase?: string | null;
|
|
8920
8946
|
}, options?: {
|
|
8921
8947
|
documentLoader?: DocumentLoader$1;
|
|
8922
8948
|
contextLoader?: DocumentLoader$1;
|
|
@@ -11045,6 +11071,8 @@ declare class Group extends Object$1 {
|
|
|
11045
11071
|
publicKeys?: (CryptographicKey | URL)[];
|
|
11046
11072
|
assertionMethod?: Multikey | URL | null;
|
|
11047
11073
|
assertionMethods?: (Multikey | URL)[];
|
|
11074
|
+
gateway?: URL | null;
|
|
11075
|
+
gateways?: (URL)[];
|
|
11048
11076
|
manuallyApprovesFollowers?: boolean | null;
|
|
11049
11077
|
inbox?: OrderedCollection | OrderedCollectionPage | URL | null;
|
|
11050
11078
|
outbox?: OrderedCollection | OrderedCollectionPage | URL | null;
|
|
@@ -11139,6 +11167,8 @@ declare class Group extends Object$1 {
|
|
|
11139
11167
|
publicKeys?: (CryptographicKey | URL)[];
|
|
11140
11168
|
assertionMethod?: Multikey | URL | null;
|
|
11141
11169
|
assertionMethods?: (Multikey | URL)[];
|
|
11170
|
+
gateway?: URL | null;
|
|
11171
|
+
gateways?: (URL)[];
|
|
11142
11172
|
manuallyApprovesFollowers?: boolean | null;
|
|
11143
11173
|
inbox?: OrderedCollection | OrderedCollectionPage | URL | null;
|
|
11144
11174
|
outbox?: OrderedCollection | OrderedCollectionPage | URL | null;
|
|
@@ -11239,6 +11269,18 @@ declare class Group extends Object$1 {
|
|
|
11239
11269
|
tracerProvider?: TracerProvider;
|
|
11240
11270
|
crossOrigin?: "ignore" | "throw" | "trust";
|
|
11241
11271
|
}): AsyncIterable<Multikey>;
|
|
11272
|
+
/** Gateways where the latest version of this portable actor object can be
|
|
11273
|
+
* retrieved.
|
|
11274
|
+
*
|
|
11275
|
+
* See [FEP-ef61](https://w3id.org/fep/ef61) for details.
|
|
11276
|
+
*/
|
|
11277
|
+
get gateway(): URL | null;
|
|
11278
|
+
/** Gateways where the latest version of this portable actor object can be
|
|
11279
|
+
* retrieved.
|
|
11280
|
+
*
|
|
11281
|
+
* See [FEP-ef61](https://w3id.org/fep/ef61) for details.
|
|
11282
|
+
*/
|
|
11283
|
+
get gateways(): (URL)[];
|
|
11242
11284
|
/** When `true`, conveys that for this actor, follow requests are not usually
|
|
11243
11285
|
* automatically approved, but instead are examined by a person who may accept
|
|
11244
11286
|
* or reject the request, at some time in the future. Setting of `false`
|
|
@@ -11622,6 +11664,7 @@ declare class Link {
|
|
|
11622
11664
|
rel?: string | null;
|
|
11623
11665
|
rels?: (string)[];
|
|
11624
11666
|
mediaType?: string | null;
|
|
11667
|
+
digestMultibase?: string | null;
|
|
11625
11668
|
name?: string | LanguageString$1 | null;
|
|
11626
11669
|
names?: ((string | LanguageString$1))[];
|
|
11627
11670
|
language?: Intl.Locale | null;
|
|
@@ -11645,6 +11688,7 @@ declare class Link {
|
|
|
11645
11688
|
rel?: string | null;
|
|
11646
11689
|
rels?: (string)[];
|
|
11647
11690
|
mediaType?: string | null;
|
|
11691
|
+
digestMultibase?: string | null;
|
|
11648
11692
|
name?: string | LanguageString$1 | null;
|
|
11649
11693
|
names?: ((string | LanguageString$1))[];
|
|
11650
11694
|
language?: Intl.Locale | null;
|
|
@@ -11678,6 +11722,11 @@ declare class Link {
|
|
|
11678
11722
|
* referenced resource.
|
|
11679
11723
|
*/
|
|
11680
11724
|
get mediaType(): string | null;
|
|
11725
|
+
/** The multibase-encoded integrity digest of the linked resource.
|
|
11726
|
+
*
|
|
11727
|
+
* See [FEP-ef61](https://w3id.org/fep/ef61) for details.
|
|
11728
|
+
*/
|
|
11729
|
+
get digestMultibase(): string | null;
|
|
11681
11730
|
/** A simple, human-readable, plain-text name for the object. HTML markup MUST
|
|
11682
11731
|
* NOT be included. The name MAY be expressed using multiple language-tagged
|
|
11683
11732
|
* values.
|
|
@@ -11776,6 +11825,7 @@ declare class Hashtag extends Link {
|
|
|
11776
11825
|
rel?: string | null;
|
|
11777
11826
|
rels?: (string)[];
|
|
11778
11827
|
mediaType?: string | null;
|
|
11828
|
+
digestMultibase?: string | null;
|
|
11779
11829
|
name?: string | LanguageString$1 | null;
|
|
11780
11830
|
names?: ((string | LanguageString$1))[];
|
|
11781
11831
|
language?: Intl.Locale | null;
|
|
@@ -11799,6 +11849,7 @@ declare class Hashtag extends Link {
|
|
|
11799
11849
|
rel?: string | null;
|
|
11800
11850
|
rels?: (string)[];
|
|
11801
11851
|
mediaType?: string | null;
|
|
11852
|
+
digestMultibase?: string | null;
|
|
11802
11853
|
name?: string | LanguageString$1 | null;
|
|
11803
11854
|
names?: ((string | LanguageString$1))[];
|
|
11804
11855
|
language?: Intl.Locale | null;
|
|
@@ -11919,6 +11970,7 @@ declare class Image extends Document {
|
|
|
11919
11970
|
announceAuthorization?: AnnounceAuthorization | URL | null;
|
|
11920
11971
|
width?: number | null;
|
|
11921
11972
|
height?: number | null;
|
|
11973
|
+
digestMultibase?: string | null;
|
|
11922
11974
|
}, options?: {
|
|
11923
11975
|
documentLoader?: DocumentLoader$1;
|
|
11924
11976
|
contextLoader?: DocumentLoader$1;
|
|
@@ -11987,6 +12039,7 @@ declare class Image extends Document {
|
|
|
11987
12039
|
announceAuthorization?: AnnounceAuthorization | URL | null;
|
|
11988
12040
|
width?: number | null;
|
|
11989
12041
|
height?: number | null;
|
|
12042
|
+
digestMultibase?: string | null;
|
|
11990
12043
|
}, options?: {
|
|
11991
12044
|
documentLoader?: DocumentLoader$1;
|
|
11992
12045
|
contextLoader?: DocumentLoader$1;
|
|
@@ -13268,6 +13321,7 @@ declare class Mention extends Link {
|
|
|
13268
13321
|
rel?: string | null;
|
|
13269
13322
|
rels?: (string)[];
|
|
13270
13323
|
mediaType?: string | null;
|
|
13324
|
+
digestMultibase?: string | null;
|
|
13271
13325
|
name?: string | LanguageString$1 | null;
|
|
13272
13326
|
names?: ((string | LanguageString$1))[];
|
|
13273
13327
|
language?: Intl.Locale | null;
|
|
@@ -13291,6 +13345,7 @@ declare class Mention extends Link {
|
|
|
13291
13345
|
rel?: string | null;
|
|
13292
13346
|
rels?: (string)[];
|
|
13293
13347
|
mediaType?: string | null;
|
|
13348
|
+
digestMultibase?: string | null;
|
|
13294
13349
|
name?: string | LanguageString$1 | null;
|
|
13295
13350
|
names?: ((string | LanguageString$1))[];
|
|
13296
13351
|
language?: Intl.Locale | null;
|
|
@@ -14086,6 +14141,8 @@ declare class Organization extends Object$1 {
|
|
|
14086
14141
|
publicKeys?: (CryptographicKey | URL)[];
|
|
14087
14142
|
assertionMethod?: Multikey | URL | null;
|
|
14088
14143
|
assertionMethods?: (Multikey | URL)[];
|
|
14144
|
+
gateway?: URL | null;
|
|
14145
|
+
gateways?: (URL)[];
|
|
14089
14146
|
manuallyApprovesFollowers?: boolean | null;
|
|
14090
14147
|
inbox?: OrderedCollection | OrderedCollectionPage | URL | null;
|
|
14091
14148
|
outbox?: OrderedCollection | OrderedCollectionPage | URL | null;
|
|
@@ -14180,6 +14237,8 @@ declare class Organization extends Object$1 {
|
|
|
14180
14237
|
publicKeys?: (CryptographicKey | URL)[];
|
|
14181
14238
|
assertionMethod?: Multikey | URL | null;
|
|
14182
14239
|
assertionMethods?: (Multikey | URL)[];
|
|
14240
|
+
gateway?: URL | null;
|
|
14241
|
+
gateways?: (URL)[];
|
|
14183
14242
|
manuallyApprovesFollowers?: boolean | null;
|
|
14184
14243
|
inbox?: OrderedCollection | OrderedCollectionPage | URL | null;
|
|
14185
14244
|
outbox?: OrderedCollection | OrderedCollectionPage | URL | null;
|
|
@@ -14280,6 +14339,18 @@ declare class Organization extends Object$1 {
|
|
|
14280
14339
|
tracerProvider?: TracerProvider;
|
|
14281
14340
|
crossOrigin?: "ignore" | "throw" | "trust";
|
|
14282
14341
|
}): AsyncIterable<Multikey>;
|
|
14342
|
+
/** Gateways where the latest version of this portable actor object can be
|
|
14343
|
+
* retrieved.
|
|
14344
|
+
*
|
|
14345
|
+
* See [FEP-ef61](https://w3id.org/fep/ef61) for details.
|
|
14346
|
+
*/
|
|
14347
|
+
get gateway(): URL | null;
|
|
14348
|
+
/** Gateways where the latest version of this portable actor object can be
|
|
14349
|
+
* retrieved.
|
|
14350
|
+
*
|
|
14351
|
+
* See [FEP-ef61](https://w3id.org/fep/ef61) for details.
|
|
14352
|
+
*/
|
|
14353
|
+
get gateways(): (URL)[];
|
|
14283
14354
|
/** When `true`, conveys that for this actor, follow requests are not usually
|
|
14284
14355
|
* automatically approved, but instead are examined by a person who may accept
|
|
14285
14356
|
* or reject the request, at some time in the future. Setting of `false`
|
|
@@ -14694,6 +14765,7 @@ declare class Page extends Document {
|
|
|
14694
14765
|
announceAuthorization?: AnnounceAuthorization | URL | null;
|
|
14695
14766
|
width?: number | null;
|
|
14696
14767
|
height?: number | null;
|
|
14768
|
+
digestMultibase?: string | null;
|
|
14697
14769
|
}, options?: {
|
|
14698
14770
|
documentLoader?: DocumentLoader$1;
|
|
14699
14771
|
contextLoader?: DocumentLoader$1;
|
|
@@ -14762,6 +14834,7 @@ declare class Page extends Document {
|
|
|
14762
14834
|
announceAuthorization?: AnnounceAuthorization | URL | null;
|
|
14763
14835
|
width?: number | null;
|
|
14764
14836
|
height?: number | null;
|
|
14837
|
+
digestMultibase?: string | null;
|
|
14765
14838
|
}, options?: {
|
|
14766
14839
|
documentLoader?: DocumentLoader$1;
|
|
14767
14840
|
contextLoader?: DocumentLoader$1;
|
|
@@ -14881,6 +14954,8 @@ declare class Person extends Object$1 {
|
|
|
14881
14954
|
publicKeys?: (CryptographicKey | URL)[];
|
|
14882
14955
|
assertionMethod?: Multikey | URL | null;
|
|
14883
14956
|
assertionMethods?: (Multikey | URL)[];
|
|
14957
|
+
gateway?: URL | null;
|
|
14958
|
+
gateways?: (URL)[];
|
|
14884
14959
|
manuallyApprovesFollowers?: boolean | null;
|
|
14885
14960
|
inbox?: OrderedCollection | OrderedCollectionPage | URL | null;
|
|
14886
14961
|
outbox?: OrderedCollection | OrderedCollectionPage | URL | null;
|
|
@@ -14975,6 +15050,8 @@ declare class Person extends Object$1 {
|
|
|
14975
15050
|
publicKeys?: (CryptographicKey | URL)[];
|
|
14976
15051
|
assertionMethod?: Multikey | URL | null;
|
|
14977
15052
|
assertionMethods?: (Multikey | URL)[];
|
|
15053
|
+
gateway?: URL | null;
|
|
15054
|
+
gateways?: (URL)[];
|
|
14978
15055
|
manuallyApprovesFollowers?: boolean | null;
|
|
14979
15056
|
inbox?: OrderedCollection | OrderedCollectionPage | URL | null;
|
|
14980
15057
|
outbox?: OrderedCollection | OrderedCollectionPage | URL | null;
|
|
@@ -15075,6 +15152,18 @@ declare class Person extends Object$1 {
|
|
|
15075
15152
|
tracerProvider?: TracerProvider;
|
|
15076
15153
|
crossOrigin?: "ignore" | "throw" | "trust";
|
|
15077
15154
|
}): AsyncIterable<Multikey>;
|
|
15155
|
+
/** Gateways where the latest version of this portable actor object can be
|
|
15156
|
+
* retrieved.
|
|
15157
|
+
*
|
|
15158
|
+
* See [FEP-ef61](https://w3id.org/fep/ef61) for details.
|
|
15159
|
+
*/
|
|
15160
|
+
get gateway(): URL | null;
|
|
15161
|
+
/** Gateways where the latest version of this portable actor object can be
|
|
15162
|
+
* retrieved.
|
|
15163
|
+
*
|
|
15164
|
+
* See [FEP-ef61](https://w3id.org/fep/ef61) for details.
|
|
15165
|
+
*/
|
|
15166
|
+
get gateways(): (URL)[];
|
|
15078
15167
|
/** When `true`, conveys that for this actor, follow requests are not usually
|
|
15079
15168
|
* automatically approved, but instead are examined by a person who may accept
|
|
15080
15169
|
* or reject the request, at some time in the future. Setting of `false`
|
|
@@ -17110,6 +17199,8 @@ declare class Service extends Object$1 {
|
|
|
17110
17199
|
publicKeys?: (CryptographicKey | URL)[];
|
|
17111
17200
|
assertionMethod?: Multikey | URL | null;
|
|
17112
17201
|
assertionMethods?: (Multikey | URL)[];
|
|
17202
|
+
gateway?: URL | null;
|
|
17203
|
+
gateways?: (URL)[];
|
|
17113
17204
|
manuallyApprovesFollowers?: boolean | null;
|
|
17114
17205
|
inbox?: OrderedCollection | OrderedCollectionPage | URL | null;
|
|
17115
17206
|
outbox?: OrderedCollection | OrderedCollectionPage | URL | null;
|
|
@@ -17204,6 +17295,8 @@ declare class Service extends Object$1 {
|
|
|
17204
17295
|
publicKeys?: (CryptographicKey | URL)[];
|
|
17205
17296
|
assertionMethod?: Multikey | URL | null;
|
|
17206
17297
|
assertionMethods?: (Multikey | URL)[];
|
|
17298
|
+
gateway?: URL | null;
|
|
17299
|
+
gateways?: (URL)[];
|
|
17207
17300
|
manuallyApprovesFollowers?: boolean | null;
|
|
17208
17301
|
inbox?: OrderedCollection | OrderedCollectionPage | URL | null;
|
|
17209
17302
|
outbox?: OrderedCollection | OrderedCollectionPage | URL | null;
|
|
@@ -17304,6 +17397,18 @@ declare class Service extends Object$1 {
|
|
|
17304
17397
|
tracerProvider?: TracerProvider;
|
|
17305
17398
|
crossOrigin?: "ignore" | "throw" | "trust";
|
|
17306
17399
|
}): AsyncIterable<Multikey>;
|
|
17400
|
+
/** Gateways where the latest version of this portable actor object can be
|
|
17401
|
+
* retrieved.
|
|
17402
|
+
*
|
|
17403
|
+
* See [FEP-ef61](https://w3id.org/fep/ef61) for details.
|
|
17404
|
+
*/
|
|
17405
|
+
get gateway(): URL | null;
|
|
17406
|
+
/** Gateways where the latest version of this portable actor object can be
|
|
17407
|
+
* retrieved.
|
|
17408
|
+
*
|
|
17409
|
+
* See [FEP-ef61](https://w3id.org/fep/ef61) for details.
|
|
17410
|
+
*/
|
|
17411
|
+
get gateways(): (URL)[];
|
|
17307
17412
|
/** When `true`, conveys that for this actor, follow requests are not usually
|
|
17308
17413
|
* automatically approved, but instead are examined by a person who may accept
|
|
17309
17414
|
* or reject the request, at some time in the future. Setting of `false`
|
|
@@ -19042,6 +19147,7 @@ declare class Video extends Document {
|
|
|
19042
19147
|
announceAuthorization?: AnnounceAuthorization | URL | null;
|
|
19043
19148
|
width?: number | null;
|
|
19044
19149
|
height?: number | null;
|
|
19150
|
+
digestMultibase?: string | null;
|
|
19045
19151
|
}, options?: {
|
|
19046
19152
|
documentLoader?: DocumentLoader$1;
|
|
19047
19153
|
contextLoader?: DocumentLoader$1;
|
|
@@ -19110,6 +19216,7 @@ declare class Video extends Document {
|
|
|
19110
19216
|
announceAuthorization?: AnnounceAuthorization | URL | null;
|
|
19111
19217
|
width?: number | null;
|
|
19112
19218
|
height?: number | null;
|
|
19219
|
+
digestMultibase?: string | null;
|
|
19113
19220
|
}, options?: {
|
|
19114
19221
|
documentLoader?: DocumentLoader$1;
|
|
19115
19222
|
contextLoader?: DocumentLoader$1;
|
|
@@ -19770,7 +19877,8 @@ declare function traverseCollection(collection: Collection, options?: TraverseCo
|
|
|
19770
19877
|
* When an `icon` or `image` property on a vocabulary object contains an
|
|
19771
19878
|
* explicit ActivityStreams `Link` rather than an `Image`, this preprocessor
|
|
19772
19879
|
* converts it into an `Image` by mapping `href` to `url`, copying
|
|
19773
|
-
* `mediaType`, `name`, `width`,
|
|
19880
|
+
* `mediaType`, `name`, `width`, `height`, and `digestMultibase`, and
|
|
19881
|
+
* discarding the rest.
|
|
19774
19882
|
*
|
|
19775
19883
|
* If the value is not a Link, or the Link has no `href`, it returns
|
|
19776
19884
|
* `undefined` so the normal range decoder continues.
|