@powfix/core-js 0.26.2 → 0.26.4

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
  import { ReloadOption } from "./ReloadOption.js";
2
2
  import { TransactionOption } from "./TransactionOption.js";
3
- export interface UpsertOptions extends ReloadOption, TransactionOption {
3
+ export interface UpsertOptions extends Partial<ReloadOption>, Partial<TransactionOption> {
4
4
  }
@@ -0,0 +1 @@
1
+ 'use strict';
@@ -0,0 +1 @@
1
+ export type If<C extends boolean, T, F = undefined> = C extends true ? T : F;
File without changes
@@ -1,3 +1,4 @@
1
+ export type * from "./If.js";
1
2
  export * from './IntRage.js';
2
3
  export * from './PartialExcept.js';
3
4
  export * from './Object.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@powfix/core-js",
3
- "version": "0.26.2",
3
+ "version": "0.26.4",
4
4
  "description": "core package",
5
5
  "author": "Kwon Kyung-Min <powfix@gmail.com>",
6
6
  "private": false,