@nxtedition/types 23.1.9 → 23.1.10

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/rpc.d.ts CHANGED
@@ -49,7 +49,7 @@ export interface RpcMethods extends Record<string, [
49
49
  string
50
50
  ];
51
51
  }
52
- export type NxtImportMode = "seed" | "clone";
52
+ export type NxtImportMode = "seed" | "clone" | "overwrite";
53
53
  export interface NxtExport {
54
54
  version: number;
55
55
  date?: string;
package/dist/rpc.js CHANGED
@@ -116,13 +116,13 @@ export const assertGuardNxtExport = (() => { const _io0 = input => "number" ===
116
116
  }, _errorFactory))(input, "$input", true);
117
117
  }
118
118
  }; })();
119
- export const assertGuardNxtImportMode = (() => { const __is = input => "clone" === input || "seed" === input; let _errorFactory; return (input, errorFactory) => {
119
+ export const assertGuardNxtImportMode = (() => { const __is = input => "clone" === input || "seed" === input || "overwrite" === input; let _errorFactory; return (input, errorFactory) => {
120
120
  if (false === __is(input)) {
121
121
  _errorFactory = errorFactory;
122
- ((input, _path, _exceptionable = true) => "clone" === input || "seed" === input || __typia_transform__assertGuard._assertGuard(true, {
122
+ ((input, _path, _exceptionable = true) => "clone" === input || "seed" === input || "overwrite" === input || __typia_transform__assertGuard._assertGuard(true, {
123
123
  method: "typia.createAssertGuard",
124
124
  path: _path + "",
125
- expected: "(\"clone\" | \"seed\")",
125
+ expected: "(\"clone\" | \"overwrite\" | \"seed\")",
126
126
  value: input
127
127
  }, _errorFactory))(input, "$input", true);
128
128
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nxtedition/types",
3
- "version": "23.1.9",
3
+ "version": "23.1.10",
4
4
  "description": "TypeScript types to be shared between nxtedition packages.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -58,4 +58,4 @@
58
58
  "tsd": "^0.33.0",
59
59
  "typescript": "5.9.3"
60
60
  }
61
- }
61
+ }