@atproto/pds 0.4.206 → 0.4.207
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/account-manager/helpers/token.d.ts +32 -32
- package/dist/lexicon/lexicons.d.ts +18 -0
- package/dist/lexicon/lexicons.d.ts.map +1 -1
- package/dist/lexicon/lexicons.js +9 -0
- package/dist/lexicon/lexicons.js.map +1 -1
- package/dist/lexicon/types/app/bsky/draft/defs.d.ts +4 -0
- package/dist/lexicon/types/app/bsky/draft/defs.d.ts.map +1 -1
- package/dist/lexicon/types/app/bsky/draft/defs.js.map +1 -1
- package/package.json +15 -15
- package/src/lexicon/lexicons.ts +10 -0
- package/src/lexicon/types/app/bsky/draft/defs.ts +4 -0
package/dist/lexicon/lexicons.js
CHANGED
|
@@ -2228,6 +2228,15 @@ exports.schemaDict = {
|
|
|
2228
2228
|
type: 'object',
|
|
2229
2229
|
required: ['posts'],
|
|
2230
2230
|
properties: {
|
|
2231
|
+
deviceId: {
|
|
2232
|
+
type: 'string',
|
|
2233
|
+
description: 'UUIDv4 identifier of the device that created this draft.',
|
|
2234
|
+
},
|
|
2235
|
+
platform: {
|
|
2236
|
+
type: 'string',
|
|
2237
|
+
knownValues: ['web', 'ios', 'android'],
|
|
2238
|
+
description: 'Platform on which the draft was created.',
|
|
2239
|
+
},
|
|
2231
2240
|
posts: {
|
|
2232
2241
|
description: 'Array of draft posts that compose this draft.',
|
|
2233
2242
|
type: 'array',
|