nodecommons-esm-security 0.0.10 → 0.0.11
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.mts +4 -4
- package/dist/index.mjs +4 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
package/dist/index.d.mts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { commonsHashMd5, commonsHashSha1, commonsHashSha256, commonsHashRandomMd5, commonsHashRandomSha1, commonsHashRandomSha256 } from './helpers/commons-hash.mjs';
|
|
2
2
|
import { CommonsSimpleSinglePwSessionService } from './services/commons-simple-single-pw-session.service.mjs';
|
|
3
|
-
import { CommonsUserPwHashSessionService } from './services/commons-user-pw-hash-session.service.mjs';
|
|
4
3
|
import { CommonsSessionService } from './services/commons-session.service.mjs';
|
|
5
|
-
import {
|
|
4
|
+
import { CommonsUserPwHashSessionService } from './services/commons-user-pw-hash-session.service.mjs';
|
|
5
|
+
import { CommonsUserSessionService } from './services/commons-user-session.service.mjs';
|
|
6
6
|
import { ICommonsUserPwHash, isICommonsUserPwHash } from './interfaces/icommons-user-pw-hash.mjs';
|
|
7
|
-
export {
|
|
7
|
+
export { commonsHashMd5, commonsHashSha1, commonsHashSha256, commonsHashRandomMd5, commonsHashRandomSha1, commonsHashRandomSha256, CommonsSimpleSinglePwSessionService, CommonsSessionService, CommonsUserPwHashSessionService, CommonsUserSessionService, ICommonsUserPwHash, isICommonsUserPwHash };
|
package/dist/index.mjs
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { commonsHashMd5, commonsHashSha1, commonsHashSha256, commonsHashRandomMd5, commonsHashRandomSha1, commonsHashRandomSha256 } from './helpers/commons-hash.mjs';
|
|
2
2
|
import { CommonsSimpleSinglePwSessionService } from './services/commons-simple-single-pw-session.service.mjs';
|
|
3
|
-
import { CommonsUserPwHashSessionService } from './services/commons-user-pw-hash-session.service.mjs';
|
|
4
3
|
import { CommonsSessionService } from './services/commons-session.service.mjs';
|
|
5
|
-
import {
|
|
4
|
+
import { CommonsUserPwHashSessionService } from './services/commons-user-pw-hash-session.service.mjs';
|
|
5
|
+
import { CommonsUserSessionService } from './services/commons-user-session.service.mjs';
|
|
6
6
|
import { isICommonsUserPwHash } from './interfaces/icommons-user-pw-hash.mjs';
|
|
7
|
-
export {
|
|
7
|
+
export { commonsHashMd5, commonsHashSha1, commonsHashSha256, commonsHashRandomMd5, commonsHashRandomSha1, commonsHashRandomSha256, CommonsSimpleSinglePwSessionService, CommonsSessionService, CommonsUserPwHashSessionService, CommonsUserSessionService, isICommonsUserPwHash };
|
|
8
8
|
//# sourceMappingURL=index.mjs.map
|
package/dist/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.mjs","sourceRoot":"","sources":["../src/index.mts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"index.mjs","sourceRoot":"","sources":["../src/index.mts"],"names":[],"mappings":"AAAA,OAAO,EACL,cAAc,EACd,eAAe,EACf,iBAAiB,EACjB,oBAAoB,EACpB,qBAAqB,EACrB,uBAAuB,EACxB,MAAM,4BAA4B,CAAC;AACpC,OAAO,EAAE,mCAAmC,EAAE,MAAM,yDAAyD,CAAC;AAC9G,OAAO,EAAE,qBAAqB,EAAE,MAAM,wCAAwC,CAAC;AAC/E,OAAO,EAAE,+BAA+B,EAAE,MAAM,qDAAqD,CAAC;AACtG,OAAO,EAAE,yBAAyB,EAAE,MAAM,6CAA6C,CAAC;AACxF,OAAO,EAAsB,oBAAoB,EAAE,MAAM,wCAAwC,CAAC;AAClG,OAAO,EACN,cAAc,EACd,eAAe,EACf,iBAAiB,EACjB,oBAAoB,EACpB,qBAAqB,EACrB,uBAAuB,EACvB,mCAAmC,EACnC,qBAAqB,EACrB,+BAA+B,EAC/B,yBAAyB,EAEzB,oBAAoB,EACpB,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nodecommons-esm-security",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.11",
|
|
4
4
|
"description": "",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"tsc": "./node_modules/typescript/bin/tsc",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"dist/**/*"
|
|
27
27
|
],
|
|
28
28
|
"dependencies": {
|
|
29
|
-
"tscommons-esm-core": "^0.
|
|
30
|
-
"tscommons-esm-session": "^0.0.
|
|
29
|
+
"tscommons-esm-core": "^0.3.0",
|
|
30
|
+
"tscommons-esm-session": "^0.0.10"
|
|
31
31
|
}
|
|
32
32
|
}
|