@prisma/query-plan-executor 6.17.0-dev.23 → 6.17.0-dev.25
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/dist/index.js +544 -8
- package/package.json +6 -6
package/dist/index.js
CHANGED
|
@@ -39561,6 +39561,542 @@ var init_formDataPolicy = __esm({
|
|
|
39561
39561
|
}
|
|
39562
39562
|
});
|
|
39563
39563
|
|
|
39564
|
+
// ../../node_modules/.pnpm/debug@4.4.1/node_modules/debug/src/common.js
|
|
39565
|
+
var require_common2 = __commonJS({
|
|
39566
|
+
"../../node_modules/.pnpm/debug@4.4.1/node_modules/debug/src/common.js"(exports2, module2) {
|
|
39567
|
+
"use strict";
|
|
39568
|
+
function setup(env) {
|
|
39569
|
+
createDebug.debug = createDebug;
|
|
39570
|
+
createDebug.default = createDebug;
|
|
39571
|
+
createDebug.coerce = coerce;
|
|
39572
|
+
createDebug.disable = disable2;
|
|
39573
|
+
createDebug.enable = enable2;
|
|
39574
|
+
createDebug.enabled = enabled2;
|
|
39575
|
+
createDebug.humanize = require_ms();
|
|
39576
|
+
createDebug.destroy = destroy2;
|
|
39577
|
+
Object.keys(env).forEach((key) => {
|
|
39578
|
+
createDebug[key] = env[key];
|
|
39579
|
+
});
|
|
39580
|
+
createDebug.names = [];
|
|
39581
|
+
createDebug.skips = [];
|
|
39582
|
+
createDebug.formatters = {};
|
|
39583
|
+
function selectColor(namespace) {
|
|
39584
|
+
let hash2 = 0;
|
|
39585
|
+
for (let i2 = 0; i2 < namespace.length; i2++) {
|
|
39586
|
+
hash2 = (hash2 << 5) - hash2 + namespace.charCodeAt(i2);
|
|
39587
|
+
hash2 |= 0;
|
|
39588
|
+
}
|
|
39589
|
+
return createDebug.colors[Math.abs(hash2) % createDebug.colors.length];
|
|
39590
|
+
}
|
|
39591
|
+
createDebug.selectColor = selectColor;
|
|
39592
|
+
function createDebug(namespace) {
|
|
39593
|
+
let prevTime;
|
|
39594
|
+
let enableOverride = null;
|
|
39595
|
+
let namespacesCache;
|
|
39596
|
+
let enabledCache;
|
|
39597
|
+
function debug7(...args) {
|
|
39598
|
+
if (!debug7.enabled) {
|
|
39599
|
+
return;
|
|
39600
|
+
}
|
|
39601
|
+
const self2 = debug7;
|
|
39602
|
+
const curr = Number(/* @__PURE__ */ new Date());
|
|
39603
|
+
const ms = curr - (prevTime || curr);
|
|
39604
|
+
self2.diff = ms;
|
|
39605
|
+
self2.prev = prevTime;
|
|
39606
|
+
self2.curr = curr;
|
|
39607
|
+
prevTime = curr;
|
|
39608
|
+
args[0] = createDebug.coerce(args[0]);
|
|
39609
|
+
if (typeof args[0] !== "string") {
|
|
39610
|
+
args.unshift("%O");
|
|
39611
|
+
}
|
|
39612
|
+
let index = 0;
|
|
39613
|
+
args[0] = args[0].replace(/%([a-zA-Z%])/g, (match, format) => {
|
|
39614
|
+
if (match === "%%") {
|
|
39615
|
+
return "%";
|
|
39616
|
+
}
|
|
39617
|
+
index++;
|
|
39618
|
+
const formatter = createDebug.formatters[format];
|
|
39619
|
+
if (typeof formatter === "function") {
|
|
39620
|
+
const val = args[index];
|
|
39621
|
+
match = formatter.call(self2, val);
|
|
39622
|
+
args.splice(index, 1);
|
|
39623
|
+
index--;
|
|
39624
|
+
}
|
|
39625
|
+
return match;
|
|
39626
|
+
});
|
|
39627
|
+
createDebug.formatArgs.call(self2, args);
|
|
39628
|
+
const logFn = self2.log || createDebug.log;
|
|
39629
|
+
logFn.apply(self2, args);
|
|
39630
|
+
}
|
|
39631
|
+
debug7.namespace = namespace;
|
|
39632
|
+
debug7.useColors = createDebug.useColors();
|
|
39633
|
+
debug7.color = createDebug.selectColor(namespace);
|
|
39634
|
+
debug7.extend = extend3;
|
|
39635
|
+
debug7.destroy = createDebug.destroy;
|
|
39636
|
+
Object.defineProperty(debug7, "enabled", {
|
|
39637
|
+
enumerable: true,
|
|
39638
|
+
configurable: false,
|
|
39639
|
+
get: () => {
|
|
39640
|
+
if (enableOverride !== null) {
|
|
39641
|
+
return enableOverride;
|
|
39642
|
+
}
|
|
39643
|
+
if (namespacesCache !== createDebug.namespaces) {
|
|
39644
|
+
namespacesCache = createDebug.namespaces;
|
|
39645
|
+
enabledCache = createDebug.enabled(namespace);
|
|
39646
|
+
}
|
|
39647
|
+
return enabledCache;
|
|
39648
|
+
},
|
|
39649
|
+
set: (v2) => {
|
|
39650
|
+
enableOverride = v2;
|
|
39651
|
+
}
|
|
39652
|
+
});
|
|
39653
|
+
if (typeof createDebug.init === "function") {
|
|
39654
|
+
createDebug.init(debug7);
|
|
39655
|
+
}
|
|
39656
|
+
return debug7;
|
|
39657
|
+
}
|
|
39658
|
+
function extend3(namespace, delimiter) {
|
|
39659
|
+
const newDebug = createDebug(this.namespace + (typeof delimiter === "undefined" ? ":" : delimiter) + namespace);
|
|
39660
|
+
newDebug.log = this.log;
|
|
39661
|
+
return newDebug;
|
|
39662
|
+
}
|
|
39663
|
+
function enable2(namespaces) {
|
|
39664
|
+
createDebug.save(namespaces);
|
|
39665
|
+
createDebug.namespaces = namespaces;
|
|
39666
|
+
createDebug.names = [];
|
|
39667
|
+
createDebug.skips = [];
|
|
39668
|
+
const split = (typeof namespaces === "string" ? namespaces : "").trim().replace(/\s+/g, ",").split(",").filter(Boolean);
|
|
39669
|
+
for (const ns of split) {
|
|
39670
|
+
if (ns[0] === "-") {
|
|
39671
|
+
createDebug.skips.push(ns.slice(1));
|
|
39672
|
+
} else {
|
|
39673
|
+
createDebug.names.push(ns);
|
|
39674
|
+
}
|
|
39675
|
+
}
|
|
39676
|
+
}
|
|
39677
|
+
function matchesTemplate(search, template) {
|
|
39678
|
+
let searchIndex = 0;
|
|
39679
|
+
let templateIndex = 0;
|
|
39680
|
+
let starIndex = -1;
|
|
39681
|
+
let matchIndex = 0;
|
|
39682
|
+
while (searchIndex < search.length) {
|
|
39683
|
+
if (templateIndex < template.length && (template[templateIndex] === search[searchIndex] || template[templateIndex] === "*")) {
|
|
39684
|
+
if (template[templateIndex] === "*") {
|
|
39685
|
+
starIndex = templateIndex;
|
|
39686
|
+
matchIndex = searchIndex;
|
|
39687
|
+
templateIndex++;
|
|
39688
|
+
} else {
|
|
39689
|
+
searchIndex++;
|
|
39690
|
+
templateIndex++;
|
|
39691
|
+
}
|
|
39692
|
+
} else if (starIndex !== -1) {
|
|
39693
|
+
templateIndex = starIndex + 1;
|
|
39694
|
+
matchIndex++;
|
|
39695
|
+
searchIndex = matchIndex;
|
|
39696
|
+
} else {
|
|
39697
|
+
return false;
|
|
39698
|
+
}
|
|
39699
|
+
}
|
|
39700
|
+
while (templateIndex < template.length && template[templateIndex] === "*") {
|
|
39701
|
+
templateIndex++;
|
|
39702
|
+
}
|
|
39703
|
+
return templateIndex === template.length;
|
|
39704
|
+
}
|
|
39705
|
+
function disable2() {
|
|
39706
|
+
const namespaces = [
|
|
39707
|
+
...createDebug.names,
|
|
39708
|
+
...createDebug.skips.map((namespace) => "-" + namespace)
|
|
39709
|
+
].join(",");
|
|
39710
|
+
createDebug.enable("");
|
|
39711
|
+
return namespaces;
|
|
39712
|
+
}
|
|
39713
|
+
function enabled2(name6) {
|
|
39714
|
+
for (const skip of createDebug.skips) {
|
|
39715
|
+
if (matchesTemplate(name6, skip)) {
|
|
39716
|
+
return false;
|
|
39717
|
+
}
|
|
39718
|
+
}
|
|
39719
|
+
for (const ns of createDebug.names) {
|
|
39720
|
+
if (matchesTemplate(name6, ns)) {
|
|
39721
|
+
return true;
|
|
39722
|
+
}
|
|
39723
|
+
}
|
|
39724
|
+
return false;
|
|
39725
|
+
}
|
|
39726
|
+
function coerce(val) {
|
|
39727
|
+
if (val instanceof Error) {
|
|
39728
|
+
return val.stack || val.message;
|
|
39729
|
+
}
|
|
39730
|
+
return val;
|
|
39731
|
+
}
|
|
39732
|
+
function destroy2() {
|
|
39733
|
+
console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.");
|
|
39734
|
+
}
|
|
39735
|
+
createDebug.enable(createDebug.load());
|
|
39736
|
+
return createDebug;
|
|
39737
|
+
}
|
|
39738
|
+
module2.exports = setup;
|
|
39739
|
+
}
|
|
39740
|
+
});
|
|
39741
|
+
|
|
39742
|
+
// ../../node_modules/.pnpm/debug@4.4.1/node_modules/debug/src/browser.js
|
|
39743
|
+
var require_browser2 = __commonJS({
|
|
39744
|
+
"../../node_modules/.pnpm/debug@4.4.1/node_modules/debug/src/browser.js"(exports2, module2) {
|
|
39745
|
+
"use strict";
|
|
39746
|
+
exports2.formatArgs = formatArgs;
|
|
39747
|
+
exports2.save = save;
|
|
39748
|
+
exports2.load = load;
|
|
39749
|
+
exports2.useColors = useColors;
|
|
39750
|
+
exports2.storage = localstorage();
|
|
39751
|
+
exports2.destroy = /* @__PURE__ */ (() => {
|
|
39752
|
+
let warned = false;
|
|
39753
|
+
return () => {
|
|
39754
|
+
if (!warned) {
|
|
39755
|
+
warned = true;
|
|
39756
|
+
console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.");
|
|
39757
|
+
}
|
|
39758
|
+
};
|
|
39759
|
+
})();
|
|
39760
|
+
exports2.colors = [
|
|
39761
|
+
"#0000CC",
|
|
39762
|
+
"#0000FF",
|
|
39763
|
+
"#0033CC",
|
|
39764
|
+
"#0033FF",
|
|
39765
|
+
"#0066CC",
|
|
39766
|
+
"#0066FF",
|
|
39767
|
+
"#0099CC",
|
|
39768
|
+
"#0099FF",
|
|
39769
|
+
"#00CC00",
|
|
39770
|
+
"#00CC33",
|
|
39771
|
+
"#00CC66",
|
|
39772
|
+
"#00CC99",
|
|
39773
|
+
"#00CCCC",
|
|
39774
|
+
"#00CCFF",
|
|
39775
|
+
"#3300CC",
|
|
39776
|
+
"#3300FF",
|
|
39777
|
+
"#3333CC",
|
|
39778
|
+
"#3333FF",
|
|
39779
|
+
"#3366CC",
|
|
39780
|
+
"#3366FF",
|
|
39781
|
+
"#3399CC",
|
|
39782
|
+
"#3399FF",
|
|
39783
|
+
"#33CC00",
|
|
39784
|
+
"#33CC33",
|
|
39785
|
+
"#33CC66",
|
|
39786
|
+
"#33CC99",
|
|
39787
|
+
"#33CCCC",
|
|
39788
|
+
"#33CCFF",
|
|
39789
|
+
"#6600CC",
|
|
39790
|
+
"#6600FF",
|
|
39791
|
+
"#6633CC",
|
|
39792
|
+
"#6633FF",
|
|
39793
|
+
"#66CC00",
|
|
39794
|
+
"#66CC33",
|
|
39795
|
+
"#9900CC",
|
|
39796
|
+
"#9900FF",
|
|
39797
|
+
"#9933CC",
|
|
39798
|
+
"#9933FF",
|
|
39799
|
+
"#99CC00",
|
|
39800
|
+
"#99CC33",
|
|
39801
|
+
"#CC0000",
|
|
39802
|
+
"#CC0033",
|
|
39803
|
+
"#CC0066",
|
|
39804
|
+
"#CC0099",
|
|
39805
|
+
"#CC00CC",
|
|
39806
|
+
"#CC00FF",
|
|
39807
|
+
"#CC3300",
|
|
39808
|
+
"#CC3333",
|
|
39809
|
+
"#CC3366",
|
|
39810
|
+
"#CC3399",
|
|
39811
|
+
"#CC33CC",
|
|
39812
|
+
"#CC33FF",
|
|
39813
|
+
"#CC6600",
|
|
39814
|
+
"#CC6633",
|
|
39815
|
+
"#CC9900",
|
|
39816
|
+
"#CC9933",
|
|
39817
|
+
"#CCCC00",
|
|
39818
|
+
"#CCCC33",
|
|
39819
|
+
"#FF0000",
|
|
39820
|
+
"#FF0033",
|
|
39821
|
+
"#FF0066",
|
|
39822
|
+
"#FF0099",
|
|
39823
|
+
"#FF00CC",
|
|
39824
|
+
"#FF00FF",
|
|
39825
|
+
"#FF3300",
|
|
39826
|
+
"#FF3333",
|
|
39827
|
+
"#FF3366",
|
|
39828
|
+
"#FF3399",
|
|
39829
|
+
"#FF33CC",
|
|
39830
|
+
"#FF33FF",
|
|
39831
|
+
"#FF6600",
|
|
39832
|
+
"#FF6633",
|
|
39833
|
+
"#FF9900",
|
|
39834
|
+
"#FF9933",
|
|
39835
|
+
"#FFCC00",
|
|
39836
|
+
"#FFCC33"
|
|
39837
|
+
];
|
|
39838
|
+
function useColors() {
|
|
39839
|
+
if (typeof window !== "undefined" && window.process && (window.process.type === "renderer" || window.process.__nwjs)) {
|
|
39840
|
+
return true;
|
|
39841
|
+
}
|
|
39842
|
+
if (typeof navigator !== "undefined" && navigator.userAgent && navigator.userAgent.toLowerCase().match(/(edge|trident)\/(\d+)/)) {
|
|
39843
|
+
return false;
|
|
39844
|
+
}
|
|
39845
|
+
let m2;
|
|
39846
|
+
return typeof document !== "undefined" && document.documentElement && document.documentElement.style && document.documentElement.style.WebkitAppearance || // Is firebug? http://stackoverflow.com/a/398120/376773
|
|
39847
|
+
typeof window !== "undefined" && window.console && (window.console.firebug || window.console.exception && window.console.table) || // Is firefox >= v31?
|
|
39848
|
+
// https://developer.mozilla.org/en-US/docs/Tools/Web_Console#Styling_messages
|
|
39849
|
+
typeof navigator !== "undefined" && navigator.userAgent && (m2 = navigator.userAgent.toLowerCase().match(/firefox\/(\d+)/)) && parseInt(m2[1], 10) >= 31 || // Double check webkit in userAgent just in case we are in a worker
|
|
39850
|
+
typeof navigator !== "undefined" && navigator.userAgent && navigator.userAgent.toLowerCase().match(/applewebkit\/(\d+)/);
|
|
39851
|
+
}
|
|
39852
|
+
function formatArgs(args) {
|
|
39853
|
+
args[0] = (this.useColors ? "%c" : "") + this.namespace + (this.useColors ? " %c" : " ") + args[0] + (this.useColors ? "%c " : " ") + "+" + module2.exports.humanize(this.diff);
|
|
39854
|
+
if (!this.useColors) {
|
|
39855
|
+
return;
|
|
39856
|
+
}
|
|
39857
|
+
const c2 = "color: " + this.color;
|
|
39858
|
+
args.splice(1, 0, c2, "color: inherit");
|
|
39859
|
+
let index = 0;
|
|
39860
|
+
let lastC = 0;
|
|
39861
|
+
args[0].replace(/%[a-zA-Z%]/g, (match) => {
|
|
39862
|
+
if (match === "%%") {
|
|
39863
|
+
return;
|
|
39864
|
+
}
|
|
39865
|
+
index++;
|
|
39866
|
+
if (match === "%c") {
|
|
39867
|
+
lastC = index;
|
|
39868
|
+
}
|
|
39869
|
+
});
|
|
39870
|
+
args.splice(lastC, 0, c2);
|
|
39871
|
+
}
|
|
39872
|
+
exports2.log = console.debug || console.log || (() => {
|
|
39873
|
+
});
|
|
39874
|
+
function save(namespaces) {
|
|
39875
|
+
try {
|
|
39876
|
+
if (namespaces) {
|
|
39877
|
+
exports2.storage.setItem("debug", namespaces);
|
|
39878
|
+
} else {
|
|
39879
|
+
exports2.storage.removeItem("debug");
|
|
39880
|
+
}
|
|
39881
|
+
} catch (error44) {
|
|
39882
|
+
}
|
|
39883
|
+
}
|
|
39884
|
+
function load() {
|
|
39885
|
+
let r2;
|
|
39886
|
+
try {
|
|
39887
|
+
r2 = exports2.storage.getItem("debug") || exports2.storage.getItem("DEBUG");
|
|
39888
|
+
} catch (error44) {
|
|
39889
|
+
}
|
|
39890
|
+
if (!r2 && typeof process !== "undefined" && "env" in process) {
|
|
39891
|
+
r2 = process.env.DEBUG;
|
|
39892
|
+
}
|
|
39893
|
+
return r2;
|
|
39894
|
+
}
|
|
39895
|
+
function localstorage() {
|
|
39896
|
+
try {
|
|
39897
|
+
return localStorage;
|
|
39898
|
+
} catch (error44) {
|
|
39899
|
+
}
|
|
39900
|
+
}
|
|
39901
|
+
module2.exports = require_common2()(exports2);
|
|
39902
|
+
var { formatters } = module2.exports;
|
|
39903
|
+
formatters.j = function(v2) {
|
|
39904
|
+
try {
|
|
39905
|
+
return JSON.stringify(v2);
|
|
39906
|
+
} catch (error44) {
|
|
39907
|
+
return "[UnexpectedJSONParseError]: " + error44.message;
|
|
39908
|
+
}
|
|
39909
|
+
};
|
|
39910
|
+
}
|
|
39911
|
+
});
|
|
39912
|
+
|
|
39913
|
+
// ../../node_modules/.pnpm/debug@4.4.1/node_modules/debug/src/node.js
|
|
39914
|
+
var require_node2 = __commonJS({
|
|
39915
|
+
"../../node_modules/.pnpm/debug@4.4.1/node_modules/debug/src/node.js"(exports2, module2) {
|
|
39916
|
+
"use strict";
|
|
39917
|
+
var tty = require("tty");
|
|
39918
|
+
var util2 = require("util");
|
|
39919
|
+
exports2.init = init3;
|
|
39920
|
+
exports2.log = log4;
|
|
39921
|
+
exports2.formatArgs = formatArgs;
|
|
39922
|
+
exports2.save = save;
|
|
39923
|
+
exports2.load = load;
|
|
39924
|
+
exports2.useColors = useColors;
|
|
39925
|
+
exports2.destroy = util2.deprecate(
|
|
39926
|
+
() => {
|
|
39927
|
+
},
|
|
39928
|
+
"Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`."
|
|
39929
|
+
);
|
|
39930
|
+
exports2.colors = [6, 2, 3, 4, 5, 1];
|
|
39931
|
+
try {
|
|
39932
|
+
const supportsColor = require_supports_color();
|
|
39933
|
+
if (supportsColor && (supportsColor.stderr || supportsColor).level >= 2) {
|
|
39934
|
+
exports2.colors = [
|
|
39935
|
+
20,
|
|
39936
|
+
21,
|
|
39937
|
+
26,
|
|
39938
|
+
27,
|
|
39939
|
+
32,
|
|
39940
|
+
33,
|
|
39941
|
+
38,
|
|
39942
|
+
39,
|
|
39943
|
+
40,
|
|
39944
|
+
41,
|
|
39945
|
+
42,
|
|
39946
|
+
43,
|
|
39947
|
+
44,
|
|
39948
|
+
45,
|
|
39949
|
+
56,
|
|
39950
|
+
57,
|
|
39951
|
+
62,
|
|
39952
|
+
63,
|
|
39953
|
+
68,
|
|
39954
|
+
69,
|
|
39955
|
+
74,
|
|
39956
|
+
75,
|
|
39957
|
+
76,
|
|
39958
|
+
77,
|
|
39959
|
+
78,
|
|
39960
|
+
79,
|
|
39961
|
+
80,
|
|
39962
|
+
81,
|
|
39963
|
+
92,
|
|
39964
|
+
93,
|
|
39965
|
+
98,
|
|
39966
|
+
99,
|
|
39967
|
+
112,
|
|
39968
|
+
113,
|
|
39969
|
+
128,
|
|
39970
|
+
129,
|
|
39971
|
+
134,
|
|
39972
|
+
135,
|
|
39973
|
+
148,
|
|
39974
|
+
149,
|
|
39975
|
+
160,
|
|
39976
|
+
161,
|
|
39977
|
+
162,
|
|
39978
|
+
163,
|
|
39979
|
+
164,
|
|
39980
|
+
165,
|
|
39981
|
+
166,
|
|
39982
|
+
167,
|
|
39983
|
+
168,
|
|
39984
|
+
169,
|
|
39985
|
+
170,
|
|
39986
|
+
171,
|
|
39987
|
+
172,
|
|
39988
|
+
173,
|
|
39989
|
+
178,
|
|
39990
|
+
179,
|
|
39991
|
+
184,
|
|
39992
|
+
185,
|
|
39993
|
+
196,
|
|
39994
|
+
197,
|
|
39995
|
+
198,
|
|
39996
|
+
199,
|
|
39997
|
+
200,
|
|
39998
|
+
201,
|
|
39999
|
+
202,
|
|
40000
|
+
203,
|
|
40001
|
+
204,
|
|
40002
|
+
205,
|
|
40003
|
+
206,
|
|
40004
|
+
207,
|
|
40005
|
+
208,
|
|
40006
|
+
209,
|
|
40007
|
+
214,
|
|
40008
|
+
215,
|
|
40009
|
+
220,
|
|
40010
|
+
221
|
|
40011
|
+
];
|
|
40012
|
+
}
|
|
40013
|
+
} catch (error44) {
|
|
40014
|
+
}
|
|
40015
|
+
exports2.inspectOpts = Object.keys(process.env).filter((key) => {
|
|
40016
|
+
return /^debug_/i.test(key);
|
|
40017
|
+
}).reduce((obj, key) => {
|
|
40018
|
+
const prop = key.substring(6).toLowerCase().replace(/_([a-z])/g, (_3, k2) => {
|
|
40019
|
+
return k2.toUpperCase();
|
|
40020
|
+
});
|
|
40021
|
+
let val = process.env[key];
|
|
40022
|
+
if (/^(yes|on|true|enabled)$/i.test(val)) {
|
|
40023
|
+
val = true;
|
|
40024
|
+
} else if (/^(no|off|false|disabled)$/i.test(val)) {
|
|
40025
|
+
val = false;
|
|
40026
|
+
} else if (val === "null") {
|
|
40027
|
+
val = null;
|
|
40028
|
+
} else {
|
|
40029
|
+
val = Number(val);
|
|
40030
|
+
}
|
|
40031
|
+
obj[prop] = val;
|
|
40032
|
+
return obj;
|
|
40033
|
+
}, {});
|
|
40034
|
+
function useColors() {
|
|
40035
|
+
return "colors" in exports2.inspectOpts ? Boolean(exports2.inspectOpts.colors) : tty.isatty(process.stderr.fd);
|
|
40036
|
+
}
|
|
40037
|
+
function formatArgs(args) {
|
|
40038
|
+
const { namespace: name6, useColors: useColors2 } = this;
|
|
40039
|
+
if (useColors2) {
|
|
40040
|
+
const c2 = this.color;
|
|
40041
|
+
const colorCode = "\x1B[3" + (c2 < 8 ? c2 : "8;5;" + c2);
|
|
40042
|
+
const prefix = ` ${colorCode};1m${name6} \x1B[0m`;
|
|
40043
|
+
args[0] = prefix + args[0].split("\n").join("\n" + prefix);
|
|
40044
|
+
args.push(colorCode + "m+" + module2.exports.humanize(this.diff) + "\x1B[0m");
|
|
40045
|
+
} else {
|
|
40046
|
+
args[0] = getDate() + name6 + " " + args[0];
|
|
40047
|
+
}
|
|
40048
|
+
}
|
|
40049
|
+
function getDate() {
|
|
40050
|
+
if (exports2.inspectOpts.hideDate) {
|
|
40051
|
+
return "";
|
|
40052
|
+
}
|
|
40053
|
+
return (/* @__PURE__ */ new Date()).toISOString() + " ";
|
|
40054
|
+
}
|
|
40055
|
+
function log4(...args) {
|
|
40056
|
+
return process.stderr.write(util2.formatWithOptions(exports2.inspectOpts, ...args) + "\n");
|
|
40057
|
+
}
|
|
40058
|
+
function save(namespaces) {
|
|
40059
|
+
if (namespaces) {
|
|
40060
|
+
process.env.DEBUG = namespaces;
|
|
40061
|
+
} else {
|
|
40062
|
+
delete process.env.DEBUG;
|
|
40063
|
+
}
|
|
40064
|
+
}
|
|
40065
|
+
function load() {
|
|
40066
|
+
return process.env.DEBUG;
|
|
40067
|
+
}
|
|
40068
|
+
function init3(debug7) {
|
|
40069
|
+
debug7.inspectOpts = {};
|
|
40070
|
+
const keys = Object.keys(exports2.inspectOpts);
|
|
40071
|
+
for (let i2 = 0; i2 < keys.length; i2++) {
|
|
40072
|
+
debug7.inspectOpts[keys[i2]] = exports2.inspectOpts[keys[i2]];
|
|
40073
|
+
}
|
|
40074
|
+
}
|
|
40075
|
+
module2.exports = require_common2()(exports2);
|
|
40076
|
+
var { formatters } = module2.exports;
|
|
40077
|
+
formatters.o = function(v2) {
|
|
40078
|
+
this.inspectOpts.colors = this.useColors;
|
|
40079
|
+
return util2.inspect(v2, this.inspectOpts).split("\n").map((str) => str.trim()).join(" ");
|
|
40080
|
+
};
|
|
40081
|
+
formatters.O = function(v2) {
|
|
40082
|
+
this.inspectOpts.colors = this.useColors;
|
|
40083
|
+
return util2.inspect(v2, this.inspectOpts);
|
|
40084
|
+
};
|
|
40085
|
+
}
|
|
40086
|
+
});
|
|
40087
|
+
|
|
40088
|
+
// ../../node_modules/.pnpm/debug@4.4.1/node_modules/debug/src/index.js
|
|
40089
|
+
var require_src3 = __commonJS({
|
|
40090
|
+
"../../node_modules/.pnpm/debug@4.4.1/node_modules/debug/src/index.js"(exports2, module2) {
|
|
40091
|
+
"use strict";
|
|
40092
|
+
if (typeof process === "undefined" || process.type === "renderer" || process.browser === true || process.__nwjs) {
|
|
40093
|
+
module2.exports = require_browser2();
|
|
40094
|
+
} else {
|
|
40095
|
+
module2.exports = require_node2();
|
|
40096
|
+
}
|
|
40097
|
+
}
|
|
40098
|
+
});
|
|
40099
|
+
|
|
39564
40100
|
// ../../node_modules/.pnpm/agent-base@6.0.2/node_modules/agent-base/dist/src/promisify.js
|
|
39565
40101
|
var require_promisify = __commonJS({
|
|
39566
40102
|
"../../node_modules/.pnpm/agent-base@6.0.2/node_modules/agent-base/dist/src/promisify.js"(exports2) {
|
|
@@ -39584,14 +40120,14 @@ var require_promisify = __commonJS({
|
|
|
39584
40120
|
});
|
|
39585
40121
|
|
|
39586
40122
|
// ../../node_modules/.pnpm/agent-base@6.0.2/node_modules/agent-base/dist/src/index.js
|
|
39587
|
-
var
|
|
40123
|
+
var require_src4 = __commonJS({
|
|
39588
40124
|
"../../node_modules/.pnpm/agent-base@6.0.2/node_modules/agent-base/dist/src/index.js"(exports2, module2) {
|
|
39589
40125
|
"use strict";
|
|
39590
40126
|
var __importDefault = exports2 && exports2.__importDefault || function(mod2) {
|
|
39591
40127
|
return mod2 && mod2.__esModule ? mod2 : { "default": mod2 };
|
|
39592
40128
|
};
|
|
39593
40129
|
var events_1 = require("events");
|
|
39594
|
-
var debug_1 = __importDefault(
|
|
40130
|
+
var debug_1 = __importDefault(require_src3());
|
|
39595
40131
|
var promisify_1 = __importDefault(require_promisify());
|
|
39596
40132
|
var debug7 = debug_1.default("agent-base");
|
|
39597
40133
|
function isAgent(v2) {
|
|
@@ -39774,7 +40310,7 @@ var require_parse_proxy_response = __commonJS({
|
|
|
39774
40310
|
return mod2 && mod2.__esModule ? mod2 : { "default": mod2 };
|
|
39775
40311
|
};
|
|
39776
40312
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
39777
|
-
var debug_1 = __importDefault(
|
|
40313
|
+
var debug_1 = __importDefault(require_src3());
|
|
39778
40314
|
var debug7 = debug_1.default("https-proxy-agent:parse-proxy-response");
|
|
39779
40315
|
function parseProxyResponse(socket) {
|
|
39780
40316
|
return new Promise((resolve, reject) => {
|
|
@@ -39871,8 +40407,8 @@ var require_agent = __commonJS({
|
|
|
39871
40407
|
var tls_1 = __importDefault(require("tls"));
|
|
39872
40408
|
var url_1 = __importDefault(require("url"));
|
|
39873
40409
|
var assert_1 = __importDefault(require("assert"));
|
|
39874
|
-
var debug_1 = __importDefault(
|
|
39875
|
-
var agent_base_1 =
|
|
40410
|
+
var debug_1 = __importDefault(require_src3());
|
|
40411
|
+
var agent_base_1 = require_src4();
|
|
39876
40412
|
var parse_proxy_response_1 = __importDefault(require_parse_proxy_response());
|
|
39877
40413
|
var debug7 = debug_1.default("https-proxy-agent:agent");
|
|
39878
40414
|
var HttpsProxyAgent2 = class extends agent_base_1.Agent {
|
|
@@ -40078,9 +40614,9 @@ var require_agent2 = __commonJS({
|
|
|
40078
40614
|
var net_1 = __importDefault(require("net"));
|
|
40079
40615
|
var tls_1 = __importDefault(require("tls"));
|
|
40080
40616
|
var url_1 = __importDefault(require("url"));
|
|
40081
|
-
var debug_1 = __importDefault(
|
|
40617
|
+
var debug_1 = __importDefault(require_src3());
|
|
40082
40618
|
var once_1 = __importDefault(require_dist2());
|
|
40083
|
-
var agent_base_1 =
|
|
40619
|
+
var agent_base_1 = require_src4();
|
|
40084
40620
|
var debug7 = (0, debug_1.default)("http-proxy-agent");
|
|
40085
40621
|
function isHTTPS(protocol) {
|
|
40086
40622
|
return typeof protocol === "string" ? /^https:?$/i.test(protocol) : false;
|
|
@@ -108555,7 +109091,7 @@ function isPromiseLike(value) {
|
|
|
108555
109091
|
}
|
|
108556
109092
|
|
|
108557
109093
|
// package.json
|
|
108558
|
-
var version = "6.17.0-dev.
|
|
109094
|
+
var version = "6.17.0-dev.25";
|
|
108559
109095
|
|
|
108560
109096
|
// src/utils/error.ts
|
|
108561
109097
|
function extractErrorFromUnknown(value) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prisma/query-plan-executor",
|
|
3
|
-
"version": "6.17.0-dev.
|
|
3
|
+
"version": "6.17.0-dev.25",
|
|
4
4
|
"description": "This package is intended for Prisma's internal use",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -20,11 +20,11 @@
|
|
|
20
20
|
"temporal-polyfill": "0.3.0",
|
|
21
21
|
"vitest": "3.2.4",
|
|
22
22
|
"zod": "4.1.3",
|
|
23
|
-
"@prisma/adapter-
|
|
24
|
-
"@prisma/adapter-
|
|
25
|
-
"@prisma/
|
|
26
|
-
"@prisma/
|
|
27
|
-
"@prisma/driver-adapter-utils": "6.17.0-dev.
|
|
23
|
+
"@prisma/adapter-mariadb": "6.17.0-dev.25",
|
|
24
|
+
"@prisma/adapter-pg": "6.17.0-dev.25",
|
|
25
|
+
"@prisma/adapter-mssql": "6.17.0-dev.25",
|
|
26
|
+
"@prisma/client-engine-runtime": "6.17.0-dev.25",
|
|
27
|
+
"@prisma/driver-adapter-utils": "6.17.0-dev.25"
|
|
28
28
|
},
|
|
29
29
|
"files": [
|
|
30
30
|
"dist"
|