dfx 0.124.0 → 0.124.2

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.
@@ -116,7 +116,9 @@ const make = Effect.gen(function* () {
116
116
  }
117
117
  })
118
118
 
119
- const defaultClient = yield* HttpClient.HttpClient
119
+ const defaultClient = (yield* HttpClient.HttpClient).pipe(
120
+ HttpClient.withTracerPropagation(false),
121
+ )
120
122
  const rateLimitedClient: HttpClient.HttpClient = defaultClient.pipe(
121
123
  HttpClient.tapRequest(request =>
122
124
  Effect.zipRight(requestRateLimit(request.url, request), globalRateLimit),
@@ -190,7 +192,9 @@ const make = Effect.gen(function* () {
190
192
  if (request.body._tag === "Uint8Array") {
191
193
  formData.value.set(
192
194
  "payload_json",
193
- new Blob([request.body.body], { type: "application/json" }),
195
+ new Blob([request.body.body as Uint8Array<ArrayBuffer>], {
196
+ type: "application/json",
197
+ }),
194
198
  "",
195
199
  )
196
200
  }
package/src/version.ts CHANGED
@@ -1 +1 @@
1
- export const LIB_VERSION = "0.124.0";
1
+ export const LIB_VERSION = "0.124.2";
@@ -1 +1 @@
1
- {"fileNames":[],"fileInfos":[],"root":[],"options":{"allowJs":false,"checkJs":false,"composite":true,"declaration":true,"declarationMap":true,"downlevelIteration":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"module":7,"noEmitOnError":false,"noErrorTruncation":false,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitReturns":false,"noImplicitThis":true,"noUncheckedIndexedAccess":false,"noUnusedLocals":true,"noUnusedParameters":false,"removeComments":false,"skipLibCheck":true,"sourceMap":true,"strict":true,"strictNullChecks":true,"stripInternal":true,"target":99},"version":"5.8.3"}
1
+ {"fileNames":[],"fileInfos":[],"root":[],"options":{"allowJs":false,"checkJs":false,"composite":true,"declaration":true,"declarationMap":true,"downlevelIteration":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"module":7,"noEmitOnError":false,"noErrorTruncation":false,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitReturns":false,"noImplicitThis":true,"noUncheckedIndexedAccess":false,"noUnusedLocals":true,"noUnusedParameters":false,"removeComments":false,"skipLibCheck":true,"sourceMap":true,"strict":true,"strictNullChecks":true,"stripInternal":true,"target":99},"version":"5.9.2"}
package/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- export declare const LIB_VERSION = "0.124.0";
1
+ export declare const LIB_VERSION = "0.124.2";
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.124.0";
7
+ const LIB_VERSION = exports.LIB_VERSION = "0.124.2";
8
8
  //# sourceMappingURL=version.js.map