@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
@@ -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";
|
@@ -3538,10 +3553,12 @@ export declare const schemaDict: {
|
|
3538
3553
|
};
|
3539
3554
|
readonly rev: {
|
3540
3555
|
readonly type: "string";
|
3556
|
+
readonly format: "tid";
|
3541
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.";
|
3542
3558
|
};
|
3543
3559
|
readonly since: {
|
3544
3560
|
readonly type: "string";
|
3561
|
+
readonly format: "tid";
|
3545
3562
|
readonly description: "The rev of the last emitted commit from this repo (if any).";
|
3546
3563
|
};
|
3547
3564
|
readonly blocks: {
|
@@ -9507,6 +9524,39 @@ export declare const schemaDict: {
|
|
9507
9524
|
};
|
9508
9525
|
};
|
9509
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
|
+
};
|
9510
9560
|
readonly ChatBskyConvoDefs: {
|
9511
9561
|
readonly lexicon: 1;
|
9512
9562
|
readonly id: "chat.bsky.convo.defs";
|
@@ -9641,8 +9691,9 @@ export declare const schemaDict: {
|
|
9641
9691
|
readonly muted: {
|
9642
9692
|
readonly type: "boolean";
|
9643
9693
|
};
|
9644
|
-
readonly
|
9645
|
-
readonly type: "
|
9694
|
+
readonly status: {
|
9695
|
+
readonly type: "string";
|
9696
|
+
readonly knownValues: ["request", "accepted"];
|
9646
9697
|
};
|
9647
9698
|
readonly unreadCount: {
|
9648
9699
|
readonly type: "integer";
|
@@ -9661,6 +9712,18 @@ export declare const schemaDict: {
|
|
9661
9712
|
};
|
9662
9713
|
};
|
9663
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
|
+
};
|
9664
9727
|
readonly logLeaveConvo: {
|
9665
9728
|
readonly type: "object";
|
9666
9729
|
readonly required: ["rev", "convoId"];
|
@@ -9673,6 +9736,30 @@ export declare const schemaDict: {
|
|
9673
9736
|
};
|
9674
9737
|
};
|
9675
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
|
+
};
|
9676
9763
|
readonly logCreateMessage: {
|
9677
9764
|
readonly type: "object";
|
9678
9765
|
readonly required: ["rev", "convoId", "message"];
|
@@ -9705,6 +9792,22 @@ export declare const schemaDict: {
|
|
9705
9792
|
};
|
9706
9793
|
};
|
9707
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
|
+
};
|
9708
9811
|
};
|
9709
9812
|
};
|
9710
9813
|
readonly ChatBskyConvoDeleteMessageForSelf: {
|
@@ -9769,6 +9872,47 @@ export declare const schemaDict: {
|
|
9769
9872
|
};
|
9770
9873
|
};
|
9771
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
|
+
};
|
9772
9916
|
readonly ChatBskyConvoGetConvoForMembers: {
|
9773
9917
|
readonly lexicon: 1;
|
9774
9918
|
readonly id: "chat.bsky.convo.getConvoForMembers";
|
@@ -9834,7 +9978,7 @@ export declare const schemaDict: {
|
|
9834
9978
|
readonly type: "array";
|
9835
9979
|
readonly items: {
|
9836
9980
|
readonly type: "union";
|
9837
|
-
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"];
|
9838
9982
|
};
|
9839
9983
|
};
|
9840
9984
|
};
|
@@ -9943,6 +10087,14 @@ export declare const schemaDict: {
|
|
9943
10087
|
readonly cursor: {
|
9944
10088
|
readonly type: "string";
|
9945
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
|
+
};
|
9946
10098
|
};
|
9947
10099
|
};
|
9948
10100
|
readonly output: {
|
@@ -12950,6 +13102,15 @@ export declare const schemaDict: {
|
|
12950
13102
|
readonly parameters: {
|
12951
13103
|
readonly type: "params";
|
12952
13104
|
readonly properties: {
|
13105
|
+
readonly disabled: {
|
13106
|
+
readonly type: "boolean";
|
13107
|
+
};
|
13108
|
+
readonly roles: {
|
13109
|
+
readonly type: "array";
|
13110
|
+
readonly items: {
|
13111
|
+
readonly type: "string";
|
13112
|
+
};
|
13113
|
+
};
|
12953
13114
|
readonly limit: {
|
12954
13115
|
readonly type: "integer";
|
12955
13116
|
readonly minimum: 1;
|
@@ -14255,6 +14416,8 @@ export declare const schemas: ({
|
|
14255
14416
|
readonly rkey: {
|
14256
14417
|
readonly type: "string";
|
14257
14418
|
readonly maxLength: 512;
|
14419
|
+
readonly format: "record-key";
|
14420
|
+
readonly description: "NOTE: maxLength is redundant with record-key format. Keeping it temporarily to ensure backwards compatibility.";
|
14258
14421
|
};
|
14259
14422
|
readonly value: {
|
14260
14423
|
readonly type: "unknown";
|
@@ -14272,6 +14435,7 @@ export declare const schemas: ({
|
|
14272
14435
|
};
|
14273
14436
|
readonly rkey: {
|
14274
14437
|
readonly type: "string";
|
14438
|
+
readonly format: "record-key";
|
14275
14439
|
};
|
14276
14440
|
readonly value: {
|
14277
14441
|
readonly type: "unknown";
|
@@ -14289,6 +14453,7 @@ export declare const schemas: ({
|
|
14289
14453
|
};
|
14290
14454
|
readonly rkey: {
|
14291
14455
|
readonly type: "string";
|
14456
|
+
readonly format: "record-key";
|
14292
14457
|
};
|
14293
14458
|
};
|
14294
14459
|
};
|
@@ -14359,6 +14524,7 @@ export declare const schemas: ({
|
|
14359
14524
|
};
|
14360
14525
|
readonly rkey: {
|
14361
14526
|
readonly type: "string";
|
14527
|
+
readonly format: "record-key";
|
14362
14528
|
readonly description: "The Record Key.";
|
14363
14529
|
readonly maxLength: 512;
|
14364
14530
|
};
|
@@ -14423,6 +14589,7 @@ export declare const schemas: ({
|
|
14423
14589
|
};
|
14424
14590
|
readonly rev: {
|
14425
14591
|
readonly type: "string";
|
14592
|
+
readonly format: "tid";
|
14426
14593
|
};
|
14427
14594
|
};
|
14428
14595
|
};
|
@@ -14452,6 +14619,7 @@ export declare const schemas: ({
|
|
14452
14619
|
};
|
14453
14620
|
readonly rkey: {
|
14454
14621
|
readonly type: "string";
|
14622
|
+
readonly format: "record-key";
|
14455
14623
|
readonly description: "The Record Key.";
|
14456
14624
|
};
|
14457
14625
|
readonly swapRecord: {
|
@@ -14561,6 +14729,7 @@ export declare const schemas: ({
|
|
14561
14729
|
readonly rkey: {
|
14562
14730
|
readonly type: "string";
|
14563
14731
|
readonly description: "The Record Key.";
|
14732
|
+
readonly format: "record-key";
|
14564
14733
|
};
|
14565
14734
|
readonly cid: {
|
14566
14735
|
readonly type: "string";
|
@@ -14771,6 +14940,7 @@ export declare const schemas: ({
|
|
14771
14940
|
};
|
14772
14941
|
readonly rkey: {
|
14773
14942
|
readonly type: "string";
|
14943
|
+
readonly format: "record-key";
|
14774
14944
|
readonly description: "The Record Key.";
|
14775
14945
|
readonly maxLength: 512;
|
14776
14946
|
};
|
@@ -16043,6 +16213,7 @@ export declare const schemas: ({
|
|
16043
16213
|
};
|
16044
16214
|
readonly rev: {
|
16045
16215
|
readonly type: "string";
|
16216
|
+
readonly format: "tid";
|
16046
16217
|
};
|
16047
16218
|
};
|
16048
16219
|
};
|
@@ -16081,6 +16252,7 @@ export declare const schemas: ({
|
|
16081
16252
|
readonly rkey: {
|
16082
16253
|
readonly type: "string";
|
16083
16254
|
readonly description: "Record Key";
|
16255
|
+
readonly format: "record-key";
|
16084
16256
|
};
|
16085
16257
|
readonly commit: {
|
16086
16258
|
readonly type: "string";
|
@@ -16123,6 +16295,7 @@ export declare const schemas: ({
|
|
16123
16295
|
};
|
16124
16296
|
readonly since: {
|
16125
16297
|
readonly type: "string";
|
16298
|
+
readonly format: "tid";
|
16126
16299
|
readonly description: "The revision ('rev') of the repo to create a diff from.";
|
16127
16300
|
};
|
16128
16301
|
};
|
@@ -16179,6 +16352,7 @@ export declare const schemas: ({
|
|
16179
16352
|
};
|
16180
16353
|
readonly rev: {
|
16181
16354
|
readonly type: "string";
|
16355
|
+
readonly format: "tid";
|
16182
16356
|
readonly description: "Optional field, the current rev of the repo, if active=true";
|
16183
16357
|
};
|
16184
16358
|
};
|
@@ -16207,6 +16381,7 @@ export declare const schemas: ({
|
|
16207
16381
|
};
|
16208
16382
|
readonly since: {
|
16209
16383
|
readonly type: "string";
|
16384
|
+
readonly format: "tid";
|
16210
16385
|
readonly description: "Optional revision of the repo to list blobs since.";
|
16211
16386
|
};
|
16212
16387
|
readonly limit: {
|
@@ -16306,6 +16481,7 @@ export declare const schemas: ({
|
|
16306
16481
|
};
|
16307
16482
|
readonly rev: {
|
16308
16483
|
readonly type: "string";
|
16484
|
+
readonly format: "tid";
|
16309
16485
|
};
|
16310
16486
|
readonly active: {
|
16311
16487
|
readonly type: "boolean";
|
@@ -16482,10 +16658,12 @@ export declare const schemas: ({
|
|
16482
16658
|
};
|
16483
16659
|
readonly rev: {
|
16484
16660
|
readonly type: "string";
|
16661
|
+
readonly format: "tid";
|
16485
16662
|
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.";
|
16486
16663
|
};
|
16487
16664
|
readonly since: {
|
16488
16665
|
readonly type: "string";
|
16666
|
+
readonly format: "tid";
|
16489
16667
|
readonly description: "The rev of the last emitted commit from this repo (if any).";
|
16490
16668
|
};
|
16491
16669
|
readonly blocks: {
|
@@ -22352,6 +22530,38 @@ export declare const schemas: ({
|
|
22352
22530
|
};
|
22353
22531
|
};
|
22354
22532
|
};
|
22533
|
+
} | {
|
22534
|
+
readonly lexicon: 1;
|
22535
|
+
readonly id: "chat.bsky.convo.acceptConvo";
|
22536
|
+
readonly defs: {
|
22537
|
+
readonly main: {
|
22538
|
+
readonly type: "procedure";
|
22539
|
+
readonly input: {
|
22540
|
+
readonly encoding: "application/json";
|
22541
|
+
readonly schema: {
|
22542
|
+
readonly type: "object";
|
22543
|
+
readonly required: ["convoId"];
|
22544
|
+
readonly properties: {
|
22545
|
+
readonly convoId: {
|
22546
|
+
readonly type: "string";
|
22547
|
+
};
|
22548
|
+
};
|
22549
|
+
};
|
22550
|
+
};
|
22551
|
+
readonly output: {
|
22552
|
+
readonly encoding: "application/json";
|
22553
|
+
readonly schema: {
|
22554
|
+
readonly type: "object";
|
22555
|
+
readonly properties: {
|
22556
|
+
readonly rev: {
|
22557
|
+
readonly description: "Rev when the convo was accepted. If not present, the convo was already accepted.";
|
22558
|
+
readonly type: "string";
|
22559
|
+
};
|
22560
|
+
};
|
22561
|
+
};
|
22562
|
+
};
|
22563
|
+
};
|
22564
|
+
};
|
22355
22565
|
} | {
|
22356
22566
|
readonly lexicon: 1;
|
22357
22567
|
readonly id: "chat.bsky.convo.defs";
|
@@ -22486,8 +22696,9 @@ export declare const schemas: ({
|
|
22486
22696
|
readonly muted: {
|
22487
22697
|
readonly type: "boolean";
|
22488
22698
|
};
|
22489
|
-
readonly
|
22490
|
-
readonly type: "
|
22699
|
+
readonly status: {
|
22700
|
+
readonly type: "string";
|
22701
|
+
readonly knownValues: ["request", "accepted"];
|
22491
22702
|
};
|
22492
22703
|
readonly unreadCount: {
|
22493
22704
|
readonly type: "integer";
|
@@ -22506,6 +22717,18 @@ export declare const schemas: ({
|
|
22506
22717
|
};
|
22507
22718
|
};
|
22508
22719
|
};
|
22720
|
+
readonly logAcceptConvo: {
|
22721
|
+
readonly type: "object";
|
22722
|
+
readonly required: ["rev", "convoId"];
|
22723
|
+
readonly properties: {
|
22724
|
+
readonly rev: {
|
22725
|
+
readonly type: "string";
|
22726
|
+
};
|
22727
|
+
readonly convoId: {
|
22728
|
+
readonly type: "string";
|
22729
|
+
};
|
22730
|
+
};
|
22731
|
+
};
|
22509
22732
|
readonly logLeaveConvo: {
|
22510
22733
|
readonly type: "object";
|
22511
22734
|
readonly required: ["rev", "convoId"];
|
@@ -22518,6 +22741,30 @@ export declare const schemas: ({
|
|
22518
22741
|
};
|
22519
22742
|
};
|
22520
22743
|
};
|
22744
|
+
readonly logMuteConvo: {
|
22745
|
+
readonly type: "object";
|
22746
|
+
readonly required: ["rev", "convoId"];
|
22747
|
+
readonly properties: {
|
22748
|
+
readonly rev: {
|
22749
|
+
readonly type: "string";
|
22750
|
+
};
|
22751
|
+
readonly convoId: {
|
22752
|
+
readonly type: "string";
|
22753
|
+
};
|
22754
|
+
};
|
22755
|
+
};
|
22756
|
+
readonly logUnmuteConvo: {
|
22757
|
+
readonly type: "object";
|
22758
|
+
readonly required: ["rev", "convoId"];
|
22759
|
+
readonly properties: {
|
22760
|
+
readonly rev: {
|
22761
|
+
readonly type: "string";
|
22762
|
+
};
|
22763
|
+
readonly convoId: {
|
22764
|
+
readonly type: "string";
|
22765
|
+
};
|
22766
|
+
};
|
22767
|
+
};
|
22521
22768
|
readonly logCreateMessage: {
|
22522
22769
|
readonly type: "object";
|
22523
22770
|
readonly required: ["rev", "convoId", "message"];
|
@@ -22550,6 +22797,22 @@ export declare const schemas: ({
|
|
22550
22797
|
};
|
22551
22798
|
};
|
22552
22799
|
};
|
22800
|
+
readonly logReadMessage: {
|
22801
|
+
readonly type: "object";
|
22802
|
+
readonly required: ["rev", "convoId", "message"];
|
22803
|
+
readonly properties: {
|
22804
|
+
readonly rev: {
|
22805
|
+
readonly type: "string";
|
22806
|
+
};
|
22807
|
+
readonly convoId: {
|
22808
|
+
readonly type: "string";
|
22809
|
+
};
|
22810
|
+
readonly message: {
|
22811
|
+
readonly type: "union";
|
22812
|
+
readonly refs: ["lex:chat.bsky.convo.defs#messageView", "lex:chat.bsky.convo.defs#deletedMessageView"];
|
22813
|
+
};
|
22814
|
+
};
|
22815
|
+
};
|
22553
22816
|
};
|
22554
22817
|
} | {
|
22555
22818
|
readonly lexicon: 1;
|
@@ -22611,6 +22874,46 @@ export declare const schemas: ({
|
|
22611
22874
|
};
|
22612
22875
|
};
|
22613
22876
|
};
|
22877
|
+
} | {
|
22878
|
+
readonly lexicon: 1;
|
22879
|
+
readonly id: "chat.bsky.convo.getConvoAvailability";
|
22880
|
+
readonly defs: {
|
22881
|
+
readonly main: {
|
22882
|
+
readonly type: "query";
|
22883
|
+
readonly description: "Get whether the requester and the other members can chat. If an existing convo is found for these members, it is returned.";
|
22884
|
+
readonly parameters: {
|
22885
|
+
readonly type: "params";
|
22886
|
+
readonly required: ["members"];
|
22887
|
+
readonly properties: {
|
22888
|
+
readonly members: {
|
22889
|
+
readonly type: "array";
|
22890
|
+
readonly minLength: 1;
|
22891
|
+
readonly maxLength: 10;
|
22892
|
+
readonly items: {
|
22893
|
+
readonly type: "string";
|
22894
|
+
readonly format: "did";
|
22895
|
+
};
|
22896
|
+
};
|
22897
|
+
};
|
22898
|
+
};
|
22899
|
+
readonly output: {
|
22900
|
+
readonly encoding: "application/json";
|
22901
|
+
readonly schema: {
|
22902
|
+
readonly type: "object";
|
22903
|
+
readonly required: ["canChat"];
|
22904
|
+
readonly properties: {
|
22905
|
+
readonly canChat: {
|
22906
|
+
readonly type: "boolean";
|
22907
|
+
};
|
22908
|
+
readonly convo: {
|
22909
|
+
readonly type: "ref";
|
22910
|
+
readonly ref: "lex:chat.bsky.convo.defs#convoView";
|
22911
|
+
};
|
22912
|
+
};
|
22913
|
+
};
|
22914
|
+
};
|
22915
|
+
};
|
22916
|
+
};
|
22614
22917
|
} | {
|
22615
22918
|
readonly lexicon: 1;
|
22616
22919
|
readonly id: "chat.bsky.convo.getConvoForMembers";
|
@@ -22675,7 +22978,7 @@ export declare const schemas: ({
|
|
22675
22978
|
readonly type: "array";
|
22676
22979
|
readonly items: {
|
22677
22980
|
readonly type: "union";
|
22678
|
-
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"];
|
22981
|
+
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"];
|
22679
22982
|
};
|
22680
22983
|
};
|
22681
22984
|
};
|
@@ -22781,6 +23084,14 @@ export declare const schemas: ({
|
|
22781
23084
|
readonly cursor: {
|
22782
23085
|
readonly type: "string";
|
22783
23086
|
};
|
23087
|
+
readonly readState: {
|
23088
|
+
readonly type: "string";
|
23089
|
+
readonly knownValues: ["unread"];
|
23090
|
+
};
|
23091
|
+
readonly status: {
|
23092
|
+
readonly type: "string";
|
23093
|
+
readonly knownValues: ["request", "accepted"];
|
23094
|
+
};
|
22784
23095
|
};
|
22785
23096
|
};
|
22786
23097
|
readonly output: {
|
@@ -25744,6 +26055,15 @@ export declare const schemas: ({
|
|
25744
26055
|
readonly parameters: {
|
25745
26056
|
readonly type: "params";
|
25746
26057
|
readonly properties: {
|
26058
|
+
readonly disabled: {
|
26059
|
+
readonly type: "boolean";
|
26060
|
+
};
|
26061
|
+
readonly roles: {
|
26062
|
+
readonly type: "array";
|
26063
|
+
readonly items: {
|
26064
|
+
readonly type: "string";
|
26065
|
+
};
|
26066
|
+
};
|
25747
26067
|
readonly limit: {
|
25748
26068
|
readonly type: "integer";
|
25749
26069
|
readonly minimum: 1;
|
@@ -26002,9 +26322,11 @@ export declare const ids: {
|
|
26002
26322
|
readonly ChatBskyActorDefs: "chat.bsky.actor.defs";
|
26003
26323
|
readonly ChatBskyActorDeleteAccount: "chat.bsky.actor.deleteAccount";
|
26004
26324
|
readonly ChatBskyActorExportAccountData: "chat.bsky.actor.exportAccountData";
|
26325
|
+
readonly ChatBskyConvoAcceptConvo: "chat.bsky.convo.acceptConvo";
|
26005
26326
|
readonly ChatBskyConvoDefs: "chat.bsky.convo.defs";
|
26006
26327
|
readonly ChatBskyConvoDeleteMessageForSelf: "chat.bsky.convo.deleteMessageForSelf";
|
26007
26328
|
readonly ChatBskyConvoGetConvo: "chat.bsky.convo.getConvo";
|
26329
|
+
readonly ChatBskyConvoGetConvoAvailability: "chat.bsky.convo.getConvoAvailability";
|
26008
26330
|
readonly ChatBskyConvoGetConvoForMembers: "chat.bsky.convo.getConvoForMembers";
|
26009
26331
|
readonly ChatBskyConvoGetLog: "chat.bsky.convo.getLog";
|
26010
26332
|
readonly ChatBskyConvoGetMessages: "chat.bsky.convo.getMessages";
|