atmo.rsvp
1import { defineLexiconConfig } from "@atcute/lex-cli";
2
3export default defineLexiconConfig({
4 files: ["lexicons/custom/**/*.json", "lexicons/pulled/**/*.json", "lexicons/generated/**/*.json"],
5 outdir: "src/lexicon-types/",
6 imports: ["@atcute/atproto"],
7 pull: {
8 outdir: "lexicons/pulled/",
9 sources: [
10 {
11 type: "atproto",
12 mode: "nsids",
13 nsids: [
14 "app.bsky.actor.profile",
15 "community.lexicon.calendar.event",
16 "community.lexicon.calendar.rsvp",
17 "community.lexicon.location.address",
18 "community.lexicon.location.fsq",
19 "community.lexicon.location.geo",
20 "community.lexicon.location.hthree"
21 ],
22 },
23 ],
24 },
25});