@powfix/core-js 0.25.2 → 0.26.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/browser/utils/SearchParamsUtils.cjs +0 -6
- package/dist/browser/utils/SearchParamsUtils.d.ts +0 -1
- package/dist/browser/utils/SearchParamsUtils.js +0 -6
- package/dist/shared/constants/NOT_NULL.cjs +1 -1
- package/dist/shared/constants/NOT_NULL.js +1 -1
- package/dist/shared/types/XOR.cjs +1 -0
- package/dist/shared/types/XOR.d.ts +5 -0
- package/dist/shared/types/XOR.js +0 -0
- package/dist/shared/types/index.d.ts +1 -0
- package/package.json +8 -8
|
@@ -59,12 +59,6 @@ var _SearchParamsUtils = /*#__PURE__*/ function() {
|
|
|
59
59
|
}
|
|
60
60
|
}
|
|
61
61
|
], [
|
|
62
|
-
{
|
|
63
|
-
key: "urlSearchParams",
|
|
64
|
-
get: function get() {
|
|
65
|
-
return new URL(window.location.href).searchParams;
|
|
66
|
-
}
|
|
67
|
-
},
|
|
68
62
|
{
|
|
69
63
|
key: "getString",
|
|
70
64
|
value: function getString(searchParams, key) {
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { UUID } from "@powfix/uuid";
|
|
2
2
|
export declare class SearchParamsUtils {
|
|
3
3
|
#private;
|
|
4
|
-
private static get urlSearchParams();
|
|
5
4
|
static getString(searchParams: URLSearchParams, key: string): string | null;
|
|
6
5
|
static getStrings(searchParams: URLSearchParams, key: string): string[] | null;
|
|
7
6
|
static getUuid(searchParams: URLSearchParams, key: string): UUID | null;
|
|
@@ -59,12 +59,6 @@ var _SearchParamsUtils = /*#__PURE__*/ function() {
|
|
|
59
59
|
}
|
|
60
60
|
}
|
|
61
61
|
], [
|
|
62
|
-
{
|
|
63
|
-
key: "urlSearchParams",
|
|
64
|
-
get: function get() {
|
|
65
|
-
return new URL(window.location.href).searchParams;
|
|
66
|
-
}
|
|
67
|
-
},
|
|
68
62
|
{
|
|
69
63
|
key: "getString",
|
|
70
64
|
value: function getString(searchParams, key) {
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
'use strict';
|
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powfix/core-js",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.26.0",
|
|
4
4
|
"description": "core package",
|
|
5
5
|
"author": "Kwon Kyung-Min <powfix@gmail.com>",
|
|
6
6
|
"private": false,
|
|
@@ -63,22 +63,22 @@
|
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
65
|
"@powfix/uuid": "^0.2.17",
|
|
66
|
-
"@swc/core": "
|
|
66
|
+
"@swc/core": "1.15.3",
|
|
67
67
|
"@types/base-64": "1.0.2",
|
|
68
|
-
"@types/node": "
|
|
68
|
+
"@types/node": "24.10.2",
|
|
69
69
|
"@types/uuid": "9.0.7",
|
|
70
|
-
"axios": "^1.
|
|
70
|
+
"axios": "^1.13.2",
|
|
71
71
|
"deepmerge": "^4.3.1",
|
|
72
|
-
"i18next": "25.
|
|
72
|
+
"i18next": "25.7.2",
|
|
73
73
|
"moment": "^2.30.1",
|
|
74
74
|
"pg-hstore": "^2.3.4",
|
|
75
|
-
"redis": "
|
|
75
|
+
"redis": "5.10.0",
|
|
76
76
|
"sequelize": "6.37.7",
|
|
77
77
|
"sequelize-typescript": "^2.1.6",
|
|
78
78
|
"ts-node": "^10.9.2",
|
|
79
79
|
"tsc-esm-fix": "^3.1.2",
|
|
80
|
-
"tsup": "
|
|
81
|
-
"typescript": "5.9.
|
|
80
|
+
"tsup": "8.5.1",
|
|
81
|
+
"typescript": "5.9.3"
|
|
82
82
|
},
|
|
83
83
|
"peerDependencies": {
|
|
84
84
|
"eventemitter3": ">=5",
|