@tramvai/core 2.149.1 → 2.150.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.
@@ -3,3 +3,4 @@ import type { ActionParameters, Action } from '@tramvai/tokens-core';
3
3
  * @deprecated: use `declareAction`
4
4
  */
5
5
  export declare function createAction<Result = any, Payload = any, Deps = any>(action: ActionParameters<Payload, Result, Deps>): Action<Payload, Result, Deps>;
6
+ //# sourceMappingURL=createActions.d.ts.map
@@ -1,3 +1,4 @@
1
1
  import type { TramvaiAction, TramvaiActionDefinition } from '@tramvai/types-actions-state-context';
2
2
  export declare function declareAction<Params extends any[], Result, Deps = {}>(action: TramvaiActionDefinition<Params, Result, Deps>): TramvaiAction<Params, Result, Deps>;
3
- export declare function isTramvaiAction<Params extends any[], Result, Deps>(action: any): action is TramvaiAction<Params, Result, Deps>;
3
+ export declare function isTramvaiAction<Params extends any[], Result = any, Deps = any>(action: any): action is TramvaiAction<Params, Result, Deps>;
4
+ //# sourceMappingURL=declareAction.d.ts.map
@@ -1 +1,2 @@
1
1
  export {};
2
+ //# sourceMappingURL=declareAction.test-types.d.ts.map
@@ -1,2 +1,3 @@
1
1
  import type { BundleOptions, Bundle } from '@tramvai/tokens-core';
2
2
  export declare function createBundle(options: BundleOptions): Bundle;
3
+ //# sourceMappingURL=createBundle.d.ts.map
@@ -20,3 +20,4 @@ export declare class App {
20
20
  }
21
21
  export declare function createApp(options: AppOptions): Promise<App>;
22
22
  export {};
23
+ //# sourceMappingURL=createApp.d.ts.map
package/lib/index.d.ts CHANGED
@@ -4,3 +4,4 @@ export { createAction } from './actions/createActions';
4
4
  export * from './actions/declareAction';
5
5
  export * from '@tramvai/tokens-core';
6
6
  export { DI_TOKEN, IS_DI_CHILD_CONTAINER_TOKEN, Scope, Provider, createToken, provide, optional, ExtractTokenType, ExtractDependencyType, Module, MODULE_PARAMETERS, getModuleParameters, walkOfModules, isExtendedModule, ModuleType, ExtendedModule, declareModule, } from '@tinkoff/dippy';
7
+ //# sourceMappingURL=index.d.ts.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tramvai/core",
3
- "version": "2.149.1",
3
+ "version": "2.150.1",
4
4
  "description": "",
5
5
  "main": "lib/index.js",
6
6
  "typings": "lib/index.d.ts",
@@ -19,9 +19,9 @@
19
19
  },
20
20
  "dependencies": {
21
21
  "@tinkoff/utils": "^2.1.2",
22
- "@tramvai/tokens-common": "2.149.1",
23
- "@tramvai/tokens-core": "2.149.1",
24
- "@tramvai/types-actions-state-context": "2.149.1",
22
+ "@tramvai/tokens-common": "2.150.1",
23
+ "@tramvai/tokens-core": "2.150.1",
24
+ "@tramvai/types-actions-state-context": "2.150.1",
25
25
  "@tinkoff/dippy": "0.8.16",
26
26
  "node-abort-controller": "^3.0.1",
27
27
  "tslib": "^2.4.0"