@prisma/fetch-engine 6.20.0-integration-next.19 → 7.0.0

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.
@@ -26,14 +26,17 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
26
26
  mod
27
27
  ));
28
28
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
29
- var chunk_VAPNG6TS_exports = {};
30
- __export(chunk_VAPNG6TS_exports, {
29
+ var chunk_CTLNI6CP_exports = {};
30
+ __export(chunk_CTLNI6CP_exports, {
31
31
  getProxyAgent: () => getProxyAgent
32
32
  });
33
- module.exports = __toCommonJS(chunk_VAPNG6TS_exports);
34
- var import_chunk_QGM4M3NI = require("./chunk-QGM4M3NI.js");
33
+ module.exports = __toCommonJS(chunk_CTLNI6CP_exports);
34
+ var import_chunk_2ESYSVXG = require("./chunk-2ESYSVXG.js");
35
+ var import_node_process = __toESM(require("node:process"));
36
+ var import_node_os = __toESM(require("node:os"));
37
+ var import_node_tty = __toESM(require("node:tty"));
35
38
  var import_debug = __toESM(require("@prisma/debug"));
36
- var require_ms = (0, import_chunk_QGM4M3NI.__commonJS)({
39
+ var require_ms = (0, import_chunk_2ESYSVXG.__commonJS)({
37
40
  "../../node_modules/.pnpm/ms@2.1.3/node_modules/ms/index.js"(exports, module2) {
38
41
  "use strict";
39
42
  var s = 1e3;
@@ -148,10 +151,10 @@ var require_ms = (0, import_chunk_QGM4M3NI.__commonJS)({
148
151
  }
149
152
  }
150
153
  });
151
- var require_common = (0, import_chunk_QGM4M3NI.__commonJS)({
152
- "../../node_modules/.pnpm/debug@4.4.0/node_modules/debug/src/common.js"(exports, module2) {
154
+ var require_common = (0, import_chunk_2ESYSVXG.__commonJS)({
155
+ "../../node_modules/.pnpm/debug@4.4.0_supports-color@10.2.2/node_modules/debug/src/common.js"(exports, module2) {
153
156
  "use strict";
154
- function setup(env) {
157
+ function setup(env2) {
155
158
  createDebug.debug = createDebug;
156
159
  createDebug.default = createDebug;
157
160
  createDebug.coerce = coerce;
@@ -160,8 +163,8 @@ var require_common = (0, import_chunk_QGM4M3NI.__commonJS)({
160
163
  createDebug.enabled = enabled;
161
164
  createDebug.humanize = require_ms();
162
165
  createDebug.destroy = destroy;
163
- Object.keys(env).forEach((key) => {
164
- createDebug[key] = env[key];
166
+ Object.keys(env2).forEach((key) => {
167
+ createDebug[key] = env2[key];
165
168
  });
166
169
  createDebug.names = [];
167
170
  createDebug.skips = [];
@@ -324,8 +327,8 @@ var require_common = (0, import_chunk_QGM4M3NI.__commonJS)({
324
327
  module2.exports = setup;
325
328
  }
326
329
  });
327
- var require_browser = (0, import_chunk_QGM4M3NI.__commonJS)({
328
- "../../node_modules/.pnpm/debug@4.4.0/node_modules/debug/src/browser.js"(exports, module2) {
330
+ var require_browser = (0, import_chunk_2ESYSVXG.__commonJS)({
331
+ "../../node_modules/.pnpm/debug@4.4.0_supports-color@10.2.2/node_modules/debug/src/browser.js"(exports, module2) {
329
332
  "use strict";
330
333
  exports.formatArgs = formatArgs;
331
334
  exports.save = save;
@@ -493,134 +496,156 @@ var require_browser = (0, import_chunk_QGM4M3NI.__commonJS)({
493
496
  };
494
497
  }
495
498
  });
496
- var require_has_flag = (0, import_chunk_QGM4M3NI.__commonJS)({
497
- "../../node_modules/.pnpm/has-flag@4.0.0/node_modules/has-flag/index.js"(exports, module2) {
498
- "use strict";
499
- module2.exports = (flag, argv = process.argv) => {
500
- const prefix = flag.startsWith("-") ? "" : flag.length === 1 ? "-" : "--";
501
- const position = argv.indexOf(prefix + flag);
502
- const terminatorPosition = argv.indexOf("--");
503
- return position !== -1 && (terminatorPosition === -1 || position < terminatorPosition);
504
- };
505
- }
499
+ var supports_color_exports = {};
500
+ (0, import_chunk_2ESYSVXG.__export)(supports_color_exports, {
501
+ createSupportsColor: () => createSupportsColor,
502
+ default: () => supports_color_default
506
503
  });
507
- var require_supports_color = (0, import_chunk_QGM4M3NI.__commonJS)({
508
- "../../node_modules/.pnpm/supports-color@8.1.1/node_modules/supports-color/index.js"(exports, module2) {
509
- "use strict";
510
- var os = (0, import_chunk_QGM4M3NI.__require)("os");
511
- var tty = (0, import_chunk_QGM4M3NI.__require)("tty");
512
- var hasFlag = require_has_flag();
513
- var { env } = process;
514
- var flagForceColor;
515
- if (hasFlag("no-color") || hasFlag("no-colors") || hasFlag("color=false") || hasFlag("color=never")) {
516
- flagForceColor = 0;
517
- } else if (hasFlag("color") || hasFlag("colors") || hasFlag("color=true") || hasFlag("color=always")) {
518
- flagForceColor = 1;
504
+ function hasFlag(flag, argv = globalThis.Deno ? globalThis.Deno.args : import_node_process.default.argv) {
505
+ const prefix = flag.startsWith("-") ? "" : flag.length === 1 ? "-" : "--";
506
+ const position = argv.indexOf(prefix + flag);
507
+ const terminatorPosition = argv.indexOf("--");
508
+ return position !== -1 && (terminatorPosition === -1 || position < terminatorPosition);
509
+ }
510
+ function envForceColor() {
511
+ if (!("FORCE_COLOR" in env)) {
512
+ return;
513
+ }
514
+ if (env.FORCE_COLOR === "true") {
515
+ return 1;
516
+ }
517
+ if (env.FORCE_COLOR === "false") {
518
+ return 0;
519
+ }
520
+ if (env.FORCE_COLOR.length === 0) {
521
+ return 1;
522
+ }
523
+ const level = Math.min(Number.parseInt(env.FORCE_COLOR, 10), 3);
524
+ if (![0, 1, 2, 3].includes(level)) {
525
+ return;
526
+ }
527
+ return level;
528
+ }
529
+ function translateLevel(level) {
530
+ if (level === 0) {
531
+ return false;
532
+ }
533
+ return {
534
+ level,
535
+ hasBasic: true,
536
+ has256: level >= 2,
537
+ has16m: level >= 3
538
+ };
539
+ }
540
+ function _supportsColor(haveStream, { streamIsTTY, sniffFlags = true } = {}) {
541
+ const noFlagForceColor = envForceColor();
542
+ if (noFlagForceColor !== void 0) {
543
+ flagForceColor = noFlagForceColor;
544
+ }
545
+ const forceColor = sniffFlags ? flagForceColor : noFlagForceColor;
546
+ if (forceColor === 0) {
547
+ return 0;
548
+ }
549
+ if (sniffFlags) {
550
+ if (hasFlag("color=16m") || hasFlag("color=full") || hasFlag("color=truecolor")) {
551
+ return 3;
519
552
  }
520
- function envForceColor() {
521
- if ("FORCE_COLOR" in env) {
522
- if (env.FORCE_COLOR === "true") {
523
- return 1;
524
- }
525
- if (env.FORCE_COLOR === "false") {
526
- return 0;
527
- }
528
- return env.FORCE_COLOR.length === 0 ? 1 : Math.min(Number.parseInt(env.FORCE_COLOR, 10), 3);
529
- }
553
+ if (hasFlag("color=256")) {
554
+ return 2;
530
555
  }
531
- function translateLevel(level) {
532
- if (level === 0) {
533
- return false;
534
- }
535
- return {
536
- level,
537
- hasBasic: true,
538
- has256: level >= 2,
539
- has16m: level >= 3
540
- };
556
+ }
557
+ if ("TF_BUILD" in env && "AGENT_NAME" in env) {
558
+ return 1;
559
+ }
560
+ if (haveStream && !streamIsTTY && forceColor === void 0) {
561
+ return 0;
562
+ }
563
+ const min = forceColor || 0;
564
+ if (env.TERM === "dumb") {
565
+ return min;
566
+ }
567
+ if (import_node_process.default.platform === "win32") {
568
+ const osRelease = import_node_os.default.release().split(".");
569
+ if (Number(osRelease[0]) >= 10 && Number(osRelease[2]) >= 10586) {
570
+ return Number(osRelease[2]) >= 14931 ? 3 : 2;
541
571
  }
542
- function supportsColor(haveStream, { streamIsTTY, sniffFlags = true } = {}) {
543
- const noFlagForceColor = envForceColor();
544
- if (noFlagForceColor !== void 0) {
545
- flagForceColor = noFlagForceColor;
546
- }
547
- const forceColor = sniffFlags ? flagForceColor : noFlagForceColor;
548
- if (forceColor === 0) {
549
- return 0;
550
- }
551
- if (sniffFlags) {
552
- if (hasFlag("color=16m") || hasFlag("color=full") || hasFlag("color=truecolor")) {
553
- return 3;
554
- }
555
- if (hasFlag("color=256")) {
556
- return 2;
557
- }
558
- }
559
- if (haveStream && !streamIsTTY && forceColor === void 0) {
560
- return 0;
561
- }
562
- const min = forceColor || 0;
563
- if (env.TERM === "dumb") {
564
- return min;
565
- }
566
- if (process.platform === "win32") {
567
- const osRelease = os.release().split(".");
568
- if (Number(osRelease[0]) >= 10 && Number(osRelease[2]) >= 10586) {
569
- return Number(osRelease[2]) >= 14931 ? 3 : 2;
570
- }
571
- return 1;
572
- }
573
- if ("CI" in env) {
574
- if (["TRAVIS", "CIRCLECI", "APPVEYOR", "GITLAB_CI", "GITHUB_ACTIONS", "BUILDKITE", "DRONE"].some((sign) => sign in env) || env.CI_NAME === "codeship") {
575
- return 1;
576
- }
577
- return min;
578
- }
579
- if ("TEAMCITY_VERSION" in env) {
580
- return /^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(env.TEAMCITY_VERSION) ? 1 : 0;
581
- }
582
- if (env.COLORTERM === "truecolor") {
583
- return 3;
584
- }
585
- if ("TERM_PROGRAM" in env) {
586
- const version = Number.parseInt((env.TERM_PROGRAM_VERSION || "").split(".")[0], 10);
587
- switch (env.TERM_PROGRAM) {
588
- case "iTerm.app":
589
- return version >= 3 ? 3 : 2;
590
- case "Apple_Terminal":
591
- return 2;
592
- }
572
+ return 1;
573
+ }
574
+ if ("CI" in env) {
575
+ if (["GITHUB_ACTIONS", "GITEA_ACTIONS", "CIRCLECI"].some((key) => key in env)) {
576
+ return 3;
577
+ }
578
+ if (["TRAVIS", "APPVEYOR", "GITLAB_CI", "BUILDKITE", "DRONE"].some((sign) => sign in env) || env.CI_NAME === "codeship") {
579
+ return 1;
580
+ }
581
+ return min;
582
+ }
583
+ if ("TEAMCITY_VERSION" in env) {
584
+ return /^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(env.TEAMCITY_VERSION) ? 1 : 0;
585
+ }
586
+ if (env.COLORTERM === "truecolor") {
587
+ return 3;
588
+ }
589
+ if (env.TERM === "xterm-kitty") {
590
+ return 3;
591
+ }
592
+ if (env.TERM === "xterm-ghostty") {
593
+ return 3;
594
+ }
595
+ if (env.TERM === "wezterm") {
596
+ return 3;
597
+ }
598
+ if ("TERM_PROGRAM" in env) {
599
+ const version = Number.parseInt((env.TERM_PROGRAM_VERSION || "").split(".")[0], 10);
600
+ switch (env.TERM_PROGRAM) {
601
+ case "iTerm.app": {
602
+ return version >= 3 ? 3 : 2;
593
603
  }
594
- if (/-256(color)?$/i.test(env.TERM)) {
604
+ case "Apple_Terminal": {
595
605
  return 2;
596
606
  }
597
- if (/^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(env.TERM)) {
598
- return 1;
599
- }
600
- if ("COLORTERM" in env) {
601
- return 1;
602
- }
603
- return min;
604
607
  }
605
- function getSupportLevel(stream, options = {}) {
606
- const level = supportsColor(stream, {
607
- streamIsTTY: stream && stream.isTTY,
608
- ...options
609
- });
610
- return translateLevel(level);
608
+ }
609
+ if (/-256(color)?$/i.test(env.TERM)) {
610
+ return 2;
611
+ }
612
+ if (/^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(env.TERM)) {
613
+ return 1;
614
+ }
615
+ if ("COLORTERM" in env) {
616
+ return 1;
617
+ }
618
+ return min;
619
+ }
620
+ function createSupportsColor(stream, options = {}) {
621
+ const level = _supportsColor(stream, {
622
+ streamIsTTY: stream && stream.isTTY,
623
+ ...options
624
+ });
625
+ return translateLevel(level);
626
+ }
627
+ var env, flagForceColor, supportsColor, supports_color_default;
628
+ var init_supports_color = (0, import_chunk_2ESYSVXG.__esm)({
629
+ "../../node_modules/.pnpm/supports-color@10.2.2/node_modules/supports-color/index.js"() {
630
+ "use strict";
631
+ ({ env } = import_node_process.default);
632
+ if (hasFlag("no-color") || hasFlag("no-colors") || hasFlag("color=false") || hasFlag("color=never")) {
633
+ flagForceColor = 0;
634
+ } else if (hasFlag("color") || hasFlag("colors") || hasFlag("color=true") || hasFlag("color=always")) {
635
+ flagForceColor = 1;
611
636
  }
612
- module2.exports = {
613
- supportsColor: getSupportLevel,
614
- stdout: getSupportLevel({ isTTY: tty.isatty(1) }),
615
- stderr: getSupportLevel({ isTTY: tty.isatty(2) })
637
+ supportsColor = {
638
+ stdout: createSupportsColor({ isTTY: import_node_tty.default.isatty(1) }),
639
+ stderr: createSupportsColor({ isTTY: import_node_tty.default.isatty(2) })
616
640
  };
641
+ supports_color_default = supportsColor;
617
642
  }
618
643
  });
619
- var require_node = (0, import_chunk_QGM4M3NI.__commonJS)({
620
- "../../node_modules/.pnpm/debug@4.4.0/node_modules/debug/src/node.js"(exports, module2) {
644
+ var require_node = (0, import_chunk_2ESYSVXG.__commonJS)({
645
+ "../../node_modules/.pnpm/debug@4.4.0_supports-color@10.2.2/node_modules/debug/src/node.js"(exports, module2) {
621
646
  "use strict";
622
- var tty = (0, import_chunk_QGM4M3NI.__require)("tty");
623
- var util = (0, import_chunk_QGM4M3NI.__require)("util");
647
+ var tty2 = (0, import_chunk_2ESYSVXG.__require)("tty");
648
+ var util = (0, import_chunk_2ESYSVXG.__require)("util");
624
649
  exports.init = init;
625
650
  exports.log = log;
626
651
  exports.formatArgs = formatArgs;
@@ -634,8 +659,8 @@ var require_node = (0, import_chunk_QGM4M3NI.__commonJS)({
634
659
  );
635
660
  exports.colors = [6, 2, 3, 4, 5, 1];
636
661
  try {
637
- const supportsColor = require_supports_color();
638
- if (supportsColor && (supportsColor.stderr || supportsColor).level >= 2) {
662
+ const supportsColor2 = (init_supports_color(), (0, import_chunk_2ESYSVXG.__toCommonJS)(supports_color_exports));
663
+ if (supportsColor2 && (supportsColor2.stderr || supportsColor2).level >= 2) {
639
664
  exports.colors = [
640
665
  20,
641
666
  21,
@@ -737,7 +762,7 @@ var require_node = (0, import_chunk_QGM4M3NI.__commonJS)({
737
762
  return obj;
738
763
  }, {});
739
764
  function useColors() {
740
- return "colors" in exports.inspectOpts ? Boolean(exports.inspectOpts.colors) : tty.isatty(process.stderr.fd);
765
+ return "colors" in exports.inspectOpts ? Boolean(exports.inspectOpts.colors) : tty2.isatty(process.stderr.fd);
741
766
  }
742
767
  function formatArgs(args) {
743
768
  const { namespace: name, useColors: useColors2 } = this;
@@ -789,8 +814,8 @@ var require_node = (0, import_chunk_QGM4M3NI.__commonJS)({
789
814
  };
790
815
  }
791
816
  });
792
- var require_src = (0, import_chunk_QGM4M3NI.__commonJS)({
793
- "../../node_modules/.pnpm/debug@4.4.0/node_modules/debug/src/index.js"(exports, module2) {
817
+ var require_src = (0, import_chunk_2ESYSVXG.__commonJS)({
818
+ "../../node_modules/.pnpm/debug@4.4.0_supports-color@10.2.2/node_modules/debug/src/index.js"(exports, module2) {
794
819
  "use strict";
795
820
  if (typeof process === "undefined" || process.type === "renderer" || process.browser === true || process.__nwjs) {
796
821
  module2.exports = require_browser();
@@ -799,7 +824,7 @@ var require_src = (0, import_chunk_QGM4M3NI.__commonJS)({
799
824
  }
800
825
  }
801
826
  });
802
- var require_helpers = (0, import_chunk_QGM4M3NI.__commonJS)({
827
+ var require_helpers = (0, import_chunk_2ESYSVXG.__commonJS)({
803
828
  "../../node_modules/.pnpm/agent-base@7.1.0/node_modules/agent-base/dist/helpers.js"(exports) {
804
829
  "use strict";
805
830
  var __createBinding = exports && exports.__createBinding || (Object.create ? function(o, m, k, k2) {
@@ -831,8 +856,8 @@ var require_helpers = (0, import_chunk_QGM4M3NI.__commonJS)({
831
856
  };
832
857
  Object.defineProperty(exports, "__esModule", { value: true });
833
858
  exports.req = exports.json = exports.toBuffer = void 0;
834
- var http = __importStar((0, import_chunk_QGM4M3NI.__require)("http"));
835
- var https = __importStar((0, import_chunk_QGM4M3NI.__require)("https"));
859
+ var http = __importStar((0, import_chunk_2ESYSVXG.__require)("http"));
860
+ var https = __importStar((0, import_chunk_2ESYSVXG.__require)("https"));
836
861
  async function toBuffer(stream) {
837
862
  let length = 0;
838
863
  const chunks = [];
@@ -867,7 +892,7 @@ var require_helpers = (0, import_chunk_QGM4M3NI.__commonJS)({
867
892
  exports.req = req;
868
893
  }
869
894
  });
870
- var require_dist = (0, import_chunk_QGM4M3NI.__commonJS)({
895
+ var require_dist = (0, import_chunk_2ESYSVXG.__commonJS)({
871
896
  "../../node_modules/.pnpm/agent-base@7.1.0/node_modules/agent-base/dist/index.js"(exports) {
872
897
  "use strict";
873
898
  var __createBinding = exports && exports.__createBinding || (Object.create ? function(o, m, k, k2) {
@@ -902,7 +927,7 @@ var require_dist = (0, import_chunk_QGM4M3NI.__commonJS)({
902
927
  };
903
928
  Object.defineProperty(exports, "__esModule", { value: true });
904
929
  exports.Agent = void 0;
905
- var http = __importStar((0, import_chunk_QGM4M3NI.__require)("http"));
930
+ var http = __importStar((0, import_chunk_2ESYSVXG.__require)("http"));
906
931
  __exportStar(require_helpers(), exports);
907
932
  var INTERNAL = Symbol("AgentBaseInternalState");
908
933
  var Agent = class extends http.Agent {
@@ -968,7 +993,7 @@ var require_dist = (0, import_chunk_QGM4M3NI.__commonJS)({
968
993
  exports.Agent = Agent;
969
994
  }
970
995
  });
971
- var require_dist2 = (0, import_chunk_QGM4M3NI.__commonJS)({
996
+ var require_dist2 = (0, import_chunk_2ESYSVXG.__commonJS)({
972
997
  "../../node_modules/.pnpm/http-proxy-agent@7.0.2/node_modules/http-proxy-agent/dist/index.js"(exports) {
973
998
  "use strict";
974
999
  var __createBinding = exports && exports.__createBinding || (Object.create ? function(o, m, k, k2) {
@@ -1003,12 +1028,12 @@ var require_dist2 = (0, import_chunk_QGM4M3NI.__commonJS)({
1003
1028
  };
1004
1029
  Object.defineProperty(exports, "__esModule", { value: true });
1005
1030
  exports.HttpProxyAgent = void 0;
1006
- var net = __importStar((0, import_chunk_QGM4M3NI.__require)("net"));
1007
- var tls = __importStar((0, import_chunk_QGM4M3NI.__require)("tls"));
1031
+ var net = __importStar((0, import_chunk_2ESYSVXG.__require)("net"));
1032
+ var tls = __importStar((0, import_chunk_2ESYSVXG.__require)("tls"));
1008
1033
  var debug_1 = __importDefault(require_src());
1009
- var events_1 = (0, import_chunk_QGM4M3NI.__require)("events");
1034
+ var events_1 = (0, import_chunk_2ESYSVXG.__require)("events");
1010
1035
  var agent_base_1 = require_dist();
1011
- var url_1 = (0, import_chunk_QGM4M3NI.__require)("url");
1036
+ var url_1 = (0, import_chunk_2ESYSVXG.__require)("url");
1012
1037
  var debug2 = (0, debug_1.default)("http-proxy-agent");
1013
1038
  var HttpProxyAgent2 = class extends agent_base_1.Agent {
1014
1039
  constructor(proxy, opts) {
@@ -1096,7 +1121,7 @@ var require_dist2 = (0, import_chunk_QGM4M3NI.__commonJS)({
1096
1121
  }
1097
1122
  }
1098
1123
  });
1099
- var require_helpers2 = (0, import_chunk_QGM4M3NI.__commonJS)({
1124
+ var require_helpers2 = (0, import_chunk_2ESYSVXG.__commonJS)({
1100
1125
  "../../node_modules/.pnpm/agent-base@7.1.3/node_modules/agent-base/dist/helpers.js"(exports) {
1101
1126
  "use strict";
1102
1127
  var __createBinding = exports && exports.__createBinding || (Object.create ? function(o, m, k, k2) {
@@ -1128,8 +1153,8 @@ var require_helpers2 = (0, import_chunk_QGM4M3NI.__commonJS)({
1128
1153
  };
1129
1154
  Object.defineProperty(exports, "__esModule", { value: true });
1130
1155
  exports.req = exports.json = exports.toBuffer = void 0;
1131
- var http = __importStar((0, import_chunk_QGM4M3NI.__require)("http"));
1132
- var https = __importStar((0, import_chunk_QGM4M3NI.__require)("https"));
1156
+ var http = __importStar((0, import_chunk_2ESYSVXG.__require)("http"));
1157
+ var https = __importStar((0, import_chunk_2ESYSVXG.__require)("https"));
1133
1158
  async function toBuffer(stream) {
1134
1159
  let length = 0;
1135
1160
  const chunks = [];
@@ -1164,7 +1189,7 @@ var require_helpers2 = (0, import_chunk_QGM4M3NI.__commonJS)({
1164
1189
  exports.req = req;
1165
1190
  }
1166
1191
  });
1167
- var require_dist3 = (0, import_chunk_QGM4M3NI.__commonJS)({
1192
+ var require_dist3 = (0, import_chunk_2ESYSVXG.__commonJS)({
1168
1193
  "../../node_modules/.pnpm/agent-base@7.1.3/node_modules/agent-base/dist/index.js"(exports) {
1169
1194
  "use strict";
1170
1195
  var __createBinding = exports && exports.__createBinding || (Object.create ? function(o, m, k, k2) {
@@ -1199,9 +1224,9 @@ var require_dist3 = (0, import_chunk_QGM4M3NI.__commonJS)({
1199
1224
  };
1200
1225
  Object.defineProperty(exports, "__esModule", { value: true });
1201
1226
  exports.Agent = void 0;
1202
- var net = __importStar((0, import_chunk_QGM4M3NI.__require)("net"));
1203
- var http = __importStar((0, import_chunk_QGM4M3NI.__require)("http"));
1204
- var https_1 = (0, import_chunk_QGM4M3NI.__require)("https");
1227
+ var net = __importStar((0, import_chunk_2ESYSVXG.__require)("net"));
1228
+ var http = __importStar((0, import_chunk_2ESYSVXG.__require)("http"));
1229
+ var https_1 = (0, import_chunk_2ESYSVXG.__require)("https");
1205
1230
  __exportStar(require_helpers2(), exports);
1206
1231
  var INTERNAL = Symbol("AgentBaseInternalState");
1207
1232
  var Agent = class extends http.Agent {
@@ -1318,8 +1343,8 @@ var require_dist3 = (0, import_chunk_QGM4M3NI.__commonJS)({
1318
1343
  exports.Agent = Agent;
1319
1344
  }
1320
1345
  });
1321
- var require_parse_proxy_response = (0, import_chunk_QGM4M3NI.__commonJS)({
1322
- "../../node_modules/.pnpm/https-proxy-agent@7.0.6/node_modules/https-proxy-agent/dist/parse-proxy-response.js"(exports) {
1346
+ var require_parse_proxy_response = (0, import_chunk_2ESYSVXG.__commonJS)({
1347
+ "../../node_modules/.pnpm/https-proxy-agent@7.0.6_supports-color@10.2.2/node_modules/https-proxy-agent/dist/parse-proxy-response.js"(exports) {
1323
1348
  "use strict";
1324
1349
  var __importDefault = exports && exports.__importDefault || function(mod) {
1325
1350
  return mod && mod.__esModule ? mod : { "default": mod };
@@ -1412,8 +1437,8 @@ var require_parse_proxy_response = (0, import_chunk_QGM4M3NI.__commonJS)({
1412
1437
  exports.parseProxyResponse = parseProxyResponse;
1413
1438
  }
1414
1439
  });
1415
- var require_dist4 = (0, import_chunk_QGM4M3NI.__commonJS)({
1416
- "../../node_modules/.pnpm/https-proxy-agent@7.0.6/node_modules/https-proxy-agent/dist/index.js"(exports) {
1440
+ var require_dist4 = (0, import_chunk_2ESYSVXG.__commonJS)({
1441
+ "../../node_modules/.pnpm/https-proxy-agent@7.0.6_supports-color@10.2.2/node_modules/https-proxy-agent/dist/index.js"(exports) {
1417
1442
  "use strict";
1418
1443
  var __createBinding = exports && exports.__createBinding || (Object.create ? function(o, m, k, k2) {
1419
1444
  if (k2 === void 0) k2 = k;
@@ -1447,12 +1472,12 @@ var require_dist4 = (0, import_chunk_QGM4M3NI.__commonJS)({
1447
1472
  };
1448
1473
  Object.defineProperty(exports, "__esModule", { value: true });
1449
1474
  exports.HttpsProxyAgent = void 0;
1450
- var net = __importStar((0, import_chunk_QGM4M3NI.__require)("net"));
1451
- var tls = __importStar((0, import_chunk_QGM4M3NI.__require)("tls"));
1452
- var assert_1 = __importDefault((0, import_chunk_QGM4M3NI.__require)("assert"));
1475
+ var net = __importStar((0, import_chunk_2ESYSVXG.__require)("net"));
1476
+ var tls = __importStar((0, import_chunk_2ESYSVXG.__require)("tls"));
1477
+ var assert_1 = __importDefault((0, import_chunk_2ESYSVXG.__require)("assert"));
1453
1478
  var debug_1 = __importDefault(require_src());
1454
1479
  var agent_base_1 = require_dist3();
1455
- var url_1 = (0, import_chunk_QGM4M3NI.__require)("url");
1480
+ var url_1 = (0, import_chunk_2ESYSVXG.__require)("url");
1456
1481
  var parse_proxy_response_1 = require_parse_proxy_response();
1457
1482
  var debug2 = (0, debug_1.default)("https-proxy-agent");
1458
1483
  var setServernameFromNonIpHost = (options) => {
@@ -1560,8 +1585,8 @@ var require_dist4 = (0, import_chunk_QGM4M3NI.__commonJS)({
1560
1585
  }
1561
1586
  }
1562
1587
  });
1563
- var import_http_proxy_agent = (0, import_chunk_QGM4M3NI.__toESM)(require_dist2());
1564
- var import_https_proxy_agent = (0, import_chunk_QGM4M3NI.__toESM)(require_dist4());
1588
+ var import_http_proxy_agent = (0, import_chunk_2ESYSVXG.__toESM)(require_dist2());
1589
+ var import_https_proxy_agent = (0, import_chunk_2ESYSVXG.__toESM)(require_dist4());
1565
1590
  var debug = (0, import_debug.default)("prisma:fetch-engine:getProxyAgent");
1566
1591
  function formatHostname(hostname) {
1567
1592
  return hostname.replace(/^\.*/, ".").toLowerCase();