a web app for declaring if an atproto account is automated + package for the lexicon jsr.io/@voyager/autonomy-lexicon
atprotocol lexicon

Update publish lexicon script to use latest AtpAgent import

Changed files
+3 -3
scripts
+3 -3
scripts/publish_lexicon.ts
··· 14 14 * Set VOYAGER_PASSWORD in .env and run: deno task publish:lexicon 15 15 */ 16 16 17 - import { AtpAgent } from "npm:@atproto/api@^0.13.0"; 17 + import { AtpAgent } from "@atproto/api"; 18 18 import { AUTONOMY_DECLARATION_LEXICON } from "../mod.ts"; 19 19 20 20 const VOYAGER_HANDLE = "voyager.studio"; ··· 87 87 }); 88 88 89 89 console.log(`โœ… Schema ${existingSchema ? "updated" : "published"} successfully!\n`); 90 - console.log(`๐Ÿ“ AT-URI: ${result.uri}`); 91 - console.log(`๐Ÿ”— CID: ${result.cid}\n`); 90 + console.log(`๐Ÿ“ AT-URI: ${result.data.uri}`); 91 + console.log(`๐Ÿ”— CID: ${result.data.cid}\n`); 92 92 93 93 // Verify DNS setup 94 94 console.log("๐Ÿ” Next steps:");