@pogodisco/zephyr 1.5.13 → 1.5.14

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.
@@ -12,7 +12,7 @@ export type DepWorkflows<Deps extends ModuleMap> = keyof Deps extends never ? {}
12
12
  export type WorkflowRegistry<Own extends ModuleShape, Deps extends ModuleMap> = Own & DepWorkflows<Deps>;
13
13
  export type AnyWorkflow = WorkflowDef<any, any, any, any, any>;
14
14
  export type ModuleShape = Record<string, AnyWorkflow>;
15
- export type ModuleMap = Record<string, Module<any, any, any, any, ModuleShape>>;
15
+ export type ModuleMap = Record<string, Module<any, any, any, any, any>>;
16
16
  export type FinalServices<S extends ServiceRegistry, Deps extends ModuleMap> = S & ServicesFromDepsRecursive<Deps>;
17
17
  export type ServicesFromDepsRecursive<Deps extends ModuleMap> = [
18
18
  keyof Deps
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pogodisco/zephyr",
3
- "version": "1.5.13",
3
+ "version": "1.5.14",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },