@atcute/lexicon-community 1.1.4 → 1.1.6

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.
Files changed (38) hide show
  1. package/README.md +6 -10
  2. package/dist/index.d.ts +1 -1
  3. package/dist/lexicons/index.d.ts +11 -10
  4. package/dist/lexicons/index.d.ts.map +1 -1
  5. package/dist/lexicons/index.js +1 -0
  6. package/dist/lexicons/index.js.map +1 -1
  7. package/dist/lexicons/types/community/lexicon/bookmarks/bookmark.d.ts.map +1 -1
  8. package/dist/lexicons/types/community/lexicon/bookmarks/bookmark.js.map +1 -1
  9. package/dist/lexicons/types/community/lexicon/bookmarks/getActorBookmarks.d.ts +1 -1
  10. package/dist/lexicons/types/community/lexicon/bookmarks/getActorBookmarks.d.ts.map +1 -1
  11. package/dist/lexicons/types/community/lexicon/bookmarks/getActorBookmarks.js.map +1 -1
  12. package/dist/lexicons/types/community/lexicon/calendar/event.d.ts +6 -6
  13. package/dist/lexicons/types/community/lexicon/calendar/event.d.ts.map +1 -1
  14. package/dist/lexicons/types/community/lexicon/calendar/event.js.map +1 -1
  15. package/dist/lexicons/types/community/lexicon/calendar/rsvp.d.ts +2 -2
  16. package/dist/lexicons/types/community/lexicon/calendar/rsvp.d.ts.map +1 -1
  17. package/dist/lexicons/types/community/lexicon/calendar/rsvp.js +1 -1
  18. package/dist/lexicons/types/community/lexicon/calendar/rsvp.js.map +1 -1
  19. package/dist/lexicons/types/community/lexicon/interaction/like.d.ts +1 -1
  20. package/dist/lexicons/types/community/lexicon/interaction/like.d.ts.map +1 -1
  21. package/dist/lexicons/types/community/lexicon/interaction/like.js +1 -1
  22. package/dist/lexicons/types/community/lexicon/interaction/like.js.map +1 -1
  23. package/dist/lexicons/types/community/lexicon/payments/webMonetization.d.ts.map +1 -1
  24. package/dist/lexicons/types/community/lexicon/payments/webMonetization.js.map +1 -1
  25. package/dist/lexicons/types/community/lexicon/preference/ai.d.ts +103 -0
  26. package/dist/lexicons/types/community/lexicon/preference/ai.d.ts.map +1 -0
  27. package/dist/lexicons/types/community/lexicon/preference/ai.js +81 -0
  28. package/dist/lexicons/types/community/lexicon/preference/ai.js.map +1 -0
  29. package/lib/index.ts +1 -1
  30. package/lib/lexicons/index.ts +11 -10
  31. package/lib/lexicons/types/community/lexicon/bookmarks/bookmark.ts +1 -1
  32. package/lib/lexicons/types/community/lexicon/bookmarks/getActorBookmarks.ts +3 -2
  33. package/lib/lexicons/types/community/lexicon/calendar/event.ts +6 -5
  34. package/lib/lexicons/types/community/lexicon/calendar/rsvp.ts +2 -2
  35. package/lib/lexicons/types/community/lexicon/interaction/like.ts +2 -2
  36. package/lib/lexicons/types/community/lexicon/payments/webMonetization.ts +1 -1
  37. package/lib/lexicons/types/community/lexicon/preference/ai.ts +112 -0
  38. package/package.json +16 -8
package/README.md CHANGED
@@ -3,6 +3,10 @@
3
3
  [Lexicon Community](https://github.com/lexicon-community/lexicon) (community.lexicon.\*) schema
4
4
  definitions
5
5
 
6
+ ```sh
7
+ npm install @atcute/lexicon-community
8
+ ```
9
+
6
10
  ## usage
7
11
 
8
12
  ```ts
@@ -59,7 +63,7 @@ import type {} from '@atcute/lexicon-community';
59
63
 
60
64
  now all the XRPC operations should be visible in the client
61
65
 
62
- ## with `@atcute/lex-cli`
66
+ ### with `@atcute/lex-cli`
63
67
 
64
68
  when building your own lexicons that reference Lexicon Community types, configure lex-cli to import
65
69
  from this package:
@@ -71,14 +75,6 @@ import { defineLexiconConfig } from '@atcute/lex-cli';
71
75
  export default defineLexiconConfig({
72
76
  files: ['lexicons/**/*.json'],
73
77
  outdir: 'src/lexicons/',
74
- mappings: [
75
- {
76
- nsid: ['community.lexicon.*'],
77
- imports: (nsid) => {
78
- const specifier = nsid.slice('community.lexicon.'.length).replaceAll('.', '/');
79
- return { type: 'namespace', from: `@atcute/lexicon-community/types/${specifier}` };
80
- },
81
- },
82
- ],
78
+ imports: ['@atcute/lexicon-community'],
83
79
  });
84
80
  ```
package/dist/index.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export * from './lexicons/index.js';
1
+ export * from './lexicons/index.ts';
2
2
  //# sourceMappingURL=index.d.ts.map
@@ -1,11 +1,12 @@
1
- export * as CommunityLexiconBookmarksBookmark from './types/community/lexicon/bookmarks/bookmark.js';
2
- export * as CommunityLexiconBookmarksGetActorBookmarks from './types/community/lexicon/bookmarks/getActorBookmarks.js';
3
- export * as CommunityLexiconCalendarEvent from './types/community/lexicon/calendar/event.js';
4
- export * as CommunityLexiconCalendarRsvp from './types/community/lexicon/calendar/rsvp.js';
5
- export * as CommunityLexiconInteractionLike from './types/community/lexicon/interaction/like.js';
6
- export * as CommunityLexiconLocationAddress from './types/community/lexicon/location/address.js';
7
- export * as CommunityLexiconLocationFsq from './types/community/lexicon/location/fsq.js';
8
- export * as CommunityLexiconLocationGeo from './types/community/lexicon/location/geo.js';
9
- export * as CommunityLexiconLocationHthree from './types/community/lexicon/location/hthree.js';
10
- export * as CommunityLexiconPaymentsWebMonetization from './types/community/lexicon/payments/webMonetization.js';
1
+ export * as CommunityLexiconBookmarksBookmark from './types/community/lexicon/bookmarks/bookmark.ts';
2
+ export * as CommunityLexiconBookmarksGetActorBookmarks from './types/community/lexicon/bookmarks/getActorBookmarks.ts';
3
+ export * as CommunityLexiconCalendarEvent from './types/community/lexicon/calendar/event.ts';
4
+ export * as CommunityLexiconCalendarRsvp from './types/community/lexicon/calendar/rsvp.ts';
5
+ export * as CommunityLexiconInteractionLike from './types/community/lexicon/interaction/like.ts';
6
+ export * as CommunityLexiconLocationAddress from './types/community/lexicon/location/address.ts';
7
+ export * as CommunityLexiconLocationFsq from './types/community/lexicon/location/fsq.ts';
8
+ export * as CommunityLexiconLocationGeo from './types/community/lexicon/location/geo.ts';
9
+ export * as CommunityLexiconLocationHthree from './types/community/lexicon/location/hthree.ts';
10
+ export * as CommunityLexiconPaymentsWebMonetization from './types/community/lexicon/payments/webMonetization.ts';
11
+ export * as CommunityLexiconPreferenceAi from './types/community/lexicon/preference/ai.ts';
11
12
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../lib/lexicons/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,iCAAiC,MAAM,iDAAiD,CAAC;AACrG,OAAO,KAAK,0CAA0C,MAAM,0DAA0D,CAAC;AACvH,OAAO,KAAK,6BAA6B,MAAM,6CAA6C,CAAC;AAC7F,OAAO,KAAK,4BAA4B,MAAM,4CAA4C,CAAC;AAC3F,OAAO,KAAK,+BAA+B,MAAM,+CAA+C,CAAC;AACjG,OAAO,KAAK,+BAA+B,MAAM,+CAA+C,CAAC;AACjG,OAAO,KAAK,2BAA2B,MAAM,2CAA2C,CAAC;AACzF,OAAO,KAAK,2BAA2B,MAAM,2CAA2C,CAAC;AACzF,OAAO,KAAK,8BAA8B,MAAM,8CAA8C,CAAC;AAC/F,OAAO,KAAK,uCAAuC,MAAM,uDAAuD,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../lib/lexicons/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,iCAAiC,MAAM,iDAAiD,CAAC;AACrG,OAAO,KAAK,0CAA0C,MAAM,0DAA0D,CAAC;AACvH,OAAO,KAAK,6BAA6B,MAAM,6CAA6C,CAAC;AAC7F,OAAO,KAAK,4BAA4B,MAAM,4CAA4C,CAAC;AAC3F,OAAO,KAAK,+BAA+B,MAAM,+CAA+C,CAAC;AACjG,OAAO,KAAK,+BAA+B,MAAM,+CAA+C,CAAC;AACjG,OAAO,KAAK,2BAA2B,MAAM,2CAA2C,CAAC;AACzF,OAAO,KAAK,2BAA2B,MAAM,2CAA2C,CAAC;AACzF,OAAO,KAAK,8BAA8B,MAAM,8CAA8C,CAAC;AAC/F,OAAO,KAAK,uCAAuC,MAAM,uDAAuD,CAAC;AACjH,OAAO,KAAK,4BAA4B,MAAM,4CAA4C,CAAC"}
@@ -8,4 +8,5 @@ export * as CommunityLexiconLocationFsq from './types/community/lexicon/location
8
8
  export * as CommunityLexiconLocationGeo from './types/community/lexicon/location/geo.js';
9
9
  export * as CommunityLexiconLocationHthree from './types/community/lexicon/location/hthree.js';
10
10
  export * as CommunityLexiconPaymentsWebMonetization from './types/community/lexicon/payments/webMonetization.js';
11
+ export * as CommunityLexiconPreferenceAi from './types/community/lexicon/preference/ai.js';
11
12
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../lib/lexicons/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,iCAAiC,MAAM,iDAAiD,CAAC;AACrG,OAAO,KAAK,0CAA0C,MAAM,0DAA0D,CAAC;AACvH,OAAO,KAAK,6BAA6B,MAAM,6CAA6C,CAAC;AAC7F,OAAO,KAAK,4BAA4B,MAAM,4CAA4C,CAAC;AAC3F,OAAO,KAAK,+BAA+B,MAAM,+CAA+C,CAAC;AACjG,OAAO,KAAK,+BAA+B,MAAM,+CAA+C,CAAC;AACjG,OAAO,KAAK,2BAA2B,MAAM,2CAA2C,CAAC;AACzF,OAAO,KAAK,2BAA2B,MAAM,2CAA2C,CAAC;AACzF,OAAO,KAAK,8BAA8B,MAAM,8CAA8C,CAAC;AAC/F,OAAO,KAAK,uCAAuC,MAAM,uDAAuD,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../lib/lexicons/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,iCAAiC,MAAM,iDAAiD,CAAC;AACrG,OAAO,KAAK,0CAA0C,MAAM,0DAA0D,CAAC;AACvH,OAAO,KAAK,6BAA6B,MAAM,6CAA6C,CAAC;AAC7F,OAAO,KAAK,4BAA4B,MAAM,4CAA4C,CAAC;AAC3F,OAAO,KAAK,+BAA+B,MAAM,+CAA+C,CAAC;AACjG,OAAO,KAAK,+BAA+B,MAAM,+CAA+C,CAAC;AACjG,OAAO,KAAK,2BAA2B,MAAM,2CAA2C,CAAC;AACzF,OAAO,KAAK,2BAA2B,MAAM,2CAA2C,CAAC;AACzF,OAAO,KAAK,8BAA8B,MAAM,8CAA8C,CAAC;AAC/F,OAAO,KAAK,uCAAuC,MAAM,uDAAuD,CAAC;AACjH,OAAO,KAAK,4BAA4B,MAAM,4CAA4C,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"bookmark.d.ts","sourceRoot":"","sources":["../../../../../../lib/lexicons/types/community/lexicon/bookmarks/bookmark.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,CAAC,MAAM,8BAA8B,CAAC;AAGlD,QAAA,MAAM,WAAW;;;;IAMf;;OAEG;;mCAGJ,CAAC;AAEF,KAAK,eAAe,GAAG,OAAO,WAAW,CAAC;AAE1C,MAAM,WAAW,UAAW,SAAQ,eAAe;CAAG;AAEtD,eAAO,MAAM,UAAU,EAAkB,UAAU,CAAC;AAEpD,MAAM,WAAW,IAAK,SAAQ,CAAC,CAAC,UAAU,CAAC,OAAO,UAAU,CAAC;CAAG;AAEhE,OAAO,QAAQ,0BAA0B,CAAC;IACzC,UAAU,OAAO;QAChB,sCAAsC,EAAE,UAAU,CAAC;KACnD;CACD"}
1
+ {"version":3,"file":"bookmark.d.ts","sourceRoot":"","sources":["../../../../../../lib/lexicons/types/community/lexicon/bookmarks/bookmark.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,CAAC,MAAM,8BAA8B,CAAC;AAElD,QAAA,MAAM,WAAW;;;;IAMf;;OAEG;;mCAGJ,CAAC;AAEF,KAAK,eAAe,GAAG,OAAO,WAAW,CAAC;AAE1C,MAAM,WAAW,UAAW,SAAQ,eAAe;CAAG;AAEtD,eAAO,MAAM,UAAU,EAAkB,UAAU,CAAC;AAEpD,MAAM,WAAW,IAAK,SAAQ,CAAC,CAAC,UAAU,CAAC,OAAO,UAAU,CAAC;CAAG;AAEhE,OAAO,QAAQ,0BAA0B,CAAC,CAAC;IAC1C,UAAU,OAAO;QAChB,sCAAsC,EAAE,UAAU,CAAC;KACnD;CACD"}
@@ -1 +1 @@
1
- {"version":3,"file":"bookmark.js","sourceRoot":"","sources":["../../../../../../lib/lexicons/types/community/lexicon/bookmarks/bookmark.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,CAAC,MAAM,8BAA8B,CAAC;AAGlD,MAAM,WAAW,GAAG,aAAa,CAAC,CAAC,CAAC,MAAM;AACzC,aAAa,CAAC,CAAC,CAAC,SAAS,EAAE;AAC3B,aAAa,CAAC,CAAC,CAAC,MAAM,CAAC;IACtB,KAAK,EAAE,aAAa,CAAC,CAAC,CAAC,OAAO,CAAC,sCAAsC,CAAC;IACtE,SAAS,EAAE,aAAa,CAAC,CAAC,CAAC,cAAc,EAAE;IAC3C,OAAO,EAAE,aAAa,CAAC,CAAC,CAAC,gBAAgB,EAAE;IAC3C;;OAEG;IACH,IAAI,EAAE,aAAa,CAAC,CAAC,CAAC,QAAQ,CAAC,aAAa,CAAC,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC;CAC/E,CAAC,CACF,CAAC;AAMF,MAAM,CAAC,MAAM,UAAU,GAAG,WAAyB,CAAC"}
1
+ {"version":3,"file":"bookmark.js","sourceRoot":"","sources":["../../../../../../lib/lexicons/types/community/lexicon/bookmarks/bookmark.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,CAAC,MAAM,8BAA8B,CAAC;AAElD,MAAM,WAAW,GAAG,aAAa,CAAC,CAAC,CAAC,MAAM;AACzC,aAAa,CAAC,CAAC,CAAC,SAAS,EAAE;AAC3B,aAAa,CAAC,CAAC,CAAC,MAAM,CAAC;IACtB,KAAK,EAAE,aAAa,CAAC,CAAC,CAAC,OAAO,CAAC,sCAAsC,CAAC;IACtE,SAAS,EAAE,aAAa,CAAC,CAAC,CAAC,cAAc,EAAE;IAC3C,OAAO,EAAE,aAAa,CAAC,CAAC,CAAC,gBAAgB,EAAE;IAC3C;;OAEG;IACH,IAAI,EAAE,aAAa,CAAC,CAAC,CAAC,QAAQ,CAAC,aAAa,CAAC,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC;CAC/E,CAAC,CACF,CAAC;AAMF,MAAM,CAAC,MAAM,UAAU,GAAG,WAAyB,CAAC"}
@@ -1,5 +1,5 @@
1
1
  import * as v from '@atcute/lexicons/validations';
2
- import * as CommunityLexiconBookmarksBookmark from './bookmark.js';
2
+ import * as CommunityLexiconBookmarksBookmark from './bookmark.ts';
3
3
  declare const _mainSchema: v.XRPCQueryMetadata<v.ObjectSchema<{
4
4
  cursor: v.OptionalSchema<v.StringSchema<string>, undefined>;
5
5
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"getActorBookmarks.d.ts","sourceRoot":"","sources":["../../../../../../lib/lexicons/types/community/lexicon/bookmarks/getActorBookmarks.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,CAAC,MAAM,8BAA8B,CAAC;AAElD,OAAO,KAAK,iCAAiC,MAAM,eAAe,CAAC;AAEnE,QAAA,MAAM,WAAW;;IAGf;;;;OAIG;;;;;;;;;mDAgBH,CAAC;AAEH,KAAK,eAAe,GAAG,OAAO,WAAW,CAAC;AAE1C,MAAM,WAAW,UAAW,SAAQ,eAAe;CAAG;AAEtD,eAAO,MAAM,UAAU,EAAkB,UAAU,CAAC;AAEpD,MAAM,WAAW,OAAQ,SAAQ,CAAC,CAAC,UAAU,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC;CAAG;AACtE,MAAM,WAAW,OAAQ,SAAQ,CAAC,CAAC,kBAAkB,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC;CAAG;AAE9E,OAAO,QAAQ,0BAA0B,CAAC;IACzC,UAAU,WAAW;QACpB,+CAA+C,EAAE,UAAU,CAAC;KAC5D;CACD"}
1
+ {"version":3,"file":"getActorBookmarks.d.ts","sourceRoot":"","sources":["../../../../../../lib/lexicons/types/community/lexicon/bookmarks/getActorBookmarks.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,CAAC,MAAM,8BAA8B,CAAC;AAElD,OAAO,KAAK,iCAAiC,MAAM,eAAe,CAAC;AAEnE,QAAA,MAAM,WAAW;;IAGf;;;;OAIG;;;;;;;;;mDAgBH,CAAC;AAEH,KAAK,eAAe,GAAG,OAAO,WAAW,CAAC;AAE1C,MAAM,WAAW,UAAW,SAAQ,eAAe;CAAG;AAEtD,eAAO,MAAM,UAAU,EAAkB,UAAU,CAAC;AAEpD,MAAM,WAAW,OAAQ,SAAQ,CAAC,CAAC,UAAU,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC;CAAG;AACtE,MAAM,WAAW,OAAQ,SAAQ,CAAC,CAAC,kBAAkB,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC;CAAG;AAE9E,OAAO,QAAQ,0BAA0B,CAAC,CAAC;IAC1C,UAAU,WAAW;QACpB,+CAA+C,EAAE,UAAU,CAAC;KAC5D;CACD"}
@@ -1 +1 @@
1
- {"version":3,"file":"getActorBookmarks.js","sourceRoot":"","sources":["../../../../../../lib/lexicons/types/community/lexicon/bookmarks/getActorBookmarks.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,CAAC,MAAM,8BAA8B,CAAC;AAElD,OAAO,KAAK,iCAAiC,MAAM,eAAe,CAAC;AAEnE,MAAM,WAAW,GAAG,aAAa,CAAC,CAAC,CAAC,KAAK,CAAC,+CAA+C,EAAE;IAC1F,MAAM,EAAE,aAAa,CAAC,CAAC,CAAC,MAAM,CAAC;QAC9B,MAAM,EAAE,aAAa,CAAC,CAAC,CAAC,QAAQ,CAAC,aAAa,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;QAC1D;;;;WAIG;QACH,KAAK,EAAE,aAAa,CAAC,CAAC,CAAC,QAAQ;QAC9B,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC,aAAa,CAAC,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,aAAa,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,EAC5F,EAAE,CACF;QACD,IAAI,EAAE,aAAa,CAAC,CAAC,CAAC,QAAQ,CAAC,aAAa,CAAC,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC;KAC/E,CAAC;IACF,MAAM,EAAE;QACP,IAAI,EAAE,KAAK;QACX,MAAM,EAAE,aAAa,CAAC,CAAC,CAAC,MAAM,CAAC;YAC9B,IAAI,SAAS;gBACZ,OAAO,aAAa,CAAC,CAAC,CAAC,KAAK,CAAC,iCAAiC,CAAC,UAAU,CAAC,CAAC;YAC5E,CAAC;YACD,MAAM,EAAE,aAAa,CAAC,CAAC,CAAC,QAAQ,CAAC,aAAa,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;SAC1D,CAAC;KACF;CACD,CAAC,CAAC;AAMH,MAAM,CAAC,MAAM,UAAU,GAAG,WAAyB,CAAC"}
1
+ {"version":3,"file":"getActorBookmarks.js","sourceRoot":"","sources":["../../../../../../lib/lexicons/types/community/lexicon/bookmarks/getActorBookmarks.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,CAAC,MAAM,8BAA8B,CAAC;AAElD,OAAO,KAAK,iCAAiC,MAAM,eAAe,CAAC;AAEnE,MAAM,WAAW,GAAG,aAAa,CAAC,CAAC,CAAC,KAAK,CAAC,+CAA+C,EAAE;IAC1F,MAAM,EAAE,aAAa,CAAC,CAAC,CAAC,MAAM,CAAC;QAC9B,MAAM,EAAE,aAAa,CAAC,CAAC,CAAC,QAAQ,CAAC,aAAa,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;QAC1D;;;;WAIG;QACH,KAAK,EAAE,aAAa,CAAC,CAAC,CAAC,QAAQ;QAC9B,aAAa,CAAC,CAAC,CAAC,SAAS,CAAC,aAAa,CAAC,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,aAAa,CAAC,CAAC,CAAC,YAAY,CAAC,CAAC,EAAE,GAAG,CAAC,CAAC,CAAC,EAC5F,EAAE,CACF;QACD,IAAI,EAAE,aAAa,CAAC,CAAC,CAAC,QAAQ,CAAC,aAAa,CAAC,CAAC,CAAC,KAAK,CAAC,aAAa,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC;KAC/E,CAAC;IACF,MAAM,EAAE;QACP,IAAI,EAAE,KAAK;QACX,MAAM,EAAE,aAAa,CAAC,CAAC,CAAC,MAAM,CAAC;YAC9B,IAAI,SAAS;gBACZ,OAAO,aAAa,CAAC,CAAC,CAAC,KAAK,CAAC,iCAAiC,CAAC,UAAU,CAAC,CAAC;YAC5E,CAAC;YACD,MAAM,EAAE,aAAa,CAAC,CAAC,CAAC,QAAQ,CAAC,aAAa,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;SAC1D,CAAC;KACF;CACD,CAAC,CAAC;AAMH,MAAM,CAAC,MAAM,UAAU,GAAG,WAAyB,CAAC"}
@@ -1,8 +1,8 @@
1
1
  import * as v from '@atcute/lexicons/validations';
2
- import * as CommunityLexiconLocationAddress from '../location/address.js';
3
- import * as CommunityLexiconLocationFsq from '../location/fsq.js';
4
- import * as CommunityLexiconLocationGeo from '../location/geo.js';
5
- import * as CommunityLexiconLocationHthree from '../location/hthree.js';
2
+ import * as CommunityLexiconLocationAddress from '../location/address.ts';
3
+ import * as CommunityLexiconLocationFsq from '../location/fsq.ts';
4
+ import * as CommunityLexiconLocationGeo from '../location/geo.ts';
5
+ import * as CommunityLexiconLocationHthree from '../location/hthree.ts';
6
6
  declare const _cancelledSchema: v.LiteralSchema<"community.lexicon.calendar.event#cancelled">;
7
7
  declare const _hybridSchema: v.LiteralSchema<"community.lexicon.calendar.event#hybrid">;
8
8
  declare const _inpersonSchema: v.LiteralSchema<"community.lexicon.calendar.event#inperson">;
@@ -45,12 +45,12 @@ declare const _mainSchema: v.RecordSchema<v.ObjectSchema<{
45
45
  */
46
46
  readonly uris: v.OptionalSchema<v.ArraySchema<uriSchema>, undefined>;
47
47
  }>, v.FormattedStringSchema<"tid">>;
48
- declare const _modeSchema: v.OptionalSchema<v.StringSchema<"community.lexicon.calendar.event#hybrid" | "community.lexicon.calendar.event#inperson" | (string & {}) | "community.lexicon.calendar.event#virtual">, "community.lexicon.calendar.event#inperson">;
48
+ declare const _modeSchema: v.OptionalSchema<v.StringSchema<"community.lexicon.calendar.event#hybrid" | "community.lexicon.calendar.event#inperson" | "community.lexicon.calendar.event#virtual" | (string & {})>, "community.lexicon.calendar.event#inperson">;
49
49
  declare const _plannedSchema: v.LiteralSchema<"community.lexicon.calendar.event#planned">;
50
50
  declare const _postponedSchema: v.LiteralSchema<"community.lexicon.calendar.event#postponed">;
51
51
  declare const _rescheduledSchema: v.LiteralSchema<"community.lexicon.calendar.event#rescheduled">;
52
52
  declare const _scheduledSchema: v.LiteralSchema<"community.lexicon.calendar.event#scheduled">;
53
- declare const _statusSchema: v.OptionalSchema<v.StringSchema<"community.lexicon.calendar.event#cancelled" | (string & {}) | "community.lexicon.calendar.event#planned" | "community.lexicon.calendar.event#postponed" | "community.lexicon.calendar.event#rescheduled" | "community.lexicon.calendar.event#scheduled">, "community.lexicon.calendar.event#scheduled">;
53
+ declare const _statusSchema: v.OptionalSchema<v.StringSchema<"community.lexicon.calendar.event#cancelled" | "community.lexicon.calendar.event#planned" | "community.lexicon.calendar.event#postponed" | "community.lexicon.calendar.event#rescheduled" | "community.lexicon.calendar.event#scheduled" | (string & {})>, "community.lexicon.calendar.event#scheduled">;
54
54
  declare const _uriSchema: v.ObjectSchema<{
55
55
  $type: v.OptionalSchema<v.LiteralSchema<"community.lexicon.calendar.event#uri">, undefined>;
56
56
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"event.d.ts","sourceRoot":"","sources":["../../../../../../lib/lexicons/types/community/lexicon/calendar/event.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"event.d.ts","sourceRoot":"","sources":["../../../../../../lib/lexicons/types/community/lexicon/calendar/event.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"version":3,"file":"event.js","sourceRoot":"","sources":["../../../../../../lib/lexicons/types/community/lexicon/calendar/event.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"event.js","sourceRoot":"","sources":["../../../../../../lib/lexicons/types/community/lexicon/calendar/event.ts"],"names":[],"mappings":"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"}
@@ -1,5 +1,5 @@
1
- import * as v from '@atcute/lexicons/validations';
2
1
  import * as ComAtprotoRepoStrongRef from '@atcute/atproto/types/repo/strongRef';
2
+ import * as v from '@atcute/lexicons/validations';
3
3
  declare const _goingSchema: v.LiteralSchema<"community.lexicon.calendar.rsvp#going">;
4
4
  declare const _interestedSchema: v.LiteralSchema<"community.lexicon.calendar.rsvp#interested">;
5
5
  declare const _mainSchema: v.RecordSchema<v.ObjectSchema<{
@@ -7,7 +7,7 @@ declare const _mainSchema: v.RecordSchema<v.ObjectSchema<{
7
7
  /**
8
8
  * @default "community.lexicon.calendar.rsvp#going"
9
9
  */
10
- status: v.OptionalSchema<v.StringSchema<(string & {}) | "community.lexicon.calendar.rsvp#going" | "community.lexicon.calendar.rsvp#interested" | "community.lexicon.calendar.rsvp#notgoing">, "community.lexicon.calendar.rsvp#going">;
10
+ status: v.OptionalSchema<v.StringSchema<"community.lexicon.calendar.rsvp#going" | "community.lexicon.calendar.rsvp#interested" | "community.lexicon.calendar.rsvp#notgoing" | (string & {})>, "community.lexicon.calendar.rsvp#going">;
11
11
  readonly subject: ComAtprotoRepoStrongRef.mainSchema;
12
12
  }>, v.FormattedStringSchema<"tid">>;
13
13
  declare const _notgoingSchema: v.LiteralSchema<"community.lexicon.calendar.rsvp#notgoing">;
@@ -1 +1 @@
1
- {"version":3,"file":"rsvp.d.ts","sourceRoot":"","sources":["../../../../../../lib/lexicons/types/community/lexicon/calendar/rsvp.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,CAAC,MAAM,8BAA8B,CAAC;AAElD,OAAO,KAAK,uBAAuB,MAAM,sCAAsC,CAAC;AAEhF,QAAA,MAAM,YAAY,0DAAmE,CAAC;AACtF,QAAA,MAAM,iBAAiB,+DAAwE,CAAC;AAChG,QAAA,MAAM,WAAW;;IAIf;;OAEG;;;mCAcJ,CAAC;AACF,QAAA,MAAM,eAAe,6DAAsE,CAAC;AAE5F,KAAK,gBAAgB,GAAG,OAAO,YAAY,CAAC;AAC5C,KAAK,qBAAqB,GAAG,OAAO,iBAAiB,CAAC;AACtD,KAAK,eAAe,GAAG,OAAO,WAAW,CAAC;AAC1C,KAAK,mBAAmB,GAAG,OAAO,eAAe,CAAC;AAElD,MAAM,WAAW,WAAY,SAAQ,gBAAgB;CAAG;AACxD,MAAM,WAAW,gBAAiB,SAAQ,qBAAqB;CAAG;AAClE,MAAM,WAAW,UAAW,SAAQ,eAAe;CAAG;AACtD,MAAM,WAAW,cAAe,SAAQ,mBAAmB;CAAG;AAE9D,eAAO,MAAM,WAAW,EAAmB,WAAW,CAAC;AACvD,eAAO,MAAM,gBAAgB,EAAwB,gBAAgB,CAAC;AACtE,eAAO,MAAM,UAAU,EAAkB,UAAU,CAAC;AACpD,eAAO,MAAM,cAAc,EAAsB,cAAc,CAAC;AAEhE,MAAM,MAAM,KAAK,GAAG,CAAC,CAAC,UAAU,CAAC,OAAO,WAAW,CAAC,CAAC;AACrD,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,UAAU,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAC/D,MAAM,WAAW,IAAK,SAAQ,CAAC,CAAC,UAAU,CAAC,OAAO,UAAU,CAAC;CAAG;AAChE,MAAM,MAAM,QAAQ,GAAG,CAAC,CAAC,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAE3D,OAAO,QAAQ,0BAA0B,CAAC;IACzC,UAAU,OAAO;QAChB,iCAAiC,EAAE,UAAU,CAAC;KAC9C;CACD"}
1
+ {"version":3,"file":"rsvp.d.ts","sourceRoot":"","sources":["../../../../../../lib/lexicons/types/community/lexicon/calendar/rsvp.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,uBAAuB,MAAM,sCAAsC,CAAC;AAGhF,OAAO,KAAK,CAAC,MAAM,8BAA8B,CAAC;AAElD,QAAA,MAAM,YAAY,0DAAmE,CAAC;AACtF,QAAA,MAAM,iBAAiB,+DAAwE,CAAC;AAChG,QAAA,MAAM,WAAW;;IAIf;;OAEG;;;mCAcJ,CAAC;AACF,QAAA,MAAM,eAAe,6DAAsE,CAAC;AAE5F,KAAK,gBAAgB,GAAG,OAAO,YAAY,CAAC;AAC5C,KAAK,qBAAqB,GAAG,OAAO,iBAAiB,CAAC;AACtD,KAAK,eAAe,GAAG,OAAO,WAAW,CAAC;AAC1C,KAAK,mBAAmB,GAAG,OAAO,eAAe,CAAC;AAElD,MAAM,WAAW,WAAY,SAAQ,gBAAgB;CAAG;AACxD,MAAM,WAAW,gBAAiB,SAAQ,qBAAqB;CAAG;AAClE,MAAM,WAAW,UAAW,SAAQ,eAAe;CAAG;AACtD,MAAM,WAAW,cAAe,SAAQ,mBAAmB;CAAG;AAE9D,eAAO,MAAM,WAAW,EAAmB,WAAW,CAAC;AACvD,eAAO,MAAM,gBAAgB,EAAwB,gBAAgB,CAAC;AACtE,eAAO,MAAM,UAAU,EAAkB,UAAU,CAAC;AACpD,eAAO,MAAM,cAAc,EAAsB,cAAc,CAAC;AAEhE,MAAM,MAAM,KAAK,GAAG,CAAC,CAAC,UAAU,CAAC,OAAO,WAAW,CAAC,CAAC;AACrD,MAAM,MAAM,UAAU,GAAG,CAAC,CAAC,UAAU,CAAC,OAAO,gBAAgB,CAAC,CAAC;AAC/D,MAAM,WAAW,IAAK,SAAQ,CAAC,CAAC,UAAU,CAAC,OAAO,UAAU,CAAC;CAAG;AAChE,MAAM,MAAM,QAAQ,GAAG,CAAC,CAAC,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAE3D,OAAO,QAAQ,0BAA0B,CAAC,CAAC;IAC1C,UAAU,OAAO;QAChB,iCAAiC,EAAE,UAAU,CAAC;KAC9C;CACD"}
@@ -1,5 +1,5 @@
1
- import * as v from '@atcute/lexicons/validations';
2
1
  import * as ComAtprotoRepoStrongRef from '@atcute/atproto/types/repo/strongRef';
2
+ import * as v from '@atcute/lexicons/validations';
3
3
  const _goingSchema = /*#__PURE__*/ v.literal('community.lexicon.calendar.rsvp#going');
4
4
  const _interestedSchema = /*#__PURE__*/ v.literal('community.lexicon.calendar.rsvp#interested');
5
5
  const _mainSchema = /*#__PURE__*/ v.record(
@@ -1 +1 @@
1
- {"version":3,"file":"rsvp.js","sourceRoot":"","sources":["../../../../../../lib/lexicons/types/community/lexicon/calendar/rsvp.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,CAAC,MAAM,8BAA8B,CAAC;AAElD,OAAO,KAAK,uBAAuB,MAAM,sCAAsC,CAAC;AAEhF,MAAM,YAAY,GAAG,aAAa,CAAC,CAAC,CAAC,OAAO,CAAC,uCAAuC,CAAC,CAAC;AACtF,MAAM,iBAAiB,GAAG,aAAa,CAAC,CAAC,CAAC,OAAO,CAAC,4CAA4C,CAAC,CAAC;AAChG,MAAM,WAAW,GAAG,aAAa,CAAC,CAAC,CAAC,MAAM;AACzC,aAAa,CAAC,CAAC,CAAC,SAAS,EAAE;AAC3B,aAAa,CAAC,CAAC,CAAC,MAAM,CAAC;IACtB,KAAK,EAAE,aAAa,CAAC,CAAC,CAAC,OAAO,CAAC,iCAAiC,CAAC;IACjE;;OAEG;IACH,MAAM,EAAE,aAAa,CAAC,CAAC,CAAC,QAAQ;IAC/B,aAAa,CAAC,CAAC,CAAC,MAAM,EAKnB,EACH,uCAAuC,CACvC;IACD,IAAI,OAAO;QACV,OAAO,uBAAuB,CAAC,UAAU,CAAC;IAC3C,CAAC;CACD,CAAC,CACF,CAAC;AACF,MAAM,eAAe,GAAG,aAAa,CAAC,CAAC,CAAC,OAAO,CAAC,0CAA0C,CAAC,CAAC;AAY5F,MAAM,CAAC,MAAM,WAAW,GAAG,YAA2B,CAAC;AACvD,MAAM,CAAC,MAAM,gBAAgB,GAAG,iBAAqC,CAAC;AACtE,MAAM,CAAC,MAAM,UAAU,GAAG,WAAyB,CAAC;AACpD,MAAM,CAAC,MAAM,cAAc,GAAG,eAAiC,CAAC"}
1
+ {"version":3,"file":"rsvp.js","sourceRoot":"","sources":["../../../../../../lib/lexicons/types/community/lexicon/calendar/rsvp.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,uBAAuB,MAAM,sCAAsC,CAAC;AAGhF,OAAO,KAAK,CAAC,MAAM,8BAA8B,CAAC;AAElD,MAAM,YAAY,GAAG,aAAa,CAAC,CAAC,CAAC,OAAO,CAAC,uCAAuC,CAAC,CAAC;AACtF,MAAM,iBAAiB,GAAG,aAAa,CAAC,CAAC,CAAC,OAAO,CAAC,4CAA4C,CAAC,CAAC;AAChG,MAAM,WAAW,GAAG,aAAa,CAAC,CAAC,CAAC,MAAM;AACzC,aAAa,CAAC,CAAC,CAAC,SAAS,EAAE;AAC3B,aAAa,CAAC,CAAC,CAAC,MAAM,CAAC;IACtB,KAAK,EAAE,aAAa,CAAC,CAAC,CAAC,OAAO,CAAC,iCAAiC,CAAC;IACjE;;OAEG;IACH,MAAM,EAAE,aAAa,CAAC,CAAC,CAAC,QAAQ;IAC/B,aAAa,CAAC,CAAC,CAAC,MAAM,EAKnB,EACH,uCAAuC,CACvC;IACD,IAAI,OAAO;QACV,OAAO,uBAAuB,CAAC,UAAU,CAAC;IAC3C,CAAC;CACD,CAAC,CACF,CAAC;AACF,MAAM,eAAe,GAAG,aAAa,CAAC,CAAC,CAAC,OAAO,CAAC,0CAA0C,CAAC,CAAC;AAY5F,MAAM,CAAC,MAAM,WAAW,GAAG,YAA2B,CAAC;AACvD,MAAM,CAAC,MAAM,gBAAgB,GAAG,iBAAqC,CAAC;AACtE,MAAM,CAAC,MAAM,UAAU,GAAG,WAAyB,CAAC;AACpD,MAAM,CAAC,MAAM,cAAc,GAAG,eAAiC,CAAC"}
@@ -1,5 +1,5 @@
1
- import * as v from '@atcute/lexicons/validations';
2
1
  import * as ComAtprotoRepoStrongRef from '@atcute/atproto/types/repo/strongRef';
2
+ import * as v from '@atcute/lexicons/validations';
3
3
  declare const _mainSchema: v.RecordSchema<v.ObjectSchema<{
4
4
  $type: v.LiteralSchema<"community.lexicon.interaction.like">;
5
5
  createdAt: v.FormattedStringSchema<"datetime">;
@@ -1 +1 @@
1
- {"version":3,"file":"like.d.ts","sourceRoot":"","sources":["../../../../../../lib/lexicons/types/community/lexicon/interaction/like.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,CAAC,MAAM,8BAA8B,CAAC;AAElD,OAAO,KAAK,uBAAuB,MAAM,sCAAsC,CAAC;AAEhF,QAAA,MAAM,WAAW;;;;mCAShB,CAAC;AAEF,KAAK,eAAe,GAAG,OAAO,WAAW,CAAC;AAE1C,MAAM,WAAW,UAAW,SAAQ,eAAe;CAAG;AAEtD,eAAO,MAAM,UAAU,EAAkB,UAAU,CAAC;AAEpD,MAAM,WAAW,IAAK,SAAQ,CAAC,CAAC,UAAU,CAAC,OAAO,UAAU,CAAC;CAAG;AAEhE,OAAO,QAAQ,0BAA0B,CAAC;IACzC,UAAU,OAAO;QAChB,oCAAoC,EAAE,UAAU,CAAC;KACjD;CACD"}
1
+ {"version":3,"file":"like.d.ts","sourceRoot":"","sources":["../../../../../../lib/lexicons/types/community/lexicon/interaction/like.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,uBAAuB,MAAM,sCAAsC,CAAC;AAGhF,OAAO,KAAK,CAAC,MAAM,8BAA8B,CAAC;AAElD,QAAA,MAAM,WAAW;;;;mCAShB,CAAC;AAEF,KAAK,eAAe,GAAG,OAAO,WAAW,CAAC;AAE1C,MAAM,WAAW,UAAW,SAAQ,eAAe;CAAG;AAEtD,eAAO,MAAM,UAAU,EAAkB,UAAU,CAAC;AAEpD,MAAM,WAAW,IAAK,SAAQ,CAAC,CAAC,UAAU,CAAC,OAAO,UAAU,CAAC;CAAG;AAEhE,OAAO,QAAQ,0BAA0B,CAAC,CAAC;IAC1C,UAAU,OAAO;QAChB,oCAAoC,EAAE,UAAU,CAAC;KACjD;CACD"}
@@ -1,5 +1,5 @@
1
- import * as v from '@atcute/lexicons/validations';
2
1
  import * as ComAtprotoRepoStrongRef from '@atcute/atproto/types/repo/strongRef';
2
+ import * as v from '@atcute/lexicons/validations';
3
3
  const _mainSchema = /*#__PURE__*/ v.record(
4
4
  /*#__PURE__*/ v.tidString(),
5
5
  /*#__PURE__*/ v.object({
@@ -1 +1 @@
1
- {"version":3,"file":"like.js","sourceRoot":"","sources":["../../../../../../lib/lexicons/types/community/lexicon/interaction/like.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,CAAC,MAAM,8BAA8B,CAAC;AAElD,OAAO,KAAK,uBAAuB,MAAM,sCAAsC,CAAC;AAEhF,MAAM,WAAW,GAAG,aAAa,CAAC,CAAC,CAAC,MAAM;AACzC,aAAa,CAAC,CAAC,CAAC,SAAS,EAAE;AAC3B,aAAa,CAAC,CAAC,CAAC,MAAM,CAAC;IACtB,KAAK,EAAE,aAAa,CAAC,CAAC,CAAC,OAAO,CAAC,oCAAoC,CAAC;IACpE,SAAS,EAAE,aAAa,CAAC,CAAC,CAAC,cAAc,EAAE;IAC3C,IAAI,OAAO;QACV,OAAO,uBAAuB,CAAC,UAAU,CAAC;IAC3C,CAAC;CACD,CAAC,CACF,CAAC;AAMF,MAAM,CAAC,MAAM,UAAU,GAAG,WAAyB,CAAC"}
1
+ {"version":3,"file":"like.js","sourceRoot":"","sources":["../../../../../../lib/lexicons/types/community/lexicon/interaction/like.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,uBAAuB,MAAM,sCAAsC,CAAC;AAGhF,OAAO,KAAK,CAAC,MAAM,8BAA8B,CAAC;AAElD,MAAM,WAAW,GAAG,aAAa,CAAC,CAAC,CAAC,MAAM;AACzC,aAAa,CAAC,CAAC,CAAC,SAAS,EAAE;AAC3B,aAAa,CAAC,CAAC,CAAC,MAAM,CAAC;IACtB,KAAK,EAAE,aAAa,CAAC,CAAC,CAAC,OAAO,CAAC,oCAAoC,CAAC;IACpE,SAAS,EAAE,aAAa,CAAC,CAAC,CAAC,cAAc,EAAE;IAC3C,IAAI,OAAO;QACV,OAAO,uBAAuB,CAAC,UAAU,CAAC;IAC3C,CAAC;CACD,CAAC,CACF,CAAC;AAMF,MAAM,CAAC,MAAM,UAAU,GAAG,WAAyB,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"webMonetization.d.ts","sourceRoot":"","sources":["../../../../../../lib/lexicons/types/community/lexicon/payments/webMonetization.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,CAAC,MAAM,8BAA8B,CAAC;AAGlD,QAAA,MAAM,WAAW;;IAIf;;OAEG;;IAEH;;OAEG;;2BAGJ,CAAC;AAEF,KAAK,eAAe,GAAG,OAAO,WAAW,CAAC;AAE1C,MAAM,WAAW,UAAW,SAAQ,eAAe;CAAG;AAEtD,eAAO,MAAM,UAAU,EAAkB,UAAU,CAAC;AAEpD,MAAM,WAAW,IAAK,SAAQ,CAAC,CAAC,UAAU,CAAC,OAAO,UAAU,CAAC;CAAG;AAEhE,OAAO,QAAQ,0BAA0B,CAAC;IACzC,UAAU,OAAO;QAChB,4CAA4C,EAAE,UAAU,CAAC;KACzD;CACD"}
1
+ {"version":3,"file":"webMonetization.d.ts","sourceRoot":"","sources":["../../../../../../lib/lexicons/types/community/lexicon/payments/webMonetization.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,CAAC,MAAM,8BAA8B,CAAC;AAElD,QAAA,MAAM,WAAW;;IAIf;;OAEG;;IAEH;;OAEG;;2BAGJ,CAAC;AAEF,KAAK,eAAe,GAAG,OAAO,WAAW,CAAC;AAE1C,MAAM,WAAW,UAAW,SAAQ,eAAe;CAAG;AAEtD,eAAO,MAAM,UAAU,EAAkB,UAAU,CAAC;AAEpD,MAAM,WAAW,IAAK,SAAQ,CAAC,CAAC,UAAU,CAAC,OAAO,UAAU,CAAC;CAAG;AAEhE,OAAO,QAAQ,0BAA0B,CAAC,CAAC;IAC1C,UAAU,OAAO;QAChB,4CAA4C,EAAE,UAAU,CAAC;KACzD;CACD"}
@@ -1 +1 @@
1
- {"version":3,"file":"webMonetization.js","sourceRoot":"","sources":["../../../../../../lib/lexicons/types/community/lexicon/payments/webMonetization.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,CAAC,MAAM,8BAA8B,CAAC;AAGlD,MAAM,WAAW,GAAG,aAAa,CAAC,CAAC,CAAC,MAAM;AACzC,aAAa,CAAC,CAAC,CAAC,MAAM,EAAE;AACxB,aAAa,CAAC,CAAC,CAAC,MAAM,CAAC;IACtB,KAAK,EAAE,aAAa,CAAC,CAAC,CAAC,OAAO,CAAC,4CAA4C,CAAC;IAC5E;;OAEG;IACH,OAAO,EAAE,aAAa,CAAC,CAAC,CAAC,gBAAgB,EAAE;IAC3C;;OAEG;IACH,IAAI,EAAE,aAAa,CAAC,CAAC,CAAC,QAAQ,CAAC,aAAa,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;CACxD,CAAC,CACF,CAAC;AAMF,MAAM,CAAC,MAAM,UAAU,GAAG,WAAyB,CAAC"}
1
+ {"version":3,"file":"webMonetization.js","sourceRoot":"","sources":["../../../../../../lib/lexicons/types/community/lexicon/payments/webMonetization.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,CAAC,MAAM,8BAA8B,CAAC;AAElD,MAAM,WAAW,GAAG,aAAa,CAAC,CAAC,CAAC,MAAM;AACzC,aAAa,CAAC,CAAC,CAAC,MAAM,EAAE;AACxB,aAAa,CAAC,CAAC,CAAC,MAAM,CAAC;IACtB,KAAK,EAAE,aAAa,CAAC,CAAC,CAAC,OAAO,CAAC,4CAA4C,CAAC;IAC5E;;OAEG;IACH,OAAO,EAAE,aAAa,CAAC,CAAC,CAAC,gBAAgB,EAAE;IAC3C;;OAEG;IACH,IAAI,EAAE,aAAa,CAAC,CAAC,CAAC,QAAQ,CAAC,aAAa,CAAC,CAAC,CAAC,MAAM,EAAE,CAAC;CACxD,CAAC,CACF,CAAC;AAMF,MAAM,CAAC,MAAM,UAAU,GAAG,WAAyB,CAAC"}
@@ -0,0 +1,103 @@
1
+ import * as v from '@atcute/lexicons/validations';
2
+ declare const _collectionScopeSchema: v.ObjectSchema<{
3
+ $type: v.OptionalSchema<v.LiteralSchema<"community.lexicon.preference.ai#collectionScope">, undefined>;
4
+ /**
5
+ * NSID of the collection this override applies to.
6
+ */
7
+ collection: v.FormattedStringSchema<"nsid">;
8
+ }>;
9
+ declare const _entityScopeSchema: v.ObjectSchema<{
10
+ $type: v.OptionalSchema<v.LiteralSchema<"community.lexicon.preference.ai#entityScope">, undefined>;
11
+ /**
12
+ * DID or domain of the entity this override applies to.
13
+ */
14
+ entity: v.StringSchema<string>;
15
+ }>;
16
+ declare const _globalScopeSchema: v.ObjectSchema<{
17
+ $type: v.OptionalSchema<v.LiteralSchema<"community.lexicon.preference.ai#globalScope">, undefined>;
18
+ }>;
19
+ declare const _mainSchema: v.RecordSchema<v.ObjectSchema<{
20
+ $type: v.LiteralSchema<"community.lexicon.preference.ai">;
21
+ readonly preferences: preferenceSetSchema;
22
+ /**
23
+ * What this record's preferences apply to.
24
+ */
25
+ readonly scope: v.VariantSchema<readonly [collectionScopeSchema, entityScopeSchema, globalScopeSchema], boolean>;
26
+ /**
27
+ * Timestamp of the most recent change to this record.
28
+ */
29
+ updatedAt: v.FormattedStringSchema<"datetime">;
30
+ }>, v.StringSchema<string>>;
31
+ declare const _preferenceSchema: v.ObjectSchema<{
32
+ $type: v.OptionalSchema<v.LiteralSchema<"community.lexicon.preference.ai#preference">, undefined>;
33
+ /**
34
+ * Whether this usage is permitted (true) or denied (false).
35
+ */
36
+ allow: v.BooleanSchema;
37
+ /**
38
+ * When this specific preference was last changed.
39
+ */
40
+ updatedAt: v.FormattedStringSchema<"datetime">;
41
+ }>;
42
+ declare const _preferenceSetSchema: v.ObjectSchema<{
43
+ $type: v.OptionalSchema<v.LiteralSchema<"community.lexicon.preference.ai#preferenceSet">, undefined>;
44
+ /**
45
+ * Use for vector embeddings or semantic indexing.
46
+ */
47
+ readonly embedding: v.OptionalSchema<preferenceSchema, undefined>;
48
+ /**
49
+ * Use at inference time for retrieval, RAG, or context injection.
50
+ */
51
+ readonly inference: v.OptionalSchema<preferenceSchema, undefined>;
52
+ /**
53
+ * Use to generate synthetic content or interactions derived from user data.
54
+ */
55
+ readonly syntheticContent: v.OptionalSchema<preferenceSchema, undefined>;
56
+ /**
57
+ * Use as input for training, fine-tuning, distillation, or RLHF of ML models.
58
+ */
59
+ readonly training: v.OptionalSchema<preferenceSchema, undefined>;
60
+ }>;
61
+ type collectionScope$schematype = typeof _collectionScopeSchema;
62
+ type entityScope$schematype = typeof _entityScopeSchema;
63
+ type globalScope$schematype = typeof _globalScopeSchema;
64
+ type main$schematype = typeof _mainSchema;
65
+ type preference$schematype = typeof _preferenceSchema;
66
+ type preferenceSet$schematype = typeof _preferenceSetSchema;
67
+ export interface collectionScopeSchema extends collectionScope$schematype {
68
+ }
69
+ export interface entityScopeSchema extends entityScope$schematype {
70
+ }
71
+ export interface globalScopeSchema extends globalScope$schematype {
72
+ }
73
+ export interface mainSchema extends main$schematype {
74
+ }
75
+ export interface preferenceSchema extends preference$schematype {
76
+ }
77
+ export interface preferenceSetSchema extends preferenceSet$schematype {
78
+ }
79
+ export declare const collectionScopeSchema: collectionScopeSchema;
80
+ export declare const entityScopeSchema: entityScopeSchema;
81
+ export declare const globalScopeSchema: globalScopeSchema;
82
+ export declare const mainSchema: mainSchema;
83
+ export declare const preferenceSchema: preferenceSchema;
84
+ export declare const preferenceSetSchema: preferenceSetSchema;
85
+ export interface CollectionScope extends v.InferInput<typeof collectionScopeSchema> {
86
+ }
87
+ export interface EntityScope extends v.InferInput<typeof entityScopeSchema> {
88
+ }
89
+ export interface GlobalScope extends v.InferInput<typeof globalScopeSchema> {
90
+ }
91
+ export interface Main extends v.InferInput<typeof mainSchema> {
92
+ }
93
+ export interface Preference extends v.InferInput<typeof preferenceSchema> {
94
+ }
95
+ export interface PreferenceSet extends v.InferInput<typeof preferenceSetSchema> {
96
+ }
97
+ declare module '@atcute/lexicons/ambient' {
98
+ interface Records {
99
+ 'community.lexicon.preference.ai': mainSchema;
100
+ }
101
+ }
102
+ export {};
103
+ //# sourceMappingURL=ai.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ai.d.ts","sourceRoot":"","sources":["../../../../../../lib/lexicons/types/community/lexicon/preference/ai.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,CAAC,MAAM,8BAA8B,CAAC;AAElD,QAAA,MAAM,sBAAsB;;IAE3B;;OAEG;;EAEF,CAAC;AACH,QAAA,MAAM,kBAAkB;;IAEvB;;OAEG;;EAEF,CAAC;AACH,QAAA,MAAM,kBAAkB;;EAEtB,CAAC;AACH,QAAA,MAAM,WAAW;;;IAOf;;OAEG;;IAIH;;OAEG;;2BAGJ,CAAC;AACF,QAAA,MAAM,iBAAiB;;IAEtB;;OAEG;;IAEH;;OAEG;;EAEF,CAAC;AACH,QAAA,MAAM,oBAAoB;;IAEzB;;OAEG;;IAIH;;OAEG;;IAIH;;OAEG;;IAIH;;OAEG;;EAIF,CAAC;AAEH,KAAK,0BAA0B,GAAG,OAAO,sBAAsB,CAAC;AAChE,KAAK,sBAAsB,GAAG,OAAO,kBAAkB,CAAC;AACxD,KAAK,sBAAsB,GAAG,OAAO,kBAAkB,CAAC;AACxD,KAAK,eAAe,GAAG,OAAO,WAAW,CAAC;AAC1C,KAAK,qBAAqB,GAAG,OAAO,iBAAiB,CAAC;AACtD,KAAK,wBAAwB,GAAG,OAAO,oBAAoB,CAAC;AAE5D,MAAM,WAAW,qBAAsB,SAAQ,0BAA0B;CAAG;AAC5E,MAAM,WAAW,iBAAkB,SAAQ,sBAAsB;CAAG;AACpE,MAAM,WAAW,iBAAkB,SAAQ,sBAAsB;CAAG;AACpE,MAAM,WAAW,UAAW,SAAQ,eAAe;CAAG;AACtD,MAAM,WAAW,gBAAiB,SAAQ,qBAAqB;CAAG;AAClE,MAAM,WAAW,mBAAoB,SAAQ,wBAAwB;CAAG;AAExE,eAAO,MAAM,qBAAqB,EAA6B,qBAAqB,CAAC;AACrF,eAAO,MAAM,iBAAiB,EAAyB,iBAAiB,CAAC;AACzE,eAAO,MAAM,iBAAiB,EAAyB,iBAAiB,CAAC;AACzE,eAAO,MAAM,UAAU,EAAkB,UAAU,CAAC;AACpD,eAAO,MAAM,gBAAgB,EAAwB,gBAAgB,CAAC;AACtE,eAAO,MAAM,mBAAmB,EAA2B,mBAAmB,CAAC;AAE/E,MAAM,WAAW,eAAgB,SAAQ,CAAC,CAAC,UAAU,CAAC,OAAO,qBAAqB,CAAC;CAAG;AACtF,MAAM,WAAW,WAAY,SAAQ,CAAC,CAAC,UAAU,CAAC,OAAO,iBAAiB,CAAC;CAAG;AAC9E,MAAM,WAAW,WAAY,SAAQ,CAAC,CAAC,UAAU,CAAC,OAAO,iBAAiB,CAAC;CAAG;AAC9E,MAAM,WAAW,IAAK,SAAQ,CAAC,CAAC,UAAU,CAAC,OAAO,UAAU,CAAC;CAAG;AAChE,MAAM,WAAW,UAAW,SAAQ,CAAC,CAAC,UAAU,CAAC,OAAO,gBAAgB,CAAC;CAAG;AAC5E,MAAM,WAAW,aAAc,SAAQ,CAAC,CAAC,UAAU,CAAC,OAAO,mBAAmB,CAAC;CAAG;AAElF,OAAO,QAAQ,0BAA0B,CAAC,CAAC;IAC1C,UAAU,OAAO;QAChB,iCAAiC,EAAE,UAAU,CAAC;KAC9C;CACD"}
@@ -0,0 +1,81 @@
1
+ import * as v from '@atcute/lexicons/validations';
2
+ const _collectionScopeSchema = /*#__PURE__*/ v.object({
3
+ $type: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.literal('community.lexicon.preference.ai#collectionScope')),
4
+ /**
5
+ * NSID of the collection this override applies to.
6
+ */
7
+ collection: /*#__PURE__*/ v.nsidString(),
8
+ });
9
+ const _entityScopeSchema = /*#__PURE__*/ v.object({
10
+ $type: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.literal('community.lexicon.preference.ai#entityScope')),
11
+ /**
12
+ * DID or domain of the entity this override applies to.
13
+ */
14
+ entity: /*#__PURE__*/ v.string(),
15
+ });
16
+ const _globalScopeSchema = /*#__PURE__*/ v.object({
17
+ $type: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.literal('community.lexicon.preference.ai#globalScope')),
18
+ });
19
+ const _mainSchema = /*#__PURE__*/ v.record(
20
+ /*#__PURE__*/ v.string(),
21
+ /*#__PURE__*/ v.object({
22
+ $type: /*#__PURE__*/ v.literal('community.lexicon.preference.ai'),
23
+ get preferences() {
24
+ return preferenceSetSchema;
25
+ },
26
+ /**
27
+ * What this record's preferences apply to.
28
+ */
29
+ get scope() {
30
+ return /*#__PURE__*/ v.variant([collectionScopeSchema, entityScopeSchema, globalScopeSchema]);
31
+ },
32
+ /**
33
+ * Timestamp of the most recent change to this record.
34
+ */
35
+ updatedAt: /*#__PURE__*/ v.datetimeString(),
36
+ }));
37
+ const _preferenceSchema = /*#__PURE__*/ v.object({
38
+ $type: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.literal('community.lexicon.preference.ai#preference')),
39
+ /**
40
+ * Whether this usage is permitted (true) or denied (false).
41
+ */
42
+ allow: /*#__PURE__*/ v.boolean(),
43
+ /**
44
+ * When this specific preference was last changed.
45
+ */
46
+ updatedAt: /*#__PURE__*/ v.datetimeString(),
47
+ });
48
+ const _preferenceSetSchema = /*#__PURE__*/ v.object({
49
+ $type: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.literal('community.lexicon.preference.ai#preferenceSet')),
50
+ /**
51
+ * Use for vector embeddings or semantic indexing.
52
+ */
53
+ get embedding() {
54
+ return /*#__PURE__*/ v.optional(preferenceSchema);
55
+ },
56
+ /**
57
+ * Use at inference time for retrieval, RAG, or context injection.
58
+ */
59
+ get inference() {
60
+ return /*#__PURE__*/ v.optional(preferenceSchema);
61
+ },
62
+ /**
63
+ * Use to generate synthetic content or interactions derived from user data.
64
+ */
65
+ get syntheticContent() {
66
+ return /*#__PURE__*/ v.optional(preferenceSchema);
67
+ },
68
+ /**
69
+ * Use as input for training, fine-tuning, distillation, or RLHF of ML models.
70
+ */
71
+ get training() {
72
+ return /*#__PURE__*/ v.optional(preferenceSchema);
73
+ },
74
+ });
75
+ export const collectionScopeSchema = _collectionScopeSchema;
76
+ export const entityScopeSchema = _entityScopeSchema;
77
+ export const globalScopeSchema = _globalScopeSchema;
78
+ export const mainSchema = _mainSchema;
79
+ export const preferenceSchema = _preferenceSchema;
80
+ export const preferenceSetSchema = _preferenceSetSchema;
81
+ //# sourceMappingURL=ai.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ai.js","sourceRoot":"","sources":["../../../../../../lib/lexicons/types/community/lexicon/preference/ai.ts"],"names":[],"mappings":"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"}
package/lib/index.ts CHANGED
@@ -1 +1 @@
1
- export * from './lexicons/index.js';
1
+ export * from './lexicons/index.ts';
@@ -1,10 +1,11 @@
1
- export * as CommunityLexiconBookmarksBookmark from './types/community/lexicon/bookmarks/bookmark.js';
2
- export * as CommunityLexiconBookmarksGetActorBookmarks from './types/community/lexicon/bookmarks/getActorBookmarks.js';
3
- export * as CommunityLexiconCalendarEvent from './types/community/lexicon/calendar/event.js';
4
- export * as CommunityLexiconCalendarRsvp from './types/community/lexicon/calendar/rsvp.js';
5
- export * as CommunityLexiconInteractionLike from './types/community/lexicon/interaction/like.js';
6
- export * as CommunityLexiconLocationAddress from './types/community/lexicon/location/address.js';
7
- export * as CommunityLexiconLocationFsq from './types/community/lexicon/location/fsq.js';
8
- export * as CommunityLexiconLocationGeo from './types/community/lexicon/location/geo.js';
9
- export * as CommunityLexiconLocationHthree from './types/community/lexicon/location/hthree.js';
10
- export * as CommunityLexiconPaymentsWebMonetization from './types/community/lexicon/payments/webMonetization.js';
1
+ export * as CommunityLexiconBookmarksBookmark from './types/community/lexicon/bookmarks/bookmark.ts';
2
+ export * as CommunityLexiconBookmarksGetActorBookmarks from './types/community/lexicon/bookmarks/getActorBookmarks.ts';
3
+ export * as CommunityLexiconCalendarEvent from './types/community/lexicon/calendar/event.ts';
4
+ export * as CommunityLexiconCalendarRsvp from './types/community/lexicon/calendar/rsvp.ts';
5
+ export * as CommunityLexiconInteractionLike from './types/community/lexicon/interaction/like.ts';
6
+ export * as CommunityLexiconLocationAddress from './types/community/lexicon/location/address.ts';
7
+ export * as CommunityLexiconLocationFsq from './types/community/lexicon/location/fsq.ts';
8
+ export * as CommunityLexiconLocationGeo from './types/community/lexicon/location/geo.ts';
9
+ export * as CommunityLexiconLocationHthree from './types/community/lexicon/location/hthree.ts';
10
+ export * as CommunityLexiconPaymentsWebMonetization from './types/community/lexicon/payments/webMonetization.ts';
11
+ export * as CommunityLexiconPreferenceAi from './types/community/lexicon/preference/ai.ts';
@@ -1,6 +1,6 @@
1
1
  import type {} from '@atcute/lexicons';
2
- import * as v from '@atcute/lexicons/validations';
3
2
  import type {} from '@atcute/lexicons/ambient';
3
+ import * as v from '@atcute/lexicons/validations';
4
4
 
5
5
  const _mainSchema = /*#__PURE__*/ v.record(
6
6
  /*#__PURE__*/ v.tidString(),
@@ -1,7 +1,8 @@
1
1
  import type {} from '@atcute/lexicons';
2
- import * as v from '@atcute/lexicons/validations';
3
2
  import type {} from '@atcute/lexicons/ambient';
4
- import * as CommunityLexiconBookmarksBookmark from './bookmark.js';
3
+ import * as v from '@atcute/lexicons/validations';
4
+
5
+ import * as CommunityLexiconBookmarksBookmark from './bookmark.ts';
5
6
 
6
7
  const _mainSchema = /*#__PURE__*/ v.query('community.lexicon.bookmarks.getActorBookmarks', {
7
8
  params: /*#__PURE__*/ v.object({
@@ -1,10 +1,11 @@
1
1
  import type {} from '@atcute/lexicons';
2
- import * as v from '@atcute/lexicons/validations';
3
2
  import type {} from '@atcute/lexicons/ambient';
4
- import * as CommunityLexiconLocationAddress from '../location/address.js';
5
- import * as CommunityLexiconLocationFsq from '../location/fsq.js';
6
- import * as CommunityLexiconLocationGeo from '../location/geo.js';
7
- import * as CommunityLexiconLocationHthree from '../location/hthree.js';
3
+ import * as v from '@atcute/lexicons/validations';
4
+
5
+ import * as CommunityLexiconLocationAddress from '../location/address.ts';
6
+ import * as CommunityLexiconLocationFsq from '../location/fsq.ts';
7
+ import * as CommunityLexiconLocationGeo from '../location/geo.ts';
8
+ import * as CommunityLexiconLocationHthree from '../location/hthree.ts';
8
9
 
9
10
  const _cancelledSchema = /*#__PURE__*/ v.literal('community.lexicon.calendar.event#cancelled');
10
11
  const _hybridSchema = /*#__PURE__*/ v.literal('community.lexicon.calendar.event#hybrid');
@@ -1,7 +1,7 @@
1
+ import * as ComAtprotoRepoStrongRef from '@atcute/atproto/types/repo/strongRef';
1
2
  import type {} from '@atcute/lexicons';
2
- import * as v from '@atcute/lexicons/validations';
3
3
  import type {} from '@atcute/lexicons/ambient';
4
- import * as ComAtprotoRepoStrongRef from '@atcute/atproto/types/repo/strongRef';
4
+ import * as v from '@atcute/lexicons/validations';
5
5
 
6
6
  const _goingSchema = /*#__PURE__*/ v.literal('community.lexicon.calendar.rsvp#going');
7
7
  const _interestedSchema = /*#__PURE__*/ v.literal('community.lexicon.calendar.rsvp#interested');
@@ -1,7 +1,7 @@
1
+ import * as ComAtprotoRepoStrongRef from '@atcute/atproto/types/repo/strongRef';
1
2
  import type {} from '@atcute/lexicons';
2
- import * as v from '@atcute/lexicons/validations';
3
3
  import type {} from '@atcute/lexicons/ambient';
4
- import * as ComAtprotoRepoStrongRef from '@atcute/atproto/types/repo/strongRef';
4
+ import * as v from '@atcute/lexicons/validations';
5
5
 
6
6
  const _mainSchema = /*#__PURE__*/ v.record(
7
7
  /*#__PURE__*/ v.tidString(),
@@ -1,6 +1,6 @@
1
1
  import type {} from '@atcute/lexicons';
2
- import * as v from '@atcute/lexicons/validations';
3
2
  import type {} from '@atcute/lexicons/ambient';
3
+ import * as v from '@atcute/lexicons/validations';
4
4
 
5
5
  const _mainSchema = /*#__PURE__*/ v.record(
6
6
  /*#__PURE__*/ v.string(),
@@ -0,0 +1,112 @@
1
+ import type {} from '@atcute/lexicons';
2
+ import type {} from '@atcute/lexicons/ambient';
3
+ import * as v from '@atcute/lexicons/validations';
4
+
5
+ const _collectionScopeSchema = /*#__PURE__*/ v.object({
6
+ $type: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.literal('community.lexicon.preference.ai#collectionScope')),
7
+ /**
8
+ * NSID of the collection this override applies to.
9
+ */
10
+ collection: /*#__PURE__*/ v.nsidString(),
11
+ });
12
+ const _entityScopeSchema = /*#__PURE__*/ v.object({
13
+ $type: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.literal('community.lexicon.preference.ai#entityScope')),
14
+ /**
15
+ * DID or domain of the entity this override applies to.
16
+ */
17
+ entity: /*#__PURE__*/ v.string(),
18
+ });
19
+ const _globalScopeSchema = /*#__PURE__*/ v.object({
20
+ $type: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.literal('community.lexicon.preference.ai#globalScope')),
21
+ });
22
+ const _mainSchema = /*#__PURE__*/ v.record(
23
+ /*#__PURE__*/ v.string(),
24
+ /*#__PURE__*/ v.object({
25
+ $type: /*#__PURE__*/ v.literal('community.lexicon.preference.ai'),
26
+ get preferences() {
27
+ return preferenceSetSchema;
28
+ },
29
+ /**
30
+ * What this record's preferences apply to.
31
+ */
32
+ get scope() {
33
+ return /*#__PURE__*/ v.variant([collectionScopeSchema, entityScopeSchema, globalScopeSchema]);
34
+ },
35
+ /**
36
+ * Timestamp of the most recent change to this record.
37
+ */
38
+ updatedAt: /*#__PURE__*/ v.datetimeString(),
39
+ }),
40
+ );
41
+ const _preferenceSchema = /*#__PURE__*/ v.object({
42
+ $type: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.literal('community.lexicon.preference.ai#preference')),
43
+ /**
44
+ * Whether this usage is permitted (true) or denied (false).
45
+ */
46
+ allow: /*#__PURE__*/ v.boolean(),
47
+ /**
48
+ * When this specific preference was last changed.
49
+ */
50
+ updatedAt: /*#__PURE__*/ v.datetimeString(),
51
+ });
52
+ const _preferenceSetSchema = /*#__PURE__*/ v.object({
53
+ $type: /*#__PURE__*/ v.optional(/*#__PURE__*/ v.literal('community.lexicon.preference.ai#preferenceSet')),
54
+ /**
55
+ * Use for vector embeddings or semantic indexing.
56
+ */
57
+ get embedding() {
58
+ return /*#__PURE__*/ v.optional(preferenceSchema);
59
+ },
60
+ /**
61
+ * Use at inference time for retrieval, RAG, or context injection.
62
+ */
63
+ get inference() {
64
+ return /*#__PURE__*/ v.optional(preferenceSchema);
65
+ },
66
+ /**
67
+ * Use to generate synthetic content or interactions derived from user data.
68
+ */
69
+ get syntheticContent() {
70
+ return /*#__PURE__*/ v.optional(preferenceSchema);
71
+ },
72
+ /**
73
+ * Use as input for training, fine-tuning, distillation, or RLHF of ML models.
74
+ */
75
+ get training() {
76
+ return /*#__PURE__*/ v.optional(preferenceSchema);
77
+ },
78
+ });
79
+
80
+ type collectionScope$schematype = typeof _collectionScopeSchema;
81
+ type entityScope$schematype = typeof _entityScopeSchema;
82
+ type globalScope$schematype = typeof _globalScopeSchema;
83
+ type main$schematype = typeof _mainSchema;
84
+ type preference$schematype = typeof _preferenceSchema;
85
+ type preferenceSet$schematype = typeof _preferenceSetSchema;
86
+
87
+ export interface collectionScopeSchema extends collectionScope$schematype {}
88
+ export interface entityScopeSchema extends entityScope$schematype {}
89
+ export interface globalScopeSchema extends globalScope$schematype {}
90
+ export interface mainSchema extends main$schematype {}
91
+ export interface preferenceSchema extends preference$schematype {}
92
+ export interface preferenceSetSchema extends preferenceSet$schematype {}
93
+
94
+ export const collectionScopeSchema = _collectionScopeSchema as collectionScopeSchema;
95
+ export const entityScopeSchema = _entityScopeSchema as entityScopeSchema;
96
+ export const globalScopeSchema = _globalScopeSchema as globalScopeSchema;
97
+ export const mainSchema = _mainSchema as mainSchema;
98
+ export const preferenceSchema = _preferenceSchema as preferenceSchema;
99
+ export const preferenceSetSchema = _preferenceSetSchema as preferenceSetSchema;
100
+
101
+ export interface CollectionScope extends v.InferInput<typeof collectionScopeSchema> {}
102
+ export interface EntityScope extends v.InferInput<typeof entityScopeSchema> {}
103
+ export interface GlobalScope extends v.InferInput<typeof globalScopeSchema> {}
104
+ export interface Main extends v.InferInput<typeof mainSchema> {}
105
+ export interface Preference extends v.InferInput<typeof preferenceSchema> {}
106
+ export interface PreferenceSet extends v.InferInput<typeof preferenceSetSchema> {}
107
+
108
+ declare module '@atcute/lexicons/ambient' {
109
+ interface Records {
110
+ 'community.lexicon.preference.ai': mainSchema;
111
+ }
112
+ }
package/package.json CHANGED
@@ -1,7 +1,6 @@
1
1
  {
2
- "type": "module",
3
2
  "name": "@atcute/lexicon-community",
4
- "version": "1.1.4",
3
+ "version": "1.1.6",
5
4
  "description": "Lexicon Community (community.lexicon.*) schema definitions",
6
5
  "license": "0BSD",
7
6
  "repository": {
@@ -12,19 +11,27 @@
12
11
  "dist/",
13
12
  "lib/",
14
13
  "!lib/**/*.bench.ts",
15
- "!lib/**/*.test.ts"
14
+ "!lib/**/*.test.ts",
15
+ "!dist/**/*.{test,bench}.*"
16
16
  ],
17
+ "type": "module",
17
18
  "exports": {
18
19
  ".": "./dist/index.js",
19
20
  "./types/": "./dist/lexicons/types/community/lexicon/*.js"
20
21
  },
22
+ "publishConfig": {
23
+ "access": "public"
24
+ },
21
25
  "dependencies": {
22
- "@atcute/atproto": "^3.1.8",
23
- "@atcute/lexicons": "^1.2.2"
26
+ "@atcute/atproto": "^3.1.12",
27
+ "@atcute/lexicons": "^1.3.1"
24
28
  },
25
29
  "devDependencies": {
26
30
  "@atcute/lexicon-community": "file:",
27
- "@atcute/lex-cli": "^2.3.0"
31
+ "@atcute/lex-cli": "^2.8.1"
32
+ },
33
+ "peerDependencies": {
34
+ "@atcute/lexicons": "^1.0.0"
28
35
  },
29
36
  "atcute:lexicons": {
30
37
  "mappings": {
@@ -35,8 +42,9 @@
35
42
  }
36
43
  },
37
44
  "scripts": {
38
- "build": "tsc",
39
- "generate": "rm -r ./lib/lexicons/; lex-cli generate -c ./lex.config.js",
45
+ "build": "tsgo",
46
+ "pull": "lex-cli pull",
47
+ "generate": "lex-cli generate",
40
48
  "prepublish": "rm -rf dist; pnpm run build"
41
49
  }
42
50
  }