Skip to content
This repository was archived by the owner on Dec 27, 2024. It is now read-only.

Commit 01a22ad

Browse files
committed
1 parent b0db73a commit 01a22ad

File tree

4 files changed

+24
-18
lines changed

4 files changed

+24
-18
lines changed

package-lock.json

Lines changed: 19 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@sakuraapi/auth-audience",
3-
"version": "0.3.1",
3+
"version": "0.3.2",
44
"description": "Middleware to support JWT audience role for SakuraApi servers",
55
"main": "lib/index.js",
66
"types": "lib/index.d.js",
@@ -46,7 +46,7 @@
4646
},
4747
"homepage": "https://github.com/sakuraapi/auth-audience#readme",
4848
"devDependencies": {
49-
"@sakuraapi/api": "^0.8.1",
49+
"@sakuraapi/core": "^0.10.0",
5050
"@types/colors": "^1.1.3",
5151
"@types/express": "^4.11.0",
5252
"@types/jasmine": "^2.8.3",
@@ -71,6 +71,6 @@
7171
"uuid": "^3.0.1"
7272
},
7373
"peerDependencies": {
74-
"@sakuraapi/api": "~0.8.1"
74+
"@sakuraapi/core": "~0.10.0"
7575
}
7676
}

src/audience-handler.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// tslint:disable:no-duplicate-imports
2-
import {IAuthenticator} from '@sakuraapi/api';
2+
import {IAuthenticator} from '@sakuraapi/core';
33
import * as express from 'express';
44
import {
55
NextFunction,

src/audience-handler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import {
66
IAuthenticatorConstructor,
77
SakuraApi,
88
SakuraApiPluginResult
9-
} from '@sakuraapi/api';
9+
} from '@sakuraapi/core';
1010
import {
1111
Request,
1212
Response

0 commit comments

Comments
 (0)