@olasphe/vanilla 1.0.0 → 1.1.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/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import { IncomingMessage, ServerResponse } from 'http';
2
- import { AuthService } from '@olasubomimk/core';
2
+ import { AuthService } from '@olasphe/core';
3
3
  export declare class VanillaAuthAdapter {
4
4
  private authService;
5
5
  constructor(authService: AuthService);
package/dist/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.VanillaAuthAdapter = void 0;
4
- const core_1 = require("@olasubomimk/core");
4
+ const core_1 = require("@olasphe/core");
5
5
  const cookie_1 = require("cookie");
6
6
  class VanillaAuthAdapter {
7
7
  constructor(authService) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@olasphe/vanilla",
3
- "version": "1.0.0",
3
+ "version": "1.1.0",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "author": "Auth SDK User <user@example.com>",
@@ -19,7 +19,7 @@
19
19
  "build": "tsc"
20
20
  },
21
21
  "dependencies": {
22
- "@olasphe/core": "*",
22
+ "@olasphe/core": "^1.1.0",
23
23
  "cookie": "^1.1.1"
24
24
  },
25
25
  "devDependencies": {