@quatrain/auth 1.0.0 → 1.0.1
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/lib/Auth.js +1 -1
- package/lib/index.d.ts +2 -1
- package/lib/index.js +4 -1
- package/package.json +2 -2
package/lib/Auth.js
CHANGED
package/lib/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
+
import { Auth, AuthAction, AuthParameters, AuthParametersKeys } from './Auth';
|
|
1
2
|
import { AbstractAuthAdapter } from './AbstractAuthAdapter';
|
|
2
3
|
import { AuthInterface } from './types/AuthInterface';
|
|
3
4
|
import { AuthenticationError } from './AuthenticationError';
|
|
4
|
-
export { AuthInterface, AbstractAuthAdapter, AuthenticationError };
|
|
5
|
+
export { Auth, AuthAction, AuthParameters, AuthParametersKeys, AuthInterface, AbstractAuthAdapter, AuthenticationError, };
|
package/lib/index.js
CHANGED
|
@@ -1,6 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.AuthenticationError = exports.AbstractAuthAdapter = void 0;
|
|
3
|
+
exports.AuthenticationError = exports.AbstractAuthAdapter = exports.AuthAction = exports.Auth = void 0;
|
|
4
|
+
const Auth_1 = require("./Auth");
|
|
5
|
+
Object.defineProperty(exports, "Auth", { enumerable: true, get: function () { return Auth_1.Auth; } });
|
|
6
|
+
Object.defineProperty(exports, "AuthAction", { enumerable: true, get: function () { return Auth_1.AuthAction; } });
|
|
4
7
|
const AbstractAuthAdapter_1 = require("./AbstractAuthAdapter");
|
|
5
8
|
Object.defineProperty(exports, "AbstractAuthAdapter", { enumerable: true, get: function () { return AbstractAuthAdapter_1.AbstractAuthAdapter; } });
|
|
6
9
|
const AuthenticationError_1 = require("./AuthenticationError");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quatrain/auth",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "Auth adapters commons",
|
|
6
6
|
"main": "lib/index.js",
|
|
@@ -34,4 +34,4 @@
|
|
|
34
34
|
"prepush": "tsc",
|
|
35
35
|
"push": "yarn publish --access public"
|
|
36
36
|
}
|
|
37
|
-
}
|
|
37
|
+
}
|