@zvonimirsun/iszy-common 1.1.4 → 1.1.5
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.cjs +1 -1
- package/dist/index.js +61 -54
- package/package.json +10 -7
package/dist/index.cjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
Object.defineProperty(exports,Symbol.toStringTag,{value:`Module`});var e=function(e){return e.SUPERADMIN=`superadmin`,e.ADMIN=`admin`,e}({}),t=function(e){return e[e.DEACTIVATED=0]=`DEACTIVATED`,e[e.ENABLED=1]=`ENABLED`,e[e.DISABLED=2]=`DISABLED`,e}({}),n=`0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz`;function r(e){let t=``;do t=n.charAt(Number(e%62n))+t,e/=62n;while(e>0n);return t}var i=/^(?:[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*|"(?:[\x01-\x08\v\f\x0E-\x1F\x21\x23-\x5B\x5D-\x7F]|\\[\x01-\x09\v\f\x0E-\x7F])\*")@(?:(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?|\[(?:(?:25[0-5]|2[0-4]\d|[01]?\d{1,2})\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d{1,2}|[a-z0-9-]*[a-z0-9]:(?:[\x01-\x08\v\f\x0E-\x1F\x21-\x5A\x53-\x7F]|\\[\x01-\x09\v\f\x0E-\x7F])+)\])$/,a=/^1[3-9]\d{9}$/;function o(e){let{passwd:t,passwdSalt:n,...r}=e;return r}function s(e){let{userId:t,userName:n,nickName:r}=e;return{userId:t,userName:n,nickName:r}}var c=[];for(let e=0;e<256;++e)c.push((e+256).toString(16).slice(1));function l(e,t=0){return(c[e[t+0]]+c[e[t+1]]+c[e[t+2]]+c[e[t+3]]+`-`+c[e[t+4]]+c[e[t+5]]+`-`+c[e[t+6]]+c[e[t+7]]+`-`+c[e[t+8]]+c[e[t+9]]+`-`+c[e[t+10]]+c[e[t+11]]+c[e[t+12]]+c[e[t+13]]+c[e[t+14]]+c[e[t+15]]).toLowerCase()}var u=new Uint8Array(16);function d(){return crypto.getRandomValues(u)}function f(e,t,n){return!t&&!e&&crypto.randomUUID?crypto.randomUUID():p(e,t,n)}function p(e,t,n){e||={};let r=e.random??e.rng?.()??d();if(r.length<16)throw Error(`Random bytes length must be >= 16`);if(r[6]=r[6]&15|64,r[8]=r[8]&63|128,t){if(n||=0,n<0||n+16>t.length)throw RangeError(`UUID byte range ${n}:${n+15} is out of buffer bounds`);for(let e=0;e<16;++e)t[n+e]=r[e];return t}return l(r)}function m(){return f()}function h(e){e||=m();let t=e.replace(/-/g,``);return r(BigInt(`0x${t.substring(0,16)}`)^BigInt(`0x${t.substring(16,32)}`)).substring(0,6)}exports.REGEX_EMAIL=i,exports.REGEX_MOBILE_PHONE=a,exports.RoleEnum=e,exports.UserStatus=t,exports.base62Encode=r,exports.encodeUUID=h,exports.getUUID=m,exports.toMinimalUser=s,exports.toPublicUser=o;
|
package/dist/index.js
CHANGED
|
@@ -1,64 +1,71 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
1
|
+
//#region src/enums/role.enum.ts
|
|
2
|
+
var e = /* @__PURE__ */ function(e) {
|
|
3
|
+
return e.SUPERADMIN = "superadmin", e.ADMIN = "admin", e;
|
|
4
|
+
}({}), t = /* @__PURE__ */ function(e) {
|
|
5
|
+
return e[e.DEACTIVATED = 0] = "DEACTIVATED", e[e.ENABLED = 1] = "ENABLED", e[e.DISABLED = 2] = "DISABLED", e;
|
|
6
|
+
}({}), n = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
|
|
7
|
+
function r(e) {
|
|
8
|
+
let t = "";
|
|
9
|
+
do
|
|
10
|
+
t = n.charAt(Number(e % 62n)) + t, e /= 62n;
|
|
11
|
+
while (e > 0n);
|
|
12
|
+
return t;
|
|
9
13
|
}
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
+
//#endregion
|
|
15
|
+
//#region src/utils/regexUtils.ts
|
|
16
|
+
var i = /^(?:[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*|"(?:[\x01-\x08\v\f\x0E-\x1F\x21\x23-\x5B\x5D-\x7F]|\\[\x01-\x09\v\f\x0E-\x7F])\*")@(?:(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?|\[(?:(?:25[0-5]|2[0-4]\d|[01]?\d{1,2})\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d{1,2}|[a-z0-9-]*[a-z0-9]:(?:[\x01-\x08\v\f\x0E-\x1F\x21-\x5A\x53-\x7F]|\\[\x01-\x09\v\f\x0E-\x7F])+)\])$/, a = /^1[3-9]\d{9}$/;
|
|
17
|
+
//#endregion
|
|
18
|
+
//#region src/utils/user.ts
|
|
19
|
+
function o(e) {
|
|
20
|
+
let { passwd: t, passwdSalt: n, ...r } = e;
|
|
21
|
+
return r;
|
|
14
22
|
}
|
|
15
|
-
function
|
|
16
|
-
|
|
17
|
-
|
|
23
|
+
function s(e) {
|
|
24
|
+
let { userId: t, userName: n, nickName: r } = e;
|
|
25
|
+
return {
|
|
26
|
+
userId: t,
|
|
27
|
+
userName: n,
|
|
28
|
+
nickName: r
|
|
29
|
+
};
|
|
18
30
|
}
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
31
|
+
//#endregion
|
|
32
|
+
//#region node_modules/.pnpm/uuid@14.0.0/node_modules/uuid/dist/stringify.js
|
|
33
|
+
var c = [];
|
|
34
|
+
for (let e = 0; e < 256; ++e) c.push((e + 256).toString(16).slice(1));
|
|
35
|
+
function l(e, t = 0) {
|
|
36
|
+
return (c[e[t + 0]] + c[e[t + 1]] + c[e[t + 2]] + c[e[t + 3]] + "-" + c[e[t + 4]] + c[e[t + 5]] + "-" + c[e[t + 6]] + c[e[t + 7]] + "-" + c[e[t + 8]] + c[e[t + 9]] + "-" + c[e[t + 10]] + c[e[t + 11]] + c[e[t + 12]] + c[e[t + 13]] + c[e[t + 14]] + c[e[t + 15]]).toLowerCase();
|
|
24
37
|
}
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
throw new Error("crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported");
|
|
31
|
-
c = crypto.getRandomValues.bind(crypto);
|
|
32
|
-
}
|
|
33
|
-
return c(g);
|
|
38
|
+
//#endregion
|
|
39
|
+
//#region node_modules/.pnpm/uuid@14.0.0/node_modules/uuid/dist/rng.js
|
|
40
|
+
var u = new Uint8Array(16);
|
|
41
|
+
function d() {
|
|
42
|
+
return crypto.getRandomValues(u);
|
|
34
43
|
}
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
if (o.length < 16)
|
|
40
|
-
throw new Error("Random bytes length must be >= 16");
|
|
41
|
-
return o[6] = o[6] & 15 | 64, o[8] = o[8] & 63 | 128, s(o);
|
|
44
|
+
//#endregion
|
|
45
|
+
//#region node_modules/.pnpm/uuid@14.0.0/node_modules/uuid/dist/v4.js
|
|
46
|
+
function f(e, t, n) {
|
|
47
|
+
return !t && !e && crypto.randomUUID ? crypto.randomUUID() : p(e, t, n);
|
|
42
48
|
}
|
|
43
|
-
function
|
|
44
|
-
|
|
49
|
+
function p(e, t, n) {
|
|
50
|
+
e ||= {};
|
|
51
|
+
let r = e.random ?? e.rng?.() ?? d();
|
|
52
|
+
if (r.length < 16) throw Error("Random bytes length must be >= 16");
|
|
53
|
+
if (r[6] = r[6] & 15 | 64, r[8] = r[8] & 63 | 128, t) {
|
|
54
|
+
if (n ||= 0, n < 0 || n + 16 > t.length) throw RangeError(`UUID byte range ${n}:${n + 15} is out of buffer bounds`);
|
|
55
|
+
for (let e = 0; e < 16; ++e) t[n + e] = r[e];
|
|
56
|
+
return t;
|
|
57
|
+
}
|
|
58
|
+
return l(r);
|
|
45
59
|
}
|
|
60
|
+
//#endregion
|
|
61
|
+
//#region src/utils/uuid.ts
|
|
46
62
|
function m() {
|
|
47
|
-
|
|
63
|
+
return f();
|
|
48
64
|
}
|
|
49
|
-
function
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
65
|
+
function h(e) {
|
|
66
|
+
e ||= m();
|
|
67
|
+
let t = e.replace(/-/g, "");
|
|
68
|
+
return r(BigInt(`0x${t.substring(0, 16)}`) ^ BigInt(`0x${t.substring(16, 32)}`)).substring(0, 6);
|
|
53
69
|
}
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
A as REGEX_MOBILE_PHONE,
|
|
57
|
-
x as RoleEnum,
|
|
58
|
-
i as UserStatus,
|
|
59
|
-
E as base62Encode,
|
|
60
|
-
U as encodeUUID,
|
|
61
|
-
m as getUUID,
|
|
62
|
-
h as toMinimalUser,
|
|
63
|
-
b as toPublicUser
|
|
64
|
-
};
|
|
70
|
+
//#endregion
|
|
71
|
+
export { i as REGEX_EMAIL, a as REGEX_MOBILE_PHONE, e as RoleEnum, t as UserStatus, r as base62Encode, h as encodeUUID, m as getUUID, s as toMinimalUser, o as toPublicUser };
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"type": "module",
|
|
4
4
|
"author": "ZvonimirSun",
|
|
5
5
|
"license": "MIT",
|
|
6
|
-
"version": "1.1.
|
|
6
|
+
"version": "1.1.5",
|
|
7
7
|
"exports": {
|
|
8
8
|
".": {
|
|
9
9
|
"types": "./dist/index.d.ts",
|
|
@@ -18,15 +18,18 @@
|
|
|
18
18
|
"files": [
|
|
19
19
|
"./dist"
|
|
20
20
|
],
|
|
21
|
+
"repository": {
|
|
22
|
+
"url": "https://github.com/ZvonimirSun/iszy-common"
|
|
23
|
+
},
|
|
21
24
|
"dependencies": {
|
|
22
|
-
"uuid": "^
|
|
25
|
+
"uuid": "^14.0.0"
|
|
23
26
|
},
|
|
24
27
|
"devDependencies": {
|
|
25
|
-
"@antfu/eslint-config": "^
|
|
26
|
-
"eslint": "^
|
|
27
|
-
"taze": "^19.
|
|
28
|
-
"typescript": "~
|
|
29
|
-
"vite": "^
|
|
28
|
+
"@antfu/eslint-config": "^9.0.0",
|
|
29
|
+
"eslint": "^10.4.0",
|
|
30
|
+
"taze": "^19.13.0",
|
|
31
|
+
"typescript": "~6.0.3",
|
|
32
|
+
"vite": "^8.0.13"
|
|
30
33
|
},
|
|
31
34
|
"scripts": {
|
|
32
35
|
"dev": "vite",
|