@intuned/runtime-dev 1.2.1-hooks.5 → 1.2.1-hooks.7

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.
@@ -1,4 +1,4 @@
1
- import type { ImportFunction } from "@intuned/runtime/dist/common/runApi";
1
+ import type { ImportFunction } from "@intuned/runtime/dist/common/runApi/importUsingImportFunction";
2
2
  import { err, ok } from "neverthrow";
3
3
 
4
4
  export const importModule: ImportFunction = async (path: string) => {
@@ -832,3 +832,4 @@ export type RunApiResultWithSessionOk<R = any> = RunApiResultOk<R> & {
832
832
  session: RunApiStorageState;
833
833
  };
834
834
  export type RunApiResult<R = any, FullResult extends RunApiResultOk<R> = RunApiResultOk<R>> = Result<FullResult, RunAutomationError>;
835
+ export type { ImportFunction } from "./importUsingImportFunction";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@intuned/runtime-dev",
3
- "version": "1.2.1-hooks.5",
3
+ "version": "1.2.1-hooks.7",
4
4
  "description": "Intuned runtime",
5
5
  "exports": {
6
6
  ".": "./dist/index.js",