@atproto/api 0.16.3 → 0.16.5
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 +14 -0
- package/dist/client/index.d.ts +3 -0
- package/dist/client/index.d.ts.map +1 -1
- package/dist/client/index.js +7 -3
- package/dist/client/index.js.map +1 -1
- package/dist/client/lexicons.d.ts +46 -0
- package/dist/client/lexicons.d.ts.map +1 -1
- package/dist/client/lexicons.js +24 -0
- package/dist/client/lexicons.js.map +1 -1
- package/dist/client/types/com/atproto/temp/revokeAccountCredentials.d.ts +20 -0
- package/dist/client/types/com/atproto/temp/revokeAccountCredentials.d.ts.map +1 -0
- package/dist/client/types/com/atproto/temp/revokeAccountCredentials.js +11 -0
- package/dist/client/types/com/atproto/temp/revokeAccountCredentials.js.map +1 -0
- package/package.json +4 -4
- package/src/client/index.ts +14 -0
- package/src/client/lexicons.ts +26 -0
- package/src/client/types/com/atproto/temp/revokeAccountCredentials.ts +38 -0
- package/tsconfig.build.tsbuildinfo +1 -1
package/dist/client/lexicons.js
CHANGED
|
@@ -13120,6 +13120,29 @@ exports.schemaDict = {
|
|
|
13120
13120
|
},
|
|
13121
13121
|
},
|
|
13122
13122
|
},
|
|
13123
|
+
ComAtprotoTempRevokeAccountCredentials: {
|
|
13124
|
+
lexicon: 1,
|
|
13125
|
+
id: 'com.atproto.temp.revokeAccountCredentials',
|
|
13126
|
+
defs: {
|
|
13127
|
+
main: {
|
|
13128
|
+
type: 'procedure',
|
|
13129
|
+
description: 'Revoke sessions, password, and app passwords associated with account. May be resolved by a password reset.',
|
|
13130
|
+
input: {
|
|
13131
|
+
encoding: 'application/json',
|
|
13132
|
+
schema: {
|
|
13133
|
+
type: 'object',
|
|
13134
|
+
required: ['account'],
|
|
13135
|
+
properties: {
|
|
13136
|
+
account: {
|
|
13137
|
+
type: 'string',
|
|
13138
|
+
format: 'at-identifier',
|
|
13139
|
+
},
|
|
13140
|
+
},
|
|
13141
|
+
},
|
|
13142
|
+
},
|
|
13143
|
+
},
|
|
13144
|
+
},
|
|
13145
|
+
},
|
|
13123
13146
|
ToolsOzoneCommunicationCreateTemplate: {
|
|
13124
13147
|
lexicon: 1,
|
|
13125
13148
|
id: 'tools.ozone.communication.createTemplate',
|
|
@@ -17574,6 +17597,7 @@ exports.ids = {
|
|
|
17574
17597
|
ComAtprotoTempCheckSignupQueue: 'com.atproto.temp.checkSignupQueue',
|
|
17575
17598
|
ComAtprotoTempFetchLabels: 'com.atproto.temp.fetchLabels',
|
|
17576
17599
|
ComAtprotoTempRequestPhoneVerification: 'com.atproto.temp.requestPhoneVerification',
|
|
17600
|
+
ComAtprotoTempRevokeAccountCredentials: 'com.atproto.temp.revokeAccountCredentials',
|
|
17577
17601
|
ToolsOzoneCommunicationCreateTemplate: 'tools.ozone.communication.createTemplate',
|
|
17578
17602
|
ToolsOzoneCommunicationDefs: 'tools.ozone.communication.defs',
|
|
17579
17603
|
ToolsOzoneCommunicationDeleteTemplate: 'tools.ozone.communication.deleteTemplate',
|