@atproto/pds 0.4.98 → 0.4.99
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 +7 -0
- package/LICENSE.txt +1 -1
- package/dist/api/com/atproto/server/activateAccount.js +1 -1
- package/dist/api/com/atproto/server/activateAccount.js.map +1 -1
- package/dist/lexicon/index.d.ts +4 -0
- package/dist/lexicon/index.d.ts.map +1 -1
- package/dist/lexicon/index.js +8 -0
- package/dist/lexicon/index.js.map +1 -1
- package/dist/lexicon/lexicons.d.ts +328 -6
- package/dist/lexicon/lexicons.d.ts.map +1 -1
- package/dist/lexicon/lexicons.js +169 -2
- package/dist/lexicon/lexicons.js.map +1 -1
- package/dist/lexicon/types/chat/bsky/convo/acceptConvo.d.ts +40 -0
- package/dist/lexicon/types/chat/bsky/convo/acceptConvo.d.ts.map +1 -0
- package/dist/lexicon/types/chat/bsky/convo/acceptConvo.js +7 -0
- package/dist/lexicon/types/chat/bsky/convo/acceptConvo.js.map +1 -0
- package/dist/lexicon/types/chat/bsky/convo/defs.d.ts +32 -1
- package/dist/lexicon/types/chat/bsky/convo/defs.d.ts.map +1 -1
- package/dist/lexicon/types/chat/bsky/convo/defs.js +36 -0
- package/dist/lexicon/types/chat/bsky/convo/defs.js.map +1 -1
- package/dist/lexicon/types/chat/bsky/convo/getConvoAvailability.d.ts +37 -0
- package/dist/lexicon/types/chat/bsky/convo/getConvoAvailability.d.ts.map +1 -0
- package/dist/lexicon/types/chat/bsky/convo/getConvoAvailability.js +7 -0
- package/dist/lexicon/types/chat/bsky/convo/getConvoAvailability.js.map +1 -0
- 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/listConvos.d.ts +2 -0
- package/dist/lexicon/types/chat/bsky/convo/listConvos.d.ts.map +1 -1
- package/dist/lexicon/types/com/atproto/repo/applyWrites.d.ts +1 -0
- package/dist/lexicon/types/com/atproto/repo/applyWrites.d.ts.map +1 -1
- package/dist/lexicon/types/com/atproto/repo/applyWrites.js.map +1 -1
- package/dist/lexicon/types/tools/ozone/team/listMembers.d.ts +2 -0
- package/dist/lexicon/types/tools/ozone/team/listMembers.d.ts.map +1 -1
- package/package.json +4 -4
- package/src/api/com/atproto/server/activateAccount.ts +1 -1
- package/src/lexicon/index.ts +24 -0
- package/src/lexicon/lexicons.ts +172 -2
- package/src/lexicon/types/chat/bsky/convo/acceptConvo.ts +53 -0
- package/src/lexicon/types/chat/bsky/convo/defs.ts +66 -1
- package/src/lexicon/types/chat/bsky/convo/getConvoAvailability.ts +51 -0
- package/src/lexicon/types/chat/bsky/convo/getLog.ts +1 -0
- package/src/lexicon/types/chat/bsky/convo/listConvos.ts +2 -0
- package/src/lexicon/types/com/atproto/repo/applyWrites.ts +1 -0
- package/src/lexicon/types/tools/ozone/team/listMembers.ts +2 -0
- package/tests/crud.test.ts +1 -1
- package/tsconfig.build.tsbuildinfo +1 -1
package/src/lexicon/lexicons.ts
CHANGED
@@ -1371,6 +1371,9 @@ export const schemaDict = {
|
|
1371
1371
|
rkey: {
|
1372
1372
|
type: 'string',
|
1373
1373
|
maxLength: 512,
|
1374
|
+
format: 'record-key',
|
1375
|
+
description:
|
1376
|
+
'NOTE: maxLength is redundant with record-key format. Keeping it temporarily to ensure backwards compatibility.',
|
1374
1377
|
},
|
1375
1378
|
value: {
|
1376
1379
|
type: 'unknown',
|
@@ -1388,6 +1391,7 @@ export const schemaDict = {
|
|
1388
1391
|
},
|
1389
1392
|
rkey: {
|
1390
1393
|
type: 'string',
|
1394
|
+
format: 'record-key',
|
1391
1395
|
},
|
1392
1396
|
value: {
|
1393
1397
|
type: 'unknown',
|
@@ -1405,6 +1409,7 @@ export const schemaDict = {
|
|
1405
1409
|
},
|
1406
1410
|
rkey: {
|
1407
1411
|
type: 'string',
|
1412
|
+
format: 'record-key',
|
1408
1413
|
},
|
1409
1414
|
},
|
1410
1415
|
},
|
@@ -1478,6 +1483,7 @@ export const schemaDict = {
|
|
1478
1483
|
},
|
1479
1484
|
rkey: {
|
1480
1485
|
type: 'string',
|
1486
|
+
format: 'record-key',
|
1481
1487
|
description: 'The Record Key.',
|
1482
1488
|
maxLength: 512,
|
1483
1489
|
},
|
@@ -1548,6 +1554,7 @@ export const schemaDict = {
|
|
1548
1554
|
},
|
1549
1555
|
rev: {
|
1550
1556
|
type: 'string',
|
1557
|
+
format: 'tid',
|
1551
1558
|
},
|
1552
1559
|
},
|
1553
1560
|
},
|
@@ -1580,6 +1587,7 @@ export const schemaDict = {
|
|
1580
1587
|
},
|
1581
1588
|
rkey: {
|
1582
1589
|
type: 'string',
|
1590
|
+
format: 'record-key',
|
1583
1591
|
description: 'The Record Key.',
|
1584
1592
|
},
|
1585
1593
|
swapRecord: {
|
@@ -1705,6 +1713,7 @@ export const schemaDict = {
|
|
1705
1713
|
rkey: {
|
1706
1714
|
type: 'string',
|
1707
1715
|
description: 'The Record Key.',
|
1716
|
+
format: 'record-key',
|
1708
1717
|
},
|
1709
1718
|
cid: {
|
1710
1719
|
type: 'string',
|
@@ -1929,6 +1938,7 @@ export const schemaDict = {
|
|
1929
1938
|
},
|
1930
1939
|
rkey: {
|
1931
1940
|
type: 'string',
|
1941
|
+
format: 'record-key',
|
1932
1942
|
description: 'The Record Key.',
|
1933
1943
|
maxLength: 512,
|
1934
1944
|
},
|
@@ -3347,6 +3357,7 @@ export const schemaDict = {
|
|
3347
3357
|
},
|
3348
3358
|
rev: {
|
3349
3359
|
type: 'string',
|
3360
|
+
format: 'tid',
|
3350
3361
|
},
|
3351
3362
|
},
|
3352
3363
|
},
|
@@ -3392,6 +3403,7 @@ export const schemaDict = {
|
|
3392
3403
|
rkey: {
|
3393
3404
|
type: 'string',
|
3394
3405
|
description: 'Record Key',
|
3406
|
+
format: 'record-key',
|
3395
3407
|
},
|
3396
3408
|
commit: {
|
3397
3409
|
type: 'string',
|
@@ -3443,6 +3455,7 @@ export const schemaDict = {
|
|
3443
3455
|
},
|
3444
3456
|
since: {
|
3445
3457
|
type: 'string',
|
3458
|
+
format: 'tid',
|
3446
3459
|
description:
|
3447
3460
|
"The revision ('rev') of the repo to create a diff from.",
|
3448
3461
|
},
|
@@ -3508,6 +3521,7 @@ export const schemaDict = {
|
|
3508
3521
|
},
|
3509
3522
|
rev: {
|
3510
3523
|
type: 'string',
|
3524
|
+
format: 'tid',
|
3511
3525
|
description:
|
3512
3526
|
'Optional field, the current rev of the repo, if active=true',
|
3513
3527
|
},
|
@@ -3541,6 +3555,7 @@ export const schemaDict = {
|
|
3541
3555
|
},
|
3542
3556
|
since: {
|
3543
3557
|
type: 'string',
|
3558
|
+
format: 'tid',
|
3544
3559
|
description: 'Optional revision of the repo to list blobs since.',
|
3545
3560
|
},
|
3546
3561
|
limit: {
|
@@ -3647,6 +3662,7 @@ export const schemaDict = {
|
|
3647
3662
|
},
|
3648
3663
|
rev: {
|
3649
3664
|
type: 'string',
|
3665
|
+
format: 'tid',
|
3650
3666
|
},
|
3651
3667
|
active: {
|
3652
3668
|
type: 'boolean',
|
@@ -3862,11 +3878,13 @@ export const schemaDict = {
|
|
3862
3878
|
},
|
3863
3879
|
rev: {
|
3864
3880
|
type: 'string',
|
3881
|
+
format: 'tid',
|
3865
3882
|
description:
|
3866
3883
|
'The rev of the emitted commit. Note that this information is also in the commit object included in blocks, unless this is a tooBig event.',
|
3867
3884
|
},
|
3868
3885
|
since: {
|
3869
3886
|
type: 'string',
|
3887
|
+
format: 'tid',
|
3870
3888
|
description:
|
3871
3889
|
'The rev of the last emitted commit from this repo (if any).',
|
3872
3890
|
},
|
@@ -10188,6 +10206,40 @@ export const schemaDict = {
|
|
10188
10206
|
},
|
10189
10207
|
},
|
10190
10208
|
},
|
10209
|
+
ChatBskyConvoAcceptConvo: {
|
10210
|
+
lexicon: 1,
|
10211
|
+
id: 'chat.bsky.convo.acceptConvo',
|
10212
|
+
defs: {
|
10213
|
+
main: {
|
10214
|
+
type: 'procedure',
|
10215
|
+
input: {
|
10216
|
+
encoding: 'application/json',
|
10217
|
+
schema: {
|
10218
|
+
type: 'object',
|
10219
|
+
required: ['convoId'],
|
10220
|
+
properties: {
|
10221
|
+
convoId: {
|
10222
|
+
type: 'string',
|
10223
|
+
},
|
10224
|
+
},
|
10225
|
+
},
|
10226
|
+
},
|
10227
|
+
output: {
|
10228
|
+
encoding: 'application/json',
|
10229
|
+
schema: {
|
10230
|
+
type: 'object',
|
10231
|
+
properties: {
|
10232
|
+
rev: {
|
10233
|
+
description:
|
10234
|
+
'Rev when the convo was accepted. If not present, the convo was already accepted.',
|
10235
|
+
type: 'string',
|
10236
|
+
},
|
10237
|
+
},
|
10238
|
+
},
|
10239
|
+
},
|
10240
|
+
},
|
10241
|
+
},
|
10242
|
+
},
|
10191
10243
|
ChatBskyConvoDefs: {
|
10192
10244
|
lexicon: 1,
|
10193
10245
|
id: 'chat.bsky.convo.defs',
|
@@ -10325,8 +10377,9 @@ export const schemaDict = {
|
|
10325
10377
|
muted: {
|
10326
10378
|
type: 'boolean',
|
10327
10379
|
},
|
10328
|
-
|
10329
|
-
type: '
|
10380
|
+
status: {
|
10381
|
+
type: 'string',
|
10382
|
+
knownValues: ['request', 'accepted'],
|
10330
10383
|
},
|
10331
10384
|
unreadCount: {
|
10332
10385
|
type: 'integer',
|
@@ -10345,6 +10398,18 @@ export const schemaDict = {
|
|
10345
10398
|
},
|
10346
10399
|
},
|
10347
10400
|
},
|
10401
|
+
logAcceptConvo: {
|
10402
|
+
type: 'object',
|
10403
|
+
required: ['rev', 'convoId'],
|
10404
|
+
properties: {
|
10405
|
+
rev: {
|
10406
|
+
type: 'string',
|
10407
|
+
},
|
10408
|
+
convoId: {
|
10409
|
+
type: 'string',
|
10410
|
+
},
|
10411
|
+
},
|
10412
|
+
},
|
10348
10413
|
logLeaveConvo: {
|
10349
10414
|
type: 'object',
|
10350
10415
|
required: ['rev', 'convoId'],
|
@@ -10357,6 +10422,30 @@ export const schemaDict = {
|
|
10357
10422
|
},
|
10358
10423
|
},
|
10359
10424
|
},
|
10425
|
+
logMuteConvo: {
|
10426
|
+
type: 'object',
|
10427
|
+
required: ['rev', 'convoId'],
|
10428
|
+
properties: {
|
10429
|
+
rev: {
|
10430
|
+
type: 'string',
|
10431
|
+
},
|
10432
|
+
convoId: {
|
10433
|
+
type: 'string',
|
10434
|
+
},
|
10435
|
+
},
|
10436
|
+
},
|
10437
|
+
logUnmuteConvo: {
|
10438
|
+
type: 'object',
|
10439
|
+
required: ['rev', 'convoId'],
|
10440
|
+
properties: {
|
10441
|
+
rev: {
|
10442
|
+
type: 'string',
|
10443
|
+
},
|
10444
|
+
convoId: {
|
10445
|
+
type: 'string',
|
10446
|
+
},
|
10447
|
+
},
|
10448
|
+
},
|
10360
10449
|
logCreateMessage: {
|
10361
10450
|
type: 'object',
|
10362
10451
|
required: ['rev', 'convoId', 'message'],
|
@@ -10395,6 +10484,25 @@ export const schemaDict = {
|
|
10395
10484
|
},
|
10396
10485
|
},
|
10397
10486
|
},
|
10487
|
+
logReadMessage: {
|
10488
|
+
type: 'object',
|
10489
|
+
required: ['rev', 'convoId', 'message'],
|
10490
|
+
properties: {
|
10491
|
+
rev: {
|
10492
|
+
type: 'string',
|
10493
|
+
},
|
10494
|
+
convoId: {
|
10495
|
+
type: 'string',
|
10496
|
+
},
|
10497
|
+
message: {
|
10498
|
+
type: 'union',
|
10499
|
+
refs: [
|
10500
|
+
'lex:chat.bsky.convo.defs#messageView',
|
10501
|
+
'lex:chat.bsky.convo.defs#deletedMessageView',
|
10502
|
+
],
|
10503
|
+
},
|
10504
|
+
},
|
10505
|
+
},
|
10398
10506
|
},
|
10399
10507
|
},
|
10400
10508
|
ChatBskyConvoDeleteMessageForSelf: {
|
@@ -10459,6 +10567,48 @@ export const schemaDict = {
|
|
10459
10567
|
},
|
10460
10568
|
},
|
10461
10569
|
},
|
10570
|
+
ChatBskyConvoGetConvoAvailability: {
|
10571
|
+
lexicon: 1,
|
10572
|
+
id: 'chat.bsky.convo.getConvoAvailability',
|
10573
|
+
defs: {
|
10574
|
+
main: {
|
10575
|
+
type: 'query',
|
10576
|
+
description:
|
10577
|
+
'Get whether the requester and the other members can chat. If an existing convo is found for these members, it is returned.',
|
10578
|
+
parameters: {
|
10579
|
+
type: 'params',
|
10580
|
+
required: ['members'],
|
10581
|
+
properties: {
|
10582
|
+
members: {
|
10583
|
+
type: 'array',
|
10584
|
+
minLength: 1,
|
10585
|
+
maxLength: 10,
|
10586
|
+
items: {
|
10587
|
+
type: 'string',
|
10588
|
+
format: 'did',
|
10589
|
+
},
|
10590
|
+
},
|
10591
|
+
},
|
10592
|
+
},
|
10593
|
+
output: {
|
10594
|
+
encoding: 'application/json',
|
10595
|
+
schema: {
|
10596
|
+
type: 'object',
|
10597
|
+
required: ['canChat'],
|
10598
|
+
properties: {
|
10599
|
+
canChat: {
|
10600
|
+
type: 'boolean',
|
10601
|
+
},
|
10602
|
+
convo: {
|
10603
|
+
type: 'ref',
|
10604
|
+
ref: 'lex:chat.bsky.convo.defs#convoView',
|
10605
|
+
},
|
10606
|
+
},
|
10607
|
+
},
|
10608
|
+
},
|
10609
|
+
},
|
10610
|
+
},
|
10611
|
+
},
|
10462
10612
|
ChatBskyConvoGetConvoForMembers: {
|
10463
10613
|
lexicon: 1,
|
10464
10614
|
id: 'chat.bsky.convo.getConvoForMembers',
|
@@ -10526,6 +10676,7 @@ export const schemaDict = {
|
|
10526
10676
|
type: 'union',
|
10527
10677
|
refs: [
|
10528
10678
|
'lex:chat.bsky.convo.defs#logBeginConvo',
|
10679
|
+
'lex:chat.bsky.convo.defs#logAcceptConvo',
|
10529
10680
|
'lex:chat.bsky.convo.defs#logLeaveConvo',
|
10530
10681
|
'lex:chat.bsky.convo.defs#logCreateMessage',
|
10531
10682
|
'lex:chat.bsky.convo.defs#logDeleteMessage',
|
@@ -10641,6 +10792,14 @@ export const schemaDict = {
|
|
10641
10792
|
cursor: {
|
10642
10793
|
type: 'string',
|
10643
10794
|
},
|
10795
|
+
readState: {
|
10796
|
+
type: 'string',
|
10797
|
+
knownValues: ['unread'],
|
10798
|
+
},
|
10799
|
+
status: {
|
10800
|
+
type: 'string',
|
10801
|
+
knownValues: ['request', 'accepted'],
|
10802
|
+
},
|
10644
10803
|
},
|
10645
10804
|
},
|
10646
10805
|
output: {
|
@@ -13953,6 +14112,15 @@ export const schemaDict = {
|
|
13953
14112
|
parameters: {
|
13954
14113
|
type: 'params',
|
13955
14114
|
properties: {
|
14115
|
+
disabled: {
|
14116
|
+
type: 'boolean',
|
14117
|
+
},
|
14118
|
+
roles: {
|
14119
|
+
type: 'array',
|
14120
|
+
items: {
|
14121
|
+
type: 'string',
|
14122
|
+
},
|
14123
|
+
},
|
13956
14124
|
limit: {
|
13957
14125
|
type: 'integer',
|
13958
14126
|
minimum: 1,
|
@@ -14262,9 +14430,11 @@ export const ids = {
|
|
14262
14430
|
ChatBskyActorDefs: 'chat.bsky.actor.defs',
|
14263
14431
|
ChatBskyActorDeleteAccount: 'chat.bsky.actor.deleteAccount',
|
14264
14432
|
ChatBskyActorExportAccountData: 'chat.bsky.actor.exportAccountData',
|
14433
|
+
ChatBskyConvoAcceptConvo: 'chat.bsky.convo.acceptConvo',
|
14265
14434
|
ChatBskyConvoDefs: 'chat.bsky.convo.defs',
|
14266
14435
|
ChatBskyConvoDeleteMessageForSelf: 'chat.bsky.convo.deleteMessageForSelf',
|
14267
14436
|
ChatBskyConvoGetConvo: 'chat.bsky.convo.getConvo',
|
14437
|
+
ChatBskyConvoGetConvoAvailability: 'chat.bsky.convo.getConvoAvailability',
|
14268
14438
|
ChatBskyConvoGetConvoForMembers: 'chat.bsky.convo.getConvoForMembers',
|
14269
14439
|
ChatBskyConvoGetLog: 'chat.bsky.convo.getLog',
|
14270
14440
|
ChatBskyConvoGetMessages: 'chat.bsky.convo.getMessages',
|
@@ -0,0 +1,53 @@
|
|
1
|
+
/**
|
2
|
+
* GENERATED CODE - DO NOT MODIFY
|
3
|
+
*/
|
4
|
+
import express from 'express'
|
5
|
+
import { ValidationResult, BlobRef } from '@atproto/lexicon'
|
6
|
+
import { CID } from 'multiformats/cid'
|
7
|
+
import { validate as _validate } from '../../../../lexicons'
|
8
|
+
import { $Typed, is$typed as _is$typed, OmitKey } from '../../../../util'
|
9
|
+
import { HandlerAuth, HandlerPipeThrough } from '@atproto/xrpc-server'
|
10
|
+
|
11
|
+
const is$typed = _is$typed,
|
12
|
+
validate = _validate
|
13
|
+
const id = 'chat.bsky.convo.acceptConvo'
|
14
|
+
|
15
|
+
export interface QueryParams {}
|
16
|
+
|
17
|
+
export interface InputSchema {
|
18
|
+
convoId: string
|
19
|
+
}
|
20
|
+
|
21
|
+
export interface OutputSchema {
|
22
|
+
/** Rev when the convo was accepted. If not present, the convo was already accepted. */
|
23
|
+
rev?: string
|
24
|
+
}
|
25
|
+
|
26
|
+
export interface HandlerInput {
|
27
|
+
encoding: 'application/json'
|
28
|
+
body: InputSchema
|
29
|
+
}
|
30
|
+
|
31
|
+
export interface HandlerSuccess {
|
32
|
+
encoding: 'application/json'
|
33
|
+
body: OutputSchema
|
34
|
+
headers?: { [key: string]: string }
|
35
|
+
}
|
36
|
+
|
37
|
+
export interface HandlerError {
|
38
|
+
status: number
|
39
|
+
message?: string
|
40
|
+
}
|
41
|
+
|
42
|
+
export type HandlerOutput = HandlerError | HandlerSuccess | HandlerPipeThrough
|
43
|
+
export type HandlerReqCtx<HA extends HandlerAuth = never> = {
|
44
|
+
auth: HA
|
45
|
+
params: QueryParams
|
46
|
+
input: HandlerInput
|
47
|
+
req: express.Request
|
48
|
+
res: express.Response
|
49
|
+
resetRouteRateLimits: () => Promise<void>
|
50
|
+
}
|
51
|
+
export type Handler<HA extends HandlerAuth = never> = (
|
52
|
+
ctx: HandlerReqCtx<HA>,
|
53
|
+
) => Promise<HandlerOutput> | HandlerOutput
|
@@ -113,7 +113,7 @@ export interface ConvoView {
|
|
113
113
|
| $Typed<DeletedMessageView>
|
114
114
|
| { $type: string }
|
115
115
|
muted: boolean
|
116
|
-
|
116
|
+
status?: 'request' | 'accepted' | (string & {})
|
117
117
|
unreadCount: number
|
118
118
|
}
|
119
119
|
|
@@ -143,6 +143,22 @@ export function validateLogBeginConvo<V>(v: V) {
|
|
143
143
|
return validate<LogBeginConvo & V>(v, id, hashLogBeginConvo)
|
144
144
|
}
|
145
145
|
|
146
|
+
export interface LogAcceptConvo {
|
147
|
+
$type?: 'chat.bsky.convo.defs#logAcceptConvo'
|
148
|
+
rev: string
|
149
|
+
convoId: string
|
150
|
+
}
|
151
|
+
|
152
|
+
const hashLogAcceptConvo = 'logAcceptConvo'
|
153
|
+
|
154
|
+
export function isLogAcceptConvo<V>(v: V) {
|
155
|
+
return is$typed(v, id, hashLogAcceptConvo)
|
156
|
+
}
|
157
|
+
|
158
|
+
export function validateLogAcceptConvo<V>(v: V) {
|
159
|
+
return validate<LogAcceptConvo & V>(v, id, hashLogAcceptConvo)
|
160
|
+
}
|
161
|
+
|
146
162
|
export interface LogLeaveConvo {
|
147
163
|
$type?: 'chat.bsky.convo.defs#logLeaveConvo'
|
148
164
|
rev: string
|
@@ -159,6 +175,38 @@ export function validateLogLeaveConvo<V>(v: V) {
|
|
159
175
|
return validate<LogLeaveConvo & V>(v, id, hashLogLeaveConvo)
|
160
176
|
}
|
161
177
|
|
178
|
+
export interface LogMuteConvo {
|
179
|
+
$type?: 'chat.bsky.convo.defs#logMuteConvo'
|
180
|
+
rev: string
|
181
|
+
convoId: string
|
182
|
+
}
|
183
|
+
|
184
|
+
const hashLogMuteConvo = 'logMuteConvo'
|
185
|
+
|
186
|
+
export function isLogMuteConvo<V>(v: V) {
|
187
|
+
return is$typed(v, id, hashLogMuteConvo)
|
188
|
+
}
|
189
|
+
|
190
|
+
export function validateLogMuteConvo<V>(v: V) {
|
191
|
+
return validate<LogMuteConvo & V>(v, id, hashLogMuteConvo)
|
192
|
+
}
|
193
|
+
|
194
|
+
export interface LogUnmuteConvo {
|
195
|
+
$type?: 'chat.bsky.convo.defs#logUnmuteConvo'
|
196
|
+
rev: string
|
197
|
+
convoId: string
|
198
|
+
}
|
199
|
+
|
200
|
+
const hashLogUnmuteConvo = 'logUnmuteConvo'
|
201
|
+
|
202
|
+
export function isLogUnmuteConvo<V>(v: V) {
|
203
|
+
return is$typed(v, id, hashLogUnmuteConvo)
|
204
|
+
}
|
205
|
+
|
206
|
+
export function validateLogUnmuteConvo<V>(v: V) {
|
207
|
+
return validate<LogUnmuteConvo & V>(v, id, hashLogUnmuteConvo)
|
208
|
+
}
|
209
|
+
|
162
210
|
export interface LogCreateMessage {
|
163
211
|
$type?: 'chat.bsky.convo.defs#logCreateMessage'
|
164
212
|
rev: string
|
@@ -192,3 +240,20 @@ export function isLogDeleteMessage<V>(v: V) {
|
|
192
240
|
export function validateLogDeleteMessage<V>(v: V) {
|
193
241
|
return validate<LogDeleteMessage & V>(v, id, hashLogDeleteMessage)
|
194
242
|
}
|
243
|
+
|
244
|
+
export interface LogReadMessage {
|
245
|
+
$type?: 'chat.bsky.convo.defs#logReadMessage'
|
246
|
+
rev: string
|
247
|
+
convoId: string
|
248
|
+
message: $Typed<MessageView> | $Typed<DeletedMessageView> | { $type: string }
|
249
|
+
}
|
250
|
+
|
251
|
+
const hashLogReadMessage = 'logReadMessage'
|
252
|
+
|
253
|
+
export function isLogReadMessage<V>(v: V) {
|
254
|
+
return is$typed(v, id, hashLogReadMessage)
|
255
|
+
}
|
256
|
+
|
257
|
+
export function validateLogReadMessage<V>(v: V) {
|
258
|
+
return validate<LogReadMessage & V>(v, id, hashLogReadMessage)
|
259
|
+
}
|
@@ -0,0 +1,51 @@
|
|
1
|
+
/**
|
2
|
+
* GENERATED CODE - DO NOT MODIFY
|
3
|
+
*/
|
4
|
+
import express from 'express'
|
5
|
+
import { ValidationResult, BlobRef } from '@atproto/lexicon'
|
6
|
+
import { CID } from 'multiformats/cid'
|
7
|
+
import { validate as _validate } from '../../../../lexicons'
|
8
|
+
import { $Typed, is$typed as _is$typed, OmitKey } from '../../../../util'
|
9
|
+
import { HandlerAuth, HandlerPipeThrough } from '@atproto/xrpc-server'
|
10
|
+
import type * as ChatBskyConvoDefs from './defs.js'
|
11
|
+
|
12
|
+
const is$typed = _is$typed,
|
13
|
+
validate = _validate
|
14
|
+
const id = 'chat.bsky.convo.getConvoAvailability'
|
15
|
+
|
16
|
+
export interface QueryParams {
|
17
|
+
members: string[]
|
18
|
+
}
|
19
|
+
|
20
|
+
export type InputSchema = undefined
|
21
|
+
|
22
|
+
export interface OutputSchema {
|
23
|
+
canChat: boolean
|
24
|
+
convo?: ChatBskyConvoDefs.ConvoView
|
25
|
+
}
|
26
|
+
|
27
|
+
export type HandlerInput = undefined
|
28
|
+
|
29
|
+
export interface HandlerSuccess {
|
30
|
+
encoding: 'application/json'
|
31
|
+
body: OutputSchema
|
32
|
+
headers?: { [key: string]: string }
|
33
|
+
}
|
34
|
+
|
35
|
+
export interface HandlerError {
|
36
|
+
status: number
|
37
|
+
message?: string
|
38
|
+
}
|
39
|
+
|
40
|
+
export type HandlerOutput = HandlerError | HandlerSuccess | HandlerPipeThrough
|
41
|
+
export type HandlerReqCtx<HA extends HandlerAuth = never> = {
|
42
|
+
auth: HA
|
43
|
+
params: QueryParams
|
44
|
+
input: HandlerInput
|
45
|
+
req: express.Request
|
46
|
+
res: express.Response
|
47
|
+
resetRouteRateLimits: () => Promise<void>
|
48
|
+
}
|
49
|
+
export type Handler<HA extends HandlerAuth = never> = (
|
50
|
+
ctx: HandlerReqCtx<HA>,
|
51
|
+
) => Promise<HandlerOutput> | HandlerOutput
|
@@ -23,6 +23,7 @@ export interface OutputSchema {
|
|
23
23
|
cursor?: string
|
24
24
|
logs: (
|
25
25
|
| $Typed<ChatBskyConvoDefs.LogBeginConvo>
|
26
|
+
| $Typed<ChatBskyConvoDefs.LogAcceptConvo>
|
26
27
|
| $Typed<ChatBskyConvoDefs.LogLeaveConvo>
|
27
28
|
| $Typed<ChatBskyConvoDefs.LogCreateMessage>
|
28
29
|
| $Typed<ChatBskyConvoDefs.LogDeleteMessage>
|
@@ -68,6 +68,7 @@ export type Handler<HA extends HandlerAuth = never> = (
|
|
68
68
|
export interface Create {
|
69
69
|
$type?: 'com.atproto.repo.applyWrites#create'
|
70
70
|
collection: string
|
71
|
+
/** NOTE: maxLength is redundant with record-key format. Keeping it temporarily to ensure backwards compatibility. */
|
71
72
|
rkey?: string
|
72
73
|
value: { [_ in string]: unknown }
|
73
74
|
}
|
package/tests/crud.test.ts
CHANGED
@@ -611,7 +611,7 @@ describe('crud operations', () => {
|
|
611
611
|
},
|
612
612
|
rkey: '..',
|
613
613
|
}),
|
614
|
-
).rejects.toThrow('
|
614
|
+
).rejects.toThrow('Input/rkey must be a valid Record Key')
|
615
615
|
})
|
616
616
|
|
617
617
|
it('validates the record on write', async () => {
|