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.
- package/clone-assets/discord/tools.json +1 -1
- package/dist/cli.cjs +799 -267
- package/dist/index.cjs +1 -1
- package/dist/seed/dynamic-generator.cjs +351 -21
- package/dist/vitest/{chunk-CJJ32YQF.js → chunk-CTSN67QR.js} +18053 -17674
- package/dist/vitest/{chunk-FU2VLK75.js → chunk-IVXSSEYS.js} +9 -6
- package/dist/vitest/index.cjs +30790 -30408
- package/dist/vitest/index.js +2 -2
- package/dist/vitest/runtime/hosted-session-reaper.cjs +11472 -11380
- package/dist/vitest/runtime/hosted-session-reaper.js +1 -1
- package/dist/vitest/runtime/setup-files.js +2 -2
- package/package.json +1 -1
|
@@ -21,7 +21,7 @@ import {
|
|
|
21
21
|
requestedSeedsMatchSession,
|
|
22
22
|
sleep,
|
|
23
23
|
trimEnv
|
|
24
|
-
} from "./chunk-
|
|
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(
|
|
6837
|
-
this.name = "
|
|
6838
|
-
this
|
|
6839
|
-
|
|
6840
|
-
|
|
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
|
|