@atproto/api 0.20.31 → 0.20.33
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 +12 -0
- package/dist/age-assurance.d.ts +6 -2
- package/dist/age-assurance.d.ts.map +1 -1
- package/dist/age-assurance.js +13 -5
- package/dist/age-assurance.js.map +1 -1
- package/dist/age-assurance.test.js +47 -0
- package/dist/age-assurance.test.js.map +1 -1
- package/dist/client/lexicons.d.ts +32 -0
- package/dist/client/lexicons.d.ts.map +1 -1
- package/dist/client/lexicons.js +16 -0
- package/dist/client/lexicons.js.map +1 -1
- package/dist/client/types/app/bsky/ageassurance/defs.d.ts +2 -0
- package/dist/client/types/app/bsky/ageassurance/defs.d.ts.map +1 -1
- package/dist/client/types/app/bsky/ageassurance/defs.js.map +1 -1
- package/dist/client/types/app/bsky/graph/getFollowers.d.ts +1 -0
- package/dist/client/types/app/bsky/graph/getFollowers.d.ts.map +1 -1
- package/dist/client/types/app/bsky/graph/getFollowers.js.map +1 -1
- package/dist/client/types/app/bsky/graph/getFollows.d.ts +1 -0
- package/dist/client/types/app/bsky/graph/getFollows.d.ts.map +1 -1
- package/dist/client/types/app/bsky/graph/getFollows.js.map +1 -1
- package/package.json +3 -3
package/dist/client/lexicons.js
CHANGED
|
@@ -1371,6 +1371,14 @@ export const schemaDict = {
|
|
|
1371
1371
|
description: 'The Age Assurance configuration for a specific region.',
|
|
1372
1372
|
required: ['countryCode', 'minAccessAge', 'rules'],
|
|
1373
1373
|
properties: {
|
|
1374
|
+
platforms: {
|
|
1375
|
+
type: 'array',
|
|
1376
|
+
description: 'The platforms this configuration applies to. If omitted, the configuration applies to all platforms.',
|
|
1377
|
+
items: {
|
|
1378
|
+
type: 'string',
|
|
1379
|
+
knownValues: ['web', 'ios', 'android'],
|
|
1380
|
+
},
|
|
1381
|
+
},
|
|
1374
1382
|
countryCode: {
|
|
1375
1383
|
type: 'string',
|
|
1376
1384
|
description: 'The ISO 3166-1 alpha-2 country code this configuration applies to.',
|
|
@@ -5908,6 +5916,10 @@ export const schemaDict = {
|
|
|
5908
5916
|
cursor: {
|
|
5909
5917
|
type: 'string',
|
|
5910
5918
|
},
|
|
5919
|
+
sort: {
|
|
5920
|
+
type: 'string',
|
|
5921
|
+
knownValues: ['latest', 'top'],
|
|
5922
|
+
},
|
|
5911
5923
|
},
|
|
5912
5924
|
},
|
|
5913
5925
|
output: {
|
|
@@ -5960,6 +5972,10 @@ export const schemaDict = {
|
|
|
5960
5972
|
cursor: {
|
|
5961
5973
|
type: 'string',
|
|
5962
5974
|
},
|
|
5975
|
+
sort: {
|
|
5976
|
+
type: 'string',
|
|
5977
|
+
knownValues: ['latest', 'top'],
|
|
5978
|
+
},
|
|
5963
5979
|
},
|
|
5964
5980
|
},
|
|
5965
5981
|
output: {
|