@atproto/bsky 0.0.174 → 0.0.175

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (50) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/dist/api/app/bsky/unspecced/initAgeAssurance.d.ts.map +1 -1
  3. package/dist/api/app/bsky/unspecced/initAgeAssurance.js +0 -6
  4. package/dist/api/app/bsky/unspecced/initAgeAssurance.js.map +1 -1
  5. package/dist/api/index.d.ts.map +1 -1
  6. package/dist/api/index.js +0 -2
  7. package/dist/api/index.js.map +1 -1
  8. package/dist/feature-gates.d.ts +1 -2
  9. package/dist/feature-gates.d.ts.map +1 -1
  10. package/dist/feature-gates.js +0 -1
  11. package/dist/feature-gates.js.map +1 -1
  12. package/dist/lexicon/index.d.ts +4 -4
  13. package/dist/lexicon/index.d.ts.map +1 -1
  14. package/dist/lexicon/index.js +8 -8
  15. package/dist/lexicon/index.js.map +1 -1
  16. package/dist/lexicon/lexicons.d.ts +254 -254
  17. package/dist/lexicon/lexicons.js +134 -134
  18. package/dist/lexicon/lexicons.js.map +1 -1
  19. package/dist/lexicon/types/{app/bsky/unspecced → com/atproto/temp}/checkHandleAvailability.d.ts +6 -6
  20. package/dist/lexicon/types/com/atproto/temp/checkHandleAvailability.d.ts.map +1 -0
  21. package/dist/lexicon/types/{app/bsky/unspecced → com/atproto/temp}/checkHandleAvailability.js +1 -1
  22. package/dist/lexicon/types/com/atproto/temp/checkHandleAvailability.js.map +1 -0
  23. package/package.json +8 -8
  24. package/src/api/app/bsky/unspecced/initAgeAssurance.ts +0 -8
  25. package/src/api/index.ts +0 -2
  26. package/src/feature-gates.ts +0 -1
  27. package/src/lexicon/index.ts +24 -24
  28. package/src/lexicon/lexicons.ts +143 -143
  29. package/src/lexicon/types/{app/bsky/unspecced → com/atproto/temp}/checkHandleAvailability.ts +4 -4
  30. package/tests/feed-generation.test.ts +6 -2
  31. package/tests/views/actor-search.test.ts +3 -1
  32. package/tests/views/age-assurance.test.ts +0 -3
  33. package/tests/views/author-feed.test.ts +3 -1
  34. package/tests/views/follows.test.ts +6 -2
  35. package/tests/views/likes.test.ts +3 -1
  36. package/tests/views/list-feed.test.ts +3 -1
  37. package/tests/views/mutes.test.ts +3 -1
  38. package/tests/views/notifications.test.ts +14 -7
  39. package/tests/views/reposts.test.ts +3 -1
  40. package/tests/views/timeline.test.ts +3 -1
  41. package/tsconfig.build.tsbuildinfo +1 -1
  42. package/tsconfig.tests.tsbuildinfo +1 -1
  43. package/dist/api/app/bsky/unspecced/checkHandleAvailability.d.ts +0 -4
  44. package/dist/api/app/bsky/unspecced/checkHandleAvailability.d.ts.map +0 -1
  45. package/dist/api/app/bsky/unspecced/checkHandleAvailability.js +0 -238
  46. package/dist/api/app/bsky/unspecced/checkHandleAvailability.js.map +0 -1
  47. package/dist/lexicon/types/app/bsky/unspecced/checkHandleAvailability.d.ts.map +0 -1
  48. package/dist/lexicon/types/app/bsky/unspecced/checkHandleAvailability.js.map +0 -1
  49. package/src/api/app/bsky/unspecced/checkHandleAvailability.ts +0 -291
  50. package/tests/views/handle-availability.test.ts +0 -294
@@ -4048,6 +4048,92 @@ export declare const schemaDict: {
4048
4048
  };
4049
4049
  };
4050
4050
  };
4051
+ readonly ComAtprotoTempCheckHandleAvailability: {
4052
+ readonly lexicon: 1;
4053
+ readonly id: "com.atproto.temp.checkHandleAvailability";
4054
+ readonly defs: {
4055
+ readonly main: {
4056
+ readonly type: "query";
4057
+ readonly description: "Checks whether the provided handle is available. If the handle is not available, available suggestions will be returned. Optional inputs will be used to generate suggestions.";
4058
+ readonly parameters: {
4059
+ readonly type: "params";
4060
+ readonly required: ["handle"];
4061
+ readonly properties: {
4062
+ readonly handle: {
4063
+ readonly type: "string";
4064
+ readonly format: "handle";
4065
+ readonly description: "Tentative handle. Will be checked for availability or used to build handle suggestions.";
4066
+ };
4067
+ readonly email: {
4068
+ readonly type: "string";
4069
+ readonly description: "User-provided email. Might be used to build handle suggestions.";
4070
+ };
4071
+ readonly birthDate: {
4072
+ readonly type: "string";
4073
+ readonly format: "datetime";
4074
+ readonly description: "User-provided birth date. Might be used to build handle suggestions.";
4075
+ };
4076
+ };
4077
+ };
4078
+ readonly output: {
4079
+ readonly encoding: "application/json";
4080
+ readonly schema: {
4081
+ readonly type: "object";
4082
+ readonly required: ["handle", "result"];
4083
+ readonly properties: {
4084
+ readonly handle: {
4085
+ readonly type: "string";
4086
+ readonly format: "handle";
4087
+ readonly description: "Echo of the input handle.";
4088
+ };
4089
+ readonly result: {
4090
+ readonly type: "union";
4091
+ readonly refs: ["lex:com.atproto.temp.checkHandleAvailability#resultAvailable", "lex:com.atproto.temp.checkHandleAvailability#resultUnavailable"];
4092
+ };
4093
+ };
4094
+ };
4095
+ };
4096
+ readonly errors: [{
4097
+ readonly name: "InvalidEmail";
4098
+ readonly description: "An invalid email was provided.";
4099
+ }];
4100
+ };
4101
+ readonly resultAvailable: {
4102
+ readonly type: "object";
4103
+ readonly description: "Indicates the provided handle is available.";
4104
+ readonly properties: {};
4105
+ };
4106
+ readonly resultUnavailable: {
4107
+ readonly type: "object";
4108
+ readonly description: "Indicates the provided handle is unavailable and gives suggestions of available handles.";
4109
+ readonly required: ["suggestions"];
4110
+ readonly properties: {
4111
+ readonly suggestions: {
4112
+ readonly type: "array";
4113
+ readonly description: "List of suggested handles based on the provided inputs.";
4114
+ readonly items: {
4115
+ readonly type: "ref";
4116
+ readonly ref: "lex:com.atproto.temp.checkHandleAvailability#suggestion";
4117
+ };
4118
+ };
4119
+ };
4120
+ };
4121
+ readonly suggestion: {
4122
+ readonly type: "object";
4123
+ readonly required: ["handle", "method"];
4124
+ readonly properties: {
4125
+ readonly handle: {
4126
+ readonly type: "string";
4127
+ readonly format: "handle";
4128
+ };
4129
+ readonly method: {
4130
+ readonly type: "string";
4131
+ readonly description: "Method used to build this suggestion. Should be considered opaque to clients. Can be used for metrics.";
4132
+ };
4133
+ };
4134
+ };
4135
+ };
4136
+ };
4051
4137
  readonly ComAtprotoTempCheckSignupQueue: {
4052
4138
  readonly lexicon: 1;
4053
4139
  readonly id: "com.atproto.temp.checkSignupQueue";
@@ -6689,47 +6775,6 @@ export declare const schemaDict: {
6689
6775
  };
6690
6776
  };
6691
6777
  };
6692
- readonly AppBskyFeedGetPosts: {
6693
- readonly lexicon: 1;
6694
- readonly id: "app.bsky.feed.getPosts";
6695
- readonly defs: {
6696
- readonly main: {
6697
- readonly type: "query";
6698
- readonly description: "Gets post views for a specified list of posts (by AT-URI). This is sometimes referred to as 'hydrating' a 'feed skeleton'.";
6699
- readonly parameters: {
6700
- readonly type: "params";
6701
- readonly required: ["uris"];
6702
- readonly properties: {
6703
- readonly uris: {
6704
- readonly type: "array";
6705
- readonly description: "List of post AT-URIs to return hydrated views for.";
6706
- readonly items: {
6707
- readonly type: "string";
6708
- readonly format: "at-uri";
6709
- };
6710
- readonly maxLength: 25;
6711
- };
6712
- };
6713
- };
6714
- readonly output: {
6715
- readonly encoding: "application/json";
6716
- readonly schema: {
6717
- readonly type: "object";
6718
- readonly required: ["posts"];
6719
- readonly properties: {
6720
- readonly posts: {
6721
- readonly type: "array";
6722
- readonly items: {
6723
- readonly type: "ref";
6724
- readonly ref: "lex:app.bsky.feed.defs#postView";
6725
- };
6726
- };
6727
- };
6728
- };
6729
- };
6730
- };
6731
- };
6732
- };
6733
6778
  readonly AppBskyFeedGetPostThread: {
6734
6779
  readonly lexicon: 1;
6735
6780
  readonly id: "app.bsky.feed.getPostThread";
@@ -6785,6 +6830,47 @@ export declare const schemaDict: {
6785
6830
  };
6786
6831
  };
6787
6832
  };
6833
+ readonly AppBskyFeedGetPosts: {
6834
+ readonly lexicon: 1;
6835
+ readonly id: "app.bsky.feed.getPosts";
6836
+ readonly defs: {
6837
+ readonly main: {
6838
+ readonly type: "query";
6839
+ readonly description: "Gets post views for a specified list of posts (by AT-URI). This is sometimes referred to as 'hydrating' a 'feed skeleton'.";
6840
+ readonly parameters: {
6841
+ readonly type: "params";
6842
+ readonly required: ["uris"];
6843
+ readonly properties: {
6844
+ readonly uris: {
6845
+ readonly type: "array";
6846
+ readonly description: "List of post AT-URIs to return hydrated views for.";
6847
+ readonly items: {
6848
+ readonly type: "string";
6849
+ readonly format: "at-uri";
6850
+ };
6851
+ readonly maxLength: 25;
6852
+ };
6853
+ };
6854
+ };
6855
+ readonly output: {
6856
+ readonly encoding: "application/json";
6857
+ readonly schema: {
6858
+ readonly type: "object";
6859
+ readonly required: ["posts"];
6860
+ readonly properties: {
6861
+ readonly posts: {
6862
+ readonly type: "array";
6863
+ readonly items: {
6864
+ readonly type: "ref";
6865
+ readonly ref: "lex:app.bsky.feed.defs#postView";
6866
+ };
6867
+ };
6868
+ };
6869
+ };
6870
+ };
6871
+ };
6872
+ };
6873
+ };
6788
6874
  readonly AppBskyFeedGetQuotes: {
6789
6875
  readonly lexicon: 1;
6790
6876
  readonly id: "app.bsky.feed.getQuotes";
@@ -9749,92 +9835,6 @@ export declare const schemaDict: {
9749
9835
  };
9750
9836
  };
9751
9837
  };
9752
- readonly AppBskyUnspeccedCheckHandleAvailability: {
9753
- readonly lexicon: 1;
9754
- readonly id: "app.bsky.unspecced.checkHandleAvailability";
9755
- readonly defs: {
9756
- readonly main: {
9757
- readonly type: "query";
9758
- readonly description: "Checks whether the provided handle is available. If the handle is not available, available suggestions will be returned. Optional inputs will be used to generate suggestions.";
9759
- readonly parameters: {
9760
- readonly type: "params";
9761
- readonly required: ["handle"];
9762
- readonly properties: {
9763
- readonly handle: {
9764
- readonly type: "string";
9765
- readonly format: "handle";
9766
- readonly description: "Tentative handle. Will be checked for availability or used to build handle suggestions.";
9767
- };
9768
- readonly email: {
9769
- readonly type: "string";
9770
- readonly description: "User-provided email. Might be used to build handle suggestions.";
9771
- };
9772
- readonly birthDate: {
9773
- readonly type: "string";
9774
- readonly format: "datetime";
9775
- readonly description: "User-provided birth date. Might be used to build handle suggestions.";
9776
- };
9777
- };
9778
- };
9779
- readonly output: {
9780
- readonly encoding: "application/json";
9781
- readonly schema: {
9782
- readonly type: "object";
9783
- readonly required: ["handle", "result"];
9784
- readonly properties: {
9785
- readonly handle: {
9786
- readonly type: "string";
9787
- readonly format: "handle";
9788
- readonly description: "Echo of the input handle.";
9789
- };
9790
- readonly result: {
9791
- readonly type: "union";
9792
- readonly refs: ["lex:app.bsky.unspecced.checkHandleAvailability#resultAvailable", "lex:app.bsky.unspecced.checkHandleAvailability#resultUnavailable"];
9793
- };
9794
- };
9795
- };
9796
- };
9797
- readonly errors: [{
9798
- readonly name: "InvalidEmail";
9799
- readonly description: "An invalid email was provided.";
9800
- }];
9801
- };
9802
- readonly resultAvailable: {
9803
- readonly type: "object";
9804
- readonly description: "Indicates the provided handle is available.";
9805
- readonly properties: {};
9806
- };
9807
- readonly resultUnavailable: {
9808
- readonly type: "object";
9809
- readonly description: "Indicates the provided handle is unavailable and gives suggestions of available handles.";
9810
- readonly required: ["suggestions"];
9811
- readonly properties: {
9812
- readonly suggestions: {
9813
- readonly type: "array";
9814
- readonly description: "List of suggested handles based on the provided inputs.";
9815
- readonly items: {
9816
- readonly type: "ref";
9817
- readonly ref: "lex:app.bsky.unspecced.checkHandleAvailability#suggestion";
9818
- };
9819
- };
9820
- };
9821
- };
9822
- readonly suggestion: {
9823
- readonly type: "object";
9824
- readonly required: ["handle", "method"];
9825
- readonly properties: {
9826
- readonly handle: {
9827
- readonly type: "string";
9828
- readonly format: "handle";
9829
- };
9830
- readonly method: {
9831
- readonly type: "string";
9832
- readonly description: "Method used to build this suggestion. Should be considered opaque to clients. Can be used for metrics.";
9833
- };
9834
- };
9835
- };
9836
- };
9837
- };
9838
9838
  readonly AppBskyUnspeccedDefs: {
9839
9839
  readonly lexicon: 1;
9840
9840
  readonly id: "app.bsky.unspecced.defs";
@@ -16434,6 +16434,91 @@ export declare const schemas: ({
16434
16434
  };
16435
16435
  };
16436
16436
  };
16437
+ } | {
16438
+ readonly lexicon: 1;
16439
+ readonly id: "com.atproto.temp.checkHandleAvailability";
16440
+ readonly defs: {
16441
+ readonly main: {
16442
+ readonly type: "query";
16443
+ readonly description: "Checks whether the provided handle is available. If the handle is not available, available suggestions will be returned. Optional inputs will be used to generate suggestions.";
16444
+ readonly parameters: {
16445
+ readonly type: "params";
16446
+ readonly required: ["handle"];
16447
+ readonly properties: {
16448
+ readonly handle: {
16449
+ readonly type: "string";
16450
+ readonly format: "handle";
16451
+ readonly description: "Tentative handle. Will be checked for availability or used to build handle suggestions.";
16452
+ };
16453
+ readonly email: {
16454
+ readonly type: "string";
16455
+ readonly description: "User-provided email. Might be used to build handle suggestions.";
16456
+ };
16457
+ readonly birthDate: {
16458
+ readonly type: "string";
16459
+ readonly format: "datetime";
16460
+ readonly description: "User-provided birth date. Might be used to build handle suggestions.";
16461
+ };
16462
+ };
16463
+ };
16464
+ readonly output: {
16465
+ readonly encoding: "application/json";
16466
+ readonly schema: {
16467
+ readonly type: "object";
16468
+ readonly required: ["handle", "result"];
16469
+ readonly properties: {
16470
+ readonly handle: {
16471
+ readonly type: "string";
16472
+ readonly format: "handle";
16473
+ readonly description: "Echo of the input handle.";
16474
+ };
16475
+ readonly result: {
16476
+ readonly type: "union";
16477
+ readonly refs: ["lex:com.atproto.temp.checkHandleAvailability#resultAvailable", "lex:com.atproto.temp.checkHandleAvailability#resultUnavailable"];
16478
+ };
16479
+ };
16480
+ };
16481
+ };
16482
+ readonly errors: [{
16483
+ readonly name: "InvalidEmail";
16484
+ readonly description: "An invalid email was provided.";
16485
+ }];
16486
+ };
16487
+ readonly resultAvailable: {
16488
+ readonly type: "object";
16489
+ readonly description: "Indicates the provided handle is available.";
16490
+ readonly properties: {};
16491
+ };
16492
+ readonly resultUnavailable: {
16493
+ readonly type: "object";
16494
+ readonly description: "Indicates the provided handle is unavailable and gives suggestions of available handles.";
16495
+ readonly required: ["suggestions"];
16496
+ readonly properties: {
16497
+ readonly suggestions: {
16498
+ readonly type: "array";
16499
+ readonly description: "List of suggested handles based on the provided inputs.";
16500
+ readonly items: {
16501
+ readonly type: "ref";
16502
+ readonly ref: "lex:com.atproto.temp.checkHandleAvailability#suggestion";
16503
+ };
16504
+ };
16505
+ };
16506
+ };
16507
+ readonly suggestion: {
16508
+ readonly type: "object";
16509
+ readonly required: ["handle", "method"];
16510
+ readonly properties: {
16511
+ readonly handle: {
16512
+ readonly type: "string";
16513
+ readonly format: "handle";
16514
+ };
16515
+ readonly method: {
16516
+ readonly type: "string";
16517
+ readonly description: "Method used to build this suggestion. Should be considered opaque to clients. Can be used for metrics.";
16518
+ };
16519
+ };
16520
+ };
16521
+ };
16437
16522
  } | {
16438
16523
  readonly lexicon: 1;
16439
16524
  readonly id: "com.atproto.temp.checkSignupQueue";
@@ -19044,46 +19129,6 @@ export declare const schemas: ({
19044
19129
  }];
19045
19130
  };
19046
19131
  };
19047
- } | {
19048
- readonly lexicon: 1;
19049
- readonly id: "app.bsky.feed.getPosts";
19050
- readonly defs: {
19051
- readonly main: {
19052
- readonly type: "query";
19053
- readonly description: "Gets post views for a specified list of posts (by AT-URI). This is sometimes referred to as 'hydrating' a 'feed skeleton'.";
19054
- readonly parameters: {
19055
- readonly type: "params";
19056
- readonly required: ["uris"];
19057
- readonly properties: {
19058
- readonly uris: {
19059
- readonly type: "array";
19060
- readonly description: "List of post AT-URIs to return hydrated views for.";
19061
- readonly items: {
19062
- readonly type: "string";
19063
- readonly format: "at-uri";
19064
- };
19065
- readonly maxLength: 25;
19066
- };
19067
- };
19068
- };
19069
- readonly output: {
19070
- readonly encoding: "application/json";
19071
- readonly schema: {
19072
- readonly type: "object";
19073
- readonly required: ["posts"];
19074
- readonly properties: {
19075
- readonly posts: {
19076
- readonly type: "array";
19077
- readonly items: {
19078
- readonly type: "ref";
19079
- readonly ref: "lex:app.bsky.feed.defs#postView";
19080
- };
19081
- };
19082
- };
19083
- };
19084
- };
19085
- };
19086
- };
19087
19132
  } | {
19088
19133
  readonly lexicon: 1;
19089
19134
  readonly id: "app.bsky.feed.getPostThread";
@@ -19138,6 +19183,46 @@ export declare const schemas: ({
19138
19183
  }];
19139
19184
  };
19140
19185
  };
19186
+ } | {
19187
+ readonly lexicon: 1;
19188
+ readonly id: "app.bsky.feed.getPosts";
19189
+ readonly defs: {
19190
+ readonly main: {
19191
+ readonly type: "query";
19192
+ readonly description: "Gets post views for a specified list of posts (by AT-URI). This is sometimes referred to as 'hydrating' a 'feed skeleton'.";
19193
+ readonly parameters: {
19194
+ readonly type: "params";
19195
+ readonly required: ["uris"];
19196
+ readonly properties: {
19197
+ readonly uris: {
19198
+ readonly type: "array";
19199
+ readonly description: "List of post AT-URIs to return hydrated views for.";
19200
+ readonly items: {
19201
+ readonly type: "string";
19202
+ readonly format: "at-uri";
19203
+ };
19204
+ readonly maxLength: 25;
19205
+ };
19206
+ };
19207
+ };
19208
+ readonly output: {
19209
+ readonly encoding: "application/json";
19210
+ readonly schema: {
19211
+ readonly type: "object";
19212
+ readonly required: ["posts"];
19213
+ readonly properties: {
19214
+ readonly posts: {
19215
+ readonly type: "array";
19216
+ readonly items: {
19217
+ readonly type: "ref";
19218
+ readonly ref: "lex:app.bsky.feed.defs#postView";
19219
+ };
19220
+ };
19221
+ };
19222
+ };
19223
+ };
19224
+ };
19225
+ };
19141
19226
  } | {
19142
19227
  readonly lexicon: 1;
19143
19228
  readonly id: "app.bsky.feed.getQuotes";
@@ -22046,91 +22131,6 @@ export declare const schemas: ({
22046
22131
  };
22047
22132
  };
22048
22133
  };
22049
- } | {
22050
- readonly lexicon: 1;
22051
- readonly id: "app.bsky.unspecced.checkHandleAvailability";
22052
- readonly defs: {
22053
- readonly main: {
22054
- readonly type: "query";
22055
- readonly description: "Checks whether the provided handle is available. If the handle is not available, available suggestions will be returned. Optional inputs will be used to generate suggestions.";
22056
- readonly parameters: {
22057
- readonly type: "params";
22058
- readonly required: ["handle"];
22059
- readonly properties: {
22060
- readonly handle: {
22061
- readonly type: "string";
22062
- readonly format: "handle";
22063
- readonly description: "Tentative handle. Will be checked for availability or used to build handle suggestions.";
22064
- };
22065
- readonly email: {
22066
- readonly type: "string";
22067
- readonly description: "User-provided email. Might be used to build handle suggestions.";
22068
- };
22069
- readonly birthDate: {
22070
- readonly type: "string";
22071
- readonly format: "datetime";
22072
- readonly description: "User-provided birth date. Might be used to build handle suggestions.";
22073
- };
22074
- };
22075
- };
22076
- readonly output: {
22077
- readonly encoding: "application/json";
22078
- readonly schema: {
22079
- readonly type: "object";
22080
- readonly required: ["handle", "result"];
22081
- readonly properties: {
22082
- readonly handle: {
22083
- readonly type: "string";
22084
- readonly format: "handle";
22085
- readonly description: "Echo of the input handle.";
22086
- };
22087
- readonly result: {
22088
- readonly type: "union";
22089
- readonly refs: ["lex:app.bsky.unspecced.checkHandleAvailability#resultAvailable", "lex:app.bsky.unspecced.checkHandleAvailability#resultUnavailable"];
22090
- };
22091
- };
22092
- };
22093
- };
22094
- readonly errors: [{
22095
- readonly name: "InvalidEmail";
22096
- readonly description: "An invalid email was provided.";
22097
- }];
22098
- };
22099
- readonly resultAvailable: {
22100
- readonly type: "object";
22101
- readonly description: "Indicates the provided handle is available.";
22102
- readonly properties: {};
22103
- };
22104
- readonly resultUnavailable: {
22105
- readonly type: "object";
22106
- readonly description: "Indicates the provided handle is unavailable and gives suggestions of available handles.";
22107
- readonly required: ["suggestions"];
22108
- readonly properties: {
22109
- readonly suggestions: {
22110
- readonly type: "array";
22111
- readonly description: "List of suggested handles based on the provided inputs.";
22112
- readonly items: {
22113
- readonly type: "ref";
22114
- readonly ref: "lex:app.bsky.unspecced.checkHandleAvailability#suggestion";
22115
- };
22116
- };
22117
- };
22118
- };
22119
- readonly suggestion: {
22120
- readonly type: "object";
22121
- readonly required: ["handle", "method"];
22122
- readonly properties: {
22123
- readonly handle: {
22124
- readonly type: "string";
22125
- readonly format: "handle";
22126
- };
22127
- readonly method: {
22128
- readonly type: "string";
22129
- readonly description: "Method used to build this suggestion. Should be considered opaque to clients. Can be used for metrics.";
22130
- };
22131
- };
22132
- };
22133
- };
22134
22134
  } | {
22135
22135
  readonly lexicon: 1;
22136
22136
  readonly id: "app.bsky.unspecced.defs";
@@ -24819,6 +24819,7 @@ export declare const ids: {
24819
24819
  readonly ComAtprotoSyncRequestCrawl: "com.atproto.sync.requestCrawl";
24820
24820
  readonly ComAtprotoSyncSubscribeRepos: "com.atproto.sync.subscribeRepos";
24821
24821
  readonly ComAtprotoTempAddReservedHandle: "com.atproto.temp.addReservedHandle";
24822
+ readonly ComAtprotoTempCheckHandleAvailability: "com.atproto.temp.checkHandleAvailability";
24822
24823
  readonly ComAtprotoTempCheckSignupQueue: "com.atproto.temp.checkSignupQueue";
24823
24824
  readonly ComAtprotoTempFetchLabels: "com.atproto.temp.fetchLabels";
24824
24825
  readonly ComAtprotoTempRequestPhoneVerification: "com.atproto.temp.requestPhoneVerification";
@@ -24850,8 +24851,8 @@ export declare const ids: {
24850
24851
  readonly AppBskyFeedGetFeedSkeleton: "app.bsky.feed.getFeedSkeleton";
24851
24852
  readonly AppBskyFeedGetLikes: "app.bsky.feed.getLikes";
24852
24853
  readonly AppBskyFeedGetListFeed: "app.bsky.feed.getListFeed";
24853
- readonly AppBskyFeedGetPosts: "app.bsky.feed.getPosts";
24854
24854
  readonly AppBskyFeedGetPostThread: "app.bsky.feed.getPostThread";
24855
+ readonly AppBskyFeedGetPosts: "app.bsky.feed.getPosts";
24855
24856
  readonly AppBskyFeedGetQuotes: "app.bsky.feed.getQuotes";
24856
24857
  readonly AppBskyFeedGetRepostedBy: "app.bsky.feed.getRepostedBy";
24857
24858
  readonly AppBskyFeedGetSuggestedFeeds: "app.bsky.feed.getSuggestedFeeds";
@@ -24908,7 +24909,6 @@ export declare const ids: {
24908
24909
  readonly AppBskyNotificationUnregisterPush: "app.bsky.notification.unregisterPush";
24909
24910
  readonly AppBskyNotificationUpdateSeen: "app.bsky.notification.updateSeen";
24910
24911
  readonly AppBskyRichtextFacet: "app.bsky.richtext.facet";
24911
- readonly AppBskyUnspeccedCheckHandleAvailability: "app.bsky.unspecced.checkHandleAvailability";
24912
24912
  readonly AppBskyUnspeccedDefs: "app.bsky.unspecced.defs";
24913
24913
  readonly AppBskyUnspeccedGetAgeAssuranceState: "app.bsky.unspecced.getAgeAssuranceState";
24914
24914
  readonly AppBskyUnspeccedGetConfig: "app.bsky.unspecced.getConfig";