@atcute/lexicon-community 1.0.1 → 1.1.0

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.
@@ -15,6 +15,10 @@ type main$schematype = typeof _mainSchema;
15
15
  export interface mainSchema extends main$schematype {
16
16
  }
17
17
  export declare const mainSchema: mainSchema;
18
+ export interface $params extends v.InferInput<mainSchema['params']> {
19
+ }
20
+ export interface $output extends v.InferXRPCBodyInput<mainSchema['output']> {
21
+ }
18
22
  declare module '@atcute/lexicons/ambient' {
19
23
  interface XRPCQueries {
20
24
  'community.lexicon.bookmarks.getActorBookmarks': mainSchema;
@@ -29,6 +29,9 @@ export interface mainSchema extends main$schematype {}
29
29
 
30
30
  export const mainSchema = _mainSchema as mainSchema;
31
31
 
32
+ export interface $params extends v.InferInput<mainSchema['params']> {}
33
+ export interface $output extends v.InferXRPCBodyInput<mainSchema['output']> {}
34
+
32
35
  declare module '@atcute/lexicons/ambient' {
33
36
  interface XRPCQueries {
34
37
  'community.lexicon.bookmarks.getActorBookmarks': mainSchema;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@atcute/lexicon-community",
4
- "version": "1.0.1",
4
+ "version": "1.1.0",
5
5
  "description": "Lexicon Community (community.lexicon.*) schema definitions",
6
6
  "license": "MIT",
7
7
  "repository": {
@@ -19,12 +19,12 @@
19
19
  "./types/": "./dist/lexicons/types/community/lexicon/*.js"
20
20
  },
21
21
  "dependencies": {
22
- "@atcute/lexicons": "^1.0.2",
23
- "@atcute/atproto": "^3.0.2"
22
+ "@atcute/atproto": "^3.1.0",
23
+ "@atcute/lexicons": "^1.0.4"
24
24
  },
25
25
  "devDependencies": {
26
26
  "@atcute/lexicon-community": "file:",
27
- "@atcute/lex-cli": "^2.0.2"
27
+ "@atcute/lex-cli": "^2.1.0"
28
28
  },
29
29
  "scripts": {
30
30
  "build": "tsc",