convex-zen 1.15.0 → 1.16.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "convex-zen",
3
- "version": "1.15.0",
3
+ "version": "1.16.0",
4
4
  "description": "Production-grade auth component for Convex",
5
5
  "repository": {
6
6
  "type": "git",
@@ -12,6 +12,16 @@
12
12
  },
13
13
  "main": "./dist/client/index.js",
14
14
  "types": "./dist/client/index.d.ts",
15
+ "typesVersions": {
16
+ "*": {
17
+ "plugins/system-admin": [
18
+ "plugins/system-admin/index.d.ts"
19
+ ],
20
+ "plugins/organization": [
21
+ "plugins/organization/index.d.ts"
22
+ ]
23
+ }
24
+ },
15
25
  "exports": {
16
26
  ".": {
17
27
  "types": "./dist/client/index.d.ts",
@@ -82,12 +92,12 @@
82
92
  "import": "./dist/component/convex.config.js"
83
93
  },
84
94
  "./plugins/system-admin": {
85
- "types": "./dist/plugins/system-admin/index.d.ts",
86
- "import": "./dist/plugins/system-admin/index.js"
95
+ "types": "./plugins/system-admin/index.d.ts",
96
+ "import": "./plugins/system-admin/index.js"
87
97
  },
88
98
  "./plugins/organization": {
89
- "types": "./dist/plugins/organization/index.d.ts",
90
- "import": "./dist/plugins/organization/index.js"
99
+ "types": "./plugins/organization/index.d.ts",
100
+ "import": "./plugins/organization/index.js"
91
101
  }
92
102
  },
93
103
  "scripts": {
@@ -124,6 +134,7 @@
124
134
  "files": [
125
135
  "dist",
126
136
  "src",
137
+ "plugins",
127
138
  "README.md",
128
139
  "LICENSE"
129
140
  ],
@@ -0,0 +1 @@
1
+ export * from "../../dist/plugins/organization/index.d.ts";
@@ -0,0 +1 @@
1
+ export * from "../../dist/plugins/organization/index.js";
@@ -0,0 +1 @@
1
+ export * from "../../dist/plugins/system-admin/index.d.ts";
@@ -0,0 +1 @@
1
+ export * from "../../dist/plugins/system-admin/index.js";