@prisma/query-plan-executor 7.5.0-dev.47 → 7.5.0-dev.49
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +1 -1
- package/dist/index.js +130 -111
- package/package.json +6 -6
package/dist/index.d.ts
CHANGED
|
@@ -1377,7 +1377,7 @@ declare class HonoRequest<P extends string = '/', I extends Input['out'] = {}> {
|
|
|
1377
1377
|
* const { id, comment_id } = c.req.param()
|
|
1378
1378
|
* ```
|
|
1379
1379
|
*/
|
|
1380
|
-
param<P2 extends ParamKeys<P> = ParamKeys<P>>(key: P2 extends `${infer _}?` ? never : P2): string;
|
|
1380
|
+
param<P2 extends ParamKeys<P> = ParamKeys<P>>(key: string extends P ? never : P2 extends `${infer _}?` ? never : P2): string;
|
|
1381
1381
|
param<P2 extends RemoveQuestion<ParamKeys<P>> = RemoveQuestion<ParamKeys<P>>>(key: P2): string | undefined;
|
|
1382
1382
|
param(key: string): string | undefined;
|
|
1383
1383
|
param<P2 extends string = P>(): Simplify<UnionToIntersection<ParamKeyToRecord<ParamKeys<P2>>>>;
|
package/dist/index.js
CHANGED
|
@@ -39859,32 +39859,44 @@ var require_dist = __commonJS({
|
|
|
39859
39859
|
}
|
|
39860
39860
|
});
|
|
39861
39861
|
|
|
39862
|
-
// ../../node_modules/.pnpm/@tootallnate+once@
|
|
39863
|
-
var
|
|
39864
|
-
|
|
39865
|
-
|
|
39866
|
-
|
|
39867
|
-
|
|
39868
|
-
|
|
39869
|
-
|
|
39870
|
-
|
|
39871
|
-
|
|
39872
|
-
|
|
39873
|
-
|
|
39874
|
-
|
|
39875
|
-
|
|
39876
|
-
|
|
39877
|
-
}
|
|
39878
|
-
function onError(err) {
|
|
39879
|
-
cleanup();
|
|
39880
|
-
reject(err);
|
|
39881
|
-
}
|
|
39882
|
-
signal === null || signal === void 0 ? void 0 : signal.addEventListener("abort", cleanup);
|
|
39883
|
-
emitter.on(name6, onEvent);
|
|
39884
|
-
emitter.on("error", onError);
|
|
39885
|
-
});
|
|
39862
|
+
// ../../node_modules/.pnpm/@tootallnate+once@3.0.1/node_modules/@tootallnate/once/dist/index.js
|
|
39863
|
+
var dist_exports = {};
|
|
39864
|
+
__export(dist_exports, {
|
|
39865
|
+
default: () => once2
|
|
39866
|
+
});
|
|
39867
|
+
function once2(emitter, name6, { signal } = {}) {
|
|
39868
|
+
return new Promise((resolve, reject) => {
|
|
39869
|
+
function cleanup() {
|
|
39870
|
+
signal === null || signal === void 0 ? void 0 : signal.removeEventListener("abort", onAbort);
|
|
39871
|
+
emitter.removeListener(name6, onEvent);
|
|
39872
|
+
emitter.removeListener("error", onError);
|
|
39873
|
+
}
|
|
39874
|
+
function onEvent(...args) {
|
|
39875
|
+
cleanup();
|
|
39876
|
+
resolve(args);
|
|
39886
39877
|
}
|
|
39887
|
-
|
|
39878
|
+
function onError(err) {
|
|
39879
|
+
cleanup();
|
|
39880
|
+
reject(err);
|
|
39881
|
+
}
|
|
39882
|
+
function onAbort() {
|
|
39883
|
+
cleanup();
|
|
39884
|
+
const err = new Error("The operation was aborted");
|
|
39885
|
+
err.name = "AbortError";
|
|
39886
|
+
reject(err);
|
|
39887
|
+
}
|
|
39888
|
+
if (signal === null || signal === void 0 ? void 0 : signal.aborted) {
|
|
39889
|
+
onAbort();
|
|
39890
|
+
return;
|
|
39891
|
+
}
|
|
39892
|
+
signal === null || signal === void 0 ? void 0 : signal.addEventListener("abort", onAbort);
|
|
39893
|
+
emitter.on(name6, onEvent);
|
|
39894
|
+
emitter.on("error", onError);
|
|
39895
|
+
});
|
|
39896
|
+
}
|
|
39897
|
+
var init_dist = __esm({
|
|
39898
|
+
"../../node_modules/.pnpm/@tootallnate+once@3.0.1/node_modules/@tootallnate/once/dist/index.js"() {
|
|
39899
|
+
"use strict";
|
|
39888
39900
|
}
|
|
39889
39901
|
});
|
|
39890
39902
|
|
|
@@ -39927,7 +39939,7 @@ var require_agent2 = __commonJS({
|
|
|
39927
39939
|
var tls_1 = __importDefault(require("tls"));
|
|
39928
39940
|
var url_1 = __importDefault(require("url"));
|
|
39929
39941
|
var debug_1 = __importDefault(require_src2());
|
|
39930
|
-
var once_1 = __importDefault(
|
|
39942
|
+
var once_1 = __importDefault((init_dist(), __toCommonJS(dist_exports)));
|
|
39931
39943
|
var agent_base_1 = require_src3();
|
|
39932
39944
|
var debug7 = (0, debug_1.default)("http-proxy-agent");
|
|
39933
39945
|
function isHTTPS(protocol) {
|
|
@@ -40025,7 +40037,7 @@ var require_agent2 = __commonJS({
|
|
|
40025
40037
|
});
|
|
40026
40038
|
|
|
40027
40039
|
// ../../node_modules/.pnpm/http-proxy-agent@5.0.0/node_modules/http-proxy-agent/dist/index.js
|
|
40028
|
-
var
|
|
40040
|
+
var require_dist2 = __commonJS({
|
|
40029
40041
|
"../../node_modules/.pnpm/http-proxy-agent@5.0.0/node_modules/http-proxy-agent/dist/index.js"(exports2, module2) {
|
|
40030
40042
|
"use strict";
|
|
40031
40043
|
var __importDefault = exports2 && exports2.__importDefault || function(mod2) {
|
|
@@ -40182,7 +40194,7 @@ var init_proxyPolicy = __esm({
|
|
|
40182
40194
|
"../../node_modules/.pnpm/@azure+core-rest-pipeline@1.9.2/node_modules/@azure/core-rest-pipeline/dist-esm/src/policies/proxyPolicy.js"() {
|
|
40183
40195
|
"use strict";
|
|
40184
40196
|
import_https_proxy_agent = __toESM(require_dist());
|
|
40185
|
-
import_http_proxy_agent = __toESM(
|
|
40197
|
+
import_http_proxy_agent = __toESM(require_dist2());
|
|
40186
40198
|
init_log2();
|
|
40187
40199
|
HTTPS_PROXY = "HTTPS_PROXY";
|
|
40188
40200
|
HTTP_PROXY = "HTTP_PROXY";
|
|
@@ -50041,7 +50053,7 @@ var init_ServerTelemetryManager = __esm({
|
|
|
50041
50053
|
});
|
|
50042
50054
|
|
|
50043
50055
|
// ../../node_modules/.pnpm/@azure+msal-common@14.12.0/node_modules/@azure/msal-common/dist/index.mjs
|
|
50044
|
-
var
|
|
50056
|
+
var init_dist2 = __esm({
|
|
50045
50057
|
"../../node_modules/.pnpm/@azure+msal-common@14.12.0/node_modules/@azure/msal-common/dist/index.mjs"() {
|
|
50046
50058
|
"use strict";
|
|
50047
50059
|
init_AuthToken();
|
|
@@ -50088,7 +50100,7 @@ var Deserializer;
|
|
|
50088
50100
|
var init_Deserializer = __esm({
|
|
50089
50101
|
"../../node_modules/.pnpm/@azure+msal-node@2.9.2/node_modules/@azure/msal-node/dist/cache/serializer/Deserializer.mjs"() {
|
|
50090
50102
|
"use strict";
|
|
50091
|
-
|
|
50103
|
+
init_dist2();
|
|
50092
50104
|
Deserializer = class {
|
|
50093
50105
|
/**
|
|
50094
50106
|
* Parse the JSON blob in memory and deserialize the content
|
|
@@ -50261,7 +50273,7 @@ var AUTHORIZATION_HEADER_NAME, METADATA_HEADER_NAME, APP_SERVICE_SECRET_HEADER_N
|
|
|
50261
50273
|
var init_Constants2 = __esm({
|
|
50262
50274
|
"../../node_modules/.pnpm/@azure+msal-node@2.9.2/node_modules/@azure/msal-node/dist/utils/Constants.mjs"() {
|
|
50263
50275
|
"use strict";
|
|
50264
|
-
|
|
50276
|
+
init_dist2();
|
|
50265
50277
|
AUTHORIZATION_HEADER_NAME = "Authorization";
|
|
50266
50278
|
METADATA_HEADER_NAME = "Metadata";
|
|
50267
50279
|
APP_SERVICE_SECRET_HEADER_NAME = "X-IDENTITY-HEADER";
|
|
@@ -50401,7 +50413,7 @@ var import_http, import_https, HttpClient, networkRequestViaProxy, networkReques
|
|
|
50401
50413
|
var init_HttpClient = __esm({
|
|
50402
50414
|
"../../node_modules/.pnpm/@azure+msal-node@2.9.2/node_modules/@azure/msal-node/dist/network/HttpClient.mjs"() {
|
|
50403
50415
|
"use strict";
|
|
50404
|
-
|
|
50416
|
+
init_dist2();
|
|
50405
50417
|
init_Constants2();
|
|
50406
50418
|
init_NetworkUtils();
|
|
50407
50419
|
import_http = __toESM(require("http"), 1);
|
|
@@ -50661,7 +50673,7 @@ var ManagedIdentityErrorMessages, ManagedIdentityError;
|
|
|
50661
50673
|
var init_ManagedIdentityError = __esm({
|
|
50662
50674
|
"../../node_modules/.pnpm/@azure+msal-node@2.9.2/node_modules/@azure/msal-node/dist/error/ManagedIdentityError.mjs"() {
|
|
50663
50675
|
"use strict";
|
|
50664
|
-
|
|
50676
|
+
init_dist2();
|
|
50665
50677
|
init_ManagedIdentityErrorCodes();
|
|
50666
50678
|
init_Constants2();
|
|
50667
50679
|
ManagedIdentityErrorMessages = {
|
|
@@ -50790,7 +50802,7 @@ var HttpClientWithRetries;
|
|
|
50790
50802
|
var init_HttpClientWithRetries = __esm({
|
|
50791
50803
|
"../../node_modules/.pnpm/@azure+msal-node@2.9.2/node_modules/@azure/msal-node/dist/network/HttpClientWithRetries.mjs"() {
|
|
50792
50804
|
"use strict";
|
|
50793
|
-
|
|
50805
|
+
init_dist2();
|
|
50794
50806
|
init_Constants2();
|
|
50795
50807
|
HttpClientWithRetries = class {
|
|
50796
50808
|
constructor(httpClientNoRetries, retryPolicy2) {
|
|
@@ -50864,7 +50876,7 @@ var DEFAULT_AUTH_OPTIONS, DEFAULT_CACHE_OPTIONS2, DEFAULT_LOGGER_OPTIONS, DEFAUL
|
|
|
50864
50876
|
var init_Configuration = __esm({
|
|
50865
50877
|
"../../node_modules/.pnpm/@azure+msal-node@2.9.2/node_modules/@azure/msal-node/dist/config/Configuration.mjs"() {
|
|
50866
50878
|
"use strict";
|
|
50867
|
-
|
|
50879
|
+
init_dist2();
|
|
50868
50880
|
init_HttpClient();
|
|
50869
50881
|
init_ManagedIdentityId();
|
|
50870
50882
|
init_Constants2();
|
|
@@ -50948,7 +50960,7 @@ var EncodingUtils;
|
|
|
50948
50960
|
var init_EncodingUtils = __esm({
|
|
50949
50961
|
"../../node_modules/.pnpm/@azure+msal-node@2.9.2/node_modules/@azure/msal-node/dist/utils/EncodingUtils.mjs"() {
|
|
50950
50962
|
"use strict";
|
|
50951
|
-
|
|
50963
|
+
init_dist2();
|
|
50952
50964
|
EncodingUtils = class _EncodingUtils {
|
|
50953
50965
|
/**
|
|
50954
50966
|
* 'utf8': Multibyte encoded Unicode characters. Many web pages and other document formats use UTF-8.
|
|
@@ -51013,7 +51025,7 @@ var import_crypto7, PkceGenerator;
|
|
|
51013
51025
|
var init_PkceGenerator = __esm({
|
|
51014
51026
|
"../../node_modules/.pnpm/@azure+msal-node@2.9.2/node_modules/@azure/msal-node/dist/crypto/PkceGenerator.mjs"() {
|
|
51015
51027
|
"use strict";
|
|
51016
|
-
|
|
51028
|
+
init_dist2();
|
|
51017
51029
|
init_Constants2();
|
|
51018
51030
|
init_EncodingUtils();
|
|
51019
51031
|
init_HashUtils();
|
|
@@ -51155,7 +51167,7 @@ var NodeStorage;
|
|
|
51155
51167
|
var init_NodeStorage = __esm({
|
|
51156
51168
|
"../../node_modules/.pnpm/@azure+msal-node@2.9.2/node_modules/@azure/msal-node/dist/cache/NodeStorage.mjs"() {
|
|
51157
51169
|
"use strict";
|
|
51158
|
-
|
|
51170
|
+
init_dist2();
|
|
51159
51171
|
init_Deserializer();
|
|
51160
51172
|
init_Serializer();
|
|
51161
51173
|
NodeStorage = class extends CacheManager {
|
|
@@ -51557,7 +51569,7 @@ var defaultSerializedCache, TokenCache;
|
|
|
51557
51569
|
var init_TokenCache = __esm({
|
|
51558
51570
|
"../../node_modules/.pnpm/@azure+msal-node@2.9.2/node_modules/@azure/msal-node/dist/cache/TokenCache.mjs"() {
|
|
51559
51571
|
"use strict";
|
|
51560
|
-
|
|
51572
|
+
init_dist2();
|
|
51561
51573
|
init_Deserializer();
|
|
51562
51574
|
init_Serializer();
|
|
51563
51575
|
defaultSerializedCache = {
|
|
@@ -55255,7 +55267,7 @@ var require_lodash7 = __commonJS({
|
|
|
55255
55267
|
return result;
|
|
55256
55268
|
};
|
|
55257
55269
|
}
|
|
55258
|
-
function
|
|
55270
|
+
function once3(func) {
|
|
55259
55271
|
return before(2, func);
|
|
55260
55272
|
}
|
|
55261
55273
|
function isObject3(value) {
|
|
@@ -55301,7 +55313,7 @@ var require_lodash7 = __commonJS({
|
|
|
55301
55313
|
var isBinary2 = reIsBinary.test(value);
|
|
55302
55314
|
return isBinary2 || reIsOctal.test(value) ? freeParseInt(value.slice(2), isBinary2 ? 2 : 8) : reIsBadHex.test(value) ? NAN : +value;
|
|
55303
55315
|
}
|
|
55304
|
-
module2.exports =
|
|
55316
|
+
module2.exports = once3;
|
|
55305
55317
|
}
|
|
55306
55318
|
});
|
|
55307
55319
|
|
|
@@ -55319,7 +55331,7 @@ var require_sign2 = __commonJS({
|
|
|
55319
55331
|
var isNumber = require_lodash4();
|
|
55320
55332
|
var isPlainObject2 = require_lodash5();
|
|
55321
55333
|
var isString = require_lodash6();
|
|
55322
|
-
var
|
|
55334
|
+
var once3 = require_lodash7();
|
|
55323
55335
|
var { KeyObject, createSecretKey, createPrivateKey: createPrivateKey3 } = require("crypto");
|
|
55324
55336
|
var SUPPORTED_ALGS = ["RS256", "RS384", "RS512", "ES256", "ES384", "ES512", "HS256", "HS384", "HS512", "none"];
|
|
55325
55337
|
if (PS_SUPPORTED) {
|
|
@@ -55508,7 +55520,7 @@ var require_sign2 = __commonJS({
|
|
|
55508
55520
|
});
|
|
55509
55521
|
const encoding = options.encoding || "utf8";
|
|
55510
55522
|
if (typeof callback === "function") {
|
|
55511
|
-
callback = callback &&
|
|
55523
|
+
callback = callback && once3(callback);
|
|
55512
55524
|
jws.createSign({
|
|
55513
55525
|
header,
|
|
55514
55526
|
privateKey: secretOrPrivateKey,
|
|
@@ -55552,7 +55564,7 @@ var init_ClientAssertion = __esm({
|
|
|
55552
55564
|
"../../node_modules/.pnpm/@azure+msal-node@2.9.2/node_modules/@azure/msal-node/dist/client/ClientAssertion.mjs"() {
|
|
55553
55565
|
"use strict";
|
|
55554
55566
|
import_jsonwebtoken = __toESM(require_jsonwebtoken(), 1);
|
|
55555
|
-
|
|
55567
|
+
init_dist2();
|
|
55556
55568
|
init_EncodingUtils();
|
|
55557
55569
|
init_Constants2();
|
|
55558
55570
|
ClientAssertion = class _ClientAssertion {
|
|
@@ -55664,7 +55676,7 @@ var NodeAuthErrorMessage, NodeAuthError;
|
|
|
55664
55676
|
var init_NodeAuthError = __esm({
|
|
55665
55677
|
"../../node_modules/.pnpm/@azure+msal-node@2.9.2/node_modules/@azure/msal-node/dist/error/NodeAuthError.mjs"() {
|
|
55666
55678
|
"use strict";
|
|
55667
|
-
|
|
55679
|
+
init_dist2();
|
|
55668
55680
|
NodeAuthErrorMessage = {
|
|
55669
55681
|
invalidLoopbackAddressType: {
|
|
55670
55682
|
code: "invalid_loopback_server_address_type",
|
|
@@ -55751,7 +55763,7 @@ var UsernamePasswordClient;
|
|
|
55751
55763
|
var init_UsernamePasswordClient = __esm({
|
|
55752
55764
|
"../../node_modules/.pnpm/@azure+msal-node@2.9.2/node_modules/@azure/msal-node/dist/client/UsernamePasswordClient.mjs"() {
|
|
55753
55765
|
"use strict";
|
|
55754
|
-
|
|
55766
|
+
init_dist2();
|
|
55755
55767
|
UsernamePasswordClient = class extends BaseClient {
|
|
55756
55768
|
constructor(configuration) {
|
|
55757
55769
|
super(configuration);
|
|
@@ -55842,7 +55854,7 @@ var ClientApplication;
|
|
|
55842
55854
|
var init_ClientApplication = __esm({
|
|
55843
55855
|
"../../node_modules/.pnpm/@azure+msal-node@2.9.2/node_modules/@azure/msal-node/dist/client/ClientApplication.mjs"() {
|
|
55844
55856
|
"use strict";
|
|
55845
|
-
|
|
55857
|
+
init_dist2();
|
|
55846
55858
|
init_Configuration();
|
|
55847
55859
|
init_CryptoProvider();
|
|
55848
55860
|
init_NodeStorage();
|
|
@@ -56169,7 +56181,7 @@ var import_http2, LoopbackClient;
|
|
|
56169
56181
|
var init_LoopbackClient = __esm({
|
|
56170
56182
|
"../../node_modules/.pnpm/@azure+msal-node@2.9.2/node_modules/@azure/msal-node/dist/network/LoopbackClient.mjs"() {
|
|
56171
56183
|
"use strict";
|
|
56172
|
-
|
|
56184
|
+
init_dist2();
|
|
56173
56185
|
import_http2 = __toESM(require("http"), 1);
|
|
56174
56186
|
init_NodeAuthError();
|
|
56175
56187
|
init_Constants2();
|
|
@@ -56247,7 +56259,7 @@ var DeviceCodeClient;
|
|
|
56247
56259
|
var init_DeviceCodeClient = __esm({
|
|
56248
56260
|
"../../node_modules/.pnpm/@azure+msal-node@2.9.2/node_modules/@azure/msal-node/dist/client/DeviceCodeClient.mjs"() {
|
|
56249
56261
|
"use strict";
|
|
56250
|
-
|
|
56262
|
+
init_dist2();
|
|
56251
56263
|
DeviceCodeClient = class extends BaseClient {
|
|
56252
56264
|
constructor(configuration) {
|
|
56253
56265
|
super(configuration);
|
|
@@ -56433,7 +56445,7 @@ var init_PublicClientApplication = __esm({
|
|
|
56433
56445
|
"../../node_modules/.pnpm/@azure+msal-node@2.9.2/node_modules/@azure/msal-node/dist/client/PublicClientApplication.mjs"() {
|
|
56434
56446
|
"use strict";
|
|
56435
56447
|
init_Constants2();
|
|
56436
|
-
|
|
56448
|
+
init_dist2();
|
|
56437
56449
|
init_ClientApplication();
|
|
56438
56450
|
init_NodeAuthError();
|
|
56439
56451
|
init_LoopbackClient();
|
|
@@ -56650,7 +56662,7 @@ var ClientCredentialClient;
|
|
|
56650
56662
|
var init_ClientCredentialClient = __esm({
|
|
56651
56663
|
"../../node_modules/.pnpm/@azure+msal-node@2.9.2/node_modules/@azure/msal-node/dist/client/ClientCredentialClient.mjs"() {
|
|
56652
56664
|
"use strict";
|
|
56653
|
-
|
|
56665
|
+
init_dist2();
|
|
56654
56666
|
ClientCredentialClient = class extends BaseClient {
|
|
56655
56667
|
constructor(configuration, appTokenProvider) {
|
|
56656
56668
|
super(configuration);
|
|
@@ -56825,7 +56837,7 @@ var OnBehalfOfClient;
|
|
|
56825
56837
|
var init_OnBehalfOfClient = __esm({
|
|
56826
56838
|
"../../node_modules/.pnpm/@azure+msal-node@2.9.2/node_modules/@azure/msal-node/dist/client/OnBehalfOfClient.mjs"() {
|
|
56827
56839
|
"use strict";
|
|
56828
|
-
|
|
56840
|
+
init_dist2();
|
|
56829
56841
|
init_EncodingUtils();
|
|
56830
56842
|
OnBehalfOfClient = class extends BaseClient {
|
|
56831
56843
|
constructor(configuration) {
|
|
@@ -57011,7 +57023,7 @@ var init_ConfidentialClientApplication = __esm({
|
|
|
57011
57023
|
init_ClientApplication();
|
|
57012
57024
|
init_ClientAssertion();
|
|
57013
57025
|
init_Constants2();
|
|
57014
|
-
|
|
57026
|
+
init_dist2();
|
|
57015
57027
|
init_ClientCredentialClient();
|
|
57016
57028
|
init_OnBehalfOfClient();
|
|
57017
57029
|
ConfidentialClientApplication = class extends ClientApplication {
|
|
@@ -57163,7 +57175,7 @@ var ManagedIdentityUserAssignedIdQueryParameterNames, BaseManagedIdentitySource;
|
|
|
57163
57175
|
var init_BaseManagedIdentitySource = __esm({
|
|
57164
57176
|
"../../node_modules/.pnpm/@azure+msal-node@2.9.2/node_modules/@azure/msal-node/dist/client/ManagedIdentitySources/BaseManagedIdentitySource.mjs"() {
|
|
57165
57177
|
"use strict";
|
|
57166
|
-
|
|
57178
|
+
init_dist2();
|
|
57167
57179
|
init_Constants2();
|
|
57168
57180
|
init_ManagedIdentityError();
|
|
57169
57181
|
init_ManagedIdentityErrorCodes();
|
|
@@ -57264,7 +57276,7 @@ var ManagedIdentityRequestParameters;
|
|
|
57264
57276
|
var init_ManagedIdentityRequestParameters = __esm({
|
|
57265
57277
|
"../../node_modules/.pnpm/@azure+msal-node@2.9.2/node_modules/@azure/msal-node/dist/config/ManagedIdentityRequestParameters.mjs"() {
|
|
57266
57278
|
"use strict";
|
|
57267
|
-
|
|
57279
|
+
init_dist2();
|
|
57268
57280
|
ManagedIdentityRequestParameters = class {
|
|
57269
57281
|
constructor(httpMethod, endpoint) {
|
|
57270
57282
|
this.httpMethod = httpMethod;
|
|
@@ -57341,7 +57353,7 @@ var import_fs2, import_path2, ARC_API_VERSION, SUPPORTED_AZURE_ARC_PLATFORMS, Az
|
|
|
57341
57353
|
var init_AzureArc = __esm({
|
|
57342
57354
|
"../../node_modules/.pnpm/@azure+msal-node@2.9.2/node_modules/@azure/msal-node/dist/client/ManagedIdentitySources/AzureArc.mjs"() {
|
|
57343
57355
|
"use strict";
|
|
57344
|
-
|
|
57356
|
+
init_dist2();
|
|
57345
57357
|
init_ManagedIdentityRequestParameters();
|
|
57346
57358
|
init_BaseManagedIdentitySource();
|
|
57347
57359
|
init_ManagedIdentityError();
|
|
@@ -57632,7 +57644,7 @@ var ManagedIdentityApplication;
|
|
|
57632
57644
|
var init_ManagedIdentityApplication = __esm({
|
|
57633
57645
|
"../../node_modules/.pnpm/@azure+msal-node@2.9.2/node_modules/@azure/msal-node/dist/client/ManagedIdentityApplication.mjs"() {
|
|
57634
57646
|
"use strict";
|
|
57635
|
-
|
|
57647
|
+
init_dist2();
|
|
57636
57648
|
init_Configuration();
|
|
57637
57649
|
init_packageMetadata2();
|
|
57638
57650
|
init_CryptoProvider();
|
|
@@ -57726,7 +57738,7 @@ var DistributedCachePlugin;
|
|
|
57726
57738
|
var init_DistributedCachePlugin = __esm({
|
|
57727
57739
|
"../../node_modules/.pnpm/@azure+msal-node@2.9.2/node_modules/@azure/msal-node/dist/cache/distributed/DistributedCachePlugin.mjs"() {
|
|
57728
57740
|
"use strict";
|
|
57729
|
-
|
|
57741
|
+
init_dist2();
|
|
57730
57742
|
DistributedCachePlugin = class {
|
|
57731
57743
|
constructor(client, partitionManager) {
|
|
57732
57744
|
this.client = client;
|
|
@@ -57753,8 +57765,8 @@ var init_DistributedCachePlugin = __esm({
|
|
|
57753
57765
|
});
|
|
57754
57766
|
|
|
57755
57767
|
// ../../node_modules/.pnpm/@azure+msal-node@2.9.2/node_modules/@azure/msal-node/dist/index.mjs
|
|
57756
|
-
var
|
|
57757
|
-
__export(
|
|
57768
|
+
var dist_exports2 = {};
|
|
57769
|
+
__export(dist_exports2, {
|
|
57758
57770
|
AuthError: () => AuthError,
|
|
57759
57771
|
AuthErrorCodes: () => AuthErrorCodes_exports,
|
|
57760
57772
|
AuthErrorMessage: () => AuthErrorMessage,
|
|
@@ -57793,7 +57805,7 @@ __export(dist_exports, {
|
|
|
57793
57805
|
internals: () => internals_exports,
|
|
57794
57806
|
version: () => version3
|
|
57795
57807
|
});
|
|
57796
|
-
var
|
|
57808
|
+
var init_dist3 = __esm({
|
|
57797
57809
|
"../../node_modules/.pnpm/@azure+msal-node@2.9.2/node_modules/@azure/msal-node/dist/index.mjs"() {
|
|
57798
57810
|
"use strict";
|
|
57799
57811
|
init_internals();
|
|
@@ -57812,7 +57824,7 @@ var init_dist2 = __esm({
|
|
|
57812
57824
|
init_DistributedCachePlugin();
|
|
57813
57825
|
init_Constants2();
|
|
57814
57826
|
init_CryptoProvider();
|
|
57815
|
-
|
|
57827
|
+
init_dist2();
|
|
57816
57828
|
init_packageMetadata2();
|
|
57817
57829
|
}
|
|
57818
57830
|
});
|
|
@@ -58244,7 +58256,7 @@ var init_fabricMsi = __esm({
|
|
|
58244
58256
|
var init_msal = __esm({
|
|
58245
58257
|
"../../node_modules/.pnpm/@azure+identity@4.3.0/node_modules/@azure/identity/dist-esm/src/msal/msal.js"() {
|
|
58246
58258
|
"use strict";
|
|
58247
|
-
|
|
58259
|
+
init_dist3();
|
|
58248
58260
|
}
|
|
58249
58261
|
});
|
|
58250
58262
|
|
|
@@ -58290,15 +58302,15 @@ function getKnownAuthorities(tenantId, authorityHost, disableInstanceDiscovery)
|
|
|
58290
58302
|
function getMSALLogLevel(logLevel) {
|
|
58291
58303
|
switch (logLevel) {
|
|
58292
58304
|
case "error":
|
|
58293
|
-
return
|
|
58305
|
+
return dist_exports2.LogLevel.Error;
|
|
58294
58306
|
case "info":
|
|
58295
|
-
return
|
|
58307
|
+
return dist_exports2.LogLevel.Info;
|
|
58296
58308
|
case "verbose":
|
|
58297
|
-
return
|
|
58309
|
+
return dist_exports2.LogLevel.Verbose;
|
|
58298
58310
|
case "warning":
|
|
58299
|
-
return
|
|
58311
|
+
return dist_exports2.LogLevel.Warning;
|
|
58300
58312
|
default:
|
|
58301
|
-
return
|
|
58313
|
+
return dist_exports2.LogLevel.Info;
|
|
58302
58314
|
}
|
|
58303
58315
|
}
|
|
58304
58316
|
function randomUUID4() {
|
|
@@ -58374,16 +58386,16 @@ var init_utils3 = __esm({
|
|
|
58374
58386
|
return;
|
|
58375
58387
|
}
|
|
58376
58388
|
switch (level) {
|
|
58377
|
-
case
|
|
58389
|
+
case dist_exports2.LogLevel.Error:
|
|
58378
58390
|
credLogger.info(`MSAL ${platform} V2 error: ${message}`);
|
|
58379
58391
|
return;
|
|
58380
|
-
case
|
|
58392
|
+
case dist_exports2.LogLevel.Info:
|
|
58381
58393
|
credLogger.info(`MSAL ${platform} V2 info message: ${message}`);
|
|
58382
58394
|
return;
|
|
58383
|
-
case
|
|
58395
|
+
case dist_exports2.LogLevel.Verbose:
|
|
58384
58396
|
credLogger.info(`MSAL ${platform} V2 verbose message: ${message}`);
|
|
58385
58397
|
return;
|
|
58386
|
-
case
|
|
58398
|
+
case dist_exports2.LogLevel.Warning:
|
|
58387
58399
|
credLogger.info(`MSAL ${platform} V2 warning: ${message}`);
|
|
58388
58400
|
return;
|
|
58389
58401
|
}
|
|
@@ -58856,7 +58868,7 @@ var msalLogger;
|
|
|
58856
58868
|
var init_msalClient = __esm({
|
|
58857
58869
|
"../../node_modules/.pnpm/@azure+identity@4.3.0/node_modules/@azure/identity/dist-esm/src/msal/nodeFlows/msalClient.js"() {
|
|
58858
58870
|
"use strict";
|
|
58859
|
-
|
|
58871
|
+
init_dist3();
|
|
58860
58872
|
init_logging();
|
|
58861
58873
|
init_msalPlugins();
|
|
58862
58874
|
init_utils3();
|
|
@@ -59041,7 +59053,7 @@ var logger15, ManagedIdentityCredential;
|
|
|
59041
59053
|
var init_managedIdentityCredential = __esm({
|
|
59042
59054
|
"../../node_modules/.pnpm/@azure+identity@4.3.0/node_modules/@azure/identity/dist-esm/src/credentials/managedIdentityCredential/index.js"() {
|
|
59043
59055
|
"use strict";
|
|
59044
|
-
|
|
59056
|
+
init_dist3();
|
|
59045
59057
|
init_errors();
|
|
59046
59058
|
init_logging();
|
|
59047
59059
|
init_constants();
|
|
@@ -60302,7 +60314,7 @@ var MsalNode;
|
|
|
60302
60314
|
var init_msalNodeCommon = __esm({
|
|
60303
60315
|
"../../node_modules/.pnpm/@azure+identity@4.3.0/node_modules/@azure/identity/dist-esm/src/msal/nodeFlows/msalNodeCommon.js"() {
|
|
60304
60316
|
"use strict";
|
|
60305
|
-
|
|
60317
|
+
init_dist3();
|
|
60306
60318
|
init_constants();
|
|
60307
60319
|
init_logging();
|
|
60308
60320
|
init_utils3();
|
|
@@ -66294,7 +66306,7 @@ var require_end_of_stream = __commonJS({
|
|
|
66294
66306
|
var process3 = require_process();
|
|
66295
66307
|
var { AbortError: AbortError3, codes } = require_errors3();
|
|
66296
66308
|
var { ERR_INVALID_ARG_TYPE, ERR_STREAM_PREMATURE_CLOSE } = codes;
|
|
66297
|
-
var { kEmptyObject, once:
|
|
66309
|
+
var { kEmptyObject, once: once3 } = require_util();
|
|
66298
66310
|
var { validateAbortSignal, validateFunction, validateObject, validateBoolean } = require_validators();
|
|
66299
66311
|
var { Promise: Promise2, PromisePrototypeThen } = require_primordials();
|
|
66300
66312
|
var {
|
|
@@ -66330,7 +66342,7 @@ var require_end_of_stream = __commonJS({
|
|
|
66330
66342
|
}
|
|
66331
66343
|
validateFunction(callback, "callback");
|
|
66332
66344
|
validateAbortSignal(options.signal, "options.signal");
|
|
66333
|
-
callback =
|
|
66345
|
+
callback = once3(callback);
|
|
66334
66346
|
if (isReadableStream2(stream) || isWritableStream(stream)) {
|
|
66335
66347
|
return eosWeb(stream, options, callback);
|
|
66336
66348
|
}
|
|
@@ -66467,7 +66479,7 @@ var require_end_of_stream = __commonJS({
|
|
|
66467
66479
|
process3.nextTick(abort);
|
|
66468
66480
|
} else {
|
|
66469
66481
|
const originalCallback = callback;
|
|
66470
|
-
callback =
|
|
66482
|
+
callback = once3((...args) => {
|
|
66471
66483
|
options.signal.removeEventListener("abort", abort);
|
|
66472
66484
|
originalCallback.apply(stream, args);
|
|
66473
66485
|
});
|
|
@@ -66493,7 +66505,7 @@ var require_end_of_stream = __commonJS({
|
|
|
66493
66505
|
process3.nextTick(abort);
|
|
66494
66506
|
} else {
|
|
66495
66507
|
const originalCallback = callback;
|
|
66496
|
-
callback =
|
|
66508
|
+
callback = once3((...args) => {
|
|
66497
66509
|
options.signal.removeEventListener("abort", abort);
|
|
66498
66510
|
originalCallback.apply(stream, args);
|
|
66499
66511
|
});
|
|
@@ -69311,7 +69323,7 @@ var require_pipeline = __commonJS({
|
|
|
69311
69323
|
var process3 = require_process();
|
|
69312
69324
|
var { ArrayIsArray, Promise: Promise2, SymbolAsyncIterator } = require_primordials();
|
|
69313
69325
|
var eos = require_end_of_stream();
|
|
69314
|
-
var { once:
|
|
69326
|
+
var { once: once3 } = require_util();
|
|
69315
69327
|
var destroyImpl = require_destroy();
|
|
69316
69328
|
var Duplex = require_duplex();
|
|
69317
69329
|
var {
|
|
@@ -69462,7 +69474,7 @@ var require_pipeline = __commonJS({
|
|
|
69462
69474
|
}
|
|
69463
69475
|
}
|
|
69464
69476
|
function pipeline(...streams) {
|
|
69465
|
-
return pipelineImpl(streams,
|
|
69477
|
+
return pipelineImpl(streams, once3(popCallback(streams)));
|
|
69466
69478
|
}
|
|
69467
69479
|
function pipelineImpl(streams, callback, opts) {
|
|
69468
69480
|
if (streams.length === 1 && ArrayIsArray(streams[0])) {
|
|
@@ -99268,7 +99280,7 @@ var require_parser2 = __commonJS({
|
|
|
99268
99280
|
});
|
|
99269
99281
|
|
|
99270
99282
|
// ../../node_modules/.pnpm/pg-protocol@1.10.3/node_modules/pg-protocol/dist/index.js
|
|
99271
|
-
var
|
|
99283
|
+
var require_dist3 = __commonJS({
|
|
99272
99284
|
"../../node_modules/.pnpm/pg-protocol@1.10.3/node_modules/pg-protocol/dist/index.js"(exports2) {
|
|
99273
99285
|
"use strict";
|
|
99274
99286
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
|
@@ -99372,7 +99384,7 @@ var require_connection3 = __commonJS({
|
|
|
99372
99384
|
"../../node_modules/.pnpm/pg@8.16.3/node_modules/pg/lib/connection.js"(exports2, module2) {
|
|
99373
99385
|
"use strict";
|
|
99374
99386
|
var EventEmitter = require("events").EventEmitter;
|
|
99375
|
-
var { parse: parse5, serialize: serialize2 } =
|
|
99387
|
+
var { parse: parse5, serialize: serialize2 } = require_dist3();
|
|
99376
99388
|
var { getStream, getSecureStream } = require_stream3();
|
|
99377
99389
|
var flushBuffer = serialize2.flush();
|
|
99378
99390
|
var syncBuffer = serialize2.sync();
|
|
@@ -101162,7 +101174,7 @@ var require_lib5 = __commonJS({
|
|
|
101162
101174
|
var utils = require_utils6();
|
|
101163
101175
|
var Pool2 = require_pg_pool();
|
|
101164
101176
|
var TypeOverrides2 = require_type_overrides();
|
|
101165
|
-
var { DatabaseError: DatabaseError2 } =
|
|
101177
|
+
var { DatabaseError: DatabaseError2 } = require_dist3();
|
|
101166
101178
|
var { escapeIdentifier: escapeIdentifier2, escapeLiteral: escapeLiteral2 } = require_utils6();
|
|
101167
101179
|
var poolFactory = (Client3) => {
|
|
101168
101180
|
return class BoundPool extends Pool2 {
|
|
@@ -101325,7 +101337,7 @@ __export(index_exports, {
|
|
|
101325
101337
|
module.exports = __toCommonJS(index_exports);
|
|
101326
101338
|
|
|
101327
101339
|
// package.json
|
|
101328
|
-
var version = "7.5.0-dev.
|
|
101340
|
+
var version = "7.5.0-dev.49";
|
|
101329
101341
|
|
|
101330
101342
|
// ../../node_modules/.pnpm/temporal-polyfill@0.3.0/node_modules/temporal-polyfill/chunks/internal.js
|
|
101331
101343
|
function clampProp(e2, n2, t2, o2, r2) {
|
|
@@ -106189,7 +106201,7 @@ function createConsoleLogger(logFormat, logLevel) {
|
|
|
106189
106201
|
return new Logger(sink);
|
|
106190
106202
|
}
|
|
106191
106203
|
|
|
106192
|
-
// ../../node_modules/.pnpm/hono@4.12.
|
|
106204
|
+
// ../../node_modules/.pnpm/hono@4.12.7/node_modules/hono/dist/utils/url.js
|
|
106193
106205
|
var splitPath = (path3) => {
|
|
106194
106206
|
const paths = path3.split("/");
|
|
106195
106207
|
if (paths[0] === "") {
|
|
@@ -106393,7 +106405,7 @@ var getQueryParams = (url2, key) => {
|
|
|
106393
106405
|
};
|
|
106394
106406
|
var decodeURIComponent_ = decodeURIComponent;
|
|
106395
106407
|
|
|
106396
|
-
// ../../node_modules/.pnpm/hono@4.12.
|
|
106408
|
+
// ../../node_modules/.pnpm/hono@4.12.7/node_modules/hono/dist/utils/cookie.js
|
|
106397
106409
|
var validCookieNameRegEx = /^[\w!#$%&'*.^`|~+-]+$/;
|
|
106398
106410
|
var validCookieValueRegEx = /^[ !#-:<-[\]-~]*$/;
|
|
106399
106411
|
var parse = (cookie, name6) => {
|
|
@@ -106426,7 +106438,7 @@ var parse = (cookie, name6) => {
|
|
|
106426
106438
|
return parsedCookie;
|
|
106427
106439
|
};
|
|
106428
106440
|
|
|
106429
|
-
// ../../node_modules/.pnpm/hono@4.12.
|
|
106441
|
+
// ../../node_modules/.pnpm/hono@4.12.7/node_modules/hono/dist/helper/cookie/index.js
|
|
106430
106442
|
var getCookie = (c2, key, prefix) => {
|
|
106431
106443
|
const cookie = c2.req.raw.headers.get("Cookie");
|
|
106432
106444
|
if (typeof key === "string") {
|
|
@@ -106449,7 +106461,7 @@ var getCookie = (c2, key, prefix) => {
|
|
|
106449
106461
|
return obj;
|
|
106450
106462
|
};
|
|
106451
106463
|
|
|
106452
|
-
// ../../node_modules/.pnpm/hono@4.12.
|
|
106464
|
+
// ../../node_modules/.pnpm/hono@4.12.7/node_modules/hono/dist/http-exception.js
|
|
106453
106465
|
var HTTPException = class extends Error {
|
|
106454
106466
|
res;
|
|
106455
106467
|
status;
|
|
@@ -106482,7 +106494,7 @@ var HTTPException = class extends Error {
|
|
|
106482
106494
|
}
|
|
106483
106495
|
};
|
|
106484
106496
|
|
|
106485
|
-
// ../../node_modules/.pnpm/hono@4.12.
|
|
106497
|
+
// ../../node_modules/.pnpm/hono@4.12.7/node_modules/hono/dist/utils/buffer.js
|
|
106486
106498
|
var bufferToFormData = (arrayBuffer, contentType) => {
|
|
106487
106499
|
const response = new Response(arrayBuffer, {
|
|
106488
106500
|
headers: {
|
|
@@ -106492,7 +106504,7 @@ var bufferToFormData = (arrayBuffer, contentType) => {
|
|
|
106492
106504
|
return response.formData();
|
|
106493
106505
|
};
|
|
106494
106506
|
|
|
106495
|
-
// ../../node_modules/.pnpm/hono@4.12.
|
|
106507
|
+
// ../../node_modules/.pnpm/hono@4.12.7/node_modules/hono/dist/validator/validator.js
|
|
106496
106508
|
var jsonRegex = /^application\/([a-z-\.]+\+)?json(;\s*[a-zA-Z0-9\-]+\=([^;]+))*$/;
|
|
106497
106509
|
var multipartRegex = /^multipart\/form-data(;\s?boundary=[a-zA-Z0-9'"()+_,\-./:=?]+)?$/;
|
|
106498
106510
|
var urlencodedRegex = /^application\/x-www-form-urlencoded(;\s*[a-zA-Z0-9\-]+\=([^;]+))*$/;
|
|
@@ -106573,7 +106585,7 @@ var validator = (target, validationFunc) => {
|
|
|
106573
106585
|
};
|
|
106574
106586
|
};
|
|
106575
106587
|
|
|
106576
|
-
// ../../node_modules/.pnpm/@hono+zod-validator@0.7.2_hono@4.12.
|
|
106588
|
+
// ../../node_modules/.pnpm/@hono+zod-validator@0.7.2_hono@4.12.7_zod@4.1.3/node_modules/@hono/zod-validator/dist/index.js
|
|
106577
106589
|
var zValidator = (target, schema, hook, options) => (
|
|
106578
106590
|
// @ts-expect-error not typed well
|
|
106579
106591
|
validator(target, async (value, c2) => {
|
|
@@ -110537,7 +110549,11 @@ function evaluateArg(arg, scope, generators) {
|
|
|
110537
110549
|
if (found === void 0) {
|
|
110538
110550
|
throw new Error(`Missing value for query variable ${arg.prisma__value.name}`);
|
|
110539
110551
|
}
|
|
110540
|
-
arg
|
|
110552
|
+
if (arg.prisma__value.type === "DateTime" && typeof found === "string") {
|
|
110553
|
+
arg = new Date(found);
|
|
110554
|
+
} else {
|
|
110555
|
+
arg = found;
|
|
110556
|
+
}
|
|
110541
110557
|
} else if (isPrismaValueGenerator(arg)) {
|
|
110542
110558
|
const { name: name6, args } = arg.prisma__value;
|
|
110543
110559
|
const generator = generators[name6];
|
|
@@ -111860,7 +111876,7 @@ function createTimeoutIfDefined(cb, ms) {
|
|
|
111860
111876
|
return ms !== void 0 ? setTimeout(cb, ms) : void 0;
|
|
111861
111877
|
}
|
|
111862
111878
|
|
|
111863
|
-
// ../../node_modules/.pnpm/hono@4.12.
|
|
111879
|
+
// ../../node_modules/.pnpm/hono@4.12.7/node_modules/hono/dist/compose.js
|
|
111864
111880
|
var compose = (middleware, onError, onNotFound) => {
|
|
111865
111881
|
return (context2, next) => {
|
|
111866
111882
|
let index = -1;
|
|
@@ -111904,10 +111920,10 @@ var compose = (middleware, onError, onNotFound) => {
|
|
|
111904
111920
|
};
|
|
111905
111921
|
};
|
|
111906
111922
|
|
|
111907
|
-
// ../../node_modules/.pnpm/hono@4.12.
|
|
111923
|
+
// ../../node_modules/.pnpm/hono@4.12.7/node_modules/hono/dist/request/constants.js
|
|
111908
111924
|
var GET_MATCH_RESULT = /* @__PURE__ */ Symbol();
|
|
111909
111925
|
|
|
111910
|
-
// ../../node_modules/.pnpm/hono@4.12.
|
|
111926
|
+
// ../../node_modules/.pnpm/hono@4.12.7/node_modules/hono/dist/utils/body.js
|
|
111911
111927
|
var parseBody = async (request3, options = /* @__PURE__ */ Object.create(null)) => {
|
|
111912
111928
|
const { all = false, dot = false } = options;
|
|
111913
111929
|
const headers = request3 instanceof HonoRequest ? request3.raw.headers : request3.headers;
|
|
@@ -111962,6 +111978,9 @@ var handleParsingAllValues = (form, key, value) => {
|
|
|
111962
111978
|
}
|
|
111963
111979
|
};
|
|
111964
111980
|
var handleParsingNestedValues = (form, key, value) => {
|
|
111981
|
+
if (/(?:^|\.)__proto__\./.test(key)) {
|
|
111982
|
+
return;
|
|
111983
|
+
}
|
|
111965
111984
|
let nestedForm = form;
|
|
111966
111985
|
const keys = key.split(".");
|
|
111967
111986
|
keys.forEach((key2, index) => {
|
|
@@ -111976,7 +111995,7 @@ var handleParsingNestedValues = (form, key, value) => {
|
|
|
111976
111995
|
});
|
|
111977
111996
|
};
|
|
111978
111997
|
|
|
111979
|
-
// ../../node_modules/.pnpm/hono@4.12.
|
|
111998
|
+
// ../../node_modules/.pnpm/hono@4.12.7/node_modules/hono/dist/request.js
|
|
111980
111999
|
var tryDecodeURIComponent = (str) => tryDecode(str, decodeURIComponent_);
|
|
111981
112000
|
var HonoRequest = class {
|
|
111982
112001
|
/**
|
|
@@ -112244,7 +112263,7 @@ var HonoRequest = class {
|
|
|
112244
112263
|
}
|
|
112245
112264
|
};
|
|
112246
112265
|
|
|
112247
|
-
// ../../node_modules/.pnpm/hono@4.12.
|
|
112266
|
+
// ../../node_modules/.pnpm/hono@4.12.7/node_modules/hono/dist/utils/html.js
|
|
112248
112267
|
var HtmlEscapedCallbackPhase = {
|
|
112249
112268
|
Stringify: 1,
|
|
112250
112269
|
BeforeStream: 2,
|
|
@@ -112286,7 +112305,7 @@ var resolveCallback = async (str, phase, preserveCallbacks, context2, buffer) =>
|
|
|
112286
112305
|
}
|
|
112287
112306
|
};
|
|
112288
112307
|
|
|
112289
|
-
// ../../node_modules/.pnpm/hono@4.12.
|
|
112308
|
+
// ../../node_modules/.pnpm/hono@4.12.7/node_modules/hono/dist/context.js
|
|
112290
112309
|
var TEXT_PLAIN = "text/plain; charset=UTF-8";
|
|
112291
112310
|
var setDefaultContentType = (contentType, headers) => {
|
|
112292
112311
|
return {
|
|
@@ -112693,7 +112712,7 @@ var Context = class {
|
|
|
112693
112712
|
};
|
|
112694
112713
|
};
|
|
112695
112714
|
|
|
112696
|
-
// ../../node_modules/.pnpm/hono@4.12.
|
|
112715
|
+
// ../../node_modules/.pnpm/hono@4.12.7/node_modules/hono/dist/router.js
|
|
112697
112716
|
var METHOD_NAME_ALL = "ALL";
|
|
112698
112717
|
var METHOD_NAME_ALL_LOWERCASE = "all";
|
|
112699
112718
|
var METHODS = ["get", "post", "put", "delete", "options", "patch"];
|
|
@@ -112701,10 +112720,10 @@ var MESSAGE_MATCHER_IS_ALREADY_BUILT = "Can not add a route since the matcher is
|
|
|
112701
112720
|
var UnsupportedPathError = class extends Error {
|
|
112702
112721
|
};
|
|
112703
112722
|
|
|
112704
|
-
// ../../node_modules/.pnpm/hono@4.12.
|
|
112723
|
+
// ../../node_modules/.pnpm/hono@4.12.7/node_modules/hono/dist/utils/constants.js
|
|
112705
112724
|
var COMPOSED_HANDLER = "__COMPOSED_HANDLER";
|
|
112706
112725
|
|
|
112707
|
-
// ../../node_modules/.pnpm/hono@4.12.
|
|
112726
|
+
// ../../node_modules/.pnpm/hono@4.12.7/node_modules/hono/dist/hono-base.js
|
|
112708
112727
|
var notFoundHandler = (c2) => {
|
|
112709
112728
|
return c2.text("404 Not Found", 404);
|
|
112710
112729
|
};
|
|
@@ -113075,7 +113094,7 @@ var Hono = class _Hono {
|
|
|
113075
113094
|
};
|
|
113076
113095
|
};
|
|
113077
113096
|
|
|
113078
|
-
// ../../node_modules/.pnpm/hono@4.12.
|
|
113097
|
+
// ../../node_modules/.pnpm/hono@4.12.7/node_modules/hono/dist/router/reg-exp-router/matcher.js
|
|
113079
113098
|
var emptyParam = [];
|
|
113080
113099
|
function match(method, path3) {
|
|
113081
113100
|
const matchers = this.buildAllMatchers();
|
|
@@ -113096,7 +113115,7 @@ function match(method, path3) {
|
|
|
113096
113115
|
return match2(method, path3);
|
|
113097
113116
|
}
|
|
113098
113117
|
|
|
113099
|
-
// ../../node_modules/.pnpm/hono@4.12.
|
|
113118
|
+
// ../../node_modules/.pnpm/hono@4.12.7/node_modules/hono/dist/router/reg-exp-router/node.js
|
|
113100
113119
|
var LABEL_REG_EXP_STR = "[^/]+";
|
|
113101
113120
|
var ONLY_WILDCARD_REG_EXP_STR = ".*";
|
|
113102
113121
|
var TAIL_WILDCARD_REG_EXP_STR = "(?:|/.*)";
|
|
@@ -113204,7 +113223,7 @@ var Node = class _Node {
|
|
|
113204
113223
|
}
|
|
113205
113224
|
};
|
|
113206
113225
|
|
|
113207
|
-
// ../../node_modules/.pnpm/hono@4.12.
|
|
113226
|
+
// ../../node_modules/.pnpm/hono@4.12.7/node_modules/hono/dist/router/reg-exp-router/trie.js
|
|
113208
113227
|
var Trie = class {
|
|
113209
113228
|
#context = { varIndex: 0 };
|
|
113210
113229
|
#root = new Node();
|
|
@@ -113260,7 +113279,7 @@ var Trie = class {
|
|
|
113260
113279
|
}
|
|
113261
113280
|
};
|
|
113262
113281
|
|
|
113263
|
-
// ../../node_modules/.pnpm/hono@4.12.
|
|
113282
|
+
// ../../node_modules/.pnpm/hono@4.12.7/node_modules/hono/dist/router/reg-exp-router/router.js
|
|
113264
113283
|
var nullMatcher = [/^$/, [], /* @__PURE__ */ Object.create(null)];
|
|
113265
113284
|
var wildcardRegExpCache = /* @__PURE__ */ Object.create(null);
|
|
113266
113285
|
function buildWildcardRegExp(path3) {
|
|
@@ -113439,7 +113458,7 @@ var RegExpRouter = class {
|
|
|
113439
113458
|
}
|
|
113440
113459
|
};
|
|
113441
113460
|
|
|
113442
|
-
// ../../node_modules/.pnpm/hono@4.12.
|
|
113461
|
+
// ../../node_modules/.pnpm/hono@4.12.7/node_modules/hono/dist/router/smart-router/router.js
|
|
113443
113462
|
var SmartRouter = class {
|
|
113444
113463
|
name = "SmartRouter";
|
|
113445
113464
|
#routers = [];
|
|
@@ -113494,7 +113513,7 @@ var SmartRouter = class {
|
|
|
113494
113513
|
}
|
|
113495
113514
|
};
|
|
113496
113515
|
|
|
113497
|
-
// ../../node_modules/.pnpm/hono@4.12.
|
|
113516
|
+
// ../../node_modules/.pnpm/hono@4.12.7/node_modules/hono/dist/router/trie-router/node.js
|
|
113498
113517
|
var emptyParams = /* @__PURE__ */ Object.create(null);
|
|
113499
113518
|
var hasChildren = (children) => {
|
|
113500
113519
|
for (const _3 in children) {
|
|
@@ -113669,7 +113688,7 @@ var Node2 = class _Node2 {
|
|
|
113669
113688
|
}
|
|
113670
113689
|
};
|
|
113671
113690
|
|
|
113672
|
-
// ../../node_modules/.pnpm/hono@4.12.
|
|
113691
|
+
// ../../node_modules/.pnpm/hono@4.12.7/node_modules/hono/dist/router/trie-router/router.js
|
|
113673
113692
|
var TrieRouter = class {
|
|
113674
113693
|
name = "TrieRouter";
|
|
113675
113694
|
#node;
|
|
@@ -113691,7 +113710,7 @@ var TrieRouter = class {
|
|
|
113691
113710
|
}
|
|
113692
113711
|
};
|
|
113693
113712
|
|
|
113694
|
-
// ../../node_modules/.pnpm/hono@4.12.
|
|
113713
|
+
// ../../node_modules/.pnpm/hono@4.12.7/node_modules/hono/dist/hono.js
|
|
113695
113714
|
var Hono2 = class extends Hono {
|
|
113696
113715
|
/**
|
|
113697
113716
|
* Creates an instance of the Hono class.
|
|
@@ -116491,7 +116510,7 @@ function logQuery(event) {
|
|
|
116491
116510
|
});
|
|
116492
116511
|
}
|
|
116493
116512
|
|
|
116494
|
-
// ../../node_modules/.pnpm/hono@4.12.
|
|
116513
|
+
// ../../node_modules/.pnpm/hono@4.12.7/node_modules/hono/dist/helper/factory/index.js
|
|
116495
116514
|
var createMiddleware = (middleware) => middleware;
|
|
116496
116515
|
|
|
116497
116516
|
// src/server/middleware/client-telemetry.ts
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prisma/query-plan-executor",
|
|
3
|
-
"version": "7.5.0-dev.
|
|
3
|
+
"version": "7.5.0-dev.49",
|
|
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",
|
|
@@ -19,11 +19,11 @@
|
|
|
19
19
|
"hono": "4.11.7",
|
|
20
20
|
"temporal-polyfill": "0.3.0",
|
|
21
21
|
"zod": "4.1.3",
|
|
22
|
-
"@prisma/adapter-
|
|
23
|
-
"@prisma/adapter-
|
|
24
|
-
"@prisma/adapter-
|
|
25
|
-
"@prisma/client-engine-runtime": "7.5.0-dev.
|
|
26
|
-
"@prisma/driver-adapter-utils": "7.5.0-dev.
|
|
22
|
+
"@prisma/adapter-pg": "7.5.0-dev.49",
|
|
23
|
+
"@prisma/adapter-mariadb": "7.5.0-dev.49",
|
|
24
|
+
"@prisma/adapter-mssql": "7.5.0-dev.49",
|
|
25
|
+
"@prisma/client-engine-runtime": "7.5.0-dev.49",
|
|
26
|
+
"@prisma/driver-adapter-utils": "7.5.0-dev.49"
|
|
27
27
|
},
|
|
28
28
|
"files": [
|
|
29
29
|
"dist"
|