@argon-router/core 0.11.0 → 0.11.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.
Files changed (2) hide show
  1. package/dist/index.d.ts +3 -3
  2. package/package.json +2 -2
package/dist/index.d.ts CHANGED
@@ -9,8 +9,8 @@ import { Store } from 'effector';
9
9
  import { StoreWritable } from 'effector';
10
10
  import { Unit } from 'effector';
11
11
  import { ValidatePath } from '@argon-router/paths';
12
- import { z } from 'zod';
13
- import { ZodType } from 'zod';
12
+ import { z } from 'zod/v4';
13
+ import { ZodType } from 'zod/v4';
14
14
 
15
15
  declare type BeforeOpenUnit<T> = (T extends void ? EventCallable<void> | EventCallable<OpenPayloadBase> : EventCallable<{
16
16
  params: T;
@@ -321,7 +321,7 @@ declare interface RouterControls {
321
321
  * @param config Query tacker config
322
322
  * @link https://movpushmov.dev/argon-router/core/track-query.html
323
323
  * @example ```ts
324
- * import { z } from 'zod';
324
+ * import { z } from 'zod/v4';
325
325
  * import { router } from '@shared/router';
326
326
  * import { createDialog } from '...';
327
327
  *
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "registry": "https://registry.npmjs.org/"
6
6
  },
7
7
  "private": false,
8
- "version": "0.11.0",
8
+ "version": "0.11.1",
9
9
  "description": "Router with power of effector",
10
10
  "keywords": [
11
11
  "effector",
@@ -55,5 +55,5 @@
55
55
  "dependencies": {
56
56
  "@argon-router/paths": "^0.11.0"
57
57
  },
58
- "gitHead": "0180f75dbbc73a123e706ff48961f8e57d57ce65"
58
+ "gitHead": "3a980be012f40d741a261773efc3535f83576b1b"
59
59
  }