@prisma/migrate 7.5.0-dev.5 → 7.5.0-dev.50
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/bin.js +1 -1
- package/dist/utils/setupMSSQL.js +92 -80
- package/package.json +10 -10
package/dist/bin.js
CHANGED
|
@@ -67,7 +67,7 @@ var import_config = require("@prisma/config");
|
|
|
67
67
|
var import_debug = __toESM(require("@prisma/debug"));
|
|
68
68
|
var import_engines_version = require("@prisma/engines-version");
|
|
69
69
|
var import_internals = require("@prisma/internals");
|
|
70
|
-
var version = "7.5.0-dev.
|
|
70
|
+
var version = "7.5.0-dev.50";
|
|
71
71
|
process.on("uncaughtException", (e) => {
|
|
72
72
|
console.log(e);
|
|
73
73
|
});
|
package/dist/utils/setupMSSQL.js
CHANGED
|
@@ -17656,31 +17656,43 @@ var require_dist = (0, import_chunk_2ESYSVXG.__commonJS)({
|
|
|
17656
17656
|
module2.exports = createHttpsProxyAgent;
|
|
17657
17657
|
}
|
|
17658
17658
|
});
|
|
17659
|
-
var
|
|
17660
|
-
|
|
17661
|
-
|
|
17662
|
-
|
|
17663
|
-
|
|
17664
|
-
|
|
17665
|
-
|
|
17666
|
-
|
|
17667
|
-
|
|
17668
|
-
|
|
17669
|
-
}
|
|
17670
|
-
function onEvent(...args) {
|
|
17671
|
-
cleanup();
|
|
17672
|
-
resolve(args);
|
|
17673
|
-
}
|
|
17674
|
-
function onError(err) {
|
|
17675
|
-
cleanup();
|
|
17676
|
-
reject(err);
|
|
17677
|
-
}
|
|
17678
|
-
signal === null || signal === void 0 ? void 0 : signal.addEventListener("abort", cleanup);
|
|
17679
|
-
emitter.on(name3, onEvent);
|
|
17680
|
-
emitter.on("error", onError);
|
|
17681
|
-
});
|
|
17659
|
+
var dist_exports = {};
|
|
17660
|
+
(0, import_chunk_2ESYSVXG.__export)(dist_exports, {
|
|
17661
|
+
default: () => once
|
|
17662
|
+
});
|
|
17663
|
+
function once(emitter, name3, { signal } = {}) {
|
|
17664
|
+
return new Promise((resolve, reject) => {
|
|
17665
|
+
function cleanup() {
|
|
17666
|
+
signal === null || signal === void 0 ? void 0 : signal.removeEventListener("abort", onAbort);
|
|
17667
|
+
emitter.removeListener(name3, onEvent);
|
|
17668
|
+
emitter.removeListener("error", onError);
|
|
17682
17669
|
}
|
|
17683
|
-
|
|
17670
|
+
function onEvent(...args) {
|
|
17671
|
+
cleanup();
|
|
17672
|
+
resolve(args);
|
|
17673
|
+
}
|
|
17674
|
+
function onError(err) {
|
|
17675
|
+
cleanup();
|
|
17676
|
+
reject(err);
|
|
17677
|
+
}
|
|
17678
|
+
function onAbort() {
|
|
17679
|
+
cleanup();
|
|
17680
|
+
const err = new Error("The operation was aborted");
|
|
17681
|
+
err.name = "AbortError";
|
|
17682
|
+
reject(err);
|
|
17683
|
+
}
|
|
17684
|
+
if (signal === null || signal === void 0 ? void 0 : signal.aborted) {
|
|
17685
|
+
onAbort();
|
|
17686
|
+
return;
|
|
17687
|
+
}
|
|
17688
|
+
signal === null || signal === void 0 ? void 0 : signal.addEventListener("abort", onAbort);
|
|
17689
|
+
emitter.on(name3, onEvent);
|
|
17690
|
+
emitter.on("error", onError);
|
|
17691
|
+
});
|
|
17692
|
+
}
|
|
17693
|
+
var init_dist = (0, import_chunk_2ESYSVXG.__esm)({
|
|
17694
|
+
"../../node_modules/.pnpm/@tootallnate+once@3.0.1/node_modules/@tootallnate/once/dist/index.js"() {
|
|
17695
|
+
"use strict";
|
|
17684
17696
|
}
|
|
17685
17697
|
});
|
|
17686
17698
|
var require_agent2 = (0, import_chunk_2ESYSVXG.__commonJS)({
|
|
@@ -17721,7 +17733,7 @@ var require_agent2 = (0, import_chunk_2ESYSVXG.__commonJS)({
|
|
|
17721
17733
|
var tls_1 = __importDefault((0, import_chunk_2ESYSVXG.__require)("tls"));
|
|
17722
17734
|
var url_1 = __importDefault((0, import_chunk_2ESYSVXG.__require)("url"));
|
|
17723
17735
|
var debug_1 = __importDefault((0, import_chunk_T3SJN3YL.require_src)());
|
|
17724
|
-
var once_1 = __importDefault(
|
|
17736
|
+
var once_1 = __importDefault((init_dist(), (0, import_chunk_2ESYSVXG.__toCommonJS)(dist_exports)));
|
|
17725
17737
|
var agent_base_1 = require_src3();
|
|
17726
17738
|
var debug = (0, debug_1.default)("http-proxy-agent");
|
|
17727
17739
|
function isHTTPS(protocol) {
|
|
@@ -17817,7 +17829,7 @@ var require_agent2 = (0, import_chunk_2ESYSVXG.__commonJS)({
|
|
|
17817
17829
|
exports.default = HttpProxyAgent2;
|
|
17818
17830
|
}
|
|
17819
17831
|
});
|
|
17820
|
-
var
|
|
17832
|
+
var require_dist2 = (0, import_chunk_2ESYSVXG.__commonJS)({
|
|
17821
17833
|
"../../node_modules/.pnpm/http-proxy-agent@5.0.0/node_modules/http-proxy-agent/dist/index.js"(exports, module2) {
|
|
17822
17834
|
"use strict";
|
|
17823
17835
|
var __importDefault = exports && exports.__importDefault || function(mod) {
|
|
@@ -17972,7 +17984,7 @@ var init_proxyPolicy = (0, import_chunk_2ESYSVXG.__esm)({
|
|
|
17972
17984
|
"../../node_modules/.pnpm/@azure+core-rest-pipeline@1.9.2/node_modules/@azure/core-rest-pipeline/dist-esm/src/policies/proxyPolicy.js"() {
|
|
17973
17985
|
"use strict";
|
|
17974
17986
|
import_https_proxy_agent = (0, import_chunk_2ESYSVXG.__toESM)(require_dist());
|
|
17975
|
-
import_http_proxy_agent = (0, import_chunk_2ESYSVXG.__toESM)(
|
|
17987
|
+
import_http_proxy_agent = (0, import_chunk_2ESYSVXG.__toESM)(require_dist2());
|
|
17976
17988
|
init_log2();
|
|
17977
17989
|
HTTPS_PROXY = "HTTPS_PROXY";
|
|
17978
17990
|
HTTP_PROXY = "HTTP_PROXY";
|
|
@@ -27614,7 +27626,7 @@ var init_ServerTelemetryManager = (0, import_chunk_2ESYSVXG.__esm)({
|
|
|
27614
27626
|
};
|
|
27615
27627
|
}
|
|
27616
27628
|
});
|
|
27617
|
-
var
|
|
27629
|
+
var init_dist2 = (0, import_chunk_2ESYSVXG.__esm)({
|
|
27618
27630
|
"../../node_modules/.pnpm/@azure+msal-common@14.12.0/node_modules/@azure/msal-common/dist/index.mjs"() {
|
|
27619
27631
|
"use strict";
|
|
27620
27632
|
init_AuthToken();
|
|
@@ -27659,7 +27671,7 @@ var Deserializer;
|
|
|
27659
27671
|
var init_Deserializer = (0, import_chunk_2ESYSVXG.__esm)({
|
|
27660
27672
|
"../../node_modules/.pnpm/@azure+msal-node@2.9.2/node_modules/@azure/msal-node/dist/cache/serializer/Deserializer.mjs"() {
|
|
27661
27673
|
"use strict";
|
|
27662
|
-
|
|
27674
|
+
init_dist2();
|
|
27663
27675
|
Deserializer = class {
|
|
27664
27676
|
/**
|
|
27665
27677
|
* Parse the JSON blob in memory and deserialize the content
|
|
@@ -27828,7 +27840,7 @@ var AUTHORIZATION_HEADER_NAME, METADATA_HEADER_NAME, APP_SERVICE_SECRET_HEADER_N
|
|
|
27828
27840
|
var init_Constants2 = (0, import_chunk_2ESYSVXG.__esm)({
|
|
27829
27841
|
"../../node_modules/.pnpm/@azure+msal-node@2.9.2/node_modules/@azure/msal-node/dist/utils/Constants.mjs"() {
|
|
27830
27842
|
"use strict";
|
|
27831
|
-
|
|
27843
|
+
init_dist2();
|
|
27832
27844
|
AUTHORIZATION_HEADER_NAME = "Authorization";
|
|
27833
27845
|
METADATA_HEADER_NAME = "Metadata";
|
|
27834
27846
|
APP_SERVICE_SECRET_HEADER_NAME = "X-IDENTITY-HEADER";
|
|
@@ -27964,7 +27976,7 @@ var HttpClient, networkRequestViaProxy, networkRequestViaHttps, parseBody;
|
|
|
27964
27976
|
var init_HttpClient = (0, import_chunk_2ESYSVXG.__esm)({
|
|
27965
27977
|
"../../node_modules/.pnpm/@azure+msal-node@2.9.2/node_modules/@azure/msal-node/dist/network/HttpClient.mjs"() {
|
|
27966
27978
|
"use strict";
|
|
27967
|
-
|
|
27979
|
+
init_dist2();
|
|
27968
27980
|
init_Constants2();
|
|
27969
27981
|
init_NetworkUtils();
|
|
27970
27982
|
HttpClient = class {
|
|
@@ -28218,7 +28230,7 @@ var ManagedIdentityErrorMessages, ManagedIdentityError;
|
|
|
28218
28230
|
var init_ManagedIdentityError = (0, import_chunk_2ESYSVXG.__esm)({
|
|
28219
28231
|
"../../node_modules/.pnpm/@azure+msal-node@2.9.2/node_modules/@azure/msal-node/dist/error/ManagedIdentityError.mjs"() {
|
|
28220
28232
|
"use strict";
|
|
28221
|
-
|
|
28233
|
+
init_dist2();
|
|
28222
28234
|
init_ManagedIdentityErrorCodes();
|
|
28223
28235
|
init_Constants2();
|
|
28224
28236
|
ManagedIdentityErrorMessages = {
|
|
@@ -28341,7 +28353,7 @@ var HttpClientWithRetries;
|
|
|
28341
28353
|
var init_HttpClientWithRetries = (0, import_chunk_2ESYSVXG.__esm)({
|
|
28342
28354
|
"../../node_modules/.pnpm/@azure+msal-node@2.9.2/node_modules/@azure/msal-node/dist/network/HttpClientWithRetries.mjs"() {
|
|
28343
28355
|
"use strict";
|
|
28344
|
-
|
|
28356
|
+
init_dist2();
|
|
28345
28357
|
init_Constants2();
|
|
28346
28358
|
HttpClientWithRetries = class {
|
|
28347
28359
|
constructor(httpClientNoRetries, retryPolicy2) {
|
|
@@ -28413,7 +28425,7 @@ var DEFAULT_AUTH_OPTIONS, DEFAULT_CACHE_OPTIONS2, DEFAULT_LOGGER_OPTIONS, DEFAUL
|
|
|
28413
28425
|
var init_Configuration = (0, import_chunk_2ESYSVXG.__esm)({
|
|
28414
28426
|
"../../node_modules/.pnpm/@azure+msal-node@2.9.2/node_modules/@azure/msal-node/dist/config/Configuration.mjs"() {
|
|
28415
28427
|
"use strict";
|
|
28416
|
-
|
|
28428
|
+
init_dist2();
|
|
28417
28429
|
init_HttpClient();
|
|
28418
28430
|
init_ManagedIdentityId();
|
|
28419
28431
|
init_Constants2();
|
|
@@ -28493,7 +28505,7 @@ var EncodingUtils;
|
|
|
28493
28505
|
var init_EncodingUtils = (0, import_chunk_2ESYSVXG.__esm)({
|
|
28494
28506
|
"../../node_modules/.pnpm/@azure+msal-node@2.9.2/node_modules/@azure/msal-node/dist/utils/EncodingUtils.mjs"() {
|
|
28495
28507
|
"use strict";
|
|
28496
|
-
|
|
28508
|
+
init_dist2();
|
|
28497
28509
|
EncodingUtils = class _EncodingUtils {
|
|
28498
28510
|
/**
|
|
28499
28511
|
* 'utf8': Multibyte encoded Unicode characters. Many web pages and other document formats use UTF-8.
|
|
@@ -28553,7 +28565,7 @@ var PkceGenerator;
|
|
|
28553
28565
|
var init_PkceGenerator = (0, import_chunk_2ESYSVXG.__esm)({
|
|
28554
28566
|
"../../node_modules/.pnpm/@azure+msal-node@2.9.2/node_modules/@azure/msal-node/dist/crypto/PkceGenerator.mjs"() {
|
|
28555
28567
|
"use strict";
|
|
28556
|
-
|
|
28568
|
+
init_dist2();
|
|
28557
28569
|
init_Constants2();
|
|
28558
28570
|
init_EncodingUtils();
|
|
28559
28571
|
init_HashUtils();
|
|
@@ -28690,7 +28702,7 @@ var NodeStorage;
|
|
|
28690
28702
|
var init_NodeStorage = (0, import_chunk_2ESYSVXG.__esm)({
|
|
28691
28703
|
"../../node_modules/.pnpm/@azure+msal-node@2.9.2/node_modules/@azure/msal-node/dist/cache/NodeStorage.mjs"() {
|
|
28692
28704
|
"use strict";
|
|
28693
|
-
|
|
28705
|
+
init_dist2();
|
|
28694
28706
|
init_Deserializer();
|
|
28695
28707
|
init_Serializer();
|
|
28696
28708
|
NodeStorage = class extends CacheManager {
|
|
@@ -29090,7 +29102,7 @@ var defaultSerializedCache, TokenCache;
|
|
|
29090
29102
|
var init_TokenCache = (0, import_chunk_2ESYSVXG.__esm)({
|
|
29091
29103
|
"../../node_modules/.pnpm/@azure+msal-node@2.9.2/node_modules/@azure/msal-node/dist/cache/TokenCache.mjs"() {
|
|
29092
29104
|
"use strict";
|
|
29093
|
-
|
|
29105
|
+
init_dist2();
|
|
29094
29106
|
init_Deserializer();
|
|
29095
29107
|
init_Serializer();
|
|
29096
29108
|
defaultSerializedCache = {
|
|
@@ -32644,7 +32656,7 @@ var require_lodash7 = (0, import_chunk_2ESYSVXG.__commonJS)({
|
|
|
32644
32656
|
return result;
|
|
32645
32657
|
};
|
|
32646
32658
|
}
|
|
32647
|
-
function
|
|
32659
|
+
function once2(func) {
|
|
32648
32660
|
return before(2, func);
|
|
32649
32661
|
}
|
|
32650
32662
|
function isObject2(value) {
|
|
@@ -32690,7 +32702,7 @@ var require_lodash7 = (0, import_chunk_2ESYSVXG.__commonJS)({
|
|
|
32690
32702
|
var isBinary = reIsBinary.test(value);
|
|
32691
32703
|
return isBinary || reIsOctal.test(value) ? freeParseInt(value.slice(2), isBinary ? 2 : 8) : reIsBadHex.test(value) ? NAN : +value;
|
|
32692
32704
|
}
|
|
32693
|
-
module2.exports =
|
|
32705
|
+
module2.exports = once2;
|
|
32694
32706
|
}
|
|
32695
32707
|
});
|
|
32696
32708
|
var require_sign2 = (0, import_chunk_2ESYSVXG.__commonJS)({
|
|
@@ -32706,7 +32718,7 @@ var require_sign2 = (0, import_chunk_2ESYSVXG.__commonJS)({
|
|
|
32706
32718
|
var isNumber = require_lodash4();
|
|
32707
32719
|
var isPlainObject = require_lodash5();
|
|
32708
32720
|
var isString = require_lodash6();
|
|
32709
|
-
var
|
|
32721
|
+
var once2 = require_lodash7();
|
|
32710
32722
|
var { KeyObject, createSecretKey, createPrivateKey: createPrivateKey3 } = (0, import_chunk_2ESYSVXG.__require)("crypto");
|
|
32711
32723
|
var SUPPORTED_ALGS = ["RS256", "RS384", "RS512", "ES256", "ES384", "ES512", "HS256", "HS384", "HS512", "none"];
|
|
32712
32724
|
if (PS_SUPPORTED) {
|
|
@@ -32895,7 +32907,7 @@ var require_sign2 = (0, import_chunk_2ESYSVXG.__commonJS)({
|
|
|
32895
32907
|
});
|
|
32896
32908
|
const encoding = options.encoding || "utf8";
|
|
32897
32909
|
if (typeof callback === "function") {
|
|
32898
|
-
callback = callback &&
|
|
32910
|
+
callback = callback && once2(callback);
|
|
32899
32911
|
jws.createSign({
|
|
32900
32912
|
header,
|
|
32901
32913
|
privateKey: secretOrPrivateKey,
|
|
@@ -32935,7 +32947,7 @@ var init_ClientAssertion = (0, import_chunk_2ESYSVXG.__esm)({
|
|
|
32935
32947
|
"../../node_modules/.pnpm/@azure+msal-node@2.9.2/node_modules/@azure/msal-node/dist/client/ClientAssertion.mjs"() {
|
|
32936
32948
|
"use strict";
|
|
32937
32949
|
import_jsonwebtoken = (0, import_chunk_2ESYSVXG.__toESM)(require_jsonwebtoken(), 1);
|
|
32938
|
-
|
|
32950
|
+
init_dist2();
|
|
32939
32951
|
init_EncodingUtils();
|
|
32940
32952
|
init_Constants2();
|
|
32941
32953
|
ClientAssertion = class _ClientAssertion {
|
|
@@ -33043,7 +33055,7 @@ var NodeAuthErrorMessage, NodeAuthError;
|
|
|
33043
33055
|
var init_NodeAuthError = (0, import_chunk_2ESYSVXG.__esm)({
|
|
33044
33056
|
"../../node_modules/.pnpm/@azure+msal-node@2.9.2/node_modules/@azure/msal-node/dist/error/NodeAuthError.mjs"() {
|
|
33045
33057
|
"use strict";
|
|
33046
|
-
|
|
33058
|
+
init_dist2();
|
|
33047
33059
|
NodeAuthErrorMessage = {
|
|
33048
33060
|
invalidLoopbackAddressType: {
|
|
33049
33061
|
code: "invalid_loopback_server_address_type",
|
|
@@ -33128,7 +33140,7 @@ var UsernamePasswordClient;
|
|
|
33128
33140
|
var init_UsernamePasswordClient = (0, import_chunk_2ESYSVXG.__esm)({
|
|
33129
33141
|
"../../node_modules/.pnpm/@azure+msal-node@2.9.2/node_modules/@azure/msal-node/dist/client/UsernamePasswordClient.mjs"() {
|
|
33130
33142
|
"use strict";
|
|
33131
|
-
|
|
33143
|
+
init_dist2();
|
|
33132
33144
|
UsernamePasswordClient = class extends BaseClient {
|
|
33133
33145
|
constructor(configuration) {
|
|
33134
33146
|
super(configuration);
|
|
@@ -33217,7 +33229,7 @@ var ClientApplication;
|
|
|
33217
33229
|
var init_ClientApplication = (0, import_chunk_2ESYSVXG.__esm)({
|
|
33218
33230
|
"../../node_modules/.pnpm/@azure+msal-node@2.9.2/node_modules/@azure/msal-node/dist/client/ClientApplication.mjs"() {
|
|
33219
33231
|
"use strict";
|
|
33220
|
-
|
|
33232
|
+
init_dist2();
|
|
33221
33233
|
init_Configuration();
|
|
33222
33234
|
init_CryptoProvider();
|
|
33223
33235
|
init_NodeStorage();
|
|
@@ -33542,7 +33554,7 @@ var LoopbackClient;
|
|
|
33542
33554
|
var init_LoopbackClient = (0, import_chunk_2ESYSVXG.__esm)({
|
|
33543
33555
|
"../../node_modules/.pnpm/@azure+msal-node@2.9.2/node_modules/@azure/msal-node/dist/network/LoopbackClient.mjs"() {
|
|
33544
33556
|
"use strict";
|
|
33545
|
-
|
|
33557
|
+
init_dist2();
|
|
33546
33558
|
init_NodeAuthError();
|
|
33547
33559
|
init_Constants2();
|
|
33548
33560
|
LoopbackClient = class {
|
|
@@ -33617,7 +33629,7 @@ var DeviceCodeClient;
|
|
|
33617
33629
|
var init_DeviceCodeClient = (0, import_chunk_2ESYSVXG.__esm)({
|
|
33618
33630
|
"../../node_modules/.pnpm/@azure+msal-node@2.9.2/node_modules/@azure/msal-node/dist/client/DeviceCodeClient.mjs"() {
|
|
33619
33631
|
"use strict";
|
|
33620
|
-
|
|
33632
|
+
init_dist2();
|
|
33621
33633
|
DeviceCodeClient = class extends BaseClient {
|
|
33622
33634
|
constructor(configuration) {
|
|
33623
33635
|
super(configuration);
|
|
@@ -33801,7 +33813,7 @@ var init_PublicClientApplication = (0, import_chunk_2ESYSVXG.__esm)({
|
|
|
33801
33813
|
"../../node_modules/.pnpm/@azure+msal-node@2.9.2/node_modules/@azure/msal-node/dist/client/PublicClientApplication.mjs"() {
|
|
33802
33814
|
"use strict";
|
|
33803
33815
|
init_Constants2();
|
|
33804
|
-
|
|
33816
|
+
init_dist2();
|
|
33805
33817
|
init_ClientApplication();
|
|
33806
33818
|
init_NodeAuthError();
|
|
33807
33819
|
init_LoopbackClient();
|
|
@@ -34016,7 +34028,7 @@ var ClientCredentialClient;
|
|
|
34016
34028
|
var init_ClientCredentialClient = (0, import_chunk_2ESYSVXG.__esm)({
|
|
34017
34029
|
"../../node_modules/.pnpm/@azure+msal-node@2.9.2/node_modules/@azure/msal-node/dist/client/ClientCredentialClient.mjs"() {
|
|
34018
34030
|
"use strict";
|
|
34019
|
-
|
|
34031
|
+
init_dist2();
|
|
34020
34032
|
ClientCredentialClient = class extends BaseClient {
|
|
34021
34033
|
constructor(configuration, appTokenProvider) {
|
|
34022
34034
|
super(configuration);
|
|
@@ -34189,7 +34201,7 @@ var OnBehalfOfClient;
|
|
|
34189
34201
|
var init_OnBehalfOfClient = (0, import_chunk_2ESYSVXG.__esm)({
|
|
34190
34202
|
"../../node_modules/.pnpm/@azure+msal-node@2.9.2/node_modules/@azure/msal-node/dist/client/OnBehalfOfClient.mjs"() {
|
|
34191
34203
|
"use strict";
|
|
34192
|
-
|
|
34204
|
+
init_dist2();
|
|
34193
34205
|
init_EncodingUtils();
|
|
34194
34206
|
OnBehalfOfClient = class extends BaseClient {
|
|
34195
34207
|
constructor(configuration) {
|
|
@@ -34373,7 +34385,7 @@ var init_ConfidentialClientApplication = (0, import_chunk_2ESYSVXG.__esm)({
|
|
|
34373
34385
|
init_ClientApplication();
|
|
34374
34386
|
init_ClientAssertion();
|
|
34375
34387
|
init_Constants2();
|
|
34376
|
-
|
|
34388
|
+
init_dist2();
|
|
34377
34389
|
init_ClientCredentialClient();
|
|
34378
34390
|
init_OnBehalfOfClient();
|
|
34379
34391
|
ConfidentialClientApplication = class extends ClientApplication {
|
|
@@ -34523,7 +34535,7 @@ var ManagedIdentityUserAssignedIdQueryParameterNames, BaseManagedIdentitySource;
|
|
|
34523
34535
|
var init_BaseManagedIdentitySource = (0, import_chunk_2ESYSVXG.__esm)({
|
|
34524
34536
|
"../../node_modules/.pnpm/@azure+msal-node@2.9.2/node_modules/@azure/msal-node/dist/client/ManagedIdentitySources/BaseManagedIdentitySource.mjs"() {
|
|
34525
34537
|
"use strict";
|
|
34526
|
-
|
|
34538
|
+
init_dist2();
|
|
34527
34539
|
init_Constants2();
|
|
34528
34540
|
init_ManagedIdentityError();
|
|
34529
34541
|
init_ManagedIdentityErrorCodes();
|
|
@@ -34622,7 +34634,7 @@ var ManagedIdentityRequestParameters;
|
|
|
34622
34634
|
var init_ManagedIdentityRequestParameters = (0, import_chunk_2ESYSVXG.__esm)({
|
|
34623
34635
|
"../../node_modules/.pnpm/@azure+msal-node@2.9.2/node_modules/@azure/msal-node/dist/config/ManagedIdentityRequestParameters.mjs"() {
|
|
34624
34636
|
"use strict";
|
|
34625
|
-
|
|
34637
|
+
init_dist2();
|
|
34626
34638
|
ManagedIdentityRequestParameters = class {
|
|
34627
34639
|
constructor(httpMethod, endpoint) {
|
|
34628
34640
|
this.httpMethod = httpMethod;
|
|
@@ -34695,7 +34707,7 @@ var ARC_API_VERSION, SUPPORTED_AZURE_ARC_PLATFORMS, AzureArc;
|
|
|
34695
34707
|
var init_AzureArc = (0, import_chunk_2ESYSVXG.__esm)({
|
|
34696
34708
|
"../../node_modules/.pnpm/@azure+msal-node@2.9.2/node_modules/@azure/msal-node/dist/client/ManagedIdentitySources/AzureArc.mjs"() {
|
|
34697
34709
|
"use strict";
|
|
34698
|
-
|
|
34710
|
+
init_dist2();
|
|
34699
34711
|
init_ManagedIdentityRequestParameters();
|
|
34700
34712
|
init_BaseManagedIdentitySource();
|
|
34701
34713
|
init_ManagedIdentityError();
|
|
@@ -34974,7 +34986,7 @@ var ManagedIdentityApplication;
|
|
|
34974
34986
|
var init_ManagedIdentityApplication = (0, import_chunk_2ESYSVXG.__esm)({
|
|
34975
34987
|
"../../node_modules/.pnpm/@azure+msal-node@2.9.2/node_modules/@azure/msal-node/dist/client/ManagedIdentityApplication.mjs"() {
|
|
34976
34988
|
"use strict";
|
|
34977
|
-
|
|
34989
|
+
init_dist2();
|
|
34978
34990
|
init_Configuration();
|
|
34979
34991
|
init_packageMetadata2();
|
|
34980
34992
|
init_CryptoProvider();
|
|
@@ -35066,7 +35078,7 @@ var DistributedCachePlugin;
|
|
|
35066
35078
|
var init_DistributedCachePlugin = (0, import_chunk_2ESYSVXG.__esm)({
|
|
35067
35079
|
"../../node_modules/.pnpm/@azure+msal-node@2.9.2/node_modules/@azure/msal-node/dist/cache/distributed/DistributedCachePlugin.mjs"() {
|
|
35068
35080
|
"use strict";
|
|
35069
|
-
|
|
35081
|
+
init_dist2();
|
|
35070
35082
|
DistributedCachePlugin = class {
|
|
35071
35083
|
constructor(client, partitionManager) {
|
|
35072
35084
|
this.client = client;
|
|
@@ -35091,8 +35103,8 @@ var init_DistributedCachePlugin = (0, import_chunk_2ESYSVXG.__esm)({
|
|
|
35091
35103
|
};
|
|
35092
35104
|
}
|
|
35093
35105
|
});
|
|
35094
|
-
var
|
|
35095
|
-
(0, import_chunk_2ESYSVXG.__export)(
|
|
35106
|
+
var dist_exports2 = {};
|
|
35107
|
+
(0, import_chunk_2ESYSVXG.__export)(dist_exports2, {
|
|
35096
35108
|
AuthError: () => AuthError,
|
|
35097
35109
|
AuthErrorCodes: () => AuthErrorCodes_exports,
|
|
35098
35110
|
AuthErrorMessage: () => AuthErrorMessage,
|
|
@@ -35131,7 +35143,7 @@ var dist_exports = {};
|
|
|
35131
35143
|
internals: () => internals_exports,
|
|
35132
35144
|
version: () => version2
|
|
35133
35145
|
});
|
|
35134
|
-
var
|
|
35146
|
+
var init_dist3 = (0, import_chunk_2ESYSVXG.__esm)({
|
|
35135
35147
|
"../../node_modules/.pnpm/@azure+msal-node@2.9.2/node_modules/@azure/msal-node/dist/index.mjs"() {
|
|
35136
35148
|
"use strict";
|
|
35137
35149
|
init_internals();
|
|
@@ -35150,7 +35162,7 @@ var init_dist2 = (0, import_chunk_2ESYSVXG.__esm)({
|
|
|
35150
35162
|
init_DistributedCachePlugin();
|
|
35151
35163
|
init_Constants2();
|
|
35152
35164
|
init_CryptoProvider();
|
|
35153
|
-
|
|
35165
|
+
init_dist2();
|
|
35154
35166
|
init_packageMetadata2();
|
|
35155
35167
|
}
|
|
35156
35168
|
});
|
|
@@ -35568,7 +35580,7 @@ var init_fabricMsi = (0, import_chunk_2ESYSVXG.__esm)({
|
|
|
35568
35580
|
var init_msal = (0, import_chunk_2ESYSVXG.__esm)({
|
|
35569
35581
|
"../../node_modules/.pnpm/@azure+identity@4.3.0/node_modules/@azure/identity/dist-esm/src/msal/msal.js"() {
|
|
35570
35582
|
"use strict";
|
|
35571
|
-
|
|
35583
|
+
init_dist3();
|
|
35572
35584
|
}
|
|
35573
35585
|
});
|
|
35574
35586
|
function ensureValidMsalToken(scopes, msalToken, getTokenOptions) {
|
|
@@ -35612,15 +35624,15 @@ function getKnownAuthorities(tenantId, authorityHost, disableInstanceDiscovery)
|
|
|
35612
35624
|
function getMSALLogLevel(logLevel) {
|
|
35613
35625
|
switch (logLevel) {
|
|
35614
35626
|
case "error":
|
|
35615
|
-
return
|
|
35627
|
+
return dist_exports2.LogLevel.Error;
|
|
35616
35628
|
case "info":
|
|
35617
|
-
return
|
|
35629
|
+
return dist_exports2.LogLevel.Info;
|
|
35618
35630
|
case "verbose":
|
|
35619
|
-
return
|
|
35631
|
+
return dist_exports2.LogLevel.Verbose;
|
|
35620
35632
|
case "warning":
|
|
35621
|
-
return
|
|
35633
|
+
return dist_exports2.LogLevel.Warning;
|
|
35622
35634
|
default:
|
|
35623
|
-
return
|
|
35635
|
+
return dist_exports2.LogLevel.Info;
|
|
35624
35636
|
}
|
|
35625
35637
|
}
|
|
35626
35638
|
function randomUUID2() {
|
|
@@ -35696,16 +35708,16 @@ var init_utils3 = (0, import_chunk_2ESYSVXG.__esm)({
|
|
|
35696
35708
|
return;
|
|
35697
35709
|
}
|
|
35698
35710
|
switch (level) {
|
|
35699
|
-
case
|
|
35711
|
+
case dist_exports2.LogLevel.Error:
|
|
35700
35712
|
credLogger.info(`MSAL ${platform} V2 error: ${message}`);
|
|
35701
35713
|
return;
|
|
35702
|
-
case
|
|
35714
|
+
case dist_exports2.LogLevel.Info:
|
|
35703
35715
|
credLogger.info(`MSAL ${platform} V2 info message: ${message}`);
|
|
35704
35716
|
return;
|
|
35705
|
-
case
|
|
35717
|
+
case dist_exports2.LogLevel.Verbose:
|
|
35706
35718
|
credLogger.info(`MSAL ${platform} V2 verbose message: ${message}`);
|
|
35707
35719
|
return;
|
|
35708
|
-
case
|
|
35720
|
+
case dist_exports2.LogLevel.Warning:
|
|
35709
35721
|
credLogger.info(`MSAL ${platform} V2 warning: ${message}`);
|
|
35710
35722
|
return;
|
|
35711
35723
|
}
|
|
@@ -36172,7 +36184,7 @@ var msalLogger;
|
|
|
36172
36184
|
var init_msalClient = (0, import_chunk_2ESYSVXG.__esm)({
|
|
36173
36185
|
"../../node_modules/.pnpm/@azure+identity@4.3.0/node_modules/@azure/identity/dist-esm/src/msal/nodeFlows/msalClient.js"() {
|
|
36174
36186
|
"use strict";
|
|
36175
|
-
|
|
36187
|
+
init_dist3();
|
|
36176
36188
|
init_logging();
|
|
36177
36189
|
init_msalPlugins();
|
|
36178
36190
|
init_utils3();
|
|
@@ -36348,7 +36360,7 @@ var logger15, ManagedIdentityCredential;
|
|
|
36348
36360
|
var init_managedIdentityCredential = (0, import_chunk_2ESYSVXG.__esm)({
|
|
36349
36361
|
"../../node_modules/.pnpm/@azure+identity@4.3.0/node_modules/@azure/identity/dist-esm/src/credentials/managedIdentityCredential/index.js"() {
|
|
36350
36362
|
"use strict";
|
|
36351
|
-
|
|
36363
|
+
init_dist3();
|
|
36352
36364
|
init_errors();
|
|
36353
36365
|
init_logging();
|
|
36354
36366
|
init_constants();
|
|
@@ -37580,7 +37592,7 @@ var MsalNode;
|
|
|
37580
37592
|
var init_msalNodeCommon = (0, import_chunk_2ESYSVXG.__esm)({
|
|
37581
37593
|
"../../node_modules/.pnpm/@azure+identity@4.3.0/node_modules/@azure/identity/dist-esm/src/msal/nodeFlows/msalNodeCommon.js"() {
|
|
37582
37594
|
"use strict";
|
|
37583
|
-
|
|
37595
|
+
init_dist3();
|
|
37584
37596
|
init_constants();
|
|
37585
37597
|
init_logging();
|
|
37586
37598
|
init_utils3();
|
|
@@ -42955,7 +42967,7 @@ var require_end_of_stream = (0, import_chunk_2ESYSVXG.__commonJS)({
|
|
|
42955
42967
|
var process2 = require_process();
|
|
42956
42968
|
var { AbortError: AbortError3, codes } = require_errors2();
|
|
42957
42969
|
var { ERR_INVALID_ARG_TYPE, ERR_STREAM_PREMATURE_CLOSE } = codes;
|
|
42958
|
-
var { kEmptyObject, once } = require_util();
|
|
42970
|
+
var { kEmptyObject, once: once2 } = require_util();
|
|
42959
42971
|
var { validateAbortSignal, validateFunction, validateObject, validateBoolean } = require_validators();
|
|
42960
42972
|
var { Promise: Promise2, PromisePrototypeThen } = require_primordials();
|
|
42961
42973
|
var {
|
|
@@ -42991,7 +43003,7 @@ var require_end_of_stream = (0, import_chunk_2ESYSVXG.__commonJS)({
|
|
|
42991
43003
|
}
|
|
42992
43004
|
validateFunction(callback, "callback");
|
|
42993
43005
|
validateAbortSignal(options.signal, "options.signal");
|
|
42994
|
-
callback =
|
|
43006
|
+
callback = once2(callback);
|
|
42995
43007
|
if (isReadableStream2(stream) || isWritableStream(stream)) {
|
|
42996
43008
|
return eosWeb(stream, options, callback);
|
|
42997
43009
|
}
|
|
@@ -43128,7 +43140,7 @@ var require_end_of_stream = (0, import_chunk_2ESYSVXG.__commonJS)({
|
|
|
43128
43140
|
process2.nextTick(abort);
|
|
43129
43141
|
} else {
|
|
43130
43142
|
const originalCallback = callback;
|
|
43131
|
-
callback =
|
|
43143
|
+
callback = once2((...args) => {
|
|
43132
43144
|
options.signal.removeEventListener("abort", abort);
|
|
43133
43145
|
originalCallback.apply(stream, args);
|
|
43134
43146
|
});
|
|
@@ -43154,7 +43166,7 @@ var require_end_of_stream = (0, import_chunk_2ESYSVXG.__commonJS)({
|
|
|
43154
43166
|
process2.nextTick(abort);
|
|
43155
43167
|
} else {
|
|
43156
43168
|
const originalCallback = callback;
|
|
43157
|
-
callback =
|
|
43169
|
+
callback = once2((...args) => {
|
|
43158
43170
|
options.signal.removeEventListener("abort", abort);
|
|
43159
43171
|
originalCallback.apply(stream, args);
|
|
43160
43172
|
});
|
|
@@ -45946,7 +45958,7 @@ var require_pipeline = (0, import_chunk_2ESYSVXG.__commonJS)({
|
|
|
45946
45958
|
var process2 = require_process();
|
|
45947
45959
|
var { ArrayIsArray, Promise: Promise2, SymbolAsyncIterator } = require_primordials();
|
|
45948
45960
|
var eos = require_end_of_stream();
|
|
45949
|
-
var { once } = require_util();
|
|
45961
|
+
var { once: once2 } = require_util();
|
|
45950
45962
|
var destroyImpl = require_destroy();
|
|
45951
45963
|
var Duplex = require_duplex();
|
|
45952
45964
|
var {
|
|
@@ -46097,7 +46109,7 @@ var require_pipeline = (0, import_chunk_2ESYSVXG.__commonJS)({
|
|
|
46097
46109
|
}
|
|
46098
46110
|
}
|
|
46099
46111
|
function pipeline(...streams) {
|
|
46100
|
-
return pipelineImpl(streams,
|
|
46112
|
+
return pipelineImpl(streams, once2(popCallback(streams)));
|
|
46101
46113
|
}
|
|
46102
46114
|
function pipelineImpl(streams, callback, opts) {
|
|
46103
46115
|
if (streams.length === 1 && ArrayIsArray(streams[0])) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prisma/migrate",
|
|
3
|
-
"version": "7.5.0-dev.
|
|
3
|
+
"version": "7.5.0-dev.50",
|
|
4
4
|
"description": "This package is intended for Prisma's internal use",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/migrate/src/index.d.ts",
|
|
@@ -44,21 +44,21 @@
|
|
|
44
44
|
"tempy": "1.0.1",
|
|
45
45
|
"ts-pattern": "5.6.2",
|
|
46
46
|
"typescript": "5.4.5",
|
|
47
|
-
"@prisma/adapter-libsql": "7.5.0-dev.
|
|
47
|
+
"@prisma/adapter-libsql": "7.5.0-dev.50"
|
|
48
48
|
},
|
|
49
49
|
"peerDependencies": {
|
|
50
50
|
"@prisma/internals": "*"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@prisma/engines-version": "7.5.0-
|
|
53
|
+
"@prisma/engines-version": "7.5.0-14.d684c195f0a8bfb0ba8ca628416376df0625b94f",
|
|
54
54
|
"prompts": "2.4.2",
|
|
55
|
-
"@prisma/
|
|
56
|
-
"@prisma/
|
|
57
|
-
"@prisma/
|
|
58
|
-
"@prisma/
|
|
59
|
-
"@prisma/
|
|
60
|
-
"@prisma/internals": "7.5.0-dev.
|
|
61
|
-
"@prisma/get-platform": "7.5.0-dev.
|
|
55
|
+
"@prisma/client-generator-registry": "7.5.0-dev.50",
|
|
56
|
+
"@prisma/driver-adapter-utils": "7.5.0-dev.50",
|
|
57
|
+
"@prisma/config": "7.5.0-dev.50",
|
|
58
|
+
"@prisma/generator": "7.5.0-dev.50",
|
|
59
|
+
"@prisma/debug": "7.5.0-dev.50",
|
|
60
|
+
"@prisma/internals": "7.5.0-dev.50",
|
|
61
|
+
"@prisma/get-platform": "7.5.0-dev.50"
|
|
62
62
|
},
|
|
63
63
|
"files": [
|
|
64
64
|
"README.md",
|