@atcute/lexicon-community 1.1.4 → 1.1.5
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/README.md +6 -10
- package/dist/index.d.ts +1 -1
- package/dist/lexicons/index.d.ts +10 -10
- package/dist/lexicons/types/community/lexicon/bookmarks/bookmark.d.ts.map +1 -1
- package/dist/lexicons/types/community/lexicon/bookmarks/bookmark.js.map +1 -1
- package/dist/lexicons/types/community/lexicon/bookmarks/getActorBookmarks.d.ts +1 -1
- package/dist/lexicons/types/community/lexicon/bookmarks/getActorBookmarks.d.ts.map +1 -1
- package/dist/lexicons/types/community/lexicon/bookmarks/getActorBookmarks.js.map +1 -1
- package/dist/lexicons/types/community/lexicon/calendar/event.d.ts +6 -6
- package/dist/lexicons/types/community/lexicon/calendar/event.d.ts.map +1 -1
- package/dist/lexicons/types/community/lexicon/calendar/event.js.map +1 -1
- package/dist/lexicons/types/community/lexicon/calendar/rsvp.d.ts +2 -2
- package/dist/lexicons/types/community/lexicon/calendar/rsvp.d.ts.map +1 -1
- package/dist/lexicons/types/community/lexicon/calendar/rsvp.js +1 -1
- package/dist/lexicons/types/community/lexicon/calendar/rsvp.js.map +1 -1
- package/dist/lexicons/types/community/lexicon/interaction/like.d.ts +1 -1
- package/dist/lexicons/types/community/lexicon/interaction/like.d.ts.map +1 -1
- package/dist/lexicons/types/community/lexicon/interaction/like.js +1 -1
- package/dist/lexicons/types/community/lexicon/interaction/like.js.map +1 -1
- package/dist/lexicons/types/community/lexicon/payments/webMonetization.d.ts.map +1 -1
- package/dist/lexicons/types/community/lexicon/payments/webMonetization.js.map +1 -1
- package/lib/index.ts +1 -1
- package/lib/lexicons/index.ts +10 -10
- package/lib/lexicons/types/community/lexicon/bookmarks/bookmark.ts +1 -1
- package/lib/lexicons/types/community/lexicon/bookmarks/getActorBookmarks.ts +3 -2
- package/lib/lexicons/types/community/lexicon/calendar/event.ts +6 -5
- package/lib/lexicons/types/community/lexicon/calendar/rsvp.ts +2 -2
- package/lib/lexicons/types/community/lexicon/interaction/like.ts +2 -2
- package/lib/lexicons/types/community/lexicon/payments/webMonetization.ts +1 -1
- 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
|
-
|
|
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
|
-
|
|
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.
|
|
1
|
+
export * from './lexicons/index.ts';
|
|
2
2
|
//# sourceMappingURL=index.d.ts.map
|
package/dist/lexicons/index.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
export * as CommunityLexiconBookmarksBookmark from './types/community/lexicon/bookmarks/bookmark.
|
|
2
|
-
export * as CommunityLexiconBookmarksGetActorBookmarks from './types/community/lexicon/bookmarks/getActorBookmarks.
|
|
3
|
-
export * as CommunityLexiconCalendarEvent from './types/community/lexicon/calendar/event.
|
|
4
|
-
export * as CommunityLexiconCalendarRsvp from './types/community/lexicon/calendar/rsvp.
|
|
5
|
-
export * as CommunityLexiconInteractionLike from './types/community/lexicon/interaction/like.
|
|
6
|
-
export * as CommunityLexiconLocationAddress from './types/community/lexicon/location/address.
|
|
7
|
-
export * as CommunityLexiconLocationFsq from './types/community/lexicon/location/fsq.
|
|
8
|
-
export * as CommunityLexiconLocationGeo from './types/community/lexicon/location/geo.
|
|
9
|
-
export * as CommunityLexiconLocationHthree from './types/community/lexicon/location/hthree.
|
|
10
|
-
export * as CommunityLexiconPaymentsWebMonetization from './types/community/lexicon/payments/webMonetization.
|
|
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
11
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"bookmark.d.ts","sourceRoot":"","sources":["../../../../../../lib/lexicons/types/community/lexicon/bookmarks/bookmark.ts"],"names":[],"mappings":"
|
|
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":"
|
|
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.
|
|
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":"
|
|
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":"
|
|
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.
|
|
3
|
-
import * as CommunityLexiconLocationFsq from '../location/fsq.
|
|
4
|
-
import * as CommunityLexiconLocationGeo from '../location/geo.
|
|
5
|
-
import * as CommunityLexiconLocationHthree from '../location/hthree.
|
|
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" |
|
|
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" |
|
|
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":"
|
|
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":"
|
|
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<
|
|
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":"
|
|
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":"
|
|
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":"
|
|
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":"
|
|
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":"
|
|
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":"
|
|
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"}
|
package/lib/index.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from './lexicons/index.
|
|
1
|
+
export * from './lexicons/index.ts';
|
package/lib/lexicons/index.ts
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
export * as CommunityLexiconBookmarksBookmark from './types/community/lexicon/bookmarks/bookmark.
|
|
2
|
-
export * as CommunityLexiconBookmarksGetActorBookmarks from './types/community/lexicon/bookmarks/getActorBookmarks.
|
|
3
|
-
export * as CommunityLexiconCalendarEvent from './types/community/lexicon/calendar/event.
|
|
4
|
-
export * as CommunityLexiconCalendarRsvp from './types/community/lexicon/calendar/rsvp.
|
|
5
|
-
export * as CommunityLexiconInteractionLike from './types/community/lexicon/interaction/like.
|
|
6
|
-
export * as CommunityLexiconLocationAddress from './types/community/lexicon/location/address.
|
|
7
|
-
export * as CommunityLexiconLocationFsq from './types/community/lexicon/location/fsq.
|
|
8
|
-
export * as CommunityLexiconLocationGeo from './types/community/lexicon/location/geo.
|
|
9
|
-
export * as CommunityLexiconLocationHthree from './types/community/lexicon/location/hthree.
|
|
10
|
-
export * as CommunityLexiconPaymentsWebMonetization from './types/community/lexicon/payments/webMonetization.
|
|
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';
|
|
@@ -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
|
|
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
|
|
5
|
-
|
|
6
|
-
import * as
|
|
7
|
-
import * as
|
|
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
|
|
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
|
|
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(),
|
package/package.json
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"type": "module",
|
|
3
2
|
"name": "@atcute/lexicon-community",
|
|
4
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.5",
|
|
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/
|
|
23
|
-
"@atcute/
|
|
26
|
+
"@atcute/lexicons": "^1.3.1",
|
|
27
|
+
"@atcute/atproto": "^3.1.12"
|
|
24
28
|
},
|
|
25
29
|
"devDependencies": {
|
|
26
30
|
"@atcute/lexicon-community": "file:",
|
|
27
|
-
"@atcute/lex-cli": "^2.
|
|
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": "
|
|
39
|
-
"
|
|
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
|
}
|