@atproto/pds 0.4.180 → 0.4.182
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 +20 -0
- package/dist/api/com/atproto/repo/importRepo.d.ts.map +1 -1
- package/dist/api/com/atproto/repo/importRepo.js +3 -0
- package/dist/api/com/atproto/repo/importRepo.js.map +1 -1
- package/dist/config/config.d.ts +1 -0
- package/dist/config/config.d.ts.map +1 -1
- package/dist/config/config.js +1 -0
- package/dist/config/config.js.map +1 -1
- package/dist/config/env.d.ts +1 -0
- package/dist/config/env.d.ts.map +1 -1
- package/dist/config/env.js +1 -0
- package/dist/config/env.js.map +1 -1
- package/dist/lexicon/index.d.ts +4 -0
- package/dist/lexicon/index.d.ts.map +1 -1
- package/dist/lexicon/index.js +8 -0
- package/dist/lexicon/index.js.map +1 -1
- package/dist/lexicon/lexicons.d.ts +192 -0
- package/dist/lexicon/lexicons.d.ts.map +1 -1
- package/dist/lexicon/lexicons.js +98 -0
- package/dist/lexicon/lexicons.js.map +1 -1
- package/dist/lexicon/types/app/bsky/actor/defs.d.ts +2 -0
- package/dist/lexicon/types/app/bsky/actor/defs.d.ts.map +1 -1
- package/dist/lexicon/types/app/bsky/actor/defs.js.map +1 -1
- package/dist/lexicon/types/app/bsky/actor/profile.d.ts +3 -0
- package/dist/lexicon/types/app/bsky/actor/profile.d.ts.map +1 -1
- package/dist/lexicon/types/app/bsky/actor/profile.js.map +1 -1
- package/dist/lexicon/types/app/bsky/unspecced/getOnboardingSuggestedStarterPacks.d.ts +22 -0
- package/dist/lexicon/types/app/bsky/unspecced/getOnboardingSuggestedStarterPacks.d.ts.map +1 -0
- package/dist/lexicon/types/app/bsky/unspecced/getOnboardingSuggestedStarterPacks.js +7 -0
- package/dist/lexicon/types/app/bsky/unspecced/getOnboardingSuggestedStarterPacks.js.map +1 -0
- package/dist/lexicon/types/app/bsky/unspecced/getOnboardingSuggestedStarterPacksSkeleton.d.ts +23 -0
- package/dist/lexicon/types/app/bsky/unspecced/getOnboardingSuggestedStarterPacksSkeleton.d.ts.map +1 -0
- package/dist/lexicon/types/app/bsky/unspecced/getOnboardingSuggestedStarterPacksSkeleton.js +7 -0
- package/dist/lexicon/types/app/bsky/unspecced/getOnboardingSuggestedStarterPacksSkeleton.js.map +1 -0
- package/package.json +11 -11
- package/src/api/com/atproto/repo/importRepo.ts +3 -0
- package/src/config/config.ts +2 -0
- package/src/config/env.ts +2 -0
- package/src/lexicon/index.ts +26 -0
- package/src/lexicon/lexicons.ts +102 -0
- package/src/lexicon/types/app/bsky/actor/defs.ts +2 -0
- package/src/lexicon/types/app/bsky/actor/profile.ts +3 -0
- package/src/lexicon/types/app/bsky/unspecced/getOnboardingSuggestedStarterPacks.ts +40 -0
- package/src/lexicon/types/app/bsky/unspecced/getOnboardingSuggestedStarterPacksSkeleton.ts +41 -0
- package/tsconfig.build.tsbuildinfo +1 -1
package/dist/lexicon/lexicons.js
CHANGED
@@ -143,6 +143,13 @@ exports.schemaDict = {
|
|
143
143
|
maxGraphemes: 256,
|
144
144
|
maxLength: 2560,
|
145
145
|
},
|
146
|
+
pronouns: {
|
147
|
+
type: 'string',
|
148
|
+
},
|
149
|
+
website: {
|
150
|
+
type: 'string',
|
151
|
+
format: 'uri',
|
152
|
+
},
|
146
153
|
avatar: {
|
147
154
|
type: 'string',
|
148
155
|
format: 'uri',
|
@@ -933,6 +940,16 @@ exports.schemaDict = {
|
|
933
940
|
maxGraphemes: 256,
|
934
941
|
maxLength: 2560,
|
935
942
|
},
|
943
|
+
pronouns: {
|
944
|
+
type: 'string',
|
945
|
+
description: 'Free-form pronouns text.',
|
946
|
+
maxGraphemes: 20,
|
947
|
+
maxLength: 200,
|
948
|
+
},
|
949
|
+
website: {
|
950
|
+
type: 'string',
|
951
|
+
format: 'uri',
|
952
|
+
},
|
936
953
|
avatar: {
|
937
954
|
type: 'blob',
|
938
955
|
description: "Small image to be displayed next to posts from account. AKA, 'profile picture'",
|
@@ -6414,6 +6431,85 @@ exports.schemaDict = {
|
|
6414
6431
|
},
|
6415
6432
|
},
|
6416
6433
|
},
|
6434
|
+
AppBskyUnspeccedGetOnboardingSuggestedStarterPacks: {
|
6435
|
+
lexicon: 1,
|
6436
|
+
id: 'app.bsky.unspecced.getOnboardingSuggestedStarterPacks',
|
6437
|
+
defs: {
|
6438
|
+
main: {
|
6439
|
+
type: 'query',
|
6440
|
+
description: 'Get a list of suggested starterpacks for onboarding',
|
6441
|
+
parameters: {
|
6442
|
+
type: 'params',
|
6443
|
+
properties: {
|
6444
|
+
limit: {
|
6445
|
+
type: 'integer',
|
6446
|
+
minimum: 1,
|
6447
|
+
maximum: 25,
|
6448
|
+
default: 10,
|
6449
|
+
},
|
6450
|
+
},
|
6451
|
+
},
|
6452
|
+
output: {
|
6453
|
+
encoding: 'application/json',
|
6454
|
+
schema: {
|
6455
|
+
type: 'object',
|
6456
|
+
required: ['starterPacks'],
|
6457
|
+
properties: {
|
6458
|
+
starterPacks: {
|
6459
|
+
type: 'array',
|
6460
|
+
items: {
|
6461
|
+
type: 'ref',
|
6462
|
+
ref: 'lex:app.bsky.graph.defs#starterPackView',
|
6463
|
+
},
|
6464
|
+
},
|
6465
|
+
},
|
6466
|
+
},
|
6467
|
+
},
|
6468
|
+
},
|
6469
|
+
},
|
6470
|
+
},
|
6471
|
+
AppBskyUnspeccedGetOnboardingSuggestedStarterPacksSkeleton: {
|
6472
|
+
lexicon: 1,
|
6473
|
+
id: 'app.bsky.unspecced.getOnboardingSuggestedStarterPacksSkeleton',
|
6474
|
+
defs: {
|
6475
|
+
main: {
|
6476
|
+
type: 'query',
|
6477
|
+
description: 'Get a skeleton of suggested starterpacks for onboarding. Intended to be called and hydrated by app.bsky.unspecced.getOnboardingSuggestedStarterPacks',
|
6478
|
+
parameters: {
|
6479
|
+
type: 'params',
|
6480
|
+
properties: {
|
6481
|
+
viewer: {
|
6482
|
+
type: 'string',
|
6483
|
+
format: 'did',
|
6484
|
+
description: 'DID of the account making the request (not included for public/unauthenticated queries).',
|
6485
|
+
},
|
6486
|
+
limit: {
|
6487
|
+
type: 'integer',
|
6488
|
+
minimum: 1,
|
6489
|
+
maximum: 25,
|
6490
|
+
default: 10,
|
6491
|
+
},
|
6492
|
+
},
|
6493
|
+
},
|
6494
|
+
output: {
|
6495
|
+
encoding: 'application/json',
|
6496
|
+
schema: {
|
6497
|
+
type: 'object',
|
6498
|
+
required: ['starterPacks'],
|
6499
|
+
properties: {
|
6500
|
+
starterPacks: {
|
6501
|
+
type: 'array',
|
6502
|
+
items: {
|
6503
|
+
type: 'string',
|
6504
|
+
format: 'at-uri',
|
6505
|
+
},
|
6506
|
+
},
|
6507
|
+
},
|
6508
|
+
},
|
6509
|
+
},
|
6510
|
+
},
|
6511
|
+
},
|
6512
|
+
},
|
6417
6513
|
AppBskyUnspeccedGetPopularFeedGenerators: {
|
6418
6514
|
lexicon: 1,
|
6419
6515
|
id: 'app.bsky.unspecced.getPopularFeedGenerators',
|
@@ -17949,6 +18045,8 @@ exports.ids = {
|
|
17949
18045
|
AppBskyUnspeccedDefs: 'app.bsky.unspecced.defs',
|
17950
18046
|
AppBskyUnspeccedGetAgeAssuranceState: 'app.bsky.unspecced.getAgeAssuranceState',
|
17951
18047
|
AppBskyUnspeccedGetConfig: 'app.bsky.unspecced.getConfig',
|
18048
|
+
AppBskyUnspeccedGetOnboardingSuggestedStarterPacks: 'app.bsky.unspecced.getOnboardingSuggestedStarterPacks',
|
18049
|
+
AppBskyUnspeccedGetOnboardingSuggestedStarterPacksSkeleton: 'app.bsky.unspecced.getOnboardingSuggestedStarterPacksSkeleton',
|
17952
18050
|
AppBskyUnspeccedGetPopularFeedGenerators: 'app.bsky.unspecced.getPopularFeedGenerators',
|
17953
18051
|
AppBskyUnspeccedGetPostThreadOtherV2: 'app.bsky.unspecced.getPostThreadOtherV2',
|
17954
18052
|
AppBskyUnspeccedGetPostThreadV2: 'app.bsky.unspecced.getPostThreadV2',
|