@atproto/bsky 0.0.13 → 0.0.14
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 +7 -0
- package/dist/index.js +7 -0
- package/dist/index.js.map +2 -2
- package/dist/lexicon/lexicons.d.ts +3 -0
- package/dist/lexicon/types/com/atproto/server/getSession.d.ts +1 -0
- package/package.json +5 -5
- package/src/lexicon/lexicons.ts +3 -0
- package/src/lexicon/types/com/atproto/server/getSession.ts +1 -0
package/CHANGELOG.md
CHANGED
package/dist/index.js
CHANGED
|
@@ -121822,6 +121822,9 @@ var schemaDict = {
|
|
|
121822
121822
|
},
|
|
121823
121823
|
emailConfirmed: {
|
|
121824
121824
|
type: "boolean"
|
|
121825
|
+
},
|
|
121826
|
+
didDoc: {
|
|
121827
|
+
type: "unknown"
|
|
121825
121828
|
}
|
|
121826
121829
|
}
|
|
121827
121830
|
}
|
|
@@ -128503,6 +128506,7 @@ var _AtpAgent = class {
|
|
|
128503
128506
|
this.session.email = res.data.email;
|
|
128504
128507
|
this.session.handle = res.data.handle;
|
|
128505
128508
|
this.session.emailConfirmed = res.data.emailConfirmed;
|
|
128509
|
+
this._updateApiEndpoint(res.data.didDoc);
|
|
128506
128510
|
return res;
|
|
128507
128511
|
} catch (e) {
|
|
128508
128512
|
this.session = void 0;
|
|
@@ -132885,6 +132889,9 @@ var schemaDict2 = {
|
|
|
132885
132889
|
},
|
|
132886
132890
|
emailConfirmed: {
|
|
132887
132891
|
type: "boolean"
|
|
132892
|
+
},
|
|
132893
|
+
didDoc: {
|
|
132894
|
+
type: "unknown"
|
|
132888
132895
|
}
|
|
132889
132896
|
}
|
|
132890
132897
|
}
|