@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.
@@ -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) {
@@ -1,4 +1,4 @@
1
1
  'use strict';
2
2
  require('../../chunk-JE77HYXB.cjs');
3
- var NOT_NULL = Symbol("!null");
3
+ var NOT_NULL = /* @__PURE__ */ Symbol("!null");
4
4
  exports.NOT_NULL = NOT_NULL;
@@ -1,3 +1,3 @@
1
1
  import '../../chunk-AQ5VUG5P.js';
2
- var NOT_NULL = Symbol("!null");
2
+ var NOT_NULL = /* @__PURE__ */ Symbol("!null");
3
3
  export { NOT_NULL };
@@ -0,0 +1 @@
1
+ 'use strict';
@@ -0,0 +1,5 @@
1
+ type Without<T, K> = {
2
+ [P in Exclude<keyof T, K>]?: never;
3
+ };
4
+ export type XOR<T, U> = ((T & Without<U, keyof T>) | (U & Without<T, keyof U>));
5
+ export {};
File without changes
@@ -1,3 +1,4 @@
1
1
  export * from './IntRage.js';
2
2
  export * from './PartialExcept.js';
3
3
  export * from './Object.js';
4
+ export type * from "./XOR.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@powfix/core-js",
3
- "version": "0.25.2",
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": "^1.13.5",
66
+ "@swc/core": "1.15.3",
67
67
  "@types/base-64": "1.0.2",
68
- "@types/node": "^24.5.1",
68
+ "@types/node": "24.10.2",
69
69
  "@types/uuid": "9.0.7",
70
- "axios": "^1.11.0",
70
+ "axios": "^1.13.2",
71
71
  "deepmerge": "^4.3.1",
72
- "i18next": "25.4.2",
72
+ "i18next": "25.7.2",
73
73
  "moment": "^2.30.1",
74
74
  "pg-hstore": "^2.3.4",
75
- "redis": "^5.8.2",
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": "^8.5.0",
81
- "typescript": "5.9.2"
80
+ "tsup": "8.5.1",
81
+ "typescript": "5.9.3"
82
82
  },
83
83
  "peerDependencies": {
84
84
  "eventemitter3": ">=5",