@prisma/migrate 5.23.0-dev.5 → 5.23.0-dev.7
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/bin.js +3 -3
- package/dist/{chunk-TS56KVGF.js → chunk-I7ZE6BYA.js} +777 -5
- package/dist/{chunk-E3KHFUFQ.js → chunk-J77IRNPE.js} +9 -124
- package/dist/{chunk-LPCSOMWT.js → chunk-R3NI7DE6.js} +4 -4
- package/dist/commands/MigrateDiff.js +3 -3
- package/dist/index.js +3 -3
- package/dist/utils/setupMSSQL.js +13 -13
- package/dist/utils/setupMongo.js +3 -3
- package/package.json +5 -5
package/dist/bin.js
CHANGED
@@ -60,7 +60,7 @@ var import_chunk_EFPE3Q7J = require("./chunk-EFPE3Q7J.js");
|
|
60
60
|
var import_chunk_WOOPRG54 = require("./chunk-WOOPRG54.js");
|
61
61
|
var import_chunk_6QFE3AWR = require("./chunk-6QFE3AWR.js");
|
62
62
|
var import_chunk_LKTTJWFT = require("./chunk-LKTTJWFT.js");
|
63
|
-
var
|
63
|
+
var import_chunk_R3NI7DE6 = require("./chunk-R3NI7DE6.js");
|
64
64
|
var import_chunk_VWV2NY26 = require("./chunk-VWV2NY26.js");
|
65
65
|
var import_chunk_XRTNIFND = require("./chunk-XRTNIFND.js");
|
66
66
|
var import_chunk_TKAGMA5K = require("./chunk-TKAGMA5K.js");
|
@@ -94,7 +94,7 @@ var require_bin = (0, import_chunk_WWAWV7DQ.__commonJS)({
|
|
94
94
|
(0, import_chunk_CK5VLKFM.init_MigrateCommand)();
|
95
95
|
(0, import_chunk_UJWMQPUH.init_MigrateDeploy)();
|
96
96
|
(0, import_chunk_LLGEQ76N.init_MigrateDev)();
|
97
|
-
(0,
|
97
|
+
(0, import_chunk_R3NI7DE6.init_MigrateDiff)();
|
98
98
|
(0, import_chunk_XVL5RF2T.init_MigrateReset)();
|
99
99
|
(0, import_chunk_BAVMZZAR.init_MigrateResolve)();
|
100
100
|
(0, import_chunk_SV5GANSI.init_MigrateStatus)();
|
@@ -118,7 +118,7 @@ var require_bin = (0, import_chunk_WWAWV7DQ.__commonJS)({
|
|
118
118
|
resolve: import_chunk_BAVMZZAR.MigrateResolve.new(),
|
119
119
|
reset: import_chunk_XVL5RF2T.MigrateReset.new(),
|
120
120
|
deploy: import_chunk_UJWMQPUH.MigrateDeploy.new(),
|
121
|
-
diff:
|
121
|
+
diff: import_chunk_R3NI7DE6.MigrateDiff.new()
|
122
122
|
}),
|
123
123
|
db: import_chunk_NJUAN6V2.DbCommand.new({
|
124
124
|
execute: import_chunk_ZBOJAYON.DbExecute.new(),
|
@@ -26,12 +26,12 @@ 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
|
30
|
-
__export(
|
29
|
+
var chunk_I7ZE6BYA_exports = {};
|
30
|
+
__export(chunk_I7ZE6BYA_exports, {
|
31
31
|
MigrateDiff: () => MigrateDiff,
|
32
32
|
init_MigrateDiff: () => init_MigrateDiff
|
33
33
|
});
|
34
|
-
module.exports = __toCommonJS(
|
34
|
+
module.exports = __toCommonJS(chunk_I7ZE6BYA_exports);
|
35
35
|
var import_chunk_VWV2NY26 = require("./chunk-VWV2NY26.js");
|
36
36
|
var import_chunk_XRTNIFND = require("./chunk-XRTNIFND.js");
|
37
37
|
var import_chunk_TKAGMA5K = require("./chunk-TKAGMA5K.js");
|
@@ -5028,6 +5028,778 @@ var require_ensure = (0, import_chunk_WWAWV7DQ.__commonJS)({
|
|
5028
5028
|
};
|
5029
5029
|
}
|
5030
5030
|
});
|
5031
|
+
var require_polyfills2 = (0, import_chunk_WWAWV7DQ.__commonJS)({
|
5032
|
+
"../../node_modules/.pnpm/graceful-fs@4.2.11/node_modules/graceful-fs/polyfills.js"(exports, module2) {
|
5033
|
+
"use strict";
|
5034
|
+
var constants = (0, import_chunk_WWAWV7DQ.__require)("constants");
|
5035
|
+
var origCwd = process.cwd;
|
5036
|
+
var cwd = null;
|
5037
|
+
var platform = process.env.GRACEFUL_FS_PLATFORM || process.platform;
|
5038
|
+
process.cwd = function() {
|
5039
|
+
if (!cwd)
|
5040
|
+
cwd = origCwd.call(process);
|
5041
|
+
return cwd;
|
5042
|
+
};
|
5043
|
+
try {
|
5044
|
+
process.cwd();
|
5045
|
+
} catch (er) {
|
5046
|
+
}
|
5047
|
+
if (typeof process.chdir === "function") {
|
5048
|
+
chdir = process.chdir;
|
5049
|
+
process.chdir = function(d) {
|
5050
|
+
cwd = null;
|
5051
|
+
chdir.call(process, d);
|
5052
|
+
};
|
5053
|
+
if (Object.setPrototypeOf) Object.setPrototypeOf(process.chdir, chdir);
|
5054
|
+
}
|
5055
|
+
var chdir;
|
5056
|
+
module2.exports = patch;
|
5057
|
+
function patch(fs3) {
|
5058
|
+
if (constants.hasOwnProperty("O_SYMLINK") && process.version.match(/^v0\.6\.[0-2]|^v0\.5\./)) {
|
5059
|
+
patchLchmod(fs3);
|
5060
|
+
}
|
5061
|
+
if (!fs3.lutimes) {
|
5062
|
+
patchLutimes(fs3);
|
5063
|
+
}
|
5064
|
+
fs3.chown = chownFix(fs3.chown);
|
5065
|
+
fs3.fchown = chownFix(fs3.fchown);
|
5066
|
+
fs3.lchown = chownFix(fs3.lchown);
|
5067
|
+
fs3.chmod = chmodFix(fs3.chmod);
|
5068
|
+
fs3.fchmod = chmodFix(fs3.fchmod);
|
5069
|
+
fs3.lchmod = chmodFix(fs3.lchmod);
|
5070
|
+
fs3.chownSync = chownFixSync(fs3.chownSync);
|
5071
|
+
fs3.fchownSync = chownFixSync(fs3.fchownSync);
|
5072
|
+
fs3.lchownSync = chownFixSync(fs3.lchownSync);
|
5073
|
+
fs3.chmodSync = chmodFixSync(fs3.chmodSync);
|
5074
|
+
fs3.fchmodSync = chmodFixSync(fs3.fchmodSync);
|
5075
|
+
fs3.lchmodSync = chmodFixSync(fs3.lchmodSync);
|
5076
|
+
fs3.stat = statFix(fs3.stat);
|
5077
|
+
fs3.fstat = statFix(fs3.fstat);
|
5078
|
+
fs3.lstat = statFix(fs3.lstat);
|
5079
|
+
fs3.statSync = statFixSync(fs3.statSync);
|
5080
|
+
fs3.fstatSync = statFixSync(fs3.fstatSync);
|
5081
|
+
fs3.lstatSync = statFixSync(fs3.lstatSync);
|
5082
|
+
if (fs3.chmod && !fs3.lchmod) {
|
5083
|
+
fs3.lchmod = function(path7, mode, cb) {
|
5084
|
+
if (cb) process.nextTick(cb);
|
5085
|
+
};
|
5086
|
+
fs3.lchmodSync = function() {
|
5087
|
+
};
|
5088
|
+
}
|
5089
|
+
if (fs3.chown && !fs3.lchown) {
|
5090
|
+
fs3.lchown = function(path7, uid, gid, cb) {
|
5091
|
+
if (cb) process.nextTick(cb);
|
5092
|
+
};
|
5093
|
+
fs3.lchownSync = function() {
|
5094
|
+
};
|
5095
|
+
}
|
5096
|
+
if (platform === "win32") {
|
5097
|
+
fs3.rename = typeof fs3.rename !== "function" ? fs3.rename : function(fs$rename) {
|
5098
|
+
function rename(from, to, cb) {
|
5099
|
+
var start = Date.now();
|
5100
|
+
var backoff = 0;
|
5101
|
+
fs$rename(from, to, function CB(er) {
|
5102
|
+
if (er && (er.code === "EACCES" || er.code === "EPERM" || er.code === "EBUSY") && Date.now() - start < 6e4) {
|
5103
|
+
setTimeout(function() {
|
5104
|
+
fs3.stat(to, function(stater, st) {
|
5105
|
+
if (stater && stater.code === "ENOENT")
|
5106
|
+
fs$rename(from, to, CB);
|
5107
|
+
else
|
5108
|
+
cb(er);
|
5109
|
+
});
|
5110
|
+
}, backoff);
|
5111
|
+
if (backoff < 100)
|
5112
|
+
backoff += 10;
|
5113
|
+
return;
|
5114
|
+
}
|
5115
|
+
if (cb) cb(er);
|
5116
|
+
});
|
5117
|
+
}
|
5118
|
+
if (Object.setPrototypeOf) Object.setPrototypeOf(rename, fs$rename);
|
5119
|
+
return rename;
|
5120
|
+
}(fs3.rename);
|
5121
|
+
}
|
5122
|
+
fs3.read = typeof fs3.read !== "function" ? fs3.read : function(fs$read) {
|
5123
|
+
function read(fd, buffer, offset, length, position, callback_) {
|
5124
|
+
var callback;
|
5125
|
+
if (callback_ && typeof callback_ === "function") {
|
5126
|
+
var eagCounter = 0;
|
5127
|
+
callback = function(er, _, __) {
|
5128
|
+
if (er && er.code === "EAGAIN" && eagCounter < 10) {
|
5129
|
+
eagCounter++;
|
5130
|
+
return fs$read.call(fs3, fd, buffer, offset, length, position, callback);
|
5131
|
+
}
|
5132
|
+
callback_.apply(this, arguments);
|
5133
|
+
};
|
5134
|
+
}
|
5135
|
+
return fs$read.call(fs3, fd, buffer, offset, length, position, callback);
|
5136
|
+
}
|
5137
|
+
if (Object.setPrototypeOf) Object.setPrototypeOf(read, fs$read);
|
5138
|
+
return read;
|
5139
|
+
}(fs3.read);
|
5140
|
+
fs3.readSync = typeof fs3.readSync !== "function" ? fs3.readSync : /* @__PURE__ */ function(fs$readSync) {
|
5141
|
+
return function(fd, buffer, offset, length, position) {
|
5142
|
+
var eagCounter = 0;
|
5143
|
+
while (true) {
|
5144
|
+
try {
|
5145
|
+
return fs$readSync.call(fs3, fd, buffer, offset, length, position);
|
5146
|
+
} catch (er) {
|
5147
|
+
if (er.code === "EAGAIN" && eagCounter < 10) {
|
5148
|
+
eagCounter++;
|
5149
|
+
continue;
|
5150
|
+
}
|
5151
|
+
throw er;
|
5152
|
+
}
|
5153
|
+
}
|
5154
|
+
};
|
5155
|
+
}(fs3.readSync);
|
5156
|
+
function patchLchmod(fs4) {
|
5157
|
+
fs4.lchmod = function(path7, mode, callback) {
|
5158
|
+
fs4.open(
|
5159
|
+
path7,
|
5160
|
+
constants.O_WRONLY | constants.O_SYMLINK,
|
5161
|
+
mode,
|
5162
|
+
function(err, fd) {
|
5163
|
+
if (err) {
|
5164
|
+
if (callback) callback(err);
|
5165
|
+
return;
|
5166
|
+
}
|
5167
|
+
fs4.fchmod(fd, mode, function(err2) {
|
5168
|
+
fs4.close(fd, function(err22) {
|
5169
|
+
if (callback) callback(err2 || err22);
|
5170
|
+
});
|
5171
|
+
});
|
5172
|
+
}
|
5173
|
+
);
|
5174
|
+
};
|
5175
|
+
fs4.lchmodSync = function(path7, mode) {
|
5176
|
+
var fd = fs4.openSync(path7, constants.O_WRONLY | constants.O_SYMLINK, mode);
|
5177
|
+
var threw = true;
|
5178
|
+
var ret;
|
5179
|
+
try {
|
5180
|
+
ret = fs4.fchmodSync(fd, mode);
|
5181
|
+
threw = false;
|
5182
|
+
} finally {
|
5183
|
+
if (threw) {
|
5184
|
+
try {
|
5185
|
+
fs4.closeSync(fd);
|
5186
|
+
} catch (er) {
|
5187
|
+
}
|
5188
|
+
} else {
|
5189
|
+
fs4.closeSync(fd);
|
5190
|
+
}
|
5191
|
+
}
|
5192
|
+
return ret;
|
5193
|
+
};
|
5194
|
+
}
|
5195
|
+
function patchLutimes(fs4) {
|
5196
|
+
if (constants.hasOwnProperty("O_SYMLINK") && fs4.futimes) {
|
5197
|
+
fs4.lutimes = function(path7, at, mt, cb) {
|
5198
|
+
fs4.open(path7, constants.O_SYMLINK, function(er, fd) {
|
5199
|
+
if (er) {
|
5200
|
+
if (cb) cb(er);
|
5201
|
+
return;
|
5202
|
+
}
|
5203
|
+
fs4.futimes(fd, at, mt, function(er2) {
|
5204
|
+
fs4.close(fd, function(er22) {
|
5205
|
+
if (cb) cb(er2 || er22);
|
5206
|
+
});
|
5207
|
+
});
|
5208
|
+
});
|
5209
|
+
};
|
5210
|
+
fs4.lutimesSync = function(path7, at, mt) {
|
5211
|
+
var fd = fs4.openSync(path7, constants.O_SYMLINK);
|
5212
|
+
var ret;
|
5213
|
+
var threw = true;
|
5214
|
+
try {
|
5215
|
+
ret = fs4.futimesSync(fd, at, mt);
|
5216
|
+
threw = false;
|
5217
|
+
} finally {
|
5218
|
+
if (threw) {
|
5219
|
+
try {
|
5220
|
+
fs4.closeSync(fd);
|
5221
|
+
} catch (er) {
|
5222
|
+
}
|
5223
|
+
} else {
|
5224
|
+
fs4.closeSync(fd);
|
5225
|
+
}
|
5226
|
+
}
|
5227
|
+
return ret;
|
5228
|
+
};
|
5229
|
+
} else if (fs4.futimes) {
|
5230
|
+
fs4.lutimes = function(_a, _b, _c, cb) {
|
5231
|
+
if (cb) process.nextTick(cb);
|
5232
|
+
};
|
5233
|
+
fs4.lutimesSync = function() {
|
5234
|
+
};
|
5235
|
+
}
|
5236
|
+
}
|
5237
|
+
function chmodFix(orig) {
|
5238
|
+
if (!orig) return orig;
|
5239
|
+
return function(target, mode, cb) {
|
5240
|
+
return orig.call(fs3, target, mode, function(er) {
|
5241
|
+
if (chownErOk(er)) er = null;
|
5242
|
+
if (cb) cb.apply(this, arguments);
|
5243
|
+
});
|
5244
|
+
};
|
5245
|
+
}
|
5246
|
+
function chmodFixSync(orig) {
|
5247
|
+
if (!orig) return orig;
|
5248
|
+
return function(target, mode) {
|
5249
|
+
try {
|
5250
|
+
return orig.call(fs3, target, mode);
|
5251
|
+
} catch (er) {
|
5252
|
+
if (!chownErOk(er)) throw er;
|
5253
|
+
}
|
5254
|
+
};
|
5255
|
+
}
|
5256
|
+
function chownFix(orig) {
|
5257
|
+
if (!orig) return orig;
|
5258
|
+
return function(target, uid, gid, cb) {
|
5259
|
+
return orig.call(fs3, target, uid, gid, function(er) {
|
5260
|
+
if (chownErOk(er)) er = null;
|
5261
|
+
if (cb) cb.apply(this, arguments);
|
5262
|
+
});
|
5263
|
+
};
|
5264
|
+
}
|
5265
|
+
function chownFixSync(orig) {
|
5266
|
+
if (!orig) return orig;
|
5267
|
+
return function(target, uid, gid) {
|
5268
|
+
try {
|
5269
|
+
return orig.call(fs3, target, uid, gid);
|
5270
|
+
} catch (er) {
|
5271
|
+
if (!chownErOk(er)) throw er;
|
5272
|
+
}
|
5273
|
+
};
|
5274
|
+
}
|
5275
|
+
function statFix(orig) {
|
5276
|
+
if (!orig) return orig;
|
5277
|
+
return function(target, options, cb) {
|
5278
|
+
if (typeof options === "function") {
|
5279
|
+
cb = options;
|
5280
|
+
options = null;
|
5281
|
+
}
|
5282
|
+
function callback(er, stats) {
|
5283
|
+
if (stats) {
|
5284
|
+
if (stats.uid < 0) stats.uid += 4294967296;
|
5285
|
+
if (stats.gid < 0) stats.gid += 4294967296;
|
5286
|
+
}
|
5287
|
+
if (cb) cb.apply(this, arguments);
|
5288
|
+
}
|
5289
|
+
return options ? orig.call(fs3, target, options, callback) : orig.call(fs3, target, callback);
|
5290
|
+
};
|
5291
|
+
}
|
5292
|
+
function statFixSync(orig) {
|
5293
|
+
if (!orig) return orig;
|
5294
|
+
return function(target, options) {
|
5295
|
+
var stats = options ? orig.call(fs3, target, options) : orig.call(fs3, target);
|
5296
|
+
if (stats) {
|
5297
|
+
if (stats.uid < 0) stats.uid += 4294967296;
|
5298
|
+
if (stats.gid < 0) stats.gid += 4294967296;
|
5299
|
+
}
|
5300
|
+
return stats;
|
5301
|
+
};
|
5302
|
+
}
|
5303
|
+
function chownErOk(er) {
|
5304
|
+
if (!er)
|
5305
|
+
return true;
|
5306
|
+
if (er.code === "ENOSYS")
|
5307
|
+
return true;
|
5308
|
+
var nonroot = !process.getuid || process.getuid() !== 0;
|
5309
|
+
if (nonroot) {
|
5310
|
+
if (er.code === "EINVAL" || er.code === "EPERM")
|
5311
|
+
return true;
|
5312
|
+
}
|
5313
|
+
return false;
|
5314
|
+
}
|
5315
|
+
}
|
5316
|
+
}
|
5317
|
+
});
|
5318
|
+
var require_legacy_streams2 = (0, import_chunk_WWAWV7DQ.__commonJS)({
|
5319
|
+
"../../node_modules/.pnpm/graceful-fs@4.2.11/node_modules/graceful-fs/legacy-streams.js"(exports, module2) {
|
5320
|
+
"use strict";
|
5321
|
+
var Stream = (0, import_chunk_WWAWV7DQ.__require)("stream").Stream;
|
5322
|
+
module2.exports = legacy;
|
5323
|
+
function legacy(fs3) {
|
5324
|
+
return {
|
5325
|
+
ReadStream,
|
5326
|
+
WriteStream
|
5327
|
+
};
|
5328
|
+
function ReadStream(path7, options) {
|
5329
|
+
if (!(this instanceof ReadStream)) return new ReadStream(path7, options);
|
5330
|
+
Stream.call(this);
|
5331
|
+
var self = this;
|
5332
|
+
this.path = path7;
|
5333
|
+
this.fd = null;
|
5334
|
+
this.readable = true;
|
5335
|
+
this.paused = false;
|
5336
|
+
this.flags = "r";
|
5337
|
+
this.mode = 438;
|
5338
|
+
this.bufferSize = 64 * 1024;
|
5339
|
+
options = options || {};
|
5340
|
+
var keys = Object.keys(options);
|
5341
|
+
for (var index = 0, length = keys.length; index < length; index++) {
|
5342
|
+
var key = keys[index];
|
5343
|
+
this[key] = options[key];
|
5344
|
+
}
|
5345
|
+
if (this.encoding) this.setEncoding(this.encoding);
|
5346
|
+
if (this.start !== void 0) {
|
5347
|
+
if ("number" !== typeof this.start) {
|
5348
|
+
throw TypeError("start must be a Number");
|
5349
|
+
}
|
5350
|
+
if (this.end === void 0) {
|
5351
|
+
this.end = Infinity;
|
5352
|
+
} else if ("number" !== typeof this.end) {
|
5353
|
+
throw TypeError("end must be a Number");
|
5354
|
+
}
|
5355
|
+
if (this.start > this.end) {
|
5356
|
+
throw new Error("start must be <= end");
|
5357
|
+
}
|
5358
|
+
this.pos = this.start;
|
5359
|
+
}
|
5360
|
+
if (this.fd !== null) {
|
5361
|
+
process.nextTick(function() {
|
5362
|
+
self._read();
|
5363
|
+
});
|
5364
|
+
return;
|
5365
|
+
}
|
5366
|
+
fs3.open(this.path, this.flags, this.mode, function(err, fd) {
|
5367
|
+
if (err) {
|
5368
|
+
self.emit("error", err);
|
5369
|
+
self.readable = false;
|
5370
|
+
return;
|
5371
|
+
}
|
5372
|
+
self.fd = fd;
|
5373
|
+
self.emit("open", fd);
|
5374
|
+
self._read();
|
5375
|
+
});
|
5376
|
+
}
|
5377
|
+
function WriteStream(path7, options) {
|
5378
|
+
if (!(this instanceof WriteStream)) return new WriteStream(path7, options);
|
5379
|
+
Stream.call(this);
|
5380
|
+
this.path = path7;
|
5381
|
+
this.fd = null;
|
5382
|
+
this.writable = true;
|
5383
|
+
this.flags = "w";
|
5384
|
+
this.encoding = "binary";
|
5385
|
+
this.mode = 438;
|
5386
|
+
this.bytesWritten = 0;
|
5387
|
+
options = options || {};
|
5388
|
+
var keys = Object.keys(options);
|
5389
|
+
for (var index = 0, length = keys.length; index < length; index++) {
|
5390
|
+
var key = keys[index];
|
5391
|
+
this[key] = options[key];
|
5392
|
+
}
|
5393
|
+
if (this.start !== void 0) {
|
5394
|
+
if ("number" !== typeof this.start) {
|
5395
|
+
throw TypeError("start must be a Number");
|
5396
|
+
}
|
5397
|
+
if (this.start < 0) {
|
5398
|
+
throw new Error("start must be >= zero");
|
5399
|
+
}
|
5400
|
+
this.pos = this.start;
|
5401
|
+
}
|
5402
|
+
this.busy = false;
|
5403
|
+
this._queue = [];
|
5404
|
+
if (this.fd === null) {
|
5405
|
+
this._open = fs3.open;
|
5406
|
+
this._queue.push([this._open, this.path, this.flags, this.mode, void 0]);
|
5407
|
+
this.flush();
|
5408
|
+
}
|
5409
|
+
}
|
5410
|
+
}
|
5411
|
+
}
|
5412
|
+
});
|
5413
|
+
var require_clone2 = (0, import_chunk_WWAWV7DQ.__commonJS)({
|
5414
|
+
"../../node_modules/.pnpm/graceful-fs@4.2.11/node_modules/graceful-fs/clone.js"(exports, module2) {
|
5415
|
+
"use strict";
|
5416
|
+
module2.exports = clone;
|
5417
|
+
var getPrototypeOf = Object.getPrototypeOf || function(obj) {
|
5418
|
+
return obj.__proto__;
|
5419
|
+
};
|
5420
|
+
function clone(obj) {
|
5421
|
+
if (obj === null || typeof obj !== "object")
|
5422
|
+
return obj;
|
5423
|
+
if (obj instanceof Object)
|
5424
|
+
var copy = { __proto__: getPrototypeOf(obj) };
|
5425
|
+
else
|
5426
|
+
var copy = /* @__PURE__ */ Object.create(null);
|
5427
|
+
Object.getOwnPropertyNames(obj).forEach(function(key) {
|
5428
|
+
Object.defineProperty(copy, key, Object.getOwnPropertyDescriptor(obj, key));
|
5429
|
+
});
|
5430
|
+
return copy;
|
5431
|
+
}
|
5432
|
+
}
|
5433
|
+
});
|
5434
|
+
var require_graceful_fs2 = (0, import_chunk_WWAWV7DQ.__commonJS)({
|
5435
|
+
"../../node_modules/.pnpm/graceful-fs@4.2.11/node_modules/graceful-fs/graceful-fs.js"(exports, module2) {
|
5436
|
+
"use strict";
|
5437
|
+
var fs3 = (0, import_chunk_WWAWV7DQ.__require)("fs");
|
5438
|
+
var polyfills = require_polyfills2();
|
5439
|
+
var legacy = require_legacy_streams2();
|
5440
|
+
var clone = require_clone2();
|
5441
|
+
var util = (0, import_chunk_WWAWV7DQ.__require)("util");
|
5442
|
+
var gracefulQueue;
|
5443
|
+
var previousSymbol;
|
5444
|
+
if (typeof Symbol === "function" && typeof Symbol.for === "function") {
|
5445
|
+
gracefulQueue = Symbol.for("graceful-fs.queue");
|
5446
|
+
previousSymbol = Symbol.for("graceful-fs.previous");
|
5447
|
+
} else {
|
5448
|
+
gracefulQueue = "___graceful-fs.queue";
|
5449
|
+
previousSymbol = "___graceful-fs.previous";
|
5450
|
+
}
|
5451
|
+
function noop() {
|
5452
|
+
}
|
5453
|
+
function publishQueue(context, queue2) {
|
5454
|
+
Object.defineProperty(context, gracefulQueue, {
|
5455
|
+
get: function() {
|
5456
|
+
return queue2;
|
5457
|
+
}
|
5458
|
+
});
|
5459
|
+
}
|
5460
|
+
var debug4 = noop;
|
5461
|
+
if (util.debuglog)
|
5462
|
+
debug4 = util.debuglog("gfs4");
|
5463
|
+
else if (/\bgfs4\b/i.test(process.env.NODE_DEBUG || ""))
|
5464
|
+
debug4 = function() {
|
5465
|
+
var m = util.format.apply(util, arguments);
|
5466
|
+
m = "GFS4: " + m.split(/\n/).join("\nGFS4: ");
|
5467
|
+
console.error(m);
|
5468
|
+
};
|
5469
|
+
if (!fs3[gracefulQueue]) {
|
5470
|
+
queue = global[gracefulQueue] || [];
|
5471
|
+
publishQueue(fs3, queue);
|
5472
|
+
fs3.close = function(fs$close) {
|
5473
|
+
function close(fd, cb) {
|
5474
|
+
return fs$close.call(fs3, fd, function(err) {
|
5475
|
+
if (!err) {
|
5476
|
+
resetQueue();
|
5477
|
+
}
|
5478
|
+
if (typeof cb === "function")
|
5479
|
+
cb.apply(this, arguments);
|
5480
|
+
});
|
5481
|
+
}
|
5482
|
+
Object.defineProperty(close, previousSymbol, {
|
5483
|
+
value: fs$close
|
5484
|
+
});
|
5485
|
+
return close;
|
5486
|
+
}(fs3.close);
|
5487
|
+
fs3.closeSync = function(fs$closeSync) {
|
5488
|
+
function closeSync(fd) {
|
5489
|
+
fs$closeSync.apply(fs3, arguments);
|
5490
|
+
resetQueue();
|
5491
|
+
}
|
5492
|
+
Object.defineProperty(closeSync, previousSymbol, {
|
5493
|
+
value: fs$closeSync
|
5494
|
+
});
|
5495
|
+
return closeSync;
|
5496
|
+
}(fs3.closeSync);
|
5497
|
+
if (/\bgfs4\b/i.test(process.env.NODE_DEBUG || "")) {
|
5498
|
+
process.on("exit", function() {
|
5499
|
+
debug4(fs3[gracefulQueue]);
|
5500
|
+
(0, import_chunk_WWAWV7DQ.__require)("assert").equal(fs3[gracefulQueue].length, 0);
|
5501
|
+
});
|
5502
|
+
}
|
5503
|
+
}
|
5504
|
+
var queue;
|
5505
|
+
if (!global[gracefulQueue]) {
|
5506
|
+
publishQueue(global, fs3[gracefulQueue]);
|
5507
|
+
}
|
5508
|
+
module2.exports = patch(clone(fs3));
|
5509
|
+
if (process.env.TEST_GRACEFUL_FS_GLOBAL_PATCH && !fs3.__patched) {
|
5510
|
+
module2.exports = patch(fs3);
|
5511
|
+
fs3.__patched = true;
|
5512
|
+
}
|
5513
|
+
function patch(fs4) {
|
5514
|
+
polyfills(fs4);
|
5515
|
+
fs4.gracefulify = patch;
|
5516
|
+
fs4.createReadStream = createReadStream;
|
5517
|
+
fs4.createWriteStream = createWriteStream;
|
5518
|
+
var fs$readFile = fs4.readFile;
|
5519
|
+
fs4.readFile = readFile2;
|
5520
|
+
function readFile2(path7, options, cb) {
|
5521
|
+
if (typeof options === "function")
|
5522
|
+
cb = options, options = null;
|
5523
|
+
return go$readFile(path7, options, cb);
|
5524
|
+
function go$readFile(path8, options2, cb2, startTime) {
|
5525
|
+
return fs$readFile(path8, options2, function(err) {
|
5526
|
+
if (err && (err.code === "EMFILE" || err.code === "ENFILE"))
|
5527
|
+
enqueue([go$readFile, [path8, options2, cb2], err, startTime || Date.now(), Date.now()]);
|
5528
|
+
else {
|
5529
|
+
if (typeof cb2 === "function")
|
5530
|
+
cb2.apply(this, arguments);
|
5531
|
+
}
|
5532
|
+
});
|
5533
|
+
}
|
5534
|
+
}
|
5535
|
+
var fs$writeFile = fs4.writeFile;
|
5536
|
+
fs4.writeFile = writeFile;
|
5537
|
+
function writeFile(path7, data, options, cb) {
|
5538
|
+
if (typeof options === "function")
|
5539
|
+
cb = options, options = null;
|
5540
|
+
return go$writeFile(path7, data, options, cb);
|
5541
|
+
function go$writeFile(path8, data2, options2, cb2, startTime) {
|
5542
|
+
return fs$writeFile(path8, data2, options2, function(err) {
|
5543
|
+
if (err && (err.code === "EMFILE" || err.code === "ENFILE"))
|
5544
|
+
enqueue([go$writeFile, [path8, data2, options2, cb2], err, startTime || Date.now(), Date.now()]);
|
5545
|
+
else {
|
5546
|
+
if (typeof cb2 === "function")
|
5547
|
+
cb2.apply(this, arguments);
|
5548
|
+
}
|
5549
|
+
});
|
5550
|
+
}
|
5551
|
+
}
|
5552
|
+
var fs$appendFile = fs4.appendFile;
|
5553
|
+
if (fs$appendFile)
|
5554
|
+
fs4.appendFile = appendFile;
|
5555
|
+
function appendFile(path7, data, options, cb) {
|
5556
|
+
if (typeof options === "function")
|
5557
|
+
cb = options, options = null;
|
5558
|
+
return go$appendFile(path7, data, options, cb);
|
5559
|
+
function go$appendFile(path8, data2, options2, cb2, startTime) {
|
5560
|
+
return fs$appendFile(path8, data2, options2, function(err) {
|
5561
|
+
if (err && (err.code === "EMFILE" || err.code === "ENFILE"))
|
5562
|
+
enqueue([go$appendFile, [path8, data2, options2, cb2], err, startTime || Date.now(), Date.now()]);
|
5563
|
+
else {
|
5564
|
+
if (typeof cb2 === "function")
|
5565
|
+
cb2.apply(this, arguments);
|
5566
|
+
}
|
5567
|
+
});
|
5568
|
+
}
|
5569
|
+
}
|
5570
|
+
var fs$copyFile = fs4.copyFile;
|
5571
|
+
if (fs$copyFile)
|
5572
|
+
fs4.copyFile = copyFile;
|
5573
|
+
function copyFile(src, dest, flags, cb) {
|
5574
|
+
if (typeof flags === "function") {
|
5575
|
+
cb = flags;
|
5576
|
+
flags = 0;
|
5577
|
+
}
|
5578
|
+
return go$copyFile(src, dest, flags, cb);
|
5579
|
+
function go$copyFile(src2, dest2, flags2, cb2, startTime) {
|
5580
|
+
return fs$copyFile(src2, dest2, flags2, function(err) {
|
5581
|
+
if (err && (err.code === "EMFILE" || err.code === "ENFILE"))
|
5582
|
+
enqueue([go$copyFile, [src2, dest2, flags2, cb2], err, startTime || Date.now(), Date.now()]);
|
5583
|
+
else {
|
5584
|
+
if (typeof cb2 === "function")
|
5585
|
+
cb2.apply(this, arguments);
|
5586
|
+
}
|
5587
|
+
});
|
5588
|
+
}
|
5589
|
+
}
|
5590
|
+
var fs$readdir = fs4.readdir;
|
5591
|
+
fs4.readdir = readdir;
|
5592
|
+
var noReaddirOptionVersions = /^v[0-5]\./;
|
5593
|
+
function readdir(path7, options, cb) {
|
5594
|
+
if (typeof options === "function")
|
5595
|
+
cb = options, options = null;
|
5596
|
+
var go$readdir = noReaddirOptionVersions.test(process.version) ? function go$readdir2(path8, options2, cb2, startTime) {
|
5597
|
+
return fs$readdir(path8, fs$readdirCallback(
|
5598
|
+
path8,
|
5599
|
+
options2,
|
5600
|
+
cb2,
|
5601
|
+
startTime
|
5602
|
+
));
|
5603
|
+
} : function go$readdir2(path8, options2, cb2, startTime) {
|
5604
|
+
return fs$readdir(path8, options2, fs$readdirCallback(
|
5605
|
+
path8,
|
5606
|
+
options2,
|
5607
|
+
cb2,
|
5608
|
+
startTime
|
5609
|
+
));
|
5610
|
+
};
|
5611
|
+
return go$readdir(path7, options, cb);
|
5612
|
+
function fs$readdirCallback(path8, options2, cb2, startTime) {
|
5613
|
+
return function(err, files) {
|
5614
|
+
if (err && (err.code === "EMFILE" || err.code === "ENFILE"))
|
5615
|
+
enqueue([
|
5616
|
+
go$readdir,
|
5617
|
+
[path8, options2, cb2],
|
5618
|
+
err,
|
5619
|
+
startTime || Date.now(),
|
5620
|
+
Date.now()
|
5621
|
+
]);
|
5622
|
+
else {
|
5623
|
+
if (files && files.sort)
|
5624
|
+
files.sort();
|
5625
|
+
if (typeof cb2 === "function")
|
5626
|
+
cb2.call(this, err, files);
|
5627
|
+
}
|
5628
|
+
};
|
5629
|
+
}
|
5630
|
+
}
|
5631
|
+
if (process.version.substr(0, 4) === "v0.8") {
|
5632
|
+
var legStreams = legacy(fs4);
|
5633
|
+
ReadStream = legStreams.ReadStream;
|
5634
|
+
WriteStream = legStreams.WriteStream;
|
5635
|
+
}
|
5636
|
+
var fs$ReadStream = fs4.ReadStream;
|
5637
|
+
if (fs$ReadStream) {
|
5638
|
+
ReadStream.prototype = Object.create(fs$ReadStream.prototype);
|
5639
|
+
ReadStream.prototype.open = ReadStream$open;
|
5640
|
+
}
|
5641
|
+
var fs$WriteStream = fs4.WriteStream;
|
5642
|
+
if (fs$WriteStream) {
|
5643
|
+
WriteStream.prototype = Object.create(fs$WriteStream.prototype);
|
5644
|
+
WriteStream.prototype.open = WriteStream$open;
|
5645
|
+
}
|
5646
|
+
Object.defineProperty(fs4, "ReadStream", {
|
5647
|
+
get: function() {
|
5648
|
+
return ReadStream;
|
5649
|
+
},
|
5650
|
+
set: function(val) {
|
5651
|
+
ReadStream = val;
|
5652
|
+
},
|
5653
|
+
enumerable: true,
|
5654
|
+
configurable: true
|
5655
|
+
});
|
5656
|
+
Object.defineProperty(fs4, "WriteStream", {
|
5657
|
+
get: function() {
|
5658
|
+
return WriteStream;
|
5659
|
+
},
|
5660
|
+
set: function(val) {
|
5661
|
+
WriteStream = val;
|
5662
|
+
},
|
5663
|
+
enumerable: true,
|
5664
|
+
configurable: true
|
5665
|
+
});
|
5666
|
+
var FileReadStream = ReadStream;
|
5667
|
+
Object.defineProperty(fs4, "FileReadStream", {
|
5668
|
+
get: function() {
|
5669
|
+
return FileReadStream;
|
5670
|
+
},
|
5671
|
+
set: function(val) {
|
5672
|
+
FileReadStream = val;
|
5673
|
+
},
|
5674
|
+
enumerable: true,
|
5675
|
+
configurable: true
|
5676
|
+
});
|
5677
|
+
var FileWriteStream = WriteStream;
|
5678
|
+
Object.defineProperty(fs4, "FileWriteStream", {
|
5679
|
+
get: function() {
|
5680
|
+
return FileWriteStream;
|
5681
|
+
},
|
5682
|
+
set: function(val) {
|
5683
|
+
FileWriteStream = val;
|
5684
|
+
},
|
5685
|
+
enumerable: true,
|
5686
|
+
configurable: true
|
5687
|
+
});
|
5688
|
+
function ReadStream(path7, options) {
|
5689
|
+
if (this instanceof ReadStream)
|
5690
|
+
return fs$ReadStream.apply(this, arguments), this;
|
5691
|
+
else
|
5692
|
+
return ReadStream.apply(Object.create(ReadStream.prototype), arguments);
|
5693
|
+
}
|
5694
|
+
function ReadStream$open() {
|
5695
|
+
var that = this;
|
5696
|
+
open(that.path, that.flags, that.mode, function(err, fd) {
|
5697
|
+
if (err) {
|
5698
|
+
if (that.autoClose)
|
5699
|
+
that.destroy();
|
5700
|
+
that.emit("error", err);
|
5701
|
+
} else {
|
5702
|
+
that.fd = fd;
|
5703
|
+
that.emit("open", fd);
|
5704
|
+
that.read();
|
5705
|
+
}
|
5706
|
+
});
|
5707
|
+
}
|
5708
|
+
function WriteStream(path7, options) {
|
5709
|
+
if (this instanceof WriteStream)
|
5710
|
+
return fs$WriteStream.apply(this, arguments), this;
|
5711
|
+
else
|
5712
|
+
return WriteStream.apply(Object.create(WriteStream.prototype), arguments);
|
5713
|
+
}
|
5714
|
+
function WriteStream$open() {
|
5715
|
+
var that = this;
|
5716
|
+
open(that.path, that.flags, that.mode, function(err, fd) {
|
5717
|
+
if (err) {
|
5718
|
+
that.destroy();
|
5719
|
+
that.emit("error", err);
|
5720
|
+
} else {
|
5721
|
+
that.fd = fd;
|
5722
|
+
that.emit("open", fd);
|
5723
|
+
}
|
5724
|
+
});
|
5725
|
+
}
|
5726
|
+
function createReadStream(path7, options) {
|
5727
|
+
return new fs4.ReadStream(path7, options);
|
5728
|
+
}
|
5729
|
+
function createWriteStream(path7, options) {
|
5730
|
+
return new fs4.WriteStream(path7, options);
|
5731
|
+
}
|
5732
|
+
var fs$open = fs4.open;
|
5733
|
+
fs4.open = open;
|
5734
|
+
function open(path7, flags, mode, cb) {
|
5735
|
+
if (typeof mode === "function")
|
5736
|
+
cb = mode, mode = null;
|
5737
|
+
return go$open(path7, flags, mode, cb);
|
5738
|
+
function go$open(path8, flags2, mode2, cb2, startTime) {
|
5739
|
+
return fs$open(path8, flags2, mode2, function(err, fd) {
|
5740
|
+
if (err && (err.code === "EMFILE" || err.code === "ENFILE"))
|
5741
|
+
enqueue([go$open, [path8, flags2, mode2, cb2], err, startTime || Date.now(), Date.now()]);
|
5742
|
+
else {
|
5743
|
+
if (typeof cb2 === "function")
|
5744
|
+
cb2.apply(this, arguments);
|
5745
|
+
}
|
5746
|
+
});
|
5747
|
+
}
|
5748
|
+
}
|
5749
|
+
return fs4;
|
5750
|
+
}
|
5751
|
+
function enqueue(elem) {
|
5752
|
+
debug4("ENQUEUE", elem[0].name, elem[1]);
|
5753
|
+
fs3[gracefulQueue].push(elem);
|
5754
|
+
retry();
|
5755
|
+
}
|
5756
|
+
var retryTimer;
|
5757
|
+
function resetQueue() {
|
5758
|
+
var now = Date.now();
|
5759
|
+
for (var i = 0; i < fs3[gracefulQueue].length; ++i) {
|
5760
|
+
if (fs3[gracefulQueue][i].length > 2) {
|
5761
|
+
fs3[gracefulQueue][i][3] = now;
|
5762
|
+
fs3[gracefulQueue][i][4] = now;
|
5763
|
+
}
|
5764
|
+
}
|
5765
|
+
retry();
|
5766
|
+
}
|
5767
|
+
function retry() {
|
5768
|
+
clearTimeout(retryTimer);
|
5769
|
+
retryTimer = void 0;
|
5770
|
+
if (fs3[gracefulQueue].length === 0)
|
5771
|
+
return;
|
5772
|
+
var elem = fs3[gracefulQueue].shift();
|
5773
|
+
var fn = elem[0];
|
5774
|
+
var args = elem[1];
|
5775
|
+
var err = elem[2];
|
5776
|
+
var startTime = elem[3];
|
5777
|
+
var lastTime = elem[4];
|
5778
|
+
if (startTime === void 0) {
|
5779
|
+
debug4("RETRY", fn.name, args);
|
5780
|
+
fn.apply(null, args);
|
5781
|
+
} else if (Date.now() - startTime >= 6e4) {
|
5782
|
+
debug4("TIMEOUT", fn.name, args);
|
5783
|
+
var cb = args.pop();
|
5784
|
+
if (typeof cb === "function")
|
5785
|
+
cb.call(null, err);
|
5786
|
+
} else {
|
5787
|
+
var sinceAttempt = Date.now() - lastTime;
|
5788
|
+
var sinceStart = Math.max(lastTime - startTime, 1);
|
5789
|
+
var desiredDelay = Math.min(sinceStart * 1.2, 100);
|
5790
|
+
if (sinceAttempt >= desiredDelay) {
|
5791
|
+
debug4("RETRY", fn.name, args);
|
5792
|
+
fn.apply(null, args.concat([startTime]));
|
5793
|
+
} else {
|
5794
|
+
fs3[gracefulQueue].push(elem);
|
5795
|
+
}
|
5796
|
+
}
|
5797
|
+
if (retryTimer === void 0) {
|
5798
|
+
retryTimer = setTimeout(retry, 0);
|
5799
|
+
}
|
5800
|
+
}
|
5801
|
+
}
|
5802
|
+
});
|
5031
5803
|
var require_utils2 = (0, import_chunk_WWAWV7DQ.__commonJS)({
|
5032
5804
|
"../../node_modules/.pnpm/jsonfile@6.1.0/node_modules/jsonfile/utils.js"(exports, module2) {
|
5033
5805
|
"use strict";
|
@@ -5048,7 +5820,7 @@ var require_jsonfile = (0, import_chunk_WWAWV7DQ.__commonJS)({
|
|
5048
5820
|
"use strict";
|
5049
5821
|
var _fs;
|
5050
5822
|
try {
|
5051
|
-
_fs =
|
5823
|
+
_fs = require_graceful_fs2();
|
5052
5824
|
} catch (_) {
|
5053
5825
|
_fs = (0, import_chunk_WWAWV7DQ.__require)("fs");
|
5054
5826
|
}
|
@@ -10754,7 +11526,7 @@ var require_package = (0, import_chunk_WWAWV7DQ.__commonJS)({
|
|
10754
11526
|
"../internals/package.json"(exports, module2) {
|
10755
11527
|
module2.exports = {
|
10756
11528
|
name: "@prisma/internals",
|
10757
|
-
version: "
|
11529
|
+
version: "0.0.0",
|
10758
11530
|
description: "This package is intended for Prisma's internal use",
|
10759
11531
|
main: "dist/index.js",
|
10760
11532
|
types: "dist/index.d.ts",
|
@@ -16,16 +16,16 @@ var __copyProps = (to, from, except, desc) => {
|
|
16
16
|
return to;
|
17
17
|
};
|
18
18
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
19
|
-
var
|
20
|
-
__export(
|
21
|
-
require_ms: () =>
|
19
|
+
var chunk_J77IRNPE_exports = {};
|
20
|
+
__export(chunk_J77IRNPE_exports, {
|
21
|
+
require_ms: () => require_ms,
|
22
22
|
require_src: () => require_src
|
23
23
|
});
|
24
|
-
module.exports = __toCommonJS(
|
24
|
+
module.exports = __toCommonJS(chunk_J77IRNPE_exports);
|
25
25
|
var import_chunk_RM5LJIEV = require("./chunk-RM5LJIEV.js");
|
26
26
|
var import_chunk_WWAWV7DQ = require("./chunk-WWAWV7DQ.js");
|
27
27
|
var require_ms = (0, import_chunk_WWAWV7DQ.__commonJS)({
|
28
|
-
"../../node_modules/.pnpm/ms@2.1.
|
28
|
+
"../../node_modules/.pnpm/ms@2.1.3/node_modules/ms/index.js"(exports, module2) {
|
29
29
|
"use strict";
|
30
30
|
var s = 1e3;
|
31
31
|
var m = s * 60;
|
@@ -140,7 +140,7 @@ var require_ms = (0, import_chunk_WWAWV7DQ.__commonJS)({
|
|
140
140
|
}
|
141
141
|
});
|
142
142
|
var require_common = (0, import_chunk_WWAWV7DQ.__commonJS)({
|
143
|
-
"../../node_modules/.pnpm/debug@4.3.
|
143
|
+
"../../node_modules/.pnpm/debug@4.3.7/node_modules/debug/src/common.js"(exports, module2) {
|
144
144
|
"use strict";
|
145
145
|
function setup(env) {
|
146
146
|
createDebug.debug = createDebug;
|
@@ -302,7 +302,7 @@ var require_common = (0, import_chunk_WWAWV7DQ.__commonJS)({
|
|
302
302
|
}
|
303
303
|
});
|
304
304
|
var require_browser = (0, import_chunk_WWAWV7DQ.__commonJS)({
|
305
|
-
"../../node_modules/.pnpm/debug@4.3.
|
305
|
+
"../../node_modules/.pnpm/debug@4.3.7/node_modules/debug/src/browser.js"(exports, module2) {
|
306
306
|
"use strict";
|
307
307
|
exports.formatArgs = formatArgs;
|
308
308
|
exports.save = save;
|
@@ -583,7 +583,7 @@ var require_supports_color = (0, import_chunk_WWAWV7DQ.__commonJS)({
|
|
583
583
|
}
|
584
584
|
});
|
585
585
|
var require_node = (0, import_chunk_WWAWV7DQ.__commonJS)({
|
586
|
-
"../../node_modules/.pnpm/debug@4.3.
|
586
|
+
"../../node_modules/.pnpm/debug@4.3.7/node_modules/debug/src/node.js"(exports, module2) {
|
587
587
|
"use strict";
|
588
588
|
var tty = (0, import_chunk_WWAWV7DQ.__require)("tty");
|
589
589
|
var util = (0, import_chunk_WWAWV7DQ.__require)("util");
|
@@ -756,7 +756,7 @@ var require_node = (0, import_chunk_WWAWV7DQ.__commonJS)({
|
|
756
756
|
}
|
757
757
|
});
|
758
758
|
var require_src = (0, import_chunk_WWAWV7DQ.__commonJS)({
|
759
|
-
"../../node_modules/.pnpm/debug@4.3.
|
759
|
+
"../../node_modules/.pnpm/debug@4.3.7/node_modules/debug/src/index.js"(exports, module2) {
|
760
760
|
"use strict";
|
761
761
|
if (typeof process === "undefined" || process.type === "renderer" || process.browser === true || process.__nwjs) {
|
762
762
|
module2.exports = require_browser();
|
@@ -765,118 +765,3 @@ var require_src = (0, import_chunk_WWAWV7DQ.__commonJS)({
|
|
765
765
|
}
|
766
766
|
}
|
767
767
|
});
|
768
|
-
var require_ms2 = (0, import_chunk_WWAWV7DQ.__commonJS)({
|
769
|
-
"../../node_modules/.pnpm/ms@2.1.3/node_modules/ms/index.js"(exports, module2) {
|
770
|
-
"use strict";
|
771
|
-
var s = 1e3;
|
772
|
-
var m = s * 60;
|
773
|
-
var h = m * 60;
|
774
|
-
var d = h * 24;
|
775
|
-
var w = d * 7;
|
776
|
-
var y = d * 365.25;
|
777
|
-
module2.exports = function(val, options) {
|
778
|
-
options = options || {};
|
779
|
-
var type = typeof val;
|
780
|
-
if (type === "string" && val.length > 0) {
|
781
|
-
return parse(val);
|
782
|
-
} else if (type === "number" && isFinite(val)) {
|
783
|
-
return options.long ? fmtLong(val) : fmtShort(val);
|
784
|
-
}
|
785
|
-
throw new Error(
|
786
|
-
"val is not a non-empty string or a valid number. val=" + JSON.stringify(val)
|
787
|
-
);
|
788
|
-
};
|
789
|
-
function parse(str) {
|
790
|
-
str = String(str);
|
791
|
-
if (str.length > 100) {
|
792
|
-
return;
|
793
|
-
}
|
794
|
-
var match = /^(-?(?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|years?|yrs?|y)?$/i.exec(
|
795
|
-
str
|
796
|
-
);
|
797
|
-
if (!match) {
|
798
|
-
return;
|
799
|
-
}
|
800
|
-
var n = parseFloat(match[1]);
|
801
|
-
var type = (match[2] || "ms").toLowerCase();
|
802
|
-
switch (type) {
|
803
|
-
case "years":
|
804
|
-
case "year":
|
805
|
-
case "yrs":
|
806
|
-
case "yr":
|
807
|
-
case "y":
|
808
|
-
return n * y;
|
809
|
-
case "weeks":
|
810
|
-
case "week":
|
811
|
-
case "w":
|
812
|
-
return n * w;
|
813
|
-
case "days":
|
814
|
-
case "day":
|
815
|
-
case "d":
|
816
|
-
return n * d;
|
817
|
-
case "hours":
|
818
|
-
case "hour":
|
819
|
-
case "hrs":
|
820
|
-
case "hr":
|
821
|
-
case "h":
|
822
|
-
return n * h;
|
823
|
-
case "minutes":
|
824
|
-
case "minute":
|
825
|
-
case "mins":
|
826
|
-
case "min":
|
827
|
-
case "m":
|
828
|
-
return n * m;
|
829
|
-
case "seconds":
|
830
|
-
case "second":
|
831
|
-
case "secs":
|
832
|
-
case "sec":
|
833
|
-
case "s":
|
834
|
-
return n * s;
|
835
|
-
case "milliseconds":
|
836
|
-
case "millisecond":
|
837
|
-
case "msecs":
|
838
|
-
case "msec":
|
839
|
-
case "ms":
|
840
|
-
return n;
|
841
|
-
default:
|
842
|
-
return void 0;
|
843
|
-
}
|
844
|
-
}
|
845
|
-
function fmtShort(ms) {
|
846
|
-
var msAbs = Math.abs(ms);
|
847
|
-
if (msAbs >= d) {
|
848
|
-
return Math.round(ms / d) + "d";
|
849
|
-
}
|
850
|
-
if (msAbs >= h) {
|
851
|
-
return Math.round(ms / h) + "h";
|
852
|
-
}
|
853
|
-
if (msAbs >= m) {
|
854
|
-
return Math.round(ms / m) + "m";
|
855
|
-
}
|
856
|
-
if (msAbs >= s) {
|
857
|
-
return Math.round(ms / s) + "s";
|
858
|
-
}
|
859
|
-
return ms + "ms";
|
860
|
-
}
|
861
|
-
function fmtLong(ms) {
|
862
|
-
var msAbs = Math.abs(ms);
|
863
|
-
if (msAbs >= d) {
|
864
|
-
return plural(ms, msAbs, d, "day");
|
865
|
-
}
|
866
|
-
if (msAbs >= h) {
|
867
|
-
return plural(ms, msAbs, h, "hour");
|
868
|
-
}
|
869
|
-
if (msAbs >= m) {
|
870
|
-
return plural(ms, msAbs, m, "minute");
|
871
|
-
}
|
872
|
-
if (msAbs >= s) {
|
873
|
-
return plural(ms, msAbs, s, "second");
|
874
|
-
}
|
875
|
-
return ms + " ms";
|
876
|
-
}
|
877
|
-
function plural(ms, msAbs, n, name) {
|
878
|
-
var isPlural = msAbs >= n * 1.5;
|
879
|
-
return Math.round(ms / n) + " " + name + (isPlural ? "s" : "");
|
880
|
-
}
|
881
|
-
}
|
882
|
-
});
|
@@ -26,12 +26,12 @@ 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
|
30
|
-
__export(
|
29
|
+
var chunk_R3NI7DE6_exports = {};
|
30
|
+
__export(chunk_R3NI7DE6_exports, {
|
31
31
|
MigrateDiff: () => MigrateDiff,
|
32
32
|
init_MigrateDiff: () => init_MigrateDiff
|
33
33
|
});
|
34
|
-
module.exports = __toCommonJS(
|
34
|
+
module.exports = __toCommonJS(chunk_R3NI7DE6_exports);
|
35
35
|
var import_chunk_VWV2NY26 = require("./chunk-VWV2NY26.js");
|
36
36
|
var import_chunk_XRTNIFND = require("./chunk-XRTNIFND.js");
|
37
37
|
var import_chunk_TKAGMA5K = require("./chunk-TKAGMA5K.js");
|
@@ -10754,7 +10754,7 @@ var require_package = (0, import_chunk_WWAWV7DQ.__commonJS)({
|
|
10754
10754
|
"../internals/package.json"(exports, module2) {
|
10755
10755
|
module2.exports = {
|
10756
10756
|
name: "@prisma/internals",
|
10757
|
-
version: "
|
10757
|
+
version: "5.23.0-dev.7",
|
10758
10758
|
description: "This package is intended for Prisma's internal use",
|
10759
10759
|
main: "dist/index.js",
|
10760
10760
|
types: "dist/index.d.ts",
|
@@ -18,10 +18,10 @@ var __copyProps = (to, from, except, desc) => {
|
|
18
18
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
19
19
|
var MigrateDiff_exports = {};
|
20
20
|
__export(MigrateDiff_exports, {
|
21
|
-
MigrateDiff: () =>
|
21
|
+
MigrateDiff: () => import_chunk_R3NI7DE6.MigrateDiff
|
22
22
|
});
|
23
23
|
module.exports = __toCommonJS(MigrateDiff_exports);
|
24
|
-
var
|
24
|
+
var import_chunk_R3NI7DE6 = require("../chunk-R3NI7DE6.js");
|
25
25
|
var import_chunk_VWV2NY26 = require("../chunk-VWV2NY26.js");
|
26
26
|
var import_chunk_XRTNIFND = require("../chunk-XRTNIFND.js");
|
27
27
|
var import_chunk_TKAGMA5K = require("../chunk-TKAGMA5K.js");
|
@@ -34,4 +34,4 @@ var import_chunk_LVFPGUOH = require("../chunk-LVFPGUOH.js");
|
|
34
34
|
var import_chunk_AAATUOV6 = require("../chunk-AAATUOV6.js");
|
35
35
|
var import_chunk_6TE2RIPN = require("../chunk-6TE2RIPN.js");
|
36
36
|
var import_chunk_WWAWV7DQ = require("../chunk-WWAWV7DQ.js");
|
37
|
-
(0,
|
37
|
+
(0, import_chunk_R3NI7DE6.init_MigrateDiff)();
|
package/dist/index.js
CHANGED
@@ -29,7 +29,7 @@ __export(dist_exports, {
|
|
29
29
|
MigrateCommand: () => import_chunk_CK5VLKFM.MigrateCommand,
|
30
30
|
MigrateDeploy: () => import_chunk_UJWMQPUH.MigrateDeploy,
|
31
31
|
MigrateDev: () => import_chunk_LLGEQ76N.MigrateDev,
|
32
|
-
MigrateDiff: () =>
|
32
|
+
MigrateDiff: () => import_chunk_R3NI7DE6.MigrateDiff,
|
33
33
|
MigrateReset: () => import_chunk_XVL5RF2T.MigrateReset,
|
34
34
|
MigrateResolve: () => import_chunk_BAVMZZAR.MigrateResolve,
|
35
35
|
MigrateStatus: () => import_chunk_SV5GANSI.MigrateStatus,
|
@@ -69,7 +69,7 @@ var import_chunk_EFPE3Q7J = require("./chunk-EFPE3Q7J.js");
|
|
69
69
|
var import_chunk_WOOPRG54 = require("./chunk-WOOPRG54.js");
|
70
70
|
var import_chunk_6QFE3AWR = require("./chunk-6QFE3AWR.js");
|
71
71
|
var import_chunk_LKTTJWFT = require("./chunk-LKTTJWFT.js");
|
72
|
-
var
|
72
|
+
var import_chunk_R3NI7DE6 = require("./chunk-R3NI7DE6.js");
|
73
73
|
var import_chunk_VWV2NY26 = require("./chunk-VWV2NY26.js");
|
74
74
|
var import_chunk_XRTNIFND = require("./chunk-XRTNIFND.js");
|
75
75
|
var import_chunk_TKAGMA5K = require("./chunk-TKAGMA5K.js");
|
@@ -99,7 +99,7 @@ var import_chunk_WWAWV7DQ = require("./chunk-WWAWV7DQ.js");
|
|
99
99
|
(0, import_chunk_CK5VLKFM.init_MigrateCommand)();
|
100
100
|
(0, import_chunk_UJWMQPUH.init_MigrateDeploy)();
|
101
101
|
(0, import_chunk_LLGEQ76N.init_MigrateDev)();
|
102
|
-
(0,
|
102
|
+
(0, import_chunk_R3NI7DE6.init_MigrateDiff)();
|
103
103
|
(0, import_chunk_XVL5RF2T.init_MigrateReset)();
|
104
104
|
(0, import_chunk_BAVMZZAR.init_MigrateResolve)();
|
105
105
|
(0, import_chunk_SV5GANSI.init_MigrateStatus)();
|
package/dist/utils/setupMSSQL.js
CHANGED
@@ -32,7 +32,7 @@ __export(setupMSSQL_exports, {
|
|
32
32
|
tearDownMSSQL: () => tearDownMSSQL
|
33
33
|
});
|
34
34
|
module.exports = __toCommonJS(setupMSSQL_exports);
|
35
|
-
var
|
35
|
+
var import_chunk_J77IRNPE = require("../chunk-J77IRNPE.js");
|
36
36
|
var import_chunk_LOGAFLCN = require("../chunk-LOGAFLCN.js");
|
37
37
|
var import_chunk_YUCPBDWV = require("../chunk-YUCPBDWV.js");
|
38
38
|
var import_chunk_RM5LJIEV = require("../chunk-RM5LJIEV.js");
|
@@ -2009,7 +2009,7 @@ var require_connection_pool = (0, import_chunk_WWAWV7DQ.__commonJS)({
|
|
2009
2009
|
"../../node_modules/.pnpm/mssql@11.0.1/node_modules/mssql/lib/base/connection-pool.js"(exports, module2) {
|
2010
2010
|
"use strict";
|
2011
2011
|
var { EventEmitter } = (0, import_chunk_WWAWV7DQ.__require)("events");
|
2012
|
-
var debug = (0,
|
2012
|
+
var debug = (0, import_chunk_J77IRNPE.require_src)()("mssql:base");
|
2013
2013
|
var { parseSqlConnectionString } = require_lib2();
|
2014
2014
|
var tarn = require_tarn();
|
2015
2015
|
var { IDS } = require_utils2();
|
@@ -2683,7 +2683,7 @@ var require_global_connection = (0, import_chunk_WWAWV7DQ.__commonJS)({
|
|
2683
2683
|
var require_prepared_statement = (0, import_chunk_WWAWV7DQ.__commonJS)({
|
2684
2684
|
"../../node_modules/.pnpm/mssql@11.0.1/node_modules/mssql/lib/base/prepared-statement.js"(exports, module2) {
|
2685
2685
|
"use strict";
|
2686
|
-
var debug = (0,
|
2686
|
+
var debug = (0, import_chunk_J77IRNPE.require_src)()("mssql:base");
|
2687
2687
|
var { EventEmitter } = (0, import_chunk_WWAWV7DQ.__require)("events");
|
2688
2688
|
var { IDS, objectHasProperty: objectHasProperty2 } = require_utils2();
|
2689
2689
|
var globalConnection = require_global_connection();
|
@@ -2992,7 +2992,7 @@ var require_prepared_statement = (0, import_chunk_WWAWV7DQ.__commonJS)({
|
|
2992
2992
|
var require_request = (0, import_chunk_WWAWV7DQ.__commonJS)({
|
2993
2993
|
"../../node_modules/.pnpm/mssql@11.0.1/node_modules/mssql/lib/base/request.js"(exports, module2) {
|
2994
2994
|
"use strict";
|
2995
|
-
var debug = (0,
|
2995
|
+
var debug = (0, import_chunk_J77IRNPE.require_src)()("mssql:base");
|
2996
2996
|
var { EventEmitter } = (0, import_chunk_WWAWV7DQ.__require)("events");
|
2997
2997
|
var { Readable } = (0, import_chunk_WWAWV7DQ.__require)("stream");
|
2998
2998
|
var { IDS, objectHasProperty: objectHasProperty2 } = require_utils2();
|
@@ -3540,7 +3540,7 @@ var require_isolationlevel = (0, import_chunk_WWAWV7DQ.__commonJS)({
|
|
3540
3540
|
var require_transaction = (0, import_chunk_WWAWV7DQ.__commonJS)({
|
3541
3541
|
"../../node_modules/.pnpm/mssql@11.0.1/node_modules/mssql/lib/base/transaction.js"(exports, module2) {
|
3542
3542
|
"use strict";
|
3543
|
-
var debug = (0,
|
3543
|
+
var debug = (0, import_chunk_J77IRNPE.require_src)()("mssql:base");
|
3544
3544
|
var { EventEmitter } = (0, import_chunk_WWAWV7DQ.__require)("events");
|
3545
3545
|
var { IDS } = require_utils2();
|
3546
3546
|
var globalConnection = require_global_connection();
|
@@ -15940,7 +15940,7 @@ var require_src2 = (0, import_chunk_WWAWV7DQ.__commonJS)({
|
|
15940
15940
|
return mod && mod.__esModule ? mod : { "default": mod };
|
15941
15941
|
};
|
15942
15942
|
var events_1 = (0, import_chunk_WWAWV7DQ.__require)("events");
|
15943
|
-
var debug_1 = __importDefault((0,
|
15943
|
+
var debug_1 = __importDefault((0, import_chunk_J77IRNPE.require_src)());
|
15944
15944
|
var promisify_1 = __importDefault(require_promisify());
|
15945
15945
|
var debug = debug_1.default("agent-base");
|
15946
15946
|
function isAgent(v) {
|
@@ -16121,7 +16121,7 @@ var require_parse_proxy_response = (0, import_chunk_WWAWV7DQ.__commonJS)({
|
|
16121
16121
|
return mod && mod.__esModule ? mod : { "default": mod };
|
16122
16122
|
};
|
16123
16123
|
Object.defineProperty(exports, "__esModule", { value: true });
|
16124
|
-
var debug_1 = __importDefault((0,
|
16124
|
+
var debug_1 = __importDefault((0, import_chunk_J77IRNPE.require_src)());
|
16125
16125
|
var debug = debug_1.default("https-proxy-agent:parse-proxy-response");
|
16126
16126
|
function parseProxyResponse(socket) {
|
16127
16127
|
return new Promise((resolve, reject) => {
|
@@ -16216,7 +16216,7 @@ var require_agent = (0, import_chunk_WWAWV7DQ.__commonJS)({
|
|
16216
16216
|
var tls_1 = __importDefault((0, import_chunk_WWAWV7DQ.__require)("tls"));
|
16217
16217
|
var url_1 = __importDefault((0, import_chunk_WWAWV7DQ.__require)("url"));
|
16218
16218
|
var assert_1 = __importDefault((0, import_chunk_WWAWV7DQ.__require)("assert"));
|
16219
|
-
var debug_1 = __importDefault((0,
|
16219
|
+
var debug_1 = __importDefault((0, import_chunk_J77IRNPE.require_src)());
|
16220
16220
|
var agent_base_1 = require_src2();
|
16221
16221
|
var parse_proxy_response_1 = __importDefault(require_parse_proxy_response());
|
16222
16222
|
var debug = debug_1.default("https-proxy-agent:agent");
|
@@ -16417,7 +16417,7 @@ var require_agent2 = (0, import_chunk_WWAWV7DQ.__commonJS)({
|
|
16417
16417
|
var net_1 = __importDefault((0, import_chunk_WWAWV7DQ.__require)("net"));
|
16418
16418
|
var tls_1 = __importDefault((0, import_chunk_WWAWV7DQ.__require)("tls"));
|
16419
16419
|
var url_1 = __importDefault((0, import_chunk_WWAWV7DQ.__require)("url"));
|
16420
|
-
var debug_1 = __importDefault((0,
|
16420
|
+
var debug_1 = __importDefault((0, import_chunk_J77IRNPE.require_src)());
|
16421
16421
|
var once_1 = __importDefault(require_dist2());
|
16422
16422
|
var agent_base_1 = require_src2();
|
16423
16423
|
var debug = (0, debug_1.default)("http-proxy-agent");
|
@@ -28777,7 +28777,7 @@ var require_TokenExpiredError = (0, import_chunk_WWAWV7DQ.__commonJS)({
|
|
28777
28777
|
var require_timespan = (0, import_chunk_WWAWV7DQ.__commonJS)({
|
28778
28778
|
"../../node_modules/.pnpm/jsonwebtoken@9.0.2/node_modules/jsonwebtoken/lib/timespan.js"(exports, module2) {
|
28779
28779
|
"use strict";
|
28780
|
-
var ms = (0,
|
28780
|
+
var ms = (0, import_chunk_J77IRNPE.require_ms)();
|
28781
28781
|
module2.exports = function(time, iat) {
|
28782
28782
|
var timestamp = iat || Math.floor(Date.now() / 1e3);
|
28783
28783
|
if (typeof time === "string") {
|
@@ -65648,7 +65648,7 @@ var require_connection_pool2 = (0, import_chunk_WWAWV7DQ.__commonJS)({
|
|
65648
65648
|
"../../node_modules/.pnpm/mssql@11.0.1/node_modules/mssql/lib/tedious/connection-pool.js"(exports, module2) {
|
65649
65649
|
"use strict";
|
65650
65650
|
var tds = require_tedious();
|
65651
|
-
var debug = (0,
|
65651
|
+
var debug = (0, import_chunk_J77IRNPE.require_src)()("mssql:tedi");
|
65652
65652
|
var BaseConnectionPool = require_connection_pool();
|
65653
65653
|
var { IDS } = require_utils2();
|
65654
65654
|
var shared = require_shared();
|
@@ -65791,7 +65791,7 @@ var require_connection_pool2 = (0, import_chunk_WWAWV7DQ.__commonJS)({
|
|
65791
65791
|
var require_transaction3 = (0, import_chunk_WWAWV7DQ.__commonJS)({
|
65792
65792
|
"../../node_modules/.pnpm/mssql@11.0.1/node_modules/mssql/lib/tedious/transaction.js"(exports, module2) {
|
65793
65793
|
"use strict";
|
65794
|
-
var debug = (0,
|
65794
|
+
var debug = (0, import_chunk_J77IRNPE.require_src)()("mssql:tedi");
|
65795
65795
|
var BaseTransaction = require_transaction();
|
65796
65796
|
var { IDS } = require_utils2();
|
65797
65797
|
var TransactionError = require_transaction_error();
|
@@ -66070,7 +66070,7 @@ var require_request3 = (0, import_chunk_WWAWV7DQ.__commonJS)({
|
|
66070
66070
|
"../../node_modules/.pnpm/mssql@11.0.1/node_modules/mssql/lib/tedious/request.js"(exports, module2) {
|
66071
66071
|
"use strict";
|
66072
66072
|
var tds = require_tedious();
|
66073
|
-
var debug = (0,
|
66073
|
+
var debug = (0, import_chunk_J77IRNPE.require_src)()("mssql:tedi");
|
66074
66074
|
var BaseRequest = require_request();
|
66075
66075
|
var RequestError = require_request_error();
|
66076
66076
|
var { IDS, objectHasProperty: objectHasProperty2 } = require_utils2();
|
package/dist/utils/setupMongo.js
CHANGED
@@ -33,7 +33,7 @@ __export(setupMongo_exports, {
|
|
33
33
|
tearDownMongo: () => tearDownMongo
|
34
34
|
});
|
35
35
|
module.exports = __toCommonJS(setupMongo_exports);
|
36
|
-
var
|
36
|
+
var import_chunk_J77IRNPE = require("../chunk-J77IRNPE.js");
|
37
37
|
var import_chunk_RM5LJIEV = require("../chunk-RM5LJIEV.js");
|
38
38
|
var import_chunk_WWAWV7DQ = require("../chunk-WWAWV7DQ.js");
|
39
39
|
var import_path = __toESM(require("path"));
|
@@ -39833,7 +39833,7 @@ var require_utils5 = (0, import_chunk_WWAWV7DQ.__commonJS)({
|
|
39833
39833
|
"../../node_modules/.pnpm/mongoose@8.4.3/node_modules/mongoose/lib/utils.js"(exports) {
|
39834
39834
|
"use strict";
|
39835
39835
|
var UUID = require_bson().UUID;
|
39836
|
-
var ms = (0,
|
39836
|
+
var ms = (0, import_chunk_J77IRNPE.require_ms)();
|
39837
39837
|
var mpath = require_mpath();
|
39838
39838
|
var ObjectId2 = require_objectid();
|
39839
39839
|
var PopulateOptions = require_populateOptions();
|
@@ -51059,7 +51059,7 @@ var require_mquery = (0, import_chunk_WWAWV7DQ.__commonJS)({
|
|
51059
51059
|
var assert = (0, import_chunk_WWAWV7DQ.__require)("assert");
|
51060
51060
|
var util = (0, import_chunk_WWAWV7DQ.__require)("util");
|
51061
51061
|
var utils = require_utils6();
|
51062
|
-
var debug = (0,
|
51062
|
+
var debug = (0, import_chunk_J77IRNPE.require_src)()("mquery");
|
51063
51063
|
function Query(criteria, options) {
|
51064
51064
|
if (!(this instanceof Query))
|
51065
51065
|
return new Query(criteria, options);
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@prisma/migrate",
|
3
|
-
"version": "5.23.0-dev.
|
3
|
+
"version": "5.23.0-dev.7",
|
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",
|
@@ -58,10 +58,10 @@
|
|
58
58
|
"dependencies": {
|
59
59
|
"@prisma/engines-version": "5.23.0-5.29bc8ca375232bc314ff30d684056b8c5a8f0583",
|
60
60
|
"prompts": "2.4.2",
|
61
|
-
"@prisma/debug": "5.23.0-dev.
|
62
|
-
"@prisma/
|
63
|
-
"@prisma/get-platform": "5.23.0-dev.
|
64
|
-
"@prisma/
|
61
|
+
"@prisma/debug": "5.23.0-dev.7",
|
62
|
+
"@prisma/internals": "5.23.0-dev.7",
|
63
|
+
"@prisma/get-platform": "5.23.0-dev.7",
|
64
|
+
"@prisma/generator-helper": "5.23.0-dev.7"
|
65
65
|
},
|
66
66
|
"files": [
|
67
67
|
"README.md",
|