@fedify/vocab 2.0.7 → 2.0.9
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 +3731 -5326
- package/dist/mod.d.cts +347 -348
- package/dist/mod.d.ts +347 -348
- package/dist/mod.js +1190 -2786
- package/dist-tests/{actor.test.js → actor.test.mjs} +315 -557
- package/dist-tests/{deno-DDB5zoHF.js → deno--vowmj74.mjs} +66 -145
- package/dist-tests/{lookup.test.js → lookup.test.mjs} +29 -48
- package/dist-tests/type-Cf-vxmre.mjs +9 -0
- package/dist-tests/type.test.mjs +16 -0
- package/dist-tests/{utils-BSWXlrig.js → utils-CE8Dk5hm.mjs} +3 -7
- package/dist-tests/{vocab-BDW9_gZ_.js → vocab-B2Bh5Rdt.mjs} +1191 -2734
- package/dist-tests/{vocab.test.js → vocab.test.mjs} +63 -102
- package/package.json +6 -6
- package/dist-tests/type-CNuABalk.js +0 -13
- package/dist-tests/type.test.js +0 -24
package/dist/mod.d.cts
CHANGED
|
@@ -2,7 +2,6 @@ import { DocumentLoader, DocumentLoader as DocumentLoader$1, GetUserAgentOptions
|
|
|
2
2
|
import { Span, TracerProvider } from "@opentelemetry/api";
|
|
3
3
|
|
|
4
4
|
//#region src/vocab.d.ts
|
|
5
|
-
|
|
6
5
|
/** Describes an object of any kind. The Object type serves as the base type for
|
|
7
6
|
* most of the other kinds of objects defined in the Activity Vocabulary,
|
|
8
7
|
* including other Core types such as {@link Activity},
|
|
@@ -803,7 +802,7 @@ declare class Emoji extends Object$1 {
|
|
|
803
802
|
/**
|
|
804
803
|
* The type URI of {@link Emoji}: `http://joinmastodon.org/ns#Emoji`.
|
|
805
804
|
*/
|
|
806
|
-
static get typeId(): URL;
|
|
805
|
+
static override get typeId(): URL;
|
|
807
806
|
/**
|
|
808
807
|
* Constructs a new instance of Emoji with the given values.
|
|
809
808
|
* @param values The values to initialize the instance with.
|
|
@@ -870,7 +869,7 @@ declare class Emoji extends Object$1 {
|
|
|
870
869
|
* @param options The options to use for cloning.
|
|
871
870
|
* @returns The cloned instance.
|
|
872
871
|
*/
|
|
873
|
-
clone(values?: {
|
|
872
|
+
override clone(values?: {
|
|
874
873
|
id?: URL | null;
|
|
875
874
|
attachments?: (Object$1 | Link | PropertyValue | URL)[];
|
|
876
875
|
attribution?: Application | Group | Organization | Person | Service | URL | null;
|
|
@@ -934,12 +933,12 @@ declare class Emoji extends Object$1 {
|
|
|
934
933
|
when `format` is set to `'expand'`.
|
|
935
934
|
* @returns The JSON-LD representation of this object.
|
|
936
935
|
*/
|
|
937
|
-
toJsonLd(options?: {
|
|
936
|
+
override toJsonLd(options?: {
|
|
938
937
|
format?: "compact" | "expand";
|
|
939
938
|
contextLoader?: DocumentLoader$1;
|
|
940
939
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
941
940
|
}): Promise<unknown>;
|
|
942
|
-
protected isCompactable(): boolean;
|
|
941
|
+
protected override isCompactable(): boolean;
|
|
943
942
|
/**
|
|
944
943
|
* Converts a JSON-LD structure to an object of this type.
|
|
945
944
|
* @param json The JSON-LD structure to convert.
|
|
@@ -951,7 +950,7 @@ declare class Emoji extends Object$1 {
|
|
|
951
950
|
* @returns The object of this type.
|
|
952
951
|
* @throws {TypeError} If the given `json` is invalid.
|
|
953
952
|
*/
|
|
954
|
-
static fromJsonLd(json: unknown, options?: {
|
|
953
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
955
954
|
documentLoader?: DocumentLoader$1;
|
|
956
955
|
contextLoader?: DocumentLoader$1;
|
|
957
956
|
tracerProvider?: TracerProvider;
|
|
@@ -963,7 +962,7 @@ declare class Emoji extends Object$1 {
|
|
|
963
962
|
tracerProvider?: TracerProvider;
|
|
964
963
|
baseUrl?: URL;
|
|
965
964
|
}): Promise<Emoji>;
|
|
966
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
965
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
967
966
|
}
|
|
968
967
|
/** `ChatMessage`s are the messages sent in 1-on-1 chats. They are similar to
|
|
969
968
|
* {@link Note}s, but the addressing is done by having a single AP actor in
|
|
@@ -976,7 +975,7 @@ declare class ChatMessage extends Object$1 {
|
|
|
976
975
|
/**
|
|
977
976
|
* The type URI of {@link ChatMessage}: `http://litepub.social/ns#ChatMessage`.
|
|
978
977
|
*/
|
|
979
|
-
static get typeId(): URL;
|
|
978
|
+
static override get typeId(): URL;
|
|
980
979
|
/**
|
|
981
980
|
* Constructs a new instance of ChatMessage with the given values.
|
|
982
981
|
* @param values The values to initialize the instance with.
|
|
@@ -1044,7 +1043,7 @@ declare class ChatMessage extends Object$1 {
|
|
|
1044
1043
|
* @param options The options to use for cloning.
|
|
1045
1044
|
* @returns The cloned instance.
|
|
1046
1045
|
*/
|
|
1047
|
-
clone(values?: {
|
|
1046
|
+
override clone(values?: {
|
|
1048
1047
|
id?: URL | null;
|
|
1049
1048
|
attachments?: (Object$1 | Link | PropertyValue | URL)[];
|
|
1050
1049
|
attribution?: Application | Group | Organization | Person | Service | URL | null;
|
|
@@ -1121,12 +1120,12 @@ declare class ChatMessage extends Object$1 {
|
|
|
1121
1120
|
when `format` is set to `'expand'`.
|
|
1122
1121
|
* @returns The JSON-LD representation of this object.
|
|
1123
1122
|
*/
|
|
1124
|
-
toJsonLd(options?: {
|
|
1123
|
+
override toJsonLd(options?: {
|
|
1125
1124
|
format?: "compact" | "expand";
|
|
1126
1125
|
contextLoader?: DocumentLoader$1;
|
|
1127
1126
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
1128
1127
|
}): Promise<unknown>;
|
|
1129
|
-
protected isCompactable(): boolean;
|
|
1128
|
+
protected override isCompactable(): boolean;
|
|
1130
1129
|
/**
|
|
1131
1130
|
* Converts a JSON-LD structure to an object of this type.
|
|
1132
1131
|
* @param json The JSON-LD structure to convert.
|
|
@@ -1138,7 +1137,7 @@ declare class ChatMessage extends Object$1 {
|
|
|
1138
1137
|
* @returns The object of this type.
|
|
1139
1138
|
* @throws {TypeError} If the given `json` is invalid.
|
|
1140
1139
|
*/
|
|
1141
|
-
static fromJsonLd(json: unknown, options?: {
|
|
1140
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
1142
1141
|
documentLoader?: DocumentLoader$1;
|
|
1143
1142
|
contextLoader?: DocumentLoader$1;
|
|
1144
1143
|
tracerProvider?: TracerProvider;
|
|
@@ -1150,7 +1149,7 @@ declare class ChatMessage extends Object$1 {
|
|
|
1150
1149
|
tracerProvider?: TracerProvider;
|
|
1151
1150
|
baseUrl?: URL;
|
|
1152
1151
|
}): Promise<ChatMessage>;
|
|
1153
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
1152
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
1154
1153
|
}
|
|
1155
1154
|
/** An Activity is a subtype of {@link Object} that describes some form of action
|
|
1156
1155
|
* that may happen, is currently happening, or has already happened.
|
|
@@ -1163,7 +1162,7 @@ declare class Activity extends Object$1 {
|
|
|
1163
1162
|
/**
|
|
1164
1163
|
* The type URI of {@link Activity}: `https://www.w3.org/ns/activitystreams#Activity`.
|
|
1165
1164
|
*/
|
|
1166
|
-
static get typeId(): URL;
|
|
1165
|
+
static override get typeId(): URL;
|
|
1167
1166
|
/**
|
|
1168
1167
|
* Constructs a new instance of Activity with the given values.
|
|
1169
1168
|
* @param values The values to initialize the instance with.
|
|
@@ -1242,7 +1241,7 @@ declare class Activity extends Object$1 {
|
|
|
1242
1241
|
* @param options The options to use for cloning.
|
|
1243
1242
|
* @returns The cloned instance.
|
|
1244
1243
|
*/
|
|
1245
|
-
clone(values?: {
|
|
1244
|
+
override clone(values?: {
|
|
1246
1245
|
id?: URL | null;
|
|
1247
1246
|
attachments?: (Object$1 | Link | PropertyValue | URL)[];
|
|
1248
1247
|
attribution?: Application | Group | Organization | Person | Service | URL | null;
|
|
@@ -1528,12 +1527,12 @@ declare class Activity extends Object$1 {
|
|
|
1528
1527
|
when `format` is set to `'expand'`.
|
|
1529
1528
|
* @returns The JSON-LD representation of this object.
|
|
1530
1529
|
*/
|
|
1531
|
-
toJsonLd(options?: {
|
|
1530
|
+
override toJsonLd(options?: {
|
|
1532
1531
|
format?: "compact" | "expand";
|
|
1533
1532
|
contextLoader?: DocumentLoader$1;
|
|
1534
1533
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
1535
1534
|
}): Promise<unknown>;
|
|
1536
|
-
protected isCompactable(): boolean;
|
|
1535
|
+
protected override isCompactable(): boolean;
|
|
1537
1536
|
/**
|
|
1538
1537
|
* Converts a JSON-LD structure to an object of this type.
|
|
1539
1538
|
* @param json The JSON-LD structure to convert.
|
|
@@ -1545,7 +1544,7 @@ declare class Activity extends Object$1 {
|
|
|
1545
1544
|
* @returns The object of this type.
|
|
1546
1545
|
* @throws {TypeError} If the given `json` is invalid.
|
|
1547
1546
|
*/
|
|
1548
|
-
static fromJsonLd(json: unknown, options?: {
|
|
1547
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
1549
1548
|
documentLoader?: DocumentLoader$1;
|
|
1550
1549
|
contextLoader?: DocumentLoader$1;
|
|
1551
1550
|
tracerProvider?: TracerProvider;
|
|
@@ -1557,7 +1556,7 @@ declare class Activity extends Object$1 {
|
|
|
1557
1556
|
tracerProvider?: TracerProvider;
|
|
1558
1557
|
baseUrl?: URL;
|
|
1559
1558
|
}): Promise<Activity>;
|
|
1560
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
1559
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
1561
1560
|
}
|
|
1562
1561
|
/** Represents an emoji reaction. See also [FEP-c0e0](https://w3id.org/fep/c0e0).
|
|
1563
1562
|
*/
|
|
@@ -1565,7 +1564,7 @@ declare class EmojiReact extends Activity {
|
|
|
1565
1564
|
/**
|
|
1566
1565
|
* The type URI of {@link EmojiReact}: `http://litepub.social/ns#EmojiReact`.
|
|
1567
1566
|
*/
|
|
1568
|
-
static get typeId(): URL;
|
|
1567
|
+
static override get typeId(): URL;
|
|
1569
1568
|
/**
|
|
1570
1569
|
* Constructs a new instance of EmojiReact with the given values.
|
|
1571
1570
|
* @param values The values to initialize the instance with.
|
|
@@ -1644,7 +1643,7 @@ declare class EmojiReact extends Activity {
|
|
|
1644
1643
|
* @param options The options to use for cloning.
|
|
1645
1644
|
* @returns The cloned instance.
|
|
1646
1645
|
*/
|
|
1647
|
-
clone(values?: {
|
|
1646
|
+
override clone(values?: {
|
|
1648
1647
|
id?: URL | null;
|
|
1649
1648
|
attachments?: (Object$1 | Link | PropertyValue | URL)[];
|
|
1650
1649
|
attribution?: Application | Group | Organization | Person | Service | URL | null;
|
|
@@ -1720,12 +1719,12 @@ declare class EmojiReact extends Activity {
|
|
|
1720
1719
|
when `format` is set to `'expand'`.
|
|
1721
1720
|
* @returns The JSON-LD representation of this object.
|
|
1722
1721
|
*/
|
|
1723
|
-
toJsonLd(options?: {
|
|
1722
|
+
override toJsonLd(options?: {
|
|
1724
1723
|
format?: "compact" | "expand";
|
|
1725
1724
|
contextLoader?: DocumentLoader$1;
|
|
1726
1725
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
1727
1726
|
}): Promise<unknown>;
|
|
1728
|
-
protected isCompactable(): boolean;
|
|
1727
|
+
protected override isCompactable(): boolean;
|
|
1729
1728
|
/**
|
|
1730
1729
|
* Converts a JSON-LD structure to an object of this type.
|
|
1731
1730
|
* @param json The JSON-LD structure to convert.
|
|
@@ -1737,7 +1736,7 @@ declare class EmojiReact extends Activity {
|
|
|
1737
1736
|
* @returns The object of this type.
|
|
1738
1737
|
* @throws {TypeError} If the given `json` is invalid.
|
|
1739
1738
|
*/
|
|
1740
|
-
static fromJsonLd(json: unknown, options?: {
|
|
1739
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
1741
1740
|
documentLoader?: DocumentLoader$1;
|
|
1742
1741
|
contextLoader?: DocumentLoader$1;
|
|
1743
1742
|
tracerProvider?: TracerProvider;
|
|
@@ -1749,7 +1748,7 @@ declare class EmojiReact extends Activity {
|
|
|
1749
1748
|
tracerProvider?: TracerProvider;
|
|
1750
1749
|
baseUrl?: URL;
|
|
1751
1750
|
}): Promise<EmojiReact>;
|
|
1752
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
1751
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
1753
1752
|
}
|
|
1754
1753
|
/** A pair of property name and value.
|
|
1755
1754
|
*/
|
|
@@ -1950,7 +1949,7 @@ declare class Export extends DidService {
|
|
|
1950
1949
|
/**
|
|
1951
1950
|
* The type URI of {@link Export}: `https://w3id.org/fep/9091#Export`.
|
|
1952
1951
|
*/
|
|
1953
|
-
static get typeId(): URL;
|
|
1952
|
+
static override get typeId(): URL;
|
|
1954
1953
|
/**
|
|
1955
1954
|
* Constructs a new instance of Export with the given values.
|
|
1956
1955
|
* @param values The values to initialize the instance with.
|
|
@@ -1971,7 +1970,7 @@ declare class Export extends DidService {
|
|
|
1971
1970
|
* @param options The options to use for cloning.
|
|
1972
1971
|
* @returns The cloned instance.
|
|
1973
1972
|
*/
|
|
1974
|
-
clone(values?: {
|
|
1973
|
+
override clone(values?: {
|
|
1975
1974
|
id?: URL | null;
|
|
1976
1975
|
endpoint?: URL | null;
|
|
1977
1976
|
endpoints?: (URL)[];
|
|
@@ -1989,12 +1988,12 @@ declare class Export extends DidService {
|
|
|
1989
1988
|
when `format` is set to `'expand'`.
|
|
1990
1989
|
* @returns The JSON-LD representation of this object.
|
|
1991
1990
|
*/
|
|
1992
|
-
toJsonLd(options?: {
|
|
1991
|
+
override toJsonLd(options?: {
|
|
1993
1992
|
format?: "compact" | "expand";
|
|
1994
1993
|
contextLoader?: DocumentLoader$1;
|
|
1995
1994
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
1996
1995
|
}): Promise<unknown>;
|
|
1997
|
-
protected isCompactable(): boolean;
|
|
1996
|
+
protected override isCompactable(): boolean;
|
|
1998
1997
|
/**
|
|
1999
1998
|
* Converts a JSON-LD structure to an object of this type.
|
|
2000
1999
|
* @param json The JSON-LD structure to convert.
|
|
@@ -2006,7 +2005,7 @@ declare class Export extends DidService {
|
|
|
2006
2005
|
* @returns The object of this type.
|
|
2007
2006
|
* @throws {TypeError} If the given `json` is invalid.
|
|
2008
2007
|
*/
|
|
2009
|
-
static fromJsonLd(json: unknown, options?: {
|
|
2008
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
2010
2009
|
documentLoader?: DocumentLoader$1;
|
|
2011
2010
|
contextLoader?: DocumentLoader$1;
|
|
2012
2011
|
tracerProvider?: TracerProvider;
|
|
@@ -2018,7 +2017,7 @@ declare class Export extends DidService {
|
|
|
2018
2017
|
tracerProvider?: TracerProvider;
|
|
2019
2018
|
baseUrl?: URL;
|
|
2020
2019
|
}): Promise<Export>;
|
|
2021
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
2020
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
2022
2021
|
}
|
|
2023
2022
|
/** A proof that can be added to any activity or object, allowing recipients to
|
|
2024
2023
|
* verify the identity of the actor and the integrity of the data.
|
|
@@ -2377,7 +2376,7 @@ declare class Accept extends Activity {
|
|
|
2377
2376
|
/**
|
|
2378
2377
|
* The type URI of {@link Accept}: `https://www.w3.org/ns/activitystreams#Accept`.
|
|
2379
2378
|
*/
|
|
2380
|
-
static get typeId(): URL;
|
|
2379
|
+
static override get typeId(): URL;
|
|
2381
2380
|
/**
|
|
2382
2381
|
* Constructs a new instance of Accept with the given values.
|
|
2383
2382
|
* @param values The values to initialize the instance with.
|
|
@@ -2456,7 +2455,7 @@ declare class Accept extends Activity {
|
|
|
2456
2455
|
* @param options The options to use for cloning.
|
|
2457
2456
|
* @returns The cloned instance.
|
|
2458
2457
|
*/
|
|
2459
|
-
clone(values?: {
|
|
2458
|
+
override clone(values?: {
|
|
2460
2459
|
id?: URL | null;
|
|
2461
2460
|
attachments?: (Object$1 | Link | PropertyValue | URL)[];
|
|
2462
2461
|
attribution?: Application | Group | Organization | Person | Service | URL | null;
|
|
@@ -2532,12 +2531,12 @@ declare class Accept extends Activity {
|
|
|
2532
2531
|
when `format` is set to `'expand'`.
|
|
2533
2532
|
* @returns The JSON-LD representation of this object.
|
|
2534
2533
|
*/
|
|
2535
|
-
toJsonLd(options?: {
|
|
2534
|
+
override toJsonLd(options?: {
|
|
2536
2535
|
format?: "compact" | "expand";
|
|
2537
2536
|
contextLoader?: DocumentLoader$1;
|
|
2538
2537
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
2539
2538
|
}): Promise<unknown>;
|
|
2540
|
-
protected isCompactable(): boolean;
|
|
2539
|
+
protected override isCompactable(): boolean;
|
|
2541
2540
|
/**
|
|
2542
2541
|
* Converts a JSON-LD structure to an object of this type.
|
|
2543
2542
|
* @param json The JSON-LD structure to convert.
|
|
@@ -2549,7 +2548,7 @@ declare class Accept extends Activity {
|
|
|
2549
2548
|
* @returns The object of this type.
|
|
2550
2549
|
* @throws {TypeError} If the given `json` is invalid.
|
|
2551
2550
|
*/
|
|
2552
|
-
static fromJsonLd(json: unknown, options?: {
|
|
2551
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
2553
2552
|
documentLoader?: DocumentLoader$1;
|
|
2554
2553
|
contextLoader?: DocumentLoader$1;
|
|
2555
2554
|
tracerProvider?: TracerProvider;
|
|
@@ -2561,7 +2560,7 @@ declare class Accept extends Activity {
|
|
|
2561
2560
|
tracerProvider?: TracerProvider;
|
|
2562
2561
|
baseUrl?: URL;
|
|
2563
2562
|
}): Promise<Accept>;
|
|
2564
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
2563
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
2565
2564
|
}
|
|
2566
2565
|
/** Indicates that the `actor` has added the `object` to the `target`.
|
|
2567
2566
|
* If the `target` property is not explicitly specified, the target would need
|
|
@@ -2572,7 +2571,7 @@ declare class Add extends Activity {
|
|
|
2572
2571
|
/**
|
|
2573
2572
|
* The type URI of {@link Add}: `https://www.w3.org/ns/activitystreams#Add`.
|
|
2574
2573
|
*/
|
|
2575
|
-
static get typeId(): URL;
|
|
2574
|
+
static override get typeId(): URL;
|
|
2576
2575
|
/**
|
|
2577
2576
|
* Constructs a new instance of Add with the given values.
|
|
2578
2577
|
* @param values The values to initialize the instance with.
|
|
@@ -2651,7 +2650,7 @@ declare class Add extends Activity {
|
|
|
2651
2650
|
* @param options The options to use for cloning.
|
|
2652
2651
|
* @returns The cloned instance.
|
|
2653
2652
|
*/
|
|
2654
|
-
clone(values?: {
|
|
2653
|
+
override clone(values?: {
|
|
2655
2654
|
id?: URL | null;
|
|
2656
2655
|
attachments?: (Object$1 | Link | PropertyValue | URL)[];
|
|
2657
2656
|
attribution?: Application | Group | Organization | Person | Service | URL | null;
|
|
@@ -2727,12 +2726,12 @@ declare class Add extends Activity {
|
|
|
2727
2726
|
when `format` is set to `'expand'`.
|
|
2728
2727
|
* @returns The JSON-LD representation of this object.
|
|
2729
2728
|
*/
|
|
2730
|
-
toJsonLd(options?: {
|
|
2729
|
+
override toJsonLd(options?: {
|
|
2731
2730
|
format?: "compact" | "expand";
|
|
2732
2731
|
contextLoader?: DocumentLoader$1;
|
|
2733
2732
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
2734
2733
|
}): Promise<unknown>;
|
|
2735
|
-
protected isCompactable(): boolean;
|
|
2734
|
+
protected override isCompactable(): boolean;
|
|
2736
2735
|
/**
|
|
2737
2736
|
* Converts a JSON-LD structure to an object of this type.
|
|
2738
2737
|
* @param json The JSON-LD structure to convert.
|
|
@@ -2744,7 +2743,7 @@ declare class Add extends Activity {
|
|
|
2744
2743
|
* @returns The object of this type.
|
|
2745
2744
|
* @throws {TypeError} If the given `json` is invalid.
|
|
2746
2745
|
*/
|
|
2747
|
-
static fromJsonLd(json: unknown, options?: {
|
|
2746
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
2748
2747
|
documentLoader?: DocumentLoader$1;
|
|
2749
2748
|
contextLoader?: DocumentLoader$1;
|
|
2750
2749
|
tracerProvider?: TracerProvider;
|
|
@@ -2756,7 +2755,7 @@ declare class Add extends Activity {
|
|
|
2756
2755
|
tracerProvider?: TracerProvider;
|
|
2757
2756
|
baseUrl?: URL;
|
|
2758
2757
|
}): Promise<Add>;
|
|
2759
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
2758
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
2760
2759
|
}
|
|
2761
2760
|
/** Indicates that the `actor` is calling the `target`'s attention the `object`.
|
|
2762
2761
|
*
|
|
@@ -2766,7 +2765,7 @@ declare class Announce extends Activity {
|
|
|
2766
2765
|
/**
|
|
2767
2766
|
* The type URI of {@link Announce}: `https://www.w3.org/ns/activitystreams#Announce`.
|
|
2768
2767
|
*/
|
|
2769
|
-
static get typeId(): URL;
|
|
2768
|
+
static override get typeId(): URL;
|
|
2770
2769
|
/**
|
|
2771
2770
|
* Constructs a new instance of Announce with the given values.
|
|
2772
2771
|
* @param values The values to initialize the instance with.
|
|
@@ -2845,7 +2844,7 @@ declare class Announce extends Activity {
|
|
|
2845
2844
|
* @param options The options to use for cloning.
|
|
2846
2845
|
* @returns The cloned instance.
|
|
2847
2846
|
*/
|
|
2848
|
-
clone(values?: {
|
|
2847
|
+
override clone(values?: {
|
|
2849
2848
|
id?: URL | null;
|
|
2850
2849
|
attachments?: (Object$1 | Link | PropertyValue | URL)[];
|
|
2851
2850
|
attribution?: Application | Group | Organization | Person | Service | URL | null;
|
|
@@ -2921,12 +2920,12 @@ declare class Announce extends Activity {
|
|
|
2921
2920
|
when `format` is set to `'expand'`.
|
|
2922
2921
|
* @returns The JSON-LD representation of this object.
|
|
2923
2922
|
*/
|
|
2924
|
-
toJsonLd(options?: {
|
|
2923
|
+
override toJsonLd(options?: {
|
|
2925
2924
|
format?: "compact" | "expand";
|
|
2926
2925
|
contextLoader?: DocumentLoader$1;
|
|
2927
2926
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
2928
2927
|
}): Promise<unknown>;
|
|
2929
|
-
protected isCompactable(): boolean;
|
|
2928
|
+
protected override isCompactable(): boolean;
|
|
2930
2929
|
/**
|
|
2931
2930
|
* Converts a JSON-LD structure to an object of this type.
|
|
2932
2931
|
* @param json The JSON-LD structure to convert.
|
|
@@ -2938,7 +2937,7 @@ declare class Announce extends Activity {
|
|
|
2938
2937
|
* @returns The object of this type.
|
|
2939
2938
|
* @throws {TypeError} If the given `json` is invalid.
|
|
2940
2939
|
*/
|
|
2941
|
-
static fromJsonLd(json: unknown, options?: {
|
|
2940
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
2942
2941
|
documentLoader?: DocumentLoader$1;
|
|
2943
2942
|
contextLoader?: DocumentLoader$1;
|
|
2944
2943
|
tracerProvider?: TracerProvider;
|
|
@@ -2950,7 +2949,7 @@ declare class Announce extends Activity {
|
|
|
2950
2949
|
tracerProvider?: TracerProvider;
|
|
2951
2950
|
baseUrl?: URL;
|
|
2952
2951
|
}): Promise<Announce>;
|
|
2953
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
2952
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
2954
2953
|
}
|
|
2955
2954
|
/** Describes a software application.
|
|
2956
2955
|
*/
|
|
@@ -2959,7 +2958,7 @@ declare class Application extends Object$1 {
|
|
|
2959
2958
|
/**
|
|
2960
2959
|
* The type URI of {@link Application}: `https://www.w3.org/ns/activitystreams#Application`.
|
|
2961
2960
|
*/
|
|
2962
|
-
static get typeId(): URL;
|
|
2961
|
+
static override get typeId(): URL;
|
|
2963
2962
|
/**
|
|
2964
2963
|
* Constructs a new instance of Application with the given values.
|
|
2965
2964
|
* @param values The values to initialize the instance with.
|
|
@@ -3053,7 +3052,7 @@ declare class Application extends Object$1 {
|
|
|
3053
3052
|
* @param options The options to use for cloning.
|
|
3054
3053
|
* @returns The cloned instance.
|
|
3055
3054
|
*/
|
|
3056
|
-
clone(values?: {
|
|
3055
|
+
override clone(values?: {
|
|
3057
3056
|
id?: URL | null;
|
|
3058
3057
|
attachments?: (Object$1 | Link | PropertyValue | URL)[];
|
|
3059
3058
|
attribution?: Application | Group | Organization | Person | Service | URL | null;
|
|
@@ -3507,12 +3506,12 @@ declare class Application extends Object$1 {
|
|
|
3507
3506
|
when `format` is set to `'expand'`.
|
|
3508
3507
|
* @returns The JSON-LD representation of this object.
|
|
3509
3508
|
*/
|
|
3510
|
-
toJsonLd(options?: {
|
|
3509
|
+
override toJsonLd(options?: {
|
|
3511
3510
|
format?: "compact" | "expand";
|
|
3512
3511
|
contextLoader?: DocumentLoader$1;
|
|
3513
3512
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
3514
3513
|
}): Promise<unknown>;
|
|
3515
|
-
protected isCompactable(): boolean;
|
|
3514
|
+
protected override isCompactable(): boolean;
|
|
3516
3515
|
/**
|
|
3517
3516
|
* Converts a JSON-LD structure to an object of this type.
|
|
3518
3517
|
* @param json The JSON-LD structure to convert.
|
|
@@ -3524,7 +3523,7 @@ declare class Application extends Object$1 {
|
|
|
3524
3523
|
* @returns The object of this type.
|
|
3525
3524
|
* @throws {TypeError} If the given `json` is invalid.
|
|
3526
3525
|
*/
|
|
3527
|
-
static fromJsonLd(json: unknown, options?: {
|
|
3526
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
3528
3527
|
documentLoader?: DocumentLoader$1;
|
|
3529
3528
|
contextLoader?: DocumentLoader$1;
|
|
3530
3529
|
tracerProvider?: TracerProvider;
|
|
@@ -3536,7 +3535,7 @@ declare class Application extends Object$1 {
|
|
|
3536
3535
|
tracerProvider?: TracerProvider;
|
|
3537
3536
|
baseUrl?: URL;
|
|
3538
3537
|
}): Promise<Application>;
|
|
3539
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
3538
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
3540
3539
|
}
|
|
3541
3540
|
/** Instances of `IntransitiveActivity` are a subtype of {@link Activity}
|
|
3542
3541
|
* representing intransitive actions. The `object` property is therefore
|
|
@@ -3546,7 +3545,7 @@ declare class IntransitiveActivity extends Activity {
|
|
|
3546
3545
|
/**
|
|
3547
3546
|
* The type URI of {@link IntransitiveActivity}: `https://www.w3.org/ns/activitystreams#IntransitiveActivity`.
|
|
3548
3547
|
*/
|
|
3549
|
-
static get typeId(): URL;
|
|
3548
|
+
static override get typeId(): URL;
|
|
3550
3549
|
/**
|
|
3551
3550
|
* Constructs a new instance of IntransitiveActivity with the given values.
|
|
3552
3551
|
* @param values The values to initialize the instance with.
|
|
@@ -3625,7 +3624,7 @@ declare class IntransitiveActivity extends Activity {
|
|
|
3625
3624
|
* @param options The options to use for cloning.
|
|
3626
3625
|
* @returns The cloned instance.
|
|
3627
3626
|
*/
|
|
3628
|
-
clone(values?: {
|
|
3627
|
+
override clone(values?: {
|
|
3629
3628
|
id?: URL | null;
|
|
3630
3629
|
attachments?: (Object$1 | Link | PropertyValue | URL)[];
|
|
3631
3630
|
attribution?: Application | Group | Organization | Person | Service | URL | null;
|
|
@@ -3701,12 +3700,12 @@ declare class IntransitiveActivity extends Activity {
|
|
|
3701
3700
|
when `format` is set to `'expand'`.
|
|
3702
3701
|
* @returns The JSON-LD representation of this object.
|
|
3703
3702
|
*/
|
|
3704
|
-
toJsonLd(options?: {
|
|
3703
|
+
override toJsonLd(options?: {
|
|
3705
3704
|
format?: "compact" | "expand";
|
|
3706
3705
|
contextLoader?: DocumentLoader$1;
|
|
3707
3706
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
3708
3707
|
}): Promise<unknown>;
|
|
3709
|
-
protected isCompactable(): boolean;
|
|
3708
|
+
protected override isCompactable(): boolean;
|
|
3710
3709
|
/**
|
|
3711
3710
|
* Converts a JSON-LD structure to an object of this type.
|
|
3712
3711
|
* @param json The JSON-LD structure to convert.
|
|
@@ -3718,7 +3717,7 @@ declare class IntransitiveActivity extends Activity {
|
|
|
3718
3717
|
* @returns The object of this type.
|
|
3719
3718
|
* @throws {TypeError} If the given `json` is invalid.
|
|
3720
3719
|
*/
|
|
3721
|
-
static fromJsonLd(json: unknown, options?: {
|
|
3720
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
3722
3721
|
documentLoader?: DocumentLoader$1;
|
|
3723
3722
|
contextLoader?: DocumentLoader$1;
|
|
3724
3723
|
tracerProvider?: TracerProvider;
|
|
@@ -3730,7 +3729,7 @@ declare class IntransitiveActivity extends Activity {
|
|
|
3730
3729
|
tracerProvider?: TracerProvider;
|
|
3731
3730
|
baseUrl?: URL;
|
|
3732
3731
|
}): Promise<IntransitiveActivity>;
|
|
3733
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
3732
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
3734
3733
|
}
|
|
3735
3734
|
/** An `IntransitiveActivity` that indicates that the `actor` has arrived at the `location`.
|
|
3736
3735
|
* The `origin` can be used to identify the context from which the `actor` originated.
|
|
@@ -3740,7 +3739,7 @@ declare class Arrive extends IntransitiveActivity {
|
|
|
3740
3739
|
/**
|
|
3741
3740
|
* The type URI of {@link Arrive}: `https://www.w3.org/ns/activitystreams#Arrive`.
|
|
3742
3741
|
*/
|
|
3743
|
-
static get typeId(): URL;
|
|
3742
|
+
static override get typeId(): URL;
|
|
3744
3743
|
/**
|
|
3745
3744
|
* Constructs a new instance of Arrive with the given values.
|
|
3746
3745
|
* @param values The values to initialize the instance with.
|
|
@@ -3819,7 +3818,7 @@ declare class Arrive extends IntransitiveActivity {
|
|
|
3819
3818
|
* @param options The options to use for cloning.
|
|
3820
3819
|
* @returns The cloned instance.
|
|
3821
3820
|
*/
|
|
3822
|
-
clone(values?: {
|
|
3821
|
+
override clone(values?: {
|
|
3823
3822
|
id?: URL | null;
|
|
3824
3823
|
attachments?: (Object$1 | Link | PropertyValue | URL)[];
|
|
3825
3824
|
attribution?: Application | Group | Organization | Person | Service | URL | null;
|
|
@@ -3895,12 +3894,12 @@ declare class Arrive extends IntransitiveActivity {
|
|
|
3895
3894
|
when `format` is set to `'expand'`.
|
|
3896
3895
|
* @returns The JSON-LD representation of this object.
|
|
3897
3896
|
*/
|
|
3898
|
-
toJsonLd(options?: {
|
|
3897
|
+
override toJsonLd(options?: {
|
|
3899
3898
|
format?: "compact" | "expand";
|
|
3900
3899
|
contextLoader?: DocumentLoader$1;
|
|
3901
3900
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
3902
3901
|
}): Promise<unknown>;
|
|
3903
|
-
protected isCompactable(): boolean;
|
|
3902
|
+
protected override isCompactable(): boolean;
|
|
3904
3903
|
/**
|
|
3905
3904
|
* Converts a JSON-LD structure to an object of this type.
|
|
3906
3905
|
* @param json The JSON-LD structure to convert.
|
|
@@ -3912,7 +3911,7 @@ declare class Arrive extends IntransitiveActivity {
|
|
|
3912
3911
|
* @returns The object of this type.
|
|
3913
3912
|
* @throws {TypeError} If the given `json` is invalid.
|
|
3914
3913
|
*/
|
|
3915
|
-
static fromJsonLd(json: unknown, options?: {
|
|
3914
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
3916
3915
|
documentLoader?: DocumentLoader$1;
|
|
3917
3916
|
contextLoader?: DocumentLoader$1;
|
|
3918
3917
|
tracerProvider?: TracerProvider;
|
|
@@ -3924,7 +3923,7 @@ declare class Arrive extends IntransitiveActivity {
|
|
|
3924
3923
|
tracerProvider?: TracerProvider;
|
|
3925
3924
|
baseUrl?: URL;
|
|
3926
3925
|
}): Promise<Arrive>;
|
|
3927
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
3926
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
3928
3927
|
}
|
|
3929
3928
|
/** Represents any kind of multi-paragraph written work.
|
|
3930
3929
|
*/
|
|
@@ -3933,7 +3932,7 @@ declare class Article extends Object$1 {
|
|
|
3933
3932
|
/**
|
|
3934
3933
|
* The type URI of {@link Article}: `https://www.w3.org/ns/activitystreams#Article`.
|
|
3935
3934
|
*/
|
|
3936
|
-
static get typeId(): URL;
|
|
3935
|
+
static override get typeId(): URL;
|
|
3937
3936
|
/**
|
|
3938
3937
|
* Constructs a new instance of Article with the given values.
|
|
3939
3938
|
* @param values The values to initialize the instance with.
|
|
@@ -4001,7 +4000,7 @@ declare class Article extends Object$1 {
|
|
|
4001
4000
|
* @param options The options to use for cloning.
|
|
4002
4001
|
* @returns The cloned instance.
|
|
4003
4002
|
*/
|
|
4004
|
-
clone(values?: {
|
|
4003
|
+
override clone(values?: {
|
|
4005
4004
|
id?: URL | null;
|
|
4006
4005
|
attachments?: (Object$1 | Link | PropertyValue | URL)[];
|
|
4007
4006
|
attribution?: Application | Group | Organization | Person | Service | URL | null;
|
|
@@ -4078,12 +4077,12 @@ declare class Article extends Object$1 {
|
|
|
4078
4077
|
when `format` is set to `'expand'`.
|
|
4079
4078
|
* @returns The JSON-LD representation of this object.
|
|
4080
4079
|
*/
|
|
4081
|
-
toJsonLd(options?: {
|
|
4080
|
+
override toJsonLd(options?: {
|
|
4082
4081
|
format?: "compact" | "expand";
|
|
4083
4082
|
contextLoader?: DocumentLoader$1;
|
|
4084
4083
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
4085
4084
|
}): Promise<unknown>;
|
|
4086
|
-
protected isCompactable(): boolean;
|
|
4085
|
+
protected override isCompactable(): boolean;
|
|
4087
4086
|
/**
|
|
4088
4087
|
* Converts a JSON-LD structure to an object of this type.
|
|
4089
4088
|
* @param json The JSON-LD structure to convert.
|
|
@@ -4095,7 +4094,7 @@ declare class Article extends Object$1 {
|
|
|
4095
4094
|
* @returns The object of this type.
|
|
4096
4095
|
* @throws {TypeError} If the given `json` is invalid.
|
|
4097
4096
|
*/
|
|
4098
|
-
static fromJsonLd(json: unknown, options?: {
|
|
4097
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
4099
4098
|
documentLoader?: DocumentLoader$1;
|
|
4100
4099
|
contextLoader?: DocumentLoader$1;
|
|
4101
4100
|
tracerProvider?: TracerProvider;
|
|
@@ -4107,7 +4106,7 @@ declare class Article extends Object$1 {
|
|
|
4107
4106
|
tracerProvider?: TracerProvider;
|
|
4108
4107
|
baseUrl?: URL;
|
|
4109
4108
|
}): Promise<Article>;
|
|
4110
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
4109
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
4111
4110
|
}
|
|
4112
4111
|
/** Represents a document of any kind.
|
|
4113
4112
|
*/
|
|
@@ -4116,7 +4115,7 @@ declare class Document extends Object$1 {
|
|
|
4116
4115
|
/**
|
|
4117
4116
|
* The type URI of {@link Document}: `https://www.w3.org/ns/activitystreams#Document`.
|
|
4118
4117
|
*/
|
|
4119
|
-
static get typeId(): URL;
|
|
4118
|
+
static override get typeId(): URL;
|
|
4120
4119
|
/**
|
|
4121
4120
|
* Constructs a new instance of Document with the given values.
|
|
4122
4121
|
* @param values The values to initialize the instance with.
|
|
@@ -4185,7 +4184,7 @@ declare class Document extends Object$1 {
|
|
|
4185
4184
|
* @param options The options to use for cloning.
|
|
4186
4185
|
* @returns The cloned instance.
|
|
4187
4186
|
*/
|
|
4188
|
-
clone(values?: {
|
|
4187
|
+
override clone(values?: {
|
|
4189
4188
|
id?: URL | null;
|
|
4190
4189
|
attachments?: (Object$1 | Link | PropertyValue | URL)[];
|
|
4191
4190
|
attribution?: Application | Group | Organization | Person | Service | URL | null;
|
|
@@ -4259,12 +4258,12 @@ declare class Document extends Object$1 {
|
|
|
4259
4258
|
when `format` is set to `'expand'`.
|
|
4260
4259
|
* @returns The JSON-LD representation of this object.
|
|
4261
4260
|
*/
|
|
4262
|
-
toJsonLd(options?: {
|
|
4261
|
+
override toJsonLd(options?: {
|
|
4263
4262
|
format?: "compact" | "expand";
|
|
4264
4263
|
contextLoader?: DocumentLoader$1;
|
|
4265
4264
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
4266
4265
|
}): Promise<unknown>;
|
|
4267
|
-
protected isCompactable(): boolean;
|
|
4266
|
+
protected override isCompactable(): boolean;
|
|
4268
4267
|
/**
|
|
4269
4268
|
* Converts a JSON-LD structure to an object of this type.
|
|
4270
4269
|
* @param json The JSON-LD structure to convert.
|
|
@@ -4276,7 +4275,7 @@ declare class Document extends Object$1 {
|
|
|
4276
4275
|
* @returns The object of this type.
|
|
4277
4276
|
* @throws {TypeError} If the given `json` is invalid.
|
|
4278
4277
|
*/
|
|
4279
|
-
static fromJsonLd(json: unknown, options?: {
|
|
4278
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
4280
4279
|
documentLoader?: DocumentLoader$1;
|
|
4281
4280
|
contextLoader?: DocumentLoader$1;
|
|
4282
4281
|
tracerProvider?: TracerProvider;
|
|
@@ -4288,7 +4287,7 @@ declare class Document extends Object$1 {
|
|
|
4288
4287
|
tracerProvider?: TracerProvider;
|
|
4289
4288
|
baseUrl?: URL;
|
|
4290
4289
|
}): Promise<Document>;
|
|
4291
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
4290
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
4292
4291
|
}
|
|
4293
4292
|
/** Represents an audio document of any kind.
|
|
4294
4293
|
*/
|
|
@@ -4296,7 +4295,7 @@ declare class Audio extends Document {
|
|
|
4296
4295
|
/**
|
|
4297
4296
|
* The type URI of {@link Audio}: `https://www.w3.org/ns/activitystreams#Audio`.
|
|
4298
4297
|
*/
|
|
4299
|
-
static get typeId(): URL;
|
|
4298
|
+
static override get typeId(): URL;
|
|
4300
4299
|
/**
|
|
4301
4300
|
* Constructs a new instance of Audio with the given values.
|
|
4302
4301
|
* @param values The values to initialize the instance with.
|
|
@@ -4365,7 +4364,7 @@ declare class Audio extends Document {
|
|
|
4365
4364
|
* @param options The options to use for cloning.
|
|
4366
4365
|
* @returns The cloned instance.
|
|
4367
4366
|
*/
|
|
4368
|
-
clone(values?: {
|
|
4367
|
+
override clone(values?: {
|
|
4369
4368
|
id?: URL | null;
|
|
4370
4369
|
attachments?: (Object$1 | Link | PropertyValue | URL)[];
|
|
4371
4370
|
attribution?: Application | Group | Organization | Person | Service | URL | null;
|
|
@@ -4431,12 +4430,12 @@ declare class Audio extends Document {
|
|
|
4431
4430
|
when `format` is set to `'expand'`.
|
|
4432
4431
|
* @returns The JSON-LD representation of this object.
|
|
4433
4432
|
*/
|
|
4434
|
-
toJsonLd(options?: {
|
|
4433
|
+
override toJsonLd(options?: {
|
|
4435
4434
|
format?: "compact" | "expand";
|
|
4436
4435
|
contextLoader?: DocumentLoader$1;
|
|
4437
4436
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
4438
4437
|
}): Promise<unknown>;
|
|
4439
|
-
protected isCompactable(): boolean;
|
|
4438
|
+
protected override isCompactable(): boolean;
|
|
4440
4439
|
/**
|
|
4441
4440
|
* Converts a JSON-LD structure to an object of this type.
|
|
4442
4441
|
* @param json The JSON-LD structure to convert.
|
|
@@ -4448,7 +4447,7 @@ declare class Audio extends Document {
|
|
|
4448
4447
|
* @returns The object of this type.
|
|
4449
4448
|
* @throws {TypeError} If the given `json` is invalid.
|
|
4450
4449
|
*/
|
|
4451
|
-
static fromJsonLd(json: unknown, options?: {
|
|
4450
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
4452
4451
|
documentLoader?: DocumentLoader$1;
|
|
4453
4452
|
contextLoader?: DocumentLoader$1;
|
|
4454
4453
|
tracerProvider?: TracerProvider;
|
|
@@ -4460,7 +4459,7 @@ declare class Audio extends Document {
|
|
|
4460
4459
|
tracerProvider?: TracerProvider;
|
|
4461
4460
|
baseUrl?: URL;
|
|
4462
4461
|
}): Promise<Audio>;
|
|
4463
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
4462
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
4464
4463
|
}
|
|
4465
4464
|
/** Indicates that the `actor` is ignoring the `object`. The `target` and
|
|
4466
4465
|
* `origin` typically have no defined meaning.
|
|
@@ -4469,7 +4468,7 @@ declare class Ignore extends Activity {
|
|
|
4469
4468
|
/**
|
|
4470
4469
|
* The type URI of {@link Ignore}: `https://www.w3.org/ns/activitystreams#Ignore`.
|
|
4471
4470
|
*/
|
|
4472
|
-
static get typeId(): URL;
|
|
4471
|
+
static override get typeId(): URL;
|
|
4473
4472
|
/**
|
|
4474
4473
|
* Constructs a new instance of Ignore with the given values.
|
|
4475
4474
|
* @param values The values to initialize the instance with.
|
|
@@ -4548,7 +4547,7 @@ declare class Ignore extends Activity {
|
|
|
4548
4547
|
* @param options The options to use for cloning.
|
|
4549
4548
|
* @returns The cloned instance.
|
|
4550
4549
|
*/
|
|
4551
|
-
clone(values?: {
|
|
4550
|
+
override clone(values?: {
|
|
4552
4551
|
id?: URL | null;
|
|
4553
4552
|
attachments?: (Object$1 | Link | PropertyValue | URL)[];
|
|
4554
4553
|
attribution?: Application | Group | Organization | Person | Service | URL | null;
|
|
@@ -4624,12 +4623,12 @@ declare class Ignore extends Activity {
|
|
|
4624
4623
|
when `format` is set to `'expand'`.
|
|
4625
4624
|
* @returns The JSON-LD representation of this object.
|
|
4626
4625
|
*/
|
|
4627
|
-
toJsonLd(options?: {
|
|
4626
|
+
override toJsonLd(options?: {
|
|
4628
4627
|
format?: "compact" | "expand";
|
|
4629
4628
|
contextLoader?: DocumentLoader$1;
|
|
4630
4629
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
4631
4630
|
}): Promise<unknown>;
|
|
4632
|
-
protected isCompactable(): boolean;
|
|
4631
|
+
protected override isCompactable(): boolean;
|
|
4633
4632
|
/**
|
|
4634
4633
|
* Converts a JSON-LD structure to an object of this type.
|
|
4635
4634
|
* @param json The JSON-LD structure to convert.
|
|
@@ -4641,7 +4640,7 @@ declare class Ignore extends Activity {
|
|
|
4641
4640
|
* @returns The object of this type.
|
|
4642
4641
|
* @throws {TypeError} If the given `json` is invalid.
|
|
4643
4642
|
*/
|
|
4644
|
-
static fromJsonLd(json: unknown, options?: {
|
|
4643
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
4645
4644
|
documentLoader?: DocumentLoader$1;
|
|
4646
4645
|
contextLoader?: DocumentLoader$1;
|
|
4647
4646
|
tracerProvider?: TracerProvider;
|
|
@@ -4653,7 +4652,7 @@ declare class Ignore extends Activity {
|
|
|
4653
4652
|
tracerProvider?: TracerProvider;
|
|
4654
4653
|
baseUrl?: URL;
|
|
4655
4654
|
}): Promise<Ignore>;
|
|
4656
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
4655
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
4657
4656
|
}
|
|
4658
4657
|
/** Indicates that the `actor` is blocking the `object`. Blocking is a stronger
|
|
4659
4658
|
* form of {@link Ignore}. The typical use is to support social systems that
|
|
@@ -4664,7 +4663,7 @@ declare class Block extends Ignore {
|
|
|
4664
4663
|
/**
|
|
4665
4664
|
* The type URI of {@link Block}: `https://www.w3.org/ns/activitystreams#Block`.
|
|
4666
4665
|
*/
|
|
4667
|
-
static get typeId(): URL;
|
|
4666
|
+
static override get typeId(): URL;
|
|
4668
4667
|
/**
|
|
4669
4668
|
* Constructs a new instance of Block with the given values.
|
|
4670
4669
|
* @param values The values to initialize the instance with.
|
|
@@ -4743,7 +4742,7 @@ declare class Block extends Ignore {
|
|
|
4743
4742
|
* @param options The options to use for cloning.
|
|
4744
4743
|
* @returns The cloned instance.
|
|
4745
4744
|
*/
|
|
4746
|
-
clone(values?: {
|
|
4745
|
+
override clone(values?: {
|
|
4747
4746
|
id?: URL | null;
|
|
4748
4747
|
attachments?: (Object$1 | Link | PropertyValue | URL)[];
|
|
4749
4748
|
attribution?: Application | Group | Organization | Person | Service | URL | null;
|
|
@@ -4819,12 +4818,12 @@ declare class Block extends Ignore {
|
|
|
4819
4818
|
when `format` is set to `'expand'`.
|
|
4820
4819
|
* @returns The JSON-LD representation of this object.
|
|
4821
4820
|
*/
|
|
4822
|
-
toJsonLd(options?: {
|
|
4821
|
+
override toJsonLd(options?: {
|
|
4823
4822
|
format?: "compact" | "expand";
|
|
4824
4823
|
contextLoader?: DocumentLoader$1;
|
|
4825
4824
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
4826
4825
|
}): Promise<unknown>;
|
|
4827
|
-
protected isCompactable(): boolean;
|
|
4826
|
+
protected override isCompactable(): boolean;
|
|
4828
4827
|
/**
|
|
4829
4828
|
* Converts a JSON-LD structure to an object of this type.
|
|
4830
4829
|
* @param json The JSON-LD structure to convert.
|
|
@@ -4836,7 +4835,7 @@ declare class Block extends Ignore {
|
|
|
4836
4835
|
* @returns The object of this type.
|
|
4837
4836
|
* @throws {TypeError} If the given `json` is invalid.
|
|
4838
4837
|
*/
|
|
4839
|
-
static fromJsonLd(json: unknown, options?: {
|
|
4838
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
4840
4839
|
documentLoader?: DocumentLoader$1;
|
|
4841
4840
|
contextLoader?: DocumentLoader$1;
|
|
4842
4841
|
tracerProvider?: TracerProvider;
|
|
@@ -4848,7 +4847,7 @@ declare class Block extends Ignore {
|
|
|
4848
4847
|
tracerProvider?: TracerProvider;
|
|
4849
4848
|
baseUrl?: URL;
|
|
4850
4849
|
}): Promise<Block>;
|
|
4851
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
4850
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
4852
4851
|
}
|
|
4853
4852
|
/** A `Collection` is a subtype of {@link Object} that represents ordered or
|
|
4854
4853
|
* unordered sets of {@link Object} or {@link Link} instances.
|
|
@@ -4861,7 +4860,7 @@ declare class Collection extends Object$1 {
|
|
|
4861
4860
|
/**
|
|
4862
4861
|
* The type URI of {@link Collection}: `https://www.w3.org/ns/activitystreams#Collection`.
|
|
4863
4862
|
*/
|
|
4864
|
-
static get typeId(): URL;
|
|
4863
|
+
static override get typeId(): URL;
|
|
4865
4864
|
/**
|
|
4866
4865
|
* Constructs a new instance of Collection with the given values.
|
|
4867
4866
|
* @param values The values to initialize the instance with.
|
|
@@ -4941,7 +4940,7 @@ declare class Collection extends Object$1 {
|
|
|
4941
4940
|
* @param options The options to use for cloning.
|
|
4942
4941
|
* @returns The cloned instance.
|
|
4943
4942
|
*/
|
|
4944
|
-
clone(values?: {
|
|
4943
|
+
override clone(values?: {
|
|
4945
4944
|
id?: URL | null;
|
|
4946
4945
|
attachments?: (Object$1 | Link | PropertyValue | URL)[];
|
|
4947
4946
|
attribution?: Application | Group | Organization | Person | Service | URL | null;
|
|
@@ -5207,12 +5206,12 @@ declare class Collection extends Object$1 {
|
|
|
5207
5206
|
when `format` is set to `'expand'`.
|
|
5208
5207
|
* @returns The JSON-LD representation of this object.
|
|
5209
5208
|
*/
|
|
5210
|
-
toJsonLd(options?: {
|
|
5209
|
+
override toJsonLd(options?: {
|
|
5211
5210
|
format?: "compact" | "expand";
|
|
5212
5211
|
contextLoader?: DocumentLoader$1;
|
|
5213
5212
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
5214
5213
|
}): Promise<unknown>;
|
|
5215
|
-
protected isCompactable(): boolean;
|
|
5214
|
+
protected override isCompactable(): boolean;
|
|
5216
5215
|
/**
|
|
5217
5216
|
* Converts a JSON-LD structure to an object of this type.
|
|
5218
5217
|
* @param json The JSON-LD structure to convert.
|
|
@@ -5224,7 +5223,7 @@ declare class Collection extends Object$1 {
|
|
|
5224
5223
|
* @returns The object of this type.
|
|
5225
5224
|
* @throws {TypeError} If the given `json` is invalid.
|
|
5226
5225
|
*/
|
|
5227
|
-
static fromJsonLd(json: unknown, options?: {
|
|
5226
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
5228
5227
|
documentLoader?: DocumentLoader$1;
|
|
5229
5228
|
contextLoader?: DocumentLoader$1;
|
|
5230
5229
|
tracerProvider?: TracerProvider;
|
|
@@ -5236,7 +5235,7 @@ declare class Collection extends Object$1 {
|
|
|
5236
5235
|
tracerProvider?: TracerProvider;
|
|
5237
5236
|
baseUrl?: URL;
|
|
5238
5237
|
}): Promise<Collection>;
|
|
5239
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
5238
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
5240
5239
|
}
|
|
5241
5240
|
/** Used to represent distinct subsets of items from a `Collection`.
|
|
5242
5241
|
* Refer to the Activity Streams 2.0 Core for a complete description of
|
|
@@ -5247,7 +5246,7 @@ declare class CollectionPage extends Collection {
|
|
|
5247
5246
|
/**
|
|
5248
5247
|
* The type URI of {@link CollectionPage}: `https://www.w3.org/ns/activitystreams#CollectionPage`.
|
|
5249
5248
|
*/
|
|
5250
|
-
static get typeId(): URL;
|
|
5249
|
+
static override get typeId(): URL;
|
|
5251
5250
|
/**
|
|
5252
5251
|
* Constructs a new instance of CollectionPage with the given values.
|
|
5253
5252
|
* @param values The values to initialize the instance with.
|
|
@@ -5330,7 +5329,7 @@ declare class CollectionPage extends Collection {
|
|
|
5330
5329
|
* @param options The options to use for cloning.
|
|
5331
5330
|
* @returns The cloned instance.
|
|
5332
5331
|
*/
|
|
5333
|
-
clone(values?: {
|
|
5332
|
+
override clone(values?: {
|
|
5334
5333
|
id?: URL | null;
|
|
5335
5334
|
attachments?: (Object$1 | Link | PropertyValue | URL)[];
|
|
5336
5335
|
attribution?: Application | Group | Organization | Person | Service | URL | null;
|
|
@@ -5456,12 +5455,12 @@ declare class CollectionPage extends Collection {
|
|
|
5456
5455
|
when `format` is set to `'expand'`.
|
|
5457
5456
|
* @returns The JSON-LD representation of this object.
|
|
5458
5457
|
*/
|
|
5459
|
-
toJsonLd(options?: {
|
|
5458
|
+
override toJsonLd(options?: {
|
|
5460
5459
|
format?: "compact" | "expand";
|
|
5461
5460
|
contextLoader?: DocumentLoader$1;
|
|
5462
5461
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
5463
5462
|
}): Promise<unknown>;
|
|
5464
|
-
protected isCompactable(): boolean;
|
|
5463
|
+
protected override isCompactable(): boolean;
|
|
5465
5464
|
/**
|
|
5466
5465
|
* Converts a JSON-LD structure to an object of this type.
|
|
5467
5466
|
* @param json The JSON-LD structure to convert.
|
|
@@ -5473,7 +5472,7 @@ declare class CollectionPage extends Collection {
|
|
|
5473
5472
|
* @returns The object of this type.
|
|
5474
5473
|
* @throws {TypeError} If the given `json` is invalid.
|
|
5475
5474
|
*/
|
|
5476
|
-
static fromJsonLd(json: unknown, options?: {
|
|
5475
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
5477
5476
|
documentLoader?: DocumentLoader$1;
|
|
5478
5477
|
contextLoader?: DocumentLoader$1;
|
|
5479
5478
|
tracerProvider?: TracerProvider;
|
|
@@ -5485,7 +5484,7 @@ declare class CollectionPage extends Collection {
|
|
|
5485
5484
|
tracerProvider?: TracerProvider;
|
|
5486
5485
|
baseUrl?: URL;
|
|
5487
5486
|
}): Promise<CollectionPage>;
|
|
5488
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
5487
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
5489
5488
|
}
|
|
5490
5489
|
/** Indicates that the `actor` has created the `object`.
|
|
5491
5490
|
*/
|
|
@@ -5493,7 +5492,7 @@ declare class Create extends Activity {
|
|
|
5493
5492
|
/**
|
|
5494
5493
|
* The type URI of {@link Create}: `https://www.w3.org/ns/activitystreams#Create`.
|
|
5495
5494
|
*/
|
|
5496
|
-
static get typeId(): URL;
|
|
5495
|
+
static override get typeId(): URL;
|
|
5497
5496
|
/**
|
|
5498
5497
|
* Constructs a new instance of Create with the given values.
|
|
5499
5498
|
* @param values The values to initialize the instance with.
|
|
@@ -5572,7 +5571,7 @@ declare class Create extends Activity {
|
|
|
5572
5571
|
* @param options The options to use for cloning.
|
|
5573
5572
|
* @returns The cloned instance.
|
|
5574
5573
|
*/
|
|
5575
|
-
clone(values?: {
|
|
5574
|
+
override clone(values?: {
|
|
5576
5575
|
id?: URL | null;
|
|
5577
5576
|
attachments?: (Object$1 | Link | PropertyValue | URL)[];
|
|
5578
5577
|
attribution?: Application | Group | Organization | Person | Service | URL | null;
|
|
@@ -5648,12 +5647,12 @@ declare class Create extends Activity {
|
|
|
5648
5647
|
when `format` is set to `'expand'`.
|
|
5649
5648
|
* @returns The JSON-LD representation of this object.
|
|
5650
5649
|
*/
|
|
5651
|
-
toJsonLd(options?: {
|
|
5650
|
+
override toJsonLd(options?: {
|
|
5652
5651
|
format?: "compact" | "expand";
|
|
5653
5652
|
contextLoader?: DocumentLoader$1;
|
|
5654
5653
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
5655
5654
|
}): Promise<unknown>;
|
|
5656
|
-
protected isCompactable(): boolean;
|
|
5655
|
+
protected override isCompactable(): boolean;
|
|
5657
5656
|
/**
|
|
5658
5657
|
* Converts a JSON-LD structure to an object of this type.
|
|
5659
5658
|
* @param json The JSON-LD structure to convert.
|
|
@@ -5665,7 +5664,7 @@ declare class Create extends Activity {
|
|
|
5665
5664
|
* @returns The object of this type.
|
|
5666
5665
|
* @throws {TypeError} If the given `json` is invalid.
|
|
5667
5666
|
*/
|
|
5668
|
-
static fromJsonLd(json: unknown, options?: {
|
|
5667
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
5669
5668
|
documentLoader?: DocumentLoader$1;
|
|
5670
5669
|
contextLoader?: DocumentLoader$1;
|
|
5671
5670
|
tracerProvider?: TracerProvider;
|
|
@@ -5677,7 +5676,7 @@ declare class Create extends Activity {
|
|
|
5677
5676
|
tracerProvider?: TracerProvider;
|
|
5678
5677
|
baseUrl?: URL;
|
|
5679
5678
|
}): Promise<Create>;
|
|
5680
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
5679
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
5681
5680
|
}
|
|
5682
5681
|
/** Indicates that the `actor` has deleted the `object`. If specified,
|
|
5683
5682
|
* the `origin` indicates the context from which the `object` was deleted.
|
|
@@ -5686,7 +5685,7 @@ declare class Delete extends Activity {
|
|
|
5686
5685
|
/**
|
|
5687
5686
|
* The type URI of {@link Delete}: `https://www.w3.org/ns/activitystreams#Delete`.
|
|
5688
5687
|
*/
|
|
5689
|
-
static get typeId(): URL;
|
|
5688
|
+
static override get typeId(): URL;
|
|
5690
5689
|
/**
|
|
5691
5690
|
* Constructs a new instance of Delete with the given values.
|
|
5692
5691
|
* @param values The values to initialize the instance with.
|
|
@@ -5765,7 +5764,7 @@ declare class Delete extends Activity {
|
|
|
5765
5764
|
* @param options The options to use for cloning.
|
|
5766
5765
|
* @returns The cloned instance.
|
|
5767
5766
|
*/
|
|
5768
|
-
clone(values?: {
|
|
5767
|
+
override clone(values?: {
|
|
5769
5768
|
id?: URL | null;
|
|
5770
5769
|
attachments?: (Object$1 | Link | PropertyValue | URL)[];
|
|
5771
5770
|
attribution?: Application | Group | Organization | Person | Service | URL | null;
|
|
@@ -5841,12 +5840,12 @@ declare class Delete extends Activity {
|
|
|
5841
5840
|
when `format` is set to `'expand'`.
|
|
5842
5841
|
* @returns The JSON-LD representation of this object.
|
|
5843
5842
|
*/
|
|
5844
|
-
toJsonLd(options?: {
|
|
5843
|
+
override toJsonLd(options?: {
|
|
5845
5844
|
format?: "compact" | "expand";
|
|
5846
5845
|
contextLoader?: DocumentLoader$1;
|
|
5847
5846
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
5848
5847
|
}): Promise<unknown>;
|
|
5849
|
-
protected isCompactable(): boolean;
|
|
5848
|
+
protected override isCompactable(): boolean;
|
|
5850
5849
|
/**
|
|
5851
5850
|
* Converts a JSON-LD structure to an object of this type.
|
|
5852
5851
|
* @param json The JSON-LD structure to convert.
|
|
@@ -5858,7 +5857,7 @@ declare class Delete extends Activity {
|
|
|
5858
5857
|
* @returns The object of this type.
|
|
5859
5858
|
* @throws {TypeError} If the given `json` is invalid.
|
|
5860
5859
|
*/
|
|
5861
|
-
static fromJsonLd(json: unknown, options?: {
|
|
5860
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
5862
5861
|
documentLoader?: DocumentLoader$1;
|
|
5863
5862
|
contextLoader?: DocumentLoader$1;
|
|
5864
5863
|
tracerProvider?: TracerProvider;
|
|
@@ -5870,7 +5869,7 @@ declare class Delete extends Activity {
|
|
|
5870
5869
|
tracerProvider?: TracerProvider;
|
|
5871
5870
|
baseUrl?: URL;
|
|
5872
5871
|
}): Promise<Delete>;
|
|
5873
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
5872
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
5874
5873
|
}
|
|
5875
5874
|
/** Indicates that the `actor` dislikes the `object`.
|
|
5876
5875
|
*/
|
|
@@ -5878,7 +5877,7 @@ declare class Dislike extends Activity {
|
|
|
5878
5877
|
/**
|
|
5879
5878
|
* The type URI of {@link Dislike}: `https://www.w3.org/ns/activitystreams#Dislike`.
|
|
5880
5879
|
*/
|
|
5881
|
-
static get typeId(): URL;
|
|
5880
|
+
static override get typeId(): URL;
|
|
5882
5881
|
/**
|
|
5883
5882
|
* Constructs a new instance of Dislike with the given values.
|
|
5884
5883
|
* @param values The values to initialize the instance with.
|
|
@@ -5957,7 +5956,7 @@ declare class Dislike extends Activity {
|
|
|
5957
5956
|
* @param options The options to use for cloning.
|
|
5958
5957
|
* @returns The cloned instance.
|
|
5959
5958
|
*/
|
|
5960
|
-
clone(values?: {
|
|
5959
|
+
override clone(values?: {
|
|
5961
5960
|
id?: URL | null;
|
|
5962
5961
|
attachments?: (Object$1 | Link | PropertyValue | URL)[];
|
|
5963
5962
|
attribution?: Application | Group | Organization | Person | Service | URL | null;
|
|
@@ -6033,12 +6032,12 @@ declare class Dislike extends Activity {
|
|
|
6033
6032
|
when `format` is set to `'expand'`.
|
|
6034
6033
|
* @returns The JSON-LD representation of this object.
|
|
6035
6034
|
*/
|
|
6036
|
-
toJsonLd(options?: {
|
|
6035
|
+
override toJsonLd(options?: {
|
|
6037
6036
|
format?: "compact" | "expand";
|
|
6038
6037
|
contextLoader?: DocumentLoader$1;
|
|
6039
6038
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
6040
6039
|
}): Promise<unknown>;
|
|
6041
|
-
protected isCompactable(): boolean;
|
|
6040
|
+
protected override isCompactable(): boolean;
|
|
6042
6041
|
/**
|
|
6043
6042
|
* Converts a JSON-LD structure to an object of this type.
|
|
6044
6043
|
* @param json The JSON-LD structure to convert.
|
|
@@ -6050,7 +6049,7 @@ declare class Dislike extends Activity {
|
|
|
6050
6049
|
* @returns The object of this type.
|
|
6051
6050
|
* @throws {TypeError} If the given `json` is invalid.
|
|
6052
6051
|
*/
|
|
6053
|
-
static fromJsonLd(json: unknown, options?: {
|
|
6052
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
6054
6053
|
documentLoader?: DocumentLoader$1;
|
|
6055
6054
|
contextLoader?: DocumentLoader$1;
|
|
6056
6055
|
tracerProvider?: TracerProvider;
|
|
@@ -6062,7 +6061,7 @@ declare class Dislike extends Activity {
|
|
|
6062
6061
|
tracerProvider?: TracerProvider;
|
|
6063
6062
|
baseUrl?: URL;
|
|
6064
6063
|
}): Promise<Dislike>;
|
|
6065
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
6064
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
6066
6065
|
}
|
|
6067
6066
|
/** Contents of {@link Actor}'s `endpoints`.
|
|
6068
6067
|
*/
|
|
@@ -6207,7 +6206,7 @@ declare class Event extends Object$1 {
|
|
|
6207
6206
|
/**
|
|
6208
6207
|
* The type URI of {@link Event}: `https://www.w3.org/ns/activitystreams#Event`.
|
|
6209
6208
|
*/
|
|
6210
|
-
static get typeId(): URL;
|
|
6209
|
+
static override get typeId(): URL;
|
|
6211
6210
|
/**
|
|
6212
6211
|
* Constructs a new instance of Event with the given values.
|
|
6213
6212
|
* @param values The values to initialize the instance with.
|
|
@@ -6274,7 +6273,7 @@ declare class Event extends Object$1 {
|
|
|
6274
6273
|
* @param options The options to use for cloning.
|
|
6275
6274
|
* @returns The cloned instance.
|
|
6276
6275
|
*/
|
|
6277
|
-
clone(values?: {
|
|
6276
|
+
override clone(values?: {
|
|
6278
6277
|
id?: URL | null;
|
|
6279
6278
|
attachments?: (Object$1 | Link | PropertyValue | URL)[];
|
|
6280
6279
|
attribution?: Application | Group | Organization | Person | Service | URL | null;
|
|
@@ -6338,12 +6337,12 @@ declare class Event extends Object$1 {
|
|
|
6338
6337
|
when `format` is set to `'expand'`.
|
|
6339
6338
|
* @returns The JSON-LD representation of this object.
|
|
6340
6339
|
*/
|
|
6341
|
-
toJsonLd(options?: {
|
|
6340
|
+
override toJsonLd(options?: {
|
|
6342
6341
|
format?: "compact" | "expand";
|
|
6343
6342
|
contextLoader?: DocumentLoader$1;
|
|
6344
6343
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
6345
6344
|
}): Promise<unknown>;
|
|
6346
|
-
protected isCompactable(): boolean;
|
|
6345
|
+
protected override isCompactable(): boolean;
|
|
6347
6346
|
/**
|
|
6348
6347
|
* Converts a JSON-LD structure to an object of this type.
|
|
6349
6348
|
* @param json The JSON-LD structure to convert.
|
|
@@ -6355,7 +6354,7 @@ declare class Event extends Object$1 {
|
|
|
6355
6354
|
* @returns The object of this type.
|
|
6356
6355
|
* @throws {TypeError} If the given `json` is invalid.
|
|
6357
6356
|
*/
|
|
6358
|
-
static fromJsonLd(json: unknown, options?: {
|
|
6357
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
6359
6358
|
documentLoader?: DocumentLoader$1;
|
|
6360
6359
|
contextLoader?: DocumentLoader$1;
|
|
6361
6360
|
tracerProvider?: TracerProvider;
|
|
@@ -6367,7 +6366,7 @@ declare class Event extends Object$1 {
|
|
|
6367
6366
|
tracerProvider?: TracerProvider;
|
|
6368
6367
|
baseUrl?: URL;
|
|
6369
6368
|
}): Promise<Event>;
|
|
6370
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
6369
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
6371
6370
|
}
|
|
6372
6371
|
/** Indicates that the `actor` is "flagging" the `object`. Flagging is defined
|
|
6373
6372
|
* in the sense common to many social platforms as reporting content as being
|
|
@@ -6377,7 +6376,7 @@ declare class Flag extends Activity {
|
|
|
6377
6376
|
/**
|
|
6378
6377
|
* The type URI of {@link Flag}: `https://www.w3.org/ns/activitystreams#Flag`.
|
|
6379
6378
|
*/
|
|
6380
|
-
static get typeId(): URL;
|
|
6379
|
+
static override get typeId(): URL;
|
|
6381
6380
|
/**
|
|
6382
6381
|
* Constructs a new instance of Flag with the given values.
|
|
6383
6382
|
* @param values The values to initialize the instance with.
|
|
@@ -6456,7 +6455,7 @@ declare class Flag extends Activity {
|
|
|
6456
6455
|
* @param options The options to use for cloning.
|
|
6457
6456
|
* @returns The cloned instance.
|
|
6458
6457
|
*/
|
|
6459
|
-
clone(values?: {
|
|
6458
|
+
override clone(values?: {
|
|
6460
6459
|
id?: URL | null;
|
|
6461
6460
|
attachments?: (Object$1 | Link | PropertyValue | URL)[];
|
|
6462
6461
|
attribution?: Application | Group | Organization | Person | Service | URL | null;
|
|
@@ -6532,12 +6531,12 @@ declare class Flag extends Activity {
|
|
|
6532
6531
|
when `format` is set to `'expand'`.
|
|
6533
6532
|
* @returns The JSON-LD representation of this object.
|
|
6534
6533
|
*/
|
|
6535
|
-
toJsonLd(options?: {
|
|
6534
|
+
override toJsonLd(options?: {
|
|
6536
6535
|
format?: "compact" | "expand";
|
|
6537
6536
|
contextLoader?: DocumentLoader$1;
|
|
6538
6537
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
6539
6538
|
}): Promise<unknown>;
|
|
6540
|
-
protected isCompactable(): boolean;
|
|
6539
|
+
protected override isCompactable(): boolean;
|
|
6541
6540
|
/**
|
|
6542
6541
|
* Converts a JSON-LD structure to an object of this type.
|
|
6543
6542
|
* @param json The JSON-LD structure to convert.
|
|
@@ -6549,7 +6548,7 @@ declare class Flag extends Activity {
|
|
|
6549
6548
|
* @returns The object of this type.
|
|
6550
6549
|
* @throws {TypeError} If the given `json` is invalid.
|
|
6551
6550
|
*/
|
|
6552
|
-
static fromJsonLd(json: unknown, options?: {
|
|
6551
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
6553
6552
|
documentLoader?: DocumentLoader$1;
|
|
6554
6553
|
contextLoader?: DocumentLoader$1;
|
|
6555
6554
|
tracerProvider?: TracerProvider;
|
|
@@ -6561,7 +6560,7 @@ declare class Flag extends Activity {
|
|
|
6561
6560
|
tracerProvider?: TracerProvider;
|
|
6562
6561
|
baseUrl?: URL;
|
|
6563
6562
|
}): Promise<Flag>;
|
|
6564
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
6563
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
6565
6564
|
}
|
|
6566
6565
|
/** Indicates that the `actor` is "following" the `object`. Following is defined
|
|
6567
6566
|
* in the sense typically used within Social systems in which the actor is
|
|
@@ -6572,7 +6571,7 @@ declare class Follow extends Activity {
|
|
|
6572
6571
|
/**
|
|
6573
6572
|
* The type URI of {@link Follow}: `https://www.w3.org/ns/activitystreams#Follow`.
|
|
6574
6573
|
*/
|
|
6575
|
-
static get typeId(): URL;
|
|
6574
|
+
static override get typeId(): URL;
|
|
6576
6575
|
/**
|
|
6577
6576
|
* Constructs a new instance of Follow with the given values.
|
|
6578
6577
|
* @param values The values to initialize the instance with.
|
|
@@ -6651,7 +6650,7 @@ declare class Follow extends Activity {
|
|
|
6651
6650
|
* @param options The options to use for cloning.
|
|
6652
6651
|
* @returns The cloned instance.
|
|
6653
6652
|
*/
|
|
6654
|
-
clone(values?: {
|
|
6653
|
+
override clone(values?: {
|
|
6655
6654
|
id?: URL | null;
|
|
6656
6655
|
attachments?: (Object$1 | Link | PropertyValue | URL)[];
|
|
6657
6656
|
attribution?: Application | Group | Organization | Person | Service | URL | null;
|
|
@@ -6727,12 +6726,12 @@ declare class Follow extends Activity {
|
|
|
6727
6726
|
when `format` is set to `'expand'`.
|
|
6728
6727
|
* @returns The JSON-LD representation of this object.
|
|
6729
6728
|
*/
|
|
6730
|
-
toJsonLd(options?: {
|
|
6729
|
+
override toJsonLd(options?: {
|
|
6731
6730
|
format?: "compact" | "expand";
|
|
6732
6731
|
contextLoader?: DocumentLoader$1;
|
|
6733
6732
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
6734
6733
|
}): Promise<unknown>;
|
|
6735
|
-
protected isCompactable(): boolean;
|
|
6734
|
+
protected override isCompactable(): boolean;
|
|
6736
6735
|
/**
|
|
6737
6736
|
* Converts a JSON-LD structure to an object of this type.
|
|
6738
6737
|
* @param json The JSON-LD structure to convert.
|
|
@@ -6744,7 +6743,7 @@ declare class Follow extends Activity {
|
|
|
6744
6743
|
* @returns The object of this type.
|
|
6745
6744
|
* @throws {TypeError} If the given `json` is invalid.
|
|
6746
6745
|
*/
|
|
6747
|
-
static fromJsonLd(json: unknown, options?: {
|
|
6746
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
6748
6747
|
documentLoader?: DocumentLoader$1;
|
|
6749
6748
|
contextLoader?: DocumentLoader$1;
|
|
6750
6749
|
tracerProvider?: TracerProvider;
|
|
@@ -6756,7 +6755,7 @@ declare class Follow extends Activity {
|
|
|
6756
6755
|
tracerProvider?: TracerProvider;
|
|
6757
6756
|
baseUrl?: URL;
|
|
6758
6757
|
}): Promise<Follow>;
|
|
6759
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
6758
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
6760
6759
|
}
|
|
6761
6760
|
/** Represents a formal or informal collective of Actors.
|
|
6762
6761
|
*/
|
|
@@ -6765,7 +6764,7 @@ declare class Group extends Object$1 {
|
|
|
6765
6764
|
/**
|
|
6766
6765
|
* The type URI of {@link Group}: `https://www.w3.org/ns/activitystreams#Group`.
|
|
6767
6766
|
*/
|
|
6768
|
-
static get typeId(): URL;
|
|
6767
|
+
static override get typeId(): URL;
|
|
6769
6768
|
/**
|
|
6770
6769
|
* Constructs a new instance of Group with the given values.
|
|
6771
6770
|
* @param values The values to initialize the instance with.
|
|
@@ -6859,7 +6858,7 @@ declare class Group extends Object$1 {
|
|
|
6859
6858
|
* @param options The options to use for cloning.
|
|
6860
6859
|
* @returns The cloned instance.
|
|
6861
6860
|
*/
|
|
6862
|
-
clone(values?: {
|
|
6861
|
+
override clone(values?: {
|
|
6863
6862
|
id?: URL | null;
|
|
6864
6863
|
attachments?: (Object$1 | Link | PropertyValue | URL)[];
|
|
6865
6864
|
attribution?: Application | Group | Organization | Person | Service | URL | null;
|
|
@@ -7313,12 +7312,12 @@ declare class Group extends Object$1 {
|
|
|
7313
7312
|
when `format` is set to `'expand'`.
|
|
7314
7313
|
* @returns The JSON-LD representation of this object.
|
|
7315
7314
|
*/
|
|
7316
|
-
toJsonLd(options?: {
|
|
7315
|
+
override toJsonLd(options?: {
|
|
7317
7316
|
format?: "compact" | "expand";
|
|
7318
7317
|
contextLoader?: DocumentLoader$1;
|
|
7319
7318
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
7320
7319
|
}): Promise<unknown>;
|
|
7321
|
-
protected isCompactable(): boolean;
|
|
7320
|
+
protected override isCompactable(): boolean;
|
|
7322
7321
|
/**
|
|
7323
7322
|
* Converts a JSON-LD structure to an object of this type.
|
|
7324
7323
|
* @param json The JSON-LD structure to convert.
|
|
@@ -7330,7 +7329,7 @@ declare class Group extends Object$1 {
|
|
|
7330
7329
|
* @returns The object of this type.
|
|
7331
7330
|
* @throws {TypeError} If the given `json` is invalid.
|
|
7332
7331
|
*/
|
|
7333
|
-
static fromJsonLd(json: unknown, options?: {
|
|
7332
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
7334
7333
|
documentLoader?: DocumentLoader$1;
|
|
7335
7334
|
contextLoader?: DocumentLoader$1;
|
|
7336
7335
|
tracerProvider?: TracerProvider;
|
|
@@ -7342,7 +7341,7 @@ declare class Group extends Object$1 {
|
|
|
7342
7341
|
tracerProvider?: TracerProvider;
|
|
7343
7342
|
baseUrl?: URL;
|
|
7344
7343
|
}): Promise<Group>;
|
|
7345
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
7344
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
7346
7345
|
}
|
|
7347
7346
|
/** A Link is an indirect, qualified reference to a resource identified by a URL.
|
|
7348
7347
|
* The fundamental model for links is established by RFC 5988. Many of the
|
|
@@ -7523,7 +7522,7 @@ declare class Hashtag extends Link {
|
|
|
7523
7522
|
/**
|
|
7524
7523
|
* The type URI of {@link Hashtag}: `https://www.w3.org/ns/activitystreams#Hashtag`.
|
|
7525
7524
|
*/
|
|
7526
|
-
static get typeId(): URL;
|
|
7525
|
+
static override get typeId(): URL;
|
|
7527
7526
|
/**
|
|
7528
7527
|
* Constructs a new instance of Hashtag with the given values.
|
|
7529
7528
|
* @param values The values to initialize the instance with.
|
|
@@ -7552,7 +7551,7 @@ declare class Hashtag extends Link {
|
|
|
7552
7551
|
* @param options The options to use for cloning.
|
|
7553
7552
|
* @returns The cloned instance.
|
|
7554
7553
|
*/
|
|
7555
|
-
clone(values?: {
|
|
7554
|
+
override clone(values?: {
|
|
7556
7555
|
id?: URL | null;
|
|
7557
7556
|
href?: URL | null;
|
|
7558
7557
|
rel?: string | null;
|
|
@@ -7578,12 +7577,12 @@ declare class Hashtag extends Link {
|
|
|
7578
7577
|
when `format` is set to `'expand'`.
|
|
7579
7578
|
* @returns The JSON-LD representation of this object.
|
|
7580
7579
|
*/
|
|
7581
|
-
toJsonLd(options?: {
|
|
7580
|
+
override toJsonLd(options?: {
|
|
7582
7581
|
format?: "compact" | "expand";
|
|
7583
7582
|
contextLoader?: DocumentLoader$1;
|
|
7584
7583
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
7585
7584
|
}): Promise<unknown>;
|
|
7586
|
-
protected isCompactable(): boolean;
|
|
7585
|
+
protected override isCompactable(): boolean;
|
|
7587
7586
|
/**
|
|
7588
7587
|
* Converts a JSON-LD structure to an object of this type.
|
|
7589
7588
|
* @param json The JSON-LD structure to convert.
|
|
@@ -7595,7 +7594,7 @@ declare class Hashtag extends Link {
|
|
|
7595
7594
|
* @returns The object of this type.
|
|
7596
7595
|
* @throws {TypeError} If the given `json` is invalid.
|
|
7597
7596
|
*/
|
|
7598
|
-
static fromJsonLd(json: unknown, options?: {
|
|
7597
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
7599
7598
|
documentLoader?: DocumentLoader$1;
|
|
7600
7599
|
contextLoader?: DocumentLoader$1;
|
|
7601
7600
|
tracerProvider?: TracerProvider;
|
|
@@ -7607,7 +7606,7 @@ declare class Hashtag extends Link {
|
|
|
7607
7606
|
tracerProvider?: TracerProvider;
|
|
7608
7607
|
baseUrl?: URL;
|
|
7609
7608
|
}): Promise<Hashtag>;
|
|
7610
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
7609
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
7611
7610
|
}
|
|
7612
7611
|
/** An image document of any kind.
|
|
7613
7612
|
*/
|
|
@@ -7615,7 +7614,7 @@ declare class Image extends Document {
|
|
|
7615
7614
|
/**
|
|
7616
7615
|
* The type URI of {@link Image}: `https://www.w3.org/ns/activitystreams#Image`.
|
|
7617
7616
|
*/
|
|
7618
|
-
static get typeId(): URL;
|
|
7617
|
+
static override get typeId(): URL;
|
|
7619
7618
|
/**
|
|
7620
7619
|
* Constructs a new instance of Image with the given values.
|
|
7621
7620
|
* @param values The values to initialize the instance with.
|
|
@@ -7684,7 +7683,7 @@ declare class Image extends Document {
|
|
|
7684
7683
|
* @param options The options to use for cloning.
|
|
7685
7684
|
* @returns The cloned instance.
|
|
7686
7685
|
*/
|
|
7687
|
-
clone(values?: {
|
|
7686
|
+
override clone(values?: {
|
|
7688
7687
|
id?: URL | null;
|
|
7689
7688
|
attachments?: (Object$1 | Link | PropertyValue | URL)[];
|
|
7690
7689
|
attribution?: Application | Group | Organization | Person | Service | URL | null;
|
|
@@ -7750,12 +7749,12 @@ declare class Image extends Document {
|
|
|
7750
7749
|
when `format` is set to `'expand'`.
|
|
7751
7750
|
* @returns The JSON-LD representation of this object.
|
|
7752
7751
|
*/
|
|
7753
|
-
toJsonLd(options?: {
|
|
7752
|
+
override toJsonLd(options?: {
|
|
7754
7753
|
format?: "compact" | "expand";
|
|
7755
7754
|
contextLoader?: DocumentLoader$1;
|
|
7756
7755
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
7757
7756
|
}): Promise<unknown>;
|
|
7758
|
-
protected isCompactable(): boolean;
|
|
7757
|
+
protected override isCompactable(): boolean;
|
|
7759
7758
|
/**
|
|
7760
7759
|
* Converts a JSON-LD structure to an object of this type.
|
|
7761
7760
|
* @param json The JSON-LD structure to convert.
|
|
@@ -7767,7 +7766,7 @@ declare class Image extends Document {
|
|
|
7767
7766
|
* @returns The object of this type.
|
|
7768
7767
|
* @throws {TypeError} If the given `json` is invalid.
|
|
7769
7768
|
*/
|
|
7770
|
-
static fromJsonLd(json: unknown, options?: {
|
|
7769
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
7771
7770
|
documentLoader?: DocumentLoader$1;
|
|
7772
7771
|
contextLoader?: DocumentLoader$1;
|
|
7773
7772
|
tracerProvider?: TracerProvider;
|
|
@@ -7779,7 +7778,7 @@ declare class Image extends Document {
|
|
|
7779
7778
|
tracerProvider?: TracerProvider;
|
|
7780
7779
|
baseUrl?: URL;
|
|
7781
7780
|
}): Promise<Image>;
|
|
7782
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
7781
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
7783
7782
|
}
|
|
7784
7783
|
/** Indicates that the actor is offering the object.
|
|
7785
7784
|
* If specified, the target indicates the entity to which
|
|
@@ -7789,7 +7788,7 @@ declare class Offer extends Activity {
|
|
|
7789
7788
|
/**
|
|
7790
7789
|
* The type URI of {@link Offer}: `https://www.w3.org/ns/activitystreams#Offer`.
|
|
7791
7790
|
*/
|
|
7792
|
-
static get typeId(): URL;
|
|
7791
|
+
static override get typeId(): URL;
|
|
7793
7792
|
/**
|
|
7794
7793
|
* Constructs a new instance of Offer with the given values.
|
|
7795
7794
|
* @param values The values to initialize the instance with.
|
|
@@ -7868,7 +7867,7 @@ declare class Offer extends Activity {
|
|
|
7868
7867
|
* @param options The options to use for cloning.
|
|
7869
7868
|
* @returns The cloned instance.
|
|
7870
7869
|
*/
|
|
7871
|
-
clone(values?: {
|
|
7870
|
+
override clone(values?: {
|
|
7872
7871
|
id?: URL | null;
|
|
7873
7872
|
attachments?: (Object$1 | Link | PropertyValue | URL)[];
|
|
7874
7873
|
attribution?: Application | Group | Organization | Person | Service | URL | null;
|
|
@@ -7944,12 +7943,12 @@ declare class Offer extends Activity {
|
|
|
7944
7943
|
when `format` is set to `'expand'`.
|
|
7945
7944
|
* @returns The JSON-LD representation of this object.
|
|
7946
7945
|
*/
|
|
7947
|
-
toJsonLd(options?: {
|
|
7946
|
+
override toJsonLd(options?: {
|
|
7948
7947
|
format?: "compact" | "expand";
|
|
7949
7948
|
contextLoader?: DocumentLoader$1;
|
|
7950
7949
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
7951
7950
|
}): Promise<unknown>;
|
|
7952
|
-
protected isCompactable(): boolean;
|
|
7951
|
+
protected override isCompactable(): boolean;
|
|
7953
7952
|
/**
|
|
7954
7953
|
* Converts a JSON-LD structure to an object of this type.
|
|
7955
7954
|
* @param json The JSON-LD structure to convert.
|
|
@@ -7961,7 +7960,7 @@ declare class Offer extends Activity {
|
|
|
7961
7960
|
* @returns The object of this type.
|
|
7962
7961
|
* @throws {TypeError} If the given `json` is invalid.
|
|
7963
7962
|
*/
|
|
7964
|
-
static fromJsonLd(json: unknown, options?: {
|
|
7963
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
7965
7964
|
documentLoader?: DocumentLoader$1;
|
|
7966
7965
|
contextLoader?: DocumentLoader$1;
|
|
7967
7966
|
tracerProvider?: TracerProvider;
|
|
@@ -7973,7 +7972,7 @@ declare class Offer extends Activity {
|
|
|
7973
7972
|
tracerProvider?: TracerProvider;
|
|
7974
7973
|
baseUrl?: URL;
|
|
7975
7974
|
}): Promise<Offer>;
|
|
7976
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
7975
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
7977
7976
|
}
|
|
7978
7977
|
/** A specialization of `Offer` in which the `actor` is extending an invitation
|
|
7979
7978
|
* for the `object` to the `target`.
|
|
@@ -7982,7 +7981,7 @@ declare class Invite extends Offer {
|
|
|
7982
7981
|
/**
|
|
7983
7982
|
* The type URI of {@link Invite}: `https://www.w3.org/ns/activitystreams#Invite`.
|
|
7984
7983
|
*/
|
|
7985
|
-
static get typeId(): URL;
|
|
7984
|
+
static override get typeId(): URL;
|
|
7986
7985
|
/**
|
|
7987
7986
|
* Constructs a new instance of Invite with the given values.
|
|
7988
7987
|
* @param values The values to initialize the instance with.
|
|
@@ -8061,7 +8060,7 @@ declare class Invite extends Offer {
|
|
|
8061
8060
|
* @param options The options to use for cloning.
|
|
8062
8061
|
* @returns The cloned instance.
|
|
8063
8062
|
*/
|
|
8064
|
-
clone(values?: {
|
|
8063
|
+
override clone(values?: {
|
|
8065
8064
|
id?: URL | null;
|
|
8066
8065
|
attachments?: (Object$1 | Link | PropertyValue | URL)[];
|
|
8067
8066
|
attribution?: Application | Group | Organization | Person | Service | URL | null;
|
|
@@ -8137,12 +8136,12 @@ declare class Invite extends Offer {
|
|
|
8137
8136
|
when `format` is set to `'expand'`.
|
|
8138
8137
|
* @returns The JSON-LD representation of this object.
|
|
8139
8138
|
*/
|
|
8140
|
-
toJsonLd(options?: {
|
|
8139
|
+
override toJsonLd(options?: {
|
|
8141
8140
|
format?: "compact" | "expand";
|
|
8142
8141
|
contextLoader?: DocumentLoader$1;
|
|
8143
8142
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
8144
8143
|
}): Promise<unknown>;
|
|
8145
|
-
protected isCompactable(): boolean;
|
|
8144
|
+
protected override isCompactable(): boolean;
|
|
8146
8145
|
/**
|
|
8147
8146
|
* Converts a JSON-LD structure to an object of this type.
|
|
8148
8147
|
* @param json The JSON-LD structure to convert.
|
|
@@ -8154,7 +8153,7 @@ declare class Invite extends Offer {
|
|
|
8154
8153
|
* @returns The object of this type.
|
|
8155
8154
|
* @throws {TypeError} If the given `json` is invalid.
|
|
8156
8155
|
*/
|
|
8157
|
-
static fromJsonLd(json: unknown, options?: {
|
|
8156
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
8158
8157
|
documentLoader?: DocumentLoader$1;
|
|
8159
8158
|
contextLoader?: DocumentLoader$1;
|
|
8160
8159
|
tracerProvider?: TracerProvider;
|
|
@@ -8166,7 +8165,7 @@ declare class Invite extends Offer {
|
|
|
8166
8165
|
tracerProvider?: TracerProvider;
|
|
8167
8166
|
baseUrl?: URL;
|
|
8168
8167
|
}): Promise<Invite>;
|
|
8169
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
8168
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
8170
8169
|
}
|
|
8171
8170
|
/** Indicates that the `actor` has joined the `object`.
|
|
8172
8171
|
* The `target` and `origin` typically have no defined meaning.
|
|
@@ -8175,7 +8174,7 @@ declare class Join extends Activity {
|
|
|
8175
8174
|
/**
|
|
8176
8175
|
* The type URI of {@link Join}: `https://www.w3.org/ns/activitystreams#Join`.
|
|
8177
8176
|
*/
|
|
8178
|
-
static get typeId(): URL;
|
|
8177
|
+
static override get typeId(): URL;
|
|
8179
8178
|
/**
|
|
8180
8179
|
* Constructs a new instance of Join with the given values.
|
|
8181
8180
|
* @param values The values to initialize the instance with.
|
|
@@ -8254,7 +8253,7 @@ declare class Join extends Activity {
|
|
|
8254
8253
|
* @param options The options to use for cloning.
|
|
8255
8254
|
* @returns The cloned instance.
|
|
8256
8255
|
*/
|
|
8257
|
-
clone(values?: {
|
|
8256
|
+
override clone(values?: {
|
|
8258
8257
|
id?: URL | null;
|
|
8259
8258
|
attachments?: (Object$1 | Link | PropertyValue | URL)[];
|
|
8260
8259
|
attribution?: Application | Group | Organization | Person | Service | URL | null;
|
|
@@ -8330,12 +8329,12 @@ declare class Join extends Activity {
|
|
|
8330
8329
|
when `format` is set to `'expand'`.
|
|
8331
8330
|
* @returns The JSON-LD representation of this object.
|
|
8332
8331
|
*/
|
|
8333
|
-
toJsonLd(options?: {
|
|
8332
|
+
override toJsonLd(options?: {
|
|
8334
8333
|
format?: "compact" | "expand";
|
|
8335
8334
|
contextLoader?: DocumentLoader$1;
|
|
8336
8335
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
8337
8336
|
}): Promise<unknown>;
|
|
8338
|
-
protected isCompactable(): boolean;
|
|
8337
|
+
protected override isCompactable(): boolean;
|
|
8339
8338
|
/**
|
|
8340
8339
|
* Converts a JSON-LD structure to an object of this type.
|
|
8341
8340
|
* @param json The JSON-LD structure to convert.
|
|
@@ -8347,7 +8346,7 @@ declare class Join extends Activity {
|
|
|
8347
8346
|
* @returns The object of this type.
|
|
8348
8347
|
* @throws {TypeError} If the given `json` is invalid.
|
|
8349
8348
|
*/
|
|
8350
|
-
static fromJsonLd(json: unknown, options?: {
|
|
8349
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
8351
8350
|
documentLoader?: DocumentLoader$1;
|
|
8352
8351
|
contextLoader?: DocumentLoader$1;
|
|
8353
8352
|
tracerProvider?: TracerProvider;
|
|
@@ -8359,7 +8358,7 @@ declare class Join extends Activity {
|
|
|
8359
8358
|
tracerProvider?: TracerProvider;
|
|
8360
8359
|
baseUrl?: URL;
|
|
8361
8360
|
}): Promise<Join>;
|
|
8362
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
8361
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
8363
8362
|
}
|
|
8364
8363
|
/** Indicates that the `actor` has left the `object`.
|
|
8365
8364
|
* The `target` and `origin` typically have no meaning.
|
|
@@ -8368,7 +8367,7 @@ declare class Leave extends Activity {
|
|
|
8368
8367
|
/**
|
|
8369
8368
|
* The type URI of {@link Leave}: `https://www.w3.org/ns/activitystreams#Leave`.
|
|
8370
8369
|
*/
|
|
8371
|
-
static get typeId(): URL;
|
|
8370
|
+
static override get typeId(): URL;
|
|
8372
8371
|
/**
|
|
8373
8372
|
* Constructs a new instance of Leave with the given values.
|
|
8374
8373
|
* @param values The values to initialize the instance with.
|
|
@@ -8447,7 +8446,7 @@ declare class Leave extends Activity {
|
|
|
8447
8446
|
* @param options The options to use for cloning.
|
|
8448
8447
|
* @returns The cloned instance.
|
|
8449
8448
|
*/
|
|
8450
|
-
clone(values?: {
|
|
8449
|
+
override clone(values?: {
|
|
8451
8450
|
id?: URL | null;
|
|
8452
8451
|
attachments?: (Object$1 | Link | PropertyValue | URL)[];
|
|
8453
8452
|
attribution?: Application | Group | Organization | Person | Service | URL | null;
|
|
@@ -8523,12 +8522,12 @@ declare class Leave extends Activity {
|
|
|
8523
8522
|
when `format` is set to `'expand'`.
|
|
8524
8523
|
* @returns The JSON-LD representation of this object.
|
|
8525
8524
|
*/
|
|
8526
|
-
toJsonLd(options?: {
|
|
8525
|
+
override toJsonLd(options?: {
|
|
8527
8526
|
format?: "compact" | "expand";
|
|
8528
8527
|
contextLoader?: DocumentLoader$1;
|
|
8529
8528
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
8530
8529
|
}): Promise<unknown>;
|
|
8531
|
-
protected isCompactable(): boolean;
|
|
8530
|
+
protected override isCompactable(): boolean;
|
|
8532
8531
|
/**
|
|
8533
8532
|
* Converts a JSON-LD structure to an object of this type.
|
|
8534
8533
|
* @param json The JSON-LD structure to convert.
|
|
@@ -8540,7 +8539,7 @@ declare class Leave extends Activity {
|
|
|
8540
8539
|
* @returns The object of this type.
|
|
8541
8540
|
* @throws {TypeError} If the given `json` is invalid.
|
|
8542
8541
|
*/
|
|
8543
|
-
static fromJsonLd(json: unknown, options?: {
|
|
8542
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
8544
8543
|
documentLoader?: DocumentLoader$1;
|
|
8545
8544
|
contextLoader?: DocumentLoader$1;
|
|
8546
8545
|
tracerProvider?: TracerProvider;
|
|
@@ -8552,7 +8551,7 @@ declare class Leave extends Activity {
|
|
|
8552
8551
|
tracerProvider?: TracerProvider;
|
|
8553
8552
|
baseUrl?: URL;
|
|
8554
8553
|
}): Promise<Leave>;
|
|
8555
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
8554
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
8556
8555
|
}
|
|
8557
8556
|
/** Indicates that the `actor` likes, recommends or endorses the `object`.
|
|
8558
8557
|
* The `target` and `origin` typically have no defined meaning.
|
|
@@ -8561,7 +8560,7 @@ declare class Like extends Activity {
|
|
|
8561
8560
|
/**
|
|
8562
8561
|
* The type URI of {@link Like}: `https://www.w3.org/ns/activitystreams#Like`.
|
|
8563
8562
|
*/
|
|
8564
|
-
static get typeId(): URL;
|
|
8563
|
+
static override get typeId(): URL;
|
|
8565
8564
|
/**
|
|
8566
8565
|
* Constructs a new instance of Like with the given values.
|
|
8567
8566
|
* @param values The values to initialize the instance with.
|
|
@@ -8640,7 +8639,7 @@ declare class Like extends Activity {
|
|
|
8640
8639
|
* @param options The options to use for cloning.
|
|
8641
8640
|
* @returns The cloned instance.
|
|
8642
8641
|
*/
|
|
8643
|
-
clone(values?: {
|
|
8642
|
+
override clone(values?: {
|
|
8644
8643
|
id?: URL | null;
|
|
8645
8644
|
attachments?: (Object$1 | Link | PropertyValue | URL)[];
|
|
8646
8645
|
attribution?: Application | Group | Organization | Person | Service | URL | null;
|
|
@@ -8716,12 +8715,12 @@ declare class Like extends Activity {
|
|
|
8716
8715
|
when `format` is set to `'expand'`.
|
|
8717
8716
|
* @returns The JSON-LD representation of this object.
|
|
8718
8717
|
*/
|
|
8719
|
-
toJsonLd(options?: {
|
|
8718
|
+
override toJsonLd(options?: {
|
|
8720
8719
|
format?: "compact" | "expand";
|
|
8721
8720
|
contextLoader?: DocumentLoader$1;
|
|
8722
8721
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
8723
8722
|
}): Promise<unknown>;
|
|
8724
|
-
protected isCompactable(): boolean;
|
|
8723
|
+
protected override isCompactable(): boolean;
|
|
8725
8724
|
/**
|
|
8726
8725
|
* Converts a JSON-LD structure to an object of this type.
|
|
8727
8726
|
* @param json The JSON-LD structure to convert.
|
|
@@ -8733,7 +8732,7 @@ declare class Like extends Activity {
|
|
|
8733
8732
|
* @returns The object of this type.
|
|
8734
8733
|
* @throws {TypeError} If the given `json` is invalid.
|
|
8735
8734
|
*/
|
|
8736
|
-
static fromJsonLd(json: unknown, options?: {
|
|
8735
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
8737
8736
|
documentLoader?: DocumentLoader$1;
|
|
8738
8737
|
contextLoader?: DocumentLoader$1;
|
|
8739
8738
|
tracerProvider?: TracerProvider;
|
|
@@ -8745,7 +8744,7 @@ declare class Like extends Activity {
|
|
|
8745
8744
|
tracerProvider?: TracerProvider;
|
|
8746
8745
|
baseUrl?: URL;
|
|
8747
8746
|
}): Promise<Like>;
|
|
8748
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
8747
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
8749
8748
|
}
|
|
8750
8749
|
/** Indicates that the `actor` has listened to the `object`.
|
|
8751
8750
|
*/
|
|
@@ -8753,7 +8752,7 @@ declare class Listen extends Activity {
|
|
|
8753
8752
|
/**
|
|
8754
8753
|
* The type URI of {@link Listen}: `https://www.w3.org/ns/activitystreams#Listen`.
|
|
8755
8754
|
*/
|
|
8756
|
-
static get typeId(): URL;
|
|
8755
|
+
static override get typeId(): URL;
|
|
8757
8756
|
/**
|
|
8758
8757
|
* Constructs a new instance of Listen with the given values.
|
|
8759
8758
|
* @param values The values to initialize the instance with.
|
|
@@ -8832,7 +8831,7 @@ declare class Listen extends Activity {
|
|
|
8832
8831
|
* @param options The options to use for cloning.
|
|
8833
8832
|
* @returns The cloned instance.
|
|
8834
8833
|
*/
|
|
8835
|
-
clone(values?: {
|
|
8834
|
+
override clone(values?: {
|
|
8836
8835
|
id?: URL | null;
|
|
8837
8836
|
attachments?: (Object$1 | Link | PropertyValue | URL)[];
|
|
8838
8837
|
attribution?: Application | Group | Organization | Person | Service | URL | null;
|
|
@@ -8908,12 +8907,12 @@ declare class Listen extends Activity {
|
|
|
8908
8907
|
when `format` is set to `'expand'`.
|
|
8909
8908
|
* @returns The JSON-LD representation of this object.
|
|
8910
8909
|
*/
|
|
8911
|
-
toJsonLd(options?: {
|
|
8910
|
+
override toJsonLd(options?: {
|
|
8912
8911
|
format?: "compact" | "expand";
|
|
8913
8912
|
contextLoader?: DocumentLoader$1;
|
|
8914
8913
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
8915
8914
|
}): Promise<unknown>;
|
|
8916
|
-
protected isCompactable(): boolean;
|
|
8915
|
+
protected override isCompactable(): boolean;
|
|
8917
8916
|
/**
|
|
8918
8917
|
* Converts a JSON-LD structure to an object of this type.
|
|
8919
8918
|
* @param json The JSON-LD structure to convert.
|
|
@@ -8925,7 +8924,7 @@ declare class Listen extends Activity {
|
|
|
8925
8924
|
* @returns The object of this type.
|
|
8926
8925
|
* @throws {TypeError} If the given `json` is invalid.
|
|
8927
8926
|
*/
|
|
8928
|
-
static fromJsonLd(json: unknown, options?: {
|
|
8927
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
8929
8928
|
documentLoader?: DocumentLoader$1;
|
|
8930
8929
|
contextLoader?: DocumentLoader$1;
|
|
8931
8930
|
tracerProvider?: TracerProvider;
|
|
@@ -8937,7 +8936,7 @@ declare class Listen extends Activity {
|
|
|
8937
8936
|
tracerProvider?: TracerProvider;
|
|
8938
8937
|
baseUrl?: URL;
|
|
8939
8938
|
}): Promise<Listen>;
|
|
8940
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
8939
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
8941
8940
|
}
|
|
8942
8941
|
/** A specialized {@link Link} that represents an @mention.
|
|
8943
8942
|
*/
|
|
@@ -8945,7 +8944,7 @@ declare class Mention extends Link {
|
|
|
8945
8944
|
/**
|
|
8946
8945
|
* The type URI of {@link Mention}: `https://www.w3.org/ns/activitystreams#Mention`.
|
|
8947
8946
|
*/
|
|
8948
|
-
static get typeId(): URL;
|
|
8947
|
+
static override get typeId(): URL;
|
|
8949
8948
|
/**
|
|
8950
8949
|
* Constructs a new instance of Mention with the given values.
|
|
8951
8950
|
* @param values The values to initialize the instance with.
|
|
@@ -8974,7 +8973,7 @@ declare class Mention extends Link {
|
|
|
8974
8973
|
* @param options The options to use for cloning.
|
|
8975
8974
|
* @returns The cloned instance.
|
|
8976
8975
|
*/
|
|
8977
|
-
clone(values?: {
|
|
8976
|
+
override clone(values?: {
|
|
8978
8977
|
id?: URL | null;
|
|
8979
8978
|
href?: URL | null;
|
|
8980
8979
|
rel?: string | null;
|
|
@@ -9000,12 +8999,12 @@ declare class Mention extends Link {
|
|
|
9000
8999
|
when `format` is set to `'expand'`.
|
|
9001
9000
|
* @returns The JSON-LD representation of this object.
|
|
9002
9001
|
*/
|
|
9003
|
-
toJsonLd(options?: {
|
|
9002
|
+
override toJsonLd(options?: {
|
|
9004
9003
|
format?: "compact" | "expand";
|
|
9005
9004
|
contextLoader?: DocumentLoader$1;
|
|
9006
9005
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
9007
9006
|
}): Promise<unknown>;
|
|
9008
|
-
protected isCompactable(): boolean;
|
|
9007
|
+
protected override isCompactable(): boolean;
|
|
9009
9008
|
/**
|
|
9010
9009
|
* Converts a JSON-LD structure to an object of this type.
|
|
9011
9010
|
* @param json The JSON-LD structure to convert.
|
|
@@ -9017,7 +9016,7 @@ declare class Mention extends Link {
|
|
|
9017
9016
|
* @returns The object of this type.
|
|
9018
9017
|
* @throws {TypeError} If the given `json` is invalid.
|
|
9019
9018
|
*/
|
|
9020
|
-
static fromJsonLd(json: unknown, options?: {
|
|
9019
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
9021
9020
|
documentLoader?: DocumentLoader$1;
|
|
9022
9021
|
contextLoader?: DocumentLoader$1;
|
|
9023
9022
|
tracerProvider?: TracerProvider;
|
|
@@ -9029,7 +9028,7 @@ declare class Mention extends Link {
|
|
|
9029
9028
|
tracerProvider?: TracerProvider;
|
|
9030
9029
|
baseUrl?: URL;
|
|
9031
9030
|
}): Promise<Mention>;
|
|
9032
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
9031
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
9033
9032
|
}
|
|
9034
9033
|
/** Indicates that the `actor` has moved `object` from `origin` to `target`.
|
|
9035
9034
|
* If the `origin` or `target` are not specified,
|
|
@@ -9039,7 +9038,7 @@ declare class Move extends Activity {
|
|
|
9039
9038
|
/**
|
|
9040
9039
|
* The type URI of {@link Move}: `https://www.w3.org/ns/activitystreams#Move`.
|
|
9041
9040
|
*/
|
|
9042
|
-
static get typeId(): URL;
|
|
9041
|
+
static override get typeId(): URL;
|
|
9043
9042
|
/**
|
|
9044
9043
|
* Constructs a new instance of Move with the given values.
|
|
9045
9044
|
* @param values The values to initialize the instance with.
|
|
@@ -9118,7 +9117,7 @@ declare class Move extends Activity {
|
|
|
9118
9117
|
* @param options The options to use for cloning.
|
|
9119
9118
|
* @returns The cloned instance.
|
|
9120
9119
|
*/
|
|
9121
|
-
clone(values?: {
|
|
9120
|
+
override clone(values?: {
|
|
9122
9121
|
id?: URL | null;
|
|
9123
9122
|
attachments?: (Object$1 | Link | PropertyValue | URL)[];
|
|
9124
9123
|
attribution?: Application | Group | Organization | Person | Service | URL | null;
|
|
@@ -9194,12 +9193,12 @@ declare class Move extends Activity {
|
|
|
9194
9193
|
when `format` is set to `'expand'`.
|
|
9195
9194
|
* @returns The JSON-LD representation of this object.
|
|
9196
9195
|
*/
|
|
9197
|
-
toJsonLd(options?: {
|
|
9196
|
+
override toJsonLd(options?: {
|
|
9198
9197
|
format?: "compact" | "expand";
|
|
9199
9198
|
contextLoader?: DocumentLoader$1;
|
|
9200
9199
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
9201
9200
|
}): Promise<unknown>;
|
|
9202
|
-
protected isCompactable(): boolean;
|
|
9201
|
+
protected override isCompactable(): boolean;
|
|
9203
9202
|
/**
|
|
9204
9203
|
* Converts a JSON-LD structure to an object of this type.
|
|
9205
9204
|
* @param json The JSON-LD structure to convert.
|
|
@@ -9211,7 +9210,7 @@ declare class Move extends Activity {
|
|
|
9211
9210
|
* @returns The object of this type.
|
|
9212
9211
|
* @throws {TypeError} If the given `json` is invalid.
|
|
9213
9212
|
*/
|
|
9214
|
-
static fromJsonLd(json: unknown, options?: {
|
|
9213
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
9215
9214
|
documentLoader?: DocumentLoader$1;
|
|
9216
9215
|
contextLoader?: DocumentLoader$1;
|
|
9217
9216
|
tracerProvider?: TracerProvider;
|
|
@@ -9223,7 +9222,7 @@ declare class Move extends Activity {
|
|
|
9223
9222
|
tracerProvider?: TracerProvider;
|
|
9224
9223
|
baseUrl?: URL;
|
|
9225
9224
|
}): Promise<Move>;
|
|
9226
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
9225
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
9227
9226
|
}
|
|
9228
9227
|
/** Represents a short written work typically less than a single paragraph in
|
|
9229
9228
|
* length.
|
|
@@ -9233,7 +9232,7 @@ declare class Note extends Object$1 {
|
|
|
9233
9232
|
/**
|
|
9234
9233
|
* The type URI of {@link Note}: `https://www.w3.org/ns/activitystreams#Note`.
|
|
9235
9234
|
*/
|
|
9236
|
-
static get typeId(): URL;
|
|
9235
|
+
static override get typeId(): URL;
|
|
9237
9236
|
/**
|
|
9238
9237
|
* Constructs a new instance of Note with the given values.
|
|
9239
9238
|
* @param values The values to initialize the instance with.
|
|
@@ -9301,7 +9300,7 @@ declare class Note extends Object$1 {
|
|
|
9301
9300
|
* @param options The options to use for cloning.
|
|
9302
9301
|
* @returns The cloned instance.
|
|
9303
9302
|
*/
|
|
9304
|
-
clone(values?: {
|
|
9303
|
+
override clone(values?: {
|
|
9305
9304
|
id?: URL | null;
|
|
9306
9305
|
attachments?: (Object$1 | Link | PropertyValue | URL)[];
|
|
9307
9306
|
attribution?: Application | Group | Organization | Person | Service | URL | null;
|
|
@@ -9378,12 +9377,12 @@ declare class Note extends Object$1 {
|
|
|
9378
9377
|
when `format` is set to `'expand'`.
|
|
9379
9378
|
* @returns The JSON-LD representation of this object.
|
|
9380
9379
|
*/
|
|
9381
|
-
toJsonLd(options?: {
|
|
9380
|
+
override toJsonLd(options?: {
|
|
9382
9381
|
format?: "compact" | "expand";
|
|
9383
9382
|
contextLoader?: DocumentLoader$1;
|
|
9384
9383
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
9385
9384
|
}): Promise<unknown>;
|
|
9386
|
-
protected isCompactable(): boolean;
|
|
9385
|
+
protected override isCompactable(): boolean;
|
|
9387
9386
|
/**
|
|
9388
9387
|
* Converts a JSON-LD structure to an object of this type.
|
|
9389
9388
|
* @param json The JSON-LD structure to convert.
|
|
@@ -9395,7 +9394,7 @@ declare class Note extends Object$1 {
|
|
|
9395
9394
|
* @returns The object of this type.
|
|
9396
9395
|
* @throws {TypeError} If the given `json` is invalid.
|
|
9397
9396
|
*/
|
|
9398
|
-
static fromJsonLd(json: unknown, options?: {
|
|
9397
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
9399
9398
|
documentLoader?: DocumentLoader$1;
|
|
9400
9399
|
contextLoader?: DocumentLoader$1;
|
|
9401
9400
|
tracerProvider?: TracerProvider;
|
|
@@ -9407,7 +9406,7 @@ declare class Note extends Object$1 {
|
|
|
9407
9406
|
tracerProvider?: TracerProvider;
|
|
9408
9407
|
baseUrl?: URL;
|
|
9409
9408
|
}): Promise<Note>;
|
|
9410
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
9409
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
9411
9410
|
}
|
|
9412
9411
|
/** A subtype of {@link Collection} in which members of the logical collection
|
|
9413
9412
|
* are assumed to always be strictly ordered.
|
|
@@ -9417,7 +9416,7 @@ declare class OrderedCollection extends Collection {
|
|
|
9417
9416
|
/**
|
|
9418
9417
|
* The type URI of {@link OrderedCollection}: `https://www.w3.org/ns/activitystreams#OrderedCollection`.
|
|
9419
9418
|
*/
|
|
9420
|
-
static get typeId(): URL;
|
|
9419
|
+
static override get typeId(): URL;
|
|
9421
9420
|
/**
|
|
9422
9421
|
* Constructs a new instance of OrderedCollection with the given values.
|
|
9423
9422
|
* @param values The values to initialize the instance with.
|
|
@@ -9497,7 +9496,7 @@ declare class OrderedCollection extends Collection {
|
|
|
9497
9496
|
* @param options The options to use for cloning.
|
|
9498
9497
|
* @returns The cloned instance.
|
|
9499
9498
|
*/
|
|
9500
|
-
clone(values?: {
|
|
9499
|
+
override clone(values?: {
|
|
9501
9500
|
id?: URL | null;
|
|
9502
9501
|
attachments?: (Object$1 | Link | PropertyValue | URL)[];
|
|
9503
9502
|
attribution?: Application | Group | Organization | Person | Service | URL | null;
|
|
@@ -9569,11 +9568,11 @@ declare class OrderedCollection extends Collection {
|
|
|
9569
9568
|
* {@link OrderedCollection.getItems},
|
|
9570
9569
|
* but returns their `@id`s instead of the objects themselves.
|
|
9571
9570
|
*/
|
|
9572
|
-
get itemIds(): URL[];
|
|
9571
|
+
override get itemIds(): URL[];
|
|
9573
9572
|
/** Identifies the items contained in a collection. The items might be ordered
|
|
9574
9573
|
* or unordered.
|
|
9575
9574
|
*/
|
|
9576
|
-
getItems(options?: {
|
|
9575
|
+
override getItems(options?: {
|
|
9577
9576
|
documentLoader?: DocumentLoader$1;
|
|
9578
9577
|
contextLoader?: DocumentLoader$1;
|
|
9579
9578
|
suppressError?: boolean;
|
|
@@ -9590,12 +9589,12 @@ declare class OrderedCollection extends Collection {
|
|
|
9590
9589
|
when `format` is set to `'expand'`.
|
|
9591
9590
|
* @returns The JSON-LD representation of this object.
|
|
9592
9591
|
*/
|
|
9593
|
-
toJsonLd(options?: {
|
|
9592
|
+
override toJsonLd(options?: {
|
|
9594
9593
|
format?: "compact" | "expand";
|
|
9595
9594
|
contextLoader?: DocumentLoader$1;
|
|
9596
9595
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
9597
9596
|
}): Promise<unknown>;
|
|
9598
|
-
protected isCompactable(): boolean;
|
|
9597
|
+
protected override isCompactable(): boolean;
|
|
9599
9598
|
/**
|
|
9600
9599
|
* Converts a JSON-LD structure to an object of this type.
|
|
9601
9600
|
* @param json The JSON-LD structure to convert.
|
|
@@ -9607,7 +9606,7 @@ declare class OrderedCollection extends Collection {
|
|
|
9607
9606
|
* @returns The object of this type.
|
|
9608
9607
|
* @throws {TypeError} If the given `json` is invalid.
|
|
9609
9608
|
*/
|
|
9610
|
-
static fromJsonLd(json: unknown, options?: {
|
|
9609
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
9611
9610
|
documentLoader?: DocumentLoader$1;
|
|
9612
9611
|
contextLoader?: DocumentLoader$1;
|
|
9613
9612
|
tracerProvider?: TracerProvider;
|
|
@@ -9619,7 +9618,7 @@ declare class OrderedCollection extends Collection {
|
|
|
9619
9618
|
tracerProvider?: TracerProvider;
|
|
9620
9619
|
baseUrl?: URL;
|
|
9621
9620
|
}): Promise<OrderedCollection>;
|
|
9622
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
9621
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
9623
9622
|
}
|
|
9624
9623
|
/** Used to represent ordered subsets of items from an `OrderedCollection`.
|
|
9625
9624
|
* Refer to the Activity Streams 2.0 Core for a complete description of
|
|
@@ -9630,7 +9629,7 @@ declare class OrderedCollectionPage extends CollectionPage {
|
|
|
9630
9629
|
/**
|
|
9631
9630
|
* The type URI of {@link OrderedCollectionPage}: `https://www.w3.org/ns/activitystreams#OrderedCollectionPage`.
|
|
9632
9631
|
*/
|
|
9633
|
-
static get typeId(): URL;
|
|
9632
|
+
static override get typeId(): URL;
|
|
9634
9633
|
/**
|
|
9635
9634
|
* Constructs a new instance of OrderedCollectionPage with the given values.
|
|
9636
9635
|
* @param values The values to initialize the instance with.
|
|
@@ -9714,7 +9713,7 @@ declare class OrderedCollectionPage extends CollectionPage {
|
|
|
9714
9713
|
* @param options The options to use for cloning.
|
|
9715
9714
|
* @returns The cloned instance.
|
|
9716
9715
|
*/
|
|
9717
|
-
clone(values?: {
|
|
9716
|
+
override clone(values?: {
|
|
9718
9717
|
id?: URL | null;
|
|
9719
9718
|
attachments?: (Object$1 | Link | PropertyValue | URL)[];
|
|
9720
9719
|
attribution?: Application | Group | Organization | Person | Service | URL | null;
|
|
@@ -9790,11 +9789,11 @@ declare class OrderedCollectionPage extends CollectionPage {
|
|
|
9790
9789
|
* {@link OrderedCollectionPage.getItems},
|
|
9791
9790
|
* but returns their `@id`s instead of the objects themselves.
|
|
9792
9791
|
*/
|
|
9793
|
-
get itemIds(): URL[];
|
|
9792
|
+
override get itemIds(): URL[];
|
|
9794
9793
|
/** Identifies the items contained in a collection. The items might be ordered
|
|
9795
9794
|
* or unordered.
|
|
9796
9795
|
*/
|
|
9797
|
-
getItems(options?: {
|
|
9796
|
+
override getItems(options?: {
|
|
9798
9797
|
documentLoader?: DocumentLoader$1;
|
|
9799
9798
|
contextLoader?: DocumentLoader$1;
|
|
9800
9799
|
suppressError?: boolean;
|
|
@@ -9815,12 +9814,12 @@ declare class OrderedCollectionPage extends CollectionPage {
|
|
|
9815
9814
|
when `format` is set to `'expand'`.
|
|
9816
9815
|
* @returns The JSON-LD representation of this object.
|
|
9817
9816
|
*/
|
|
9818
|
-
toJsonLd(options?: {
|
|
9817
|
+
override toJsonLd(options?: {
|
|
9819
9818
|
format?: "compact" | "expand";
|
|
9820
9819
|
contextLoader?: DocumentLoader$1;
|
|
9821
9820
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
9822
9821
|
}): Promise<unknown>;
|
|
9823
|
-
protected isCompactable(): boolean;
|
|
9822
|
+
protected override isCompactable(): boolean;
|
|
9824
9823
|
/**
|
|
9825
9824
|
* Converts a JSON-LD structure to an object of this type.
|
|
9826
9825
|
* @param json The JSON-LD structure to convert.
|
|
@@ -9832,7 +9831,7 @@ declare class OrderedCollectionPage extends CollectionPage {
|
|
|
9832
9831
|
* @returns The object of this type.
|
|
9833
9832
|
* @throws {TypeError} If the given `json` is invalid.
|
|
9834
9833
|
*/
|
|
9835
|
-
static fromJsonLd(json: unknown, options?: {
|
|
9834
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
9836
9835
|
documentLoader?: DocumentLoader$1;
|
|
9837
9836
|
contextLoader?: DocumentLoader$1;
|
|
9838
9837
|
tracerProvider?: TracerProvider;
|
|
@@ -9844,7 +9843,7 @@ declare class OrderedCollectionPage extends CollectionPage {
|
|
|
9844
9843
|
tracerProvider?: TracerProvider;
|
|
9845
9844
|
baseUrl?: URL;
|
|
9846
9845
|
}): Promise<OrderedCollectionPage>;
|
|
9847
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
9846
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
9848
9847
|
}
|
|
9849
9848
|
/** Represents an organization.
|
|
9850
9849
|
*/
|
|
@@ -9853,7 +9852,7 @@ declare class Organization extends Object$1 {
|
|
|
9853
9852
|
/**
|
|
9854
9853
|
* The type URI of {@link Organization}: `https://www.w3.org/ns/activitystreams#Organization`.
|
|
9855
9854
|
*/
|
|
9856
|
-
static get typeId(): URL;
|
|
9855
|
+
static override get typeId(): URL;
|
|
9857
9856
|
/**
|
|
9858
9857
|
* Constructs a new instance of Organization with the given values.
|
|
9859
9858
|
* @param values The values to initialize the instance with.
|
|
@@ -9947,7 +9946,7 @@ declare class Organization extends Object$1 {
|
|
|
9947
9946
|
* @param options The options to use for cloning.
|
|
9948
9947
|
* @returns The cloned instance.
|
|
9949
9948
|
*/
|
|
9950
|
-
clone(values?: {
|
|
9949
|
+
override clone(values?: {
|
|
9951
9950
|
id?: URL | null;
|
|
9952
9951
|
attachments?: (Object$1 | Link | PropertyValue | URL)[];
|
|
9953
9952
|
attribution?: Application | Group | Organization | Person | Service | URL | null;
|
|
@@ -10401,12 +10400,12 @@ declare class Organization extends Object$1 {
|
|
|
10401
10400
|
when `format` is set to `'expand'`.
|
|
10402
10401
|
* @returns The JSON-LD representation of this object.
|
|
10403
10402
|
*/
|
|
10404
|
-
toJsonLd(options?: {
|
|
10403
|
+
override toJsonLd(options?: {
|
|
10405
10404
|
format?: "compact" | "expand";
|
|
10406
10405
|
contextLoader?: DocumentLoader$1;
|
|
10407
10406
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
10408
10407
|
}): Promise<unknown>;
|
|
10409
|
-
protected isCompactable(): boolean;
|
|
10408
|
+
protected override isCompactable(): boolean;
|
|
10410
10409
|
/**
|
|
10411
10410
|
* Converts a JSON-LD structure to an object of this type.
|
|
10412
10411
|
* @param json The JSON-LD structure to convert.
|
|
@@ -10418,7 +10417,7 @@ declare class Organization extends Object$1 {
|
|
|
10418
10417
|
* @returns The object of this type.
|
|
10419
10418
|
* @throws {TypeError} If the given `json` is invalid.
|
|
10420
10419
|
*/
|
|
10421
|
-
static fromJsonLd(json: unknown, options?: {
|
|
10420
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
10422
10421
|
documentLoader?: DocumentLoader$1;
|
|
10423
10422
|
contextLoader?: DocumentLoader$1;
|
|
10424
10423
|
tracerProvider?: TracerProvider;
|
|
@@ -10430,7 +10429,7 @@ declare class Organization extends Object$1 {
|
|
|
10430
10429
|
tracerProvider?: TracerProvider;
|
|
10431
10430
|
baseUrl?: URL;
|
|
10432
10431
|
}): Promise<Organization>;
|
|
10433
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
10432
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
10434
10433
|
}
|
|
10435
10434
|
/** Represents a Web Page.
|
|
10436
10435
|
*/
|
|
@@ -10438,7 +10437,7 @@ declare class Page extends Document {
|
|
|
10438
10437
|
/**
|
|
10439
10438
|
* The type URI of {@link Page}: `https://www.w3.org/ns/activitystreams#Page`.
|
|
10440
10439
|
*/
|
|
10441
|
-
static get typeId(): URL;
|
|
10440
|
+
static override get typeId(): URL;
|
|
10442
10441
|
/**
|
|
10443
10442
|
* Constructs a new instance of Page with the given values.
|
|
10444
10443
|
* @param values The values to initialize the instance with.
|
|
@@ -10507,7 +10506,7 @@ declare class Page extends Document {
|
|
|
10507
10506
|
* @param options The options to use for cloning.
|
|
10508
10507
|
* @returns The cloned instance.
|
|
10509
10508
|
*/
|
|
10510
|
-
clone(values?: {
|
|
10509
|
+
override clone(values?: {
|
|
10511
10510
|
id?: URL | null;
|
|
10512
10511
|
attachments?: (Object$1 | Link | PropertyValue | URL)[];
|
|
10513
10512
|
attribution?: Application | Group | Organization | Person | Service | URL | null;
|
|
@@ -10573,12 +10572,12 @@ declare class Page extends Document {
|
|
|
10573
10572
|
when `format` is set to `'expand'`.
|
|
10574
10573
|
* @returns The JSON-LD representation of this object.
|
|
10575
10574
|
*/
|
|
10576
|
-
toJsonLd(options?: {
|
|
10575
|
+
override toJsonLd(options?: {
|
|
10577
10576
|
format?: "compact" | "expand";
|
|
10578
10577
|
contextLoader?: DocumentLoader$1;
|
|
10579
10578
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
10580
10579
|
}): Promise<unknown>;
|
|
10581
|
-
protected isCompactable(): boolean;
|
|
10580
|
+
protected override isCompactable(): boolean;
|
|
10582
10581
|
/**
|
|
10583
10582
|
* Converts a JSON-LD structure to an object of this type.
|
|
10584
10583
|
* @param json The JSON-LD structure to convert.
|
|
@@ -10590,7 +10589,7 @@ declare class Page extends Document {
|
|
|
10590
10589
|
* @returns The object of this type.
|
|
10591
10590
|
* @throws {TypeError} If the given `json` is invalid.
|
|
10592
10591
|
*/
|
|
10593
|
-
static fromJsonLd(json: unknown, options?: {
|
|
10592
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
10594
10593
|
documentLoader?: DocumentLoader$1;
|
|
10595
10594
|
contextLoader?: DocumentLoader$1;
|
|
10596
10595
|
tracerProvider?: TracerProvider;
|
|
@@ -10602,7 +10601,7 @@ declare class Page extends Document {
|
|
|
10602
10601
|
tracerProvider?: TracerProvider;
|
|
10603
10602
|
baseUrl?: URL;
|
|
10604
10603
|
}): Promise<Page>;
|
|
10605
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
10604
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
10606
10605
|
}
|
|
10607
10606
|
/** Represents an individual person.
|
|
10608
10607
|
*/
|
|
@@ -10611,7 +10610,7 @@ declare class Person extends Object$1 {
|
|
|
10611
10610
|
/**
|
|
10612
10611
|
* The type URI of {@link Person}: `https://www.w3.org/ns/activitystreams#Person`.
|
|
10613
10612
|
*/
|
|
10614
|
-
static get typeId(): URL;
|
|
10613
|
+
static override get typeId(): URL;
|
|
10615
10614
|
/**
|
|
10616
10615
|
* Constructs a new instance of Person with the given values.
|
|
10617
10616
|
* @param values The values to initialize the instance with.
|
|
@@ -10705,7 +10704,7 @@ declare class Person extends Object$1 {
|
|
|
10705
10704
|
* @param options The options to use for cloning.
|
|
10706
10705
|
* @returns The cloned instance.
|
|
10707
10706
|
*/
|
|
10708
|
-
clone(values?: {
|
|
10707
|
+
override clone(values?: {
|
|
10709
10708
|
id?: URL | null;
|
|
10710
10709
|
attachments?: (Object$1 | Link | PropertyValue | URL)[];
|
|
10711
10710
|
attribution?: Application | Group | Organization | Person | Service | URL | null;
|
|
@@ -11159,12 +11158,12 @@ declare class Person extends Object$1 {
|
|
|
11159
11158
|
when `format` is set to `'expand'`.
|
|
11160
11159
|
* @returns The JSON-LD representation of this object.
|
|
11161
11160
|
*/
|
|
11162
|
-
toJsonLd(options?: {
|
|
11161
|
+
override toJsonLd(options?: {
|
|
11163
11162
|
format?: "compact" | "expand";
|
|
11164
11163
|
contextLoader?: DocumentLoader$1;
|
|
11165
11164
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
11166
11165
|
}): Promise<unknown>;
|
|
11167
|
-
protected isCompactable(): boolean;
|
|
11166
|
+
protected override isCompactable(): boolean;
|
|
11168
11167
|
/**
|
|
11169
11168
|
* Converts a JSON-LD structure to an object of this type.
|
|
11170
11169
|
* @param json The JSON-LD structure to convert.
|
|
@@ -11176,7 +11175,7 @@ declare class Person extends Object$1 {
|
|
|
11176
11175
|
* @returns The object of this type.
|
|
11177
11176
|
* @throws {TypeError} If the given `json` is invalid.
|
|
11178
11177
|
*/
|
|
11179
|
-
static fromJsonLd(json: unknown, options?: {
|
|
11178
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
11180
11179
|
documentLoader?: DocumentLoader$1;
|
|
11181
11180
|
contextLoader?: DocumentLoader$1;
|
|
11182
11181
|
tracerProvider?: TracerProvider;
|
|
@@ -11188,7 +11187,7 @@ declare class Person extends Object$1 {
|
|
|
11188
11187
|
tracerProvider?: TracerProvider;
|
|
11189
11188
|
baseUrl?: URL;
|
|
11190
11189
|
}): Promise<Person>;
|
|
11191
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
11190
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
11192
11191
|
}
|
|
11193
11192
|
/** Represents a logical or physical location. See [5.3 Representing
|
|
11194
11193
|
* Places](https://www.w3.org/TR/activitystreams-vocabulary/#places)
|
|
@@ -11199,7 +11198,7 @@ declare class Place extends Object$1 {
|
|
|
11199
11198
|
/**
|
|
11200
11199
|
* The type URI of {@link Place}: `https://www.w3.org/ns/activitystreams#Place`.
|
|
11201
11200
|
*/
|
|
11202
|
-
static get typeId(): URL;
|
|
11201
|
+
static override get typeId(): URL;
|
|
11203
11202
|
/**
|
|
11204
11203
|
* Constructs a new instance of Place with the given values.
|
|
11205
11204
|
* @param values The values to initialize the instance with.
|
|
@@ -11272,7 +11271,7 @@ declare class Place extends Object$1 {
|
|
|
11272
11271
|
* @param options The options to use for cloning.
|
|
11273
11272
|
* @returns The cloned instance.
|
|
11274
11273
|
*/
|
|
11275
|
-
clone(values?: {
|
|
11274
|
+
override clone(values?: {
|
|
11276
11275
|
id?: URL | null;
|
|
11277
11276
|
attachments?: (Object$1 | Link | PropertyValue | URL)[];
|
|
11278
11277
|
attribution?: Application | Group | Organization | Person | Service | URL | null;
|
|
@@ -11368,12 +11367,12 @@ declare class Place extends Object$1 {
|
|
|
11368
11367
|
when `format` is set to `'expand'`.
|
|
11369
11368
|
* @returns The JSON-LD representation of this object.
|
|
11370
11369
|
*/
|
|
11371
|
-
toJsonLd(options?: {
|
|
11370
|
+
override toJsonLd(options?: {
|
|
11372
11371
|
format?: "compact" | "expand";
|
|
11373
11372
|
contextLoader?: DocumentLoader$1;
|
|
11374
11373
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
11375
11374
|
}): Promise<unknown>;
|
|
11376
|
-
protected isCompactable(): boolean;
|
|
11375
|
+
protected override isCompactable(): boolean;
|
|
11377
11376
|
/**
|
|
11378
11377
|
* Converts a JSON-LD structure to an object of this type.
|
|
11379
11378
|
* @param json The JSON-LD structure to convert.
|
|
@@ -11385,7 +11384,7 @@ declare class Place extends Object$1 {
|
|
|
11385
11384
|
* @returns The object of this type.
|
|
11386
11385
|
* @throws {TypeError} If the given `json` is invalid.
|
|
11387
11386
|
*/
|
|
11388
|
-
static fromJsonLd(json: unknown, options?: {
|
|
11387
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
11389
11388
|
documentLoader?: DocumentLoader$1;
|
|
11390
11389
|
contextLoader?: DocumentLoader$1;
|
|
11391
11390
|
tracerProvider?: TracerProvider;
|
|
@@ -11397,7 +11396,7 @@ declare class Place extends Object$1 {
|
|
|
11397
11396
|
tracerProvider?: TracerProvider;
|
|
11398
11397
|
baseUrl?: URL;
|
|
11399
11398
|
}): Promise<Place>;
|
|
11400
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
11399
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
11401
11400
|
}
|
|
11402
11401
|
/** A {@link Profile} is a content object that describes another {@link Object},
|
|
11403
11402
|
* typically used to describe [Actor
|
|
@@ -11410,7 +11409,7 @@ declare class Profile extends Object$1 {
|
|
|
11410
11409
|
/**
|
|
11411
11410
|
* The type URI of {@link Profile}: `https://www.w3.org/ns/activitystreams#Profile`.
|
|
11412
11411
|
*/
|
|
11413
|
-
static get typeId(): URL;
|
|
11412
|
+
static override get typeId(): URL;
|
|
11414
11413
|
/**
|
|
11415
11414
|
* Constructs a new instance of Profile with the given values.
|
|
11416
11415
|
* @param values The values to initialize the instance with.
|
|
@@ -11478,7 +11477,7 @@ declare class Profile extends Object$1 {
|
|
|
11478
11477
|
* @param options The options to use for cloning.
|
|
11479
11478
|
* @returns The cloned instance.
|
|
11480
11479
|
*/
|
|
11481
|
-
clone(values?: {
|
|
11480
|
+
override clone(values?: {
|
|
11482
11481
|
id?: URL | null;
|
|
11483
11482
|
attachments?: (Object$1 | Link | PropertyValue | URL)[];
|
|
11484
11483
|
attribution?: Application | Group | Organization | Person | Service | URL | null;
|
|
@@ -11559,12 +11558,12 @@ declare class Profile extends Object$1 {
|
|
|
11559
11558
|
when `format` is set to `'expand'`.
|
|
11560
11559
|
* @returns The JSON-LD representation of this object.
|
|
11561
11560
|
*/
|
|
11562
|
-
toJsonLd(options?: {
|
|
11561
|
+
override toJsonLd(options?: {
|
|
11563
11562
|
format?: "compact" | "expand";
|
|
11564
11563
|
contextLoader?: DocumentLoader$1;
|
|
11565
11564
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
11566
11565
|
}): Promise<unknown>;
|
|
11567
|
-
protected isCompactable(): boolean;
|
|
11566
|
+
protected override isCompactable(): boolean;
|
|
11568
11567
|
/**
|
|
11569
11568
|
* Converts a JSON-LD structure to an object of this type.
|
|
11570
11569
|
* @param json The JSON-LD structure to convert.
|
|
@@ -11576,7 +11575,7 @@ declare class Profile extends Object$1 {
|
|
|
11576
11575
|
* @returns The object of this type.
|
|
11577
11576
|
* @throws {TypeError} If the given `json` is invalid.
|
|
11578
11577
|
*/
|
|
11579
|
-
static fromJsonLd(json: unknown, options?: {
|
|
11578
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
11580
11579
|
documentLoader?: DocumentLoader$1;
|
|
11581
11580
|
contextLoader?: DocumentLoader$1;
|
|
11582
11581
|
tracerProvider?: TracerProvider;
|
|
@@ -11588,7 +11587,7 @@ declare class Profile extends Object$1 {
|
|
|
11588
11587
|
tracerProvider?: TracerProvider;
|
|
11589
11588
|
baseUrl?: URL;
|
|
11590
11589
|
}): Promise<Profile>;
|
|
11591
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
11590
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
11592
11591
|
}
|
|
11593
11592
|
/** Represents a question being asked. Question objects are an extension of
|
|
11594
11593
|
* {@link IntransitiveActivity}. That is, the Question object is an Activity,
|
|
@@ -11604,7 +11603,7 @@ declare class Question extends IntransitiveActivity {
|
|
|
11604
11603
|
/**
|
|
11605
11604
|
* The type URI of {@link Question}: `https://www.w3.org/ns/activitystreams#Question`.
|
|
11606
11605
|
*/
|
|
11607
|
-
static get typeId(): URL;
|
|
11606
|
+
static override get typeId(): URL;
|
|
11608
11607
|
/**
|
|
11609
11608
|
* Constructs a new instance of Question with the given values.
|
|
11610
11609
|
* @param values The values to initialize the instance with.
|
|
@@ -11688,7 +11687,7 @@ declare class Question extends IntransitiveActivity {
|
|
|
11688
11687
|
* @param options The options to use for cloning.
|
|
11689
11688
|
* @returns The cloned instance.
|
|
11690
11689
|
*/
|
|
11691
|
-
clone(values?: {
|
|
11690
|
+
override clone(values?: {
|
|
11692
11691
|
id?: URL | null;
|
|
11693
11692
|
attachments?: (Object$1 | Link | PropertyValue | URL)[];
|
|
11694
11693
|
attribution?: Application | Group | Organization | Person | Service | URL | null;
|
|
@@ -11823,12 +11822,12 @@ declare class Question extends IntransitiveActivity {
|
|
|
11823
11822
|
when `format` is set to `'expand'`.
|
|
11824
11823
|
* @returns The JSON-LD representation of this object.
|
|
11825
11824
|
*/
|
|
11826
|
-
toJsonLd(options?: {
|
|
11825
|
+
override toJsonLd(options?: {
|
|
11827
11826
|
format?: "compact" | "expand";
|
|
11828
11827
|
contextLoader?: DocumentLoader$1;
|
|
11829
11828
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
11830
11829
|
}): Promise<unknown>;
|
|
11831
|
-
protected isCompactable(): boolean;
|
|
11830
|
+
protected override isCompactable(): boolean;
|
|
11832
11831
|
/**
|
|
11833
11832
|
* Converts a JSON-LD structure to an object of this type.
|
|
11834
11833
|
* @param json The JSON-LD structure to convert.
|
|
@@ -11840,7 +11839,7 @@ declare class Question extends IntransitiveActivity {
|
|
|
11840
11839
|
* @returns The object of this type.
|
|
11841
11840
|
* @throws {TypeError} If the given `json` is invalid.
|
|
11842
11841
|
*/
|
|
11843
|
-
static fromJsonLd(json: unknown, options?: {
|
|
11842
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
11844
11843
|
documentLoader?: DocumentLoader$1;
|
|
11845
11844
|
contextLoader?: DocumentLoader$1;
|
|
11846
11845
|
tracerProvider?: TracerProvider;
|
|
@@ -11852,7 +11851,7 @@ declare class Question extends IntransitiveActivity {
|
|
|
11852
11851
|
tracerProvider?: TracerProvider;
|
|
11853
11852
|
baseUrl?: URL;
|
|
11854
11853
|
}): Promise<Question>;
|
|
11855
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
11854
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
11856
11855
|
}
|
|
11857
11856
|
/** Indicates that the `actor` has read the `object`.
|
|
11858
11857
|
*/
|
|
@@ -11860,7 +11859,7 @@ declare class Read extends Activity {
|
|
|
11860
11859
|
/**
|
|
11861
11860
|
* The type URI of {@link Read}: `https://www.w3.org/ns/activitystreams#Read`.
|
|
11862
11861
|
*/
|
|
11863
|
-
static get typeId(): URL;
|
|
11862
|
+
static override get typeId(): URL;
|
|
11864
11863
|
/**
|
|
11865
11864
|
* Constructs a new instance of Read with the given values.
|
|
11866
11865
|
* @param values The values to initialize the instance with.
|
|
@@ -11939,7 +11938,7 @@ declare class Read extends Activity {
|
|
|
11939
11938
|
* @param options The options to use for cloning.
|
|
11940
11939
|
* @returns The cloned instance.
|
|
11941
11940
|
*/
|
|
11942
|
-
clone(values?: {
|
|
11941
|
+
override clone(values?: {
|
|
11943
11942
|
id?: URL | null;
|
|
11944
11943
|
attachments?: (Object$1 | Link | PropertyValue | URL)[];
|
|
11945
11944
|
attribution?: Application | Group | Organization | Person | Service | URL | null;
|
|
@@ -12015,12 +12014,12 @@ declare class Read extends Activity {
|
|
|
12015
12014
|
when `format` is set to `'expand'`.
|
|
12016
12015
|
* @returns The JSON-LD representation of this object.
|
|
12017
12016
|
*/
|
|
12018
|
-
toJsonLd(options?: {
|
|
12017
|
+
override toJsonLd(options?: {
|
|
12019
12018
|
format?: "compact" | "expand";
|
|
12020
12019
|
contextLoader?: DocumentLoader$1;
|
|
12021
12020
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
12022
12021
|
}): Promise<unknown>;
|
|
12023
|
-
protected isCompactable(): boolean;
|
|
12022
|
+
protected override isCompactable(): boolean;
|
|
12024
12023
|
/**
|
|
12025
12024
|
* Converts a JSON-LD structure to an object of this type.
|
|
12026
12025
|
* @param json The JSON-LD structure to convert.
|
|
@@ -12032,7 +12031,7 @@ declare class Read extends Activity {
|
|
|
12032
12031
|
* @returns The object of this type.
|
|
12033
12032
|
* @throws {TypeError} If the given `json` is invalid.
|
|
12034
12033
|
*/
|
|
12035
|
-
static fromJsonLd(json: unknown, options?: {
|
|
12034
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
12036
12035
|
documentLoader?: DocumentLoader$1;
|
|
12037
12036
|
contextLoader?: DocumentLoader$1;
|
|
12038
12037
|
tracerProvider?: TracerProvider;
|
|
@@ -12044,7 +12043,7 @@ declare class Read extends Activity {
|
|
|
12044
12043
|
tracerProvider?: TracerProvider;
|
|
12045
12044
|
baseUrl?: URL;
|
|
12046
12045
|
}): Promise<Read>;
|
|
12047
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
12046
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
12048
12047
|
}
|
|
12049
12048
|
/** Indicates that the `actor` is rejecting the `object`. The `target` and
|
|
12050
12049
|
* `origin` typically have no defined meaning.
|
|
@@ -12053,7 +12052,7 @@ declare class Reject extends Activity {
|
|
|
12053
12052
|
/**
|
|
12054
12053
|
* The type URI of {@link Reject}: `https://www.w3.org/ns/activitystreams#Reject`.
|
|
12055
12054
|
*/
|
|
12056
|
-
static get typeId(): URL;
|
|
12055
|
+
static override get typeId(): URL;
|
|
12057
12056
|
/**
|
|
12058
12057
|
* Constructs a new instance of Reject with the given values.
|
|
12059
12058
|
* @param values The values to initialize the instance with.
|
|
@@ -12132,7 +12131,7 @@ declare class Reject extends Activity {
|
|
|
12132
12131
|
* @param options The options to use for cloning.
|
|
12133
12132
|
* @returns The cloned instance.
|
|
12134
12133
|
*/
|
|
12135
|
-
clone(values?: {
|
|
12134
|
+
override clone(values?: {
|
|
12136
12135
|
id?: URL | null;
|
|
12137
12136
|
attachments?: (Object$1 | Link | PropertyValue | URL)[];
|
|
12138
12137
|
attribution?: Application | Group | Organization | Person | Service | URL | null;
|
|
@@ -12208,12 +12207,12 @@ declare class Reject extends Activity {
|
|
|
12208
12207
|
when `format` is set to `'expand'`.
|
|
12209
12208
|
* @returns The JSON-LD representation of this object.
|
|
12210
12209
|
*/
|
|
12211
|
-
toJsonLd(options?: {
|
|
12210
|
+
override toJsonLd(options?: {
|
|
12212
12211
|
format?: "compact" | "expand";
|
|
12213
12212
|
contextLoader?: DocumentLoader$1;
|
|
12214
12213
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
12215
12214
|
}): Promise<unknown>;
|
|
12216
|
-
protected isCompactable(): boolean;
|
|
12215
|
+
protected override isCompactable(): boolean;
|
|
12217
12216
|
/**
|
|
12218
12217
|
* Converts a JSON-LD structure to an object of this type.
|
|
12219
12218
|
* @param json The JSON-LD structure to convert.
|
|
@@ -12225,7 +12224,7 @@ declare class Reject extends Activity {
|
|
|
12225
12224
|
* @returns The object of this type.
|
|
12226
12225
|
* @throws {TypeError} If the given `json` is invalid.
|
|
12227
12226
|
*/
|
|
12228
|
-
static fromJsonLd(json: unknown, options?: {
|
|
12227
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
12229
12228
|
documentLoader?: DocumentLoader$1;
|
|
12230
12229
|
contextLoader?: DocumentLoader$1;
|
|
12231
12230
|
tracerProvider?: TracerProvider;
|
|
@@ -12237,7 +12236,7 @@ declare class Reject extends Activity {
|
|
|
12237
12236
|
tracerProvider?: TracerProvider;
|
|
12238
12237
|
baseUrl?: URL;
|
|
12239
12238
|
}): Promise<Reject>;
|
|
12240
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
12239
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
12241
12240
|
}
|
|
12242
12241
|
/** Describes a relationship between two individuals.
|
|
12243
12242
|
* The {@link Relationship.subject} and {@link Relationship.object} properties
|
|
@@ -12252,7 +12251,7 @@ declare class Relationship extends Object$1 {
|
|
|
12252
12251
|
/**
|
|
12253
12252
|
* The type URI of {@link Relationship}: `https://www.w3.org/ns/activitystreams#Relationship`.
|
|
12254
12253
|
*/
|
|
12255
|
-
static get typeId(): URL;
|
|
12254
|
+
static override get typeId(): URL;
|
|
12256
12255
|
/**
|
|
12257
12256
|
* Constructs a new instance of Relationship with the given values.
|
|
12258
12257
|
* @param values The values to initialize the instance with.
|
|
@@ -12324,7 +12323,7 @@ declare class Relationship extends Object$1 {
|
|
|
12324
12323
|
* @param options The options to use for cloning.
|
|
12325
12324
|
* @returns The cloned instance.
|
|
12326
12325
|
*/
|
|
12327
|
-
clone(values?: {
|
|
12326
|
+
override clone(values?: {
|
|
12328
12327
|
id?: URL | null;
|
|
12329
12328
|
attachments?: (Object$1 | Link | PropertyValue | URL)[];
|
|
12330
12329
|
attribution?: Application | Group | Organization | Person | Service | URL | null;
|
|
@@ -12475,12 +12474,12 @@ declare class Relationship extends Object$1 {
|
|
|
12475
12474
|
when `format` is set to `'expand'`.
|
|
12476
12475
|
* @returns The JSON-LD representation of this object.
|
|
12477
12476
|
*/
|
|
12478
|
-
toJsonLd(options?: {
|
|
12477
|
+
override toJsonLd(options?: {
|
|
12479
12478
|
format?: "compact" | "expand";
|
|
12480
12479
|
contextLoader?: DocumentLoader$1;
|
|
12481
12480
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
12482
12481
|
}): Promise<unknown>;
|
|
12483
|
-
protected isCompactable(): boolean;
|
|
12482
|
+
protected override isCompactable(): boolean;
|
|
12484
12483
|
/**
|
|
12485
12484
|
* Converts a JSON-LD structure to an object of this type.
|
|
12486
12485
|
* @param json The JSON-LD structure to convert.
|
|
@@ -12492,7 +12491,7 @@ declare class Relationship extends Object$1 {
|
|
|
12492
12491
|
* @returns The object of this type.
|
|
12493
12492
|
* @throws {TypeError} If the given `json` is invalid.
|
|
12494
12493
|
*/
|
|
12495
|
-
static fromJsonLd(json: unknown, options?: {
|
|
12494
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
12496
12495
|
documentLoader?: DocumentLoader$1;
|
|
12497
12496
|
contextLoader?: DocumentLoader$1;
|
|
12498
12497
|
tracerProvider?: TracerProvider;
|
|
@@ -12504,7 +12503,7 @@ declare class Relationship extends Object$1 {
|
|
|
12504
12503
|
tracerProvider?: TracerProvider;
|
|
12505
12504
|
baseUrl?: URL;
|
|
12506
12505
|
}): Promise<Relationship>;
|
|
12507
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
12506
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
12508
12507
|
}
|
|
12509
12508
|
/** Indicates that the `actor` is removing the `object`. If specified,
|
|
12510
12509
|
* the `origin` indicates the context from which the `object` is being removed.
|
|
@@ -12513,7 +12512,7 @@ declare class Remove extends Activity {
|
|
|
12513
12512
|
/**
|
|
12514
12513
|
* The type URI of {@link Remove}: `https://www.w3.org/ns/activitystreams#Remove`.
|
|
12515
12514
|
*/
|
|
12516
|
-
static get typeId(): URL;
|
|
12515
|
+
static override get typeId(): URL;
|
|
12517
12516
|
/**
|
|
12518
12517
|
* Constructs a new instance of Remove with the given values.
|
|
12519
12518
|
* @param values The values to initialize the instance with.
|
|
@@ -12592,7 +12591,7 @@ declare class Remove extends Activity {
|
|
|
12592
12591
|
* @param options The options to use for cloning.
|
|
12593
12592
|
* @returns The cloned instance.
|
|
12594
12593
|
*/
|
|
12595
|
-
clone(values?: {
|
|
12594
|
+
override clone(values?: {
|
|
12596
12595
|
id?: URL | null;
|
|
12597
12596
|
attachments?: (Object$1 | Link | PropertyValue | URL)[];
|
|
12598
12597
|
attribution?: Application | Group | Organization | Person | Service | URL | null;
|
|
@@ -12668,12 +12667,12 @@ declare class Remove extends Activity {
|
|
|
12668
12667
|
when `format` is set to `'expand'`.
|
|
12669
12668
|
* @returns The JSON-LD representation of this object.
|
|
12670
12669
|
*/
|
|
12671
|
-
toJsonLd(options?: {
|
|
12670
|
+
override toJsonLd(options?: {
|
|
12672
12671
|
format?: "compact" | "expand";
|
|
12673
12672
|
contextLoader?: DocumentLoader$1;
|
|
12674
12673
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
12675
12674
|
}): Promise<unknown>;
|
|
12676
|
-
protected isCompactable(): boolean;
|
|
12675
|
+
protected override isCompactable(): boolean;
|
|
12677
12676
|
/**
|
|
12678
12677
|
* Converts a JSON-LD structure to an object of this type.
|
|
12679
12678
|
* @param json The JSON-LD structure to convert.
|
|
@@ -12685,7 +12684,7 @@ declare class Remove extends Activity {
|
|
|
12685
12684
|
* @returns The object of this type.
|
|
12686
12685
|
* @throws {TypeError} If the given `json` is invalid.
|
|
12687
12686
|
*/
|
|
12688
|
-
static fromJsonLd(json: unknown, options?: {
|
|
12687
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
12689
12688
|
documentLoader?: DocumentLoader$1;
|
|
12690
12689
|
contextLoader?: DocumentLoader$1;
|
|
12691
12690
|
tracerProvider?: TracerProvider;
|
|
@@ -12697,7 +12696,7 @@ declare class Remove extends Activity {
|
|
|
12697
12696
|
tracerProvider?: TracerProvider;
|
|
12698
12697
|
baseUrl?: URL;
|
|
12699
12698
|
}): Promise<Remove>;
|
|
12700
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
12699
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
12701
12700
|
}
|
|
12702
12701
|
/** Represents a service of any kind.
|
|
12703
12702
|
*/
|
|
@@ -12706,7 +12705,7 @@ declare class Service extends Object$1 {
|
|
|
12706
12705
|
/**
|
|
12707
12706
|
* The type URI of {@link Service}: `https://www.w3.org/ns/activitystreams#Service`.
|
|
12708
12707
|
*/
|
|
12709
|
-
static get typeId(): URL;
|
|
12708
|
+
static override get typeId(): URL;
|
|
12710
12709
|
/**
|
|
12711
12710
|
* Constructs a new instance of Service with the given values.
|
|
12712
12711
|
* @param values The values to initialize the instance with.
|
|
@@ -12800,7 +12799,7 @@ declare class Service extends Object$1 {
|
|
|
12800
12799
|
* @param options The options to use for cloning.
|
|
12801
12800
|
* @returns The cloned instance.
|
|
12802
12801
|
*/
|
|
12803
|
-
clone(values?: {
|
|
12802
|
+
override clone(values?: {
|
|
12804
12803
|
id?: URL | null;
|
|
12805
12804
|
attachments?: (Object$1 | Link | PropertyValue | URL)[];
|
|
12806
12805
|
attribution?: Application | Group | Organization | Person | Service | URL | null;
|
|
@@ -13254,12 +13253,12 @@ declare class Service extends Object$1 {
|
|
|
13254
13253
|
when `format` is set to `'expand'`.
|
|
13255
13254
|
* @returns The JSON-LD representation of this object.
|
|
13256
13255
|
*/
|
|
13257
|
-
toJsonLd(options?: {
|
|
13256
|
+
override toJsonLd(options?: {
|
|
13258
13257
|
format?: "compact" | "expand";
|
|
13259
13258
|
contextLoader?: DocumentLoader$1;
|
|
13260
13259
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
13261
13260
|
}): Promise<unknown>;
|
|
13262
|
-
protected isCompactable(): boolean;
|
|
13261
|
+
protected override isCompactable(): boolean;
|
|
13263
13262
|
/**
|
|
13264
13263
|
* Converts a JSON-LD structure to an object of this type.
|
|
13265
13264
|
* @param json The JSON-LD structure to convert.
|
|
@@ -13271,7 +13270,7 @@ declare class Service extends Object$1 {
|
|
|
13271
13270
|
* @returns The object of this type.
|
|
13272
13271
|
* @throws {TypeError} If the given `json` is invalid.
|
|
13273
13272
|
*/
|
|
13274
|
-
static fromJsonLd(json: unknown, options?: {
|
|
13273
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
13275
13274
|
documentLoader?: DocumentLoader$1;
|
|
13276
13275
|
contextLoader?: DocumentLoader$1;
|
|
13277
13276
|
tracerProvider?: TracerProvider;
|
|
@@ -13283,7 +13282,7 @@ declare class Service extends Object$1 {
|
|
|
13283
13282
|
tracerProvider?: TracerProvider;
|
|
13284
13283
|
baseUrl?: URL;
|
|
13285
13284
|
}): Promise<Service>;
|
|
13286
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
13285
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
13287
13286
|
}
|
|
13288
13287
|
/** Contents of {@link Object}'s `source`.
|
|
13289
13288
|
*/
|
|
@@ -13391,7 +13390,7 @@ declare class TentativeAccept extends Accept {
|
|
|
13391
13390
|
/**
|
|
13392
13391
|
* The type URI of {@link TentativeAccept}: `https://www.w3.org/ns/activitystreams#TentativeAccept`.
|
|
13393
13392
|
*/
|
|
13394
|
-
static get typeId(): URL;
|
|
13393
|
+
static override get typeId(): URL;
|
|
13395
13394
|
/**
|
|
13396
13395
|
* Constructs a new instance of TentativeAccept with the given values.
|
|
13397
13396
|
* @param values The values to initialize the instance with.
|
|
@@ -13470,7 +13469,7 @@ declare class TentativeAccept extends Accept {
|
|
|
13470
13469
|
* @param options The options to use for cloning.
|
|
13471
13470
|
* @returns The cloned instance.
|
|
13472
13471
|
*/
|
|
13473
|
-
clone(values?: {
|
|
13472
|
+
override clone(values?: {
|
|
13474
13473
|
id?: URL | null;
|
|
13475
13474
|
attachments?: (Object$1 | Link | PropertyValue | URL)[];
|
|
13476
13475
|
attribution?: Application | Group | Organization | Person | Service | URL | null;
|
|
@@ -13546,12 +13545,12 @@ declare class TentativeAccept extends Accept {
|
|
|
13546
13545
|
when `format` is set to `'expand'`.
|
|
13547
13546
|
* @returns The JSON-LD representation of this object.
|
|
13548
13547
|
*/
|
|
13549
|
-
toJsonLd(options?: {
|
|
13548
|
+
override toJsonLd(options?: {
|
|
13550
13549
|
format?: "compact" | "expand";
|
|
13551
13550
|
contextLoader?: DocumentLoader$1;
|
|
13552
13551
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
13553
13552
|
}): Promise<unknown>;
|
|
13554
|
-
protected isCompactable(): boolean;
|
|
13553
|
+
protected override isCompactable(): boolean;
|
|
13555
13554
|
/**
|
|
13556
13555
|
* Converts a JSON-LD structure to an object of this type.
|
|
13557
13556
|
* @param json The JSON-LD structure to convert.
|
|
@@ -13563,7 +13562,7 @@ declare class TentativeAccept extends Accept {
|
|
|
13563
13562
|
* @returns The object of this type.
|
|
13564
13563
|
* @throws {TypeError} If the given `json` is invalid.
|
|
13565
13564
|
*/
|
|
13566
|
-
static fromJsonLd(json: unknown, options?: {
|
|
13565
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
13567
13566
|
documentLoader?: DocumentLoader$1;
|
|
13568
13567
|
contextLoader?: DocumentLoader$1;
|
|
13569
13568
|
tracerProvider?: TracerProvider;
|
|
@@ -13575,7 +13574,7 @@ declare class TentativeAccept extends Accept {
|
|
|
13575
13574
|
tracerProvider?: TracerProvider;
|
|
13576
13575
|
baseUrl?: URL;
|
|
13577
13576
|
}): Promise<TentativeAccept>;
|
|
13578
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
13577
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
13579
13578
|
}
|
|
13580
13579
|
/** A specialization of {@link Reject} in which
|
|
13581
13580
|
* the rejection is considered tentative.
|
|
@@ -13584,7 +13583,7 @@ declare class TentativeReject extends Reject {
|
|
|
13584
13583
|
/**
|
|
13585
13584
|
* The type URI of {@link TentativeReject}: `https://www.w3.org/ns/activitystreams#TentativeReject`.
|
|
13586
13585
|
*/
|
|
13587
|
-
static get typeId(): URL;
|
|
13586
|
+
static override get typeId(): URL;
|
|
13588
13587
|
/**
|
|
13589
13588
|
* Constructs a new instance of TentativeReject with the given values.
|
|
13590
13589
|
* @param values The values to initialize the instance with.
|
|
@@ -13663,7 +13662,7 @@ declare class TentativeReject extends Reject {
|
|
|
13663
13662
|
* @param options The options to use for cloning.
|
|
13664
13663
|
* @returns The cloned instance.
|
|
13665
13664
|
*/
|
|
13666
|
-
clone(values?: {
|
|
13665
|
+
override clone(values?: {
|
|
13667
13666
|
id?: URL | null;
|
|
13668
13667
|
attachments?: (Object$1 | Link | PropertyValue | URL)[];
|
|
13669
13668
|
attribution?: Application | Group | Organization | Person | Service | URL | null;
|
|
@@ -13739,12 +13738,12 @@ declare class TentativeReject extends Reject {
|
|
|
13739
13738
|
when `format` is set to `'expand'`.
|
|
13740
13739
|
* @returns The JSON-LD representation of this object.
|
|
13741
13740
|
*/
|
|
13742
|
-
toJsonLd(options?: {
|
|
13741
|
+
override toJsonLd(options?: {
|
|
13743
13742
|
format?: "compact" | "expand";
|
|
13744
13743
|
contextLoader?: DocumentLoader$1;
|
|
13745
13744
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
13746
13745
|
}): Promise<unknown>;
|
|
13747
|
-
protected isCompactable(): boolean;
|
|
13746
|
+
protected override isCompactable(): boolean;
|
|
13748
13747
|
/**
|
|
13749
13748
|
* Converts a JSON-LD structure to an object of this type.
|
|
13750
13749
|
* @param json The JSON-LD structure to convert.
|
|
@@ -13756,7 +13755,7 @@ declare class TentativeReject extends Reject {
|
|
|
13756
13755
|
* @returns The object of this type.
|
|
13757
13756
|
* @throws {TypeError} If the given `json` is invalid.
|
|
13758
13757
|
*/
|
|
13759
|
-
static fromJsonLd(json: unknown, options?: {
|
|
13758
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
13760
13759
|
documentLoader?: DocumentLoader$1;
|
|
13761
13760
|
contextLoader?: DocumentLoader$1;
|
|
13762
13761
|
tracerProvider?: TracerProvider;
|
|
@@ -13768,7 +13767,7 @@ declare class TentativeReject extends Reject {
|
|
|
13768
13767
|
tracerProvider?: TracerProvider;
|
|
13769
13768
|
baseUrl?: URL;
|
|
13770
13769
|
}): Promise<TentativeReject>;
|
|
13771
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
13770
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
13772
13771
|
}
|
|
13773
13772
|
/** A `Tombstone` represents a content object that has been deleted.
|
|
13774
13773
|
* It can be used in {@link Collection}s to signify that there used to be
|
|
@@ -13779,7 +13778,7 @@ declare class Tombstone extends Object$1 {
|
|
|
13779
13778
|
/**
|
|
13780
13779
|
* The type URI of {@link Tombstone}: `https://www.w3.org/ns/activitystreams#Tombstone`.
|
|
13781
13780
|
*/
|
|
13782
|
-
static get typeId(): URL;
|
|
13781
|
+
static override get typeId(): URL;
|
|
13783
13782
|
/**
|
|
13784
13783
|
* Constructs a new instance of Tombstone with the given values.
|
|
13785
13784
|
* @param values The values to initialize the instance with.
|
|
@@ -13847,7 +13846,7 @@ declare class Tombstone extends Object$1 {
|
|
|
13847
13846
|
* @param options The options to use for cloning.
|
|
13848
13847
|
* @returns The cloned instance.
|
|
13849
13848
|
*/
|
|
13850
|
-
clone(values?: {
|
|
13849
|
+
override clone(values?: {
|
|
13851
13850
|
id?: URL | null;
|
|
13852
13851
|
attachments?: (Object$1 | Link | PropertyValue | URL)[];
|
|
13853
13852
|
attribution?: Application | Group | Organization | Person | Service | URL | null;
|
|
@@ -13916,12 +13915,12 @@ declare class Tombstone extends Object$1 {
|
|
|
13916
13915
|
when `format` is set to `'expand'`.
|
|
13917
13916
|
* @returns The JSON-LD representation of this object.
|
|
13918
13917
|
*/
|
|
13919
|
-
toJsonLd(options?: {
|
|
13918
|
+
override toJsonLd(options?: {
|
|
13920
13919
|
format?: "compact" | "expand";
|
|
13921
13920
|
contextLoader?: DocumentLoader$1;
|
|
13922
13921
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
13923
13922
|
}): Promise<unknown>;
|
|
13924
|
-
protected isCompactable(): boolean;
|
|
13923
|
+
protected override isCompactable(): boolean;
|
|
13925
13924
|
/**
|
|
13926
13925
|
* Converts a JSON-LD structure to an object of this type.
|
|
13927
13926
|
* @param json The JSON-LD structure to convert.
|
|
@@ -13933,7 +13932,7 @@ declare class Tombstone extends Object$1 {
|
|
|
13933
13932
|
* @returns The object of this type.
|
|
13934
13933
|
* @throws {TypeError} If the given `json` is invalid.
|
|
13935
13934
|
*/
|
|
13936
|
-
static fromJsonLd(json: unknown, options?: {
|
|
13935
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
13937
13936
|
documentLoader?: DocumentLoader$1;
|
|
13938
13937
|
contextLoader?: DocumentLoader$1;
|
|
13939
13938
|
tracerProvider?: TracerProvider;
|
|
@@ -13945,7 +13944,7 @@ declare class Tombstone extends Object$1 {
|
|
|
13945
13944
|
tracerProvider?: TracerProvider;
|
|
13946
13945
|
baseUrl?: URL;
|
|
13947
13946
|
}): Promise<Tombstone>;
|
|
13948
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
13947
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
13949
13948
|
}
|
|
13950
13949
|
/** Indicates that the `actor` is traveling to `target` from `origin`.
|
|
13951
13950
|
* `Travel` is an `IntransitiveObject` whose `actor` specifies the direct object.
|
|
@@ -13956,7 +13955,7 @@ declare class Travel extends IntransitiveActivity {
|
|
|
13956
13955
|
/**
|
|
13957
13956
|
* The type URI of {@link Travel}: `https://www.w3.org/ns/activitystreams#Travel`.
|
|
13958
13957
|
*/
|
|
13959
|
-
static get typeId(): URL;
|
|
13958
|
+
static override get typeId(): URL;
|
|
13960
13959
|
/**
|
|
13961
13960
|
* Constructs a new instance of Travel with the given values.
|
|
13962
13961
|
* @param values The values to initialize the instance with.
|
|
@@ -14035,7 +14034,7 @@ declare class Travel extends IntransitiveActivity {
|
|
|
14035
14034
|
* @param options The options to use for cloning.
|
|
14036
14035
|
* @returns The cloned instance.
|
|
14037
14036
|
*/
|
|
14038
|
-
clone(values?: {
|
|
14037
|
+
override clone(values?: {
|
|
14039
14038
|
id?: URL | null;
|
|
14040
14039
|
attachments?: (Object$1 | Link | PropertyValue | URL)[];
|
|
14041
14040
|
attribution?: Application | Group | Organization | Person | Service | URL | null;
|
|
@@ -14111,12 +14110,12 @@ declare class Travel extends IntransitiveActivity {
|
|
|
14111
14110
|
when `format` is set to `'expand'`.
|
|
14112
14111
|
* @returns The JSON-LD representation of this object.
|
|
14113
14112
|
*/
|
|
14114
|
-
toJsonLd(options?: {
|
|
14113
|
+
override toJsonLd(options?: {
|
|
14115
14114
|
format?: "compact" | "expand";
|
|
14116
14115
|
contextLoader?: DocumentLoader$1;
|
|
14117
14116
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
14118
14117
|
}): Promise<unknown>;
|
|
14119
|
-
protected isCompactable(): boolean;
|
|
14118
|
+
protected override isCompactable(): boolean;
|
|
14120
14119
|
/**
|
|
14121
14120
|
* Converts a JSON-LD structure to an object of this type.
|
|
14122
14121
|
* @param json The JSON-LD structure to convert.
|
|
@@ -14128,7 +14127,7 @@ declare class Travel extends IntransitiveActivity {
|
|
|
14128
14127
|
* @returns The object of this type.
|
|
14129
14128
|
* @throws {TypeError} If the given `json` is invalid.
|
|
14130
14129
|
*/
|
|
14131
|
-
static fromJsonLd(json: unknown, options?: {
|
|
14130
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
14132
14131
|
documentLoader?: DocumentLoader$1;
|
|
14133
14132
|
contextLoader?: DocumentLoader$1;
|
|
14134
14133
|
tracerProvider?: TracerProvider;
|
|
@@ -14140,7 +14139,7 @@ declare class Travel extends IntransitiveActivity {
|
|
|
14140
14139
|
tracerProvider?: TracerProvider;
|
|
14141
14140
|
baseUrl?: URL;
|
|
14142
14141
|
}): Promise<Travel>;
|
|
14143
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
14142
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
14144
14143
|
}
|
|
14145
14144
|
/** Indicates that the `actor` is undoing the `object`. In most cases,
|
|
14146
14145
|
* the `object` will be an {@link Activity} describing some previously performed
|
|
@@ -14154,7 +14153,7 @@ declare class Undo extends Activity {
|
|
|
14154
14153
|
/**
|
|
14155
14154
|
* The type URI of {@link Undo}: `https://www.w3.org/ns/activitystreams#Undo`.
|
|
14156
14155
|
*/
|
|
14157
|
-
static get typeId(): URL;
|
|
14156
|
+
static override get typeId(): URL;
|
|
14158
14157
|
/**
|
|
14159
14158
|
* Constructs a new instance of Undo with the given values.
|
|
14160
14159
|
* @param values The values to initialize the instance with.
|
|
@@ -14233,7 +14232,7 @@ declare class Undo extends Activity {
|
|
|
14233
14232
|
* @param options The options to use for cloning.
|
|
14234
14233
|
* @returns The cloned instance.
|
|
14235
14234
|
*/
|
|
14236
|
-
clone(values?: {
|
|
14235
|
+
override clone(values?: {
|
|
14237
14236
|
id?: URL | null;
|
|
14238
14237
|
attachments?: (Object$1 | Link | PropertyValue | URL)[];
|
|
14239
14238
|
attribution?: Application | Group | Organization | Person | Service | URL | null;
|
|
@@ -14309,12 +14308,12 @@ declare class Undo extends Activity {
|
|
|
14309
14308
|
when `format` is set to `'expand'`.
|
|
14310
14309
|
* @returns The JSON-LD representation of this object.
|
|
14311
14310
|
*/
|
|
14312
|
-
toJsonLd(options?: {
|
|
14311
|
+
override toJsonLd(options?: {
|
|
14313
14312
|
format?: "compact" | "expand";
|
|
14314
14313
|
contextLoader?: DocumentLoader$1;
|
|
14315
14314
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
14316
14315
|
}): Promise<unknown>;
|
|
14317
|
-
protected isCompactable(): boolean;
|
|
14316
|
+
protected override isCompactable(): boolean;
|
|
14318
14317
|
/**
|
|
14319
14318
|
* Converts a JSON-LD structure to an object of this type.
|
|
14320
14319
|
* @param json The JSON-LD structure to convert.
|
|
@@ -14326,7 +14325,7 @@ declare class Undo extends Activity {
|
|
|
14326
14325
|
* @returns The object of this type.
|
|
14327
14326
|
* @throws {TypeError} If the given `json` is invalid.
|
|
14328
14327
|
*/
|
|
14329
|
-
static fromJsonLd(json: unknown, options?: {
|
|
14328
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
14330
14329
|
documentLoader?: DocumentLoader$1;
|
|
14331
14330
|
contextLoader?: DocumentLoader$1;
|
|
14332
14331
|
tracerProvider?: TracerProvider;
|
|
@@ -14338,7 +14337,7 @@ declare class Undo extends Activity {
|
|
|
14338
14337
|
tracerProvider?: TracerProvider;
|
|
14339
14338
|
baseUrl?: URL;
|
|
14340
14339
|
}): Promise<Undo>;
|
|
14341
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
14340
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
14342
14341
|
}
|
|
14343
14342
|
/** Indicates that the `actor` has updated the `object`. Note, however,
|
|
14344
14343
|
* that this vocabulary does not define a mechanism for describing the actual
|
|
@@ -14350,7 +14349,7 @@ declare class Update extends Activity {
|
|
|
14350
14349
|
/**
|
|
14351
14350
|
* The type URI of {@link Update}: `https://www.w3.org/ns/activitystreams#Update`.
|
|
14352
14351
|
*/
|
|
14353
|
-
static get typeId(): URL;
|
|
14352
|
+
static override get typeId(): URL;
|
|
14354
14353
|
/**
|
|
14355
14354
|
* Constructs a new instance of Update with the given values.
|
|
14356
14355
|
* @param values The values to initialize the instance with.
|
|
@@ -14429,7 +14428,7 @@ declare class Update extends Activity {
|
|
|
14429
14428
|
* @param options The options to use for cloning.
|
|
14430
14429
|
* @returns The cloned instance.
|
|
14431
14430
|
*/
|
|
14432
|
-
clone(values?: {
|
|
14431
|
+
override clone(values?: {
|
|
14433
14432
|
id?: URL | null;
|
|
14434
14433
|
attachments?: (Object$1 | Link | PropertyValue | URL)[];
|
|
14435
14434
|
attribution?: Application | Group | Organization | Person | Service | URL | null;
|
|
@@ -14505,12 +14504,12 @@ declare class Update extends Activity {
|
|
|
14505
14504
|
when `format` is set to `'expand'`.
|
|
14506
14505
|
* @returns The JSON-LD representation of this object.
|
|
14507
14506
|
*/
|
|
14508
|
-
toJsonLd(options?: {
|
|
14507
|
+
override toJsonLd(options?: {
|
|
14509
14508
|
format?: "compact" | "expand";
|
|
14510
14509
|
contextLoader?: DocumentLoader$1;
|
|
14511
14510
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
14512
14511
|
}): Promise<unknown>;
|
|
14513
|
-
protected isCompactable(): boolean;
|
|
14512
|
+
protected override isCompactable(): boolean;
|
|
14514
14513
|
/**
|
|
14515
14514
|
* Converts a JSON-LD structure to an object of this type.
|
|
14516
14515
|
* @param json The JSON-LD structure to convert.
|
|
@@ -14522,7 +14521,7 @@ declare class Update extends Activity {
|
|
|
14522
14521
|
* @returns The object of this type.
|
|
14523
14522
|
* @throws {TypeError} If the given `json` is invalid.
|
|
14524
14523
|
*/
|
|
14525
|
-
static fromJsonLd(json: unknown, options?: {
|
|
14524
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
14526
14525
|
documentLoader?: DocumentLoader$1;
|
|
14527
14526
|
contextLoader?: DocumentLoader$1;
|
|
14528
14527
|
tracerProvider?: TracerProvider;
|
|
@@ -14534,7 +14533,7 @@ declare class Update extends Activity {
|
|
|
14534
14533
|
tracerProvider?: TracerProvider;
|
|
14535
14534
|
baseUrl?: URL;
|
|
14536
14535
|
}): Promise<Update>;
|
|
14537
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
14536
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
14538
14537
|
}
|
|
14539
14538
|
/** Represents a video document of any kind.
|
|
14540
14539
|
*/
|
|
@@ -14542,7 +14541,7 @@ declare class Video extends Document {
|
|
|
14542
14541
|
/**
|
|
14543
14542
|
* The type URI of {@link Video}: `https://www.w3.org/ns/activitystreams#Video`.
|
|
14544
14543
|
*/
|
|
14545
|
-
static get typeId(): URL;
|
|
14544
|
+
static override get typeId(): URL;
|
|
14546
14545
|
/**
|
|
14547
14546
|
* Constructs a new instance of Video with the given values.
|
|
14548
14547
|
* @param values The values to initialize the instance with.
|
|
@@ -14611,7 +14610,7 @@ declare class Video extends Document {
|
|
|
14611
14610
|
* @param options The options to use for cloning.
|
|
14612
14611
|
* @returns The cloned instance.
|
|
14613
14612
|
*/
|
|
14614
|
-
clone(values?: {
|
|
14613
|
+
override clone(values?: {
|
|
14615
14614
|
id?: URL | null;
|
|
14616
14615
|
attachments?: (Object$1 | Link | PropertyValue | URL)[];
|
|
14617
14616
|
attribution?: Application | Group | Organization | Person | Service | URL | null;
|
|
@@ -14677,12 +14676,12 @@ declare class Video extends Document {
|
|
|
14677
14676
|
when `format` is set to `'expand'`.
|
|
14678
14677
|
* @returns The JSON-LD representation of this object.
|
|
14679
14678
|
*/
|
|
14680
|
-
toJsonLd(options?: {
|
|
14679
|
+
override toJsonLd(options?: {
|
|
14681
14680
|
format?: "compact" | "expand";
|
|
14682
14681
|
contextLoader?: DocumentLoader$1;
|
|
14683
14682
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
14684
14683
|
}): Promise<unknown>;
|
|
14685
|
-
protected isCompactable(): boolean;
|
|
14684
|
+
protected override isCompactable(): boolean;
|
|
14686
14685
|
/**
|
|
14687
14686
|
* Converts a JSON-LD structure to an object of this type.
|
|
14688
14687
|
* @param json The JSON-LD structure to convert.
|
|
@@ -14694,7 +14693,7 @@ declare class Video extends Document {
|
|
|
14694
14693
|
* @returns The object of this type.
|
|
14695
14694
|
* @throws {TypeError} If the given `json` is invalid.
|
|
14696
14695
|
*/
|
|
14697
|
-
static fromJsonLd(json: unknown, options?: {
|
|
14696
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
14698
14697
|
documentLoader?: DocumentLoader$1;
|
|
14699
14698
|
contextLoader?: DocumentLoader$1;
|
|
14700
14699
|
tracerProvider?: TracerProvider;
|
|
@@ -14706,7 +14705,7 @@ declare class Video extends Document {
|
|
|
14706
14705
|
tracerProvider?: TracerProvider;
|
|
14707
14706
|
baseUrl?: URL;
|
|
14708
14707
|
}): Promise<Video>;
|
|
14709
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
14708
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
14710
14709
|
}
|
|
14711
14710
|
/** Indicates that the `actor` has viewed the object.
|
|
14712
14711
|
*/
|
|
@@ -14714,7 +14713,7 @@ declare class View extends Activity {
|
|
|
14714
14713
|
/**
|
|
14715
14714
|
* The type URI of {@link View}: `https://www.w3.org/ns/activitystreams#View`.
|
|
14716
14715
|
*/
|
|
14717
|
-
static get typeId(): URL;
|
|
14716
|
+
static override get typeId(): URL;
|
|
14718
14717
|
/**
|
|
14719
14718
|
* Constructs a new instance of View with the given values.
|
|
14720
14719
|
* @param values The values to initialize the instance with.
|
|
@@ -14793,7 +14792,7 @@ declare class View extends Activity {
|
|
|
14793
14792
|
* @param options The options to use for cloning.
|
|
14794
14793
|
* @returns The cloned instance.
|
|
14795
14794
|
*/
|
|
14796
|
-
clone(values?: {
|
|
14795
|
+
override clone(values?: {
|
|
14797
14796
|
id?: URL | null;
|
|
14798
14797
|
attachments?: (Object$1 | Link | PropertyValue | URL)[];
|
|
14799
14798
|
attribution?: Application | Group | Organization | Person | Service | URL | null;
|
|
@@ -14869,12 +14868,12 @@ declare class View extends Activity {
|
|
|
14869
14868
|
when `format` is set to `'expand'`.
|
|
14870
14869
|
* @returns The JSON-LD representation of this object.
|
|
14871
14870
|
*/
|
|
14872
|
-
toJsonLd(options?: {
|
|
14871
|
+
override toJsonLd(options?: {
|
|
14873
14872
|
format?: "compact" | "expand";
|
|
14874
14873
|
contextLoader?: DocumentLoader$1;
|
|
14875
14874
|
context?: string | Record<string, string> | (string | Record<string, string>)[];
|
|
14876
14875
|
}): Promise<unknown>;
|
|
14877
|
-
protected isCompactable(): boolean;
|
|
14876
|
+
protected override isCompactable(): boolean;
|
|
14878
14877
|
/**
|
|
14879
14878
|
* Converts a JSON-LD structure to an object of this type.
|
|
14880
14879
|
* @param json The JSON-LD structure to convert.
|
|
@@ -14886,7 +14885,7 @@ declare class View extends Activity {
|
|
|
14886
14885
|
* @returns The object of this type.
|
|
14887
14886
|
* @throws {TypeError} If the given `json` is invalid.
|
|
14888
14887
|
*/
|
|
14889
|
-
static fromJsonLd(json: unknown, options?: {
|
|
14888
|
+
static override fromJsonLd(json: unknown, options?: {
|
|
14890
14889
|
documentLoader?: DocumentLoader$1;
|
|
14891
14890
|
contextLoader?: DocumentLoader$1;
|
|
14892
14891
|
tracerProvider?: TracerProvider;
|
|
@@ -14898,7 +14897,7 @@ declare class View extends Activity {
|
|
|
14898
14897
|
tracerProvider?: TracerProvider;
|
|
14899
14898
|
baseUrl?: URL;
|
|
14900
14899
|
}): Promise<View>;
|
|
14901
|
-
protected _getCustomInspectProxy(): Record<string, unknown>;
|
|
14900
|
+
protected override _getCustomInspectProxy(): Record<string, unknown>;
|
|
14902
14901
|
}
|
|
14903
14902
|
//#endregion
|
|
14904
14903
|
//#region src/actor.d.ts
|
|
@@ -15326,4 +15325,4 @@ declare function getTypeId(object: Object$1 | Link | null): URL | null;
|
|
|
15326
15325
|
*/
|
|
15327
15326
|
declare function getTypeId(object: Object$1 | Link | null | undefined): URL | null | undefined;
|
|
15328
15327
|
//#endregion
|
|
15329
|
-
export { Accept, Activity, Actor, ActorTypeName, Add, Announce, Application, Arrive, Article, Audio, Block, ChatMessage, Collection, CollectionPage, Create, CryptographicKey, DataIntegrityProof, Delete, DidService, Dislike, Document, DocumentLoader, Emoji, EmojiReact, Endpoints, Event, Export, FediverseHandle, Flag, Follow, GetActorHandleOptions, GetUserAgentOptions, Group, Hashtag, Ignore, Image, IntransitiveActivity, Invite, Join, LanguageString, Leave, Like, Link, Listen, LookupObjectOptions, Mention, Move, Multikey, NormalizeActorHandleOptions, Note, Object$1 as Object, Offer, OrderedCollection, OrderedCollectionPage, Organization, PUBLIC_COLLECTION, Page, Person, Place, Profile, PropertyValue, Question, Read, Recipient, Reject, Relationship, RemoteDocument, Remove, Service, Source, TentativeAccept, TentativeReject, Tombstone, Travel, TraverseCollectionOptions, Undo, Update, Video, View, getActorClassByTypeName, getActorHandle, getActorTypeName, getTypeId, isActor, isFediverseHandle, lookupObject, normalizeActorHandle, parseFediverseHandle, toAcctUrl, traverseCollection };
|
|
15328
|
+
export { Accept, Activity, Actor, ActorTypeName, Add, Announce, Application, Arrive, Article, Audio, Block, ChatMessage, Collection, CollectionPage, Create, CryptographicKey, DataIntegrityProof, Delete, DidService, Dislike, Document, type DocumentLoader, Emoji, EmojiReact, Endpoints, Event, Export, FediverseHandle, Flag, Follow, GetActorHandleOptions, type GetUserAgentOptions, Group, Hashtag, Ignore, Image, IntransitiveActivity, Invite, Join, LanguageString, Leave, Like, Link, Listen, LookupObjectOptions, Mention, Move, Multikey, NormalizeActorHandleOptions, Note, Object$1 as Object, Offer, OrderedCollection, OrderedCollectionPage, Organization, PUBLIC_COLLECTION, Page, Person, Place, Profile, PropertyValue, Question, Read, Recipient, Reject, Relationship, type RemoteDocument, Remove, Service, Source, TentativeAccept, TentativeReject, Tombstone, Travel, TraverseCollectionOptions, Undo, Update, Video, View, getActorClassByTypeName, getActorHandle, getActorTypeName, getTypeId, isActor, isFediverseHandle, lookupObject, normalizeActorHandle, parseFediverseHandle, toAcctUrl, traverseCollection };
|