@atproto/pds 0.4.159 → 0.4.161

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 (36) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/dist/lexicon/index.d.ts +8 -2
  3. package/dist/lexicon/index.d.ts.map +1 -1
  4. package/dist/lexicon/index.js +16 -4
  5. package/dist/lexicon/index.js.map +1 -1
  6. package/dist/lexicon/lexicons.d.ts +388 -82
  7. package/dist/lexicon/lexicons.d.ts.map +1 -1
  8. package/dist/lexicon/lexicons.js +199 -42
  9. package/dist/lexicon/lexicons.js.map +1 -1
  10. package/dist/lexicon/types/app/bsky/notification/unregisterPush.d.ts +17 -0
  11. package/dist/lexicon/types/app/bsky/notification/unregisterPush.d.ts.map +1 -0
  12. package/dist/lexicon/types/app/bsky/notification/unregisterPush.js +7 -0
  13. package/dist/lexicon/types/app/bsky/notification/unregisterPush.js.map +1 -0
  14. package/dist/lexicon/types/app/bsky/unspecced/defs.d.ts +32 -0
  15. package/dist/lexicon/types/app/bsky/unspecced/defs.d.ts.map +1 -1
  16. package/dist/lexicon/types/app/bsky/unspecced/defs.js +18 -0
  17. package/dist/lexicon/types/app/bsky/unspecced/defs.js.map +1 -1
  18. package/dist/lexicon/types/app/bsky/unspecced/getAgeAssuranceState.d.ts +18 -0
  19. package/dist/lexicon/types/app/bsky/unspecced/getAgeAssuranceState.d.ts.map +1 -0
  20. package/dist/lexicon/types/app/bsky/unspecced/getAgeAssuranceState.js +7 -0
  21. package/dist/lexicon/types/app/bsky/unspecced/getAgeAssuranceState.js.map +1 -0
  22. package/dist/lexicon/types/app/bsky/unspecced/initAgeAssurance.d.ts +28 -0
  23. package/dist/lexicon/types/app/bsky/unspecced/initAgeAssurance.d.ts.map +1 -0
  24. package/dist/lexicon/types/app/bsky/unspecced/initAgeAssurance.js +7 -0
  25. package/dist/lexicon/types/app/bsky/unspecced/initAgeAssurance.js.map +1 -0
  26. package/dist/lexicon/types/tools/ozone/moderation/emitEvent.d.ts +3 -1
  27. package/dist/lexicon/types/tools/ozone/moderation/emitEvent.d.ts.map +1 -1
  28. package/package.json +5 -5
  29. package/src/lexicon/index.ts +50 -11
  30. package/src/lexicon/lexicons.ts +211 -43
  31. package/src/lexicon/types/app/bsky/notification/unregisterPush.ts +36 -0
  32. package/src/lexicon/types/app/bsky/unspecced/defs.ts +50 -0
  33. package/src/lexicon/types/app/bsky/unspecced/getAgeAssuranceState.ts +34 -0
  34. package/src/lexicon/types/app/bsky/unspecced/initAgeAssurance.ts +47 -0
  35. package/src/lexicon/types/tools/ozone/moderation/emitEvent.ts +3 -1
  36. package/tsconfig.build.tsbuildinfo +1 -1
@@ -6689,47 +6689,6 @@ export declare const schemaDict: {
6689
6689
  };
6690
6690
  };
6691
6691
  };
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
6692
  readonly AppBskyFeedGetPostThread: {
6734
6693
  readonly lexicon: 1;
6735
6694
  readonly id: "app.bsky.feed.getPostThread";
@@ -6785,6 +6744,47 @@ export declare const schemaDict: {
6785
6744
  };
6786
6745
  };
6787
6746
  };
6747
+ readonly AppBskyFeedGetPosts: {
6748
+ readonly lexicon: 1;
6749
+ readonly id: "app.bsky.feed.getPosts";
6750
+ readonly defs: {
6751
+ readonly main: {
6752
+ readonly type: "query";
6753
+ readonly description: "Gets post views for a specified list of posts (by AT-URI). This is sometimes referred to as 'hydrating' a 'feed skeleton'.";
6754
+ readonly parameters: {
6755
+ readonly type: "params";
6756
+ readonly required: ["uris"];
6757
+ readonly properties: {
6758
+ readonly uris: {
6759
+ readonly type: "array";
6760
+ readonly description: "List of post AT-URIs to return hydrated views for.";
6761
+ readonly items: {
6762
+ readonly type: "string";
6763
+ readonly format: "at-uri";
6764
+ };
6765
+ readonly maxLength: 25;
6766
+ };
6767
+ };
6768
+ };
6769
+ readonly output: {
6770
+ readonly encoding: "application/json";
6771
+ readonly schema: {
6772
+ readonly type: "object";
6773
+ readonly required: ["posts"];
6774
+ readonly properties: {
6775
+ readonly posts: {
6776
+ readonly type: "array";
6777
+ readonly items: {
6778
+ readonly type: "ref";
6779
+ readonly ref: "lex:app.bsky.feed.defs#postView";
6780
+ };
6781
+ };
6782
+ };
6783
+ };
6784
+ };
6785
+ };
6786
+ };
6787
+ };
6788
6788
  readonly AppBskyFeedGetQuotes: {
6789
6789
  readonly lexicon: 1;
6790
6790
  readonly id: "app.bsky.feed.getQuotes";
@@ -9620,6 +9620,39 @@ export declare const schemaDict: {
9620
9620
  };
9621
9621
  };
9622
9622
  };
9623
+ readonly AppBskyNotificationUnregisterPush: {
9624
+ readonly lexicon: 1;
9625
+ readonly id: "app.bsky.notification.unregisterPush";
9626
+ readonly defs: {
9627
+ readonly main: {
9628
+ readonly type: "procedure";
9629
+ readonly description: "The inverse of registerPush - inform a specified service that push notifications should no longer be sent to the given token for the requesting account. Requires auth.";
9630
+ readonly input: {
9631
+ readonly encoding: "application/json";
9632
+ readonly schema: {
9633
+ readonly type: "object";
9634
+ readonly required: ["serviceDid", "token", "platform", "appId"];
9635
+ readonly properties: {
9636
+ readonly serviceDid: {
9637
+ readonly type: "string";
9638
+ readonly format: "did";
9639
+ };
9640
+ readonly token: {
9641
+ readonly type: "string";
9642
+ };
9643
+ readonly platform: {
9644
+ readonly type: "string";
9645
+ readonly knownValues: ["ios", "android", "web"];
9646
+ };
9647
+ readonly appId: {
9648
+ readonly type: "string";
9649
+ };
9650
+ };
9651
+ };
9652
+ };
9653
+ };
9654
+ };
9655
+ };
9623
9656
  readonly AppBskyNotificationUpdateSeen: {
9624
9657
  readonly lexicon: 1;
9625
9658
  readonly id: "app.bsky.notification.updateSeen";
@@ -9888,6 +9921,81 @@ export declare const schemaDict: {
9888
9921
  };
9889
9922
  };
9890
9923
  };
9924
+ readonly ageAssuranceState: {
9925
+ readonly type: "object";
9926
+ readonly description: "The computed state of the age assurance process, returned to the user in question on certain authenticated requests.";
9927
+ readonly required: ["status"];
9928
+ readonly properties: {
9929
+ readonly lastInitiatedAt: {
9930
+ readonly type: "string";
9931
+ readonly format: "datetime";
9932
+ readonly description: "The timestamp when this state was last updated.";
9933
+ };
9934
+ readonly status: {
9935
+ readonly type: "string";
9936
+ readonly description: "The status of the age assurance process.";
9937
+ readonly knownValues: ["unknown", "pending", "assured", "blocked"];
9938
+ };
9939
+ };
9940
+ };
9941
+ readonly ageAssuranceEvent: {
9942
+ readonly type: "object";
9943
+ readonly description: "Object used to store age assurance data in stash.";
9944
+ readonly required: ["createdAt", "status", "attemptId"];
9945
+ readonly properties: {
9946
+ readonly createdAt: {
9947
+ readonly type: "string";
9948
+ readonly format: "datetime";
9949
+ readonly description: "The date and time of this write operation.";
9950
+ };
9951
+ readonly status: {
9952
+ readonly type: "string";
9953
+ readonly description: "The status of the age assurance process.";
9954
+ readonly knownValues: ["unknown", "pending", "assured"];
9955
+ };
9956
+ readonly attemptId: {
9957
+ readonly type: "string";
9958
+ readonly description: "The unique identifier for this instance of the age assurance flow, in UUID format.";
9959
+ };
9960
+ readonly email: {
9961
+ readonly type: "string";
9962
+ readonly description: "The email used for AA.";
9963
+ };
9964
+ readonly initIp: {
9965
+ readonly type: "string";
9966
+ readonly description: "The IP address used when initiating the AA flow.";
9967
+ };
9968
+ readonly initUa: {
9969
+ readonly type: "string";
9970
+ readonly description: "The user agent used when initiating the AA flow.";
9971
+ };
9972
+ readonly completeIp: {
9973
+ readonly type: "string";
9974
+ readonly description: "The IP address used when completing the AA flow.";
9975
+ };
9976
+ readonly completeUa: {
9977
+ readonly type: "string";
9978
+ readonly description: "The user agent used when completing the AA flow.";
9979
+ };
9980
+ };
9981
+ };
9982
+ };
9983
+ };
9984
+ readonly AppBskyUnspeccedGetAgeAssuranceState: {
9985
+ readonly lexicon: 1;
9986
+ readonly id: "app.bsky.unspecced.getAgeAssuranceState";
9987
+ readonly defs: {
9988
+ readonly main: {
9989
+ readonly type: "query";
9990
+ readonly description: "Returns the current state of the age assurance process for an account. This is used to check if the user has completed age assurance or if further action is required.";
9991
+ readonly output: {
9992
+ readonly encoding: "application/json";
9993
+ readonly schema: {
9994
+ readonly type: "ref";
9995
+ readonly ref: "lex:app.bsky.unspecced.defs#ageAssuranceState";
9996
+ };
9997
+ };
9998
+ };
9891
9999
  };
9892
10000
  };
9893
10001
  readonly AppBskyUnspeccedGetConfig: {
@@ -10618,6 +10726,44 @@ export declare const schemaDict: {
10618
10726
  };
10619
10727
  };
10620
10728
  };
10729
+ readonly AppBskyUnspeccedInitAgeAssurance: {
10730
+ readonly lexicon: 1;
10731
+ readonly id: "app.bsky.unspecced.initAgeAssurance";
10732
+ readonly defs: {
10733
+ readonly main: {
10734
+ readonly type: "procedure";
10735
+ readonly description: "Initiate age assurance for an account. This is a one-time action that will start the process of verifying the user's age.";
10736
+ readonly input: {
10737
+ readonly encoding: "application/json";
10738
+ readonly schema: {
10739
+ readonly type: "object";
10740
+ readonly required: ["email", "language", "countryCode"];
10741
+ readonly properties: {
10742
+ readonly email: {
10743
+ readonly type: "string";
10744
+ readonly description: "The user's email address to receive assurance instructions.";
10745
+ };
10746
+ readonly language: {
10747
+ readonly type: "string";
10748
+ readonly description: "The user's preferred language for communication during the assurance process.";
10749
+ };
10750
+ readonly countryCode: {
10751
+ readonly type: "string";
10752
+ readonly description: "An ISO 3166-1 alpha-2 code of the user's location.";
10753
+ };
10754
+ };
10755
+ };
10756
+ };
10757
+ readonly output: {
10758
+ readonly encoding: "application/json";
10759
+ readonly schema: {
10760
+ readonly type: "ref";
10761
+ readonly ref: "lex:app.bsky.unspecced.defs#ageAssuranceState";
10762
+ };
10763
+ };
10764
+ };
10765
+ };
10766
+ };
10621
10767
  readonly AppBskyUnspeccedSearchActorsSkeleton: {
10622
10768
  readonly lexicon: 1;
10623
10769
  readonly id: "app.bsky.unspecced.searchActorsSkeleton";
@@ -13668,6 +13814,10 @@ export declare const schemaDict: {
13668
13814
  readonly type: "ref";
13669
13815
  readonly ref: "lex:tools.ozone.moderation.defs#modTool";
13670
13816
  };
13817
+ readonly externalId: {
13818
+ readonly type: "string";
13819
+ readonly description: "An optional external ID for the event, used to deduplicate events from external systems. Fails when an event of same type with the same external ID exists for the same subject.";
13820
+ };
13671
13821
  };
13672
13822
  };
13673
13823
  };
@@ -13680,6 +13830,9 @@ export declare const schemaDict: {
13680
13830
  };
13681
13831
  readonly errors: [{
13682
13832
  readonly name: "SubjectHasAction";
13833
+ }, {
13834
+ readonly name: "DuplicateExternalId";
13835
+ readonly description: "An event with the same external ID already exists for the subject.";
13683
13836
  }];
13684
13837
  };
13685
13838
  };
@@ -22591,46 +22744,6 @@ export declare const schemas: ({
22591
22744
  }];
22592
22745
  };
22593
22746
  };
22594
- } | {
22595
- readonly lexicon: 1;
22596
- readonly id: "app.bsky.feed.getPosts";
22597
- readonly defs: {
22598
- readonly main: {
22599
- readonly type: "query";
22600
- readonly description: "Gets post views for a specified list of posts (by AT-URI). This is sometimes referred to as 'hydrating' a 'feed skeleton'.";
22601
- readonly parameters: {
22602
- readonly type: "params";
22603
- readonly required: ["uris"];
22604
- readonly properties: {
22605
- readonly uris: {
22606
- readonly type: "array";
22607
- readonly description: "List of post AT-URIs to return hydrated views for.";
22608
- readonly items: {
22609
- readonly type: "string";
22610
- readonly format: "at-uri";
22611
- };
22612
- readonly maxLength: 25;
22613
- };
22614
- };
22615
- };
22616
- readonly output: {
22617
- readonly encoding: "application/json";
22618
- readonly schema: {
22619
- readonly type: "object";
22620
- readonly required: ["posts"];
22621
- readonly properties: {
22622
- readonly posts: {
22623
- readonly type: "array";
22624
- readonly items: {
22625
- readonly type: "ref";
22626
- readonly ref: "lex:app.bsky.feed.defs#postView";
22627
- };
22628
- };
22629
- };
22630
- };
22631
- };
22632
- };
22633
- };
22634
22747
  } | {
22635
22748
  readonly lexicon: 1;
22636
22749
  readonly id: "app.bsky.feed.getPostThread";
@@ -22685,6 +22798,46 @@ export declare const schemas: ({
22685
22798
  }];
22686
22799
  };
22687
22800
  };
22801
+ } | {
22802
+ readonly lexicon: 1;
22803
+ readonly id: "app.bsky.feed.getPosts";
22804
+ readonly defs: {
22805
+ readonly main: {
22806
+ readonly type: "query";
22807
+ readonly description: "Gets post views for a specified list of posts (by AT-URI). This is sometimes referred to as 'hydrating' a 'feed skeleton'.";
22808
+ readonly parameters: {
22809
+ readonly type: "params";
22810
+ readonly required: ["uris"];
22811
+ readonly properties: {
22812
+ readonly uris: {
22813
+ readonly type: "array";
22814
+ readonly description: "List of post AT-URIs to return hydrated views for.";
22815
+ readonly items: {
22816
+ readonly type: "string";
22817
+ readonly format: "at-uri";
22818
+ };
22819
+ readonly maxLength: 25;
22820
+ };
22821
+ };
22822
+ };
22823
+ readonly output: {
22824
+ readonly encoding: "application/json";
22825
+ readonly schema: {
22826
+ readonly type: "object";
22827
+ readonly required: ["posts"];
22828
+ readonly properties: {
22829
+ readonly posts: {
22830
+ readonly type: "array";
22831
+ readonly items: {
22832
+ readonly type: "ref";
22833
+ readonly ref: "lex:app.bsky.feed.defs#postView";
22834
+ };
22835
+ };
22836
+ };
22837
+ };
22838
+ };
22839
+ };
22840
+ };
22688
22841
  } | {
22689
22842
  readonly lexicon: 1;
22690
22843
  readonly id: "app.bsky.feed.getQuotes";
@@ -25467,6 +25620,38 @@ export declare const schemas: ({
25467
25620
  };
25468
25621
  };
25469
25622
  };
25623
+ } | {
25624
+ readonly lexicon: 1;
25625
+ readonly id: "app.bsky.notification.unregisterPush";
25626
+ readonly defs: {
25627
+ readonly main: {
25628
+ readonly type: "procedure";
25629
+ readonly description: "The inverse of registerPush - inform a specified service that push notifications should no longer be sent to the given token for the requesting account. Requires auth.";
25630
+ readonly input: {
25631
+ readonly encoding: "application/json";
25632
+ readonly schema: {
25633
+ readonly type: "object";
25634
+ readonly required: ["serviceDid", "token", "platform", "appId"];
25635
+ readonly properties: {
25636
+ readonly serviceDid: {
25637
+ readonly type: "string";
25638
+ readonly format: "did";
25639
+ };
25640
+ readonly token: {
25641
+ readonly type: "string";
25642
+ };
25643
+ readonly platform: {
25644
+ readonly type: "string";
25645
+ readonly knownValues: ["ios", "android", "web"];
25646
+ };
25647
+ readonly appId: {
25648
+ readonly type: "string";
25649
+ };
25650
+ };
25651
+ };
25652
+ };
25653
+ };
25654
+ };
25470
25655
  } | {
25471
25656
  readonly lexicon: 1;
25472
25657
  readonly id: "app.bsky.notification.updateSeen";
@@ -25733,6 +25918,80 @@ export declare const schemas: ({
25733
25918
  };
25734
25919
  };
25735
25920
  };
25921
+ readonly ageAssuranceState: {
25922
+ readonly type: "object";
25923
+ readonly description: "The computed state of the age assurance process, returned to the user in question on certain authenticated requests.";
25924
+ readonly required: ["status"];
25925
+ readonly properties: {
25926
+ readonly lastInitiatedAt: {
25927
+ readonly type: "string";
25928
+ readonly format: "datetime";
25929
+ readonly description: "The timestamp when this state was last updated.";
25930
+ };
25931
+ readonly status: {
25932
+ readonly type: "string";
25933
+ readonly description: "The status of the age assurance process.";
25934
+ readonly knownValues: ["unknown", "pending", "assured", "blocked"];
25935
+ };
25936
+ };
25937
+ };
25938
+ readonly ageAssuranceEvent: {
25939
+ readonly type: "object";
25940
+ readonly description: "Object used to store age assurance data in stash.";
25941
+ readonly required: ["createdAt", "status", "attemptId"];
25942
+ readonly properties: {
25943
+ readonly createdAt: {
25944
+ readonly type: "string";
25945
+ readonly format: "datetime";
25946
+ readonly description: "The date and time of this write operation.";
25947
+ };
25948
+ readonly status: {
25949
+ readonly type: "string";
25950
+ readonly description: "The status of the age assurance process.";
25951
+ readonly knownValues: ["unknown", "pending", "assured"];
25952
+ };
25953
+ readonly attemptId: {
25954
+ readonly type: "string";
25955
+ readonly description: "The unique identifier for this instance of the age assurance flow, in UUID format.";
25956
+ };
25957
+ readonly email: {
25958
+ readonly type: "string";
25959
+ readonly description: "The email used for AA.";
25960
+ };
25961
+ readonly initIp: {
25962
+ readonly type: "string";
25963
+ readonly description: "The IP address used when initiating the AA flow.";
25964
+ };
25965
+ readonly initUa: {
25966
+ readonly type: "string";
25967
+ readonly description: "The user agent used when initiating the AA flow.";
25968
+ };
25969
+ readonly completeIp: {
25970
+ readonly type: "string";
25971
+ readonly description: "The IP address used when completing the AA flow.";
25972
+ };
25973
+ readonly completeUa: {
25974
+ readonly type: "string";
25975
+ readonly description: "The user agent used when completing the AA flow.";
25976
+ };
25977
+ };
25978
+ };
25979
+ };
25980
+ } | {
25981
+ readonly lexicon: 1;
25982
+ readonly id: "app.bsky.unspecced.getAgeAssuranceState";
25983
+ readonly defs: {
25984
+ readonly main: {
25985
+ readonly type: "query";
25986
+ readonly description: "Returns the current state of the age assurance process for an account. This is used to check if the user has completed age assurance or if further action is required.";
25987
+ readonly output: {
25988
+ readonly encoding: "application/json";
25989
+ readonly schema: {
25990
+ readonly type: "ref";
25991
+ readonly ref: "lex:app.bsky.unspecced.defs#ageAssuranceState";
25992
+ };
25993
+ };
25994
+ };
25736
25995
  };
25737
25996
  } | {
25738
25997
  readonly lexicon: 1;
@@ -26447,6 +26706,43 @@ export declare const schemas: ({
26447
26706
  };
26448
26707
  };
26449
26708
  };
26709
+ } | {
26710
+ readonly lexicon: 1;
26711
+ readonly id: "app.bsky.unspecced.initAgeAssurance";
26712
+ readonly defs: {
26713
+ readonly main: {
26714
+ readonly type: "procedure";
26715
+ readonly description: "Initiate age assurance for an account. This is a one-time action that will start the process of verifying the user's age.";
26716
+ readonly input: {
26717
+ readonly encoding: "application/json";
26718
+ readonly schema: {
26719
+ readonly type: "object";
26720
+ readonly required: ["email", "language", "countryCode"];
26721
+ readonly properties: {
26722
+ readonly email: {
26723
+ readonly type: "string";
26724
+ readonly description: "The user's email address to receive assurance instructions.";
26725
+ };
26726
+ readonly language: {
26727
+ readonly type: "string";
26728
+ readonly description: "The user's preferred language for communication during the assurance process.";
26729
+ };
26730
+ readonly countryCode: {
26731
+ readonly type: "string";
26732
+ readonly description: "An ISO 3166-1 alpha-2 code of the user's location.";
26733
+ };
26734
+ };
26735
+ };
26736
+ };
26737
+ readonly output: {
26738
+ readonly encoding: "application/json";
26739
+ readonly schema: {
26740
+ readonly type: "ref";
26741
+ readonly ref: "lex:app.bsky.unspecced.defs#ageAssuranceState";
26742
+ };
26743
+ };
26744
+ };
26745
+ };
26450
26746
  } | {
26451
26747
  readonly lexicon: 1;
26452
26748
  readonly id: "app.bsky.unspecced.searchActorsSkeleton";
@@ -29458,6 +29754,10 @@ export declare const schemas: ({
29458
29754
  readonly type: "ref";
29459
29755
  readonly ref: "lex:tools.ozone.moderation.defs#modTool";
29460
29756
  };
29757
+ readonly externalId: {
29758
+ readonly type: "string";
29759
+ readonly description: "An optional external ID for the event, used to deduplicate events from external systems. Fails when an event of same type with the same external ID exists for the same subject.";
29760
+ };
29461
29761
  };
29462
29762
  };
29463
29763
  };
@@ -29470,6 +29770,9 @@ export declare const schemas: ({
29470
29770
  };
29471
29771
  readonly errors: [{
29472
29772
  readonly name: "SubjectHasAction";
29773
+ }, {
29774
+ readonly name: "DuplicateExternalId";
29775
+ readonly description: "An event with the same external ID already exists for the subject.";
29473
29776
  }];
29474
29777
  };
29475
29778
  };
@@ -31899,8 +32202,8 @@ export declare const ids: {
31899
32202
  readonly AppBskyFeedGetFeedSkeleton: "app.bsky.feed.getFeedSkeleton";
31900
32203
  readonly AppBskyFeedGetLikes: "app.bsky.feed.getLikes";
31901
32204
  readonly AppBskyFeedGetListFeed: "app.bsky.feed.getListFeed";
31902
- readonly AppBskyFeedGetPosts: "app.bsky.feed.getPosts";
31903
32205
  readonly AppBskyFeedGetPostThread: "app.bsky.feed.getPostThread";
32206
+ readonly AppBskyFeedGetPosts: "app.bsky.feed.getPosts";
31904
32207
  readonly AppBskyFeedGetQuotes: "app.bsky.feed.getQuotes";
31905
32208
  readonly AppBskyFeedGetRepostedBy: "app.bsky.feed.getRepostedBy";
31906
32209
  readonly AppBskyFeedGetSuggestedFeeds: "app.bsky.feed.getSuggestedFeeds";
@@ -31954,9 +32257,11 @@ export declare const ids: {
31954
32257
  readonly AppBskyNotificationPutPreferences: "app.bsky.notification.putPreferences";
31955
32258
  readonly AppBskyNotificationPutPreferencesV2: "app.bsky.notification.putPreferencesV2";
31956
32259
  readonly AppBskyNotificationRegisterPush: "app.bsky.notification.registerPush";
32260
+ readonly AppBskyNotificationUnregisterPush: "app.bsky.notification.unregisterPush";
31957
32261
  readonly AppBskyNotificationUpdateSeen: "app.bsky.notification.updateSeen";
31958
32262
  readonly AppBskyRichtextFacet: "app.bsky.richtext.facet";
31959
32263
  readonly AppBskyUnspeccedDefs: "app.bsky.unspecced.defs";
32264
+ readonly AppBskyUnspeccedGetAgeAssuranceState: "app.bsky.unspecced.getAgeAssuranceState";
31960
32265
  readonly AppBskyUnspeccedGetConfig: "app.bsky.unspecced.getConfig";
31961
32266
  readonly AppBskyUnspeccedGetPopularFeedGenerators: "app.bsky.unspecced.getPopularFeedGenerators";
31962
32267
  readonly AppBskyUnspeccedGetPostThreadOtherV2: "app.bsky.unspecced.getPostThreadOtherV2";
@@ -31972,6 +32277,7 @@ export declare const ids: {
31972
32277
  readonly AppBskyUnspeccedGetTrendingTopics: "app.bsky.unspecced.getTrendingTopics";
31973
32278
  readonly AppBskyUnspeccedGetTrends: "app.bsky.unspecced.getTrends";
31974
32279
  readonly AppBskyUnspeccedGetTrendsSkeleton: "app.bsky.unspecced.getTrendsSkeleton";
32280
+ readonly AppBskyUnspeccedInitAgeAssurance: "app.bsky.unspecced.initAgeAssurance";
31975
32281
  readonly AppBskyUnspeccedSearchActorsSkeleton: "app.bsky.unspecced.searchActorsSkeleton";
31976
32282
  readonly AppBskyUnspeccedSearchPostsSkeleton: "app.bsky.unspecced.searchPostsSkeleton";
31977
32283
  readonly AppBskyUnspeccedSearchStarterPacksSkeleton: "app.bsky.unspecced.searchStarterPacksSkeleton";