@prisma/migrate 5.23.0-dev.12 → 5.23.0-dev.14

Sign up to get free protection for your applications and to get access to all the features.
@@ -26,16 +26,15 @@ 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_B6SEROKI_exports = {};
30
- __export(chunk_B6SEROKI_exports, {
29
+ var chunk_WKQT5TGV_exports = {};
30
+ __export(chunk_WKQT5TGV_exports, {
31
31
  MigrateDiff: () => MigrateDiff,
32
32
  init_MigrateDiff: () => init_MigrateDiff
33
33
  });
34
- module.exports = __toCommonJS(chunk_B6SEROKI_exports);
34
+ module.exports = __toCommonJS(chunk_WKQT5TGV_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");
38
- var import_chunk_WIZM7TFT = require("./chunk-WIZM7TFT.js");
39
38
  var import_chunk_MWEO3VUS = require("./chunk-MWEO3VUS.js");
40
39
  var import_chunk_LVFPGUOH = require("./chunk-LVFPGUOH.js");
41
40
  var import_chunk_6TE2RIPN = require("./chunk-6TE2RIPN.js");
@@ -5028,778 +5027,6 @@ var require_ensure = (0, import_chunk_WWAWV7DQ.__commonJS)({
5028
5027
  };
5029
5028
  }
5030
5029
  });
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
- });
5803
5030
  var require_utils2 = (0, import_chunk_WWAWV7DQ.__commonJS)({
5804
5031
  "../../node_modules/.pnpm/jsonfile@6.1.0/node_modules/jsonfile/utils.js"(exports, module2) {
5805
5032
  "use strict";
@@ -5820,7 +5047,7 @@ var require_jsonfile = (0, import_chunk_WWAWV7DQ.__commonJS)({
5820
5047
  "use strict";
5821
5048
  var _fs;
5822
5049
  try {
5823
- _fs = require_graceful_fs2();
5050
+ _fs = require_graceful_fs();
5824
5051
  } catch (_) {
5825
5052
  _fs = (0, import_chunk_WWAWV7DQ.__require)("fs");
5826
5053
  }
@@ -11526,7 +10753,7 @@ var require_package = (0, import_chunk_WWAWV7DQ.__commonJS)({
11526
10753
  "../internals/package.json"(exports, module2) {
11527
10754
  module2.exports = {
11528
10755
  name: "@prisma/internals",
11529
- version: "0.0.0",
10756
+ version: "5.23.0-dev.14",
11530
10757
  description: "This package is intended for Prisma's internal use",
11531
10758
  main: "dist/index.js",
11532
10759
  types: "dist/index.d.ts",
@@ -11611,7 +10838,7 @@ var require_package = (0, import_chunk_WWAWV7DQ.__commonJS)({
11611
10838
  "@prisma/fetch-engine": "workspace:*",
11612
10839
  "@prisma/generator-helper": "workspace:*",
11613
10840
  "@prisma/get-platform": "workspace:*",
11614
- "@prisma/prisma-schema-wasm": "5.23.0-10.5b155e0290acbe06ba32edc234026b6943efee9a",
10841
+ "@prisma/prisma-schema-wasm": "5.23.0-11.90c6eb338aab4ebc379a3dfb6d0130b1535db96c",
11615
10842
  "@prisma/schema-files-loader": "workspace:*",
11616
10843
  arg: "5.0.2",
11617
10844
  prompts: "2.4.2"
@@ -11980,14 +11207,9 @@ async function getSchemaWithPathInternal(schemaPathFromArgs, { cwd, argumentName
11980
11207
  if (defaultResult.ok) {
11981
11208
  return defaultResult;
11982
11209
  }
11983
- const yarnResult = await getSchemaFromYarn1Workspace(cwd, defaultResult.error.failures);
11984
- if (yarnResult.ok) {
11985
- return yarnResult;
11986
- }
11987
- const finalError = yarnResult.error.kind === "Yarn1WorkspaceSchemaNotFound" ? defaultResult.error : yarnResult.error;
11988
11210
  return {
11989
11211
  ok: false,
11990
- error: finalError
11212
+ error: defaultResult.error
11991
11213
  };
11992
11214
  }
11993
11215
  function renderLookupError(error) {
@@ -12062,47 +11284,6 @@ async function getSchemaFromPackageJson(cwd) {
12062
11284
  }
12063
11285
  return lookupResult;
12064
11286
  }
12065
- async function getSchemaFromYarn1Workspace(cwd, pastFailures) {
12066
- if (!process.env.npm_config_user_agent?.includes("yarn")) {
12067
- return { ok: false, error: { kind: "Yarn1WorkspaceSchemaNotFound" } };
12068
- }
12069
- let workspaces;
12070
- try {
12071
- const { stdout: version2 } = await import_execa.default.command("yarn --version", {
12072
- cwd
12073
- });
12074
- if (version2.startsWith("2")) {
12075
- return { ok: false, error: { kind: "Yarn1WorkspaceSchemaNotFound" } };
12076
- }
12077
- const { stdout } = await import_execa.default.command("yarn workspaces info --json", {
12078
- cwd
12079
- });
12080
- const json = getJson(stdout);
12081
- workspaces = Object.values(json);
12082
- } catch {
12083
- return { ok: false, error: { kind: "Yarn1WorkspaceSchemaNotFound" } };
12084
- }
12085
- const workspaceRootDir = await findWorkspaceRoot(cwd);
12086
- if (!workspaceRootDir) {
12087
- return { ok: false, error: { kind: "Yarn1WorkspaceSchemaNotFound" } };
12088
- }
12089
- for (const workspace of workspaces) {
12090
- const workspacePath = import_path5.default.join(workspaceRootDir, workspace.location);
12091
- const workspaceSchema = await tryWorkspacePath(workspacePath, pastFailures);
12092
- if (workspaceSchema.ok) {
12093
- return workspaceSchema;
12094
- }
12095
- }
12096
- const rootPathSchema = await tryWorkspacePath(workspaceRootDir, pastFailures);
12097
- return rootPathSchema;
12098
- }
12099
- async function tryWorkspacePath(cwd, pastFailures) {
12100
- const pkgJson = await getSchemaFromPackageJson(cwd);
12101
- if (pkgJson.ok) {
12102
- return pkgJson;
12103
- }
12104
- return getDefaultSchema(cwd, pastFailures);
12105
- }
12106
11287
  async function getDefaultSchema(cwd, failures = []) {
12107
11288
  const schemaPrisma = {
12108
11289
  schemaPath: {
@@ -12167,50 +11348,11 @@ async function loadSchemaFromDefaultLocation(lookupPath) {
12167
11348
  return readSchemaFromDirectory(lookupPath.path);
12168
11349
  }
12169
11350
  }
12170
- function getJson(stdout) {
12171
- const firstCurly = stdout.indexOf("{");
12172
- const lastCurly = stdout.lastIndexOf("}");
12173
- const sliced = stdout.slice(firstCurly, lastCurly + 1);
12174
- return JSON.parse(sliced);
12175
- }
12176
- function isPkgJsonWorkspaceRoot(pkgJson) {
12177
- const workspaces = pkgJson.workspaces;
12178
- if (!workspaces) {
12179
- return false;
12180
- }
12181
- return Array.isArray(workspaces) || workspaces.packages !== void 0;
12182
- }
12183
- async function isNearestPkgJsonWorkspaceRoot(cwd) {
12184
- const pkgJson = await readPackageUp({ cwd, normalize: false });
12185
- if (!pkgJson) {
12186
- return null;
12187
- }
12188
- return {
12189
- isRoot: isPkgJsonWorkspaceRoot(pkgJson.packageJson),
12190
- path: pkgJson.path
12191
- };
12192
- }
12193
- async function findWorkspaceRoot(cwd) {
12194
- let pkgJson = await isNearestPkgJsonWorkspaceRoot(cwd);
12195
- if (!pkgJson) {
12196
- return null;
12197
- }
12198
- if (pkgJson.isRoot === true) {
12199
- return import_path5.default.dirname(pkgJson.path);
12200
- }
12201
- const pkgJsonParentDir = import_path5.default.dirname(import_path5.default.dirname(pkgJson.path));
12202
- pkgJson = await isNearestPkgJsonWorkspaceRoot(pkgJsonParentDir);
12203
- if (!pkgJson || pkgJson.isRoot === false) {
12204
- return null;
12205
- }
12206
- return import_path5.default.dirname(pkgJson.path);
12207
- }
12208
- var import_schema_files_loader, import_execa, readFile, stat, debug2;
11351
+ var import_schema_files_loader, readFile, stat, debug2;
12209
11352
  var init_getSchema = (0, import_chunk_WWAWV7DQ.__esm)({
12210
11353
  "../internals/src/cli/getSchema.ts"() {
12211
11354
  "use strict";
12212
11355
  import_schema_files_loader = (0, import_chunk_WWAWV7DQ.__toESM)(require_dist());
12213
- import_execa = (0, import_chunk_WWAWV7DQ.__toESM)((0, import_chunk_WIZM7TFT.require_execa)());
12214
11356
  (0, import_chunk_6TE2RIPN.init_colors)();
12215
11357
  init_read_package_up();
12216
11358
  init_engine_commands();