@powfix/core-js 0.25.3 → 0.26.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.
@@ -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, U = never> = {
2
+ [P in keyof T]?: U;
3
+ };
4
+ export type XOR<T, U> = (Without<T> & U) | (Without<U> & T);
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.3",
3
+ "version": "0.26.1",
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",