@atproto/ozone 0.1.106 → 0.1.107
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/CHANGELOG.md +10 -0
- package/dist/api/proxied.d.ts.map +1 -1
- package/dist/api/proxied.js +29 -16
- package/dist/api/proxied.js.map +1 -1
- package/dist/lexicon/index.d.ts +7 -0
- package/dist/lexicon/index.d.ts.map +1 -1
- package/dist/lexicon/index.js +24 -1
- package/dist/lexicon/index.js.map +1 -1
- package/dist/lexicon/lexicons.d.ts +238 -2
- package/dist/lexicon/lexicons.d.ts.map +1 -1
- package/dist/lexicon/lexicons.js +132 -1
- package/dist/lexicon/lexicons.js.map +1 -1
- package/dist/lexicon/types/chat/bsky/actor/defs.d.ts +1 -1
- package/dist/lexicon/types/chat/bsky/actor/defs.d.ts.map +1 -1
- package/dist/lexicon/types/tools/ozone/hosting/getAccountHistory.d.ts +81 -0
- package/dist/lexicon/types/tools/ozone/hosting/getAccountHistory.d.ts.map +1 -0
- package/dist/lexicon/types/tools/ozone/hosting/getAccountHistory.js +61 -0
- package/dist/lexicon/types/tools/ozone/hosting/getAccountHistory.js.map +1 -0
- package/dist/mod-service/index.d.ts.map +1 -1
- package/dist/mod-service/index.js +58 -21
- package/dist/mod-service/index.js.map +1 -1
- package/package.json +4 -4
- package/src/api/proxied.ts +39 -24
- package/src/lexicon/index.ts +22 -0
- package/src/lexicon/lexicons.ts +133 -1
- package/src/lexicon/types/chat/bsky/actor/defs.ts +1 -1
- package/src/lexicon/types/tools/ozone/hosting/getAccountHistory.ts +161 -0
- package/src/mod-service/index.ts +83 -30
- package/tests/get-reporter-stats.test.ts +24 -9
- package/tsconfig.build.tsbuildinfo +1 -1
package/dist/lexicon/lexicons.js
CHANGED
|
@@ -10736,7 +10736,7 @@ exports.schemaDict = {
|
|
|
10736
10736
|
},
|
|
10737
10737
|
chatDisabled: {
|
|
10738
10738
|
type: 'boolean',
|
|
10739
|
-
description: 'Set to true when the actor cannot actively participate in
|
|
10739
|
+
description: 'Set to true when the actor cannot actively participate in conversations',
|
|
10740
10740
|
},
|
|
10741
10741
|
verification: {
|
|
10742
10742
|
type: 'ref',
|
|
@@ -12191,6 +12191,136 @@ exports.schemaDict = {
|
|
|
12191
12191
|
},
|
|
12192
12192
|
},
|
|
12193
12193
|
},
|
|
12194
|
+
ToolsOzoneHostingGetAccountHistory: {
|
|
12195
|
+
lexicon: 1,
|
|
12196
|
+
id: 'tools.ozone.hosting.getAccountHistory',
|
|
12197
|
+
defs: {
|
|
12198
|
+
main: {
|
|
12199
|
+
type: 'query',
|
|
12200
|
+
description: 'Get account history, e.g. log of updated email addresses or other identity information.',
|
|
12201
|
+
parameters: {
|
|
12202
|
+
type: 'params',
|
|
12203
|
+
required: ['did'],
|
|
12204
|
+
properties: {
|
|
12205
|
+
did: {
|
|
12206
|
+
type: 'string',
|
|
12207
|
+
format: 'did',
|
|
12208
|
+
},
|
|
12209
|
+
events: {
|
|
12210
|
+
type: 'array',
|
|
12211
|
+
items: {
|
|
12212
|
+
type: 'string',
|
|
12213
|
+
knownValues: [
|
|
12214
|
+
'accountCreated',
|
|
12215
|
+
'emailUpdated',
|
|
12216
|
+
'emailConfirmed',
|
|
12217
|
+
'passwordUpdated',
|
|
12218
|
+
'handleUpdated',
|
|
12219
|
+
],
|
|
12220
|
+
},
|
|
12221
|
+
},
|
|
12222
|
+
cursor: {
|
|
12223
|
+
type: 'string',
|
|
12224
|
+
},
|
|
12225
|
+
limit: {
|
|
12226
|
+
type: 'integer',
|
|
12227
|
+
minimum: 1,
|
|
12228
|
+
maximum: 100,
|
|
12229
|
+
default: 50,
|
|
12230
|
+
},
|
|
12231
|
+
},
|
|
12232
|
+
},
|
|
12233
|
+
output: {
|
|
12234
|
+
encoding: 'application/json',
|
|
12235
|
+
schema: {
|
|
12236
|
+
type: 'object',
|
|
12237
|
+
required: ['events'],
|
|
12238
|
+
properties: {
|
|
12239
|
+
cursor: {
|
|
12240
|
+
type: 'string',
|
|
12241
|
+
},
|
|
12242
|
+
events: {
|
|
12243
|
+
type: 'array',
|
|
12244
|
+
items: {
|
|
12245
|
+
type: 'ref',
|
|
12246
|
+
ref: 'lex:tools.ozone.hosting.getAccountHistory#event',
|
|
12247
|
+
},
|
|
12248
|
+
},
|
|
12249
|
+
},
|
|
12250
|
+
},
|
|
12251
|
+
},
|
|
12252
|
+
},
|
|
12253
|
+
event: {
|
|
12254
|
+
type: 'object',
|
|
12255
|
+
required: ['details', 'createdBy', 'createdAt'],
|
|
12256
|
+
properties: {
|
|
12257
|
+
details: {
|
|
12258
|
+
type: 'union',
|
|
12259
|
+
refs: [
|
|
12260
|
+
'lex:tools.ozone.hosting.getAccountHistory#accountCreated',
|
|
12261
|
+
'lex:tools.ozone.hosting.getAccountHistory#emailUpdated',
|
|
12262
|
+
'lex:tools.ozone.hosting.getAccountHistory#emailConfirmed',
|
|
12263
|
+
'lex:tools.ozone.hosting.getAccountHistory#passwordUpdated',
|
|
12264
|
+
'lex:tools.ozone.hosting.getAccountHistory#handleUpdated',
|
|
12265
|
+
],
|
|
12266
|
+
},
|
|
12267
|
+
createdBy: {
|
|
12268
|
+
type: 'string',
|
|
12269
|
+
},
|
|
12270
|
+
createdAt: {
|
|
12271
|
+
type: 'string',
|
|
12272
|
+
format: 'datetime',
|
|
12273
|
+
},
|
|
12274
|
+
},
|
|
12275
|
+
},
|
|
12276
|
+
accountCreated: {
|
|
12277
|
+
type: 'object',
|
|
12278
|
+
required: [],
|
|
12279
|
+
properties: {
|
|
12280
|
+
email: {
|
|
12281
|
+
type: 'string',
|
|
12282
|
+
},
|
|
12283
|
+
handle: {
|
|
12284
|
+
type: 'string',
|
|
12285
|
+
format: 'handle',
|
|
12286
|
+
},
|
|
12287
|
+
},
|
|
12288
|
+
},
|
|
12289
|
+
emailUpdated: {
|
|
12290
|
+
type: 'object',
|
|
12291
|
+
required: ['email'],
|
|
12292
|
+
properties: {
|
|
12293
|
+
email: {
|
|
12294
|
+
type: 'string',
|
|
12295
|
+
},
|
|
12296
|
+
},
|
|
12297
|
+
},
|
|
12298
|
+
emailConfirmed: {
|
|
12299
|
+
type: 'object',
|
|
12300
|
+
required: ['email'],
|
|
12301
|
+
properties: {
|
|
12302
|
+
email: {
|
|
12303
|
+
type: 'string',
|
|
12304
|
+
},
|
|
12305
|
+
},
|
|
12306
|
+
},
|
|
12307
|
+
passwordUpdated: {
|
|
12308
|
+
type: 'object',
|
|
12309
|
+
required: [],
|
|
12310
|
+
properties: {},
|
|
12311
|
+
},
|
|
12312
|
+
handleUpdated: {
|
|
12313
|
+
type: 'object',
|
|
12314
|
+
required: ['handle'],
|
|
12315
|
+
properties: {
|
|
12316
|
+
handle: {
|
|
12317
|
+
type: 'string',
|
|
12318
|
+
format: 'handle',
|
|
12319
|
+
},
|
|
12320
|
+
},
|
|
12321
|
+
},
|
|
12322
|
+
},
|
|
12323
|
+
},
|
|
12194
12324
|
ToolsOzoneModerationDefs: {
|
|
12195
12325
|
lexicon: 1,
|
|
12196
12326
|
id: 'tools.ozone.moderation.defs',
|
|
@@ -15246,6 +15376,7 @@ exports.ids = {
|
|
|
15246
15376
|
ToolsOzoneCommunicationDeleteTemplate: 'tools.ozone.communication.deleteTemplate',
|
|
15247
15377
|
ToolsOzoneCommunicationListTemplates: 'tools.ozone.communication.listTemplates',
|
|
15248
15378
|
ToolsOzoneCommunicationUpdateTemplate: 'tools.ozone.communication.updateTemplate',
|
|
15379
|
+
ToolsOzoneHostingGetAccountHistory: 'tools.ozone.hosting.getAccountHistory',
|
|
15249
15380
|
ToolsOzoneModerationDefs: 'tools.ozone.moderation.defs',
|
|
15250
15381
|
ToolsOzoneModerationEmitEvent: 'tools.ozone.moderation.emitEvent',
|
|
15251
15382
|
ToolsOzoneModerationGetEvent: 'tools.ozone.moderation.getEvent',
|