create-authhero 0.22.0 → 0.23.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/dist/create-authhero.js +2 -4
- package/package.json +1 -1
package/dist/create-authhero.js
CHANGED
|
@@ -131,10 +131,9 @@ main().catch(console.error);
|
|
|
131
131
|
function j(t) {
|
|
132
132
|
return t ? `import { Context } from "hono";
|
|
133
133
|
import { swaggerUI } from "@hono/swagger-ui";
|
|
134
|
-
import { AuthHeroConfig } from "authhero";
|
|
134
|
+
import { AuthHeroConfig, DataAdapters } from "authhero";
|
|
135
135
|
import { serveStatic } from "@hono/node-server/serve-static";
|
|
136
136
|
import { initMultiTenant } from "@authhero/multi-tenancy";
|
|
137
|
-
import { DataAdapters } from "@authhero/adapter-interfaces";
|
|
138
137
|
|
|
139
138
|
// Control plane tenant ID - the tenant that manages all other tenants
|
|
140
139
|
const CONTROL_PLANE_TENANT_ID = "control_plane";
|
|
@@ -305,9 +304,8 @@ export default {
|
|
|
305
304
|
function R(t) {
|
|
306
305
|
return t ? `import { Context } from "hono";
|
|
307
306
|
import { swaggerUI } from "@hono/swagger-ui";
|
|
308
|
-
import { AuthHeroConfig } from "authhero";
|
|
307
|
+
import { AuthHeroConfig, DataAdapters } from "authhero";
|
|
309
308
|
import { initMultiTenant } from "@authhero/multi-tenancy";
|
|
310
|
-
import { DataAdapters } from "@authhero/adapter-interfaces";
|
|
311
309
|
|
|
312
310
|
// Control plane tenant ID - the tenant that manages all other tenants
|
|
313
311
|
const CONTROL_PLANE_TENANT_ID = "control_plane";
|