@atproto/bsky 0.0.118 → 0.0.120
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 +14 -0
- package/LICENSE.txt +1 -1
- 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 +428 -6
- package/dist/lexicon/lexicons.d.ts.map +1 -1
- package/dist/lexicon/lexicons.js +220 -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/com/atproto/sync/listReposByCollection.d.ts +46 -0
- package/dist/lexicon/types/com/atproto/sync/listReposByCollection.d.ts.map +1 -0
- package/dist/lexicon/types/com/atproto/sync/listReposByCollection.js +16 -0
- package/dist/lexicon/types/com/atproto/sync/listReposByCollection.js.map +1 -0
- package/package.json +4 -4
- package/src/lexicon/index.ts +36 -0
- package/src/lexicon/lexicons.ts +225 -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/com/atproto/sync/listReposByCollection.ts +68 -0
- package/tsconfig.build.tsbuildinfo +1 -1
|
@@ -1260,6 +1260,8 @@ export declare const schemaDict: {
|
|
|
1260
1260
|
readonly rkey: {
|
|
1261
1261
|
readonly type: "string";
|
|
1262
1262
|
readonly maxLength: 512;
|
|
1263
|
+
readonly format: "record-key";
|
|
1264
|
+
readonly description: "NOTE: maxLength is redundant with record-key format. Keeping it temporarily to ensure backwards compatibility.";
|
|
1263
1265
|
};
|
|
1264
1266
|
readonly value: {
|
|
1265
1267
|
readonly type: "unknown";
|
|
@@ -1277,6 +1279,7 @@ export declare const schemaDict: {
|
|
|
1277
1279
|
};
|
|
1278
1280
|
readonly rkey: {
|
|
1279
1281
|
readonly type: "string";
|
|
1282
|
+
readonly format: "record-key";
|
|
1280
1283
|
};
|
|
1281
1284
|
readonly value: {
|
|
1282
1285
|
readonly type: "unknown";
|
|
@@ -1294,6 +1297,7 @@ export declare const schemaDict: {
|
|
|
1294
1297
|
};
|
|
1295
1298
|
readonly rkey: {
|
|
1296
1299
|
readonly type: "string";
|
|
1300
|
+
readonly format: "record-key";
|
|
1297
1301
|
};
|
|
1298
1302
|
};
|
|
1299
1303
|
};
|
|
@@ -1365,6 +1369,7 @@ export declare const schemaDict: {
|
|
|
1365
1369
|
};
|
|
1366
1370
|
readonly rkey: {
|
|
1367
1371
|
readonly type: "string";
|
|
1372
|
+
readonly format: "record-key";
|
|
1368
1373
|
readonly description: "The Record Key.";
|
|
1369
1374
|
readonly maxLength: 512;
|
|
1370
1375
|
};
|
|
@@ -1430,6 +1435,7 @@ export declare const schemaDict: {
|
|
|
1430
1435
|
};
|
|
1431
1436
|
readonly rev: {
|
|
1432
1437
|
readonly type: "string";
|
|
1438
|
+
readonly format: "tid";
|
|
1433
1439
|
};
|
|
1434
1440
|
};
|
|
1435
1441
|
};
|
|
@@ -1460,6 +1466,7 @@ export declare const schemaDict: {
|
|
|
1460
1466
|
};
|
|
1461
1467
|
readonly rkey: {
|
|
1462
1468
|
readonly type: "string";
|
|
1469
|
+
readonly format: "record-key";
|
|
1463
1470
|
readonly description: "The Record Key.";
|
|
1464
1471
|
};
|
|
1465
1472
|
readonly swapRecord: {
|
|
@@ -1571,6 +1578,7 @@ export declare const schemaDict: {
|
|
|
1571
1578
|
readonly rkey: {
|
|
1572
1579
|
readonly type: "string";
|
|
1573
1580
|
readonly description: "The Record Key.";
|
|
1581
|
+
readonly format: "record-key";
|
|
1574
1582
|
};
|
|
1575
1583
|
readonly cid: {
|
|
1576
1584
|
readonly type: "string";
|
|
@@ -1785,6 +1793,7 @@ export declare const schemaDict: {
|
|
|
1785
1793
|
};
|
|
1786
1794
|
readonly rkey: {
|
|
1787
1795
|
readonly type: "string";
|
|
1796
|
+
readonly format: "record-key";
|
|
1788
1797
|
readonly description: "The Record Key.";
|
|
1789
1798
|
readonly maxLength: 512;
|
|
1790
1799
|
};
|
|
@@ -3090,6 +3099,7 @@ export declare const schemaDict: {
|
|
|
3090
3099
|
};
|
|
3091
3100
|
readonly rev: {
|
|
3092
3101
|
readonly type: "string";
|
|
3102
|
+
readonly format: "tid";
|
|
3093
3103
|
};
|
|
3094
3104
|
};
|
|
3095
3105
|
};
|
|
@@ -3129,6 +3139,7 @@ export declare const schemaDict: {
|
|
|
3129
3139
|
readonly rkey: {
|
|
3130
3140
|
readonly type: "string";
|
|
3131
3141
|
readonly description: "Record Key";
|
|
3142
|
+
readonly format: "record-key";
|
|
3132
3143
|
};
|
|
3133
3144
|
readonly commit: {
|
|
3134
3145
|
readonly type: "string";
|
|
@@ -3172,6 +3183,7 @@ export declare const schemaDict: {
|
|
|
3172
3183
|
};
|
|
3173
3184
|
readonly since: {
|
|
3174
3185
|
readonly type: "string";
|
|
3186
|
+
readonly format: "tid";
|
|
3175
3187
|
readonly description: "The revision ('rev') of the repo to create a diff from.";
|
|
3176
3188
|
};
|
|
3177
3189
|
};
|
|
@@ -3229,6 +3241,7 @@ export declare const schemaDict: {
|
|
|
3229
3241
|
};
|
|
3230
3242
|
readonly rev: {
|
|
3231
3243
|
readonly type: "string";
|
|
3244
|
+
readonly format: "tid";
|
|
3232
3245
|
readonly description: "Optional field, the current rev of the repo, if active=true";
|
|
3233
3246
|
};
|
|
3234
3247
|
};
|
|
@@ -3258,6 +3271,7 @@ export declare const schemaDict: {
|
|
|
3258
3271
|
};
|
|
3259
3272
|
readonly since: {
|
|
3260
3273
|
readonly type: "string";
|
|
3274
|
+
readonly format: "tid";
|
|
3261
3275
|
readonly description: "Optional revision of the repo to list blobs since.";
|
|
3262
3276
|
};
|
|
3263
3277
|
readonly limit: {
|
|
@@ -3358,6 +3372,7 @@ export declare const schemaDict: {
|
|
|
3358
3372
|
};
|
|
3359
3373
|
readonly rev: {
|
|
3360
3374
|
readonly type: "string";
|
|
3375
|
+
readonly format: "tid";
|
|
3361
3376
|
};
|
|
3362
3377
|
readonly active: {
|
|
3363
3378
|
readonly type: "boolean";
|
|
@@ -3371,6 +3386,65 @@ export declare const schemaDict: {
|
|
|
3371
3386
|
};
|
|
3372
3387
|
};
|
|
3373
3388
|
};
|
|
3389
|
+
readonly ComAtprotoSyncListReposByCollection: {
|
|
3390
|
+
readonly lexicon: 1;
|
|
3391
|
+
readonly id: "com.atproto.sync.listReposByCollection";
|
|
3392
|
+
readonly defs: {
|
|
3393
|
+
readonly main: {
|
|
3394
|
+
readonly type: "query";
|
|
3395
|
+
readonly description: "Enumerates all the DIDs which have records with the given collection NSID.";
|
|
3396
|
+
readonly parameters: {
|
|
3397
|
+
readonly type: "params";
|
|
3398
|
+
readonly required: ["collection"];
|
|
3399
|
+
readonly properties: {
|
|
3400
|
+
readonly collection: {
|
|
3401
|
+
readonly type: "string";
|
|
3402
|
+
readonly format: "nsid";
|
|
3403
|
+
};
|
|
3404
|
+
readonly limit: {
|
|
3405
|
+
readonly type: "integer";
|
|
3406
|
+
readonly description: "Maximum size of response set. Recommend setting a large maximum (1000+) when enumerating large DID lists.";
|
|
3407
|
+
readonly minimum: 1;
|
|
3408
|
+
readonly maximum: 2000;
|
|
3409
|
+
readonly default: 500;
|
|
3410
|
+
};
|
|
3411
|
+
readonly cursor: {
|
|
3412
|
+
readonly type: "string";
|
|
3413
|
+
};
|
|
3414
|
+
};
|
|
3415
|
+
};
|
|
3416
|
+
readonly output: {
|
|
3417
|
+
readonly encoding: "application/json";
|
|
3418
|
+
readonly schema: {
|
|
3419
|
+
readonly type: "object";
|
|
3420
|
+
readonly required: ["repos"];
|
|
3421
|
+
readonly properties: {
|
|
3422
|
+
readonly cursor: {
|
|
3423
|
+
readonly type: "string";
|
|
3424
|
+
};
|
|
3425
|
+
readonly repos: {
|
|
3426
|
+
readonly type: "array";
|
|
3427
|
+
readonly items: {
|
|
3428
|
+
readonly type: "ref";
|
|
3429
|
+
readonly ref: "lex:com.atproto.sync.listReposByCollection#repo";
|
|
3430
|
+
};
|
|
3431
|
+
};
|
|
3432
|
+
};
|
|
3433
|
+
};
|
|
3434
|
+
};
|
|
3435
|
+
};
|
|
3436
|
+
readonly repo: {
|
|
3437
|
+
readonly type: "object";
|
|
3438
|
+
readonly required: ["did"];
|
|
3439
|
+
readonly properties: {
|
|
3440
|
+
readonly did: {
|
|
3441
|
+
readonly type: "string";
|
|
3442
|
+
readonly format: "did";
|
|
3443
|
+
};
|
|
3444
|
+
};
|
|
3445
|
+
};
|
|
3446
|
+
};
|
|
3447
|
+
};
|
|
3374
3448
|
readonly ComAtprotoSyncNotifyOfUpdate: {
|
|
3375
3449
|
readonly lexicon: 1;
|
|
3376
3450
|
readonly id: "com.atproto.sync.notifyOfUpdate";
|
|
@@ -3479,10 +3553,12 @@ export declare const schemaDict: {
|
|
|
3479
3553
|
};
|
|
3480
3554
|
readonly rev: {
|
|
3481
3555
|
readonly type: "string";
|
|
3556
|
+
readonly format: "tid";
|
|
3482
3557
|
readonly description: "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.";
|
|
3483
3558
|
};
|
|
3484
3559
|
readonly since: {
|
|
3485
3560
|
readonly type: "string";
|
|
3561
|
+
readonly format: "tid";
|
|
3486
3562
|
readonly description: "The rev of the last emitted commit from this repo (if any).";
|
|
3487
3563
|
};
|
|
3488
3564
|
readonly blocks: {
|
|
@@ -9448,6 +9524,39 @@ export declare const schemaDict: {
|
|
|
9448
9524
|
};
|
|
9449
9525
|
};
|
|
9450
9526
|
};
|
|
9527
|
+
readonly ChatBskyConvoAcceptConvo: {
|
|
9528
|
+
readonly lexicon: 1;
|
|
9529
|
+
readonly id: "chat.bsky.convo.acceptConvo";
|
|
9530
|
+
readonly defs: {
|
|
9531
|
+
readonly main: {
|
|
9532
|
+
readonly type: "procedure";
|
|
9533
|
+
readonly input: {
|
|
9534
|
+
readonly encoding: "application/json";
|
|
9535
|
+
readonly schema: {
|
|
9536
|
+
readonly type: "object";
|
|
9537
|
+
readonly required: ["convoId"];
|
|
9538
|
+
readonly properties: {
|
|
9539
|
+
readonly convoId: {
|
|
9540
|
+
readonly type: "string";
|
|
9541
|
+
};
|
|
9542
|
+
};
|
|
9543
|
+
};
|
|
9544
|
+
};
|
|
9545
|
+
readonly output: {
|
|
9546
|
+
readonly encoding: "application/json";
|
|
9547
|
+
readonly schema: {
|
|
9548
|
+
readonly type: "object";
|
|
9549
|
+
readonly properties: {
|
|
9550
|
+
readonly rev: {
|
|
9551
|
+
readonly description: "Rev when the convo was accepted. If not present, the convo was already accepted.";
|
|
9552
|
+
readonly type: "string";
|
|
9553
|
+
};
|
|
9554
|
+
};
|
|
9555
|
+
};
|
|
9556
|
+
};
|
|
9557
|
+
};
|
|
9558
|
+
};
|
|
9559
|
+
};
|
|
9451
9560
|
readonly ChatBskyConvoDefs: {
|
|
9452
9561
|
readonly lexicon: 1;
|
|
9453
9562
|
readonly id: "chat.bsky.convo.defs";
|
|
@@ -9582,8 +9691,9 @@ export declare const schemaDict: {
|
|
|
9582
9691
|
readonly muted: {
|
|
9583
9692
|
readonly type: "boolean";
|
|
9584
9693
|
};
|
|
9585
|
-
readonly
|
|
9586
|
-
readonly type: "
|
|
9694
|
+
readonly status: {
|
|
9695
|
+
readonly type: "string";
|
|
9696
|
+
readonly knownValues: ["request", "accepted"];
|
|
9587
9697
|
};
|
|
9588
9698
|
readonly unreadCount: {
|
|
9589
9699
|
readonly type: "integer";
|
|
@@ -9602,6 +9712,18 @@ export declare const schemaDict: {
|
|
|
9602
9712
|
};
|
|
9603
9713
|
};
|
|
9604
9714
|
};
|
|
9715
|
+
readonly logAcceptConvo: {
|
|
9716
|
+
readonly type: "object";
|
|
9717
|
+
readonly required: ["rev", "convoId"];
|
|
9718
|
+
readonly properties: {
|
|
9719
|
+
readonly rev: {
|
|
9720
|
+
readonly type: "string";
|
|
9721
|
+
};
|
|
9722
|
+
readonly convoId: {
|
|
9723
|
+
readonly type: "string";
|
|
9724
|
+
};
|
|
9725
|
+
};
|
|
9726
|
+
};
|
|
9605
9727
|
readonly logLeaveConvo: {
|
|
9606
9728
|
readonly type: "object";
|
|
9607
9729
|
readonly required: ["rev", "convoId"];
|
|
@@ -9614,6 +9736,30 @@ export declare const schemaDict: {
|
|
|
9614
9736
|
};
|
|
9615
9737
|
};
|
|
9616
9738
|
};
|
|
9739
|
+
readonly logMuteConvo: {
|
|
9740
|
+
readonly type: "object";
|
|
9741
|
+
readonly required: ["rev", "convoId"];
|
|
9742
|
+
readonly properties: {
|
|
9743
|
+
readonly rev: {
|
|
9744
|
+
readonly type: "string";
|
|
9745
|
+
};
|
|
9746
|
+
readonly convoId: {
|
|
9747
|
+
readonly type: "string";
|
|
9748
|
+
};
|
|
9749
|
+
};
|
|
9750
|
+
};
|
|
9751
|
+
readonly logUnmuteConvo: {
|
|
9752
|
+
readonly type: "object";
|
|
9753
|
+
readonly required: ["rev", "convoId"];
|
|
9754
|
+
readonly properties: {
|
|
9755
|
+
readonly rev: {
|
|
9756
|
+
readonly type: "string";
|
|
9757
|
+
};
|
|
9758
|
+
readonly convoId: {
|
|
9759
|
+
readonly type: "string";
|
|
9760
|
+
};
|
|
9761
|
+
};
|
|
9762
|
+
};
|
|
9617
9763
|
readonly logCreateMessage: {
|
|
9618
9764
|
readonly type: "object";
|
|
9619
9765
|
readonly required: ["rev", "convoId", "message"];
|
|
@@ -9646,6 +9792,22 @@ export declare const schemaDict: {
|
|
|
9646
9792
|
};
|
|
9647
9793
|
};
|
|
9648
9794
|
};
|
|
9795
|
+
readonly logReadMessage: {
|
|
9796
|
+
readonly type: "object";
|
|
9797
|
+
readonly required: ["rev", "convoId", "message"];
|
|
9798
|
+
readonly properties: {
|
|
9799
|
+
readonly rev: {
|
|
9800
|
+
readonly type: "string";
|
|
9801
|
+
};
|
|
9802
|
+
readonly convoId: {
|
|
9803
|
+
readonly type: "string";
|
|
9804
|
+
};
|
|
9805
|
+
readonly message: {
|
|
9806
|
+
readonly type: "union";
|
|
9807
|
+
readonly refs: ["lex:chat.bsky.convo.defs#messageView", "lex:chat.bsky.convo.defs#deletedMessageView"];
|
|
9808
|
+
};
|
|
9809
|
+
};
|
|
9810
|
+
};
|
|
9649
9811
|
};
|
|
9650
9812
|
};
|
|
9651
9813
|
readonly ChatBskyConvoDeleteMessageForSelf: {
|
|
@@ -9710,6 +9872,47 @@ export declare const schemaDict: {
|
|
|
9710
9872
|
};
|
|
9711
9873
|
};
|
|
9712
9874
|
};
|
|
9875
|
+
readonly ChatBskyConvoGetConvoAvailability: {
|
|
9876
|
+
readonly lexicon: 1;
|
|
9877
|
+
readonly id: "chat.bsky.convo.getConvoAvailability";
|
|
9878
|
+
readonly defs: {
|
|
9879
|
+
readonly main: {
|
|
9880
|
+
readonly type: "query";
|
|
9881
|
+
readonly description: "Get whether the requester and the other members can chat. If an existing convo is found for these members, it is returned.";
|
|
9882
|
+
readonly parameters: {
|
|
9883
|
+
readonly type: "params";
|
|
9884
|
+
readonly required: ["members"];
|
|
9885
|
+
readonly properties: {
|
|
9886
|
+
readonly members: {
|
|
9887
|
+
readonly type: "array";
|
|
9888
|
+
readonly minLength: 1;
|
|
9889
|
+
readonly maxLength: 10;
|
|
9890
|
+
readonly items: {
|
|
9891
|
+
readonly type: "string";
|
|
9892
|
+
readonly format: "did";
|
|
9893
|
+
};
|
|
9894
|
+
};
|
|
9895
|
+
};
|
|
9896
|
+
};
|
|
9897
|
+
readonly output: {
|
|
9898
|
+
readonly encoding: "application/json";
|
|
9899
|
+
readonly schema: {
|
|
9900
|
+
readonly type: "object";
|
|
9901
|
+
readonly required: ["canChat"];
|
|
9902
|
+
readonly properties: {
|
|
9903
|
+
readonly canChat: {
|
|
9904
|
+
readonly type: "boolean";
|
|
9905
|
+
};
|
|
9906
|
+
readonly convo: {
|
|
9907
|
+
readonly type: "ref";
|
|
9908
|
+
readonly ref: "lex:chat.bsky.convo.defs#convoView";
|
|
9909
|
+
};
|
|
9910
|
+
};
|
|
9911
|
+
};
|
|
9912
|
+
};
|
|
9913
|
+
};
|
|
9914
|
+
};
|
|
9915
|
+
};
|
|
9713
9916
|
readonly ChatBskyConvoGetConvoForMembers: {
|
|
9714
9917
|
readonly lexicon: 1;
|
|
9715
9918
|
readonly id: "chat.bsky.convo.getConvoForMembers";
|
|
@@ -9775,7 +9978,7 @@ export declare const schemaDict: {
|
|
|
9775
9978
|
readonly type: "array";
|
|
9776
9979
|
readonly items: {
|
|
9777
9980
|
readonly type: "union";
|
|
9778
|
-
readonly refs: ["lex:chat.bsky.convo.defs#logBeginConvo", "lex:chat.bsky.convo.defs#logLeaveConvo", "lex:chat.bsky.convo.defs#logCreateMessage", "lex:chat.bsky.convo.defs#logDeleteMessage"];
|
|
9981
|
+
readonly refs: ["lex:chat.bsky.convo.defs#logBeginConvo", "lex:chat.bsky.convo.defs#logAcceptConvo", "lex:chat.bsky.convo.defs#logLeaveConvo", "lex:chat.bsky.convo.defs#logCreateMessage", "lex:chat.bsky.convo.defs#logDeleteMessage"];
|
|
9779
9982
|
};
|
|
9780
9983
|
};
|
|
9781
9984
|
};
|
|
@@ -9884,6 +10087,14 @@ export declare const schemaDict: {
|
|
|
9884
10087
|
readonly cursor: {
|
|
9885
10088
|
readonly type: "string";
|
|
9886
10089
|
};
|
|
10090
|
+
readonly readState: {
|
|
10091
|
+
readonly type: "string";
|
|
10092
|
+
readonly knownValues: ["unread"];
|
|
10093
|
+
};
|
|
10094
|
+
readonly status: {
|
|
10095
|
+
readonly type: "string";
|
|
10096
|
+
readonly knownValues: ["request", "accepted"];
|
|
10097
|
+
};
|
|
9887
10098
|
};
|
|
9888
10099
|
};
|
|
9889
10100
|
readonly output: {
|
|
@@ -11463,6 +11674,8 @@ export declare const schemas: ({
|
|
|
11463
11674
|
readonly rkey: {
|
|
11464
11675
|
readonly type: "string";
|
|
11465
11676
|
readonly maxLength: 512;
|
|
11677
|
+
readonly format: "record-key";
|
|
11678
|
+
readonly description: "NOTE: maxLength is redundant with record-key format. Keeping it temporarily to ensure backwards compatibility.";
|
|
11466
11679
|
};
|
|
11467
11680
|
readonly value: {
|
|
11468
11681
|
readonly type: "unknown";
|
|
@@ -11480,6 +11693,7 @@ export declare const schemas: ({
|
|
|
11480
11693
|
};
|
|
11481
11694
|
readonly rkey: {
|
|
11482
11695
|
readonly type: "string";
|
|
11696
|
+
readonly format: "record-key";
|
|
11483
11697
|
};
|
|
11484
11698
|
readonly value: {
|
|
11485
11699
|
readonly type: "unknown";
|
|
@@ -11497,6 +11711,7 @@ export declare const schemas: ({
|
|
|
11497
11711
|
};
|
|
11498
11712
|
readonly rkey: {
|
|
11499
11713
|
readonly type: "string";
|
|
11714
|
+
readonly format: "record-key";
|
|
11500
11715
|
};
|
|
11501
11716
|
};
|
|
11502
11717
|
};
|
|
@@ -11567,6 +11782,7 @@ export declare const schemas: ({
|
|
|
11567
11782
|
};
|
|
11568
11783
|
readonly rkey: {
|
|
11569
11784
|
readonly type: "string";
|
|
11785
|
+
readonly format: "record-key";
|
|
11570
11786
|
readonly description: "The Record Key.";
|
|
11571
11787
|
readonly maxLength: 512;
|
|
11572
11788
|
};
|
|
@@ -11631,6 +11847,7 @@ export declare const schemas: ({
|
|
|
11631
11847
|
};
|
|
11632
11848
|
readonly rev: {
|
|
11633
11849
|
readonly type: "string";
|
|
11850
|
+
readonly format: "tid";
|
|
11634
11851
|
};
|
|
11635
11852
|
};
|
|
11636
11853
|
};
|
|
@@ -11660,6 +11877,7 @@ export declare const schemas: ({
|
|
|
11660
11877
|
};
|
|
11661
11878
|
readonly rkey: {
|
|
11662
11879
|
readonly type: "string";
|
|
11880
|
+
readonly format: "record-key";
|
|
11663
11881
|
readonly description: "The Record Key.";
|
|
11664
11882
|
};
|
|
11665
11883
|
readonly swapRecord: {
|
|
@@ -11769,6 +11987,7 @@ export declare const schemas: ({
|
|
|
11769
11987
|
readonly rkey: {
|
|
11770
11988
|
readonly type: "string";
|
|
11771
11989
|
readonly description: "The Record Key.";
|
|
11990
|
+
readonly format: "record-key";
|
|
11772
11991
|
};
|
|
11773
11992
|
readonly cid: {
|
|
11774
11993
|
readonly type: "string";
|
|
@@ -11979,6 +12198,7 @@ export declare const schemas: ({
|
|
|
11979
12198
|
};
|
|
11980
12199
|
readonly rkey: {
|
|
11981
12200
|
readonly type: "string";
|
|
12201
|
+
readonly format: "record-key";
|
|
11982
12202
|
readonly description: "The Record Key.";
|
|
11983
12203
|
readonly maxLength: 512;
|
|
11984
12204
|
};
|
|
@@ -13251,6 +13471,7 @@ export declare const schemas: ({
|
|
|
13251
13471
|
};
|
|
13252
13472
|
readonly rev: {
|
|
13253
13473
|
readonly type: "string";
|
|
13474
|
+
readonly format: "tid";
|
|
13254
13475
|
};
|
|
13255
13476
|
};
|
|
13256
13477
|
};
|
|
@@ -13289,6 +13510,7 @@ export declare const schemas: ({
|
|
|
13289
13510
|
readonly rkey: {
|
|
13290
13511
|
readonly type: "string";
|
|
13291
13512
|
readonly description: "Record Key";
|
|
13513
|
+
readonly format: "record-key";
|
|
13292
13514
|
};
|
|
13293
13515
|
readonly commit: {
|
|
13294
13516
|
readonly type: "string";
|
|
@@ -13331,6 +13553,7 @@ export declare const schemas: ({
|
|
|
13331
13553
|
};
|
|
13332
13554
|
readonly since: {
|
|
13333
13555
|
readonly type: "string";
|
|
13556
|
+
readonly format: "tid";
|
|
13334
13557
|
readonly description: "The revision ('rev') of the repo to create a diff from.";
|
|
13335
13558
|
};
|
|
13336
13559
|
};
|
|
@@ -13387,6 +13610,7 @@ export declare const schemas: ({
|
|
|
13387
13610
|
};
|
|
13388
13611
|
readonly rev: {
|
|
13389
13612
|
readonly type: "string";
|
|
13613
|
+
readonly format: "tid";
|
|
13390
13614
|
readonly description: "Optional field, the current rev of the repo, if active=true";
|
|
13391
13615
|
};
|
|
13392
13616
|
};
|
|
@@ -13415,6 +13639,7 @@ export declare const schemas: ({
|
|
|
13415
13639
|
};
|
|
13416
13640
|
readonly since: {
|
|
13417
13641
|
readonly type: "string";
|
|
13642
|
+
readonly format: "tid";
|
|
13418
13643
|
readonly description: "Optional revision of the repo to list blobs since.";
|
|
13419
13644
|
};
|
|
13420
13645
|
readonly limit: {
|
|
@@ -13514,6 +13739,7 @@ export declare const schemas: ({
|
|
|
13514
13739
|
};
|
|
13515
13740
|
readonly rev: {
|
|
13516
13741
|
readonly type: "string";
|
|
13742
|
+
readonly format: "tid";
|
|
13517
13743
|
};
|
|
13518
13744
|
readonly active: {
|
|
13519
13745
|
readonly type: "boolean";
|
|
@@ -13526,6 +13752,64 @@ export declare const schemas: ({
|
|
|
13526
13752
|
};
|
|
13527
13753
|
};
|
|
13528
13754
|
};
|
|
13755
|
+
} | {
|
|
13756
|
+
readonly lexicon: 1;
|
|
13757
|
+
readonly id: "com.atproto.sync.listReposByCollection";
|
|
13758
|
+
readonly defs: {
|
|
13759
|
+
readonly main: {
|
|
13760
|
+
readonly type: "query";
|
|
13761
|
+
readonly description: "Enumerates all the DIDs which have records with the given collection NSID.";
|
|
13762
|
+
readonly parameters: {
|
|
13763
|
+
readonly type: "params";
|
|
13764
|
+
readonly required: ["collection"];
|
|
13765
|
+
readonly properties: {
|
|
13766
|
+
readonly collection: {
|
|
13767
|
+
readonly type: "string";
|
|
13768
|
+
readonly format: "nsid";
|
|
13769
|
+
};
|
|
13770
|
+
readonly limit: {
|
|
13771
|
+
readonly type: "integer";
|
|
13772
|
+
readonly description: "Maximum size of response set. Recommend setting a large maximum (1000+) when enumerating large DID lists.";
|
|
13773
|
+
readonly minimum: 1;
|
|
13774
|
+
readonly maximum: 2000;
|
|
13775
|
+
readonly default: 500;
|
|
13776
|
+
};
|
|
13777
|
+
readonly cursor: {
|
|
13778
|
+
readonly type: "string";
|
|
13779
|
+
};
|
|
13780
|
+
};
|
|
13781
|
+
};
|
|
13782
|
+
readonly output: {
|
|
13783
|
+
readonly encoding: "application/json";
|
|
13784
|
+
readonly schema: {
|
|
13785
|
+
readonly type: "object";
|
|
13786
|
+
readonly required: ["repos"];
|
|
13787
|
+
readonly properties: {
|
|
13788
|
+
readonly cursor: {
|
|
13789
|
+
readonly type: "string";
|
|
13790
|
+
};
|
|
13791
|
+
readonly repos: {
|
|
13792
|
+
readonly type: "array";
|
|
13793
|
+
readonly items: {
|
|
13794
|
+
readonly type: "ref";
|
|
13795
|
+
readonly ref: "lex:com.atproto.sync.listReposByCollection#repo";
|
|
13796
|
+
};
|
|
13797
|
+
};
|
|
13798
|
+
};
|
|
13799
|
+
};
|
|
13800
|
+
};
|
|
13801
|
+
};
|
|
13802
|
+
readonly repo: {
|
|
13803
|
+
readonly type: "object";
|
|
13804
|
+
readonly required: ["did"];
|
|
13805
|
+
readonly properties: {
|
|
13806
|
+
readonly did: {
|
|
13807
|
+
readonly type: "string";
|
|
13808
|
+
readonly format: "did";
|
|
13809
|
+
};
|
|
13810
|
+
};
|
|
13811
|
+
};
|
|
13812
|
+
};
|
|
13529
13813
|
} | {
|
|
13530
13814
|
readonly lexicon: 1;
|
|
13531
13815
|
readonly id: "com.atproto.sync.notifyOfUpdate";
|
|
@@ -13632,10 +13916,12 @@ export declare const schemas: ({
|
|
|
13632
13916
|
};
|
|
13633
13917
|
readonly rev: {
|
|
13634
13918
|
readonly type: "string";
|
|
13919
|
+
readonly format: "tid";
|
|
13635
13920
|
readonly description: "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.";
|
|
13636
13921
|
};
|
|
13637
13922
|
readonly since: {
|
|
13638
13923
|
readonly type: "string";
|
|
13924
|
+
readonly format: "tid";
|
|
13639
13925
|
readonly description: "The rev of the last emitted commit from this repo (if any).";
|
|
13640
13926
|
};
|
|
13641
13927
|
readonly blocks: {
|
|
@@ -19502,6 +19788,38 @@ export declare const schemas: ({
|
|
|
19502
19788
|
};
|
|
19503
19789
|
};
|
|
19504
19790
|
};
|
|
19791
|
+
} | {
|
|
19792
|
+
readonly lexicon: 1;
|
|
19793
|
+
readonly id: "chat.bsky.convo.acceptConvo";
|
|
19794
|
+
readonly defs: {
|
|
19795
|
+
readonly main: {
|
|
19796
|
+
readonly type: "procedure";
|
|
19797
|
+
readonly input: {
|
|
19798
|
+
readonly encoding: "application/json";
|
|
19799
|
+
readonly schema: {
|
|
19800
|
+
readonly type: "object";
|
|
19801
|
+
readonly required: ["convoId"];
|
|
19802
|
+
readonly properties: {
|
|
19803
|
+
readonly convoId: {
|
|
19804
|
+
readonly type: "string";
|
|
19805
|
+
};
|
|
19806
|
+
};
|
|
19807
|
+
};
|
|
19808
|
+
};
|
|
19809
|
+
readonly output: {
|
|
19810
|
+
readonly encoding: "application/json";
|
|
19811
|
+
readonly schema: {
|
|
19812
|
+
readonly type: "object";
|
|
19813
|
+
readonly properties: {
|
|
19814
|
+
readonly rev: {
|
|
19815
|
+
readonly description: "Rev when the convo was accepted. If not present, the convo was already accepted.";
|
|
19816
|
+
readonly type: "string";
|
|
19817
|
+
};
|
|
19818
|
+
};
|
|
19819
|
+
};
|
|
19820
|
+
};
|
|
19821
|
+
};
|
|
19822
|
+
};
|
|
19505
19823
|
} | {
|
|
19506
19824
|
readonly lexicon: 1;
|
|
19507
19825
|
readonly id: "chat.bsky.convo.defs";
|
|
@@ -19636,8 +19954,9 @@ export declare const schemas: ({
|
|
|
19636
19954
|
readonly muted: {
|
|
19637
19955
|
readonly type: "boolean";
|
|
19638
19956
|
};
|
|
19639
|
-
readonly
|
|
19640
|
-
readonly type: "
|
|
19957
|
+
readonly status: {
|
|
19958
|
+
readonly type: "string";
|
|
19959
|
+
readonly knownValues: ["request", "accepted"];
|
|
19641
19960
|
};
|
|
19642
19961
|
readonly unreadCount: {
|
|
19643
19962
|
readonly type: "integer";
|
|
@@ -19656,6 +19975,18 @@ export declare const schemas: ({
|
|
|
19656
19975
|
};
|
|
19657
19976
|
};
|
|
19658
19977
|
};
|
|
19978
|
+
readonly logAcceptConvo: {
|
|
19979
|
+
readonly type: "object";
|
|
19980
|
+
readonly required: ["rev", "convoId"];
|
|
19981
|
+
readonly properties: {
|
|
19982
|
+
readonly rev: {
|
|
19983
|
+
readonly type: "string";
|
|
19984
|
+
};
|
|
19985
|
+
readonly convoId: {
|
|
19986
|
+
readonly type: "string";
|
|
19987
|
+
};
|
|
19988
|
+
};
|
|
19989
|
+
};
|
|
19659
19990
|
readonly logLeaveConvo: {
|
|
19660
19991
|
readonly type: "object";
|
|
19661
19992
|
readonly required: ["rev", "convoId"];
|
|
@@ -19668,6 +19999,30 @@ export declare const schemas: ({
|
|
|
19668
19999
|
};
|
|
19669
20000
|
};
|
|
19670
20001
|
};
|
|
20002
|
+
readonly logMuteConvo: {
|
|
20003
|
+
readonly type: "object";
|
|
20004
|
+
readonly required: ["rev", "convoId"];
|
|
20005
|
+
readonly properties: {
|
|
20006
|
+
readonly rev: {
|
|
20007
|
+
readonly type: "string";
|
|
20008
|
+
};
|
|
20009
|
+
readonly convoId: {
|
|
20010
|
+
readonly type: "string";
|
|
20011
|
+
};
|
|
20012
|
+
};
|
|
20013
|
+
};
|
|
20014
|
+
readonly logUnmuteConvo: {
|
|
20015
|
+
readonly type: "object";
|
|
20016
|
+
readonly required: ["rev", "convoId"];
|
|
20017
|
+
readonly properties: {
|
|
20018
|
+
readonly rev: {
|
|
20019
|
+
readonly type: "string";
|
|
20020
|
+
};
|
|
20021
|
+
readonly convoId: {
|
|
20022
|
+
readonly type: "string";
|
|
20023
|
+
};
|
|
20024
|
+
};
|
|
20025
|
+
};
|
|
19671
20026
|
readonly logCreateMessage: {
|
|
19672
20027
|
readonly type: "object";
|
|
19673
20028
|
readonly required: ["rev", "convoId", "message"];
|
|
@@ -19700,6 +20055,22 @@ export declare const schemas: ({
|
|
|
19700
20055
|
};
|
|
19701
20056
|
};
|
|
19702
20057
|
};
|
|
20058
|
+
readonly logReadMessage: {
|
|
20059
|
+
readonly type: "object";
|
|
20060
|
+
readonly required: ["rev", "convoId", "message"];
|
|
20061
|
+
readonly properties: {
|
|
20062
|
+
readonly rev: {
|
|
20063
|
+
readonly type: "string";
|
|
20064
|
+
};
|
|
20065
|
+
readonly convoId: {
|
|
20066
|
+
readonly type: "string";
|
|
20067
|
+
};
|
|
20068
|
+
readonly message: {
|
|
20069
|
+
readonly type: "union";
|
|
20070
|
+
readonly refs: ["lex:chat.bsky.convo.defs#messageView", "lex:chat.bsky.convo.defs#deletedMessageView"];
|
|
20071
|
+
};
|
|
20072
|
+
};
|
|
20073
|
+
};
|
|
19703
20074
|
};
|
|
19704
20075
|
} | {
|
|
19705
20076
|
readonly lexicon: 1;
|
|
@@ -19761,6 +20132,46 @@ export declare const schemas: ({
|
|
|
19761
20132
|
};
|
|
19762
20133
|
};
|
|
19763
20134
|
};
|
|
20135
|
+
} | {
|
|
20136
|
+
readonly lexicon: 1;
|
|
20137
|
+
readonly id: "chat.bsky.convo.getConvoAvailability";
|
|
20138
|
+
readonly defs: {
|
|
20139
|
+
readonly main: {
|
|
20140
|
+
readonly type: "query";
|
|
20141
|
+
readonly description: "Get whether the requester and the other members can chat. If an existing convo is found for these members, it is returned.";
|
|
20142
|
+
readonly parameters: {
|
|
20143
|
+
readonly type: "params";
|
|
20144
|
+
readonly required: ["members"];
|
|
20145
|
+
readonly properties: {
|
|
20146
|
+
readonly members: {
|
|
20147
|
+
readonly type: "array";
|
|
20148
|
+
readonly minLength: 1;
|
|
20149
|
+
readonly maxLength: 10;
|
|
20150
|
+
readonly items: {
|
|
20151
|
+
readonly type: "string";
|
|
20152
|
+
readonly format: "did";
|
|
20153
|
+
};
|
|
20154
|
+
};
|
|
20155
|
+
};
|
|
20156
|
+
};
|
|
20157
|
+
readonly output: {
|
|
20158
|
+
readonly encoding: "application/json";
|
|
20159
|
+
readonly schema: {
|
|
20160
|
+
readonly type: "object";
|
|
20161
|
+
readonly required: ["canChat"];
|
|
20162
|
+
readonly properties: {
|
|
20163
|
+
readonly canChat: {
|
|
20164
|
+
readonly type: "boolean";
|
|
20165
|
+
};
|
|
20166
|
+
readonly convo: {
|
|
20167
|
+
readonly type: "ref";
|
|
20168
|
+
readonly ref: "lex:chat.bsky.convo.defs#convoView";
|
|
20169
|
+
};
|
|
20170
|
+
};
|
|
20171
|
+
};
|
|
20172
|
+
};
|
|
20173
|
+
};
|
|
20174
|
+
};
|
|
19764
20175
|
} | {
|
|
19765
20176
|
readonly lexicon: 1;
|
|
19766
20177
|
readonly id: "chat.bsky.convo.getConvoForMembers";
|
|
@@ -19825,7 +20236,7 @@ export declare const schemas: ({
|
|
|
19825
20236
|
readonly type: "array";
|
|
19826
20237
|
readonly items: {
|
|
19827
20238
|
readonly type: "union";
|
|
19828
|
-
readonly refs: ["lex:chat.bsky.convo.defs#logBeginConvo", "lex:chat.bsky.convo.defs#logLeaveConvo", "lex:chat.bsky.convo.defs#logCreateMessage", "lex:chat.bsky.convo.defs#logDeleteMessage"];
|
|
20239
|
+
readonly refs: ["lex:chat.bsky.convo.defs#logBeginConvo", "lex:chat.bsky.convo.defs#logAcceptConvo", "lex:chat.bsky.convo.defs#logLeaveConvo", "lex:chat.bsky.convo.defs#logCreateMessage", "lex:chat.bsky.convo.defs#logDeleteMessage"];
|
|
19829
20240
|
};
|
|
19830
20241
|
};
|
|
19831
20242
|
};
|
|
@@ -19931,6 +20342,14 @@ export declare const schemas: ({
|
|
|
19931
20342
|
readonly cursor: {
|
|
19932
20343
|
readonly type: "string";
|
|
19933
20344
|
};
|
|
20345
|
+
readonly readState: {
|
|
20346
|
+
readonly type: "string";
|
|
20347
|
+
readonly knownValues: ["unread"];
|
|
20348
|
+
};
|
|
20349
|
+
readonly status: {
|
|
20350
|
+
readonly type: "string";
|
|
20351
|
+
readonly knownValues: ["request", "accepted"];
|
|
20352
|
+
};
|
|
19934
20353
|
};
|
|
19935
20354
|
};
|
|
19936
20355
|
readonly output: {
|
|
@@ -20354,6 +20773,7 @@ export declare const ids: {
|
|
|
20354
20773
|
readonly ComAtprotoSyncGetRepoStatus: "com.atproto.sync.getRepoStatus";
|
|
20355
20774
|
readonly ComAtprotoSyncListBlobs: "com.atproto.sync.listBlobs";
|
|
20356
20775
|
readonly ComAtprotoSyncListRepos: "com.atproto.sync.listRepos";
|
|
20776
|
+
readonly ComAtprotoSyncListReposByCollection: "com.atproto.sync.listReposByCollection";
|
|
20357
20777
|
readonly ComAtprotoSyncNotifyOfUpdate: "com.atproto.sync.notifyOfUpdate";
|
|
20358
20778
|
readonly ComAtprotoSyncRequestCrawl: "com.atproto.sync.requestCrawl";
|
|
20359
20779
|
readonly ComAtprotoSyncSubscribeRepos: "com.atproto.sync.subscribeRepos";
|
|
@@ -20455,9 +20875,11 @@ export declare const ids: {
|
|
|
20455
20875
|
readonly ChatBskyActorDefs: "chat.bsky.actor.defs";
|
|
20456
20876
|
readonly ChatBskyActorDeleteAccount: "chat.bsky.actor.deleteAccount";
|
|
20457
20877
|
readonly ChatBskyActorExportAccountData: "chat.bsky.actor.exportAccountData";
|
|
20878
|
+
readonly ChatBskyConvoAcceptConvo: "chat.bsky.convo.acceptConvo";
|
|
20458
20879
|
readonly ChatBskyConvoDefs: "chat.bsky.convo.defs";
|
|
20459
20880
|
readonly ChatBskyConvoDeleteMessageForSelf: "chat.bsky.convo.deleteMessageForSelf";
|
|
20460
20881
|
readonly ChatBskyConvoGetConvo: "chat.bsky.convo.getConvo";
|
|
20882
|
+
readonly ChatBskyConvoGetConvoAvailability: "chat.bsky.convo.getConvoAvailability";
|
|
20461
20883
|
readonly ChatBskyConvoGetConvoForMembers: "chat.bsky.convo.getConvoForMembers";
|
|
20462
20884
|
readonly ChatBskyConvoGetLog: "chat.bsky.convo.getLog";
|
|
20463
20885
|
readonly ChatBskyConvoGetMessages: "chat.bsky.convo.getMessages";
|