@atproto/ozone 0.1.1 → 0.1.2
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
CHANGED
package/dist/index.js
CHANGED
|
@@ -111482,7 +111482,7 @@ function searchRepos_default(server, ctx) {
|
|
|
111482
111482
|
}
|
|
111483
111483
|
};
|
|
111484
111484
|
}
|
|
111485
|
-
const res = await ctx.appviewAgent.api.app.bsky.actor.searchActors(params2);
|
|
111485
|
+
const res = await ctx.appviewAgent.api.app.bsky.actor.searchActors(params2, await ctx.appviewAuth());
|
|
111486
111486
|
const repoMap = await modService.views.repos(res.data.actors.map((a) => a.did));
|
|
111487
111487
|
const repos = mapDefined(res.data.actors, (actor) => repoMap.get(actor.did));
|
|
111488
111488
|
return {
|
|
@@ -134085,7 +134085,7 @@ var BlobDiverter = class {
|
|
|
134085
134085
|
subjectDid,
|
|
134086
134086
|
subjectUri
|
|
134087
134087
|
}) {
|
|
134088
|
-
const url = new URL(this.serviceConfig.url);
|
|
134088
|
+
const url = new URL(`${this.serviceConfig.url}/xrpc/com.atproto.unspecced.reportBlob`);
|
|
134089
134089
|
url.searchParams.set("did", subjectDid);
|
|
134090
134090
|
if (subjectUri)
|
|
134091
134091
|
url.searchParams.set("uri", subjectUri);
|