dfx 0.123.0 → 0.124.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.
@@ -190,7 +190,9 @@ const make = Effect.gen(function* () {
190
190
  if (request.body._tag === "Uint8Array") {
191
191
  formData.value.set(
192
192
  "payload_json",
193
- new Blob([request.body.body], { type: "application/json" }),
193
+ new Blob([request.body.body as Uint8Array<ArrayBuffer>], {
194
+ type: "application/json",
195
+ }),
194
196
  "",
195
197
  )
196
198
  }
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const LIB_VERSION = "0.123.0";
1
+ export const LIB_VERSION = "0.124.1";
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const LIB_VERSION = "0.123.0";
1
+ export declare const LIB_VERSION = "0.124.1";
2
2
  //# sourceMappingURL=version.d.ts.map
package/version.js CHANGED
@@ -4,5 +4,5 @@ Object.defineProperty(exports, "__esModule", {
4
4
  value: true
5
5
  });
6
6
  exports.LIB_VERSION = void 0;
7
- const LIB_VERSION = exports.LIB_VERSION = "0.123.0";
7
+ const LIB_VERSION = exports.LIB_VERSION = "0.124.1";
8
8
  //# sourceMappingURL=version.js.map