@tramvai/tokens-common 2.24.3 → 2.25.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.
package/lib/cache.d.ts CHANGED
@@ -15,7 +15,7 @@ export declare const REGISTER_CLEAR_CACHE_TOKEN: import("@tinkoff/dippy").MultiT
15
15
  * @description
16
16
  * Force cleaning up all caches in the app
17
17
  */
18
- export declare const CLEAR_CACHE_TOKEN: import("@tinkoff/dippy").BaseTokenInterface<(type?: string | undefined) => Promise<void>>;
18
+ export declare const CLEAR_CACHE_TOKEN: import("@tinkoff/dippy").BaseTokenInterface<(type?: string) => Promise<void>>;
19
19
  export interface Cache<T = any> {
20
20
  get(key: string): T;
21
21
  set(key: string, value: T): void;
@@ -1,3 +1,4 @@
1
+ import type { AbortController, AbortSignal } from 'node-abort-controller';
1
2
  export interface ExecutionContextValues {
2
3
  [key: string]: any | undefined;
3
4
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tramvai/tokens-common",
3
- "version": "2.24.3",
3
+ "version": "2.25.1",
4
4
  "description": "Tramvai tokens for @tramvai/module-common",
5
5
  "main": "lib/index.js",
6
6
  "module": "lib/index.es.js",
@@ -20,19 +20,19 @@
20
20
  },
21
21
  "dependencies": {
22
22
  "@tinkoff/lru-cache-nano": "^7.8.1",
23
- "@tinkoff/url": "0.8.2",
24
- "@tramvai/react": "2.24.3",
25
- "@tramvai/tokens-core": "2.24.3",
23
+ "@tinkoff/url": "0.8.3",
24
+ "@tramvai/react": "2.25.1",
25
+ "@tramvai/tokens-core": "2.25.1",
26
26
  "@types/express": "^4.17.9"
27
27
  },
28
28
  "peerDependencies": {
29
- "@tinkoff/dippy": "0.8.3",
30
- "@tinkoff/logger": "0.10.51",
31
- "@tramvai/types-actions-state-context": "2.24.3",
29
+ "@tinkoff/dippy": "0.8.5",
30
+ "@tinkoff/logger": "0.10.53",
31
+ "@tramvai/types-actions-state-context": "2.25.1",
32
32
  "express": "^4.17.1",
33
33
  "fastify": "^3.29.0",
34
34
  "react": ">=16.8",
35
- "tslib": "^2.0.3"
35
+ "tslib": "^2.4.0"
36
36
  },
37
37
  "license": "Apache-2.0"
38
38
  }