@atproto/pds 0.4.110 → 0.4.112
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 +18 -0
- package/dist/lexicon/index.d.ts +6 -0
- package/dist/lexicon/index.d.ts.map +1 -1
- package/dist/lexicon/index.js +12 -0
- package/dist/lexicon/index.js.map +1 -1
- package/dist/lexicon/lexicons.d.ts +534 -4
- package/dist/lexicon/lexicons.d.ts.map +1 -1
- package/dist/lexicon/lexicons.js +287 -0
- package/dist/lexicon/lexicons.js.map +1 -1
- package/dist/lexicon/types/chat/bsky/convo/addReaction.d.ts +43 -0
- package/dist/lexicon/types/chat/bsky/convo/addReaction.d.ts.map +1 -0
- package/dist/lexicon/types/chat/bsky/convo/addReaction.js +7 -0
- package/dist/lexicon/types/chat/bsky/convo/addReaction.js.map +1 -0
- package/dist/lexicon/types/chat/bsky/convo/defs.d.ts +45 -1
- package/dist/lexicon/types/chat/bsky/convo/defs.d.ts.map +1 -1
- package/dist/lexicon/types/chat/bsky/convo/defs.js +45 -0
- package/dist/lexicon/types/chat/bsky/convo/defs.js.map +1 -1
- package/dist/lexicon/types/chat/bsky/convo/getLog.d.ts +1 -1
- package/dist/lexicon/types/chat/bsky/convo/getLog.d.ts.map +1 -1
- package/dist/lexicon/types/chat/bsky/convo/removeReaction.d.ts +43 -0
- package/dist/lexicon/types/chat/bsky/convo/removeReaction.d.ts.map +1 -0
- package/dist/lexicon/types/chat/bsky/convo/removeReaction.js +7 -0
- package/dist/lexicon/types/chat/bsky/convo/removeReaction.js.map +1 -0
- package/dist/lexicon/types/tools/ozone/moderation/defs.d.ts +14 -0
- package/dist/lexicon/types/tools/ozone/moderation/defs.d.ts.map +1 -1
- package/dist/lexicon/types/tools/ozone/moderation/defs.js +9 -0
- package/dist/lexicon/types/tools/ozone/moderation/defs.js.map +1 -1
- package/dist/lexicon/types/tools/ozone/moderation/getSubjects.d.ts +36 -0
- package/dist/lexicon/types/tools/ozone/moderation/getSubjects.d.ts.map +1 -0
- package/dist/lexicon/types/tools/ozone/moderation/getSubjects.js +7 -0
- package/dist/lexicon/types/tools/ozone/moderation/getSubjects.js.map +1 -0
- package/package.json +4 -4
- package/src/lexicon/index.ts +36 -0
- package/src/lexicon/lexicons.ts +295 -0
- package/src/lexicon/types/chat/bsky/convo/addReaction.ts +63 -0
- package/src/lexicon/types/chat/bsky/convo/defs.ts +86 -0
- package/src/lexicon/types/chat/bsky/convo/getLog.ts +5 -0
- package/src/lexicon/types/chat/bsky/convo/removeReaction.ts +60 -0
- package/src/lexicon/types/tools/ozone/moderation/defs.ts +21 -0
- package/src/lexicon/types/tools/ozone/moderation/getSubjects.ts +54 -0
- package/tsconfig.build.tsbuildinfo +1 -1
package/src/lexicon/index.ts
CHANGED
@@ -154,6 +154,7 @@ import * as AppBskyVideoUploadVideo from './types/app/bsky/video/uploadVideo.js'
|
|
154
154
|
import * as ChatBskyActorDeleteAccount from './types/chat/bsky/actor/deleteAccount.js'
|
155
155
|
import * as ChatBskyActorExportAccountData from './types/chat/bsky/actor/exportAccountData.js'
|
156
156
|
import * as ChatBskyConvoAcceptConvo from './types/chat/bsky/convo/acceptConvo.js'
|
157
|
+
import * as ChatBskyConvoAddReaction from './types/chat/bsky/convo/addReaction.js'
|
157
158
|
import * as ChatBskyConvoDeleteMessageForSelf from './types/chat/bsky/convo/deleteMessageForSelf.js'
|
158
159
|
import * as ChatBskyConvoGetConvo from './types/chat/bsky/convo/getConvo.js'
|
159
160
|
import * as ChatBskyConvoGetConvoAvailability from './types/chat/bsky/convo/getConvoAvailability.js'
|
@@ -163,6 +164,7 @@ import * as ChatBskyConvoGetMessages from './types/chat/bsky/convo/getMessages.j
|
|
163
164
|
import * as ChatBskyConvoLeaveConvo from './types/chat/bsky/convo/leaveConvo.js'
|
164
165
|
import * as ChatBskyConvoListConvos from './types/chat/bsky/convo/listConvos.js'
|
165
166
|
import * as ChatBskyConvoMuteConvo from './types/chat/bsky/convo/muteConvo.js'
|
167
|
+
import * as ChatBskyConvoRemoveReaction from './types/chat/bsky/convo/removeReaction.js'
|
166
168
|
import * as ChatBskyConvoSendMessage from './types/chat/bsky/convo/sendMessage.js'
|
167
169
|
import * as ChatBskyConvoSendMessageBatch from './types/chat/bsky/convo/sendMessageBatch.js'
|
168
170
|
import * as ChatBskyConvoUnmuteConvo from './types/chat/bsky/convo/unmuteConvo.js'
|
@@ -182,6 +184,7 @@ import * as ToolsOzoneModerationGetRecords from './types/tools/ozone/moderation/
|
|
182
184
|
import * as ToolsOzoneModerationGetRepo from './types/tools/ozone/moderation/getRepo.js'
|
183
185
|
import * as ToolsOzoneModerationGetReporterStats from './types/tools/ozone/moderation/getReporterStats.js'
|
184
186
|
import * as ToolsOzoneModerationGetRepos from './types/tools/ozone/moderation/getRepos.js'
|
187
|
+
import * as ToolsOzoneModerationGetSubjects from './types/tools/ozone/moderation/getSubjects.js'
|
185
188
|
import * as ToolsOzoneModerationQueryEvents from './types/tools/ozone/moderation/queryEvents.js'
|
186
189
|
import * as ToolsOzoneModerationQueryStatuses from './types/tools/ozone/moderation/queryStatuses.js'
|
187
190
|
import * as ToolsOzoneModerationSearchRepos from './types/tools/ozone/moderation/searchRepos.js'
|
@@ -2119,6 +2122,17 @@ export class ChatBskyConvoNS {
|
|
2119
2122
|
return this._server.xrpc.method(nsid, cfg)
|
2120
2123
|
}
|
2121
2124
|
|
2125
|
+
addReaction<AV extends AuthVerifier>(
|
2126
|
+
cfg: ConfigOf<
|
2127
|
+
AV,
|
2128
|
+
ChatBskyConvoAddReaction.Handler<ExtractAuth<AV>>,
|
2129
|
+
ChatBskyConvoAddReaction.HandlerReqCtx<ExtractAuth<AV>>
|
2130
|
+
>,
|
2131
|
+
) {
|
2132
|
+
const nsid = 'chat.bsky.convo.addReaction' // @ts-ignore
|
2133
|
+
return this._server.xrpc.method(nsid, cfg)
|
2134
|
+
}
|
2135
|
+
|
2122
2136
|
deleteMessageForSelf<AV extends AuthVerifier>(
|
2123
2137
|
cfg: ConfigOf<
|
2124
2138
|
AV,
|
@@ -2218,6 +2232,17 @@ export class ChatBskyConvoNS {
|
|
2218
2232
|
return this._server.xrpc.method(nsid, cfg)
|
2219
2233
|
}
|
2220
2234
|
|
2235
|
+
removeReaction<AV extends AuthVerifier>(
|
2236
|
+
cfg: ConfigOf<
|
2237
|
+
AV,
|
2238
|
+
ChatBskyConvoRemoveReaction.Handler<ExtractAuth<AV>>,
|
2239
|
+
ChatBskyConvoRemoveReaction.HandlerReqCtx<ExtractAuth<AV>>
|
2240
|
+
>,
|
2241
|
+
) {
|
2242
|
+
const nsid = 'chat.bsky.convo.removeReaction' // @ts-ignore
|
2243
|
+
return this._server.xrpc.method(nsid, cfg)
|
2244
|
+
}
|
2245
|
+
|
2221
2246
|
sendMessage<AV extends AuthVerifier>(
|
2222
2247
|
cfg: ConfigOf<
|
2223
2248
|
AV,
|
@@ -2483,6 +2508,17 @@ export class ToolsOzoneModerationNS {
|
|
2483
2508
|
return this._server.xrpc.method(nsid, cfg)
|
2484
2509
|
}
|
2485
2510
|
|
2511
|
+
getSubjects<AV extends AuthVerifier>(
|
2512
|
+
cfg: ConfigOf<
|
2513
|
+
AV,
|
2514
|
+
ToolsOzoneModerationGetSubjects.Handler<ExtractAuth<AV>>,
|
2515
|
+
ToolsOzoneModerationGetSubjects.HandlerReqCtx<ExtractAuth<AV>>
|
2516
|
+
>,
|
2517
|
+
) {
|
2518
|
+
const nsid = 'tools.ozone.moderation.getSubjects' // @ts-ignore
|
2519
|
+
return this._server.xrpc.method(nsid, cfg)
|
2520
|
+
}
|
2521
|
+
|
2486
2522
|
queryEvents<AV extends AuthVerifier>(
|
2487
2523
|
cfg: ConfigOf<
|
2488
2524
|
AV,
|
package/src/lexicon/lexicons.ts
CHANGED
@@ -10458,6 +10458,69 @@ export const schemaDict = {
|
|
10458
10458
|
},
|
10459
10459
|
},
|
10460
10460
|
},
|
10461
|
+
ChatBskyConvoAddReaction: {
|
10462
|
+
lexicon: 1,
|
10463
|
+
id: 'chat.bsky.convo.addReaction',
|
10464
|
+
defs: {
|
10465
|
+
main: {
|
10466
|
+
type: 'procedure',
|
10467
|
+
description:
|
10468
|
+
'Adds an emoji reaction to a message. Requires authentication. It is idempotent, so multiple calls from the same user with the same emoji result in a single reaction.',
|
10469
|
+
input: {
|
10470
|
+
encoding: 'application/json',
|
10471
|
+
schema: {
|
10472
|
+
type: 'object',
|
10473
|
+
required: ['convoId', 'messageId', 'value'],
|
10474
|
+
properties: {
|
10475
|
+
convoId: {
|
10476
|
+
type: 'string',
|
10477
|
+
},
|
10478
|
+
messageId: {
|
10479
|
+
type: 'string',
|
10480
|
+
},
|
10481
|
+
value: {
|
10482
|
+
type: 'string',
|
10483
|
+
minLength: 1,
|
10484
|
+
maxLength: 32,
|
10485
|
+
minGraphemes: 1,
|
10486
|
+
maxGraphemes: 1,
|
10487
|
+
},
|
10488
|
+
},
|
10489
|
+
},
|
10490
|
+
},
|
10491
|
+
output: {
|
10492
|
+
encoding: 'application/json',
|
10493
|
+
schema: {
|
10494
|
+
type: 'object',
|
10495
|
+
required: ['message'],
|
10496
|
+
properties: {
|
10497
|
+
message: {
|
10498
|
+
type: 'ref',
|
10499
|
+
ref: 'lex:chat.bsky.convo.defs#messageView',
|
10500
|
+
},
|
10501
|
+
},
|
10502
|
+
},
|
10503
|
+
},
|
10504
|
+
errors: [
|
10505
|
+
{
|
10506
|
+
name: 'ReactionMessageDeleted',
|
10507
|
+
description:
|
10508
|
+
'Indicates that the message has been deleted and reactions can no longer be added/removed.',
|
10509
|
+
},
|
10510
|
+
{
|
10511
|
+
name: 'ReactionLimitReached',
|
10512
|
+
description:
|
10513
|
+
"Indicates that the message has the maximum number of reactions allowed for a single user, and the requested reaction wasn't yet present. If it was already present, the request will not fail since it is idempotent.",
|
10514
|
+
},
|
10515
|
+
{
|
10516
|
+
name: 'ReactionInvalidValue',
|
10517
|
+
description:
|
10518
|
+
'Indicates the value for the reaction is not acceptable. In general, this means it is not an emoji.',
|
10519
|
+
},
|
10520
|
+
],
|
10521
|
+
},
|
10522
|
+
},
|
10523
|
+
},
|
10461
10524
|
ChatBskyConvoDefs: {
|
10462
10525
|
lexicon: 1,
|
10463
10526
|
id: 'chat.bsky.convo.defs',
|
@@ -10528,6 +10591,13 @@ export const schemaDict = {
|
|
10528
10591
|
type: 'union',
|
10529
10592
|
refs: ['lex:app.bsky.embed.record#view'],
|
10530
10593
|
},
|
10594
|
+
reactions: {
|
10595
|
+
type: 'array',
|
10596
|
+
items: {
|
10597
|
+
type: 'ref',
|
10598
|
+
ref: 'lex:chat.bsky.convo.defs#reactionView',
|
10599
|
+
},
|
10600
|
+
},
|
10531
10601
|
sender: {
|
10532
10602
|
type: 'ref',
|
10533
10603
|
ref: 'lex:chat.bsky.convo.defs#messageViewSender',
|
@@ -10568,6 +10638,47 @@ export const schemaDict = {
|
|
10568
10638
|
},
|
10569
10639
|
},
|
10570
10640
|
},
|
10641
|
+
reactionView: {
|
10642
|
+
type: 'object',
|
10643
|
+
required: ['value', 'sender', 'createdAt'],
|
10644
|
+
properties: {
|
10645
|
+
value: {
|
10646
|
+
type: 'string',
|
10647
|
+
},
|
10648
|
+
sender: {
|
10649
|
+
type: 'ref',
|
10650
|
+
ref: 'lex:chat.bsky.convo.defs#reactionViewSender',
|
10651
|
+
},
|
10652
|
+
createdAt: {
|
10653
|
+
type: 'string',
|
10654
|
+
format: 'datetime',
|
10655
|
+
},
|
10656
|
+
},
|
10657
|
+
},
|
10658
|
+
reactionViewSender: {
|
10659
|
+
type: 'object',
|
10660
|
+
required: ['did'],
|
10661
|
+
properties: {
|
10662
|
+
did: {
|
10663
|
+
type: 'string',
|
10664
|
+
format: 'did',
|
10665
|
+
},
|
10666
|
+
},
|
10667
|
+
},
|
10668
|
+
messageAndReactionView: {
|
10669
|
+
type: 'object',
|
10670
|
+
required: ['message', 'reaction'],
|
10671
|
+
properties: {
|
10672
|
+
message: {
|
10673
|
+
type: 'ref',
|
10674
|
+
ref: 'lex:chat.bsky.convo.defs#messageView',
|
10675
|
+
},
|
10676
|
+
reaction: {
|
10677
|
+
type: 'ref',
|
10678
|
+
ref: 'lex:chat.bsky.convo.defs#reactionView',
|
10679
|
+
},
|
10680
|
+
},
|
10681
|
+
},
|
10571
10682
|
convoView: {
|
10572
10683
|
type: 'object',
|
10573
10684
|
required: ['id', 'rev', 'members', 'muted', 'unreadCount'],
|
@@ -10590,6 +10701,7 @@ export const schemaDict = {
|
|
10590
10701
|
refs: [
|
10591
10702
|
'lex:chat.bsky.convo.defs#messageView',
|
10592
10703
|
'lex:chat.bsky.convo.defs#deletedMessageView',
|
10704
|
+
'lex:chat.bsky.convo.defs#messageAndReactionView',
|
10593
10705
|
],
|
10594
10706
|
},
|
10595
10707
|
muted: {
|
@@ -10721,6 +10833,52 @@ export const schemaDict = {
|
|
10721
10833
|
},
|
10722
10834
|
},
|
10723
10835
|
},
|
10836
|
+
logAddReaction: {
|
10837
|
+
type: 'object',
|
10838
|
+
required: ['rev', 'convoId', 'message', 'reaction'],
|
10839
|
+
properties: {
|
10840
|
+
rev: {
|
10841
|
+
type: 'string',
|
10842
|
+
},
|
10843
|
+
convoId: {
|
10844
|
+
type: 'string',
|
10845
|
+
},
|
10846
|
+
message: {
|
10847
|
+
type: 'union',
|
10848
|
+
refs: [
|
10849
|
+
'lex:chat.bsky.convo.defs#messageView',
|
10850
|
+
'lex:chat.bsky.convo.defs#deletedMessageView',
|
10851
|
+
],
|
10852
|
+
},
|
10853
|
+
reaction: {
|
10854
|
+
type: 'ref',
|
10855
|
+
ref: 'lex:chat.bsky.convo.defs#reactionView',
|
10856
|
+
},
|
10857
|
+
},
|
10858
|
+
},
|
10859
|
+
logRemoveReaction: {
|
10860
|
+
type: 'object',
|
10861
|
+
required: ['rev', 'convoId', 'message', 'reaction'],
|
10862
|
+
properties: {
|
10863
|
+
rev: {
|
10864
|
+
type: 'string',
|
10865
|
+
},
|
10866
|
+
convoId: {
|
10867
|
+
type: 'string',
|
10868
|
+
},
|
10869
|
+
message: {
|
10870
|
+
type: 'union',
|
10871
|
+
refs: [
|
10872
|
+
'lex:chat.bsky.convo.defs#messageView',
|
10873
|
+
'lex:chat.bsky.convo.defs#deletedMessageView',
|
10874
|
+
],
|
10875
|
+
},
|
10876
|
+
reaction: {
|
10877
|
+
type: 'ref',
|
10878
|
+
ref: 'lex:chat.bsky.convo.defs#reactionView',
|
10879
|
+
},
|
10880
|
+
},
|
10881
|
+
},
|
10724
10882
|
},
|
10725
10883
|
},
|
10726
10884
|
ChatBskyConvoDeleteMessageForSelf: {
|
@@ -10896,8 +11054,13 @@ export const schemaDict = {
|
|
10896
11054
|
'lex:chat.bsky.convo.defs#logBeginConvo',
|
10897
11055
|
'lex:chat.bsky.convo.defs#logAcceptConvo',
|
10898
11056
|
'lex:chat.bsky.convo.defs#logLeaveConvo',
|
11057
|
+
'lex:chat.bsky.convo.defs#logMuteConvo',
|
11058
|
+
'lex:chat.bsky.convo.defs#logUnmuteConvo',
|
10899
11059
|
'lex:chat.bsky.convo.defs#logCreateMessage',
|
10900
11060
|
'lex:chat.bsky.convo.defs#logDeleteMessage',
|
11061
|
+
'lex:chat.bsky.convo.defs#logReadMessage',
|
11062
|
+
'lex:chat.bsky.convo.defs#logAddReaction',
|
11063
|
+
'lex:chat.bsky.convo.defs#logRemoveReaction',
|
10901
11064
|
],
|
10902
11065
|
},
|
10903
11066
|
},
|
@@ -11076,6 +11239,64 @@ export const schemaDict = {
|
|
11076
11239
|
},
|
11077
11240
|
},
|
11078
11241
|
},
|
11242
|
+
ChatBskyConvoRemoveReaction: {
|
11243
|
+
lexicon: 1,
|
11244
|
+
id: 'chat.bsky.convo.removeReaction',
|
11245
|
+
defs: {
|
11246
|
+
main: {
|
11247
|
+
type: 'procedure',
|
11248
|
+
description:
|
11249
|
+
"Removes an emoji reaction from a message. Requires authentication. It is idempotent, so multiple calls from the same user with the same emoji result in that reaction not being present, even if it already wasn't.",
|
11250
|
+
input: {
|
11251
|
+
encoding: 'application/json',
|
11252
|
+
schema: {
|
11253
|
+
type: 'object',
|
11254
|
+
required: ['convoId', 'messageId', 'value'],
|
11255
|
+
properties: {
|
11256
|
+
convoId: {
|
11257
|
+
type: 'string',
|
11258
|
+
},
|
11259
|
+
messageId: {
|
11260
|
+
type: 'string',
|
11261
|
+
},
|
11262
|
+
value: {
|
11263
|
+
type: 'string',
|
11264
|
+
minLength: 1,
|
11265
|
+
maxLength: 32,
|
11266
|
+
minGraphemes: 1,
|
11267
|
+
maxGraphemes: 1,
|
11268
|
+
},
|
11269
|
+
},
|
11270
|
+
},
|
11271
|
+
},
|
11272
|
+
output: {
|
11273
|
+
encoding: 'application/json',
|
11274
|
+
schema: {
|
11275
|
+
type: 'object',
|
11276
|
+
required: ['message'],
|
11277
|
+
properties: {
|
11278
|
+
message: {
|
11279
|
+
type: 'ref',
|
11280
|
+
ref: 'lex:chat.bsky.convo.defs#messageView',
|
11281
|
+
},
|
11282
|
+
},
|
11283
|
+
},
|
11284
|
+
},
|
11285
|
+
errors: [
|
11286
|
+
{
|
11287
|
+
name: 'ReactionMessageDeleted',
|
11288
|
+
description:
|
11289
|
+
'Indicates that the message has been deleted and reactions can no longer be added/removed.',
|
11290
|
+
},
|
11291
|
+
{
|
11292
|
+
name: 'ReactionInvalidValue',
|
11293
|
+
description:
|
11294
|
+
'Indicates the value for the reaction is not acceptable. In general, this means it is not an emoji.',
|
11295
|
+
},
|
11296
|
+
],
|
11297
|
+
},
|
11298
|
+
},
|
11299
|
+
},
|
11079
11300
|
ChatBskyConvoSendMessage: {
|
11080
11301
|
lexicon: 1,
|
11081
11302
|
id: 'chat.bsky.convo.sendMessage',
|
@@ -11882,6 +12103,37 @@ export const schemaDict = {
|
|
11882
12103
|
},
|
11883
12104
|
},
|
11884
12105
|
},
|
12106
|
+
subjectView: {
|
12107
|
+
description:
|
12108
|
+
"Detailed view of a subject. For record subjects, the author's repo and profile will be returned.",
|
12109
|
+
type: 'object',
|
12110
|
+
required: ['type', 'subject'],
|
12111
|
+
properties: {
|
12112
|
+
type: {
|
12113
|
+
type: 'ref',
|
12114
|
+
ref: 'lex:com.atproto.moderation.defs#subjectType',
|
12115
|
+
},
|
12116
|
+
subject: {
|
12117
|
+
type: 'string',
|
12118
|
+
},
|
12119
|
+
status: {
|
12120
|
+
type: 'ref',
|
12121
|
+
ref: 'lex:tools.ozone.moderation.defs#subjectStatusView',
|
12122
|
+
},
|
12123
|
+
repo: {
|
12124
|
+
type: 'ref',
|
12125
|
+
ref: 'lex:tools.ozone.moderation.defs#repoViewDetail',
|
12126
|
+
},
|
12127
|
+
profile: {
|
12128
|
+
type: 'union',
|
12129
|
+
refs: [],
|
12130
|
+
},
|
12131
|
+
record: {
|
12132
|
+
type: 'ref',
|
12133
|
+
ref: 'lex:tools.ozone.moderation.defs#recordViewDetail',
|
12134
|
+
},
|
12135
|
+
},
|
12136
|
+
},
|
11885
12137
|
accountStats: {
|
11886
12138
|
description: 'Statistics about a particular account subject',
|
11887
12139
|
type: 'object',
|
@@ -13044,6 +13296,46 @@ export const schemaDict = {
|
|
13044
13296
|
},
|
13045
13297
|
},
|
13046
13298
|
},
|
13299
|
+
ToolsOzoneModerationGetSubjects: {
|
13300
|
+
lexicon: 1,
|
13301
|
+
id: 'tools.ozone.moderation.getSubjects',
|
13302
|
+
defs: {
|
13303
|
+
main: {
|
13304
|
+
type: 'query',
|
13305
|
+
description: 'Get details about subjects.',
|
13306
|
+
parameters: {
|
13307
|
+
type: 'params',
|
13308
|
+
required: ['subjects'],
|
13309
|
+
properties: {
|
13310
|
+
subjects: {
|
13311
|
+
type: 'array',
|
13312
|
+
maxLength: 100,
|
13313
|
+
minLength: 1,
|
13314
|
+
items: {
|
13315
|
+
type: 'string',
|
13316
|
+
},
|
13317
|
+
},
|
13318
|
+
},
|
13319
|
+
},
|
13320
|
+
output: {
|
13321
|
+
encoding: 'application/json',
|
13322
|
+
schema: {
|
13323
|
+
type: 'object',
|
13324
|
+
required: ['subjects'],
|
13325
|
+
properties: {
|
13326
|
+
subjects: {
|
13327
|
+
type: 'array',
|
13328
|
+
items: {
|
13329
|
+
type: 'ref',
|
13330
|
+
ref: 'lex:tools.ozone.moderation.defs#subjectView',
|
13331
|
+
},
|
13332
|
+
},
|
13333
|
+
},
|
13334
|
+
},
|
13335
|
+
},
|
13336
|
+
},
|
13337
|
+
},
|
13338
|
+
},
|
13047
13339
|
ToolsOzoneModerationQueryEvents: {
|
13048
13340
|
lexicon: 1,
|
13049
13341
|
id: 'tools.ozone.moderation.queryEvents',
|
@@ -14690,6 +14982,7 @@ export const ids = {
|
|
14690
14982
|
ChatBskyActorDeleteAccount: 'chat.bsky.actor.deleteAccount',
|
14691
14983
|
ChatBskyActorExportAccountData: 'chat.bsky.actor.exportAccountData',
|
14692
14984
|
ChatBskyConvoAcceptConvo: 'chat.bsky.convo.acceptConvo',
|
14985
|
+
ChatBskyConvoAddReaction: 'chat.bsky.convo.addReaction',
|
14693
14986
|
ChatBskyConvoDefs: 'chat.bsky.convo.defs',
|
14694
14987
|
ChatBskyConvoDeleteMessageForSelf: 'chat.bsky.convo.deleteMessageForSelf',
|
14695
14988
|
ChatBskyConvoGetConvo: 'chat.bsky.convo.getConvo',
|
@@ -14700,6 +14993,7 @@ export const ids = {
|
|
14700
14993
|
ChatBskyConvoLeaveConvo: 'chat.bsky.convo.leaveConvo',
|
14701
14994
|
ChatBskyConvoListConvos: 'chat.bsky.convo.listConvos',
|
14702
14995
|
ChatBskyConvoMuteConvo: 'chat.bsky.convo.muteConvo',
|
14996
|
+
ChatBskyConvoRemoveReaction: 'chat.bsky.convo.removeReaction',
|
14703
14997
|
ChatBskyConvoSendMessage: 'chat.bsky.convo.sendMessage',
|
14704
14998
|
ChatBskyConvoSendMessageBatch: 'chat.bsky.convo.sendMessageBatch',
|
14705
14999
|
ChatBskyConvoUnmuteConvo: 'chat.bsky.convo.unmuteConvo',
|
@@ -14726,6 +15020,7 @@ export const ids = {
|
|
14726
15020
|
ToolsOzoneModerationGetReporterStats:
|
14727
15021
|
'tools.ozone.moderation.getReporterStats',
|
14728
15022
|
ToolsOzoneModerationGetRepos: 'tools.ozone.moderation.getRepos',
|
15023
|
+
ToolsOzoneModerationGetSubjects: 'tools.ozone.moderation.getSubjects',
|
14729
15024
|
ToolsOzoneModerationQueryEvents: 'tools.ozone.moderation.queryEvents',
|
14730
15025
|
ToolsOzoneModerationQueryStatuses: 'tools.ozone.moderation.queryStatuses',
|
14731
15026
|
ToolsOzoneModerationSearchRepos: 'tools.ozone.moderation.searchRepos',
|
@@ -0,0 +1,63 @@
|
|
1
|
+
/**
|
2
|
+
* GENERATED CODE - DO NOT MODIFY
|
3
|
+
*/
|
4
|
+
import express from 'express'
|
5
|
+
import { type ValidationResult, BlobRef } from '@atproto/lexicon'
|
6
|
+
import { CID } from 'multiformats/cid'
|
7
|
+
import { validate as _validate } from '../../../../lexicons'
|
8
|
+
import {
|
9
|
+
type $Typed,
|
10
|
+
is$typed as _is$typed,
|
11
|
+
type OmitKey,
|
12
|
+
} from '../../../../util'
|
13
|
+
import { HandlerAuth, HandlerPipeThrough } from '@atproto/xrpc-server'
|
14
|
+
import type * as ChatBskyConvoDefs from './defs.js'
|
15
|
+
|
16
|
+
const is$typed = _is$typed,
|
17
|
+
validate = _validate
|
18
|
+
const id = 'chat.bsky.convo.addReaction'
|
19
|
+
|
20
|
+
export interface QueryParams {}
|
21
|
+
|
22
|
+
export interface InputSchema {
|
23
|
+
convoId: string
|
24
|
+
messageId: string
|
25
|
+
value: string
|
26
|
+
}
|
27
|
+
|
28
|
+
export interface OutputSchema {
|
29
|
+
message: ChatBskyConvoDefs.MessageView
|
30
|
+
}
|
31
|
+
|
32
|
+
export interface HandlerInput {
|
33
|
+
encoding: 'application/json'
|
34
|
+
body: InputSchema
|
35
|
+
}
|
36
|
+
|
37
|
+
export interface HandlerSuccess {
|
38
|
+
encoding: 'application/json'
|
39
|
+
body: OutputSchema
|
40
|
+
headers?: { [key: string]: string }
|
41
|
+
}
|
42
|
+
|
43
|
+
export interface HandlerError {
|
44
|
+
status: number
|
45
|
+
message?: string
|
46
|
+
error?:
|
47
|
+
| 'ReactionMessageDeleted'
|
48
|
+
| 'ReactionLimitReached'
|
49
|
+
| 'ReactionInvalidValue'
|
50
|
+
}
|
51
|
+
|
52
|
+
export type HandlerOutput = HandlerError | HandlerSuccess | HandlerPipeThrough
|
53
|
+
export type HandlerReqCtx<HA extends HandlerAuth = never> = {
|
54
|
+
auth: HA
|
55
|
+
params: QueryParams
|
56
|
+
input: HandlerInput
|
57
|
+
req: express.Request
|
58
|
+
res: express.Response
|
59
|
+
resetRouteRateLimits: () => Promise<void>
|
60
|
+
}
|
61
|
+
export type Handler<HA extends HandlerAuth = never> = (
|
62
|
+
ctx: HandlerReqCtx<HA>,
|
63
|
+
) => Promise<HandlerOutput> | HandlerOutput
|
@@ -60,6 +60,7 @@ export interface MessageView {
|
|
60
60
|
/** Annotations of text (mentions, URLs, hashtags, etc) */
|
61
61
|
facets?: AppBskyRichtextFacet.Main[]
|
62
62
|
embed?: $Typed<AppBskyEmbedRecord.View> | { $type: string }
|
63
|
+
reactions?: ReactionView[]
|
63
64
|
sender: MessageViewSender
|
64
65
|
sentAt: string
|
65
66
|
}
|
@@ -107,6 +108,54 @@ export function validateMessageViewSender<V>(v: V) {
|
|
107
108
|
return validate<MessageViewSender & V>(v, id, hashMessageViewSender)
|
108
109
|
}
|
109
110
|
|
111
|
+
export interface ReactionView {
|
112
|
+
$type?: 'chat.bsky.convo.defs#reactionView'
|
113
|
+
value: string
|
114
|
+
sender: ReactionViewSender
|
115
|
+
createdAt: string
|
116
|
+
}
|
117
|
+
|
118
|
+
const hashReactionView = 'reactionView'
|
119
|
+
|
120
|
+
export function isReactionView<V>(v: V) {
|
121
|
+
return is$typed(v, id, hashReactionView)
|
122
|
+
}
|
123
|
+
|
124
|
+
export function validateReactionView<V>(v: V) {
|
125
|
+
return validate<ReactionView & V>(v, id, hashReactionView)
|
126
|
+
}
|
127
|
+
|
128
|
+
export interface ReactionViewSender {
|
129
|
+
$type?: 'chat.bsky.convo.defs#reactionViewSender'
|
130
|
+
did: string
|
131
|
+
}
|
132
|
+
|
133
|
+
const hashReactionViewSender = 'reactionViewSender'
|
134
|
+
|
135
|
+
export function isReactionViewSender<V>(v: V) {
|
136
|
+
return is$typed(v, id, hashReactionViewSender)
|
137
|
+
}
|
138
|
+
|
139
|
+
export function validateReactionViewSender<V>(v: V) {
|
140
|
+
return validate<ReactionViewSender & V>(v, id, hashReactionViewSender)
|
141
|
+
}
|
142
|
+
|
143
|
+
export interface MessageAndReactionView {
|
144
|
+
$type?: 'chat.bsky.convo.defs#messageAndReactionView'
|
145
|
+
message: MessageView
|
146
|
+
reaction: ReactionView
|
147
|
+
}
|
148
|
+
|
149
|
+
const hashMessageAndReactionView = 'messageAndReactionView'
|
150
|
+
|
151
|
+
export function isMessageAndReactionView<V>(v: V) {
|
152
|
+
return is$typed(v, id, hashMessageAndReactionView)
|
153
|
+
}
|
154
|
+
|
155
|
+
export function validateMessageAndReactionView<V>(v: V) {
|
156
|
+
return validate<MessageAndReactionView & V>(v, id, hashMessageAndReactionView)
|
157
|
+
}
|
158
|
+
|
110
159
|
export interface ConvoView {
|
111
160
|
$type?: 'chat.bsky.convo.defs#convoView'
|
112
161
|
id: string
|
@@ -115,6 +164,7 @@ export interface ConvoView {
|
|
115
164
|
lastMessage?:
|
116
165
|
| $Typed<MessageView>
|
117
166
|
| $Typed<DeletedMessageView>
|
167
|
+
| $Typed<MessageAndReactionView>
|
118
168
|
| { $type: string }
|
119
169
|
muted: boolean
|
120
170
|
status?: 'request' | 'accepted' | (string & {})
|
@@ -261,3 +311,39 @@ export function isLogReadMessage<V>(v: V) {
|
|
261
311
|
export function validateLogReadMessage<V>(v: V) {
|
262
312
|
return validate<LogReadMessage & V>(v, id, hashLogReadMessage)
|
263
313
|
}
|
314
|
+
|
315
|
+
export interface LogAddReaction {
|
316
|
+
$type?: 'chat.bsky.convo.defs#logAddReaction'
|
317
|
+
rev: string
|
318
|
+
convoId: string
|
319
|
+
message: $Typed<MessageView> | $Typed<DeletedMessageView> | { $type: string }
|
320
|
+
reaction: ReactionView
|
321
|
+
}
|
322
|
+
|
323
|
+
const hashLogAddReaction = 'logAddReaction'
|
324
|
+
|
325
|
+
export function isLogAddReaction<V>(v: V) {
|
326
|
+
return is$typed(v, id, hashLogAddReaction)
|
327
|
+
}
|
328
|
+
|
329
|
+
export function validateLogAddReaction<V>(v: V) {
|
330
|
+
return validate<LogAddReaction & V>(v, id, hashLogAddReaction)
|
331
|
+
}
|
332
|
+
|
333
|
+
export interface LogRemoveReaction {
|
334
|
+
$type?: 'chat.bsky.convo.defs#logRemoveReaction'
|
335
|
+
rev: string
|
336
|
+
convoId: string
|
337
|
+
message: $Typed<MessageView> | $Typed<DeletedMessageView> | { $type: string }
|
338
|
+
reaction: ReactionView
|
339
|
+
}
|
340
|
+
|
341
|
+
const hashLogRemoveReaction = 'logRemoveReaction'
|
342
|
+
|
343
|
+
export function isLogRemoveReaction<V>(v: V) {
|
344
|
+
return is$typed(v, id, hashLogRemoveReaction)
|
345
|
+
}
|
346
|
+
|
347
|
+
export function validateLogRemoveReaction<V>(v: V) {
|
348
|
+
return validate<LogRemoveReaction & V>(v, id, hashLogRemoveReaction)
|
349
|
+
}
|
@@ -29,8 +29,13 @@ export interface OutputSchema {
|
|
29
29
|
| $Typed<ChatBskyConvoDefs.LogBeginConvo>
|
30
30
|
| $Typed<ChatBskyConvoDefs.LogAcceptConvo>
|
31
31
|
| $Typed<ChatBskyConvoDefs.LogLeaveConvo>
|
32
|
+
| $Typed<ChatBskyConvoDefs.LogMuteConvo>
|
33
|
+
| $Typed<ChatBskyConvoDefs.LogUnmuteConvo>
|
32
34
|
| $Typed<ChatBskyConvoDefs.LogCreateMessage>
|
33
35
|
| $Typed<ChatBskyConvoDefs.LogDeleteMessage>
|
36
|
+
| $Typed<ChatBskyConvoDefs.LogReadMessage>
|
37
|
+
| $Typed<ChatBskyConvoDefs.LogAddReaction>
|
38
|
+
| $Typed<ChatBskyConvoDefs.LogRemoveReaction>
|
34
39
|
| { $type: string }
|
35
40
|
)[]
|
36
41
|
}
|
@@ -0,0 +1,60 @@
|
|
1
|
+
/**
|
2
|
+
* GENERATED CODE - DO NOT MODIFY
|
3
|
+
*/
|
4
|
+
import express from 'express'
|
5
|
+
import { type ValidationResult, BlobRef } from '@atproto/lexicon'
|
6
|
+
import { CID } from 'multiformats/cid'
|
7
|
+
import { validate as _validate } from '../../../../lexicons'
|
8
|
+
import {
|
9
|
+
type $Typed,
|
10
|
+
is$typed as _is$typed,
|
11
|
+
type OmitKey,
|
12
|
+
} from '../../../../util'
|
13
|
+
import { HandlerAuth, HandlerPipeThrough } from '@atproto/xrpc-server'
|
14
|
+
import type * as ChatBskyConvoDefs from './defs.js'
|
15
|
+
|
16
|
+
const is$typed = _is$typed,
|
17
|
+
validate = _validate
|
18
|
+
const id = 'chat.bsky.convo.removeReaction'
|
19
|
+
|
20
|
+
export interface QueryParams {}
|
21
|
+
|
22
|
+
export interface InputSchema {
|
23
|
+
convoId: string
|
24
|
+
messageId: string
|
25
|
+
value: string
|
26
|
+
}
|
27
|
+
|
28
|
+
export interface OutputSchema {
|
29
|
+
message: ChatBskyConvoDefs.MessageView
|
30
|
+
}
|
31
|
+
|
32
|
+
export interface HandlerInput {
|
33
|
+
encoding: 'application/json'
|
34
|
+
body: InputSchema
|
35
|
+
}
|
36
|
+
|
37
|
+
export interface HandlerSuccess {
|
38
|
+
encoding: 'application/json'
|
39
|
+
body: OutputSchema
|
40
|
+
headers?: { [key: string]: string }
|
41
|
+
}
|
42
|
+
|
43
|
+
export interface HandlerError {
|
44
|
+
status: number
|
45
|
+
message?: string
|
46
|
+
error?: 'ReactionMessageDeleted' | 'ReactionInvalidValue'
|
47
|
+
}
|
48
|
+
|
49
|
+
export type HandlerOutput = HandlerError | HandlerSuccess | HandlerPipeThrough
|
50
|
+
export type HandlerReqCtx<HA extends HandlerAuth = never> = {
|
51
|
+
auth: HA
|
52
|
+
params: QueryParams
|
53
|
+
input: HandlerInput
|
54
|
+
req: express.Request
|
55
|
+
res: express.Response
|
56
|
+
resetRouteRateLimits: () => Promise<void>
|
57
|
+
}
|
58
|
+
export type Handler<HA extends HandlerAuth = never> = (
|
59
|
+
ctx: HandlerReqCtx<HA>,
|
60
|
+
) => Promise<HandlerOutput> | HandlerOutput
|