@atproto/bsky 0.0.162 → 0.0.164
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +18 -0
- package/dist/lexicon/index.d.ts +6 -2
- package/dist/lexicon/index.d.ts.map +1 -1
- package/dist/lexicon/index.js +12 -4
- package/dist/lexicon/index.js.map +1 -1
- package/dist/lexicon/lexicons.d.ts +390 -82
- package/dist/lexicon/lexicons.d.ts.map +1 -1
- package/dist/lexicon/lexicons.js +199 -42
- package/dist/lexicon/lexicons.js.map +1 -1
- package/dist/lexicon/types/app/bsky/actor/defs.d.ts +9 -0
- package/dist/lexicon/types/app/bsky/actor/defs.d.ts.map +1 -1
- package/dist/lexicon/types/app/bsky/actor/defs.js +9 -0
- package/dist/lexicon/types/app/bsky/actor/defs.js.map +1 -1
- package/dist/lexicon/types/app/bsky/notification/declaration.d.ts +13 -0
- package/dist/lexicon/types/app/bsky/notification/declaration.d.ts.map +1 -0
- package/dist/lexicon/types/app/bsky/notification/declaration.js +16 -0
- package/dist/lexicon/types/app/bsky/notification/declaration.js.map +1 -0
- package/dist/lexicon/types/app/bsky/notification/defs.d.ts +15 -0
- package/dist/lexicon/types/app/bsky/notification/defs.d.ts.map +1 -1
- package/dist/lexicon/types/app/bsky/notification/defs.js +18 -0
- package/dist/lexicon/types/app/bsky/notification/defs.js.map +1 -1
- package/dist/lexicon/types/app/bsky/notification/listActivitySubscriptions.d.ts +38 -0
- package/dist/lexicon/types/app/bsky/notification/listActivitySubscriptions.d.ts.map +1 -0
- package/dist/lexicon/types/app/bsky/notification/listActivitySubscriptions.js +7 -0
- package/dist/lexicon/types/app/bsky/notification/listActivitySubscriptions.js.map +1 -0
- package/dist/lexicon/types/app/bsky/notification/putActivitySubscription.d.ts +42 -0
- package/dist/lexicon/types/app/bsky/notification/putActivitySubscription.d.ts.map +1 -0
- package/dist/lexicon/types/app/bsky/notification/putActivitySubscription.js +7 -0
- package/dist/lexicon/types/app/bsky/notification/putActivitySubscription.js.map +1 -0
- package/package.json +7 -7
- package/src/lexicon/index.ts +35 -9
- package/src/lexicon/lexicons.ts +207 -43
- package/src/lexicon/types/app/bsky/actor/defs.ts +23 -0
- package/src/lexicon/types/app/bsky/notification/declaration.ts +32 -0
- package/src/lexicon/types/app/bsky/notification/defs.ts +37 -0
- package/src/lexicon/types/app/bsky/notification/listActivitySubscriptions.ts +56 -0
- package/src/lexicon/types/app/bsky/notification/putActivitySubscription.ts +59 -0
- package/tsconfig.build.tsbuildinfo +1 -1
|
@@ -4331,6 +4331,10 @@ export declare const schemaDict: {
|
|
|
4331
4331
|
readonly type: "ref";
|
|
4332
4332
|
readonly ref: "lex:app.bsky.actor.defs#profileAssociatedChat";
|
|
4333
4333
|
};
|
|
4334
|
+
readonly activitySubscription: {
|
|
4335
|
+
readonly type: "ref";
|
|
4336
|
+
readonly ref: "lex:app.bsky.actor.defs#profileAssociatedActivitySubscription";
|
|
4337
|
+
};
|
|
4334
4338
|
};
|
|
4335
4339
|
};
|
|
4336
4340
|
readonly profileAssociatedChat: {
|
|
@@ -4343,6 +4347,16 @@ export declare const schemaDict: {
|
|
|
4343
4347
|
};
|
|
4344
4348
|
};
|
|
4345
4349
|
};
|
|
4350
|
+
readonly profileAssociatedActivitySubscription: {
|
|
4351
|
+
readonly type: "object";
|
|
4352
|
+
readonly required: ["allowSubscriptions"];
|
|
4353
|
+
readonly properties: {
|
|
4354
|
+
readonly allowSubscriptions: {
|
|
4355
|
+
readonly type: "string";
|
|
4356
|
+
readonly knownValues: ["followers", "mutuals", "none"];
|
|
4357
|
+
};
|
|
4358
|
+
};
|
|
4359
|
+
};
|
|
4346
4360
|
readonly viewerState: {
|
|
4347
4361
|
readonly type: "object";
|
|
4348
4362
|
readonly description: "Metadata about the requesting account's relationship with the subject account. Only has meaningful content for authed requests.";
|
|
@@ -4377,6 +4391,10 @@ export declare const schemaDict: {
|
|
|
4377
4391
|
readonly type: "ref";
|
|
4378
4392
|
readonly ref: "lex:app.bsky.actor.defs#knownFollowers";
|
|
4379
4393
|
};
|
|
4394
|
+
readonly activitySubscription: {
|
|
4395
|
+
readonly type: "ref";
|
|
4396
|
+
readonly ref: "lex:app.bsky.notification.defs#activitySubscription";
|
|
4397
|
+
};
|
|
4380
4398
|
};
|
|
4381
4399
|
};
|
|
4382
4400
|
readonly knownFollowers: {
|
|
@@ -6650,47 +6668,6 @@ export declare const schemaDict: {
|
|
|
6650
6668
|
};
|
|
6651
6669
|
};
|
|
6652
6670
|
};
|
|
6653
|
-
readonly AppBskyFeedGetPosts: {
|
|
6654
|
-
readonly lexicon: 1;
|
|
6655
|
-
readonly id: "app.bsky.feed.getPosts";
|
|
6656
|
-
readonly defs: {
|
|
6657
|
-
readonly main: {
|
|
6658
|
-
readonly type: "query";
|
|
6659
|
-
readonly description: "Gets post views for a specified list of posts (by AT-URI). This is sometimes referred to as 'hydrating' a 'feed skeleton'.";
|
|
6660
|
-
readonly parameters: {
|
|
6661
|
-
readonly type: "params";
|
|
6662
|
-
readonly required: ["uris"];
|
|
6663
|
-
readonly properties: {
|
|
6664
|
-
readonly uris: {
|
|
6665
|
-
readonly type: "array";
|
|
6666
|
-
readonly description: "List of post AT-URIs to return hydrated views for.";
|
|
6667
|
-
readonly items: {
|
|
6668
|
-
readonly type: "string";
|
|
6669
|
-
readonly format: "at-uri";
|
|
6670
|
-
};
|
|
6671
|
-
readonly maxLength: 25;
|
|
6672
|
-
};
|
|
6673
|
-
};
|
|
6674
|
-
};
|
|
6675
|
-
readonly output: {
|
|
6676
|
-
readonly encoding: "application/json";
|
|
6677
|
-
readonly schema: {
|
|
6678
|
-
readonly type: "object";
|
|
6679
|
-
readonly required: ["posts"];
|
|
6680
|
-
readonly properties: {
|
|
6681
|
-
readonly posts: {
|
|
6682
|
-
readonly type: "array";
|
|
6683
|
-
readonly items: {
|
|
6684
|
-
readonly type: "ref";
|
|
6685
|
-
readonly ref: "lex:app.bsky.feed.defs#postView";
|
|
6686
|
-
};
|
|
6687
|
-
};
|
|
6688
|
-
};
|
|
6689
|
-
};
|
|
6690
|
-
};
|
|
6691
|
-
};
|
|
6692
|
-
};
|
|
6693
|
-
};
|
|
6694
6671
|
readonly AppBskyFeedGetPostThread: {
|
|
6695
6672
|
readonly lexicon: 1;
|
|
6696
6673
|
readonly id: "app.bsky.feed.getPostThread";
|
|
@@ -6746,6 +6723,47 @@ export declare const schemaDict: {
|
|
|
6746
6723
|
};
|
|
6747
6724
|
};
|
|
6748
6725
|
};
|
|
6726
|
+
readonly AppBskyFeedGetPosts: {
|
|
6727
|
+
readonly lexicon: 1;
|
|
6728
|
+
readonly id: "app.bsky.feed.getPosts";
|
|
6729
|
+
readonly defs: {
|
|
6730
|
+
readonly main: {
|
|
6731
|
+
readonly type: "query";
|
|
6732
|
+
readonly description: "Gets post views for a specified list of posts (by AT-URI). This is sometimes referred to as 'hydrating' a 'feed skeleton'.";
|
|
6733
|
+
readonly parameters: {
|
|
6734
|
+
readonly type: "params";
|
|
6735
|
+
readonly required: ["uris"];
|
|
6736
|
+
readonly properties: {
|
|
6737
|
+
readonly uris: {
|
|
6738
|
+
readonly type: "array";
|
|
6739
|
+
readonly description: "List of post AT-URIs to return hydrated views for.";
|
|
6740
|
+
readonly items: {
|
|
6741
|
+
readonly type: "string";
|
|
6742
|
+
readonly format: "at-uri";
|
|
6743
|
+
};
|
|
6744
|
+
readonly maxLength: 25;
|
|
6745
|
+
};
|
|
6746
|
+
};
|
|
6747
|
+
};
|
|
6748
|
+
readonly output: {
|
|
6749
|
+
readonly encoding: "application/json";
|
|
6750
|
+
readonly schema: {
|
|
6751
|
+
readonly type: "object";
|
|
6752
|
+
readonly required: ["posts"];
|
|
6753
|
+
readonly properties: {
|
|
6754
|
+
readonly posts: {
|
|
6755
|
+
readonly type: "array";
|
|
6756
|
+
readonly items: {
|
|
6757
|
+
readonly type: "ref";
|
|
6758
|
+
readonly ref: "lex:app.bsky.feed.defs#postView";
|
|
6759
|
+
};
|
|
6760
|
+
};
|
|
6761
|
+
};
|
|
6762
|
+
};
|
|
6763
|
+
};
|
|
6764
|
+
};
|
|
6765
|
+
};
|
|
6766
|
+
};
|
|
6749
6767
|
readonly AppBskyFeedGetQuotes: {
|
|
6750
6768
|
readonly lexicon: 1;
|
|
6751
6769
|
readonly id: "app.bsky.feed.getQuotes";
|
|
@@ -9024,6 +9042,28 @@ export declare const schemaDict: {
|
|
|
9024
9042
|
};
|
|
9025
9043
|
};
|
|
9026
9044
|
};
|
|
9045
|
+
readonly AppBskyNotificationDeclaration: {
|
|
9046
|
+
readonly lexicon: 1;
|
|
9047
|
+
readonly id: "app.bsky.notification.declaration";
|
|
9048
|
+
readonly defs: {
|
|
9049
|
+
readonly main: {
|
|
9050
|
+
readonly type: "record";
|
|
9051
|
+
readonly description: "A declaration of the user's choices related to notifications that can be produced by them.";
|
|
9052
|
+
readonly key: "literal:self";
|
|
9053
|
+
readonly record: {
|
|
9054
|
+
readonly type: "object";
|
|
9055
|
+
readonly required: ["allowSubscriptions"];
|
|
9056
|
+
readonly properties: {
|
|
9057
|
+
readonly allowSubscriptions: {
|
|
9058
|
+
readonly type: "string";
|
|
9059
|
+
readonly description: "A declaration of the user's preference for allowing activity subscriptions from other users. Absence of a record implies 'followers'.";
|
|
9060
|
+
readonly knownValues: ["followers", "mutuals", "none"];
|
|
9061
|
+
};
|
|
9062
|
+
};
|
|
9063
|
+
};
|
|
9064
|
+
};
|
|
9065
|
+
};
|
|
9066
|
+
};
|
|
9027
9067
|
readonly AppBskyNotificationDefs: {
|
|
9028
9068
|
readonly lexicon: 1;
|
|
9029
9069
|
readonly id: "app.bsky.notification.defs";
|
|
@@ -9131,6 +9171,33 @@ export declare const schemaDict: {
|
|
|
9131
9171
|
};
|
|
9132
9172
|
};
|
|
9133
9173
|
};
|
|
9174
|
+
readonly activitySubscription: {
|
|
9175
|
+
readonly type: "object";
|
|
9176
|
+
readonly required: ["post", "reply"];
|
|
9177
|
+
readonly properties: {
|
|
9178
|
+
readonly post: {
|
|
9179
|
+
readonly type: "boolean";
|
|
9180
|
+
};
|
|
9181
|
+
readonly reply: {
|
|
9182
|
+
readonly type: "boolean";
|
|
9183
|
+
};
|
|
9184
|
+
};
|
|
9185
|
+
};
|
|
9186
|
+
readonly subjectActivitySubscription: {
|
|
9187
|
+
readonly description: "Object used to store activity subscription data in stash.";
|
|
9188
|
+
readonly type: "object";
|
|
9189
|
+
readonly required: ["subject", "activitySubscription"];
|
|
9190
|
+
readonly properties: {
|
|
9191
|
+
readonly subject: {
|
|
9192
|
+
readonly type: "string";
|
|
9193
|
+
readonly format: "did";
|
|
9194
|
+
};
|
|
9195
|
+
readonly activitySubscription: {
|
|
9196
|
+
readonly type: "ref";
|
|
9197
|
+
readonly ref: "lex:app.bsky.notification.defs#activitySubscription";
|
|
9198
|
+
};
|
|
9199
|
+
};
|
|
9200
|
+
};
|
|
9134
9201
|
};
|
|
9135
9202
|
};
|
|
9136
9203
|
readonly AppBskyNotificationGetPreferences: {
|
|
@@ -9194,6 +9261,49 @@ export declare const schemaDict: {
|
|
|
9194
9261
|
};
|
|
9195
9262
|
};
|
|
9196
9263
|
};
|
|
9264
|
+
readonly AppBskyNotificationListActivitySubscriptions: {
|
|
9265
|
+
readonly lexicon: 1;
|
|
9266
|
+
readonly id: "app.bsky.notification.listActivitySubscriptions";
|
|
9267
|
+
readonly defs: {
|
|
9268
|
+
readonly main: {
|
|
9269
|
+
readonly type: "query";
|
|
9270
|
+
readonly description: "Enumerate all accounts to which the requesting account is subscribed to receive notifications for. Requires auth.";
|
|
9271
|
+
readonly parameters: {
|
|
9272
|
+
readonly type: "params";
|
|
9273
|
+
readonly properties: {
|
|
9274
|
+
readonly limit: {
|
|
9275
|
+
readonly type: "integer";
|
|
9276
|
+
readonly minimum: 1;
|
|
9277
|
+
readonly maximum: 100;
|
|
9278
|
+
readonly default: 50;
|
|
9279
|
+
};
|
|
9280
|
+
readonly cursor: {
|
|
9281
|
+
readonly type: "string";
|
|
9282
|
+
};
|
|
9283
|
+
};
|
|
9284
|
+
};
|
|
9285
|
+
readonly output: {
|
|
9286
|
+
readonly encoding: "application/json";
|
|
9287
|
+
readonly schema: {
|
|
9288
|
+
readonly type: "object";
|
|
9289
|
+
readonly required: ["subscriptions"];
|
|
9290
|
+
readonly properties: {
|
|
9291
|
+
readonly cursor: {
|
|
9292
|
+
readonly type: "string";
|
|
9293
|
+
};
|
|
9294
|
+
readonly subscriptions: {
|
|
9295
|
+
readonly type: "array";
|
|
9296
|
+
readonly items: {
|
|
9297
|
+
readonly type: "ref";
|
|
9298
|
+
readonly ref: "lex:app.bsky.actor.defs#profileView";
|
|
9299
|
+
};
|
|
9300
|
+
};
|
|
9301
|
+
};
|
|
9302
|
+
};
|
|
9303
|
+
};
|
|
9304
|
+
};
|
|
9305
|
+
};
|
|
9306
|
+
};
|
|
9197
9307
|
readonly AppBskyNotificationListNotifications: {
|
|
9198
9308
|
readonly lexicon: 1;
|
|
9199
9309
|
readonly id: "app.bsky.notification.listNotifications";
|
|
@@ -9303,6 +9413,50 @@ export declare const schemaDict: {
|
|
|
9303
9413
|
};
|
|
9304
9414
|
};
|
|
9305
9415
|
};
|
|
9416
|
+
readonly AppBskyNotificationPutActivitySubscription: {
|
|
9417
|
+
readonly lexicon: 1;
|
|
9418
|
+
readonly id: "app.bsky.notification.putActivitySubscription";
|
|
9419
|
+
readonly defs: {
|
|
9420
|
+
readonly main: {
|
|
9421
|
+
readonly type: "procedure";
|
|
9422
|
+
readonly description: "Puts an activity subscription entry. The key should be omitted for creation and provided for updates. Requires auth.";
|
|
9423
|
+
readonly input: {
|
|
9424
|
+
readonly encoding: "application/json";
|
|
9425
|
+
readonly schema: {
|
|
9426
|
+
readonly type: "object";
|
|
9427
|
+
readonly required: ["subject", "activitySubscription"];
|
|
9428
|
+
readonly properties: {
|
|
9429
|
+
readonly subject: {
|
|
9430
|
+
readonly type: "string";
|
|
9431
|
+
readonly format: "did";
|
|
9432
|
+
};
|
|
9433
|
+
readonly activitySubscription: {
|
|
9434
|
+
readonly type: "ref";
|
|
9435
|
+
readonly ref: "lex:app.bsky.notification.defs#activitySubscription";
|
|
9436
|
+
};
|
|
9437
|
+
};
|
|
9438
|
+
};
|
|
9439
|
+
};
|
|
9440
|
+
readonly output: {
|
|
9441
|
+
readonly encoding: "application/json";
|
|
9442
|
+
readonly schema: {
|
|
9443
|
+
readonly type: "object";
|
|
9444
|
+
readonly required: ["subject"];
|
|
9445
|
+
readonly properties: {
|
|
9446
|
+
readonly subject: {
|
|
9447
|
+
readonly type: "string";
|
|
9448
|
+
readonly format: "did";
|
|
9449
|
+
};
|
|
9450
|
+
readonly activitySubscription: {
|
|
9451
|
+
readonly type: "ref";
|
|
9452
|
+
readonly ref: "lex:app.bsky.notification.defs#activitySubscription";
|
|
9453
|
+
};
|
|
9454
|
+
};
|
|
9455
|
+
};
|
|
9456
|
+
};
|
|
9457
|
+
};
|
|
9458
|
+
};
|
|
9459
|
+
};
|
|
9306
9460
|
readonly AppBskyNotificationPutPreferences: {
|
|
9307
9461
|
readonly lexicon: 1;
|
|
9308
9462
|
readonly id: "app.bsky.notification.putPreferences";
|
|
@@ -16296,6 +16450,10 @@ export declare const schemas: ({
|
|
|
16296
16450
|
readonly type: "ref";
|
|
16297
16451
|
readonly ref: "lex:app.bsky.actor.defs#profileAssociatedChat";
|
|
16298
16452
|
};
|
|
16453
|
+
readonly activitySubscription: {
|
|
16454
|
+
readonly type: "ref";
|
|
16455
|
+
readonly ref: "lex:app.bsky.actor.defs#profileAssociatedActivitySubscription";
|
|
16456
|
+
};
|
|
16299
16457
|
};
|
|
16300
16458
|
};
|
|
16301
16459
|
readonly profileAssociatedChat: {
|
|
@@ -16308,6 +16466,16 @@ export declare const schemas: ({
|
|
|
16308
16466
|
};
|
|
16309
16467
|
};
|
|
16310
16468
|
};
|
|
16469
|
+
readonly profileAssociatedActivitySubscription: {
|
|
16470
|
+
readonly type: "object";
|
|
16471
|
+
readonly required: ["allowSubscriptions"];
|
|
16472
|
+
readonly properties: {
|
|
16473
|
+
readonly allowSubscriptions: {
|
|
16474
|
+
readonly type: "string";
|
|
16475
|
+
readonly knownValues: ["followers", "mutuals", "none"];
|
|
16476
|
+
};
|
|
16477
|
+
};
|
|
16478
|
+
};
|
|
16311
16479
|
readonly viewerState: {
|
|
16312
16480
|
readonly type: "object";
|
|
16313
16481
|
readonly description: "Metadata about the requesting account's relationship with the subject account. Only has meaningful content for authed requests.";
|
|
@@ -16342,6 +16510,10 @@ export declare const schemas: ({
|
|
|
16342
16510
|
readonly type: "ref";
|
|
16343
16511
|
readonly ref: "lex:app.bsky.actor.defs#knownFollowers";
|
|
16344
16512
|
};
|
|
16513
|
+
readonly activitySubscription: {
|
|
16514
|
+
readonly type: "ref";
|
|
16515
|
+
readonly ref: "lex:app.bsky.notification.defs#activitySubscription";
|
|
16516
|
+
};
|
|
16345
16517
|
};
|
|
16346
16518
|
};
|
|
16347
16519
|
readonly knownFollowers: {
|
|
@@ -18587,46 +18759,6 @@ export declare const schemas: ({
|
|
|
18587
18759
|
}];
|
|
18588
18760
|
};
|
|
18589
18761
|
};
|
|
18590
|
-
} | {
|
|
18591
|
-
readonly lexicon: 1;
|
|
18592
|
-
readonly id: "app.bsky.feed.getPosts";
|
|
18593
|
-
readonly defs: {
|
|
18594
|
-
readonly main: {
|
|
18595
|
-
readonly type: "query";
|
|
18596
|
-
readonly description: "Gets post views for a specified list of posts (by AT-URI). This is sometimes referred to as 'hydrating' a 'feed skeleton'.";
|
|
18597
|
-
readonly parameters: {
|
|
18598
|
-
readonly type: "params";
|
|
18599
|
-
readonly required: ["uris"];
|
|
18600
|
-
readonly properties: {
|
|
18601
|
-
readonly uris: {
|
|
18602
|
-
readonly type: "array";
|
|
18603
|
-
readonly description: "List of post AT-URIs to return hydrated views for.";
|
|
18604
|
-
readonly items: {
|
|
18605
|
-
readonly type: "string";
|
|
18606
|
-
readonly format: "at-uri";
|
|
18607
|
-
};
|
|
18608
|
-
readonly maxLength: 25;
|
|
18609
|
-
};
|
|
18610
|
-
};
|
|
18611
|
-
};
|
|
18612
|
-
readonly output: {
|
|
18613
|
-
readonly encoding: "application/json";
|
|
18614
|
-
readonly schema: {
|
|
18615
|
-
readonly type: "object";
|
|
18616
|
-
readonly required: ["posts"];
|
|
18617
|
-
readonly properties: {
|
|
18618
|
-
readonly posts: {
|
|
18619
|
-
readonly type: "array";
|
|
18620
|
-
readonly items: {
|
|
18621
|
-
readonly type: "ref";
|
|
18622
|
-
readonly ref: "lex:app.bsky.feed.defs#postView";
|
|
18623
|
-
};
|
|
18624
|
-
};
|
|
18625
|
-
};
|
|
18626
|
-
};
|
|
18627
|
-
};
|
|
18628
|
-
};
|
|
18629
|
-
};
|
|
18630
18762
|
} | {
|
|
18631
18763
|
readonly lexicon: 1;
|
|
18632
18764
|
readonly id: "app.bsky.feed.getPostThread";
|
|
@@ -18681,6 +18813,46 @@ export declare const schemas: ({
|
|
|
18681
18813
|
}];
|
|
18682
18814
|
};
|
|
18683
18815
|
};
|
|
18816
|
+
} | {
|
|
18817
|
+
readonly lexicon: 1;
|
|
18818
|
+
readonly id: "app.bsky.feed.getPosts";
|
|
18819
|
+
readonly defs: {
|
|
18820
|
+
readonly main: {
|
|
18821
|
+
readonly type: "query";
|
|
18822
|
+
readonly description: "Gets post views for a specified list of posts (by AT-URI). This is sometimes referred to as 'hydrating' a 'feed skeleton'.";
|
|
18823
|
+
readonly parameters: {
|
|
18824
|
+
readonly type: "params";
|
|
18825
|
+
readonly required: ["uris"];
|
|
18826
|
+
readonly properties: {
|
|
18827
|
+
readonly uris: {
|
|
18828
|
+
readonly type: "array";
|
|
18829
|
+
readonly description: "List of post AT-URIs to return hydrated views for.";
|
|
18830
|
+
readonly items: {
|
|
18831
|
+
readonly type: "string";
|
|
18832
|
+
readonly format: "at-uri";
|
|
18833
|
+
};
|
|
18834
|
+
readonly maxLength: 25;
|
|
18835
|
+
};
|
|
18836
|
+
};
|
|
18837
|
+
};
|
|
18838
|
+
readonly output: {
|
|
18839
|
+
readonly encoding: "application/json";
|
|
18840
|
+
readonly schema: {
|
|
18841
|
+
readonly type: "object";
|
|
18842
|
+
readonly required: ["posts"];
|
|
18843
|
+
readonly properties: {
|
|
18844
|
+
readonly posts: {
|
|
18845
|
+
readonly type: "array";
|
|
18846
|
+
readonly items: {
|
|
18847
|
+
readonly type: "ref";
|
|
18848
|
+
readonly ref: "lex:app.bsky.feed.defs#postView";
|
|
18849
|
+
};
|
|
18850
|
+
};
|
|
18851
|
+
};
|
|
18852
|
+
};
|
|
18853
|
+
};
|
|
18854
|
+
};
|
|
18855
|
+
};
|
|
18684
18856
|
} | {
|
|
18685
18857
|
readonly lexicon: 1;
|
|
18686
18858
|
readonly id: "app.bsky.feed.getQuotes";
|
|
@@ -20916,6 +21088,27 @@ export declare const schemas: ({
|
|
|
20916
21088
|
};
|
|
20917
21089
|
};
|
|
20918
21090
|
};
|
|
21091
|
+
} | {
|
|
21092
|
+
readonly lexicon: 1;
|
|
21093
|
+
readonly id: "app.bsky.notification.declaration";
|
|
21094
|
+
readonly defs: {
|
|
21095
|
+
readonly main: {
|
|
21096
|
+
readonly type: "record";
|
|
21097
|
+
readonly description: "A declaration of the user's choices related to notifications that can be produced by them.";
|
|
21098
|
+
readonly key: "literal:self";
|
|
21099
|
+
readonly record: {
|
|
21100
|
+
readonly type: "object";
|
|
21101
|
+
readonly required: ["allowSubscriptions"];
|
|
21102
|
+
readonly properties: {
|
|
21103
|
+
readonly allowSubscriptions: {
|
|
21104
|
+
readonly type: "string";
|
|
21105
|
+
readonly description: "A declaration of the user's preference for allowing activity subscriptions from other users. Absence of a record implies 'followers'.";
|
|
21106
|
+
readonly knownValues: ["followers", "mutuals", "none"];
|
|
21107
|
+
};
|
|
21108
|
+
};
|
|
21109
|
+
};
|
|
21110
|
+
};
|
|
21111
|
+
};
|
|
20919
21112
|
} | {
|
|
20920
21113
|
readonly lexicon: 1;
|
|
20921
21114
|
readonly id: "app.bsky.notification.defs";
|
|
@@ -21023,6 +21216,33 @@ export declare const schemas: ({
|
|
|
21023
21216
|
};
|
|
21024
21217
|
};
|
|
21025
21218
|
};
|
|
21219
|
+
readonly activitySubscription: {
|
|
21220
|
+
readonly type: "object";
|
|
21221
|
+
readonly required: ["post", "reply"];
|
|
21222
|
+
readonly properties: {
|
|
21223
|
+
readonly post: {
|
|
21224
|
+
readonly type: "boolean";
|
|
21225
|
+
};
|
|
21226
|
+
readonly reply: {
|
|
21227
|
+
readonly type: "boolean";
|
|
21228
|
+
};
|
|
21229
|
+
};
|
|
21230
|
+
};
|
|
21231
|
+
readonly subjectActivitySubscription: {
|
|
21232
|
+
readonly description: "Object used to store activity subscription data in stash.";
|
|
21233
|
+
readonly type: "object";
|
|
21234
|
+
readonly required: ["subject", "activitySubscription"];
|
|
21235
|
+
readonly properties: {
|
|
21236
|
+
readonly subject: {
|
|
21237
|
+
readonly type: "string";
|
|
21238
|
+
readonly format: "did";
|
|
21239
|
+
};
|
|
21240
|
+
readonly activitySubscription: {
|
|
21241
|
+
readonly type: "ref";
|
|
21242
|
+
readonly ref: "lex:app.bsky.notification.defs#activitySubscription";
|
|
21243
|
+
};
|
|
21244
|
+
};
|
|
21245
|
+
};
|
|
21026
21246
|
};
|
|
21027
21247
|
} | {
|
|
21028
21248
|
readonly lexicon: 1;
|
|
@@ -21083,6 +21303,48 @@ export declare const schemas: ({
|
|
|
21083
21303
|
};
|
|
21084
21304
|
};
|
|
21085
21305
|
};
|
|
21306
|
+
} | {
|
|
21307
|
+
readonly lexicon: 1;
|
|
21308
|
+
readonly id: "app.bsky.notification.listActivitySubscriptions";
|
|
21309
|
+
readonly defs: {
|
|
21310
|
+
readonly main: {
|
|
21311
|
+
readonly type: "query";
|
|
21312
|
+
readonly description: "Enumerate all accounts to which the requesting account is subscribed to receive notifications for. Requires auth.";
|
|
21313
|
+
readonly parameters: {
|
|
21314
|
+
readonly type: "params";
|
|
21315
|
+
readonly properties: {
|
|
21316
|
+
readonly limit: {
|
|
21317
|
+
readonly type: "integer";
|
|
21318
|
+
readonly minimum: 1;
|
|
21319
|
+
readonly maximum: 100;
|
|
21320
|
+
readonly default: 50;
|
|
21321
|
+
};
|
|
21322
|
+
readonly cursor: {
|
|
21323
|
+
readonly type: "string";
|
|
21324
|
+
};
|
|
21325
|
+
};
|
|
21326
|
+
};
|
|
21327
|
+
readonly output: {
|
|
21328
|
+
readonly encoding: "application/json";
|
|
21329
|
+
readonly schema: {
|
|
21330
|
+
readonly type: "object";
|
|
21331
|
+
readonly required: ["subscriptions"];
|
|
21332
|
+
readonly properties: {
|
|
21333
|
+
readonly cursor: {
|
|
21334
|
+
readonly type: "string";
|
|
21335
|
+
};
|
|
21336
|
+
readonly subscriptions: {
|
|
21337
|
+
readonly type: "array";
|
|
21338
|
+
readonly items: {
|
|
21339
|
+
readonly type: "ref";
|
|
21340
|
+
readonly ref: "lex:app.bsky.actor.defs#profileView";
|
|
21341
|
+
};
|
|
21342
|
+
};
|
|
21343
|
+
};
|
|
21344
|
+
};
|
|
21345
|
+
};
|
|
21346
|
+
};
|
|
21347
|
+
};
|
|
21086
21348
|
} | {
|
|
21087
21349
|
readonly lexicon: 1;
|
|
21088
21350
|
readonly id: "app.bsky.notification.listNotifications";
|
|
@@ -21191,6 +21453,49 @@ export declare const schemas: ({
|
|
|
21191
21453
|
};
|
|
21192
21454
|
};
|
|
21193
21455
|
};
|
|
21456
|
+
} | {
|
|
21457
|
+
readonly lexicon: 1;
|
|
21458
|
+
readonly id: "app.bsky.notification.putActivitySubscription";
|
|
21459
|
+
readonly defs: {
|
|
21460
|
+
readonly main: {
|
|
21461
|
+
readonly type: "procedure";
|
|
21462
|
+
readonly description: "Puts an activity subscription entry. The key should be omitted for creation and provided for updates. Requires auth.";
|
|
21463
|
+
readonly input: {
|
|
21464
|
+
readonly encoding: "application/json";
|
|
21465
|
+
readonly schema: {
|
|
21466
|
+
readonly type: "object";
|
|
21467
|
+
readonly required: ["subject", "activitySubscription"];
|
|
21468
|
+
readonly properties: {
|
|
21469
|
+
readonly subject: {
|
|
21470
|
+
readonly type: "string";
|
|
21471
|
+
readonly format: "did";
|
|
21472
|
+
};
|
|
21473
|
+
readonly activitySubscription: {
|
|
21474
|
+
readonly type: "ref";
|
|
21475
|
+
readonly ref: "lex:app.bsky.notification.defs#activitySubscription";
|
|
21476
|
+
};
|
|
21477
|
+
};
|
|
21478
|
+
};
|
|
21479
|
+
};
|
|
21480
|
+
readonly output: {
|
|
21481
|
+
readonly encoding: "application/json";
|
|
21482
|
+
readonly schema: {
|
|
21483
|
+
readonly type: "object";
|
|
21484
|
+
readonly required: ["subject"];
|
|
21485
|
+
readonly properties: {
|
|
21486
|
+
readonly subject: {
|
|
21487
|
+
readonly type: "string";
|
|
21488
|
+
readonly format: "did";
|
|
21489
|
+
};
|
|
21490
|
+
readonly activitySubscription: {
|
|
21491
|
+
readonly type: "ref";
|
|
21492
|
+
readonly ref: "lex:app.bsky.notification.defs#activitySubscription";
|
|
21493
|
+
};
|
|
21494
|
+
};
|
|
21495
|
+
};
|
|
21496
|
+
};
|
|
21497
|
+
};
|
|
21498
|
+
};
|
|
21194
21499
|
} | {
|
|
21195
21500
|
readonly lexicon: 1;
|
|
21196
21501
|
readonly id: "app.bsky.notification.putPreferences";
|
|
@@ -24021,8 +24326,8 @@ export declare const ids: {
|
|
|
24021
24326
|
readonly AppBskyFeedGetFeedSkeleton: "app.bsky.feed.getFeedSkeleton";
|
|
24022
24327
|
readonly AppBskyFeedGetLikes: "app.bsky.feed.getLikes";
|
|
24023
24328
|
readonly AppBskyFeedGetListFeed: "app.bsky.feed.getListFeed";
|
|
24024
|
-
readonly AppBskyFeedGetPosts: "app.bsky.feed.getPosts";
|
|
24025
24329
|
readonly AppBskyFeedGetPostThread: "app.bsky.feed.getPostThread";
|
|
24330
|
+
readonly AppBskyFeedGetPosts: "app.bsky.feed.getPosts";
|
|
24026
24331
|
readonly AppBskyFeedGetQuotes: "app.bsky.feed.getQuotes";
|
|
24027
24332
|
readonly AppBskyFeedGetRepostedBy: "app.bsky.feed.getRepostedBy";
|
|
24028
24333
|
readonly AppBskyFeedGetSuggestedFeeds: "app.bsky.feed.getSuggestedFeeds";
|
|
@@ -24066,10 +24371,13 @@ export declare const ids: {
|
|
|
24066
24371
|
readonly AppBskyLabelerDefs: "app.bsky.labeler.defs";
|
|
24067
24372
|
readonly AppBskyLabelerGetServices: "app.bsky.labeler.getServices";
|
|
24068
24373
|
readonly AppBskyLabelerService: "app.bsky.labeler.service";
|
|
24374
|
+
readonly AppBskyNotificationDeclaration: "app.bsky.notification.declaration";
|
|
24069
24375
|
readonly AppBskyNotificationDefs: "app.bsky.notification.defs";
|
|
24070
24376
|
readonly AppBskyNotificationGetPreferences: "app.bsky.notification.getPreferences";
|
|
24071
24377
|
readonly AppBskyNotificationGetUnreadCount: "app.bsky.notification.getUnreadCount";
|
|
24378
|
+
readonly AppBskyNotificationListActivitySubscriptions: "app.bsky.notification.listActivitySubscriptions";
|
|
24072
24379
|
readonly AppBskyNotificationListNotifications: "app.bsky.notification.listNotifications";
|
|
24380
|
+
readonly AppBskyNotificationPutActivitySubscription: "app.bsky.notification.putActivitySubscription";
|
|
24073
24381
|
readonly AppBskyNotificationPutPreferences: "app.bsky.notification.putPreferences";
|
|
24074
24382
|
readonly AppBskyNotificationPutPreferencesV2: "app.bsky.notification.putPreferencesV2";
|
|
24075
24383
|
readonly AppBskyNotificationRegisterPush: "app.bsky.notification.registerPush";
|