@atproto/pds 0.4.109 → 0.4.111

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.
Files changed (31) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist/lexicon/index.d.ts +4 -0
  3. package/dist/lexicon/index.d.ts.map +1 -1
  4. package/dist/lexicon/index.js +8 -0
  5. package/dist/lexicon/index.js.map +1 -1
  6. package/dist/lexicon/lexicons.d.ts +394 -4
  7. package/dist/lexicon/lexicons.d.ts.map +1 -1
  8. package/dist/lexicon/lexicons.js +216 -0
  9. package/dist/lexicon/lexicons.js.map +1 -1
  10. package/dist/lexicon/types/chat/bsky/convo/addReaction.d.ts +43 -0
  11. package/dist/lexicon/types/chat/bsky/convo/addReaction.d.ts.map +1 -0
  12. package/dist/lexicon/types/chat/bsky/convo/addReaction.js +7 -0
  13. package/dist/lexicon/types/chat/bsky/convo/addReaction.js.map +1 -0
  14. package/dist/lexicon/types/chat/bsky/convo/defs.d.ts +45 -1
  15. package/dist/lexicon/types/chat/bsky/convo/defs.d.ts.map +1 -1
  16. package/dist/lexicon/types/chat/bsky/convo/defs.js +45 -0
  17. package/dist/lexicon/types/chat/bsky/convo/defs.js.map +1 -1
  18. package/dist/lexicon/types/chat/bsky/convo/getLog.d.ts +1 -1
  19. package/dist/lexicon/types/chat/bsky/convo/getLog.d.ts.map +1 -1
  20. package/dist/lexicon/types/chat/bsky/convo/removeReaction.d.ts +43 -0
  21. package/dist/lexicon/types/chat/bsky/convo/removeReaction.d.ts.map +1 -0
  22. package/dist/lexicon/types/chat/bsky/convo/removeReaction.js +7 -0
  23. package/dist/lexicon/types/chat/bsky/convo/removeReaction.js.map +1 -0
  24. package/package.json +5 -5
  25. package/src/lexicon/index.ts +24 -0
  26. package/src/lexicon/lexicons.ts +223 -0
  27. package/src/lexicon/types/chat/bsky/convo/addReaction.ts +63 -0
  28. package/src/lexicon/types/chat/bsky/convo/defs.ts +86 -0
  29. package/src/lexicon/types/chat/bsky/convo/getLog.ts +5 -0
  30. package/src/lexicon/types/chat/bsky/convo/removeReaction.ts +60 -0
  31. package/tsconfig.build.tsbuildinfo +1 -1
@@ -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',
@@ -14690,6 +14911,7 @@ export const ids = {
14690
14911
  ChatBskyActorDeleteAccount: 'chat.bsky.actor.deleteAccount',
14691
14912
  ChatBskyActorExportAccountData: 'chat.bsky.actor.exportAccountData',
14692
14913
  ChatBskyConvoAcceptConvo: 'chat.bsky.convo.acceptConvo',
14914
+ ChatBskyConvoAddReaction: 'chat.bsky.convo.addReaction',
14693
14915
  ChatBskyConvoDefs: 'chat.bsky.convo.defs',
14694
14916
  ChatBskyConvoDeleteMessageForSelf: 'chat.bsky.convo.deleteMessageForSelf',
14695
14917
  ChatBskyConvoGetConvo: 'chat.bsky.convo.getConvo',
@@ -14700,6 +14922,7 @@ export const ids = {
14700
14922
  ChatBskyConvoLeaveConvo: 'chat.bsky.convo.leaveConvo',
14701
14923
  ChatBskyConvoListConvos: 'chat.bsky.convo.listConvos',
14702
14924
  ChatBskyConvoMuteConvo: 'chat.bsky.convo.muteConvo',
14925
+ ChatBskyConvoRemoveReaction: 'chat.bsky.convo.removeReaction',
14703
14926
  ChatBskyConvoSendMessage: 'chat.bsky.convo.sendMessage',
14704
14927
  ChatBskyConvoSendMessageBatch: 'chat.bsky.convo.sendMessageBatch',
14705
14928
  ChatBskyConvoUnmuteConvo: 'chat.bsky.convo.unmuteConvo',
@@ -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