@atiproto/lexicons 0.1.2 → 0.2.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.
@@ -0,0 +1,2 @@
1
+ export * from './authEnhanced.defs.js';
2
+ export * as $defs from './authEnhanced.defs.js';
@@ -0,0 +1,5 @@
1
+ import { l } from '@atproto/lex';
2
+ declare const $nsid = "com.atiproto.authEnhanced";
3
+ export { $nsid };
4
+ declare const main: l.PermissionSet<"com.atiproto.authEnhanced", readonly [l.Permission<"repo", Record<string, string | number | boolean | number[] | string[] | boolean[] | undefined>>, l.Permission<"rpc", Record<string, string | number | boolean | number[] | string[] | boolean[] | undefined>>]>;
5
+ export { main };
@@ -0,0 +1,2 @@
1
+ export * from './authGeneral.defs.js';
2
+ export * as $defs from './authGeneral.defs.js';
@@ -0,0 +1,5 @@
1
+ import { l } from '@atproto/lex';
2
+ declare const $nsid = "com.atiproto.authGeneral";
3
+ export { $nsid };
4
+ declare const main: l.PermissionSet<"com.atiproto.authGeneral", readonly [l.Permission<"repo", Record<string, string | number | boolean | number[] | string[] | boolean[] | undefined>>, l.Permission<"rpc", Record<string, string | number | boolean | number[] | string[] | boolean[] | undefined>>]>;
5
+ export { main };
@@ -1,4 +1,6 @@
1
1
  export * as account from './atiproto/account.js';
2
+ export * as authEnhanced from './atiproto/authEnhanced.js';
3
+ export * as authGeneral from './atiproto/authGeneral.js';
2
4
  export * as cart from './atiproto/cart.js';
3
5
  export * as feed from './atiproto/feed.js';
4
6
  export * as profile from './atiproto/profile.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atiproto/lexicons",
3
- "version": "0.1.2",
3
+ "version": "0.2.0",
4
4
  "description": "ATProto lexicon types and utilities",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -22,6 +22,13 @@
22
22
  "prepack": "npm run build",
23
23
  "test": "echo \"No tests yet\" && exit 0"
24
24
  },
25
+ "repository": {
26
+ "type": "git",
27
+ "url": "https://github.com/Yakrware/atiproto.git",
28
+ "directory": "packages/lexicons"
29
+ },
30
+ "homepage": "https://atiproto.com/docs/lexicon",
31
+ "bugs": "https://github.com/Yakrware/atiproto/issues",
25
32
  "license": "MIT",
26
33
  "dependencies": {
27
34
  "@atproto/lex": "^0.0.23"