Skip to content

Commit

Permalink
📝 Add description to new field
Browse files Browse the repository at this point in the history
  • Loading branch information
foysalit committed Dec 18, 2024
1 parent d0e26ac commit ff21efb
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lexicons/com/atproto/server/createSession.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@
},
"password": { "type": "string" },
"authFactorToken": { "type": "string" },
"allowTakendown": { "type": "boolean" }
"allowTakendown": {
"type": "boolean",
"description": "When true, instead of throwing error for takendown accounts, a valid response with a narrow scoped token will be returned"
}
}
}
},
Expand Down
2 changes: 2 additions & 0 deletions packages/api/src/client/lexicons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2414,6 +2414,8 @@ export const schemaDict = {
},
allowTakendown: {
type: 'boolean',
description:
'When true, instead of throwing error for takendown accounts, a valid response with a narrow scoped token will be returned',
},
},
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export interface InputSchema {
identifier: string
password: string
authFactorToken?: string
/** When true, instead of throwing error for takendown accounts, a valid response with a narrow scoped token will be returned */
allowTakendown?: boolean
[k: string]: unknown
}
Expand Down
2 changes: 2 additions & 0 deletions packages/bsky/src/lexicon/lexicons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2414,6 +2414,8 @@ export const schemaDict = {
},
allowTakendown: {
type: 'boolean',
description:
'When true, instead of throwing error for takendown accounts, a valid response with a narrow scoped token will be returned',
},
},
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ export interface InputSchema {
identifier: string
password: string
authFactorToken?: string
/** When true, instead of throwing error for takendown accounts, a valid response with a narrow scoped token will be returned */
allowTakendown?: boolean
[k: string]: unknown
}
Expand Down
2 changes: 2 additions & 0 deletions packages/ozone/src/lexicon/lexicons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2414,6 +2414,8 @@ export const schemaDict = {
},
allowTakendown: {
type: 'boolean',
description:
'When true, instead of throwing error for takendown accounts, a valid response with a narrow scoped token will be returned',
},
},
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ export interface InputSchema {
identifier: string
password: string
authFactorToken?: string
/** When true, instead of throwing error for takendown accounts, a valid response with a narrow scoped token will be returned */
allowTakendown?: boolean
[k: string]: unknown
}
Expand Down
2 changes: 2 additions & 0 deletions packages/pds/src/lexicon/lexicons.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2414,6 +2414,8 @@ export const schemaDict = {
},
allowTakendown: {
type: 'boolean',
description:
'When true, instead of throwing error for takendown accounts, a valid response with a narrow scoped token will be returned',
},
},
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ export interface InputSchema {
identifier: string
password: string
authFactorToken?: string
/** When true, instead of throwing error for takendown accounts, a valid response with a narrow scoped token will be returned */
allowTakendown?: boolean
[k: string]: unknown
}
Expand Down

0 comments on commit ff21efb

Please sign in to comment.