@atproto/pds 0.4.160 → 0.4.162
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 +348 -82
- package/dist/lexicon/lexicons.d.ts.map +1 -1
- package/dist/lexicon/lexicons.js +187 -42
- package/dist/lexicon/lexicons.js.map +1 -1
- package/dist/lexicon/types/app/bsky/notification/unregisterPush.d.ts +17 -0
- package/dist/lexicon/types/app/bsky/notification/unregisterPush.d.ts.map +1 -0
- package/dist/lexicon/types/app/bsky/notification/unregisterPush.js +7 -0
- package/dist/lexicon/types/app/bsky/notification/unregisterPush.js.map +1 -0
- package/dist/lexicon/types/app/bsky/unspecced/checkHandleAvailability.d.ts +58 -0
- package/dist/lexicon/types/app/bsky/unspecced/checkHandleAvailability.d.ts.map +1 -0
- package/dist/lexicon/types/app/bsky/unspecced/checkHandleAvailability.js +34 -0
- package/dist/lexicon/types/app/bsky/unspecced/checkHandleAvailability.js.map +1 -0
- package/dist/lexicon/types/app/bsky/unspecced/initAgeAssurance.d.ts +1 -0
- package/dist/lexicon/types/app/bsky/unspecced/initAgeAssurance.d.ts.map +1 -1
- package/dist/lexicon/types/tools/ozone/moderation/emitEvent.d.ts +3 -1
- package/dist/lexicon/types/tools/ozone/moderation/emitEvent.d.ts.map +1 -1
- package/package.json +5 -5
- package/src/lexicon/index.ts +37 -11
- package/src/lexicon/lexicons.ts +199 -43
- package/src/lexicon/types/app/bsky/notification/unregisterPush.ts +36 -0
- package/src/lexicon/types/app/bsky/unspecced/checkHandleAvailability.ts +99 -0
- package/src/lexicon/types/app/bsky/unspecced/initAgeAssurance.ts +1 -0
- package/src/lexicon/types/tools/ozone/moderation/emitEvent.ts +3 -1
- package/tsconfig.build.tsbuildinfo +1 -1
@@ -6689,6 +6689,47 @@ 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
|
+
};
|
6692
6733
|
readonly AppBskyFeedGetPostThread: {
|
6693
6734
|
readonly lexicon: 1;
|
6694
6735
|
readonly id: "app.bsky.feed.getPostThread";
|
@@ -6744,47 +6785,6 @@ export declare const schemaDict: {
|
|
6744
6785
|
};
|
6745
6786
|
};
|
6746
6787
|
};
|
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";
|
@@ -9716,6 +9749,92 @@ export declare const schemaDict: {
|
|
9716
9749
|
};
|
9717
9750
|
};
|
9718
9751
|
};
|
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
|
+
};
|
9719
9838
|
readonly AppBskyUnspeccedDefs: {
|
9720
9839
|
readonly lexicon: 1;
|
9721
9840
|
readonly id: "app.bsky.unspecced.defs";
|
@@ -10728,6 +10847,13 @@ export declare const schemaDict: {
|
|
10728
10847
|
readonly ref: "lex:app.bsky.unspecced.defs#ageAssuranceState";
|
10729
10848
|
};
|
10730
10849
|
};
|
10850
|
+
readonly errors: [{
|
10851
|
+
readonly name: "InvalidEmail";
|
10852
|
+
}, {
|
10853
|
+
readonly name: "DidTooLong";
|
10854
|
+
}, {
|
10855
|
+
readonly name: "InvalidInitiation";
|
10856
|
+
}];
|
10731
10857
|
};
|
10732
10858
|
};
|
10733
10859
|
};
|
@@ -13781,6 +13907,10 @@ export declare const schemaDict: {
|
|
13781
13907
|
readonly type: "ref";
|
13782
13908
|
readonly ref: "lex:tools.ozone.moderation.defs#modTool";
|
13783
13909
|
};
|
13910
|
+
readonly externalId: {
|
13911
|
+
readonly type: "string";
|
13912
|
+
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.";
|
13913
|
+
};
|
13784
13914
|
};
|
13785
13915
|
};
|
13786
13916
|
};
|
@@ -13793,6 +13923,9 @@ export declare const schemaDict: {
|
|
13793
13923
|
};
|
13794
13924
|
readonly errors: [{
|
13795
13925
|
readonly name: "SubjectHasAction";
|
13926
|
+
}, {
|
13927
|
+
readonly name: "DuplicateExternalId";
|
13928
|
+
readonly description: "An event with the same external ID already exists for the subject.";
|
13796
13929
|
}];
|
13797
13930
|
};
|
13798
13931
|
};
|
@@ -22704,6 +22837,46 @@ export declare const schemas: ({
|
|
22704
22837
|
}];
|
22705
22838
|
};
|
22706
22839
|
};
|
22840
|
+
} | {
|
22841
|
+
readonly lexicon: 1;
|
22842
|
+
readonly id: "app.bsky.feed.getPosts";
|
22843
|
+
readonly defs: {
|
22844
|
+
readonly main: {
|
22845
|
+
readonly type: "query";
|
22846
|
+
readonly description: "Gets post views for a specified list of posts (by AT-URI). This is sometimes referred to as 'hydrating' a 'feed skeleton'.";
|
22847
|
+
readonly parameters: {
|
22848
|
+
readonly type: "params";
|
22849
|
+
readonly required: ["uris"];
|
22850
|
+
readonly properties: {
|
22851
|
+
readonly uris: {
|
22852
|
+
readonly type: "array";
|
22853
|
+
readonly description: "List of post AT-URIs to return hydrated views for.";
|
22854
|
+
readonly items: {
|
22855
|
+
readonly type: "string";
|
22856
|
+
readonly format: "at-uri";
|
22857
|
+
};
|
22858
|
+
readonly maxLength: 25;
|
22859
|
+
};
|
22860
|
+
};
|
22861
|
+
};
|
22862
|
+
readonly output: {
|
22863
|
+
readonly encoding: "application/json";
|
22864
|
+
readonly schema: {
|
22865
|
+
readonly type: "object";
|
22866
|
+
readonly required: ["posts"];
|
22867
|
+
readonly properties: {
|
22868
|
+
readonly posts: {
|
22869
|
+
readonly type: "array";
|
22870
|
+
readonly items: {
|
22871
|
+
readonly type: "ref";
|
22872
|
+
readonly ref: "lex:app.bsky.feed.defs#postView";
|
22873
|
+
};
|
22874
|
+
};
|
22875
|
+
};
|
22876
|
+
};
|
22877
|
+
};
|
22878
|
+
};
|
22879
|
+
};
|
22707
22880
|
} | {
|
22708
22881
|
readonly lexicon: 1;
|
22709
22882
|
readonly id: "app.bsky.feed.getPostThread";
|
@@ -22758,46 +22931,6 @@ export declare const schemas: ({
|
|
22758
22931
|
}];
|
22759
22932
|
};
|
22760
22933
|
};
|
22761
|
-
} | {
|
22762
|
-
readonly lexicon: 1;
|
22763
|
-
readonly id: "app.bsky.feed.getPosts";
|
22764
|
-
readonly defs: {
|
22765
|
-
readonly main: {
|
22766
|
-
readonly type: "query";
|
22767
|
-
readonly description: "Gets post views for a specified list of posts (by AT-URI). This is sometimes referred to as 'hydrating' a 'feed skeleton'.";
|
22768
|
-
readonly parameters: {
|
22769
|
-
readonly type: "params";
|
22770
|
-
readonly required: ["uris"];
|
22771
|
-
readonly properties: {
|
22772
|
-
readonly uris: {
|
22773
|
-
readonly type: "array";
|
22774
|
-
readonly description: "List of post AT-URIs to return hydrated views for.";
|
22775
|
-
readonly items: {
|
22776
|
-
readonly type: "string";
|
22777
|
-
readonly format: "at-uri";
|
22778
|
-
};
|
22779
|
-
readonly maxLength: 25;
|
22780
|
-
};
|
22781
|
-
};
|
22782
|
-
};
|
22783
|
-
readonly output: {
|
22784
|
-
readonly encoding: "application/json";
|
22785
|
-
readonly schema: {
|
22786
|
-
readonly type: "object";
|
22787
|
-
readonly required: ["posts"];
|
22788
|
-
readonly properties: {
|
22789
|
-
readonly posts: {
|
22790
|
-
readonly type: "array";
|
22791
|
-
readonly items: {
|
22792
|
-
readonly type: "ref";
|
22793
|
-
readonly ref: "lex:app.bsky.feed.defs#postView";
|
22794
|
-
};
|
22795
|
-
};
|
22796
|
-
};
|
22797
|
-
};
|
22798
|
-
};
|
22799
|
-
};
|
22800
|
-
};
|
22801
22934
|
} | {
|
22802
22935
|
readonly lexicon: 1;
|
22803
22936
|
readonly id: "app.bsky.feed.getQuotes";
|
@@ -25580,6 +25713,38 @@ export declare const schemas: ({
|
|
25580
25713
|
};
|
25581
25714
|
};
|
25582
25715
|
};
|
25716
|
+
} | {
|
25717
|
+
readonly lexicon: 1;
|
25718
|
+
readonly id: "app.bsky.notification.unregisterPush";
|
25719
|
+
readonly defs: {
|
25720
|
+
readonly main: {
|
25721
|
+
readonly type: "procedure";
|
25722
|
+
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.";
|
25723
|
+
readonly input: {
|
25724
|
+
readonly encoding: "application/json";
|
25725
|
+
readonly schema: {
|
25726
|
+
readonly type: "object";
|
25727
|
+
readonly required: ["serviceDid", "token", "platform", "appId"];
|
25728
|
+
readonly properties: {
|
25729
|
+
readonly serviceDid: {
|
25730
|
+
readonly type: "string";
|
25731
|
+
readonly format: "did";
|
25732
|
+
};
|
25733
|
+
readonly token: {
|
25734
|
+
readonly type: "string";
|
25735
|
+
};
|
25736
|
+
readonly platform: {
|
25737
|
+
readonly type: "string";
|
25738
|
+
readonly knownValues: ["ios", "android", "web"];
|
25739
|
+
};
|
25740
|
+
readonly appId: {
|
25741
|
+
readonly type: "string";
|
25742
|
+
};
|
25743
|
+
};
|
25744
|
+
};
|
25745
|
+
};
|
25746
|
+
};
|
25747
|
+
};
|
25583
25748
|
} | {
|
25584
25749
|
readonly lexicon: 1;
|
25585
25750
|
readonly id: "app.bsky.notification.updateSeen";
|
@@ -25674,6 +25839,91 @@ export declare const schemas: ({
|
|
25674
25839
|
};
|
25675
25840
|
};
|
25676
25841
|
};
|
25842
|
+
} | {
|
25843
|
+
readonly lexicon: 1;
|
25844
|
+
readonly id: "app.bsky.unspecced.checkHandleAvailability";
|
25845
|
+
readonly defs: {
|
25846
|
+
readonly main: {
|
25847
|
+
readonly type: "query";
|
25848
|
+
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.";
|
25849
|
+
readonly parameters: {
|
25850
|
+
readonly type: "params";
|
25851
|
+
readonly required: ["handle"];
|
25852
|
+
readonly properties: {
|
25853
|
+
readonly handle: {
|
25854
|
+
readonly type: "string";
|
25855
|
+
readonly format: "handle";
|
25856
|
+
readonly description: "Tentative handle. Will be checked for availability or used to build handle suggestions.";
|
25857
|
+
};
|
25858
|
+
readonly email: {
|
25859
|
+
readonly type: "string";
|
25860
|
+
readonly description: "User-provided email. Might be used to build handle suggestions.";
|
25861
|
+
};
|
25862
|
+
readonly birthDate: {
|
25863
|
+
readonly type: "string";
|
25864
|
+
readonly format: "datetime";
|
25865
|
+
readonly description: "User-provided birth date. Might be used to build handle suggestions.";
|
25866
|
+
};
|
25867
|
+
};
|
25868
|
+
};
|
25869
|
+
readonly output: {
|
25870
|
+
readonly encoding: "application/json";
|
25871
|
+
readonly schema: {
|
25872
|
+
readonly type: "object";
|
25873
|
+
readonly required: ["handle", "result"];
|
25874
|
+
readonly properties: {
|
25875
|
+
readonly handle: {
|
25876
|
+
readonly type: "string";
|
25877
|
+
readonly format: "handle";
|
25878
|
+
readonly description: "Echo of the input handle.";
|
25879
|
+
};
|
25880
|
+
readonly result: {
|
25881
|
+
readonly type: "union";
|
25882
|
+
readonly refs: ["lex:app.bsky.unspecced.checkHandleAvailability#resultAvailable", "lex:app.bsky.unspecced.checkHandleAvailability#resultUnavailable"];
|
25883
|
+
};
|
25884
|
+
};
|
25885
|
+
};
|
25886
|
+
};
|
25887
|
+
readonly errors: [{
|
25888
|
+
readonly name: "InvalidEmail";
|
25889
|
+
readonly description: "An invalid email was provided.";
|
25890
|
+
}];
|
25891
|
+
};
|
25892
|
+
readonly resultAvailable: {
|
25893
|
+
readonly type: "object";
|
25894
|
+
readonly description: "Indicates the provided handle is available.";
|
25895
|
+
readonly properties: {};
|
25896
|
+
};
|
25897
|
+
readonly resultUnavailable: {
|
25898
|
+
readonly type: "object";
|
25899
|
+
readonly description: "Indicates the provided handle is unavailable and gives suggestions of available handles.";
|
25900
|
+
readonly required: ["suggestions"];
|
25901
|
+
readonly properties: {
|
25902
|
+
readonly suggestions: {
|
25903
|
+
readonly type: "array";
|
25904
|
+
readonly description: "List of suggested handles based on the provided inputs.";
|
25905
|
+
readonly items: {
|
25906
|
+
readonly type: "ref";
|
25907
|
+
readonly ref: "lex:app.bsky.unspecced.checkHandleAvailability#suggestion";
|
25908
|
+
};
|
25909
|
+
};
|
25910
|
+
};
|
25911
|
+
};
|
25912
|
+
readonly suggestion: {
|
25913
|
+
readonly type: "object";
|
25914
|
+
readonly required: ["handle", "method"];
|
25915
|
+
readonly properties: {
|
25916
|
+
readonly handle: {
|
25917
|
+
readonly type: "string";
|
25918
|
+
readonly format: "handle";
|
25919
|
+
};
|
25920
|
+
readonly method: {
|
25921
|
+
readonly type: "string";
|
25922
|
+
readonly description: "Method used to build this suggestion. Should be considered opaque to clients. Can be used for metrics.";
|
25923
|
+
};
|
25924
|
+
};
|
25925
|
+
};
|
25926
|
+
};
|
25677
25927
|
} | {
|
25678
25928
|
readonly lexicon: 1;
|
25679
25929
|
readonly id: "app.bsky.unspecced.defs";
|
@@ -26669,6 +26919,13 @@ export declare const schemas: ({
|
|
26669
26919
|
readonly ref: "lex:app.bsky.unspecced.defs#ageAssuranceState";
|
26670
26920
|
};
|
26671
26921
|
};
|
26922
|
+
readonly errors: [{
|
26923
|
+
readonly name: "InvalidEmail";
|
26924
|
+
}, {
|
26925
|
+
readonly name: "DidTooLong";
|
26926
|
+
}, {
|
26927
|
+
readonly name: "InvalidInitiation";
|
26928
|
+
}];
|
26672
26929
|
};
|
26673
26930
|
};
|
26674
26931
|
} | {
|
@@ -29682,6 +29939,10 @@ export declare const schemas: ({
|
|
29682
29939
|
readonly type: "ref";
|
29683
29940
|
readonly ref: "lex:tools.ozone.moderation.defs#modTool";
|
29684
29941
|
};
|
29942
|
+
readonly externalId: {
|
29943
|
+
readonly type: "string";
|
29944
|
+
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.";
|
29945
|
+
};
|
29685
29946
|
};
|
29686
29947
|
};
|
29687
29948
|
};
|
@@ -29694,6 +29955,9 @@ export declare const schemas: ({
|
|
29694
29955
|
};
|
29695
29956
|
readonly errors: [{
|
29696
29957
|
readonly name: "SubjectHasAction";
|
29958
|
+
}, {
|
29959
|
+
readonly name: "DuplicateExternalId";
|
29960
|
+
readonly description: "An event with the same external ID already exists for the subject.";
|
29697
29961
|
}];
|
29698
29962
|
};
|
29699
29963
|
};
|
@@ -32123,8 +32387,8 @@ export declare const ids: {
|
|
32123
32387
|
readonly AppBskyFeedGetFeedSkeleton: "app.bsky.feed.getFeedSkeleton";
|
32124
32388
|
readonly AppBskyFeedGetLikes: "app.bsky.feed.getLikes";
|
32125
32389
|
readonly AppBskyFeedGetListFeed: "app.bsky.feed.getListFeed";
|
32126
|
-
readonly AppBskyFeedGetPostThread: "app.bsky.feed.getPostThread";
|
32127
32390
|
readonly AppBskyFeedGetPosts: "app.bsky.feed.getPosts";
|
32391
|
+
readonly AppBskyFeedGetPostThread: "app.bsky.feed.getPostThread";
|
32128
32392
|
readonly AppBskyFeedGetQuotes: "app.bsky.feed.getQuotes";
|
32129
32393
|
readonly AppBskyFeedGetRepostedBy: "app.bsky.feed.getRepostedBy";
|
32130
32394
|
readonly AppBskyFeedGetSuggestedFeeds: "app.bsky.feed.getSuggestedFeeds";
|
@@ -32178,8 +32442,10 @@ export declare const ids: {
|
|
32178
32442
|
readonly AppBskyNotificationPutPreferences: "app.bsky.notification.putPreferences";
|
32179
32443
|
readonly AppBskyNotificationPutPreferencesV2: "app.bsky.notification.putPreferencesV2";
|
32180
32444
|
readonly AppBskyNotificationRegisterPush: "app.bsky.notification.registerPush";
|
32445
|
+
readonly AppBskyNotificationUnregisterPush: "app.bsky.notification.unregisterPush";
|
32181
32446
|
readonly AppBskyNotificationUpdateSeen: "app.bsky.notification.updateSeen";
|
32182
32447
|
readonly AppBskyRichtextFacet: "app.bsky.richtext.facet";
|
32448
|
+
readonly AppBskyUnspeccedCheckHandleAvailability: "app.bsky.unspecced.checkHandleAvailability";
|
32183
32449
|
readonly AppBskyUnspeccedDefs: "app.bsky.unspecced.defs";
|
32184
32450
|
readonly AppBskyUnspeccedGetAgeAssuranceState: "app.bsky.unspecced.getAgeAssuranceState";
|
32185
32451
|
readonly AppBskyUnspeccedGetConfig: "app.bsky.unspecced.getConfig";
|