archal 0.9.16 → 0.9.18

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.
@@ -21,7 +21,7 @@ import {
21
21
  requestedSeedsMatchSession,
22
22
  sleep,
23
23
  trimEnv
24
- } from "./chunk-CJJ32YQF.js";
24
+ } from "./chunk-CTSN67QR.js";
25
25
 
26
26
  // ../../node_modules/.pnpm/ajv@8.18.0/node_modules/ajv/dist/compile/codegen/code.js
27
27
  var require_code = __commonJS({
@@ -6833,11 +6833,14 @@ var RouteRuntimePolicyError = class extends Error {
6833
6833
  service;
6834
6834
  url;
6835
6835
  constructor(input) {
6836
- super(input.message);
6837
- this.name = "RouteRuntimePolicyError";
6838
- this.code = input.code;
6839
- this.service = input.service;
6840
- this.url = input.url;
6836
+ super("Network request failed");
6837
+ this.name = "TypeError";
6838
+ Object.defineProperties(this, {
6839
+ code: { value: input.code, enumerable: false },
6840
+ service: { value: input.service, enumerable: false },
6841
+ url: { value: input.url, enumerable: false },
6842
+ policyMessage: { value: input.message, enumerable: false }
6843
+ });
6841
6844
  }
6842
6845
  };
6843
6846