@fedify/vocab 2.1.0-dev.405 → 2.1.0-dev.408
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/actor.test.js +2 -2
- package/dist/{deno-DZyeG0tp.js → deno-C1T-ELP0.js} +1 -1
- package/dist/endpoints.yaml +1 -0
- package/dist/lookup.test.js +2 -2
- package/dist/mod.cjs +529 -533
- package/dist/mod.d.cts +4002 -4002
- package/dist/mod.d.ts +4002 -4002
- package/dist/mod.js +529 -533
- package/dist/source.yaml +1 -0
- package/dist/type.test.js +1 -1
- package/dist/{vocab-BoHbeM38.js → vocab-DNa6QysH.js} +529 -533
- package/dist/vocab.test.js +260 -2
- package/package.json +4 -4
- package/src/endpoints.yaml +1 -0
- package/src/source.yaml +1 -0
- package/src/vocab.test.ts +404 -10
- package/tsdown.config.ts +1 -2
package/dist/mod.js
CHANGED
|
@@ -11,7 +11,7 @@ import { delay } from "es-toolkit";
|
|
|
11
11
|
|
|
12
12
|
//#region deno.json
|
|
13
13
|
var name = "@fedify/vocab";
|
|
14
|
-
var version = "2.1.0-dev.
|
|
14
|
+
var version = "2.1.0-dev.408+5c3c9d78";
|
|
15
15
|
var license = "MIT";
|
|
16
16
|
var exports = { ".": "./src/mod.ts" };
|
|
17
17
|
var description = "Vocabularies library for @fedify/fedify";
|
|
@@ -5799,14 +5799,14 @@ var Object$1 = class Object$1 {
|
|
|
5799
5799
|
if (_42rPnotok1ivQ2RNCKNbeFJgx8b8_proof.length > 1 || !("proof" in proxy) && _42rPnotok1ivQ2RNCKNbeFJgx8b8_proof.length > 0) proxy.proofs = _42rPnotok1ivQ2RNCKNbeFJgx8b8_proof;
|
|
5800
5800
|
return proxy;
|
|
5801
5801
|
}
|
|
5802
|
-
|
|
5803
|
-
|
|
5804
|
-
|
|
5805
|
-
|
|
5806
|
-
|
|
5807
|
-
|
|
5808
|
-
|
|
5809
|
-
|
|
5802
|
+
};
|
|
5803
|
+
Object$1.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
5804
|
+
const proxy = this._getCustomInspectProxy();
|
|
5805
|
+
return "Object " + inspect(proxy, options);
|
|
5806
|
+
};
|
|
5807
|
+
Object$1.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
5808
|
+
const proxy = this._getCustomInspectProxy();
|
|
5809
|
+
return "Object " + inspect(proxy, options);
|
|
5810
5810
|
};
|
|
5811
5811
|
/** Represents a custom emoji.
|
|
5812
5812
|
*/
|
|
@@ -5971,14 +5971,14 @@ var Emoji = class Emoji extends Object$1 {
|
|
|
5971
5971
|
const proxy = super._getCustomInspectProxy();
|
|
5972
5972
|
return proxy;
|
|
5973
5973
|
}
|
|
5974
|
-
|
|
5975
|
-
|
|
5976
|
-
|
|
5977
|
-
|
|
5978
|
-
|
|
5979
|
-
|
|
5980
|
-
|
|
5981
|
-
|
|
5974
|
+
};
|
|
5975
|
+
Emoji.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
5976
|
+
const proxy = this._getCustomInspectProxy();
|
|
5977
|
+
return "Emoji " + inspect(proxy, options);
|
|
5978
|
+
};
|
|
5979
|
+
Emoji.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
5980
|
+
const proxy = this._getCustomInspectProxy();
|
|
5981
|
+
return "Emoji " + inspect(proxy, options);
|
|
5982
5982
|
};
|
|
5983
5983
|
/** `ChatMessage`s are the messages sent in 1-on-1 chats. They are similar to
|
|
5984
5984
|
* {@link Note}s, but the addressing is done by having a single AP actor in
|
|
@@ -6232,14 +6232,14 @@ var ChatMessage = class ChatMessage extends Object$1 {
|
|
|
6232
6232
|
if (_K1zrMQkQjmciFAmGdGLfaDbG925_quoteUrl.length == 1) proxy.quoteUrl = _K1zrMQkQjmciFAmGdGLfaDbG925_quoteUrl[0];
|
|
6233
6233
|
return proxy;
|
|
6234
6234
|
}
|
|
6235
|
-
|
|
6236
|
-
|
|
6237
|
-
|
|
6238
|
-
|
|
6239
|
-
|
|
6240
|
-
|
|
6241
|
-
|
|
6242
|
-
|
|
6235
|
+
};
|
|
6236
|
+
ChatMessage.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
6237
|
+
const proxy = this._getCustomInspectProxy();
|
|
6238
|
+
return "ChatMessage " + inspect(proxy, options);
|
|
6239
|
+
};
|
|
6240
|
+
ChatMessage.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
6241
|
+
const proxy = this._getCustomInspectProxy();
|
|
6242
|
+
return "ChatMessage " + inspect(proxy, options);
|
|
6243
6243
|
};
|
|
6244
6244
|
/** An Activity is a subtype of {@link Object} that describes some form of action
|
|
6245
6245
|
* that may happen, is currently happening, or has already happened.
|
|
@@ -7835,14 +7835,14 @@ var Activity = class Activity extends Object$1 {
|
|
|
7835
7835
|
if (_3c5t2x7DYRo2shwTxpkd4kYSS5WQ_instrument.length > 1 || !("instrument" in proxy) && _3c5t2x7DYRo2shwTxpkd4kYSS5WQ_instrument.length > 0) proxy.instruments = _3c5t2x7DYRo2shwTxpkd4kYSS5WQ_instrument;
|
|
7836
7836
|
return proxy;
|
|
7837
7837
|
}
|
|
7838
|
-
|
|
7839
|
-
|
|
7840
|
-
|
|
7841
|
-
|
|
7842
|
-
|
|
7843
|
-
|
|
7844
|
-
|
|
7845
|
-
|
|
7838
|
+
};
|
|
7839
|
+
Activity.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
7840
|
+
const proxy = this._getCustomInspectProxy();
|
|
7841
|
+
return "Activity " + inspect(proxy, options);
|
|
7842
|
+
};
|
|
7843
|
+
Activity.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
7844
|
+
const proxy = this._getCustomInspectProxy();
|
|
7845
|
+
return "Activity " + inspect(proxy, options);
|
|
7846
7846
|
};
|
|
7847
7847
|
/** Represents an emoji reaction. See also [FEP-c0e0](https://w3id.org/fep/c0e0).
|
|
7848
7848
|
*/
|
|
@@ -7999,14 +7999,14 @@ var EmojiReact = class EmojiReact extends Activity {
|
|
|
7999
7999
|
const proxy = super._getCustomInspectProxy();
|
|
8000
8000
|
return proxy;
|
|
8001
8001
|
}
|
|
8002
|
-
|
|
8003
|
-
|
|
8004
|
-
|
|
8005
|
-
|
|
8006
|
-
|
|
8007
|
-
|
|
8008
|
-
|
|
8009
|
-
|
|
8002
|
+
};
|
|
8003
|
+
EmojiReact.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
8004
|
+
const proxy = this._getCustomInspectProxy();
|
|
8005
|
+
return "EmojiReact " + inspect(proxy, options);
|
|
8006
|
+
};
|
|
8007
|
+
EmojiReact.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
8008
|
+
const proxy = this._getCustomInspectProxy();
|
|
8009
|
+
return "EmojiReact " + inspect(proxy, options);
|
|
8010
8010
|
};
|
|
8011
8011
|
/** A pair of property name and value.
|
|
8012
8012
|
*/
|
|
@@ -8287,14 +8287,14 @@ var PropertyValue = class {
|
|
|
8287
8287
|
if (_2cSy2magg4iZ7zLaG8U7DiJMoCkx_value.length == 1) proxy.value = _2cSy2magg4iZ7zLaG8U7DiJMoCkx_value[0];
|
|
8288
8288
|
return proxy;
|
|
8289
8289
|
}
|
|
8290
|
-
|
|
8291
|
-
|
|
8292
|
-
|
|
8293
|
-
|
|
8294
|
-
|
|
8295
|
-
|
|
8296
|
-
|
|
8297
|
-
|
|
8290
|
+
};
|
|
8291
|
+
PropertyValue.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
8292
|
+
const proxy = this._getCustomInspectProxy();
|
|
8293
|
+
return "PropertyValue " + inspect(proxy, options);
|
|
8294
|
+
};
|
|
8295
|
+
PropertyValue.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
8296
|
+
const proxy = this._getCustomInspectProxy();
|
|
8297
|
+
return "PropertyValue " + inspect(proxy, options);
|
|
8298
8298
|
};
|
|
8299
8299
|
/** Means of communicating or interacting with the DID subject or associated
|
|
8300
8300
|
* entities via one or more service endpoints. Examples include discovery
|
|
@@ -8517,14 +8517,14 @@ var DidService = class {
|
|
|
8517
8517
|
if (_2KM4fetG6FTJ1cphj76rzJ8Dyv7p_serviceEndpoint.length > 1 || !("endpoint" in proxy) && _2KM4fetG6FTJ1cphj76rzJ8Dyv7p_serviceEndpoint.length > 0) proxy.endpoints = _2KM4fetG6FTJ1cphj76rzJ8Dyv7p_serviceEndpoint;
|
|
8518
8518
|
return proxy;
|
|
8519
8519
|
}
|
|
8520
|
-
|
|
8521
|
-
|
|
8522
|
-
|
|
8523
|
-
|
|
8524
|
-
|
|
8525
|
-
|
|
8526
|
-
|
|
8527
|
-
|
|
8520
|
+
};
|
|
8521
|
+
DidService.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
8522
|
+
const proxy = this._getCustomInspectProxy();
|
|
8523
|
+
return "DidService " + inspect(proxy, options);
|
|
8524
|
+
};
|
|
8525
|
+
DidService.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
8526
|
+
const proxy = this._getCustomInspectProxy();
|
|
8527
|
+
return "DidService " + inspect(proxy, options);
|
|
8528
8528
|
};
|
|
8529
8529
|
/** "Export Actor" service.
|
|
8530
8530
|
*/
|
|
@@ -8668,14 +8668,14 @@ var Export = class Export extends DidService {
|
|
|
8668
8668
|
const proxy = super._getCustomInspectProxy();
|
|
8669
8669
|
return proxy;
|
|
8670
8670
|
}
|
|
8671
|
-
|
|
8672
|
-
|
|
8673
|
-
|
|
8674
|
-
|
|
8675
|
-
|
|
8676
|
-
|
|
8677
|
-
|
|
8678
|
-
|
|
8671
|
+
};
|
|
8672
|
+
Export.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
8673
|
+
const proxy = this._getCustomInspectProxy();
|
|
8674
|
+
return "Export " + inspect(proxy, options);
|
|
8675
|
+
};
|
|
8676
|
+
Export.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
8677
|
+
const proxy = this._getCustomInspectProxy();
|
|
8678
|
+
return "Export " + inspect(proxy, options);
|
|
8679
8679
|
};
|
|
8680
8680
|
/** A proof that can be added to any activity or object, allowing recipients to
|
|
8681
8681
|
* verify the identity of the actor and the integrity of the data.
|
|
@@ -9151,14 +9151,14 @@ var DataIntegrityProof = class {
|
|
|
9151
9151
|
if (_3qzP3ukEZoUziK5FEiA1RhU4aqac.length == 1) proxy.created = _3qzP3ukEZoUziK5FEiA1RhU4aqac[0];
|
|
9152
9152
|
return proxy;
|
|
9153
9153
|
}
|
|
9154
|
-
|
|
9155
|
-
|
|
9156
|
-
|
|
9157
|
-
|
|
9158
|
-
|
|
9159
|
-
|
|
9160
|
-
|
|
9161
|
-
|
|
9154
|
+
};
|
|
9155
|
+
DataIntegrityProof.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
9156
|
+
const proxy = this._getCustomInspectProxy();
|
|
9157
|
+
return "DataIntegrityProof " + inspect(proxy, options);
|
|
9158
|
+
};
|
|
9159
|
+
DataIntegrityProof.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
9160
|
+
const proxy = this._getCustomInspectProxy();
|
|
9161
|
+
return "DataIntegrityProof " + inspect(proxy, options);
|
|
9162
9162
|
};
|
|
9163
9163
|
/** A key owned by an actor.
|
|
9164
9164
|
*/
|
|
@@ -9621,14 +9621,14 @@ var CryptographicKey = class {
|
|
|
9621
9621
|
if (_2fE2QMDdg6KFGqa4NEC3TmjApSAD_publicKeyPem.length == 1) proxy.publicKey = _2fE2QMDdg6KFGqa4NEC3TmjApSAD_publicKeyPem[0];
|
|
9622
9622
|
return proxy;
|
|
9623
9623
|
}
|
|
9624
|
-
|
|
9625
|
-
|
|
9626
|
-
|
|
9627
|
-
|
|
9628
|
-
|
|
9629
|
-
|
|
9630
|
-
|
|
9631
|
-
|
|
9624
|
+
};
|
|
9625
|
+
CryptographicKey.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
9626
|
+
const proxy = this._getCustomInspectProxy();
|
|
9627
|
+
return "CryptographicKey " + inspect(proxy, options);
|
|
9628
|
+
};
|
|
9629
|
+
CryptographicKey.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
9630
|
+
const proxy = this._getCustomInspectProxy();
|
|
9631
|
+
return "CryptographicKey " + inspect(proxy, options);
|
|
9632
9632
|
};
|
|
9633
9633
|
/** Represents a key owned by an actor according to [FEP-521a: Representing
|
|
9634
9634
|
* actor's public keys.][1]
|
|
@@ -10100,14 +10100,14 @@ var Multikey = class {
|
|
|
10100
10100
|
if (_4XLHbsR2gLVWU3NpEqKt9wANzn4F_publicKeyMultibase.length == 1) proxy.publicKey = _4XLHbsR2gLVWU3NpEqKt9wANzn4F_publicKeyMultibase[0];
|
|
10101
10101
|
return proxy;
|
|
10102
10102
|
}
|
|
10103
|
-
|
|
10104
|
-
|
|
10105
|
-
|
|
10106
|
-
|
|
10107
|
-
|
|
10108
|
-
|
|
10109
|
-
|
|
10110
|
-
|
|
10103
|
+
};
|
|
10104
|
+
Multikey.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
10105
|
+
const proxy = this._getCustomInspectProxy();
|
|
10106
|
+
return "Multikey " + inspect(proxy, options);
|
|
10107
|
+
};
|
|
10108
|
+
Multikey.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
10109
|
+
const proxy = this._getCustomInspectProxy();
|
|
10110
|
+
return "Multikey " + inspect(proxy, options);
|
|
10111
10111
|
};
|
|
10112
10112
|
/** Indicates that the `actor` accepts the `object`. The `target` property can be
|
|
10113
10113
|
* used in certain circumstances to indicate the context into which the `object`
|
|
@@ -10261,14 +10261,14 @@ var Accept = class Accept extends Activity {
|
|
|
10261
10261
|
const proxy = super._getCustomInspectProxy();
|
|
10262
10262
|
return proxy;
|
|
10263
10263
|
}
|
|
10264
|
-
|
|
10265
|
-
|
|
10266
|
-
|
|
10267
|
-
|
|
10268
|
-
|
|
10269
|
-
|
|
10270
|
-
|
|
10271
|
-
|
|
10264
|
+
};
|
|
10265
|
+
Accept.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
10266
|
+
const proxy = this._getCustomInspectProxy();
|
|
10267
|
+
return "Accept " + inspect(proxy, options);
|
|
10268
|
+
};
|
|
10269
|
+
Accept.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
10270
|
+
const proxy = this._getCustomInspectProxy();
|
|
10271
|
+
return "Accept " + inspect(proxy, options);
|
|
10272
10272
|
};
|
|
10273
10273
|
/** Indicates that the `actor` has added the `object` to the `target`.
|
|
10274
10274
|
* If the `target` property is not explicitly specified, the target would need
|
|
@@ -10422,14 +10422,14 @@ var Add = class Add extends Activity {
|
|
|
10422
10422
|
const proxy = super._getCustomInspectProxy();
|
|
10423
10423
|
return proxy;
|
|
10424
10424
|
}
|
|
10425
|
-
|
|
10426
|
-
|
|
10427
|
-
|
|
10428
|
-
|
|
10429
|
-
|
|
10430
|
-
|
|
10431
|
-
|
|
10432
|
-
|
|
10425
|
+
};
|
|
10426
|
+
Add.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
10427
|
+
const proxy = this._getCustomInspectProxy();
|
|
10428
|
+
return "Add " + inspect(proxy, options);
|
|
10429
|
+
};
|
|
10430
|
+
Add.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
10431
|
+
const proxy = this._getCustomInspectProxy();
|
|
10432
|
+
return "Add " + inspect(proxy, options);
|
|
10433
10433
|
};
|
|
10434
10434
|
/** Indicates that the `actor` is calling the `target`'s attention the `object`.
|
|
10435
10435
|
*
|
|
@@ -10601,14 +10601,14 @@ var Announce = class Announce extends Activity {
|
|
|
10601
10601
|
const proxy = super._getCustomInspectProxy();
|
|
10602
10602
|
return proxy;
|
|
10603
10603
|
}
|
|
10604
|
-
|
|
10605
|
-
|
|
10606
|
-
|
|
10607
|
-
|
|
10608
|
-
|
|
10609
|
-
|
|
10610
|
-
|
|
10611
|
-
|
|
10604
|
+
};
|
|
10605
|
+
Announce.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
10606
|
+
const proxy = this._getCustomInspectProxy();
|
|
10607
|
+
return "Announce " + inspect(proxy, options);
|
|
10608
|
+
};
|
|
10609
|
+
Announce.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
10610
|
+
const proxy = this._getCustomInspectProxy();
|
|
10611
|
+
return "Announce " + inspect(proxy, options);
|
|
10612
10612
|
};
|
|
10613
10613
|
/** Describes a software application.
|
|
10614
10614
|
*/
|
|
@@ -13971,14 +13971,14 @@ var Application = class Application extends Object$1 {
|
|
|
13971
13971
|
if (_2xEU4QtkC53RAun67T81Egqt9vmL_isCat.length == 1) proxy.cat = _2xEU4QtkC53RAun67T81Egqt9vmL_isCat[0];
|
|
13972
13972
|
return proxy;
|
|
13973
13973
|
}
|
|
13974
|
-
|
|
13975
|
-
|
|
13976
|
-
|
|
13977
|
-
|
|
13978
|
-
|
|
13979
|
-
|
|
13980
|
-
|
|
13981
|
-
|
|
13974
|
+
};
|
|
13975
|
+
Application.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
13976
|
+
const proxy = this._getCustomInspectProxy();
|
|
13977
|
+
return "Application " + inspect(proxy, options);
|
|
13978
|
+
};
|
|
13979
|
+
Application.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
13980
|
+
const proxy = this._getCustomInspectProxy();
|
|
13981
|
+
return "Application " + inspect(proxy, options);
|
|
13982
13982
|
};
|
|
13983
13983
|
/** Instances of `IntransitiveActivity` are a subtype of {@link Activity}
|
|
13984
13984
|
* representing intransitive actions. The `object` property is therefore
|
|
@@ -14134,14 +14134,14 @@ var IntransitiveActivity = class IntransitiveActivity extends Activity {
|
|
|
14134
14134
|
const proxy = super._getCustomInspectProxy();
|
|
14135
14135
|
return proxy;
|
|
14136
14136
|
}
|
|
14137
|
-
|
|
14138
|
-
|
|
14139
|
-
|
|
14140
|
-
|
|
14141
|
-
|
|
14142
|
-
|
|
14143
|
-
|
|
14144
|
-
|
|
14137
|
+
};
|
|
14138
|
+
IntransitiveActivity.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
14139
|
+
const proxy = this._getCustomInspectProxy();
|
|
14140
|
+
return "IntransitiveActivity " + inspect(proxy, options);
|
|
14141
|
+
};
|
|
14142
|
+
IntransitiveActivity.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
14143
|
+
const proxy = this._getCustomInspectProxy();
|
|
14144
|
+
return "IntransitiveActivity " + inspect(proxy, options);
|
|
14145
14145
|
};
|
|
14146
14146
|
/** An `IntransitiveActivity` that indicates that the `actor` has arrived at the `location`.
|
|
14147
14147
|
* The `origin` can be used to identify the context from which the `actor` originated.
|
|
@@ -14294,14 +14294,14 @@ var Arrive = class Arrive extends IntransitiveActivity {
|
|
|
14294
14294
|
const proxy = super._getCustomInspectProxy();
|
|
14295
14295
|
return proxy;
|
|
14296
14296
|
}
|
|
14297
|
-
|
|
14298
|
-
|
|
14299
|
-
|
|
14300
|
-
|
|
14301
|
-
|
|
14302
|
-
|
|
14303
|
-
|
|
14304
|
-
|
|
14297
|
+
};
|
|
14298
|
+
Arrive.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
14299
|
+
const proxy = this._getCustomInspectProxy();
|
|
14300
|
+
return "Arrive " + inspect(proxy, options);
|
|
14301
|
+
};
|
|
14302
|
+
Arrive.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
14303
|
+
const proxy = this._getCustomInspectProxy();
|
|
14304
|
+
return "Arrive " + inspect(proxy, options);
|
|
14305
14305
|
};
|
|
14306
14306
|
/** Represents any kind of multi-paragraph written work.
|
|
14307
14307
|
*/
|
|
@@ -14553,14 +14553,14 @@ var Article = class Article extends Object$1 {
|
|
|
14553
14553
|
if (_K1zrMQkQjmciFAmGdGLfaDbG925_quoteUrl.length == 1) proxy.quoteUrl = _K1zrMQkQjmciFAmGdGLfaDbG925_quoteUrl[0];
|
|
14554
14554
|
return proxy;
|
|
14555
14555
|
}
|
|
14556
|
-
|
|
14557
|
-
|
|
14558
|
-
|
|
14559
|
-
|
|
14560
|
-
|
|
14561
|
-
|
|
14562
|
-
|
|
14563
|
-
|
|
14556
|
+
};
|
|
14557
|
+
Article.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
14558
|
+
const proxy = this._getCustomInspectProxy();
|
|
14559
|
+
return "Article " + inspect(proxy, options);
|
|
14560
|
+
};
|
|
14561
|
+
Article.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
14562
|
+
const proxy = this._getCustomInspectProxy();
|
|
14563
|
+
return "Article " + inspect(proxy, options);
|
|
14564
14564
|
};
|
|
14565
14565
|
/** Represents a document of any kind.
|
|
14566
14566
|
*/
|
|
@@ -14811,14 +14811,14 @@ var Document = class Document extends Object$1 {
|
|
|
14811
14811
|
if (_2cGKFeFJMmiNpGZFEF75mCwFQsKb_height.length == 1) proxy.height = _2cGKFeFJMmiNpGZFEF75mCwFQsKb_height[0];
|
|
14812
14812
|
return proxy;
|
|
14813
14813
|
}
|
|
14814
|
-
|
|
14815
|
-
|
|
14816
|
-
|
|
14817
|
-
|
|
14818
|
-
|
|
14819
|
-
|
|
14820
|
-
|
|
14821
|
-
|
|
14814
|
+
};
|
|
14815
|
+
Document.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
14816
|
+
const proxy = this._getCustomInspectProxy();
|
|
14817
|
+
return "Document " + inspect(proxy, options);
|
|
14818
|
+
};
|
|
14819
|
+
Document.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
14820
|
+
const proxy = this._getCustomInspectProxy();
|
|
14821
|
+
return "Document " + inspect(proxy, options);
|
|
14822
14822
|
};
|
|
14823
14823
|
/** Represents an audio document of any kind.
|
|
14824
14824
|
*/
|
|
@@ -14977,14 +14977,14 @@ var Audio = class Audio extends Document {
|
|
|
14977
14977
|
const proxy = super._getCustomInspectProxy();
|
|
14978
14978
|
return proxy;
|
|
14979
14979
|
}
|
|
14980
|
-
|
|
14981
|
-
|
|
14982
|
-
|
|
14983
|
-
|
|
14984
|
-
|
|
14985
|
-
|
|
14986
|
-
|
|
14987
|
-
|
|
14980
|
+
};
|
|
14981
|
+
Audio.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
14982
|
+
const proxy = this._getCustomInspectProxy();
|
|
14983
|
+
return "Audio " + inspect(proxy, options);
|
|
14984
|
+
};
|
|
14985
|
+
Audio.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
14986
|
+
const proxy = this._getCustomInspectProxy();
|
|
14987
|
+
return "Audio " + inspect(proxy, options);
|
|
14988
14988
|
};
|
|
14989
14989
|
/** Indicates that the `actor` is ignoring the `object`. The `target` and
|
|
14990
14990
|
* `origin` typically have no defined meaning.
|
|
@@ -15137,14 +15137,14 @@ var Ignore = class Ignore extends Activity {
|
|
|
15137
15137
|
const proxy = super._getCustomInspectProxy();
|
|
15138
15138
|
return proxy;
|
|
15139
15139
|
}
|
|
15140
|
-
|
|
15141
|
-
|
|
15142
|
-
|
|
15143
|
-
|
|
15144
|
-
|
|
15145
|
-
|
|
15146
|
-
|
|
15147
|
-
|
|
15140
|
+
};
|
|
15141
|
+
Ignore.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
15142
|
+
const proxy = this._getCustomInspectProxy();
|
|
15143
|
+
return "Ignore " + inspect(proxy, options);
|
|
15144
|
+
};
|
|
15145
|
+
Ignore.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
15146
|
+
const proxy = this._getCustomInspectProxy();
|
|
15147
|
+
return "Ignore " + inspect(proxy, options);
|
|
15148
15148
|
};
|
|
15149
15149
|
/** Indicates that the `actor` is blocking the `object`. Blocking is a stronger
|
|
15150
15150
|
* form of {@link Ignore}. The typical use is to support social systems that
|
|
@@ -15298,14 +15298,14 @@ var Block = class Block extends Ignore {
|
|
|
15298
15298
|
const proxy = super._getCustomInspectProxy();
|
|
15299
15299
|
return proxy;
|
|
15300
15300
|
}
|
|
15301
|
-
|
|
15302
|
-
|
|
15303
|
-
|
|
15304
|
-
|
|
15305
|
-
|
|
15306
|
-
|
|
15307
|
-
|
|
15308
|
-
|
|
15301
|
+
};
|
|
15302
|
+
Block.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
15303
|
+
const proxy = this._getCustomInspectProxy();
|
|
15304
|
+
return "Block " + inspect(proxy, options);
|
|
15305
|
+
};
|
|
15306
|
+
Block.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
15307
|
+
const proxy = this._getCustomInspectProxy();
|
|
15308
|
+
return "Block " + inspect(proxy, options);
|
|
15309
15309
|
};
|
|
15310
15310
|
/** A `Collection` is a subtype of {@link Object} that represents ordered or
|
|
15311
15311
|
* unordered sets of {@link Object} or {@link Link} instances.
|
|
@@ -17704,14 +17704,14 @@ var Collection = class Collection extends Object$1 {
|
|
|
17704
17704
|
if (_2bsySzmT3qEZcrnoe3tZ5xBjXSju_likedOf.length == 1) proxy.likedOf = _2bsySzmT3qEZcrnoe3tZ5xBjXSju_likedOf[0];
|
|
17705
17705
|
return proxy;
|
|
17706
17706
|
}
|
|
17707
|
-
|
|
17708
|
-
|
|
17709
|
-
|
|
17710
|
-
|
|
17711
|
-
|
|
17712
|
-
|
|
17713
|
-
|
|
17714
|
-
|
|
17707
|
+
};
|
|
17708
|
+
Collection.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
17709
|
+
const proxy = this._getCustomInspectProxy();
|
|
17710
|
+
return "Collection " + inspect(proxy, options);
|
|
17711
|
+
};
|
|
17712
|
+
Collection.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
17713
|
+
const proxy = this._getCustomInspectProxy();
|
|
17714
|
+
return "Collection " + inspect(proxy, options);
|
|
17715
17715
|
};
|
|
17716
17716
|
/** Used to represent distinct subsets of items from a `Collection`.
|
|
17717
17717
|
* Refer to the Activity Streams 2.0 Core for a complete description of
|
|
@@ -18430,14 +18430,14 @@ var CollectionPage = class CollectionPage extends Collection {
|
|
|
18430
18430
|
if (_3b8yG8tDNzQFFEnWhCc13G8eHooA_prev.length == 1) proxy.prev = _3b8yG8tDNzQFFEnWhCc13G8eHooA_prev[0];
|
|
18431
18431
|
return proxy;
|
|
18432
18432
|
}
|
|
18433
|
-
|
|
18434
|
-
|
|
18435
|
-
|
|
18436
|
-
|
|
18437
|
-
|
|
18438
|
-
|
|
18439
|
-
|
|
18440
|
-
|
|
18433
|
+
};
|
|
18434
|
+
CollectionPage.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
18435
|
+
const proxy = this._getCustomInspectProxy();
|
|
18436
|
+
return "CollectionPage " + inspect(proxy, options);
|
|
18437
|
+
};
|
|
18438
|
+
CollectionPage.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
18439
|
+
const proxy = this._getCustomInspectProxy();
|
|
18440
|
+
return "CollectionPage " + inspect(proxy, options);
|
|
18441
18441
|
};
|
|
18442
18442
|
/** Indicates that the `actor` has created the `object`.
|
|
18443
18443
|
*/
|
|
@@ -18608,14 +18608,14 @@ var Create = class Create extends Activity {
|
|
|
18608
18608
|
const proxy = super._getCustomInspectProxy();
|
|
18609
18609
|
return proxy;
|
|
18610
18610
|
}
|
|
18611
|
-
|
|
18612
|
-
|
|
18613
|
-
|
|
18614
|
-
|
|
18615
|
-
|
|
18616
|
-
|
|
18617
|
-
|
|
18618
|
-
|
|
18611
|
+
};
|
|
18612
|
+
Create.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
18613
|
+
const proxy = this._getCustomInspectProxy();
|
|
18614
|
+
return "Create " + inspect(proxy, options);
|
|
18615
|
+
};
|
|
18616
|
+
Create.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
18617
|
+
const proxy = this._getCustomInspectProxy();
|
|
18618
|
+
return "Create " + inspect(proxy, options);
|
|
18619
18619
|
};
|
|
18620
18620
|
/** Indicates that the `actor` has deleted the `object`. If specified,
|
|
18621
18621
|
* the `origin` indicates the context from which the `object` was deleted.
|
|
@@ -18783,14 +18783,14 @@ var Delete = class Delete extends Activity {
|
|
|
18783
18783
|
const proxy = super._getCustomInspectProxy();
|
|
18784
18784
|
return proxy;
|
|
18785
18785
|
}
|
|
18786
|
-
|
|
18787
|
-
|
|
18788
|
-
|
|
18789
|
-
|
|
18790
|
-
|
|
18791
|
-
|
|
18792
|
-
|
|
18793
|
-
|
|
18786
|
+
};
|
|
18787
|
+
Delete.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
18788
|
+
const proxy = this._getCustomInspectProxy();
|
|
18789
|
+
return "Delete " + inspect(proxy, options);
|
|
18790
|
+
};
|
|
18791
|
+
Delete.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
18792
|
+
const proxy = this._getCustomInspectProxy();
|
|
18793
|
+
return "Delete " + inspect(proxy, options);
|
|
18794
18794
|
};
|
|
18795
18795
|
/** Indicates that the `actor` dislikes the `object`.
|
|
18796
18796
|
*/
|
|
@@ -18945,14 +18945,14 @@ var Dislike = class Dislike extends Activity {
|
|
|
18945
18945
|
const proxy = super._getCustomInspectProxy();
|
|
18946
18946
|
return proxy;
|
|
18947
18947
|
}
|
|
18948
|
-
|
|
18949
|
-
|
|
18950
|
-
|
|
18951
|
-
|
|
18952
|
-
|
|
18953
|
-
|
|
18954
|
-
|
|
18955
|
-
|
|
18948
|
+
};
|
|
18949
|
+
Dislike.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
18950
|
+
const proxy = this._getCustomInspectProxy();
|
|
18951
|
+
return "Dislike " + inspect(proxy, options);
|
|
18952
|
+
};
|
|
18953
|
+
Dislike.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
18954
|
+
const proxy = this._getCustomInspectProxy();
|
|
18955
|
+
return "Dislike " + inspect(proxy, options);
|
|
18956
18956
|
};
|
|
18957
18957
|
/** Contents of {@link Actor}'s `endpoints`.
|
|
18958
18958
|
*/
|
|
@@ -19174,7 +19174,6 @@ var Endpoints = class {
|
|
|
19174
19174
|
compactItems.push(item);
|
|
19175
19175
|
}
|
|
19176
19176
|
if (compactItems.length > 0) result["sharedInbox"] = compactItems.length > 1 ? compactItems : compactItems[0];
|
|
19177
|
-
result["type"] = "as:Endpoints";
|
|
19178
19177
|
if (this.id != null) result["id"] = this.id.href;
|
|
19179
19178
|
result["@context"] = "https://www.w3.org/ns/activitystreams";
|
|
19180
19179
|
return result;
|
|
@@ -19235,7 +19234,6 @@ var Endpoints = class {
|
|
|
19235
19234
|
const propValue = array;
|
|
19236
19235
|
values["https://www.w3.org/ns/activitystreams#sharedInbox"] = propValue;
|
|
19237
19236
|
}
|
|
19238
|
-
values["@type"] = ["https://www.w3.org/ns/activitystreams#Endpoints"];
|
|
19239
19237
|
if (this.id != null) values["@id"] = this.id.href;
|
|
19240
19238
|
if (options.format === "expand") return await jsonld.expand(values, { documentLoader: options.contextLoader });
|
|
19241
19239
|
const docContext = options.context ?? "https://www.w3.org/ns/activitystreams";
|
|
@@ -19390,14 +19388,14 @@ var Endpoints = class {
|
|
|
19390
19388
|
if (_3JprUSDLVqqX4dwHRi37qGZZCRCc_sharedInbox.length == 1) proxy.sharedInbox = _3JprUSDLVqqX4dwHRi37qGZZCRCc_sharedInbox[0];
|
|
19391
19389
|
return proxy;
|
|
19392
19390
|
}
|
|
19393
|
-
|
|
19394
|
-
|
|
19395
|
-
|
|
19396
|
-
|
|
19397
|
-
|
|
19398
|
-
|
|
19399
|
-
|
|
19400
|
-
|
|
19391
|
+
};
|
|
19392
|
+
Endpoints.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
19393
|
+
const proxy = this._getCustomInspectProxy();
|
|
19394
|
+
return "Endpoints " + inspect(proxy, options);
|
|
19395
|
+
};
|
|
19396
|
+
Endpoints.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
19397
|
+
const proxy = this._getCustomInspectProxy();
|
|
19398
|
+
return "Endpoints " + inspect(proxy, options);
|
|
19401
19399
|
};
|
|
19402
19400
|
/** Represents any kind of event.
|
|
19403
19401
|
*/
|
|
@@ -19556,14 +19554,14 @@ var Event = class Event extends Object$1 {
|
|
|
19556
19554
|
const proxy = super._getCustomInspectProxy();
|
|
19557
19555
|
return proxy;
|
|
19558
19556
|
}
|
|
19559
|
-
|
|
19560
|
-
|
|
19561
|
-
|
|
19562
|
-
|
|
19563
|
-
|
|
19564
|
-
|
|
19565
|
-
|
|
19566
|
-
|
|
19557
|
+
};
|
|
19558
|
+
Event.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
19559
|
+
const proxy = this._getCustomInspectProxy();
|
|
19560
|
+
return "Event " + inspect(proxy, options);
|
|
19561
|
+
};
|
|
19562
|
+
Event.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
19563
|
+
const proxy = this._getCustomInspectProxy();
|
|
19564
|
+
return "Event " + inspect(proxy, options);
|
|
19567
19565
|
};
|
|
19568
19566
|
/** Indicates that the `actor` is "flagging" the `object`. Flagging is defined
|
|
19569
19567
|
* in the sense common to many social platforms as reporting content as being
|
|
@@ -19716,14 +19714,14 @@ var Flag = class Flag extends Activity {
|
|
|
19716
19714
|
const proxy = super._getCustomInspectProxy();
|
|
19717
19715
|
return proxy;
|
|
19718
19716
|
}
|
|
19719
|
-
|
|
19720
|
-
|
|
19721
|
-
|
|
19722
|
-
|
|
19723
|
-
|
|
19724
|
-
|
|
19725
|
-
|
|
19726
|
-
|
|
19717
|
+
};
|
|
19718
|
+
Flag.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
19719
|
+
const proxy = this._getCustomInspectProxy();
|
|
19720
|
+
return "Flag " + inspect(proxy, options);
|
|
19721
|
+
};
|
|
19722
|
+
Flag.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
19723
|
+
const proxy = this._getCustomInspectProxy();
|
|
19724
|
+
return "Flag " + inspect(proxy, options);
|
|
19727
19725
|
};
|
|
19728
19726
|
/** Indicates that the `actor` is "following" the `object`. Following is defined
|
|
19729
19727
|
* in the sense typically used within Social systems in which the actor is
|
|
@@ -19880,14 +19878,14 @@ var Follow = class Follow extends Activity {
|
|
|
19880
19878
|
const proxy = super._getCustomInspectProxy();
|
|
19881
19879
|
return proxy;
|
|
19882
19880
|
}
|
|
19883
|
-
|
|
19884
|
-
|
|
19885
|
-
|
|
19886
|
-
|
|
19887
|
-
|
|
19888
|
-
|
|
19889
|
-
|
|
19890
|
-
|
|
19881
|
+
};
|
|
19882
|
+
Follow.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
19883
|
+
const proxy = this._getCustomInspectProxy();
|
|
19884
|
+
return "Follow " + inspect(proxy, options);
|
|
19885
|
+
};
|
|
19886
|
+
Follow.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
19887
|
+
const proxy = this._getCustomInspectProxy();
|
|
19888
|
+
return "Follow " + inspect(proxy, options);
|
|
19891
19889
|
};
|
|
19892
19890
|
/** Represents a formal or informal collective of Actors.
|
|
19893
19891
|
*/
|
|
@@ -23250,14 +23248,14 @@ var Group = class Group extends Object$1 {
|
|
|
23250
23248
|
if (_2xEU4QtkC53RAun67T81Egqt9vmL_isCat.length == 1) proxy.cat = _2xEU4QtkC53RAun67T81Egqt9vmL_isCat[0];
|
|
23251
23249
|
return proxy;
|
|
23252
23250
|
}
|
|
23253
|
-
|
|
23254
|
-
|
|
23255
|
-
|
|
23256
|
-
|
|
23257
|
-
|
|
23258
|
-
|
|
23259
|
-
|
|
23260
|
-
|
|
23251
|
+
};
|
|
23252
|
+
Group.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
23253
|
+
const proxy = this._getCustomInspectProxy();
|
|
23254
|
+
return "Group " + inspect(proxy, options);
|
|
23255
|
+
};
|
|
23256
|
+
Group.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
23257
|
+
const proxy = this._getCustomInspectProxy();
|
|
23258
|
+
return "Group " + inspect(proxy, options);
|
|
23261
23259
|
};
|
|
23262
23260
|
/** A Link is an indirect, qualified reference to a resource identified by a URL.
|
|
23263
23261
|
* The fundamental model for links is established by RFC 5988. Many of the
|
|
@@ -24038,14 +24036,14 @@ var Link = class Link {
|
|
|
24038
24036
|
if (_gCVTegXxWWCw6wWRxa1QF65zusg_preview.length > 1 || !("preview" in proxy) && _gCVTegXxWWCw6wWRxa1QF65zusg_preview.length > 0) proxy.previews = _gCVTegXxWWCw6wWRxa1QF65zusg_preview;
|
|
24039
24037
|
return proxy;
|
|
24040
24038
|
}
|
|
24041
|
-
|
|
24042
|
-
|
|
24043
|
-
|
|
24044
|
-
|
|
24045
|
-
|
|
24046
|
-
|
|
24047
|
-
|
|
24048
|
-
|
|
24039
|
+
};
|
|
24040
|
+
Link.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
24041
|
+
const proxy = this._getCustomInspectProxy();
|
|
24042
|
+
return "Link " + inspect(proxy, options);
|
|
24043
|
+
};
|
|
24044
|
+
Link.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
24045
|
+
const proxy = this._getCustomInspectProxy();
|
|
24046
|
+
return "Link " + inspect(proxy, options);
|
|
24049
24047
|
};
|
|
24050
24048
|
/** A specialized {@link Link} that represents an #hashtag.
|
|
24051
24049
|
*
|
|
@@ -24203,14 +24201,14 @@ var Hashtag = class Hashtag extends Link {
|
|
|
24203
24201
|
const proxy = super._getCustomInspectProxy();
|
|
24204
24202
|
return proxy;
|
|
24205
24203
|
}
|
|
24206
|
-
|
|
24207
|
-
|
|
24208
|
-
|
|
24209
|
-
|
|
24210
|
-
|
|
24211
|
-
|
|
24212
|
-
|
|
24213
|
-
|
|
24204
|
+
};
|
|
24205
|
+
Hashtag.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
24206
|
+
const proxy = this._getCustomInspectProxy();
|
|
24207
|
+
return "Hashtag " + inspect(proxy, options);
|
|
24208
|
+
};
|
|
24209
|
+
Hashtag.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
24210
|
+
const proxy = this._getCustomInspectProxy();
|
|
24211
|
+
return "Hashtag " + inspect(proxy, options);
|
|
24214
24212
|
};
|
|
24215
24213
|
/** An image document of any kind.
|
|
24216
24214
|
*/
|
|
@@ -24369,14 +24367,14 @@ var Image = class Image extends Document {
|
|
|
24369
24367
|
const proxy = super._getCustomInspectProxy();
|
|
24370
24368
|
return proxy;
|
|
24371
24369
|
}
|
|
24372
|
-
|
|
24373
|
-
|
|
24374
|
-
|
|
24375
|
-
|
|
24376
|
-
|
|
24377
|
-
|
|
24378
|
-
|
|
24379
|
-
|
|
24370
|
+
};
|
|
24371
|
+
Image.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
24372
|
+
const proxy = this._getCustomInspectProxy();
|
|
24373
|
+
return "Image " + inspect(proxy, options);
|
|
24374
|
+
};
|
|
24375
|
+
Image.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
24376
|
+
const proxy = this._getCustomInspectProxy();
|
|
24377
|
+
return "Image " + inspect(proxy, options);
|
|
24380
24378
|
};
|
|
24381
24379
|
/** Indicates that the actor is offering the object.
|
|
24382
24380
|
* If specified, the target indicates the entity to which
|
|
@@ -24530,14 +24528,14 @@ var Offer = class Offer extends Activity {
|
|
|
24530
24528
|
const proxy = super._getCustomInspectProxy();
|
|
24531
24529
|
return proxy;
|
|
24532
24530
|
}
|
|
24533
|
-
|
|
24534
|
-
|
|
24535
|
-
|
|
24536
|
-
|
|
24537
|
-
|
|
24538
|
-
|
|
24539
|
-
|
|
24540
|
-
|
|
24531
|
+
};
|
|
24532
|
+
Offer.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
24533
|
+
const proxy = this._getCustomInspectProxy();
|
|
24534
|
+
return "Offer " + inspect(proxy, options);
|
|
24535
|
+
};
|
|
24536
|
+
Offer.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
24537
|
+
const proxy = this._getCustomInspectProxy();
|
|
24538
|
+
return "Offer " + inspect(proxy, options);
|
|
24541
24539
|
};
|
|
24542
24540
|
/** A specialization of `Offer` in which the `actor` is extending an invitation
|
|
24543
24541
|
* for the `object` to the `target`.
|
|
@@ -24689,14 +24687,14 @@ var Invite = class Invite extends Offer {
|
|
|
24689
24687
|
const proxy = super._getCustomInspectProxy();
|
|
24690
24688
|
return proxy;
|
|
24691
24689
|
}
|
|
24692
|
-
|
|
24693
|
-
|
|
24694
|
-
|
|
24695
|
-
|
|
24696
|
-
|
|
24697
|
-
|
|
24698
|
-
|
|
24699
|
-
|
|
24690
|
+
};
|
|
24691
|
+
Invite.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
24692
|
+
const proxy = this._getCustomInspectProxy();
|
|
24693
|
+
return "Invite " + inspect(proxy, options);
|
|
24694
|
+
};
|
|
24695
|
+
Invite.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
24696
|
+
const proxy = this._getCustomInspectProxy();
|
|
24697
|
+
return "Invite " + inspect(proxy, options);
|
|
24700
24698
|
};
|
|
24701
24699
|
/** Indicates that the `actor` has joined the `object`.
|
|
24702
24700
|
* The `target` and `origin` typically have no defined meaning.
|
|
@@ -24848,14 +24846,14 @@ var Join = class Join extends Activity {
|
|
|
24848
24846
|
const proxy = super._getCustomInspectProxy();
|
|
24849
24847
|
return proxy;
|
|
24850
24848
|
}
|
|
24851
|
-
|
|
24852
|
-
|
|
24853
|
-
|
|
24854
|
-
|
|
24855
|
-
|
|
24856
|
-
|
|
24857
|
-
|
|
24858
|
-
|
|
24849
|
+
};
|
|
24850
|
+
Join.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
24851
|
+
const proxy = this._getCustomInspectProxy();
|
|
24852
|
+
return "Join " + inspect(proxy, options);
|
|
24853
|
+
};
|
|
24854
|
+
Join.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
24855
|
+
const proxy = this._getCustomInspectProxy();
|
|
24856
|
+
return "Join " + inspect(proxy, options);
|
|
24859
24857
|
};
|
|
24860
24858
|
/** Indicates that the `actor` has left the `object`.
|
|
24861
24859
|
* The `target` and `origin` typically have no meaning.
|
|
@@ -25007,14 +25005,14 @@ var Leave = class Leave extends Activity {
|
|
|
25007
25005
|
const proxy = super._getCustomInspectProxy();
|
|
25008
25006
|
return proxy;
|
|
25009
25007
|
}
|
|
25010
|
-
|
|
25011
|
-
|
|
25012
|
-
|
|
25013
|
-
|
|
25014
|
-
|
|
25015
|
-
|
|
25016
|
-
|
|
25017
|
-
|
|
25008
|
+
};
|
|
25009
|
+
Leave.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
25010
|
+
const proxy = this._getCustomInspectProxy();
|
|
25011
|
+
return "Leave " + inspect(proxy, options);
|
|
25012
|
+
};
|
|
25013
|
+
Leave.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
25014
|
+
const proxy = this._getCustomInspectProxy();
|
|
25015
|
+
return "Leave " + inspect(proxy, options);
|
|
25018
25016
|
};
|
|
25019
25017
|
/** Indicates that the `actor` likes, recommends or endorses the `object`.
|
|
25020
25018
|
* The `target` and `origin` typically have no defined meaning.
|
|
@@ -25170,14 +25168,14 @@ var Like = class Like extends Activity {
|
|
|
25170
25168
|
const proxy = super._getCustomInspectProxy();
|
|
25171
25169
|
return proxy;
|
|
25172
25170
|
}
|
|
25173
|
-
|
|
25174
|
-
|
|
25175
|
-
|
|
25176
|
-
|
|
25177
|
-
|
|
25178
|
-
|
|
25179
|
-
|
|
25180
|
-
|
|
25171
|
+
};
|
|
25172
|
+
Like.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
25173
|
+
const proxy = this._getCustomInspectProxy();
|
|
25174
|
+
return "Like " + inspect(proxy, options);
|
|
25175
|
+
};
|
|
25176
|
+
Like.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
25177
|
+
const proxy = this._getCustomInspectProxy();
|
|
25178
|
+
return "Like " + inspect(proxy, options);
|
|
25181
25179
|
};
|
|
25182
25180
|
/** Indicates that the `actor` has listened to the `object`.
|
|
25183
25181
|
*/
|
|
@@ -25328,14 +25326,14 @@ var Listen = class Listen extends Activity {
|
|
|
25328
25326
|
const proxy = super._getCustomInspectProxy();
|
|
25329
25327
|
return proxy;
|
|
25330
25328
|
}
|
|
25331
|
-
|
|
25332
|
-
|
|
25333
|
-
|
|
25334
|
-
|
|
25335
|
-
|
|
25336
|
-
|
|
25337
|
-
|
|
25338
|
-
|
|
25329
|
+
};
|
|
25330
|
+
Listen.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
25331
|
+
const proxy = this._getCustomInspectProxy();
|
|
25332
|
+
return "Listen " + inspect(proxy, options);
|
|
25333
|
+
};
|
|
25334
|
+
Listen.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
25335
|
+
const proxy = this._getCustomInspectProxy();
|
|
25336
|
+
return "Listen " + inspect(proxy, options);
|
|
25339
25337
|
};
|
|
25340
25338
|
/** A specialized {@link Link} that represents an @mention.
|
|
25341
25339
|
*/
|
|
@@ -25491,14 +25489,14 @@ var Mention = class Mention extends Link {
|
|
|
25491
25489
|
const proxy = super._getCustomInspectProxy();
|
|
25492
25490
|
return proxy;
|
|
25493
25491
|
}
|
|
25494
|
-
|
|
25495
|
-
|
|
25496
|
-
|
|
25497
|
-
|
|
25498
|
-
|
|
25499
|
-
|
|
25500
|
-
|
|
25501
|
-
|
|
25492
|
+
};
|
|
25493
|
+
Mention.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
25494
|
+
const proxy = this._getCustomInspectProxy();
|
|
25495
|
+
return "Mention " + inspect(proxy, options);
|
|
25496
|
+
};
|
|
25497
|
+
Mention.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
25498
|
+
const proxy = this._getCustomInspectProxy();
|
|
25499
|
+
return "Mention " + inspect(proxy, options);
|
|
25502
25500
|
};
|
|
25503
25501
|
/** Indicates that the `actor` has moved `object` from `origin` to `target`.
|
|
25504
25502
|
* If the `origin` or `target` are not specified,
|
|
@@ -25651,14 +25649,14 @@ var Move = class Move extends Activity {
|
|
|
25651
25649
|
const proxy = super._getCustomInspectProxy();
|
|
25652
25650
|
return proxy;
|
|
25653
25651
|
}
|
|
25654
|
-
|
|
25655
|
-
|
|
25656
|
-
|
|
25657
|
-
|
|
25658
|
-
|
|
25659
|
-
|
|
25660
|
-
|
|
25661
|
-
|
|
25652
|
+
};
|
|
25653
|
+
Move.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
25654
|
+
const proxy = this._getCustomInspectProxy();
|
|
25655
|
+
return "Move " + inspect(proxy, options);
|
|
25656
|
+
};
|
|
25657
|
+
Move.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
25658
|
+
const proxy = this._getCustomInspectProxy();
|
|
25659
|
+
return "Move " + inspect(proxy, options);
|
|
25662
25660
|
};
|
|
25663
25661
|
/** Represents a short written work typically less than a single paragraph in
|
|
25664
25662
|
* length.
|
|
@@ -25911,14 +25909,14 @@ var Note = class Note extends Object$1 {
|
|
|
25911
25909
|
if (_K1zrMQkQjmciFAmGdGLfaDbG925_quoteUrl.length == 1) proxy.quoteUrl = _K1zrMQkQjmciFAmGdGLfaDbG925_quoteUrl[0];
|
|
25912
25910
|
return proxy;
|
|
25913
25911
|
}
|
|
25914
|
-
|
|
25915
|
-
|
|
25916
|
-
|
|
25917
|
-
|
|
25918
|
-
|
|
25919
|
-
|
|
25920
|
-
|
|
25921
|
-
|
|
25912
|
+
};
|
|
25913
|
+
Note.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
25914
|
+
const proxy = this._getCustomInspectProxy();
|
|
25915
|
+
return "Note " + inspect(proxy, options);
|
|
25916
|
+
};
|
|
25917
|
+
Note.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
25918
|
+
const proxy = this._getCustomInspectProxy();
|
|
25919
|
+
return "Note " + inspect(proxy, options);
|
|
25922
25920
|
};
|
|
25923
25921
|
/** A subtype of {@link Collection} in which members of the logical collection
|
|
25924
25922
|
* are assumed to always be strictly ordered.
|
|
@@ -26372,14 +26370,14 @@ var OrderedCollection = class OrderedCollection extends Collection {
|
|
|
26372
26370
|
if (_2JPCKWTcfBmTCcW8Tv3TpRaLVaqg_items.length > 1 || !("item" in proxy) && _2JPCKWTcfBmTCcW8Tv3TpRaLVaqg_items.length > 0) proxy.items = _2JPCKWTcfBmTCcW8Tv3TpRaLVaqg_items;
|
|
26373
26371
|
return proxy;
|
|
26374
26372
|
}
|
|
26375
|
-
|
|
26376
|
-
|
|
26377
|
-
|
|
26378
|
-
|
|
26379
|
-
|
|
26380
|
-
|
|
26381
|
-
|
|
26382
|
-
|
|
26373
|
+
};
|
|
26374
|
+
OrderedCollection.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
26375
|
+
const proxy = this._getCustomInspectProxy();
|
|
26376
|
+
return "OrderedCollection " + inspect(proxy, options);
|
|
26377
|
+
};
|
|
26378
|
+
OrderedCollection.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
26379
|
+
const proxy = this._getCustomInspectProxy();
|
|
26380
|
+
return "OrderedCollection " + inspect(proxy, options);
|
|
26383
26381
|
};
|
|
26384
26382
|
/** Used to represent ordered subsets of items from an `OrderedCollection`.
|
|
26385
26383
|
* Refer to the Activity Streams 2.0 Core for a complete description of
|
|
@@ -26878,14 +26876,14 @@ var OrderedCollectionPage = class OrderedCollectionPage extends CollectionPage {
|
|
|
26878
26876
|
if (_2W4yinFwqmpneu2h4m1mZ3pcLADd_startIndex.length == 1) proxy.startIndex = _2W4yinFwqmpneu2h4m1mZ3pcLADd_startIndex[0];
|
|
26879
26877
|
return proxy;
|
|
26880
26878
|
}
|
|
26881
|
-
|
|
26882
|
-
|
|
26883
|
-
|
|
26884
|
-
|
|
26885
|
-
|
|
26886
|
-
|
|
26887
|
-
|
|
26888
|
-
|
|
26879
|
+
};
|
|
26880
|
+
OrderedCollectionPage.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
26881
|
+
const proxy = this._getCustomInspectProxy();
|
|
26882
|
+
return "OrderedCollectionPage " + inspect(proxy, options);
|
|
26883
|
+
};
|
|
26884
|
+
OrderedCollectionPage.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
26885
|
+
const proxy = this._getCustomInspectProxy();
|
|
26886
|
+
return "OrderedCollectionPage " + inspect(proxy, options);
|
|
26889
26887
|
};
|
|
26890
26888
|
/** Represents an organization.
|
|
26891
26889
|
*/
|
|
@@ -30248,14 +30246,14 @@ var Organization = class Organization extends Object$1 {
|
|
|
30248
30246
|
if (_2xEU4QtkC53RAun67T81Egqt9vmL_isCat.length == 1) proxy.cat = _2xEU4QtkC53RAun67T81Egqt9vmL_isCat[0];
|
|
30249
30247
|
return proxy;
|
|
30250
30248
|
}
|
|
30251
|
-
|
|
30252
|
-
|
|
30253
|
-
|
|
30254
|
-
|
|
30255
|
-
|
|
30256
|
-
|
|
30257
|
-
|
|
30258
|
-
|
|
30249
|
+
};
|
|
30250
|
+
Organization.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
30251
|
+
const proxy = this._getCustomInspectProxy();
|
|
30252
|
+
return "Organization " + inspect(proxy, options);
|
|
30253
|
+
};
|
|
30254
|
+
Organization.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
30255
|
+
const proxy = this._getCustomInspectProxy();
|
|
30256
|
+
return "Organization " + inspect(proxy, options);
|
|
30259
30257
|
};
|
|
30260
30258
|
/** Represents a Web Page.
|
|
30261
30259
|
*/
|
|
@@ -30414,14 +30412,14 @@ var Page = class Page extends Document {
|
|
|
30414
30412
|
const proxy = super._getCustomInspectProxy();
|
|
30415
30413
|
return proxy;
|
|
30416
30414
|
}
|
|
30417
|
-
|
|
30418
|
-
|
|
30419
|
-
|
|
30420
|
-
|
|
30421
|
-
|
|
30422
|
-
|
|
30423
|
-
|
|
30424
|
-
|
|
30415
|
+
};
|
|
30416
|
+
Page.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
30417
|
+
const proxy = this._getCustomInspectProxy();
|
|
30418
|
+
return "Page " + inspect(proxy, options);
|
|
30419
|
+
};
|
|
30420
|
+
Page.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
30421
|
+
const proxy = this._getCustomInspectProxy();
|
|
30422
|
+
return "Page " + inspect(proxy, options);
|
|
30425
30423
|
};
|
|
30426
30424
|
/** Represents an individual person.
|
|
30427
30425
|
*/
|
|
@@ -33784,14 +33782,14 @@ var Person = class Person extends Object$1 {
|
|
|
33784
33782
|
if (_2xEU4QtkC53RAun67T81Egqt9vmL_isCat.length == 1) proxy.cat = _2xEU4QtkC53RAun67T81Egqt9vmL_isCat[0];
|
|
33785
33783
|
return proxy;
|
|
33786
33784
|
}
|
|
33787
|
-
|
|
33788
|
-
|
|
33789
|
-
|
|
33790
|
-
|
|
33791
|
-
|
|
33792
|
-
|
|
33793
|
-
|
|
33794
|
-
|
|
33785
|
+
};
|
|
33786
|
+
Person.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
33787
|
+
const proxy = this._getCustomInspectProxy();
|
|
33788
|
+
return "Person " + inspect(proxy, options);
|
|
33789
|
+
};
|
|
33790
|
+
Person.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
33791
|
+
const proxy = this._getCustomInspectProxy();
|
|
33792
|
+
return "Person " + inspect(proxy, options);
|
|
33795
33793
|
};
|
|
33796
33794
|
/** Represents a logical or physical location. See [5.3 Representing
|
|
33797
33795
|
* Places](https://www.w3.org/TR/activitystreams-vocabulary/#places)
|
|
@@ -34217,14 +34215,14 @@ var Place = class Place extends Object$1 {
|
|
|
34217
34215
|
if (_oKrwxU4V8wiKhMW1QEYQibcJh8c_units.length == 1) proxy.units = _oKrwxU4V8wiKhMW1QEYQibcJh8c_units[0];
|
|
34218
34216
|
return proxy;
|
|
34219
34217
|
}
|
|
34220
|
-
|
|
34221
|
-
|
|
34222
|
-
|
|
34223
|
-
|
|
34224
|
-
|
|
34225
|
-
|
|
34226
|
-
|
|
34227
|
-
|
|
34218
|
+
};
|
|
34219
|
+
Place.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
34220
|
+
const proxy = this._getCustomInspectProxy();
|
|
34221
|
+
return "Place " + inspect(proxy, options);
|
|
34222
|
+
};
|
|
34223
|
+
Place.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
34224
|
+
const proxy = this._getCustomInspectProxy();
|
|
34225
|
+
return "Place " + inspect(proxy, options);
|
|
34228
34226
|
};
|
|
34229
34227
|
/** A {@link Profile} is a content object that describes another {@link Object},
|
|
34230
34228
|
* typically used to describe [Actor
|
|
@@ -34560,14 +34558,14 @@ var Profile = class Profile extends Object$1 {
|
|
|
34560
34558
|
if (_3CLQ1PLSXrhSQbTGGHuxNyaEFKM1_describes.length == 1) proxy.describes = _3CLQ1PLSXrhSQbTGGHuxNyaEFKM1_describes[0];
|
|
34561
34559
|
return proxy;
|
|
34562
34560
|
}
|
|
34563
|
-
|
|
34564
|
-
|
|
34565
|
-
|
|
34566
|
-
|
|
34567
|
-
|
|
34568
|
-
|
|
34569
|
-
|
|
34570
|
-
|
|
34561
|
+
};
|
|
34562
|
+
Profile.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
34563
|
+
const proxy = this._getCustomInspectProxy();
|
|
34564
|
+
return "Profile " + inspect(proxy, options);
|
|
34565
|
+
};
|
|
34566
|
+
Profile.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
34567
|
+
const proxy = this._getCustomInspectProxy();
|
|
34568
|
+
return "Profile " + inspect(proxy, options);
|
|
34571
34569
|
};
|
|
34572
34570
|
/** Represents a question being asked. Question objects are an extension of
|
|
34573
34571
|
* {@link IntransitiveActivity}. That is, the Question object is an Activity,
|
|
@@ -35199,14 +35197,14 @@ var Question = class Question extends IntransitiveActivity {
|
|
|
35199
35197
|
if (_K1zrMQkQjmciFAmGdGLfaDbG925_quoteUrl.length == 1) proxy.quoteUrl = _K1zrMQkQjmciFAmGdGLfaDbG925_quoteUrl[0];
|
|
35200
35198
|
return proxy;
|
|
35201
35199
|
}
|
|
35202
|
-
|
|
35203
|
-
|
|
35204
|
-
|
|
35205
|
-
|
|
35206
|
-
|
|
35207
|
-
|
|
35208
|
-
|
|
35209
|
-
|
|
35200
|
+
};
|
|
35201
|
+
Question.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
35202
|
+
const proxy = this._getCustomInspectProxy();
|
|
35203
|
+
return "Question " + inspect(proxy, options);
|
|
35204
|
+
};
|
|
35205
|
+
Question.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
35206
|
+
const proxy = this._getCustomInspectProxy();
|
|
35207
|
+
return "Question " + inspect(proxy, options);
|
|
35210
35208
|
};
|
|
35211
35209
|
/** Indicates that the `actor` has read the `object`.
|
|
35212
35210
|
*/
|
|
@@ -35357,14 +35355,14 @@ var Read = class Read extends Activity {
|
|
|
35357
35355
|
const proxy = super._getCustomInspectProxy();
|
|
35358
35356
|
return proxy;
|
|
35359
35357
|
}
|
|
35360
|
-
|
|
35361
|
-
|
|
35362
|
-
|
|
35363
|
-
|
|
35364
|
-
|
|
35365
|
-
|
|
35366
|
-
|
|
35367
|
-
|
|
35358
|
+
};
|
|
35359
|
+
Read.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
35360
|
+
const proxy = this._getCustomInspectProxy();
|
|
35361
|
+
return "Read " + inspect(proxy, options);
|
|
35362
|
+
};
|
|
35363
|
+
Read.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
35364
|
+
const proxy = this._getCustomInspectProxy();
|
|
35365
|
+
return "Read " + inspect(proxy, options);
|
|
35368
35366
|
};
|
|
35369
35367
|
/** Indicates that the `actor` is rejecting the `object`. The `target` and
|
|
35370
35368
|
* `origin` typically have no defined meaning.
|
|
@@ -35517,14 +35515,14 @@ var Reject = class Reject extends Activity {
|
|
|
35517
35515
|
const proxy = super._getCustomInspectProxy();
|
|
35518
35516
|
return proxy;
|
|
35519
35517
|
}
|
|
35520
|
-
|
|
35521
|
-
|
|
35522
|
-
|
|
35523
|
-
|
|
35524
|
-
|
|
35525
|
-
|
|
35526
|
-
|
|
35527
|
-
|
|
35518
|
+
};
|
|
35519
|
+
Reject.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
35520
|
+
const proxy = this._getCustomInspectProxy();
|
|
35521
|
+
return "Reject " + inspect(proxy, options);
|
|
35522
|
+
};
|
|
35523
|
+
Reject.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
35524
|
+
const proxy = this._getCustomInspectProxy();
|
|
35525
|
+
return "Reject " + inspect(proxy, options);
|
|
35528
35526
|
};
|
|
35529
35527
|
/** Describes a relationship between two individuals.
|
|
35530
35528
|
* The {@link Relationship.subject} and {@link Relationship.object} properties
|
|
@@ -36328,14 +36326,14 @@ var Relationship = class Relationship extends Object$1 {
|
|
|
36328
36326
|
if (_4Lzz89F9qipAQSGkWyX9DGWiUojG_relationship.length > 1 || !("relationship" in proxy) && _4Lzz89F9qipAQSGkWyX9DGWiUojG_relationship.length > 0) proxy.relationships = _4Lzz89F9qipAQSGkWyX9DGWiUojG_relationship;
|
|
36329
36327
|
return proxy;
|
|
36330
36328
|
}
|
|
36331
|
-
|
|
36332
|
-
|
|
36333
|
-
|
|
36334
|
-
|
|
36335
|
-
|
|
36336
|
-
|
|
36337
|
-
|
|
36338
|
-
|
|
36329
|
+
};
|
|
36330
|
+
Relationship.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
36331
|
+
const proxy = this._getCustomInspectProxy();
|
|
36332
|
+
return "Relationship " + inspect(proxy, options);
|
|
36333
|
+
};
|
|
36334
|
+
Relationship.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
36335
|
+
const proxy = this._getCustomInspectProxy();
|
|
36336
|
+
return "Relationship " + inspect(proxy, options);
|
|
36339
36337
|
};
|
|
36340
36338
|
/** Indicates that the `actor` is removing the `object`. If specified,
|
|
36341
36339
|
* the `origin` indicates the context from which the `object` is being removed.
|
|
@@ -36487,14 +36485,14 @@ var Remove = class Remove extends Activity {
|
|
|
36487
36485
|
const proxy = super._getCustomInspectProxy();
|
|
36488
36486
|
return proxy;
|
|
36489
36487
|
}
|
|
36490
|
-
|
|
36491
|
-
|
|
36492
|
-
|
|
36493
|
-
|
|
36494
|
-
|
|
36495
|
-
|
|
36496
|
-
|
|
36497
|
-
|
|
36488
|
+
};
|
|
36489
|
+
Remove.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
36490
|
+
const proxy = this._getCustomInspectProxy();
|
|
36491
|
+
return "Remove " + inspect(proxy, options);
|
|
36492
|
+
};
|
|
36493
|
+
Remove.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
36494
|
+
const proxy = this._getCustomInspectProxy();
|
|
36495
|
+
return "Remove " + inspect(proxy, options);
|
|
36498
36496
|
};
|
|
36499
36497
|
/** Represents a service of any kind.
|
|
36500
36498
|
*/
|
|
@@ -39857,14 +39855,14 @@ var Service = class Service extends Object$1 {
|
|
|
39857
39855
|
if (_2xEU4QtkC53RAun67T81Egqt9vmL_isCat.length == 1) proxy.cat = _2xEU4QtkC53RAun67T81Egqt9vmL_isCat[0];
|
|
39858
39856
|
return proxy;
|
|
39859
39857
|
}
|
|
39860
|
-
|
|
39861
|
-
|
|
39862
|
-
|
|
39863
|
-
|
|
39864
|
-
|
|
39865
|
-
|
|
39866
|
-
|
|
39867
|
-
|
|
39858
|
+
};
|
|
39859
|
+
Service.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
39860
|
+
const proxy = this._getCustomInspectProxy();
|
|
39861
|
+
return "Service " + inspect(proxy, options);
|
|
39862
|
+
};
|
|
39863
|
+
Service.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
39864
|
+
const proxy = this._getCustomInspectProxy();
|
|
39865
|
+
return "Service " + inspect(proxy, options);
|
|
39868
39866
|
};
|
|
39869
39867
|
/** Contents of {@link Object}'s `source`.
|
|
39870
39868
|
*/
|
|
@@ -40005,7 +40003,6 @@ var Source = class {
|
|
|
40005
40003
|
compactItems.push(item);
|
|
40006
40004
|
}
|
|
40007
40005
|
if (compactItems.length > 0) result["mediaType"] = compactItems.length > 1 ? compactItems : compactItems[0];
|
|
40008
|
-
result["type"] = "as:Source";
|
|
40009
40006
|
if (this.id != null) result["id"] = this.id.href;
|
|
40010
40007
|
result["@context"] = "https://www.w3.org/ns/activitystreams";
|
|
40011
40008
|
return result;
|
|
@@ -40033,7 +40030,6 @@ var Source = class {
|
|
|
40033
40030
|
const propValue = array;
|
|
40034
40031
|
values["https://www.w3.org/ns/activitystreams#mediaType"] = propValue;
|
|
40035
40032
|
}
|
|
40036
|
-
values["@type"] = ["https://www.w3.org/ns/activitystreams#Source"];
|
|
40037
40033
|
if (this.id != null) values["@id"] = this.id.href;
|
|
40038
40034
|
if (options.format === "expand") return await jsonld.expand(values, { documentLoader: options.contextLoader });
|
|
40039
40035
|
const docContext = options.context ?? "https://www.w3.org/ns/activitystreams";
|
|
@@ -40144,14 +40140,14 @@ var Source = class {
|
|
|
40144
40140
|
if (_3BLrzmscsjHCw8TF5BHRW9WkPnX8_mediaType.length == 1) proxy.mediaType = _3BLrzmscsjHCw8TF5BHRW9WkPnX8_mediaType[0];
|
|
40145
40141
|
return proxy;
|
|
40146
40142
|
}
|
|
40147
|
-
|
|
40148
|
-
|
|
40149
|
-
|
|
40150
|
-
|
|
40151
|
-
|
|
40152
|
-
|
|
40153
|
-
|
|
40154
|
-
|
|
40143
|
+
};
|
|
40144
|
+
Source.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
40145
|
+
const proxy = this._getCustomInspectProxy();
|
|
40146
|
+
return "Source " + inspect(proxy, options);
|
|
40147
|
+
};
|
|
40148
|
+
Source.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
40149
|
+
const proxy = this._getCustomInspectProxy();
|
|
40150
|
+
return "Source " + inspect(proxy, options);
|
|
40155
40151
|
};
|
|
40156
40152
|
/** A specialization of {@link Accept} indicating that
|
|
40157
40153
|
* the acceptance is tentative.
|
|
@@ -40303,14 +40299,14 @@ var TentativeAccept = class TentativeAccept extends Accept {
|
|
|
40303
40299
|
const proxy = super._getCustomInspectProxy();
|
|
40304
40300
|
return proxy;
|
|
40305
40301
|
}
|
|
40306
|
-
|
|
40307
|
-
|
|
40308
|
-
|
|
40309
|
-
|
|
40310
|
-
|
|
40311
|
-
|
|
40312
|
-
|
|
40313
|
-
|
|
40302
|
+
};
|
|
40303
|
+
TentativeAccept.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
40304
|
+
const proxy = this._getCustomInspectProxy();
|
|
40305
|
+
return "TentativeAccept " + inspect(proxy, options);
|
|
40306
|
+
};
|
|
40307
|
+
TentativeAccept.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
40308
|
+
const proxy = this._getCustomInspectProxy();
|
|
40309
|
+
return "TentativeAccept " + inspect(proxy, options);
|
|
40314
40310
|
};
|
|
40315
40311
|
/** A specialization of {@link Reject} in which
|
|
40316
40312
|
* the rejection is considered tentative.
|
|
@@ -40462,14 +40458,14 @@ var TentativeReject = class TentativeReject extends Reject {
|
|
|
40462
40458
|
const proxy = super._getCustomInspectProxy();
|
|
40463
40459
|
return proxy;
|
|
40464
40460
|
}
|
|
40465
|
-
|
|
40466
|
-
|
|
40467
|
-
|
|
40468
|
-
|
|
40469
|
-
|
|
40470
|
-
|
|
40471
|
-
|
|
40472
|
-
|
|
40461
|
+
};
|
|
40462
|
+
TentativeReject.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
40463
|
+
const proxy = this._getCustomInspectProxy();
|
|
40464
|
+
return "TentativeReject " + inspect(proxy, options);
|
|
40465
|
+
};
|
|
40466
|
+
TentativeReject.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
40467
|
+
const proxy = this._getCustomInspectProxy();
|
|
40468
|
+
return "TentativeReject " + inspect(proxy, options);
|
|
40473
40469
|
};
|
|
40474
40470
|
/** A `Tombstone` represents a content object that has been deleted.
|
|
40475
40471
|
* It can be used in {@link Collection}s to signify that there used to be
|
|
@@ -40674,14 +40670,14 @@ var Tombstone = class Tombstone extends Object$1 {
|
|
|
40674
40670
|
if (_8g8g4LiVMhFTXskuDEqx4ascxUr_deleted.length == 1) proxy.deleted = _8g8g4LiVMhFTXskuDEqx4ascxUr_deleted[0];
|
|
40675
40671
|
return proxy;
|
|
40676
40672
|
}
|
|
40677
|
-
|
|
40678
|
-
|
|
40679
|
-
|
|
40680
|
-
|
|
40681
|
-
|
|
40682
|
-
|
|
40683
|
-
|
|
40684
|
-
|
|
40673
|
+
};
|
|
40674
|
+
Tombstone.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
40675
|
+
const proxy = this._getCustomInspectProxy();
|
|
40676
|
+
return "Tombstone " + inspect(proxy, options);
|
|
40677
|
+
};
|
|
40678
|
+
Tombstone.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
40679
|
+
const proxy = this._getCustomInspectProxy();
|
|
40680
|
+
return "Tombstone " + inspect(proxy, options);
|
|
40685
40681
|
};
|
|
40686
40682
|
/** Indicates that the `actor` is traveling to `target` from `origin`.
|
|
40687
40683
|
* `Travel` is an `IntransitiveObject` whose `actor` specifies the direct object.
|
|
@@ -40835,14 +40831,14 @@ var Travel = class Travel extends IntransitiveActivity {
|
|
|
40835
40831
|
const proxy = super._getCustomInspectProxy();
|
|
40836
40832
|
return proxy;
|
|
40837
40833
|
}
|
|
40838
|
-
|
|
40839
|
-
|
|
40840
|
-
|
|
40841
|
-
|
|
40842
|
-
|
|
40843
|
-
|
|
40844
|
-
|
|
40845
|
-
|
|
40834
|
+
};
|
|
40835
|
+
Travel.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
40836
|
+
const proxy = this._getCustomInspectProxy();
|
|
40837
|
+
return "Travel " + inspect(proxy, options);
|
|
40838
|
+
};
|
|
40839
|
+
Travel.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
40840
|
+
const proxy = this._getCustomInspectProxy();
|
|
40841
|
+
return "Travel " + inspect(proxy, options);
|
|
40846
40842
|
};
|
|
40847
40843
|
/** Indicates that the `actor` is undoing the `object`. In most cases,
|
|
40848
40844
|
* the `object` will be an {@link Activity} describing some previously performed
|
|
@@ -41008,14 +41004,14 @@ var Undo = class Undo extends Activity {
|
|
|
41008
41004
|
const proxy = super._getCustomInspectProxy();
|
|
41009
41005
|
return proxy;
|
|
41010
41006
|
}
|
|
41011
|
-
|
|
41012
|
-
|
|
41013
|
-
|
|
41014
|
-
|
|
41015
|
-
|
|
41016
|
-
|
|
41017
|
-
|
|
41018
|
-
|
|
41007
|
+
};
|
|
41008
|
+
Undo.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
41009
|
+
const proxy = this._getCustomInspectProxy();
|
|
41010
|
+
return "Undo " + inspect(proxy, options);
|
|
41011
|
+
};
|
|
41012
|
+
Undo.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
41013
|
+
const proxy = this._getCustomInspectProxy();
|
|
41014
|
+
return "Undo " + inspect(proxy, options);
|
|
41019
41015
|
};
|
|
41020
41016
|
/** Indicates that the `actor` has updated the `object`. Note, however,
|
|
41021
41017
|
* that this vocabulary does not define a mechanism for describing the actual
|
|
@@ -41219,14 +41215,14 @@ var Update = class Update extends Activity {
|
|
|
41219
41215
|
const proxy = super._getCustomInspectProxy();
|
|
41220
41216
|
return proxy;
|
|
41221
41217
|
}
|
|
41222
|
-
|
|
41223
|
-
|
|
41224
|
-
|
|
41225
|
-
|
|
41226
|
-
|
|
41227
|
-
|
|
41228
|
-
|
|
41229
|
-
|
|
41218
|
+
};
|
|
41219
|
+
Update.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
41220
|
+
const proxy = this._getCustomInspectProxy();
|
|
41221
|
+
return "Update " + inspect(proxy, options);
|
|
41222
|
+
};
|
|
41223
|
+
Update.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
41224
|
+
const proxy = this._getCustomInspectProxy();
|
|
41225
|
+
return "Update " + inspect(proxy, options);
|
|
41230
41226
|
};
|
|
41231
41227
|
/** Represents a video document of any kind.
|
|
41232
41228
|
*/
|
|
@@ -41385,14 +41381,14 @@ var Video = class Video extends Document {
|
|
|
41385
41381
|
const proxy = super._getCustomInspectProxy();
|
|
41386
41382
|
return proxy;
|
|
41387
41383
|
}
|
|
41388
|
-
|
|
41389
|
-
|
|
41390
|
-
|
|
41391
|
-
|
|
41392
|
-
|
|
41393
|
-
|
|
41394
|
-
|
|
41395
|
-
|
|
41384
|
+
};
|
|
41385
|
+
Video.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
41386
|
+
const proxy = this._getCustomInspectProxy();
|
|
41387
|
+
return "Video " + inspect(proxy, options);
|
|
41388
|
+
};
|
|
41389
|
+
Video.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
41390
|
+
const proxy = this._getCustomInspectProxy();
|
|
41391
|
+
return "Video " + inspect(proxy, options);
|
|
41396
41392
|
};
|
|
41397
41393
|
/** Indicates that the `actor` has viewed the object.
|
|
41398
41394
|
*/
|
|
@@ -41543,14 +41539,14 @@ var View = class View extends Activity {
|
|
|
41543
41539
|
const proxy = super._getCustomInspectProxy();
|
|
41544
41540
|
return proxy;
|
|
41545
41541
|
}
|
|
41546
|
-
|
|
41547
|
-
|
|
41548
|
-
|
|
41549
|
-
|
|
41550
|
-
|
|
41551
|
-
|
|
41552
|
-
|
|
41553
|
-
|
|
41542
|
+
};
|
|
41543
|
+
View.prototype[Symbol.for("Deno.customInspect")] = function(inspect, options) {
|
|
41544
|
+
const proxy = this._getCustomInspectProxy();
|
|
41545
|
+
return "View " + inspect(proxy, options);
|
|
41546
|
+
};
|
|
41547
|
+
View.prototype[Symbol.for("nodejs.util.inspect.custom")] = function(_depth, options, inspect) {
|
|
41548
|
+
const proxy = this._getCustomInspectProxy();
|
|
41549
|
+
return "View " + inspect(proxy, options);
|
|
41554
41550
|
};
|
|
41555
41551
|
|
|
41556
41552
|
//#endregion
|