dfx 0.17.3 → 0.17.4

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/Http/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import * as tsplus_module_1 from "@effect/io/Effect";
2
- import * as tsplus_module_2 from "dfx/utils/effect.js";
2
+ import * as tsplus_module_2 from "dfx/utils/effect";
3
3
  export class FetchError {
4
4
  reason;
5
5
  _tag = "FetchError";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dfx",
3
- "version": "0.17.3",
3
+ "version": "0.17.4",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "public",
@@ -49,5 +49,5 @@
49
49
  "@fp-ts/data": "^0.0.20"
50
50
  }
51
51
  },
52
- "gitHead": "f2589a3ff140a8c7428ce9cf7e71ce5e3cbded46"
52
+ "gitHead": "395784fcbc3c9141614e9a0c69e44e5a944aba9e"
53
53
  }
package/utils/effect.d.ts CHANGED
@@ -2,6 +2,6 @@ import { Effect } from "@effect/io/Effect";
2
2
  export type Success<A extends Effect<any, any, any>> = A extends Effect<any, any, infer R> ? R : never;
3
3
  /**
4
4
  * @tsplus static effect/io/Effect.Ops tryCatchAbort
5
- * @tsplus location "dfx/utils/effect.js"
5
+ * @tsplus location "dfx/utils/effect"
6
6
  */
7
7
  export declare const tryCatchAbort: <E, A>(f: (ac: AbortSignal) => Promise<A>, onError: (e: unknown) => E) => import("../global.js").Effect<never, E, A>;