@atproto/bsky 0.0.56 → 0.0.57
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/dist/data-plane/server/subscription/index.d.ts +1 -0
- package/dist/data-plane/server/subscription/index.d.ts.map +1 -1
- package/dist/data-plane/server/subscription/index.js +9 -0
- package/dist/data-plane/server/subscription/index.js.map +1 -1
- package/dist/data-plane/server/subscription/util.d.ts +1 -1
- package/dist/data-plane/server/subscription/util.d.ts.map +1 -1
- package/dist/data-plane/server/subscription/util.js +3 -0
- package/dist/data-plane/server/subscription/util.js.map +1 -1
- package/dist/lexicon/index.d.ts +2 -0
- package/dist/lexicon/index.d.ts.map +1 -1
- package/dist/lexicon/index.js +4 -0
- package/dist/lexicon/index.js.map +1 -1
- package/dist/lexicon/lexicons.d.ts +105 -0
- package/dist/lexicon/lexicons.d.ts.map +1 -1
- package/dist/lexicon/lexicons.js +185 -4
- package/dist/lexicon/lexicons.js.map +1 -1
- package/dist/lexicon/types/chat/bsky/convo/defs.d.ts +1 -1
- package/dist/lexicon/types/com/atproto/sync/getBlob.d.ts +1 -0
- package/dist/lexicon/types/com/atproto/sync/getBlob.d.ts.map +1 -1
- package/dist/lexicon/types/com/atproto/sync/getBlocks.d.ts +1 -0
- package/dist/lexicon/types/com/atproto/sync/getBlocks.d.ts.map +1 -1
- package/dist/lexicon/types/com/atproto/sync/getLatestCommit.d.ts +1 -1
- package/dist/lexicon/types/com/atproto/sync/getLatestCommit.d.ts.map +1 -1
- package/dist/lexicon/types/com/atproto/sync/getRecord.d.ts +1 -0
- package/dist/lexicon/types/com/atproto/sync/getRecord.d.ts.map +1 -1
- package/dist/lexicon/types/com/atproto/sync/getRepo.d.ts +1 -0
- package/dist/lexicon/types/com/atproto/sync/getRepo.d.ts.map +1 -1
- package/dist/lexicon/types/com/atproto/sync/getRepoStatus.d.ts +42 -0
- package/dist/lexicon/types/com/atproto/sync/getRepoStatus.d.ts.map +1 -0
- package/dist/lexicon/types/com/atproto/sync/getRepoStatus.js +3 -0
- package/dist/lexicon/types/com/atproto/sync/getRepoStatus.js.map +1 -0
- package/dist/lexicon/types/com/atproto/sync/listBlobs.d.ts +1 -0
- package/dist/lexicon/types/com/atproto/sync/listBlobs.d.ts.map +1 -1
- package/dist/lexicon/types/com/atproto/sync/listRepos.d.ts +3 -0
- package/dist/lexicon/types/com/atproto/sync/listRepos.d.ts.map +1 -1
- package/dist/lexicon/types/com/atproto/sync/listRepos.js.map +1 -1
- package/dist/lexicon/types/com/atproto/sync/subscribeRepos.d.ts +19 -4
- package/dist/lexicon/types/com/atproto/sync/subscribeRepos.d.ts.map +1 -1
- package/dist/lexicon/types/com/atproto/sync/subscribeRepos.js +11 -1
- package/dist/lexicon/types/com/atproto/sync/subscribeRepos.js.map +1 -1
- package/package.json +4 -4
- package/src/data-plane/server/subscription/index.ts +8 -0
- package/src/data-plane/server/subscription/util.ts +2 -0
- package/src/lexicon/index.ts +12 -0
- package/src/lexicon/lexicons.ts +193 -7
- package/src/lexicon/types/chat/bsky/convo/defs.ts +1 -1
- package/src/lexicon/types/com/atproto/sync/getBlob.ts +6 -0
- package/src/lexicon/types/com/atproto/sync/getBlocks.ts +6 -0
- package/src/lexicon/types/com/atproto/sync/getLatestCommit.ts +1 -1
- package/src/lexicon/types/com/atproto/sync/getRecord.ts +6 -0
- package/src/lexicon/types/com/atproto/sync/getRepo.ts +1 -0
- package/src/lexicon/types/com/atproto/sync/getRepoStatus.ts +52 -0
- package/src/lexicon/types/com/atproto/sync/listBlobs.ts +1 -0
- package/src/lexicon/types/com/atproto/sync/listRepos.ts +3 -0
- package/src/lexicon/types/com/atproto/sync/subscribeRepos.ts +30 -3
- package/tests/data-plane/subscription/repo.test.ts +1 -1
|
@@ -2667,6 +2667,9 @@ export declare const schemaDict: {
|
|
|
2667
2667
|
output: {
|
|
2668
2668
|
encoding: string;
|
|
2669
2669
|
};
|
|
2670
|
+
errors: {
|
|
2671
|
+
name: string;
|
|
2672
|
+
}[];
|
|
2670
2673
|
};
|
|
2671
2674
|
};
|
|
2672
2675
|
};
|
|
@@ -2698,6 +2701,9 @@ export declare const schemaDict: {
|
|
|
2698
2701
|
output: {
|
|
2699
2702
|
encoding: string;
|
|
2700
2703
|
};
|
|
2704
|
+
errors: {
|
|
2705
|
+
name: string;
|
|
2706
|
+
}[];
|
|
2701
2707
|
};
|
|
2702
2708
|
};
|
|
2703
2709
|
};
|
|
@@ -2836,6 +2842,9 @@ export declare const schemaDict: {
|
|
|
2836
2842
|
output: {
|
|
2837
2843
|
encoding: string;
|
|
2838
2844
|
};
|
|
2845
|
+
errors: {
|
|
2846
|
+
name: string;
|
|
2847
|
+
}[];
|
|
2839
2848
|
};
|
|
2840
2849
|
};
|
|
2841
2850
|
};
|
|
@@ -2864,6 +2873,58 @@ export declare const schemaDict: {
|
|
|
2864
2873
|
output: {
|
|
2865
2874
|
encoding: string;
|
|
2866
2875
|
};
|
|
2876
|
+
errors: {
|
|
2877
|
+
name: string;
|
|
2878
|
+
}[];
|
|
2879
|
+
};
|
|
2880
|
+
};
|
|
2881
|
+
};
|
|
2882
|
+
ComAtprotoSyncGetRepoStatus: {
|
|
2883
|
+
lexicon: number;
|
|
2884
|
+
id: string;
|
|
2885
|
+
defs: {
|
|
2886
|
+
main: {
|
|
2887
|
+
type: string;
|
|
2888
|
+
description: string;
|
|
2889
|
+
parameters: {
|
|
2890
|
+
type: string;
|
|
2891
|
+
required: string[];
|
|
2892
|
+
properties: {
|
|
2893
|
+
did: {
|
|
2894
|
+
type: string;
|
|
2895
|
+
format: string;
|
|
2896
|
+
description: string;
|
|
2897
|
+
};
|
|
2898
|
+
};
|
|
2899
|
+
};
|
|
2900
|
+
output: {
|
|
2901
|
+
encoding: string;
|
|
2902
|
+
schema: {
|
|
2903
|
+
type: string;
|
|
2904
|
+
required: string[];
|
|
2905
|
+
properties: {
|
|
2906
|
+
did: {
|
|
2907
|
+
type: string;
|
|
2908
|
+
format: string;
|
|
2909
|
+
};
|
|
2910
|
+
active: {
|
|
2911
|
+
type: string;
|
|
2912
|
+
};
|
|
2913
|
+
status: {
|
|
2914
|
+
type: string;
|
|
2915
|
+
description: string;
|
|
2916
|
+
knownValues: string[];
|
|
2917
|
+
};
|
|
2918
|
+
rev: {
|
|
2919
|
+
type: string;
|
|
2920
|
+
description: string;
|
|
2921
|
+
};
|
|
2922
|
+
};
|
|
2923
|
+
};
|
|
2924
|
+
};
|
|
2925
|
+
errors: {
|
|
2926
|
+
name: string;
|
|
2927
|
+
}[];
|
|
2867
2928
|
};
|
|
2868
2929
|
};
|
|
2869
2930
|
};
|
|
@@ -2917,6 +2978,9 @@ export declare const schemaDict: {
|
|
|
2917
2978
|
};
|
|
2918
2979
|
};
|
|
2919
2980
|
};
|
|
2981
|
+
errors: {
|
|
2982
|
+
name: string;
|
|
2983
|
+
}[];
|
|
2920
2984
|
};
|
|
2921
2985
|
};
|
|
2922
2986
|
};
|
|
@@ -2977,6 +3041,14 @@ export declare const schemaDict: {
|
|
|
2977
3041
|
rev: {
|
|
2978
3042
|
type: string;
|
|
2979
3043
|
};
|
|
3044
|
+
active: {
|
|
3045
|
+
type: string;
|
|
3046
|
+
};
|
|
3047
|
+
status: {
|
|
3048
|
+
type: string;
|
|
3049
|
+
description: string;
|
|
3050
|
+
knownValues: string[];
|
|
3051
|
+
};
|
|
2980
3052
|
};
|
|
2981
3053
|
};
|
|
2982
3054
|
};
|
|
@@ -3140,6 +3212,38 @@ export declare const schemaDict: {
|
|
|
3140
3212
|
type: string;
|
|
3141
3213
|
format: string;
|
|
3142
3214
|
};
|
|
3215
|
+
handle: {
|
|
3216
|
+
type: string;
|
|
3217
|
+
format: string;
|
|
3218
|
+
description: string;
|
|
3219
|
+
};
|
|
3220
|
+
};
|
|
3221
|
+
};
|
|
3222
|
+
account: {
|
|
3223
|
+
type: string;
|
|
3224
|
+
description: string;
|
|
3225
|
+
required: string[];
|
|
3226
|
+
properties: {
|
|
3227
|
+
seq: {
|
|
3228
|
+
type: string;
|
|
3229
|
+
};
|
|
3230
|
+
did: {
|
|
3231
|
+
type: string;
|
|
3232
|
+
format: string;
|
|
3233
|
+
};
|
|
3234
|
+
time: {
|
|
3235
|
+
type: string;
|
|
3236
|
+
format: string;
|
|
3237
|
+
};
|
|
3238
|
+
active: {
|
|
3239
|
+
type: string;
|
|
3240
|
+
description: string;
|
|
3241
|
+
};
|
|
3242
|
+
status: {
|
|
3243
|
+
type: string;
|
|
3244
|
+
description: string;
|
|
3245
|
+
knownValues: string[];
|
|
3246
|
+
};
|
|
3143
3247
|
};
|
|
3144
3248
|
};
|
|
3145
3249
|
handle: {
|
|
@@ -8597,6 +8701,7 @@ export declare const ids: {
|
|
|
8597
8701
|
ComAtprotoSyncGetLatestCommit: string;
|
|
8598
8702
|
ComAtprotoSyncGetRecord: string;
|
|
8599
8703
|
ComAtprotoSyncGetRepo: string;
|
|
8704
|
+
ComAtprotoSyncGetRepoStatus: string;
|
|
8600
8705
|
ComAtprotoSyncListBlobs: string;
|
|
8601
8706
|
ComAtprotoSyncListRepos: string;
|
|
8602
8707
|
ComAtprotoSyncNotifyOfUpdate: string;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"lexicons.d.ts","sourceRoot":"","sources":["../../src/lexicon/lexicons.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAAE,UAAU,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAA;AAEvD,eAAO,MAAM,UAAU
|
|
1
|
+
{"version":3,"file":"lexicons.d.ts","sourceRoot":"","sources":["../../src/lexicon/lexicons.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAAE,UAAU,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAA;AAEvD,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAolStB,CAAA;AACD,eAAO,MAAM,OAAO,EAAE,UAAU,EAA8C,CAAA;AAC9E,eAAO,MAAM,QAAQ,EAAE,QAAgC,CAAA;AACvD,eAAO,MAAM,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyLf,CAAA"}
|
package/dist/lexicon/lexicons.js
CHANGED
|
@@ -2817,6 +2817,23 @@ exports.schemaDict = {
|
|
|
2817
2817
|
output: {
|
|
2818
2818
|
encoding: '*/*',
|
|
2819
2819
|
},
|
|
2820
|
+
errors: [
|
|
2821
|
+
{
|
|
2822
|
+
name: 'BlobNotFound',
|
|
2823
|
+
},
|
|
2824
|
+
{
|
|
2825
|
+
name: 'RepoNotFound',
|
|
2826
|
+
},
|
|
2827
|
+
{
|
|
2828
|
+
name: 'RepoTakendown',
|
|
2829
|
+
},
|
|
2830
|
+
{
|
|
2831
|
+
name: 'RepoSuspended',
|
|
2832
|
+
},
|
|
2833
|
+
{
|
|
2834
|
+
name: 'RepoDeactivated',
|
|
2835
|
+
},
|
|
2836
|
+
],
|
|
2820
2837
|
},
|
|
2821
2838
|
},
|
|
2822
2839
|
},
|
|
@@ -2848,6 +2865,23 @@ exports.schemaDict = {
|
|
|
2848
2865
|
output: {
|
|
2849
2866
|
encoding: 'application/vnd.ipld.car',
|
|
2850
2867
|
},
|
|
2868
|
+
errors: [
|
|
2869
|
+
{
|
|
2870
|
+
name: 'BlockNotFound',
|
|
2871
|
+
},
|
|
2872
|
+
{
|
|
2873
|
+
name: 'RepoNotFound',
|
|
2874
|
+
},
|
|
2875
|
+
{
|
|
2876
|
+
name: 'RepoTakendown',
|
|
2877
|
+
},
|
|
2878
|
+
{
|
|
2879
|
+
name: 'RepoSuspended',
|
|
2880
|
+
},
|
|
2881
|
+
{
|
|
2882
|
+
name: 'RepoDeactivated',
|
|
2883
|
+
},
|
|
2884
|
+
],
|
|
2851
2885
|
},
|
|
2852
2886
|
},
|
|
2853
2887
|
},
|
|
@@ -2952,6 +2986,15 @@ exports.schemaDict = {
|
|
|
2952
2986
|
{
|
|
2953
2987
|
name: 'RepoNotFound',
|
|
2954
2988
|
},
|
|
2989
|
+
{
|
|
2990
|
+
name: 'RepoTakendown',
|
|
2991
|
+
},
|
|
2992
|
+
{
|
|
2993
|
+
name: 'RepoSuspended',
|
|
2994
|
+
},
|
|
2995
|
+
{
|
|
2996
|
+
name: 'RepoDeactivated',
|
|
2997
|
+
},
|
|
2955
2998
|
],
|
|
2956
2999
|
},
|
|
2957
3000
|
},
|
|
@@ -2990,6 +3033,23 @@ exports.schemaDict = {
|
|
|
2990
3033
|
output: {
|
|
2991
3034
|
encoding: 'application/vnd.ipld.car',
|
|
2992
3035
|
},
|
|
3036
|
+
errors: [
|
|
3037
|
+
{
|
|
3038
|
+
name: 'RecordNotFound',
|
|
3039
|
+
},
|
|
3040
|
+
{
|
|
3041
|
+
name: 'RepoNotFound',
|
|
3042
|
+
},
|
|
3043
|
+
{
|
|
3044
|
+
name: 'RepoTakendown',
|
|
3045
|
+
},
|
|
3046
|
+
{
|
|
3047
|
+
name: 'RepoSuspended',
|
|
3048
|
+
},
|
|
3049
|
+
{
|
|
3050
|
+
name: 'RepoDeactivated',
|
|
3051
|
+
},
|
|
3052
|
+
],
|
|
2993
3053
|
},
|
|
2994
3054
|
},
|
|
2995
3055
|
},
|
|
@@ -3018,6 +3078,71 @@ exports.schemaDict = {
|
|
|
3018
3078
|
output: {
|
|
3019
3079
|
encoding: 'application/vnd.ipld.car',
|
|
3020
3080
|
},
|
|
3081
|
+
errors: [
|
|
3082
|
+
{
|
|
3083
|
+
name: 'RepoNotFound',
|
|
3084
|
+
},
|
|
3085
|
+
{
|
|
3086
|
+
name: 'RepoTakendown',
|
|
3087
|
+
},
|
|
3088
|
+
{
|
|
3089
|
+
name: 'RepoSuspended',
|
|
3090
|
+
},
|
|
3091
|
+
{
|
|
3092
|
+
name: 'RepoDeactivated',
|
|
3093
|
+
},
|
|
3094
|
+
],
|
|
3095
|
+
},
|
|
3096
|
+
},
|
|
3097
|
+
},
|
|
3098
|
+
ComAtprotoSyncGetRepoStatus: {
|
|
3099
|
+
lexicon: 1,
|
|
3100
|
+
id: 'com.atproto.sync.getRepoStatus',
|
|
3101
|
+
defs: {
|
|
3102
|
+
main: {
|
|
3103
|
+
type: 'query',
|
|
3104
|
+
description: 'Get the hosting status for a repository, on this server. Expected to be implemented by PDS and Relay.',
|
|
3105
|
+
parameters: {
|
|
3106
|
+
type: 'params',
|
|
3107
|
+
required: ['did'],
|
|
3108
|
+
properties: {
|
|
3109
|
+
did: {
|
|
3110
|
+
type: 'string',
|
|
3111
|
+
format: 'did',
|
|
3112
|
+
description: 'The DID of the repo.',
|
|
3113
|
+
},
|
|
3114
|
+
},
|
|
3115
|
+
},
|
|
3116
|
+
output: {
|
|
3117
|
+
encoding: 'application/json',
|
|
3118
|
+
schema: {
|
|
3119
|
+
type: 'object',
|
|
3120
|
+
required: ['did', 'active'],
|
|
3121
|
+
properties: {
|
|
3122
|
+
did: {
|
|
3123
|
+
type: 'string',
|
|
3124
|
+
format: 'did',
|
|
3125
|
+
},
|
|
3126
|
+
active: {
|
|
3127
|
+
type: 'boolean',
|
|
3128
|
+
},
|
|
3129
|
+
status: {
|
|
3130
|
+
type: 'string',
|
|
3131
|
+
description: 'If active=false, this optional field indicates a possible reason for why the account is not active. If active=false and no status is supplied, then the host makes no claim for why the repository is no longer being hosted.',
|
|
3132
|
+
knownValues: ['takendown', 'suspended', 'deactivated'],
|
|
3133
|
+
},
|
|
3134
|
+
rev: {
|
|
3135
|
+
type: 'string',
|
|
3136
|
+
description: 'Optional field, the current rev of the repo, if active=true',
|
|
3137
|
+
},
|
|
3138
|
+
},
|
|
3139
|
+
},
|
|
3140
|
+
},
|
|
3141
|
+
errors: [
|
|
3142
|
+
{
|
|
3143
|
+
name: 'RepoNotFound',
|
|
3144
|
+
},
|
|
3145
|
+
],
|
|
3021
3146
|
},
|
|
3022
3147
|
},
|
|
3023
3148
|
},
|
|
@@ -3071,6 +3196,20 @@ exports.schemaDict = {
|
|
|
3071
3196
|
},
|
|
3072
3197
|
},
|
|
3073
3198
|
},
|
|
3199
|
+
errors: [
|
|
3200
|
+
{
|
|
3201
|
+
name: 'RepoNotFound',
|
|
3202
|
+
},
|
|
3203
|
+
{
|
|
3204
|
+
name: 'RepoTakendown',
|
|
3205
|
+
},
|
|
3206
|
+
{
|
|
3207
|
+
name: 'RepoSuspended',
|
|
3208
|
+
},
|
|
3209
|
+
{
|
|
3210
|
+
name: 'RepoDeactivated',
|
|
3211
|
+
},
|
|
3212
|
+
],
|
|
3074
3213
|
},
|
|
3075
3214
|
},
|
|
3076
3215
|
},
|
|
@@ -3131,6 +3270,14 @@ exports.schemaDict = {
|
|
|
3131
3270
|
rev: {
|
|
3132
3271
|
type: 'string',
|
|
3133
3272
|
},
|
|
3273
|
+
active: {
|
|
3274
|
+
type: 'boolean',
|
|
3275
|
+
},
|
|
3276
|
+
status: {
|
|
3277
|
+
type: 'string',
|
|
3278
|
+
description: 'If active=false, this optional field indicates a possible reason for why the account is not active. If active=false and no status is supplied, then the host makes no claim for why the repository is no longer being hosted.',
|
|
3279
|
+
knownValues: ['takendown', 'suspended', 'deactivated'],
|
|
3280
|
+
},
|
|
3134
3281
|
},
|
|
3135
3282
|
},
|
|
3136
3283
|
},
|
|
@@ -3203,6 +3350,7 @@ exports.schemaDict = {
|
|
|
3203
3350
|
refs: [
|
|
3204
3351
|
'lex:com.atproto.sync.subscribeRepos#commit',
|
|
3205
3352
|
'lex:com.atproto.sync.subscribeRepos#identity',
|
|
3353
|
+
'lex:com.atproto.sync.subscribeRepos#account',
|
|
3206
3354
|
'lex:com.atproto.sync.subscribeRepos#handle',
|
|
3207
3355
|
'lex:com.atproto.sync.subscribeRepos#migrate',
|
|
3208
3356
|
'lex:com.atproto.sync.subscribeRepos#tombstone',
|
|
@@ -3315,11 +3463,43 @@ exports.schemaDict = {
|
|
|
3315
3463
|
type: 'string',
|
|
3316
3464
|
format: 'datetime',
|
|
3317
3465
|
},
|
|
3466
|
+
handle: {
|
|
3467
|
+
type: 'string',
|
|
3468
|
+
format: 'handle',
|
|
3469
|
+
description: "The current handle for the account, or 'handle.invalid' if validation fails. This field is optional, might have been validated or passed-through from an upstream source. Semantics and behaviors for PDS vs Relay may evolve in the future; see atproto specs for more details.",
|
|
3470
|
+
},
|
|
3471
|
+
},
|
|
3472
|
+
},
|
|
3473
|
+
account: {
|
|
3474
|
+
type: 'object',
|
|
3475
|
+
description: "Represents a change to an account's status on a host (eg, PDS or Relay). The semantics of this event are that the status is at the host which emitted the event, not necessarily that at the currently active PDS. Eg, a Relay takedown would emit a takedown with active=false, even if the PDS is still active.",
|
|
3476
|
+
required: ['seq', 'did', 'time', 'active'],
|
|
3477
|
+
properties: {
|
|
3478
|
+
seq: {
|
|
3479
|
+
type: 'integer',
|
|
3480
|
+
},
|
|
3481
|
+
did: {
|
|
3482
|
+
type: 'string',
|
|
3483
|
+
format: 'did',
|
|
3484
|
+
},
|
|
3485
|
+
time: {
|
|
3486
|
+
type: 'string',
|
|
3487
|
+
format: 'datetime',
|
|
3488
|
+
},
|
|
3489
|
+
active: {
|
|
3490
|
+
type: 'boolean',
|
|
3491
|
+
description: 'Indicates that the account has a repository which can be fetched from the host that emitted this event.',
|
|
3492
|
+
},
|
|
3493
|
+
status: {
|
|
3494
|
+
type: 'string',
|
|
3495
|
+
description: 'If active=false, this optional field indicates a reason for why the account is not active.',
|
|
3496
|
+
knownValues: ['takendown', 'suspended', 'deleted', 'deactivated'],
|
|
3497
|
+
},
|
|
3318
3498
|
},
|
|
3319
3499
|
},
|
|
3320
3500
|
handle: {
|
|
3321
3501
|
type: 'object',
|
|
3322
|
-
description:
|
|
3502
|
+
description: 'DEPRECATED -- Use #identity event instead',
|
|
3323
3503
|
required: ['seq', 'did', 'handle', 'time'],
|
|
3324
3504
|
properties: {
|
|
3325
3505
|
seq: {
|
|
@@ -3341,7 +3521,7 @@ exports.schemaDict = {
|
|
|
3341
3521
|
},
|
|
3342
3522
|
migrate: {
|
|
3343
3523
|
type: 'object',
|
|
3344
|
-
description: '
|
|
3524
|
+
description: 'DEPRECATED -- Use #account event instead',
|
|
3345
3525
|
required: ['seq', 'did', 'migrateTo', 'time'],
|
|
3346
3526
|
nullable: ['migrateTo'],
|
|
3347
3527
|
properties: {
|
|
@@ -3363,7 +3543,7 @@ exports.schemaDict = {
|
|
|
3363
3543
|
},
|
|
3364
3544
|
tombstone: {
|
|
3365
3545
|
type: 'object',
|
|
3366
|
-
description: '
|
|
3546
|
+
description: 'DEPRECATED -- Use #account event instead',
|
|
3367
3547
|
required: ['seq', 'did', 'time'],
|
|
3368
3548
|
properties: {
|
|
3369
3549
|
seq: {
|
|
@@ -8118,7 +8298,7 @@ exports.schemaDict = {
|
|
|
8118
8298
|
},
|
|
8119
8299
|
embed: {
|
|
8120
8300
|
type: 'union',
|
|
8121
|
-
refs: ['lex:app.bsky.embed.record'],
|
|
8301
|
+
refs: ['lex:app.bsky.embed.record#view'],
|
|
8122
8302
|
},
|
|
8123
8303
|
sender: {
|
|
8124
8304
|
type: 'ref',
|
|
@@ -8929,6 +9109,7 @@ exports.ids = {
|
|
|
8929
9109
|
ComAtprotoSyncGetLatestCommit: 'com.atproto.sync.getLatestCommit',
|
|
8930
9110
|
ComAtprotoSyncGetRecord: 'com.atproto.sync.getRecord',
|
|
8931
9111
|
ComAtprotoSyncGetRepo: 'com.atproto.sync.getRepo',
|
|
9112
|
+
ComAtprotoSyncGetRepoStatus: 'com.atproto.sync.getRepoStatus',
|
|
8932
9113
|
ComAtprotoSyncListBlobs: 'com.atproto.sync.listBlobs',
|
|
8933
9114
|
ComAtprotoSyncListRepos: 'com.atproto.sync.listRepos',
|
|
8934
9115
|
ComAtprotoSyncNotifyOfUpdate: 'com.atproto.sync.notifyOfUpdate',
|