Skip to content

Commit

Permalink
fix incorrect imports
Browse files Browse the repository at this point in the history
  • Loading branch information
markusahlstrand committed Dec 11, 2024
1 parent dafa9b4 commit 1186179
Show file tree
Hide file tree
Showing 13 changed files with 56 additions and 13 deletions.
12 changes: 12 additions & 0 deletions apps/demo/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @authhero/demo

## 0.5.0

### Minor Changes

- fix incorrect imports

### Patch Changes

- Updated dependencies
- [email protected]
- @authhero/kysely-adapter@0.24.4

## 0.4.2

### Patch Changes
Expand Down
12 changes: 6 additions & 6 deletions apps/demo/package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"name": "@authhero/demo",
"private": true,
"version": "0.4.2",
"version": "0.5.0",
"scripts": {
"dev": "bun --watch src/bun.ts"
},
"dependencies": {
"@authhero/kysely-adapter": "^0.24.2",
"@hono/swagger-ui": "^0.4.1",
"@hono/zod-openapi": "^0.18.0",
"@authhero/kysely-adapter": "^0.24.4",
"@hono/swagger-ui": "^0.5.0",
"@hono/zod-openapi": "^0.18.3",
"@peculiar/x509": "^1.12.3",
"authhero": "^0.21.0",
"hono": "^4.6.11",
"authhero": "^0.22.0",
"hono": "^4.6.13",
"hono-openapi-middlewares": "^1.0.11",
"kysely-bun-sqlite": "^0.3.2",
"oslo": "^1.2.1"
Expand Down
6 changes: 6 additions & 0 deletions packages/adapter-interfaces/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @authhero/adapter-interfaces

## 0.30.0

### Minor Changes

- fix incorrect imports

## 0.29.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/adapter-interfaces/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"type": "git",
"url": "https://github.com/markusahlstrand/authhero"
},
"version": "0.29.1",
"version": "0.30.0",
"files": [
"dist"
],
Expand Down
2 changes: 1 addition & 1 deletion packages/adapter-interfaces/src/adapters/Codes.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ListParams } from "src/types/ListParams";
import { ListParams } from "../types/ListParams";
import { Code, CodeInsert, CodeType, Totals } from "../types";

export interface ListCodesResponse extends Totals {
Expand Down
2 changes: 1 addition & 1 deletion packages/adapter-interfaces/src/adapters/Passwords.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Password, PasswordInsert } from "src/types";
import { Password, PasswordInsert } from "../types";

export interface PasswordsAdapter {
create: (tenant_id: string, params: PasswordInsert) => Promise<Password>;
Expand Down
11 changes: 11 additions & 0 deletions packages/authhero/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# authhero

## 0.22.0

### Minor Changes

- fix incorrect imports

### Patch Changes

- Updated dependencies
- @authhero/adapter-interfaces@0.30.0

## 0.21.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/authhero/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "authhero",
"version": "0.21.0",
"version": "0.22.0",
"files": [
"dist"
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { Bindings, Variables } from "../types";
import { computeCodeChallenge } from "../utils/crypto";
import { SILENT_AUTH_MAX_AGE } from "../constants";
import { safeCompare } from "../utils/safe-compare";
import { serializeAuthCookie } from "src/utils/cookies";
import { serializeAuthCookie } from "../utils/cookies";

export const authorizationCodeGrantParamsSchema = z
.object({
Expand Down
7 changes: 7 additions & 0 deletions packages/drizzle/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @authhero/drizzle

## 0.1.66

### Patch Changes

- Updated dependencies
- @authhero/adapter-interfaces@0.30.0

## 0.1.65

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/drizzle/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"type": "git",
"url": "https://github.com/markusahlstrand/authhero"
},
"version": "0.1.65",
"version": "0.1.66",
"files": [
"dist"
],
Expand Down
7 changes: 7 additions & 0 deletions packages/kysely/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @authhero/kysely-adapter

## 0.24.4

### Patch Changes

- Updated dependencies
- @authhero/adapter-interfaces@0.30.0

## 0.24.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/kysely/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"type": "git",
"url": "https://github.com/markusahlstrand/authhero"
},
"version": "0.24.3",
"version": "0.24.4",
"files": [
"dist"
],
Expand Down

0 comments on commit 1186179

Please sign in to comment.