drizzle-kit 0.21.3 → 0.21.4-b5744a6
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/bin.cjs +326 -297
- package/package.json +1 -1
- package/payload.js +354 -353
- package/payload.mjs +354 -353
- package/utils.js +29 -0
- package/utils.mjs +28 -0
package/bin.cjs
CHANGED
@@ -6223,7 +6223,7 @@ var init_sqliteSchema = __esm({
|
|
6223
6223
|
});
|
6224
6224
|
|
6225
6225
|
// src/utils.ts
|
6226
|
-
var import_fs, import_path, copy, objectValues, assertV1OutFolder, dryJournal, prepareOutFolder, validatorForDialect, validateWithReport, prepareMigrationFolder, prepareMigrationMeta, schemaRenameKey, tableRenameKey, columnRenameKey;
|
6226
|
+
var import_fs, import_path, import_url, copy, objectValues, assertV1OutFolder, dryJournal, prepareOutFolder, validatorForDialect, validateWithReport, prepareMigrationFolder, prepareMigrationMeta, schemaRenameKey, tableRenameKey, columnRenameKey, normaliseSQLiteUrl;
|
6227
6227
|
var init_utils = __esm({
|
6228
6228
|
"src/utils.ts"() {
|
6229
6229
|
"use strict";
|
@@ -6234,6 +6234,7 @@ var init_utils = __esm({
|
|
6234
6234
|
init_sqliteSchema();
|
6235
6235
|
init_source();
|
6236
6236
|
import_path = require("path");
|
6237
|
+
import_url = require("url");
|
6237
6238
|
init_global();
|
6238
6239
|
copy = (it) => {
|
6239
6240
|
return JSON.parse(JSON.stringify(it));
|
@@ -6396,6 +6397,29 @@ var init_utils = __esm({
|
|
6396
6397
|
const out = schema5 ? `"${schema5}"."${table4}"."${column7}"` : `"${table4}"."${column7}"`;
|
6397
6398
|
return out;
|
6398
6399
|
};
|
6400
|
+
normaliseSQLiteUrl = (it, type) => {
|
6401
|
+
if (type === "libsql") {
|
6402
|
+
if (it.startsWith("file:")) {
|
6403
|
+
return it;
|
6404
|
+
}
|
6405
|
+
try {
|
6406
|
+
const url = (0, import_url.parse)(it);
|
6407
|
+
if (url.protocol === null) {
|
6408
|
+
return `file:${it}`;
|
6409
|
+
}
|
6410
|
+
return it;
|
6411
|
+
} catch (e2) {
|
6412
|
+
return `file:${it}`;
|
6413
|
+
}
|
6414
|
+
}
|
6415
|
+
if (type === "better-sqlite") {
|
6416
|
+
if (it.startsWith("file:")) {
|
6417
|
+
return it.substring(5);
|
6418
|
+
}
|
6419
|
+
return it;
|
6420
|
+
}
|
6421
|
+
assertUnreachable(type);
|
6422
|
+
};
|
6399
6423
|
}
|
6400
6424
|
});
|
6401
6425
|
|
@@ -6809,7 +6833,7 @@ var require_semver = __commonJS({
|
|
6809
6833
|
var require_parse = __commonJS({
|
6810
6834
|
"node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/parse.js"(exports2, module2) {
|
6811
6835
|
var SemVer = require_semver();
|
6812
|
-
var
|
6836
|
+
var parse7 = (version2, options, throwErrors = false) => {
|
6813
6837
|
if (version2 instanceof SemVer) {
|
6814
6838
|
return version2;
|
6815
6839
|
}
|
@@ -6822,16 +6846,16 @@ var require_parse = __commonJS({
|
|
6822
6846
|
throw er3;
|
6823
6847
|
}
|
6824
6848
|
};
|
6825
|
-
module2.exports =
|
6849
|
+
module2.exports = parse7;
|
6826
6850
|
}
|
6827
6851
|
});
|
6828
6852
|
|
6829
6853
|
// node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/valid.js
|
6830
6854
|
var require_valid = __commonJS({
|
6831
6855
|
"node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/valid.js"(exports2, module2) {
|
6832
|
-
var
|
6856
|
+
var parse7 = require_parse();
|
6833
6857
|
var valid = (version2, options) => {
|
6834
|
-
const v6 =
|
6858
|
+
const v6 = parse7(version2, options);
|
6835
6859
|
return v6 ? v6.version : null;
|
6836
6860
|
};
|
6837
6861
|
module2.exports = valid;
|
@@ -6841,9 +6865,9 @@ var require_valid = __commonJS({
|
|
6841
6865
|
// node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/clean.js
|
6842
6866
|
var require_clean = __commonJS({
|
6843
6867
|
"node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/clean.js"(exports2, module2) {
|
6844
|
-
var
|
6868
|
+
var parse7 = require_parse();
|
6845
6869
|
var clean = (version2, options) => {
|
6846
|
-
const s2 =
|
6870
|
+
const s2 = parse7(version2.trim().replace(/^[=v]+/, ""), options);
|
6847
6871
|
return s2 ? s2.version : null;
|
6848
6872
|
};
|
6849
6873
|
module2.exports = clean;
|
@@ -6876,10 +6900,10 @@ var require_inc = __commonJS({
|
|
6876
6900
|
// node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/diff.js
|
6877
6901
|
var require_diff = __commonJS({
|
6878
6902
|
"node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/diff.js"(exports2, module2) {
|
6879
|
-
var
|
6903
|
+
var parse7 = require_parse();
|
6880
6904
|
var diff2 = (version1, version2) => {
|
6881
|
-
const v12 =
|
6882
|
-
const v22 =
|
6905
|
+
const v12 = parse7(version1, null, true);
|
6906
|
+
const v22 = parse7(version2, null, true);
|
6883
6907
|
const comparison = v12.compare(v22);
|
6884
6908
|
if (comparison === 0) {
|
6885
6909
|
return null;
|
@@ -6947,9 +6971,9 @@ var require_patch = __commonJS({
|
|
6947
6971
|
// node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/prerelease.js
|
6948
6972
|
var require_prerelease = __commonJS({
|
6949
6973
|
"node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/prerelease.js"(exports2, module2) {
|
6950
|
-
var
|
6974
|
+
var parse7 = require_parse();
|
6951
6975
|
var prerelease = (version2, options) => {
|
6952
|
-
const parsed =
|
6976
|
+
const parsed = parse7(version2, options);
|
6953
6977
|
return parsed && parsed.prerelease.length ? parsed.prerelease : null;
|
6954
6978
|
};
|
6955
6979
|
module2.exports = prerelease;
|
@@ -7121,7 +7145,7 @@ var require_cmp = __commonJS({
|
|
7121
7145
|
var require_coerce = __commonJS({
|
7122
7146
|
"node_modules/.pnpm/semver@7.6.2/node_modules/semver/functions/coerce.js"(exports2, module2) {
|
7123
7147
|
var SemVer = require_semver();
|
7124
|
-
var
|
7148
|
+
var parse7 = require_parse();
|
7125
7149
|
var { safeRe: re2, t: t2 } = require_re();
|
7126
7150
|
var coerce3 = (version2, options) => {
|
7127
7151
|
if (version2 instanceof SemVer) {
|
@@ -7156,7 +7180,7 @@ var require_coerce = __commonJS({
|
|
7156
7180
|
const patch = match2[4] || "0";
|
7157
7181
|
const prerelease = options.includePrerelease && match2[5] ? `-${match2[5]}` : "";
|
7158
7182
|
const build = options.includePrerelease && match2[6] ? `+${match2[6]}` : "";
|
7159
|
-
return
|
7183
|
+
return parse7(`${major}.${minor}.${patch}${prerelease}${build}`, options);
|
7160
7184
|
};
|
7161
7185
|
module2.exports = coerce3;
|
7162
7186
|
}
|
@@ -8137,7 +8161,7 @@ var require_semver2 = __commonJS({
|
|
8137
8161
|
var constants = require_constants();
|
8138
8162
|
var SemVer = require_semver();
|
8139
8163
|
var identifiers = require_identifiers();
|
8140
|
-
var
|
8164
|
+
var parse7 = require_parse();
|
8141
8165
|
var valid = require_valid();
|
8142
8166
|
var clean = require_clean();
|
8143
8167
|
var inc = require_inc();
|
@@ -8175,7 +8199,7 @@ var require_semver2 = __commonJS({
|
|
8175
8199
|
var simplifyRange = require_simplify();
|
8176
8200
|
var subset = require_subset();
|
8177
8201
|
module2.exports = {
|
8178
|
-
parse:
|
8202
|
+
parse: parse7,
|
8179
8203
|
valid,
|
8180
8204
|
clean,
|
8181
8205
|
inc,
|
@@ -8829,7 +8853,7 @@ var require_ms = __commonJS({
|
|
8829
8853
|
options = options || {};
|
8830
8854
|
var type = typeof val2;
|
8831
8855
|
if (type === "string" && val2.length > 0) {
|
8832
|
-
return
|
8856
|
+
return parse7(val2);
|
8833
8857
|
} else if (type === "number" && isFinite(val2)) {
|
8834
8858
|
return options.long ? fmtLong(val2) : fmtShort(val2);
|
8835
8859
|
}
|
@@ -8837,7 +8861,7 @@ var require_ms = __commonJS({
|
|
8837
8861
|
"val is not a non-empty string or a valid number. val=" + JSON.stringify(val2)
|
8838
8862
|
);
|
8839
8863
|
};
|
8840
|
-
function
|
8864
|
+
function parse7(str) {
|
8841
8865
|
str = String(str);
|
8842
8866
|
if (str.length > 100) {
|
8843
8867
|
return;
|
@@ -12556,7 +12580,7 @@ var require_node2 = __commonJS({
|
|
12556
12580
|
var token;
|
12557
12581
|
var key;
|
12558
12582
|
var root;
|
12559
|
-
module22.exports = function
|
12583
|
+
module22.exports = function parse7(text, reviver) {
|
12560
12584
|
source = String(text);
|
12561
12585
|
parseState = "start";
|
12562
12586
|
stack = [];
|
@@ -13604,10 +13628,10 @@ var require_node2 = __commonJS({
|
|
13604
13628
|
};
|
13605
13629
|
});
|
13606
13630
|
var require_lib32 = __commonJS2((exports3, module22) => {
|
13607
|
-
var
|
13631
|
+
var parse7 = require_parse4();
|
13608
13632
|
var stringify4 = require_stringify3();
|
13609
13633
|
var JSON5 = {
|
13610
|
-
parse:
|
13634
|
+
parse: parse7,
|
13611
13635
|
stringify: stringify4
|
13612
13636
|
};
|
13613
13637
|
module22.exports = JSON5;
|
@@ -19317,20 +19341,21 @@ var init_jsonStatements = __esm({
|
|
19317
19341
|
});
|
19318
19342
|
};
|
19319
19343
|
prepareAlterReferencesJson = (tableName, schema5, foreignKeys) => {
|
19320
|
-
const keys = Object.keys(foreignKeys);
|
19321
19344
|
const stmts = [];
|
19322
|
-
|
19323
|
-
stmts.push(
|
19324
|
-
|
19325
|
-
|
19326
|
-
|
19327
|
-
|
19328
|
-
|
19329
|
-
|
19330
|
-
|
19331
|
-
|
19332
|
-
|
19333
|
-
|
19345
|
+
Object.values(foreignKeys).map((val2) => {
|
19346
|
+
stmts.push({
|
19347
|
+
type: "delete_reference",
|
19348
|
+
tableName,
|
19349
|
+
schema: schema5,
|
19350
|
+
data: val2.__old
|
19351
|
+
});
|
19352
|
+
stmts.push({
|
19353
|
+
type: "create_reference",
|
19354
|
+
tableName,
|
19355
|
+
schema: schema5,
|
19356
|
+
data: val2.__new
|
19357
|
+
});
|
19358
|
+
});
|
19334
19359
|
return stmts;
|
19335
19360
|
};
|
19336
19361
|
prepareDropIndexesJson = (tableName, schema5, indexes) => {
|
@@ -22615,7 +22640,7 @@ var require_main = __commonJS({
|
|
22615
22640
|
var packageJson = require_package();
|
22616
22641
|
var version2 = packageJson.version;
|
22617
22642
|
var LINE = /(?:^|^)\s*(?:export\s+)?([\w.-]+)(?:\s*=\s*?|:\s+?)(\s*'(?:\\'|[^'])*'|\s*"(?:\\"|[^"])*"|\s*`(?:\\`|[^`])*`|[^#\r\n]+)?\s*(?:#.*)?(?:$|$)/mg;
|
22618
|
-
function
|
22643
|
+
function parse7(src) {
|
22619
22644
|
const obj = {};
|
22620
22645
|
let lines = src.toString();
|
22621
22646
|
lines = lines.replace(/\r\n?/mg, "\n");
|
@@ -22858,7 +22883,7 @@ var require_main = __commonJS({
|
|
22858
22883
|
_parseVault,
|
22859
22884
|
config,
|
22860
22885
|
decrypt,
|
22861
|
-
parse:
|
22886
|
+
parse: parse7,
|
22862
22887
|
populate
|
22863
22888
|
};
|
22864
22889
|
module2.exports.configDotenv = DotenvModule.configDotenv;
|
@@ -25110,7 +25135,7 @@ var require_parse2 = __commonJS({
|
|
25110
25135
|
CHAR_NO_BREAK_SPACE,
|
25111
25136
|
CHAR_ZERO_WIDTH_NOBREAK_SPACE
|
25112
25137
|
} = require_constants2();
|
25113
|
-
var
|
25138
|
+
var parse7 = (input, options = {}) => {
|
25114
25139
|
if (typeof input !== "string") {
|
25115
25140
|
throw new TypeError("Expected a string");
|
25116
25141
|
}
|
@@ -25314,7 +25339,7 @@ var require_parse2 = __commonJS({
|
|
25314
25339
|
push({ type: "eos" });
|
25315
25340
|
return ast;
|
25316
25341
|
};
|
25317
|
-
module2.exports =
|
25342
|
+
module2.exports = parse7;
|
25318
25343
|
}
|
25319
25344
|
});
|
25320
25345
|
|
@@ -25325,7 +25350,7 @@ var require_braces = __commonJS({
|
|
25325
25350
|
var stringify4 = require_stringify();
|
25326
25351
|
var compile = require_compile();
|
25327
25352
|
var expand2 = require_expand();
|
25328
|
-
var
|
25353
|
+
var parse7 = require_parse2();
|
25329
25354
|
var braces = (input, options = {}) => {
|
25330
25355
|
let output = [];
|
25331
25356
|
if (Array.isArray(input)) {
|
@@ -25345,7 +25370,7 @@ var require_braces = __commonJS({
|
|
25345
25370
|
}
|
25346
25371
|
return output;
|
25347
25372
|
};
|
25348
|
-
braces.parse = (input, options = {}) =>
|
25373
|
+
braces.parse = (input, options = {}) => parse7(input, options);
|
25349
25374
|
braces.stringify = (input, options = {}) => {
|
25350
25375
|
if (typeof input === "string") {
|
25351
25376
|
return stringify4(braces.parse(input, options), options);
|
@@ -26003,7 +26028,7 @@ var require_parse3 = __commonJS({
|
|
26003
26028
|
var syntaxError = (type, char) => {
|
26004
26029
|
return `Missing ${type}: "${char}" - use "\\\\${char}" to match literal characters`;
|
26005
26030
|
};
|
26006
|
-
var
|
26031
|
+
var parse7 = (input, options) => {
|
26007
26032
|
if (typeof input !== "string") {
|
26008
26033
|
throw new TypeError("Expected a string");
|
26009
26034
|
}
|
@@ -26153,7 +26178,7 @@ var require_parse3 = __commonJS({
|
|
26153
26178
|
output = token.close = `)$))${extglobStar}`;
|
26154
26179
|
}
|
26155
26180
|
if (token.inner.includes("*") && (rest = remaining()) && /^\.[^\\/.]+$/.test(rest)) {
|
26156
|
-
const expression =
|
26181
|
+
const expression = parse7(rest, { ...options, fastpaths: false }).output;
|
26157
26182
|
output = token.close = `)${expression})${extglobStar})`;
|
26158
26183
|
}
|
26159
26184
|
if (token.prev.type === "bos") {
|
@@ -26682,7 +26707,7 @@ var require_parse3 = __commonJS({
|
|
26682
26707
|
}
|
26683
26708
|
return state;
|
26684
26709
|
};
|
26685
|
-
|
26710
|
+
parse7.fastpaths = (input, options) => {
|
26686
26711
|
const opts = { ...options };
|
26687
26712
|
const max = typeof opts.maxLength === "number" ? Math.min(MAX_LENGTH, opts.maxLength) : MAX_LENGTH;
|
26688
26713
|
const len = input.length;
|
@@ -26751,7 +26776,7 @@ var require_parse3 = __commonJS({
|
|
26751
26776
|
}
|
26752
26777
|
return source;
|
26753
26778
|
};
|
26754
|
-
module2.exports =
|
26779
|
+
module2.exports = parse7;
|
26755
26780
|
}
|
26756
26781
|
});
|
26757
26782
|
|
@@ -26761,7 +26786,7 @@ var require_picomatch = __commonJS({
|
|
26761
26786
|
"use strict";
|
26762
26787
|
var path5 = require("path");
|
26763
26788
|
var scan = require_scan();
|
26764
|
-
var
|
26789
|
+
var parse7 = require_parse3();
|
26765
26790
|
var utils = require_utils3();
|
26766
26791
|
var constants = require_constants3();
|
26767
26792
|
var isObject = (val2) => val2 && typeof val2 === "object" && !Array.isArray(val2);
|
@@ -26851,7 +26876,7 @@ var require_picomatch = __commonJS({
|
|
26851
26876
|
picomatch.parse = (pattern, options) => {
|
26852
26877
|
if (Array.isArray(pattern))
|
26853
26878
|
return pattern.map((p4) => picomatch.parse(p4, options));
|
26854
|
-
return
|
26879
|
+
return parse7(pattern, { ...options, fastpaths: false });
|
26855
26880
|
};
|
26856
26881
|
picomatch.scan = (input, options) => scan(input, options);
|
26857
26882
|
picomatch.compileRe = (state, options, returnOutput = false, returnState = false) => {
|
@@ -26877,10 +26902,10 @@ var require_picomatch = __commonJS({
|
|
26877
26902
|
}
|
26878
26903
|
let parsed = { negated: false, fastpaths: true };
|
26879
26904
|
if (options.fastpaths !== false && (input[0] === "." || input[0] === "*")) {
|
26880
|
-
parsed.output =
|
26905
|
+
parsed.output = parse7.fastpaths(input, options);
|
26881
26906
|
}
|
26882
26907
|
if (!parsed.output) {
|
26883
|
-
parsed =
|
26908
|
+
parsed = parse7(input, options);
|
26884
26909
|
}
|
26885
26910
|
return picomatch.compileRe(parsed, options, returnOutput, returnState);
|
26886
26911
|
};
|
@@ -41867,7 +41892,7 @@ var require_public_api = __commonJS({
|
|
41867
41892
|
}
|
41868
41893
|
return doc;
|
41869
41894
|
}
|
41870
|
-
function
|
41895
|
+
function parse7(src, reviver, options) {
|
41871
41896
|
let _reviver = void 0;
|
41872
41897
|
if (typeof reviver === "function") {
|
41873
41898
|
_reviver = reviver;
|
@@ -41906,7 +41931,7 @@ var require_public_api = __commonJS({
|
|
41906
41931
|
}
|
41907
41932
|
return new Document.Document(value, _replacer, options).toString(options);
|
41908
41933
|
}
|
41909
|
-
exports2.parse =
|
41934
|
+
exports2.parse = parse7;
|
41910
41935
|
exports2.parseAllDocuments = parseAllDocuments;
|
41911
41936
|
exports2.parseDocument = parseDocument;
|
41912
41937
|
exports2.stringify = stringify4;
|
@@ -44332,7 +44357,7 @@ var require_extension = __commonJS({
|
|
44332
44357
|
else
|
44333
44358
|
dest[name].push(elem);
|
44334
44359
|
}
|
44335
|
-
function
|
44360
|
+
function parse7(header) {
|
44336
44361
|
const offers = /* @__PURE__ */ Object.create(null);
|
44337
44362
|
let params = /* @__PURE__ */ Object.create(null);
|
44338
44363
|
let mustUnescape = false;
|
@@ -44487,7 +44512,7 @@ var require_extension = __commonJS({
|
|
44487
44512
|
}).join(", ");
|
44488
44513
|
}).join(", ");
|
44489
44514
|
}
|
44490
|
-
module2.exports = { format: format2, parse:
|
44515
|
+
module2.exports = { format: format2, parse: parse7 };
|
44491
44516
|
}
|
44492
44517
|
});
|
44493
44518
|
|
@@ -44519,7 +44544,7 @@ var require_websocket = __commonJS({
|
|
44519
44544
|
var {
|
44520
44545
|
EventTarget: { addEventListener: addEventListener2, removeEventListener }
|
44521
44546
|
} = require_event_target();
|
44522
|
-
var { format: format2, parse:
|
44547
|
+
var { format: format2, parse: parse7 } = require_extension();
|
44523
44548
|
var { toBuffer } = require_buffer_util();
|
44524
44549
|
var closeTimeout = 30 * 1e3;
|
44525
44550
|
var kAborted = Symbol("kAborted");
|
@@ -45206,7 +45231,7 @@ var require_websocket = __commonJS({
|
|
45206
45231
|
}
|
45207
45232
|
let extensions;
|
45208
45233
|
try {
|
45209
|
-
extensions =
|
45234
|
+
extensions = parse7(secWebSocketExtensions);
|
45210
45235
|
} catch (err2) {
|
45211
45236
|
const message = "Invalid Sec-WebSocket-Extensions header";
|
45212
45237
|
abortHandshake(websocket, socket, message);
|
@@ -45382,7 +45407,7 @@ var require_subprotocol = __commonJS({
|
|
45382
45407
|
"node_modules/.pnpm/ws@8.17.0/node_modules/ws/lib/subprotocol.js"(exports2, module2) {
|
45383
45408
|
"use strict";
|
45384
45409
|
var { tokenChars } = require_validation();
|
45385
|
-
function
|
45410
|
+
function parse7(header) {
|
45386
45411
|
const protocols = /* @__PURE__ */ new Set();
|
45387
45412
|
let start = -1;
|
45388
45413
|
let end = -1;
|
@@ -45421,7 +45446,7 @@ var require_subprotocol = __commonJS({
|
|
45421
45446
|
protocols.add(protocol2);
|
45422
45447
|
return protocols;
|
45423
45448
|
}
|
45424
|
-
module2.exports = { parse:
|
45449
|
+
module2.exports = { parse: parse7 };
|
45425
45450
|
}
|
45426
45451
|
});
|
45427
45452
|
|
@@ -50251,7 +50276,7 @@ var init_v1 = __esm({
|
|
50251
50276
|
});
|
50252
50277
|
|
50253
50278
|
// node_modules/.pnpm/uuid@9.0.1/node_modules/uuid/dist/esm-node/parse.js
|
50254
|
-
function
|
50279
|
+
function parse2(uuid) {
|
50255
50280
|
if (!validate_default(uuid)) {
|
50256
50281
|
throw TypeError("Invalid UUID");
|
50257
50282
|
}
|
@@ -50279,7 +50304,7 @@ var parse_default;
|
|
50279
50304
|
var init_parse = __esm({
|
50280
50305
|
"node_modules/.pnpm/uuid@9.0.1/node_modules/uuid/dist/esm-node/parse.js"() {
|
50281
50306
|
init_validate();
|
50282
|
-
parse_default =
|
50307
|
+
parse_default = parse2;
|
50283
50308
|
}
|
50284
50309
|
});
|
50285
50310
|
|
@@ -55268,9 +55293,9 @@ var init_tslib_es6 = __esm({
|
|
55268
55293
|
}
|
55269
55294
|
});
|
55270
55295
|
|
55271
|
-
// node_modules/.pnpm/@aws-sdk+core@3.
|
55296
|
+
// node_modules/.pnpm/@aws-sdk+core@3.582.0/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.js
|
55272
55297
|
var require_client = __commonJS({
|
55273
|
-
"node_modules/.pnpm/@aws-sdk+core@3.
|
55298
|
+
"node_modules/.pnpm/@aws-sdk+core@3.582.0/node_modules/@aws-sdk/core/dist-cjs/submodules/client/index.js"(exports2, module2) {
|
55274
55299
|
"use strict";
|
55275
55300
|
var __defProp2 = Object.defineProperty;
|
55276
55301
|
var __getOwnPropDesc2 = Object.getOwnPropertyDescriptor;
|
@@ -55872,9 +55897,9 @@ ${(0, import_util_hex_encoding.toHex)(hashedRequest)}`;
|
|
55872
55897
|
}
|
55873
55898
|
});
|
55874
55899
|
|
55875
|
-
// node_modules/.pnpm/@aws-sdk+core@3.
|
55900
|
+
// node_modules/.pnpm/@aws-sdk+core@3.582.0/node_modules/@aws-sdk/core/dist-cjs/submodules/httpAuthSchemes/index.js
|
55876
55901
|
var require_httpAuthSchemes = __commonJS({
|
55877
|
-
"node_modules/.pnpm/@aws-sdk+core@3.
|
55902
|
+
"node_modules/.pnpm/@aws-sdk+core@3.582.0/node_modules/@aws-sdk/core/dist-cjs/submodules/httpAuthSchemes/index.js"(exports2, module2) {
|
55878
55903
|
"use strict";
|
55879
55904
|
var __defProp2 = Object.defineProperty;
|
55880
55905
|
var __getOwnPropDesc2 = Object.getOwnPropertyDescriptor;
|
@@ -57760,9 +57785,9 @@ var require_fxp = __commonJS({
|
|
57760
57785
|
}
|
57761
57786
|
});
|
57762
57787
|
|
57763
|
-
// node_modules/.pnpm/@aws-sdk+core@3.
|
57788
|
+
// node_modules/.pnpm/@aws-sdk+core@3.582.0/node_modules/@aws-sdk/core/dist-cjs/submodules/protocols/index.js
|
57764
57789
|
var require_protocols = __commonJS({
|
57765
|
-
"node_modules/.pnpm/@aws-sdk+core@3.
|
57790
|
+
"node_modules/.pnpm/@aws-sdk+core@3.582.0/node_modules/@aws-sdk/core/dist-cjs/submodules/protocols/index.js"(exports2, module2) {
|
57766
57791
|
"use strict";
|
57767
57792
|
var __defProp2 = Object.defineProperty;
|
57768
57793
|
var __getOwnPropDesc2 = Object.getOwnPropertyDescriptor;
|
@@ -57969,9 +57994,9 @@ var require_protocols = __commonJS({
|
|
57969
57994
|
}
|
57970
57995
|
});
|
57971
57996
|
|
57972
|
-
// node_modules/.pnpm/@aws-sdk+core@3.
|
57997
|
+
// node_modules/.pnpm/@aws-sdk+core@3.582.0/node_modules/@aws-sdk/core/dist-cjs/index.js
|
57973
57998
|
var require_dist_cjs37 = __commonJS({
|
57974
|
-
"node_modules/.pnpm/@aws-sdk+core@3.
|
57999
|
+
"node_modules/.pnpm/@aws-sdk+core@3.582.0/node_modules/@aws-sdk/core/dist-cjs/index.js"(exports2) {
|
57975
58000
|
"use strict";
|
57976
58001
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
57977
58002
|
var tslib_1 = (init_tslib_es6(), __toCommonJS(tslib_es6_exports));
|
@@ -57981,9 +58006,9 @@ var require_dist_cjs37 = __commonJS({
|
|
57981
58006
|
}
|
57982
58007
|
});
|
57983
58008
|
|
57984
|
-
// node_modules/.pnpm/@aws-sdk+client-rds-data@3.
|
58009
|
+
// node_modules/.pnpm/@aws-sdk+client-rds-data@3.582.0/node_modules/@aws-sdk/client-rds-data/dist-cjs/auth/httpAuthSchemeProvider.js
|
57985
58010
|
var require_httpAuthSchemeProvider = __commonJS({
|
57986
|
-
"node_modules/.pnpm/@aws-sdk+client-rds-data@3.
|
58011
|
+
"node_modules/.pnpm/@aws-sdk+client-rds-data@3.582.0/node_modules/@aws-sdk/client-rds-data/dist-cjs/auth/httpAuthSchemeProvider.js"(exports2) {
|
57987
58012
|
"use strict";
|
57988
58013
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
57989
58014
|
exports2.resolveHttpAuthSchemeConfig = exports2.defaultRDSDataHttpAuthSchemeProvider = exports2.defaultRDSDataHttpAuthSchemeParametersProvider = void 0;
|
@@ -58033,13 +58058,13 @@ var require_httpAuthSchemeProvider = __commonJS({
|
|
58033
58058
|
}
|
58034
58059
|
});
|
58035
58060
|
|
58036
|
-
// node_modules/.pnpm/@aws-sdk+client-rds-data@3.
|
58061
|
+
// node_modules/.pnpm/@aws-sdk+client-rds-data@3.582.0/node_modules/@aws-sdk/client-rds-data/package.json
|
58037
58062
|
var require_package2 = __commonJS({
|
58038
|
-
"node_modules/.pnpm/@aws-sdk+client-rds-data@3.
|
58063
|
+
"node_modules/.pnpm/@aws-sdk+client-rds-data@3.582.0/node_modules/@aws-sdk/client-rds-data/package.json"(exports2, module2) {
|
58039
58064
|
module2.exports = {
|
58040
58065
|
name: "@aws-sdk/client-rds-data",
|
58041
58066
|
description: "AWS SDK for JavaScript Rds Data Client for Node.js, Browser and React Native",
|
58042
|
-
version: "3.
|
58067
|
+
version: "3.582.0",
|
58043
58068
|
scripts: {
|
58044
58069
|
build: "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
58045
58070
|
"build:cjs": "node ../../scripts/compilation/inline client-rds-data",
|
@@ -58058,10 +58083,10 @@ var require_package2 = __commonJS({
|
|
58058
58083
|
dependencies: {
|
58059
58084
|
"@aws-crypto/sha256-browser": "3.0.0",
|
58060
58085
|
"@aws-crypto/sha256-js": "3.0.0",
|
58061
|
-
"@aws-sdk/client-sso-oidc": "3.
|
58062
|
-
"@aws-sdk/client-sts": "3.
|
58063
|
-
"@aws-sdk/core": "3.
|
58064
|
-
"@aws-sdk/credential-provider-node": "3.
|
58086
|
+
"@aws-sdk/client-sso-oidc": "3.582.0",
|
58087
|
+
"@aws-sdk/client-sts": "3.582.0",
|
58088
|
+
"@aws-sdk/core": "3.582.0",
|
58089
|
+
"@aws-sdk/credential-provider-node": "3.582.0",
|
58065
58090
|
"@aws-sdk/middleware-host-header": "3.577.0",
|
58066
58091
|
"@aws-sdk/middleware-logger": "3.577.0",
|
58067
58092
|
"@aws-sdk/middleware-recursion-detection": "3.577.0",
|
@@ -58072,26 +58097,26 @@ var require_package2 = __commonJS({
|
|
58072
58097
|
"@aws-sdk/util-user-agent-browser": "3.577.0",
|
58073
58098
|
"@aws-sdk/util-user-agent-node": "3.577.0",
|
58074
58099
|
"@smithy/config-resolver": "^3.0.0",
|
58075
|
-
"@smithy/core": "^2.0.
|
58076
|
-
"@smithy/fetch-http-handler": "^3.0.
|
58100
|
+
"@smithy/core": "^2.0.1",
|
58101
|
+
"@smithy/fetch-http-handler": "^3.0.1",
|
58077
58102
|
"@smithy/hash-node": "^3.0.0",
|
58078
58103
|
"@smithy/invalid-dependency": "^3.0.0",
|
58079
58104
|
"@smithy/middleware-content-length": "^3.0.0",
|
58080
58105
|
"@smithy/middleware-endpoint": "^3.0.0",
|
58081
|
-
"@smithy/middleware-retry": "^3.0.
|
58106
|
+
"@smithy/middleware-retry": "^3.0.1",
|
58082
58107
|
"@smithy/middleware-serde": "^3.0.0",
|
58083
58108
|
"@smithy/middleware-stack": "^3.0.0",
|
58084
58109
|
"@smithy/node-config-provider": "^3.0.0",
|
58085
58110
|
"@smithy/node-http-handler": "^3.0.0",
|
58086
58111
|
"@smithy/protocol-http": "^4.0.0",
|
58087
|
-
"@smithy/smithy-client": "^3.0.
|
58112
|
+
"@smithy/smithy-client": "^3.0.1",
|
58088
58113
|
"@smithy/types": "^3.0.0",
|
58089
58114
|
"@smithy/url-parser": "^3.0.0",
|
58090
58115
|
"@smithy/util-base64": "^3.0.0",
|
58091
58116
|
"@smithy/util-body-length-browser": "^3.0.0",
|
58092
58117
|
"@smithy/util-body-length-node": "^3.0.0",
|
58093
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
58094
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
58118
|
+
"@smithy/util-defaults-mode-browser": "^3.0.1",
|
58119
|
+
"@smithy/util-defaults-mode-node": "^3.0.1",
|
58095
58120
|
"@smithy/util-endpoints": "^2.0.0",
|
58096
58121
|
"@smithy/util-middleware": "^3.0.0",
|
58097
58122
|
"@smithy/util-retry": "^3.0.0",
|
@@ -58236,7 +58261,7 @@ var require_dist_cjs39 = __commonJS({
|
|
58236
58261
|
providerConfigFromInit: () => providerConfigFromInit
|
58237
58262
|
});
|
58238
58263
|
module2.exports = __toCommonJS2(src_exports2);
|
58239
|
-
var
|
58264
|
+
var import_url8 = require("url");
|
58240
58265
|
var import_property_provider = require_dist_cjs12();
|
58241
58266
|
var import_buffer2 = require("buffer");
|
58242
58267
|
var import_http3 = require("http");
|
@@ -58343,7 +58368,7 @@ var require_dist_cjs39 = __commonJS({
|
|
58343
58368
|
};
|
58344
58369
|
}
|
58345
58370
|
if (process.env[ENV_CMDS_FULL_URI]) {
|
58346
|
-
const parsed = (0,
|
58371
|
+
const parsed = (0, import_url8.parse)(process.env[ENV_CMDS_FULL_URI]);
|
58347
58372
|
if (!parsed.hostname || !(parsed.hostname in GREENGRASS_HOSTS)) {
|
58348
58373
|
throw new import_property_provider.CredentialsProviderError(
|
58349
58374
|
`${parsed.hostname} is not a valid container metadata service hostname`,
|
@@ -58588,9 +58613,9 @@ For more information, please visit: ` + STATIC_STABILITY_DOC_URL
|
|
58588
58613
|
}
|
58589
58614
|
});
|
58590
58615
|
|
58591
|
-
// node_modules/.pnpm/@aws-sdk+credential-provider-http@3.
|
58616
|
+
// node_modules/.pnpm/@aws-sdk+credential-provider-http@3.582.0/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/checkUrl.js
|
58592
58617
|
var require_checkUrl = __commonJS({
|
58593
|
-
"node_modules/.pnpm/@aws-sdk+credential-provider-http@3.
|
58618
|
+
"node_modules/.pnpm/@aws-sdk+credential-provider-http@3.582.0/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/checkUrl.js"(exports2) {
|
58594
58619
|
"use strict";
|
58595
58620
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
58596
58621
|
exports2.checkUrl = void 0;
|
@@ -58631,9 +58656,9 @@ var require_checkUrl = __commonJS({
|
|
58631
58656
|
}
|
58632
58657
|
});
|
58633
58658
|
|
58634
|
-
// node_modules/.pnpm/@aws-sdk+credential-provider-http@3.
|
58659
|
+
// node_modules/.pnpm/@aws-sdk+credential-provider-http@3.582.0/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/requestHelpers.js
|
58635
58660
|
var require_requestHelpers = __commonJS({
|
58636
|
-
"node_modules/.pnpm/@aws-sdk+credential-provider-http@3.
|
58661
|
+
"node_modules/.pnpm/@aws-sdk+credential-provider-http@3.582.0/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/requestHelpers.js"(exports2) {
|
58637
58662
|
"use strict";
|
58638
58663
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
58639
58664
|
exports2.getCredentials = exports2.createGetRequest = void 0;
|
@@ -58691,9 +58716,9 @@ var require_requestHelpers = __commonJS({
|
|
58691
58716
|
}
|
58692
58717
|
});
|
58693
58718
|
|
58694
|
-
// node_modules/.pnpm/@aws-sdk+credential-provider-http@3.
|
58719
|
+
// node_modules/.pnpm/@aws-sdk+credential-provider-http@3.582.0/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/retry-wrapper.js
|
58695
58720
|
var require_retry_wrapper = __commonJS({
|
58696
|
-
"node_modules/.pnpm/@aws-sdk+credential-provider-http@3.
|
58721
|
+
"node_modules/.pnpm/@aws-sdk+credential-provider-http@3.582.0/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/retry-wrapper.js"(exports2) {
|
58697
58722
|
"use strict";
|
58698
58723
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
58699
58724
|
exports2.retryWrapper = void 0;
|
@@ -58713,9 +58738,9 @@ var require_retry_wrapper = __commonJS({
|
|
58713
58738
|
}
|
58714
58739
|
});
|
58715
58740
|
|
58716
|
-
// node_modules/.pnpm/@aws-sdk+credential-provider-http@3.
|
58741
|
+
// node_modules/.pnpm/@aws-sdk+credential-provider-http@3.582.0/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.js
|
58717
58742
|
var require_fromHttp = __commonJS({
|
58718
|
-
"node_modules/.pnpm/@aws-sdk+credential-provider-http@3.
|
58743
|
+
"node_modules/.pnpm/@aws-sdk+credential-provider-http@3.582.0/node_modules/@aws-sdk/credential-provider-http/dist-cjs/fromHttp/fromHttp.js"(exports2) {
|
58719
58744
|
"use strict";
|
58720
58745
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
58721
58746
|
exports2.fromHttp = void 0;
|
@@ -58780,9 +58805,9 @@ Set AWS_CONTAINER_CREDENTIALS_FULL_URI or AWS_CONTAINER_CREDENTIALS_RELATIVE_URI
|
|
58780
58805
|
}
|
58781
58806
|
});
|
58782
58807
|
|
58783
|
-
// node_modules/.pnpm/@aws-sdk+credential-provider-http@3.
|
58808
|
+
// node_modules/.pnpm/@aws-sdk+credential-provider-http@3.582.0/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.js
|
58784
58809
|
var require_dist_cjs40 = __commonJS({
|
58785
|
-
"node_modules/.pnpm/@aws-sdk+credential-provider-http@3.
|
58810
|
+
"node_modules/.pnpm/@aws-sdk+credential-provider-http@3.582.0/node_modules/@aws-sdk/credential-provider-http/dist-cjs/index.js"(exports2) {
|
58786
58811
|
"use strict";
|
58787
58812
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
58788
58813
|
exports2.fromHttp = void 0;
|
@@ -58793,9 +58818,9 @@ var require_dist_cjs40 = __commonJS({
|
|
58793
58818
|
}
|
58794
58819
|
});
|
58795
58820
|
|
58796
|
-
// node_modules/.pnpm/@aws-sdk+client-sso@3.
|
58821
|
+
// node_modules/.pnpm/@aws-sdk+client-sso@3.582.0/node_modules/@aws-sdk/client-sso/dist-cjs/auth/httpAuthSchemeProvider.js
|
58797
58822
|
var require_httpAuthSchemeProvider2 = __commonJS({
|
58798
|
-
"node_modules/.pnpm/@aws-sdk+client-sso@3.
|
58823
|
+
"node_modules/.pnpm/@aws-sdk+client-sso@3.582.0/node_modules/@aws-sdk/client-sso/dist-cjs/auth/httpAuthSchemeProvider.js"(exports2) {
|
58799
58824
|
"use strict";
|
58800
58825
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
58801
58826
|
exports2.resolveHttpAuthSchemeConfig = exports2.defaultSSOHttpAuthSchemeProvider = exports2.defaultSSOHttpAuthSchemeParametersProvider = void 0;
|
@@ -58866,13 +58891,13 @@ var require_httpAuthSchemeProvider2 = __commonJS({
|
|
58866
58891
|
}
|
58867
58892
|
});
|
58868
58893
|
|
58869
|
-
// node_modules/.pnpm/@aws-sdk+client-sso@3.
|
58894
|
+
// node_modules/.pnpm/@aws-sdk+client-sso@3.582.0/node_modules/@aws-sdk/client-sso/package.json
|
58870
58895
|
var require_package3 = __commonJS({
|
58871
|
-
"node_modules/.pnpm/@aws-sdk+client-sso@3.
|
58896
|
+
"node_modules/.pnpm/@aws-sdk+client-sso@3.582.0/node_modules/@aws-sdk/client-sso/package.json"(exports2, module2) {
|
58872
58897
|
module2.exports = {
|
58873
58898
|
name: "@aws-sdk/client-sso",
|
58874
58899
|
description: "AWS SDK for JavaScript Sso Client for Node.js, Browser and React Native",
|
58875
|
-
version: "3.
|
58900
|
+
version: "3.582.0",
|
58876
58901
|
scripts: {
|
58877
58902
|
build: "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
58878
58903
|
"build:cjs": "node ../../scripts/compilation/inline client-sso",
|
@@ -58891,7 +58916,7 @@ var require_package3 = __commonJS({
|
|
58891
58916
|
dependencies: {
|
58892
58917
|
"@aws-crypto/sha256-browser": "3.0.0",
|
58893
58918
|
"@aws-crypto/sha256-js": "3.0.0",
|
58894
|
-
"@aws-sdk/core": "3.
|
58919
|
+
"@aws-sdk/core": "3.582.0",
|
58895
58920
|
"@aws-sdk/middleware-host-header": "3.577.0",
|
58896
58921
|
"@aws-sdk/middleware-logger": "3.577.0",
|
58897
58922
|
"@aws-sdk/middleware-recursion-detection": "3.577.0",
|
@@ -58902,26 +58927,26 @@ var require_package3 = __commonJS({
|
|
58902
58927
|
"@aws-sdk/util-user-agent-browser": "3.577.0",
|
58903
58928
|
"@aws-sdk/util-user-agent-node": "3.577.0",
|
58904
58929
|
"@smithy/config-resolver": "^3.0.0",
|
58905
|
-
"@smithy/core": "^2.0.
|
58906
|
-
"@smithy/fetch-http-handler": "^3.0.
|
58930
|
+
"@smithy/core": "^2.0.1",
|
58931
|
+
"@smithy/fetch-http-handler": "^3.0.1",
|
58907
58932
|
"@smithy/hash-node": "^3.0.0",
|
58908
58933
|
"@smithy/invalid-dependency": "^3.0.0",
|
58909
58934
|
"@smithy/middleware-content-length": "^3.0.0",
|
58910
58935
|
"@smithy/middleware-endpoint": "^3.0.0",
|
58911
|
-
"@smithy/middleware-retry": "^3.0.
|
58936
|
+
"@smithy/middleware-retry": "^3.0.1",
|
58912
58937
|
"@smithy/middleware-serde": "^3.0.0",
|
58913
58938
|
"@smithy/middleware-stack": "^3.0.0",
|
58914
58939
|
"@smithy/node-config-provider": "^3.0.0",
|
58915
58940
|
"@smithy/node-http-handler": "^3.0.0",
|
58916
58941
|
"@smithy/protocol-http": "^4.0.0",
|
58917
|
-
"@smithy/smithy-client": "^3.0.
|
58942
|
+
"@smithy/smithy-client": "^3.0.1",
|
58918
58943
|
"@smithy/types": "^3.0.0",
|
58919
58944
|
"@smithy/url-parser": "^3.0.0",
|
58920
58945
|
"@smithy/util-base64": "^3.0.0",
|
58921
58946
|
"@smithy/util-body-length-browser": "^3.0.0",
|
58922
58947
|
"@smithy/util-body-length-node": "^3.0.0",
|
58923
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
58924
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
58948
|
+
"@smithy/util-defaults-mode-browser": "^3.0.1",
|
58949
|
+
"@smithy/util-defaults-mode-node": "^3.0.1",
|
58925
58950
|
"@smithy/util-endpoints": "^2.0.0",
|
58926
58951
|
"@smithy/util-middleware": "^3.0.0",
|
58927
58952
|
"@smithy/util-retry": "^3.0.0",
|
@@ -59167,9 +59192,9 @@ var require_dist_cjs43 = __commonJS({
|
|
59167
59192
|
}
|
59168
59193
|
});
|
59169
59194
|
|
59170
|
-
// node_modules/.pnpm/@aws-sdk+client-sso@3.
|
59195
|
+
// node_modules/.pnpm/@aws-sdk+client-sso@3.582.0/node_modules/@aws-sdk/client-sso/dist-cjs/endpoint/ruleset.js
|
59171
59196
|
var require_ruleset = __commonJS({
|
59172
|
-
"node_modules/.pnpm/@aws-sdk+client-sso@3.
|
59197
|
+
"node_modules/.pnpm/@aws-sdk+client-sso@3.582.0/node_modules/@aws-sdk/client-sso/dist-cjs/endpoint/ruleset.js"(exports2) {
|
59173
59198
|
"use strict";
|
59174
59199
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
59175
59200
|
exports2.ruleSet = void 0;
|
@@ -59202,9 +59227,9 @@ var require_ruleset = __commonJS({
|
|
59202
59227
|
}
|
59203
59228
|
});
|
59204
59229
|
|
59205
|
-
// node_modules/.pnpm/@aws-sdk+client-sso@3.
|
59230
|
+
// node_modules/.pnpm/@aws-sdk+client-sso@3.582.0/node_modules/@aws-sdk/client-sso/dist-cjs/endpoint/endpointResolver.js
|
59206
59231
|
var require_endpointResolver = __commonJS({
|
59207
|
-
"node_modules/.pnpm/@aws-sdk+client-sso@3.
|
59232
|
+
"node_modules/.pnpm/@aws-sdk+client-sso@3.582.0/node_modules/@aws-sdk/client-sso/dist-cjs/endpoint/endpointResolver.js"(exports2) {
|
59208
59233
|
"use strict";
|
59209
59234
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
59210
59235
|
exports2.defaultEndpointResolver = void 0;
|
@@ -59222,9 +59247,9 @@ var require_endpointResolver = __commonJS({
|
|
59222
59247
|
}
|
59223
59248
|
});
|
59224
59249
|
|
59225
|
-
// node_modules/.pnpm/@aws-sdk+client-sso@3.
|
59250
|
+
// node_modules/.pnpm/@aws-sdk+client-sso@3.582.0/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.shared.js
|
59226
59251
|
var require_runtimeConfig_shared = __commonJS({
|
59227
|
-
"node_modules/.pnpm/@aws-sdk+client-sso@3.
|
59252
|
+
"node_modules/.pnpm/@aws-sdk+client-sso@3.582.0/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.shared.js"(exports2) {
|
59228
59253
|
"use strict";
|
59229
59254
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
59230
59255
|
exports2.getRuntimeConfig = void 0;
|
@@ -59377,9 +59402,9 @@ var require_dist_cjs44 = __commonJS({
|
|
59377
59402
|
}
|
59378
59403
|
});
|
59379
59404
|
|
59380
|
-
// node_modules/.pnpm/@aws-sdk+client-sso@3.
|
59405
|
+
// node_modules/.pnpm/@aws-sdk+client-sso@3.582.0/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.js
|
59381
59406
|
var require_runtimeConfig = __commonJS({
|
59382
|
-
"node_modules/.pnpm/@aws-sdk+client-sso@3.
|
59407
|
+
"node_modules/.pnpm/@aws-sdk+client-sso@3.582.0/node_modules/@aws-sdk/client-sso/dist-cjs/runtimeConfig.js"(exports2) {
|
59383
59408
|
"use strict";
|
59384
59409
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
59385
59410
|
exports2.getRuntimeConfig = void 0;
|
@@ -59526,9 +59551,9 @@ var require_dist_cjs45 = __commonJS({
|
|
59526
59551
|
}
|
59527
59552
|
});
|
59528
59553
|
|
59529
|
-
// node_modules/.pnpm/@aws-sdk+client-sso@3.
|
59554
|
+
// node_modules/.pnpm/@aws-sdk+client-sso@3.582.0/node_modules/@aws-sdk/client-sso/dist-cjs/index.js
|
59530
59555
|
var require_dist_cjs46 = __commonJS({
|
59531
|
-
"node_modules/.pnpm/@aws-sdk+client-sso@3.
|
59556
|
+
"node_modules/.pnpm/@aws-sdk+client-sso@3.582.0/node_modules/@aws-sdk/client-sso/dist-cjs/index.js"(exports2, module2) {
|
59532
59557
|
"use strict";
|
59533
59558
|
var __defProp2 = Object.defineProperty;
|
59534
59559
|
var __getOwnPropDesc2 = Object.getOwnPropertyDescriptor;
|
@@ -60072,9 +60097,9 @@ var require_dist_cjs46 = __commonJS({
|
|
60072
60097
|
}
|
60073
60098
|
});
|
60074
60099
|
|
60075
|
-
// node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.
|
60100
|
+
// node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.582.0_@aws-sdk+client-sts@3.582.0/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/auth/httpAuthSchemeProvider.js
|
60076
60101
|
var require_httpAuthSchemeProvider3 = __commonJS({
|
60077
|
-
"node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.
|
60102
|
+
"node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.582.0_@aws-sdk+client-sts@3.582.0/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/auth/httpAuthSchemeProvider.js"(exports2) {
|
60078
60103
|
"use strict";
|
60079
60104
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
60080
60105
|
exports2.resolveHttpAuthSchemeConfig = exports2.defaultSSOOIDCHttpAuthSchemeProvider = exports2.defaultSSOOIDCHttpAuthSchemeParametersProvider = void 0;
|
@@ -60141,13 +60166,13 @@ var require_httpAuthSchemeProvider3 = __commonJS({
|
|
60141
60166
|
}
|
60142
60167
|
});
|
60143
60168
|
|
60144
|
-
// node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.
|
60169
|
+
// node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.582.0_@aws-sdk+client-sts@3.582.0/node_modules/@aws-sdk/client-sso-oidc/package.json
|
60145
60170
|
var require_package4 = __commonJS({
|
60146
|
-
"node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.
|
60171
|
+
"node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.582.0_@aws-sdk+client-sts@3.582.0/node_modules/@aws-sdk/client-sso-oidc/package.json"(exports2, module2) {
|
60147
60172
|
module2.exports = {
|
60148
60173
|
name: "@aws-sdk/client-sso-oidc",
|
60149
60174
|
description: "AWS SDK for JavaScript Sso Oidc Client for Node.js, Browser and React Native",
|
60150
|
-
version: "3.
|
60175
|
+
version: "3.582.0",
|
60151
60176
|
scripts: {
|
60152
60177
|
build: "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
60153
60178
|
"build:cjs": "node ../../scripts/compilation/inline client-sso-oidc",
|
@@ -60166,9 +60191,9 @@ var require_package4 = __commonJS({
|
|
60166
60191
|
dependencies: {
|
60167
60192
|
"@aws-crypto/sha256-browser": "3.0.0",
|
60168
60193
|
"@aws-crypto/sha256-js": "3.0.0",
|
60169
|
-
"@aws-sdk/client-sts": "3.
|
60170
|
-
"@aws-sdk/core": "3.
|
60171
|
-
"@aws-sdk/credential-provider-node": "3.
|
60194
|
+
"@aws-sdk/client-sts": "3.582.0",
|
60195
|
+
"@aws-sdk/core": "3.582.0",
|
60196
|
+
"@aws-sdk/credential-provider-node": "3.582.0",
|
60172
60197
|
"@aws-sdk/middleware-host-header": "3.577.0",
|
60173
60198
|
"@aws-sdk/middleware-logger": "3.577.0",
|
60174
60199
|
"@aws-sdk/middleware-recursion-detection": "3.577.0",
|
@@ -60179,26 +60204,26 @@ var require_package4 = __commonJS({
|
|
60179
60204
|
"@aws-sdk/util-user-agent-browser": "3.577.0",
|
60180
60205
|
"@aws-sdk/util-user-agent-node": "3.577.0",
|
60181
60206
|
"@smithy/config-resolver": "^3.0.0",
|
60182
|
-
"@smithy/core": "^2.0.
|
60183
|
-
"@smithy/fetch-http-handler": "^3.0.
|
60207
|
+
"@smithy/core": "^2.0.1",
|
60208
|
+
"@smithy/fetch-http-handler": "^3.0.1",
|
60184
60209
|
"@smithy/hash-node": "^3.0.0",
|
60185
60210
|
"@smithy/invalid-dependency": "^3.0.0",
|
60186
60211
|
"@smithy/middleware-content-length": "^3.0.0",
|
60187
60212
|
"@smithy/middleware-endpoint": "^3.0.0",
|
60188
|
-
"@smithy/middleware-retry": "^3.0.
|
60213
|
+
"@smithy/middleware-retry": "^3.0.1",
|
60189
60214
|
"@smithy/middleware-serde": "^3.0.0",
|
60190
60215
|
"@smithy/middleware-stack": "^3.0.0",
|
60191
60216
|
"@smithy/node-config-provider": "^3.0.0",
|
60192
60217
|
"@smithy/node-http-handler": "^3.0.0",
|
60193
60218
|
"@smithy/protocol-http": "^4.0.0",
|
60194
|
-
"@smithy/smithy-client": "^3.0.
|
60219
|
+
"@smithy/smithy-client": "^3.0.1",
|
60195
60220
|
"@smithy/types": "^3.0.0",
|
60196
60221
|
"@smithy/url-parser": "^3.0.0",
|
60197
60222
|
"@smithy/util-base64": "^3.0.0",
|
60198
60223
|
"@smithy/util-body-length-browser": "^3.0.0",
|
60199
60224
|
"@smithy/util-body-length-node": "^3.0.0",
|
60200
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
60201
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
60225
|
+
"@smithy/util-defaults-mode-browser": "^3.0.1",
|
60226
|
+
"@smithy/util-defaults-mode-node": "^3.0.1",
|
60202
60227
|
"@smithy/util-endpoints": "^2.0.0",
|
60203
60228
|
"@smithy/util-middleware": "^3.0.0",
|
60204
60229
|
"@smithy/util-retry": "^3.0.0",
|
@@ -60247,9 +60272,9 @@ var require_package4 = __commonJS({
|
|
60247
60272
|
}
|
60248
60273
|
});
|
60249
60274
|
|
60250
|
-
// node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.
|
60275
|
+
// node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.582.0_@aws-sdk+client-sts@3.582.0/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/endpoint/ruleset.js
|
60251
60276
|
var require_ruleset2 = __commonJS({
|
60252
|
-
"node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.
|
60277
|
+
"node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.582.0_@aws-sdk+client-sts@3.582.0/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/endpoint/ruleset.js"(exports2) {
|
60253
60278
|
"use strict";
|
60254
60279
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
60255
60280
|
exports2.ruleSet = void 0;
|
@@ -60282,9 +60307,9 @@ var require_ruleset2 = __commonJS({
|
|
60282
60307
|
}
|
60283
60308
|
});
|
60284
60309
|
|
60285
|
-
// node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.
|
60310
|
+
// node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.582.0_@aws-sdk+client-sts@3.582.0/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/endpoint/endpointResolver.js
|
60286
60311
|
var require_endpointResolver2 = __commonJS({
|
60287
|
-
"node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.
|
60312
|
+
"node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.582.0_@aws-sdk+client-sts@3.582.0/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/endpoint/endpointResolver.js"(exports2) {
|
60288
60313
|
"use strict";
|
60289
60314
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
60290
60315
|
exports2.defaultEndpointResolver = void 0;
|
@@ -60302,9 +60327,9 @@ var require_endpointResolver2 = __commonJS({
|
|
60302
60327
|
}
|
60303
60328
|
});
|
60304
60329
|
|
60305
|
-
// node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.
|
60330
|
+
// node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.582.0_@aws-sdk+client-sts@3.582.0/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/runtimeConfig.shared.js
|
60306
60331
|
var require_runtimeConfig_shared2 = __commonJS({
|
60307
|
-
"node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.
|
60332
|
+
"node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.582.0_@aws-sdk+client-sts@3.582.0/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/runtimeConfig.shared.js"(exports2) {
|
60308
60333
|
"use strict";
|
60309
60334
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
60310
60335
|
exports2.getRuntimeConfig = void 0;
|
@@ -60348,9 +60373,9 @@ var require_runtimeConfig_shared2 = __commonJS({
|
|
60348
60373
|
}
|
60349
60374
|
});
|
60350
60375
|
|
60351
|
-
// node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.
|
60376
|
+
// node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.582.0_@aws-sdk+client-sts@3.582.0/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/runtimeConfig.js
|
60352
60377
|
var require_runtimeConfig2 = __commonJS({
|
60353
|
-
"node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.
|
60378
|
+
"node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.582.0_@aws-sdk+client-sts@3.582.0/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/runtimeConfig.js"(exports2) {
|
60354
60379
|
"use strict";
|
60355
60380
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
60356
60381
|
exports2.getRuntimeConfig = void 0;
|
@@ -60401,9 +60426,9 @@ var require_runtimeConfig2 = __commonJS({
|
|
60401
60426
|
}
|
60402
60427
|
});
|
60403
60428
|
|
60404
|
-
// node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.
|
60429
|
+
// node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.582.0_@aws-sdk+client-sts@3.582.0/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/index.js
|
60405
60430
|
var require_dist_cjs47 = __commonJS({
|
60406
|
-
"node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.
|
60431
|
+
"node_modules/.pnpm/@aws-sdk+client-sso-oidc@3.582.0_@aws-sdk+client-sts@3.582.0/node_modules/@aws-sdk/client-sso-oidc/dist-cjs/index.js"(exports2, module2) {
|
60407
60432
|
"use strict";
|
60408
60433
|
var __defProp2 = Object.defineProperty;
|
60409
60434
|
var __getOwnPropDesc2 = Object.getOwnPropertyDescriptor;
|
@@ -61385,9 +61410,9 @@ var require_dist_cjs47 = __commonJS({
|
|
61385
61410
|
}
|
61386
61411
|
});
|
61387
61412
|
|
61388
|
-
// node_modules/.pnpm/@aws-sdk+token-providers@3.577.0_@aws-sdk+client-sso-oidc@3.
|
61413
|
+
// node_modules/.pnpm/@aws-sdk+token-providers@3.577.0_@aws-sdk+client-sso-oidc@3.582.0/node_modules/@aws-sdk/token-providers/dist-cjs/index.js
|
61389
61414
|
var require_dist_cjs48 = __commonJS({
|
61390
|
-
"node_modules/.pnpm/@aws-sdk+token-providers@3.577.0_@aws-sdk+client-sso-oidc@3.
|
61415
|
+
"node_modules/.pnpm/@aws-sdk+token-providers@3.577.0_@aws-sdk+client-sso-oidc@3.582.0/node_modules/@aws-sdk/token-providers/dist-cjs/index.js"(exports2, module2) {
|
61391
61416
|
"use strict";
|
61392
61417
|
var __create2 = Object.create;
|
61393
61418
|
var __defProp2 = Object.defineProperty;
|
@@ -61565,9 +61590,9 @@ var require_dist_cjs48 = __commonJS({
|
|
61565
61590
|
}
|
61566
61591
|
});
|
61567
61592
|
|
61568
|
-
// node_modules/.pnpm/@aws-sdk+credential-provider-sso@3.
|
61593
|
+
// node_modules/.pnpm/@aws-sdk+credential-provider-sso@3.582.0_@aws-sdk+client-sso-oidc@3.582.0/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/index.js
|
61569
61594
|
var require_dist_cjs49 = __commonJS({
|
61570
|
-
"node_modules/.pnpm/@aws-sdk+credential-provider-sso@3.
|
61595
|
+
"node_modules/.pnpm/@aws-sdk+credential-provider-sso@3.582.0_@aws-sdk+client-sso-oidc@3.582.0/node_modules/@aws-sdk/credential-provider-sso/dist-cjs/index.js"(exports2, module2) {
|
61571
61596
|
"use strict";
|
61572
61597
|
var __defProp2 = Object.defineProperty;
|
61573
61598
|
var __getOwnPropDesc2 = Object.getOwnPropertyDescriptor;
|
@@ -61749,9 +61774,9 @@ Reference: https://docs.aws.amazon.com/cli/latest/userguide/cli-configure-sso.ht
|
|
61749
61774
|
}
|
61750
61775
|
});
|
61751
61776
|
|
61752
|
-
// node_modules/.pnpm/@aws-sdk+client-sts@3.
|
61777
|
+
// node_modules/.pnpm/@aws-sdk+client-sts@3.582.0/node_modules/@aws-sdk/client-sts/dist-cjs/auth/httpAuthSchemeProvider.js
|
61753
61778
|
var require_httpAuthSchemeProvider4 = __commonJS({
|
61754
|
-
"node_modules/.pnpm/@aws-sdk+client-sts@3.
|
61779
|
+
"node_modules/.pnpm/@aws-sdk+client-sts@3.582.0/node_modules/@aws-sdk/client-sts/dist-cjs/auth/httpAuthSchemeProvider.js"(exports2) {
|
61755
61780
|
"use strict";
|
61756
61781
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
61757
61782
|
exports2.resolveHttpAuthSchemeConfig = exports2.resolveStsAuthConfig = exports2.defaultSTSHttpAuthSchemeProvider = exports2.defaultSTSHttpAuthSchemeParametersProvider = void 0;
|
@@ -61821,9 +61846,9 @@ var require_httpAuthSchemeProvider4 = __commonJS({
|
|
61821
61846
|
}
|
61822
61847
|
});
|
61823
61848
|
|
61824
|
-
// node_modules/.pnpm/@aws-sdk+client-sts@3.
|
61849
|
+
// node_modules/.pnpm/@aws-sdk+client-sts@3.582.0/node_modules/@aws-sdk/client-sts/dist-cjs/endpoint/EndpointParameters.js
|
61825
61850
|
var require_EndpointParameters = __commonJS({
|
61826
|
-
"node_modules/.pnpm/@aws-sdk+client-sts@3.
|
61851
|
+
"node_modules/.pnpm/@aws-sdk+client-sts@3.582.0/node_modules/@aws-sdk/client-sts/dist-cjs/endpoint/EndpointParameters.js"(exports2) {
|
61827
61852
|
"use strict";
|
61828
61853
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
61829
61854
|
exports2.commonParams = exports2.resolveClientEndpointParameters = void 0;
|
@@ -61847,13 +61872,13 @@ var require_EndpointParameters = __commonJS({
|
|
61847
61872
|
}
|
61848
61873
|
});
|
61849
61874
|
|
61850
|
-
// node_modules/.pnpm/@aws-sdk+client-sts@3.
|
61875
|
+
// node_modules/.pnpm/@aws-sdk+client-sts@3.582.0/node_modules/@aws-sdk/client-sts/package.json
|
61851
61876
|
var require_package5 = __commonJS({
|
61852
|
-
"node_modules/.pnpm/@aws-sdk+client-sts@3.
|
61877
|
+
"node_modules/.pnpm/@aws-sdk+client-sts@3.582.0/node_modules/@aws-sdk/client-sts/package.json"(exports2, module2) {
|
61853
61878
|
module2.exports = {
|
61854
61879
|
name: "@aws-sdk/client-sts",
|
61855
61880
|
description: "AWS SDK for JavaScript Sts Client for Node.js, Browser and React Native",
|
61856
|
-
version: "3.
|
61881
|
+
version: "3.582.0",
|
61857
61882
|
scripts: {
|
61858
61883
|
build: "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
61859
61884
|
"build:cjs": "node ../../scripts/compilation/inline client-sts",
|
@@ -61874,9 +61899,9 @@ var require_package5 = __commonJS({
|
|
61874
61899
|
dependencies: {
|
61875
61900
|
"@aws-crypto/sha256-browser": "3.0.0",
|
61876
61901
|
"@aws-crypto/sha256-js": "3.0.0",
|
61877
|
-
"@aws-sdk/client-sso-oidc": "3.
|
61878
|
-
"@aws-sdk/core": "3.
|
61879
|
-
"@aws-sdk/credential-provider-node": "3.
|
61902
|
+
"@aws-sdk/client-sso-oidc": "3.582.0",
|
61903
|
+
"@aws-sdk/core": "3.582.0",
|
61904
|
+
"@aws-sdk/credential-provider-node": "3.582.0",
|
61880
61905
|
"@aws-sdk/middleware-host-header": "3.577.0",
|
61881
61906
|
"@aws-sdk/middleware-logger": "3.577.0",
|
61882
61907
|
"@aws-sdk/middleware-recursion-detection": "3.577.0",
|
@@ -61887,26 +61912,26 @@ var require_package5 = __commonJS({
|
|
61887
61912
|
"@aws-sdk/util-user-agent-browser": "3.577.0",
|
61888
61913
|
"@aws-sdk/util-user-agent-node": "3.577.0",
|
61889
61914
|
"@smithy/config-resolver": "^3.0.0",
|
61890
|
-
"@smithy/core": "^2.0.
|
61891
|
-
"@smithy/fetch-http-handler": "^3.0.
|
61915
|
+
"@smithy/core": "^2.0.1",
|
61916
|
+
"@smithy/fetch-http-handler": "^3.0.1",
|
61892
61917
|
"@smithy/hash-node": "^3.0.0",
|
61893
61918
|
"@smithy/invalid-dependency": "^3.0.0",
|
61894
61919
|
"@smithy/middleware-content-length": "^3.0.0",
|
61895
61920
|
"@smithy/middleware-endpoint": "^3.0.0",
|
61896
|
-
"@smithy/middleware-retry": "^3.0.
|
61921
|
+
"@smithy/middleware-retry": "^3.0.1",
|
61897
61922
|
"@smithy/middleware-serde": "^3.0.0",
|
61898
61923
|
"@smithy/middleware-stack": "^3.0.0",
|
61899
61924
|
"@smithy/node-config-provider": "^3.0.0",
|
61900
61925
|
"@smithy/node-http-handler": "^3.0.0",
|
61901
61926
|
"@smithy/protocol-http": "^4.0.0",
|
61902
|
-
"@smithy/smithy-client": "^3.0.
|
61927
|
+
"@smithy/smithy-client": "^3.0.1",
|
61903
61928
|
"@smithy/types": "^3.0.0",
|
61904
61929
|
"@smithy/url-parser": "^3.0.0",
|
61905
61930
|
"@smithy/util-base64": "^3.0.0",
|
61906
61931
|
"@smithy/util-body-length-browser": "^3.0.0",
|
61907
61932
|
"@smithy/util-body-length-node": "^3.0.0",
|
61908
|
-
"@smithy/util-defaults-mode-browser": "^3.0.
|
61909
|
-
"@smithy/util-defaults-mode-node": "^3.0.
|
61933
|
+
"@smithy/util-defaults-mode-browser": "^3.0.1",
|
61934
|
+
"@smithy/util-defaults-mode-node": "^3.0.1",
|
61910
61935
|
"@smithy/util-endpoints": "^2.0.0",
|
61911
61936
|
"@smithy/util-middleware": "^3.0.0",
|
61912
61937
|
"@smithy/util-retry": "^3.0.0",
|
@@ -61955,9 +61980,9 @@ var require_package5 = __commonJS({
|
|
61955
61980
|
}
|
61956
61981
|
});
|
61957
61982
|
|
61958
|
-
// node_modules/.pnpm/@aws-sdk+client-sts@3.
|
61983
|
+
// node_modules/.pnpm/@aws-sdk+client-sts@3.582.0/node_modules/@aws-sdk/client-sts/dist-cjs/endpoint/ruleset.js
|
61959
61984
|
var require_ruleset3 = __commonJS({
|
61960
|
-
"node_modules/.pnpm/@aws-sdk+client-sts@3.
|
61985
|
+
"node_modules/.pnpm/@aws-sdk+client-sts@3.582.0/node_modules/@aws-sdk/client-sts/dist-cjs/endpoint/ruleset.js"(exports2) {
|
61961
61986
|
"use strict";
|
61962
61987
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
61963
61988
|
exports2.ruleSet = void 0;
|
@@ -62002,9 +62027,9 @@ var require_ruleset3 = __commonJS({
|
|
62002
62027
|
}
|
62003
62028
|
});
|
62004
62029
|
|
62005
|
-
// node_modules/.pnpm/@aws-sdk+client-sts@3.
|
62030
|
+
// node_modules/.pnpm/@aws-sdk+client-sts@3.582.0/node_modules/@aws-sdk/client-sts/dist-cjs/endpoint/endpointResolver.js
|
62006
62031
|
var require_endpointResolver3 = __commonJS({
|
62007
|
-
"node_modules/.pnpm/@aws-sdk+client-sts@3.
|
62032
|
+
"node_modules/.pnpm/@aws-sdk+client-sts@3.582.0/node_modules/@aws-sdk/client-sts/dist-cjs/endpoint/endpointResolver.js"(exports2) {
|
62008
62033
|
"use strict";
|
62009
62034
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
62010
62035
|
exports2.defaultEndpointResolver = void 0;
|
@@ -62022,9 +62047,9 @@ var require_endpointResolver3 = __commonJS({
|
|
62022
62047
|
}
|
62023
62048
|
});
|
62024
62049
|
|
62025
|
-
// node_modules/.pnpm/@aws-sdk+client-sts@3.
|
62050
|
+
// node_modules/.pnpm/@aws-sdk+client-sts@3.582.0/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.shared.js
|
62026
62051
|
var require_runtimeConfig_shared3 = __commonJS({
|
62027
|
-
"node_modules/.pnpm/@aws-sdk+client-sts@3.
|
62052
|
+
"node_modules/.pnpm/@aws-sdk+client-sts@3.582.0/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.shared.js"(exports2) {
|
62028
62053
|
"use strict";
|
62029
62054
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
62030
62055
|
exports2.getRuntimeConfig = void 0;
|
@@ -62068,9 +62093,9 @@ var require_runtimeConfig_shared3 = __commonJS({
|
|
62068
62093
|
}
|
62069
62094
|
});
|
62070
62095
|
|
62071
|
-
// node_modules/.pnpm/@aws-sdk+client-sts@3.
|
62096
|
+
// node_modules/.pnpm/@aws-sdk+client-sts@3.582.0/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.js
|
62072
62097
|
var require_runtimeConfig3 = __commonJS({
|
62073
|
-
"node_modules/.pnpm/@aws-sdk+client-sts@3.
|
62098
|
+
"node_modules/.pnpm/@aws-sdk+client-sts@3.582.0/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeConfig.js"(exports2) {
|
62074
62099
|
"use strict";
|
62075
62100
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
62076
62101
|
exports2.getRuntimeConfig = void 0;
|
@@ -62134,9 +62159,9 @@ var require_runtimeConfig3 = __commonJS({
|
|
62134
62159
|
}
|
62135
62160
|
});
|
62136
62161
|
|
62137
|
-
// node_modules/.pnpm/@aws-sdk+client-sts@3.
|
62162
|
+
// node_modules/.pnpm/@aws-sdk+client-sts@3.582.0/node_modules/@aws-sdk/client-sts/dist-cjs/auth/httpAuthExtensionConfiguration.js
|
62138
62163
|
var require_httpAuthExtensionConfiguration = __commonJS({
|
62139
|
-
"node_modules/.pnpm/@aws-sdk+client-sts@3.
|
62164
|
+
"node_modules/.pnpm/@aws-sdk+client-sts@3.582.0/node_modules/@aws-sdk/client-sts/dist-cjs/auth/httpAuthExtensionConfiguration.js"(exports2) {
|
62140
62165
|
"use strict";
|
62141
62166
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
62142
62167
|
exports2.resolveHttpAuthRuntimeConfig = exports2.getHttpAuthExtensionConfiguration = void 0;
|
@@ -62182,9 +62207,9 @@ var require_httpAuthExtensionConfiguration = __commonJS({
|
|
62182
62207
|
}
|
62183
62208
|
});
|
62184
62209
|
|
62185
|
-
// node_modules/.pnpm/@aws-sdk+client-sts@3.
|
62210
|
+
// node_modules/.pnpm/@aws-sdk+client-sts@3.582.0/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeExtensions.js
|
62186
62211
|
var require_runtimeExtensions = __commonJS({
|
62187
|
-
"node_modules/.pnpm/@aws-sdk+client-sts@3.
|
62212
|
+
"node_modules/.pnpm/@aws-sdk+client-sts@3.582.0/node_modules/@aws-sdk/client-sts/dist-cjs/runtimeExtensions.js"(exports2) {
|
62188
62213
|
"use strict";
|
62189
62214
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
62190
62215
|
exports2.resolveRuntimeExtensions = void 0;
|
@@ -62213,9 +62238,9 @@ var require_runtimeExtensions = __commonJS({
|
|
62213
62238
|
}
|
62214
62239
|
});
|
62215
62240
|
|
62216
|
-
// node_modules/.pnpm/@aws-sdk+client-sts@3.
|
62241
|
+
// node_modules/.pnpm/@aws-sdk+client-sts@3.582.0/node_modules/@aws-sdk/client-sts/dist-cjs/STSClient.js
|
62217
62242
|
var require_STSClient = __commonJS({
|
62218
|
-
"node_modules/.pnpm/@aws-sdk+client-sts@3.
|
62243
|
+
"node_modules/.pnpm/@aws-sdk+client-sts@3.582.0/node_modules/@aws-sdk/client-sts/dist-cjs/STSClient.js"(exports2) {
|
62219
62244
|
"use strict";
|
62220
62245
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
62221
62246
|
exports2.STSClient = exports2.__Client = void 0;
|
@@ -62277,9 +62302,9 @@ var require_STSClient = __commonJS({
|
|
62277
62302
|
}
|
62278
62303
|
});
|
62279
62304
|
|
62280
|
-
// node_modules/.pnpm/@aws-sdk+client-sts@3.
|
62305
|
+
// node_modules/.pnpm/@aws-sdk+client-sts@3.582.0/node_modules/@aws-sdk/client-sts/dist-cjs/index.js
|
62281
62306
|
var require_dist_cjs50 = __commonJS({
|
62282
|
-
"node_modules/.pnpm/@aws-sdk+client-sts@3.
|
62307
|
+
"node_modules/.pnpm/@aws-sdk+client-sts@3.582.0/node_modules/@aws-sdk/client-sts/dist-cjs/index.js"(exports2, module2) {
|
62283
62308
|
"use strict";
|
62284
62309
|
var __defProp2 = Object.defineProperty;
|
62285
62310
|
var __getOwnPropDesc2 = Object.getOwnPropertyDescriptor;
|
@@ -63720,9 +63745,9 @@ var require_dist_cjs51 = __commonJS({
|
|
63720
63745
|
}
|
63721
63746
|
});
|
63722
63747
|
|
63723
|
-
// node_modules/.pnpm/@aws-sdk+credential-provider-web-identity@3.577.0_@aws-sdk+client-sts@3.
|
63748
|
+
// node_modules/.pnpm/@aws-sdk+credential-provider-web-identity@3.577.0_@aws-sdk+client-sts@3.582.0/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromWebToken.js
|
63724
63749
|
var require_fromWebToken = __commonJS({
|
63725
|
-
"node_modules/.pnpm/@aws-sdk+credential-provider-web-identity@3.577.0_@aws-sdk+client-sts@3.
|
63750
|
+
"node_modules/.pnpm/@aws-sdk+credential-provider-web-identity@3.577.0_@aws-sdk+client-sts@3.582.0/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromWebToken.js"(exports2) {
|
63726
63751
|
"use strict";
|
63727
63752
|
var __createBinding2 = exports2 && exports2.__createBinding || (Object.create ? function(o, m4, k2, k22) {
|
63728
63753
|
if (k22 === void 0)
|
@@ -63785,9 +63810,9 @@ var require_fromWebToken = __commonJS({
|
|
63785
63810
|
}
|
63786
63811
|
});
|
63787
63812
|
|
63788
|
-
// node_modules/.pnpm/@aws-sdk+credential-provider-web-identity@3.577.0_@aws-sdk+client-sts@3.
|
63813
|
+
// node_modules/.pnpm/@aws-sdk+credential-provider-web-identity@3.577.0_@aws-sdk+client-sts@3.582.0/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromTokenFile.js
|
63789
63814
|
var require_fromTokenFile = __commonJS({
|
63790
|
-
"node_modules/.pnpm/@aws-sdk+credential-provider-web-identity@3.577.0_@aws-sdk+client-sts@3.
|
63815
|
+
"node_modules/.pnpm/@aws-sdk+credential-provider-web-identity@3.577.0_@aws-sdk+client-sts@3.582.0/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/fromTokenFile.js"(exports2) {
|
63791
63816
|
"use strict";
|
63792
63817
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
63793
63818
|
exports2.fromTokenFile = void 0;
|
@@ -63817,9 +63842,9 @@ var require_fromTokenFile = __commonJS({
|
|
63817
63842
|
}
|
63818
63843
|
});
|
63819
63844
|
|
63820
|
-
// node_modules/.pnpm/@aws-sdk+credential-provider-web-identity@3.577.0_@aws-sdk+client-sts@3.
|
63845
|
+
// node_modules/.pnpm/@aws-sdk+credential-provider-web-identity@3.577.0_@aws-sdk+client-sts@3.582.0/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/index.js
|
63821
63846
|
var require_dist_cjs52 = __commonJS({
|
63822
|
-
"node_modules/.pnpm/@aws-sdk+credential-provider-web-identity@3.577.0_@aws-sdk+client-sts@3.
|
63847
|
+
"node_modules/.pnpm/@aws-sdk+credential-provider-web-identity@3.577.0_@aws-sdk+client-sts@3.582.0/node_modules/@aws-sdk/credential-provider-web-identity/dist-cjs/index.js"(exports2, module2) {
|
63823
63848
|
"use strict";
|
63824
63849
|
var __defProp2 = Object.defineProperty;
|
63825
63850
|
var __getOwnPropDesc2 = Object.getOwnPropertyDescriptor;
|
@@ -63842,9 +63867,9 @@ var require_dist_cjs52 = __commonJS({
|
|
63842
63867
|
}
|
63843
63868
|
});
|
63844
63869
|
|
63845
|
-
// node_modules/.pnpm/@aws-sdk+credential-provider-ini@3.
|
63870
|
+
// node_modules/.pnpm/@aws-sdk+credential-provider-ini@3.582.0_@aws-sdk+client-sso-oidc@3.582.0_@aws-sdk+client-sts@3.582.0/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/index.js
|
63846
63871
|
var require_dist_cjs53 = __commonJS({
|
63847
|
-
"node_modules/.pnpm/@aws-sdk+credential-provider-ini@3.
|
63872
|
+
"node_modules/.pnpm/@aws-sdk+credential-provider-ini@3.582.0_@aws-sdk+client-sso-oidc@3.582.0_@aws-sdk+client-sts@3.582.0/node_modules/@aws-sdk/credential-provider-ini/dist-cjs/index.js"(exports2, module2) {
|
63848
63873
|
"use strict";
|
63849
63874
|
var __create2 = Object.create;
|
63850
63875
|
var __defProp2 = Object.defineProperty;
|
@@ -64012,9 +64037,9 @@ var require_dist_cjs53 = __commonJS({
|
|
64012
64037
|
}
|
64013
64038
|
});
|
64014
64039
|
|
64015
|
-
// node_modules/.pnpm/@aws-sdk+credential-provider-node@3.
|
64040
|
+
// node_modules/.pnpm/@aws-sdk+credential-provider-node@3.582.0_@aws-sdk+client-sso-oidc@3.582.0_@aws-sdk+client-sts@3.582.0/node_modules/@aws-sdk/credential-provider-node/dist-cjs/index.js
|
64016
64041
|
var require_dist_cjs54 = __commonJS({
|
64017
|
-
"node_modules/.pnpm/@aws-sdk+credential-provider-node@3.
|
64042
|
+
"node_modules/.pnpm/@aws-sdk+credential-provider-node@3.582.0_@aws-sdk+client-sso-oidc@3.582.0_@aws-sdk+client-sts@3.582.0/node_modules/@aws-sdk/credential-provider-node/dist-cjs/index.js"(exports2, module2) {
|
64018
64043
|
"use strict";
|
64019
64044
|
var __create2 = Object.create;
|
64020
64045
|
var __defProp2 = Object.defineProperty;
|
@@ -64127,9 +64152,9 @@ var require_dist_cjs54 = __commonJS({
|
|
64127
64152
|
}
|
64128
64153
|
});
|
64129
64154
|
|
64130
|
-
// node_modules/.pnpm/@aws-sdk+client-rds-data@3.
|
64155
|
+
// node_modules/.pnpm/@aws-sdk+client-rds-data@3.582.0/node_modules/@aws-sdk/client-rds-data/dist-cjs/endpoint/ruleset.js
|
64131
64156
|
var require_ruleset4 = __commonJS({
|
64132
|
-
"node_modules/.pnpm/@aws-sdk+client-rds-data@3.
|
64157
|
+
"node_modules/.pnpm/@aws-sdk+client-rds-data@3.582.0/node_modules/@aws-sdk/client-rds-data/dist-cjs/endpoint/ruleset.js"(exports2) {
|
64133
64158
|
"use strict";
|
64134
64159
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
64135
64160
|
exports2.ruleSet = void 0;
|
@@ -64160,9 +64185,9 @@ var require_ruleset4 = __commonJS({
|
|
64160
64185
|
}
|
64161
64186
|
});
|
64162
64187
|
|
64163
|
-
// node_modules/.pnpm/@aws-sdk+client-rds-data@3.
|
64188
|
+
// node_modules/.pnpm/@aws-sdk+client-rds-data@3.582.0/node_modules/@aws-sdk/client-rds-data/dist-cjs/endpoint/endpointResolver.js
|
64164
64189
|
var require_endpointResolver4 = __commonJS({
|
64165
|
-
"node_modules/.pnpm/@aws-sdk+client-rds-data@3.
|
64190
|
+
"node_modules/.pnpm/@aws-sdk+client-rds-data@3.582.0/node_modules/@aws-sdk/client-rds-data/dist-cjs/endpoint/endpointResolver.js"(exports2) {
|
64166
64191
|
"use strict";
|
64167
64192
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
64168
64193
|
exports2.defaultEndpointResolver = void 0;
|
@@ -64180,9 +64205,9 @@ var require_endpointResolver4 = __commonJS({
|
|
64180
64205
|
}
|
64181
64206
|
});
|
64182
64207
|
|
64183
|
-
// node_modules/.pnpm/@aws-sdk+client-rds-data@3.
|
64208
|
+
// node_modules/.pnpm/@aws-sdk+client-rds-data@3.582.0/node_modules/@aws-sdk/client-rds-data/dist-cjs/runtimeConfig.shared.js
|
64184
64209
|
var require_runtimeConfig_shared4 = __commonJS({
|
64185
|
-
"node_modules/.pnpm/@aws-sdk+client-rds-data@3.
|
64210
|
+
"node_modules/.pnpm/@aws-sdk+client-rds-data@3.582.0/node_modules/@aws-sdk/client-rds-data/dist-cjs/runtimeConfig.shared.js"(exports2) {
|
64186
64211
|
"use strict";
|
64187
64212
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
64188
64213
|
exports2.getRuntimeConfig = void 0;
|
@@ -64220,9 +64245,9 @@ var require_runtimeConfig_shared4 = __commonJS({
|
|
64220
64245
|
}
|
64221
64246
|
});
|
64222
64247
|
|
64223
|
-
// node_modules/.pnpm/@aws-sdk+client-rds-data@3.
|
64248
|
+
// node_modules/.pnpm/@aws-sdk+client-rds-data@3.582.0/node_modules/@aws-sdk/client-rds-data/dist-cjs/runtimeConfig.js
|
64224
64249
|
var require_runtimeConfig4 = __commonJS({
|
64225
|
-
"node_modules/.pnpm/@aws-sdk+client-rds-data@3.
|
64250
|
+
"node_modules/.pnpm/@aws-sdk+client-rds-data@3.582.0/node_modules/@aws-sdk/client-rds-data/dist-cjs/runtimeConfig.js"(exports2) {
|
64226
64251
|
"use strict";
|
64227
64252
|
Object.defineProperty(exports2, "__esModule", { value: true });
|
64228
64253
|
exports2.getRuntimeConfig = void 0;
|
@@ -64273,9 +64298,9 @@ var require_runtimeConfig4 = __commonJS({
|
|
64273
64298
|
}
|
64274
64299
|
});
|
64275
64300
|
|
64276
|
-
// node_modules/.pnpm/@aws-sdk+client-rds-data@3.
|
64301
|
+
// node_modules/.pnpm/@aws-sdk+client-rds-data@3.582.0/node_modules/@aws-sdk/client-rds-data/dist-cjs/index.js
|
64277
64302
|
var require_dist_cjs55 = __commonJS({
|
64278
|
-
"node_modules/.pnpm/@aws-sdk+client-rds-data@3.
|
64303
|
+
"node_modules/.pnpm/@aws-sdk+client-rds-data@3.582.0/node_modules/@aws-sdk/client-rds-data/dist-cjs/index.js"(exports2, module2) {
|
64279
64304
|
"use strict";
|
64280
64305
|
var __defProp2 = Object.defineProperty;
|
64281
64306
|
var __getOwnPropDesc2 = Object.getOwnPropertyDescriptor;
|
@@ -65812,7 +65837,7 @@ var require_postgres_interval = __commonJS({
|
|
65812
65837
|
if (!(this instanceof PostgresInterval)) {
|
65813
65838
|
return new PostgresInterval(raw2);
|
65814
65839
|
}
|
65815
|
-
extend(this,
|
65840
|
+
extend(this, parse7(raw2));
|
65816
65841
|
}
|
65817
65842
|
var properties = ["seconds", "minutes", "hours", "days", "months", "years"];
|
65818
65843
|
PostgresInterval.prototype.toPostgres = function() {
|
@@ -65874,7 +65899,7 @@ var require_postgres_interval = __commonJS({
|
|
65874
65899
|
var microseconds = fraction + "000000".slice(fraction.length);
|
65875
65900
|
return parseInt(microseconds, 10) / 1e3;
|
65876
65901
|
}
|
65877
|
-
function
|
65902
|
+
function parse7(interval) {
|
65878
65903
|
if (!interval)
|
65879
65904
|
return {};
|
65880
65905
|
var matches = INTERVAL.exec(interval);
|
@@ -66368,13 +66393,13 @@ var require_binaryParsers = __commonJS({
|
|
66368
66393
|
console.log("ERROR: ElementType not implemented: " + elementType2);
|
66369
66394
|
}
|
66370
66395
|
};
|
66371
|
-
var
|
66396
|
+
var parse7 = function(dimension, elementType2) {
|
66372
66397
|
var array = [];
|
66373
66398
|
var i3;
|
66374
66399
|
if (dimension.length > 1) {
|
66375
66400
|
var count = dimension.shift();
|
66376
66401
|
for (i3 = 0; i3 < count; i3++) {
|
66377
|
-
array[i3] =
|
66402
|
+
array[i3] = parse7(dimension, elementType2);
|
66378
66403
|
}
|
66379
66404
|
dimension.unshift(count);
|
66380
66405
|
} else {
|
@@ -66384,7 +66409,7 @@ var require_binaryParsers = __commonJS({
|
|
66384
66409
|
}
|
66385
66410
|
return array;
|
66386
66411
|
};
|
66387
|
-
return
|
66412
|
+
return parse7(dims, elementType);
|
66388
66413
|
};
|
66389
66414
|
var parseText = function(value) {
|
66390
66415
|
return value.toString("utf8");
|
@@ -67032,7 +67057,7 @@ var require_type_overrides = __commonJS({
|
|
67032
67057
|
var require_pg_connection_string = __commonJS({
|
67033
67058
|
"node_modules/.pnpm/pg-connection-string@2.6.4/node_modules/pg-connection-string/index.js"(exports2, module2) {
|
67034
67059
|
"use strict";
|
67035
|
-
function
|
67060
|
+
function parse7(str) {
|
67036
67061
|
if (str.charAt(0) === "/") {
|
67037
67062
|
const config2 = str.split(" ");
|
67038
67063
|
return { host: config2[0], database: config2[1] };
|
@@ -67108,8 +67133,8 @@ var require_pg_connection_string = __commonJS({
|
|
67108
67133
|
}
|
67109
67134
|
return config;
|
67110
67135
|
}
|
67111
|
-
module2.exports =
|
67112
|
-
|
67136
|
+
module2.exports = parse7;
|
67137
|
+
parse7.parse = parse7;
|
67113
67138
|
}
|
67114
67139
|
});
|
67115
67140
|
|
@@ -67119,7 +67144,7 @@ var require_connection_parameters = __commonJS({
|
|
67119
67144
|
"use strict";
|
67120
67145
|
var dns = require("dns");
|
67121
67146
|
var defaults3 = require_defaults();
|
67122
|
-
var
|
67147
|
+
var parse7 = require_pg_connection_string().parse;
|
67123
67148
|
var val2 = function(key, config, envVar) {
|
67124
67149
|
if (envVar === void 0) {
|
67125
67150
|
envVar = process.env["PG" + key.toUpperCase()];
|
@@ -67154,9 +67179,9 @@ var require_connection_parameters = __commonJS({
|
|
67154
67179
|
};
|
67155
67180
|
var ConnectionParameters = class {
|
67156
67181
|
constructor(config) {
|
67157
|
-
config = typeof config === "string" ?
|
67182
|
+
config = typeof config === "string" ? parse7(config) : config || {};
|
67158
67183
|
if (config.connectionString) {
|
67159
|
-
config = Object.assign({}, config,
|
67184
|
+
config = Object.assign({}, config, parse7(config.connectionString));
|
67160
67185
|
}
|
67161
67186
|
this.user = val2("user", config);
|
67162
67187
|
this.database = val2("database", config);
|
@@ -67827,7 +67852,7 @@ var require_serializer = __commonJS({
|
|
67827
67852
|
);
|
67828
67853
|
};
|
67829
67854
|
var emptyArray = [];
|
67830
|
-
var
|
67855
|
+
var parse7 = (query2) => {
|
67831
67856
|
const name = query2.name || "";
|
67832
67857
|
if (name.length > 63) {
|
67833
67858
|
console.error("Warning! Postgres only supports 63 characters for query names.");
|
@@ -67976,7 +68001,7 @@ var require_serializer = __commonJS({
|
|
67976
68001
|
sendSASLInitialResponseMessage,
|
67977
68002
|
sendSCRAMClientFinalMessage,
|
67978
68003
|
query,
|
67979
|
-
parse:
|
68004
|
+
parse: parse7,
|
67980
68005
|
bind,
|
67981
68006
|
execute,
|
67982
68007
|
describe,
|
@@ -68354,12 +68379,12 @@ var require_dist2 = __commonJS({
|
|
68354
68379
|
return serializer_1.serialize;
|
68355
68380
|
} });
|
68356
68381
|
var parser_1 = require_parser2();
|
68357
|
-
function
|
68382
|
+
function parse7(stream, callback) {
|
68358
68383
|
const parser = new parser_1.Parser();
|
68359
68384
|
stream.on("data", (buffer2) => parser.parse(buffer2, callback));
|
68360
68385
|
return new Promise((resolve2) => stream.on("end", () => resolve2()));
|
68361
68386
|
}
|
68362
|
-
exports2.parse =
|
68387
|
+
exports2.parse = parse7;
|
68363
68388
|
}
|
68364
68389
|
});
|
68365
68390
|
|
@@ -68405,7 +68430,7 @@ var require_connection = __commonJS({
|
|
68405
68430
|
"use strict";
|
68406
68431
|
var net2 = require("net");
|
68407
68432
|
var EventEmitter = require("events").EventEmitter;
|
68408
|
-
var { parse:
|
68433
|
+
var { parse: parse7, serialize: serialize3 } = require_dist2();
|
68409
68434
|
var { getStream, getSecureStream } = require_stream6();
|
68410
68435
|
var flushBuffer = serialize3.flush();
|
68411
68436
|
var syncBuffer = serialize3.sync();
|
@@ -68492,7 +68517,7 @@ var require_connection = __commonJS({
|
|
68492
68517
|
});
|
68493
68518
|
}
|
68494
68519
|
attachListeners(stream) {
|
68495
|
-
|
68520
|
+
parse7(stream, (msg) => {
|
68496
68521
|
var eventName = msg.name === "error" ? "errorMessage" : msg.name;
|
68497
68522
|
if (this._emitMessage) {
|
68498
68523
|
this.emit("message", msg);
|
@@ -71754,7 +71779,7 @@ function Subscribe(postgres2, options) {
|
|
71754
71779
|
}
|
71755
71780
|
function data(x4) {
|
71756
71781
|
if (x4[0] === 119) {
|
71757
|
-
|
71782
|
+
parse3(x4.subarray(25), state2, sql3.options.parsers, handle, options.transform);
|
71758
71783
|
} else if (x4[0] === 107 && x4[17]) {
|
71759
71784
|
state2.lsn = x4.subarray(1, 9);
|
71760
71785
|
pong();
|
@@ -71784,7 +71809,7 @@ function Subscribe(postgres2, options) {
|
|
71784
71809
|
function Time(x3) {
|
71785
71810
|
return new Date(Date.UTC(2e3, 0, 1) + Number(x3 / BigInt(1e3)));
|
71786
71811
|
}
|
71787
|
-
function
|
71812
|
+
function parse3(x3, state, parsers2, handle, transform) {
|
71788
71813
|
const char = (acc, [k2, v6]) => (acc[k2.charCodeAt(0)] = v6, acc);
|
71789
71814
|
Object.entries({
|
71790
71815
|
R: (x4) => {
|
@@ -80286,7 +80311,7 @@ var require_extension2 = __commonJS({
|
|
80286
80311
|
else
|
80287
80312
|
dest[name].push(elem);
|
80288
80313
|
}
|
80289
|
-
function
|
80314
|
+
function parse7(header) {
|
80290
80315
|
const offers = /* @__PURE__ */ Object.create(null);
|
80291
80316
|
let params = /* @__PURE__ */ Object.create(null);
|
80292
80317
|
let mustUnescape = false;
|
@@ -80441,7 +80466,7 @@ var require_extension2 = __commonJS({
|
|
80441
80466
|
}).join(", ");
|
80442
80467
|
}).join(", ");
|
80443
80468
|
}
|
80444
|
-
module2.exports = { format: format2, parse:
|
80469
|
+
module2.exports = { format: format2, parse: parse7 };
|
80445
80470
|
}
|
80446
80471
|
});
|
80447
80472
|
|
@@ -80473,7 +80498,7 @@ var require_websocket2 = __commonJS({
|
|
80473
80498
|
var {
|
80474
80499
|
EventTarget: { addEventListener: addEventListener2, removeEventListener }
|
80475
80500
|
} = require_event_target2();
|
80476
|
-
var { format: format2, parse:
|
80501
|
+
var { format: format2, parse: parse7 } = require_extension2();
|
80477
80502
|
var { toBuffer } = require_buffer_util2();
|
80478
80503
|
var closeTimeout = 30 * 1e3;
|
80479
80504
|
var kAborted = Symbol("kAborted");
|
@@ -81153,7 +81178,7 @@ var require_websocket2 = __commonJS({
|
|
81153
81178
|
}
|
81154
81179
|
let extensions;
|
81155
81180
|
try {
|
81156
|
-
extensions =
|
81181
|
+
extensions = parse7(secWebSocketExtensions);
|
81157
81182
|
} catch (err2) {
|
81158
81183
|
const message = "Invalid Sec-WebSocket-Extensions header";
|
81159
81184
|
abortHandshake(websocket, socket, message);
|
@@ -81327,7 +81352,7 @@ var require_subprotocol2 = __commonJS({
|
|
81327
81352
|
"node_modules/.pnpm/ws@8.14.2_bufferutil@4.0.8_utf-8-validate@6.0.3/node_modules/ws/lib/subprotocol.js"(exports2, module2) {
|
81328
81353
|
"use strict";
|
81329
81354
|
var { tokenChars } = require_validation2();
|
81330
|
-
function
|
81355
|
+
function parse7(header) {
|
81331
81356
|
const protocols = /* @__PURE__ */ new Set();
|
81332
81357
|
let start = -1;
|
81333
81358
|
let end = -1;
|
@@ -81366,7 +81391,7 @@ var require_subprotocol2 = __commonJS({
|
|
81366
81391
|
protocols.add(protocol2);
|
81367
81392
|
return protocols;
|
81368
81393
|
}
|
81369
|
-
module2.exports = { parse:
|
81394
|
+
module2.exports = { parse: parse7 };
|
81370
81395
|
}
|
81371
81396
|
});
|
81372
81397
|
|
@@ -99253,7 +99278,7 @@ var require_esprima = __commonJS({
|
|
99253
99278
|
var jsx_parser_1 = __webpack_require__2(3);
|
99254
99279
|
var parser_1 = __webpack_require__2(8);
|
99255
99280
|
var tokenizer_1 = __webpack_require__2(15);
|
99256
|
-
function
|
99281
|
+
function parse7(code, options, delegate) {
|
99257
99282
|
var commentHandler = null;
|
99258
99283
|
var proxyDelegate = function(node, metadata) {
|
99259
99284
|
if (delegate) {
|
@@ -99298,17 +99323,17 @@ var require_esprima = __commonJS({
|
|
99298
99323
|
}
|
99299
99324
|
return ast;
|
99300
99325
|
}
|
99301
|
-
exports3.parse =
|
99326
|
+
exports3.parse = parse7;
|
99302
99327
|
function parseModule(code, options, delegate) {
|
99303
99328
|
var parsingOptions = options || {};
|
99304
99329
|
parsingOptions.sourceType = "module";
|
99305
|
-
return
|
99330
|
+
return parse7(code, parsingOptions, delegate);
|
99306
99331
|
}
|
99307
99332
|
exports3.parseModule = parseModule;
|
99308
99333
|
function parseScript(code, options, delegate) {
|
99309
99334
|
var parsingOptions = options || {};
|
99310
99335
|
parsingOptions.sourceType = "script";
|
99311
|
-
return
|
99336
|
+
return parse7(code, parsingOptions, delegate);
|
99312
99337
|
}
|
99313
99338
|
exports3.parseScript = parseScript;
|
99314
99339
|
function tokenize(code, options, delegate) {
|
@@ -108860,7 +108885,7 @@ var require_named_placeholders = __commonJS({
|
|
108860
108885
|
var DQUOTE = 34;
|
108861
108886
|
var SQUOTE = 39;
|
108862
108887
|
var BSLASH = 92;
|
108863
|
-
function
|
108888
|
+
function parse7(query) {
|
108864
108889
|
let ppos = RE_PARAM.exec(query);
|
108865
108890
|
let curpos = 0;
|
108866
108891
|
let start = 0;
|
@@ -108975,17 +109000,17 @@ var require_named_placeholders = __commonJS({
|
|
108975
109000
|
if (cache && (tree = cache.get(query))) {
|
108976
109001
|
return toArrayParams(tree, paramsObj);
|
108977
109002
|
}
|
108978
|
-
tree = join7(
|
109003
|
+
tree = join7(parse7(query));
|
108979
109004
|
if (cache) {
|
108980
109005
|
cache.set(query, tree);
|
108981
109006
|
}
|
108982
109007
|
return toArrayParams(tree, paramsObj);
|
108983
109008
|
}
|
108984
|
-
compile.parse =
|
109009
|
+
compile.parse = parse7;
|
108985
109010
|
return compile;
|
108986
109011
|
}
|
108987
109012
|
function toNumbered(q, params) {
|
108988
|
-
const tree =
|
109013
|
+
const tree = parse7(q);
|
108989
109014
|
const paramsArr = [];
|
108990
109015
|
if (tree.length == 1) {
|
108991
109016
|
return [tree[0], paramsArr];
|
@@ -111139,7 +111164,7 @@ function parseObjectRow(fields, rawRow, cast2) {
|
|
111139
111164
|
return acc;
|
111140
111165
|
}, {});
|
111141
111166
|
}
|
111142
|
-
function
|
111167
|
+
function parse4(result, cast2, returnAs) {
|
111143
111168
|
const fields = result.fields ?? [];
|
111144
111169
|
const rows = result.rows ?? [];
|
111145
111170
|
return rows.map((row) => returnAs === "array" ? parseArrayRow(fields, row, cast2) : parseObjectRow(fields, row, cast2));
|
@@ -111248,7 +111273,7 @@ var init_dist2 = __esm({
|
|
111248
111273
|
field.type || (field.type = "NULL");
|
111249
111274
|
}
|
111250
111275
|
const castFn = options.cast || this.config.cast || cast;
|
111251
|
-
const rows = result ?
|
111276
|
+
const rows = result ? parse4(result, castFn, options.as || "object") : [];
|
111252
111277
|
const headers = fields.map((f3) => f3.name);
|
111253
111278
|
const typeByName = (acc, { name, type }) => ({ ...acc, [name]: type });
|
111254
111279
|
const types4 = fields.reduce(typeByName, {});
|
@@ -111291,6 +111316,7 @@ var init_connections = __esm({
|
|
111291
111316
|
init_utils2();
|
111292
111317
|
init_global();
|
111293
111318
|
init_outputs();
|
111319
|
+
init_utils();
|
111294
111320
|
preparePostgresDB = async (credentials2) => {
|
111295
111321
|
if ("driver" in credentials2) {
|
111296
111322
|
if (credentials2.driver === "aws-data-api") {
|
@@ -111358,7 +111384,6 @@ var init_connections = __esm({
|
|
111358
111384
|
const { drizzle } = await import("drizzle-orm/node-postgres");
|
111359
111385
|
const { migrate } = await import("drizzle-orm/node-postgres/migrator");
|
111360
111386
|
const client = "url" in credentials2 ? new pg.default.Pool({ connectionString: credentials2.url, max: 1 }) : new pg.default.Pool({ ...credentials2, max: 1 });
|
111361
|
-
await client.connect();
|
111362
111387
|
const db2 = drizzle(client);
|
111363
111388
|
const migrateFn = async (config) => {
|
111364
111389
|
return migrate(db2, config);
|
@@ -111676,7 +111701,7 @@ var init_connections = __esm({
|
|
111676
111701
|
const { drizzle } = await import("drizzle-orm/libsql");
|
111677
111702
|
const { migrate } = await import("drizzle-orm/libsql/migrator");
|
111678
111703
|
const client = createClient2({
|
111679
|
-
url: credentials2.url
|
111704
|
+
url: normaliseSQLiteUrl(credentials2.url, "libsql")
|
111680
111705
|
});
|
111681
111706
|
const drzl = drizzle(client);
|
111682
111707
|
const migrateFn = async (config) => {
|
@@ -111711,7 +111736,7 @@ var init_connections = __esm({
|
|
111711
111736
|
const { default: Database } = await import("better-sqlite3");
|
111712
111737
|
const { drizzle } = await import("drizzle-orm/better-sqlite3");
|
111713
111738
|
const { migrate } = await import("drizzle-orm/better-sqlite3/migrator");
|
111714
|
-
const sqlite = new Database(credentials2.url);
|
111739
|
+
const sqlite = new Database(normaliseSQLiteUrl(credentials2.url, "better-sqlite"));
|
111715
111740
|
const drzl = drizzle(sqlite);
|
111716
111741
|
const migrateFn = async (config) => {
|
111717
111742
|
return migrate(drzl, config);
|
@@ -116901,10 +116926,10 @@ var init_dist3 = __esm({
|
|
116901
116926
|
}
|
116902
116927
|
});
|
116903
116928
|
|
116904
|
-
// node_modules/.pnpm/hono@4.3.
|
116929
|
+
// node_modules/.pnpm/hono@4.3.10/node_modules/hono/dist/utils/url.js
|
116905
116930
|
var splitPath, splitRoutingPath, extractGroupsFromPath, replaceGroupMarks, patternCache, getPattern, getPath, getQueryStrings, getPathNoStrict, mergePath, checkOptionalParameter, _decodeURI, _getQueryParam, getQueryParam, getQueryParams, decodeURIComponent_;
|
116906
116931
|
var init_url = __esm({
|
116907
|
-
"node_modules/.pnpm/hono@4.3.
|
116932
|
+
"node_modules/.pnpm/hono@4.3.10/node_modules/hono/dist/utils/url.js"() {
|
116908
116933
|
splitPath = (path5) => {
|
116909
116934
|
const paths = path5.split("/");
|
116910
116935
|
if (paths[0] === "") {
|
@@ -117099,14 +117124,14 @@ var init_url = __esm({
|
|
117099
117124
|
}
|
117100
117125
|
});
|
117101
117126
|
|
117102
|
-
// node_modules/.pnpm/hono@4.3.
|
117103
|
-
var validCookieNameRegEx, validCookieValueRegEx,
|
117127
|
+
// node_modules/.pnpm/hono@4.3.10/node_modules/hono/dist/utils/cookie.js
|
117128
|
+
var validCookieNameRegEx, validCookieValueRegEx, parse5;
|
117104
117129
|
var init_cookie = __esm({
|
117105
|
-
"node_modules/.pnpm/hono@4.3.
|
117130
|
+
"node_modules/.pnpm/hono@4.3.10/node_modules/hono/dist/utils/cookie.js"() {
|
117106
117131
|
init_url();
|
117107
117132
|
validCookieNameRegEx = /^[\w!#$%&'*.^`|~+-]+$/;
|
117108
117133
|
validCookieValueRegEx = /^[ !#-:<-[\]-~]*$/;
|
117109
|
-
|
117134
|
+
parse5 = (cookie, name) => {
|
117110
117135
|
const pairs = cookie.trim().split(";");
|
117111
117136
|
return pairs.reduce((parsedCookie, pairStr) => {
|
117112
117137
|
pairStr = pairStr.trim();
|
@@ -117131,10 +117156,10 @@ var init_cookie = __esm({
|
|
117131
117156
|
}
|
117132
117157
|
});
|
117133
117158
|
|
117134
|
-
// node_modules/.pnpm/hono@4.3.
|
117159
|
+
// node_modules/.pnpm/hono@4.3.10/node_modules/hono/dist/helper/cookie/index.js
|
117135
117160
|
var getCookie;
|
117136
117161
|
var init_cookie2 = __esm({
|
117137
|
-
"node_modules/.pnpm/hono@4.3.
|
117162
|
+
"node_modules/.pnpm/hono@4.3.10/node_modules/hono/dist/helper/cookie/index.js"() {
|
117138
117163
|
init_cookie();
|
117139
117164
|
getCookie = (c, key, prefix) => {
|
117140
117165
|
const cookie = c.req.raw.headers.get("Cookie");
|
@@ -117148,22 +117173,22 @@ var init_cookie2 = __esm({
|
|
117148
117173
|
} else if (prefix === "host") {
|
117149
117174
|
finalKey = "__Host-" + key;
|
117150
117175
|
}
|
117151
|
-
const obj2 =
|
117176
|
+
const obj2 = parse5(cookie, finalKey);
|
117152
117177
|
return obj2[finalKey];
|
117153
117178
|
}
|
117154
117179
|
if (!cookie) {
|
117155
117180
|
return {};
|
117156
117181
|
}
|
117157
|
-
const obj =
|
117182
|
+
const obj = parse5(cookie);
|
117158
117183
|
return obj;
|
117159
117184
|
};
|
117160
117185
|
}
|
117161
117186
|
});
|
117162
117187
|
|
117163
|
-
// node_modules/.pnpm/hono@4.3.
|
117188
|
+
// node_modules/.pnpm/hono@4.3.10/node_modules/hono/dist/http-exception.js
|
117164
117189
|
var HTTPException;
|
117165
117190
|
var init_http_exception = __esm({
|
117166
|
-
"node_modules/.pnpm/hono@4.3.
|
117191
|
+
"node_modules/.pnpm/hono@4.3.10/node_modules/hono/dist/http-exception.js"() {
|
117167
117192
|
HTTPException = class extends Error {
|
117168
117193
|
res;
|
117169
117194
|
status;
|
@@ -117174,7 +117199,11 @@ var init_http_exception = __esm({
|
|
117174
117199
|
}
|
117175
117200
|
getResponse() {
|
117176
117201
|
if (this.res) {
|
117177
|
-
|
117202
|
+
const newResponse = new Response(this.res.body, {
|
117203
|
+
status: this.status,
|
117204
|
+
headers: this.res.headers
|
117205
|
+
});
|
117206
|
+
return newResponse;
|
117178
117207
|
}
|
117179
117208
|
return new Response(this.message, {
|
117180
117209
|
status: this.status
|
@@ -117184,16 +117213,16 @@ var init_http_exception = __esm({
|
|
117184
117213
|
}
|
117185
117214
|
});
|
117186
117215
|
|
117187
|
-
// node_modules/.pnpm/hono@4.3.
|
117216
|
+
// node_modules/.pnpm/hono@4.3.10/node_modules/hono/dist/utils/crypto.js
|
117188
117217
|
var init_crypto = __esm({
|
117189
|
-
"node_modules/.pnpm/hono@4.3.
|
117218
|
+
"node_modules/.pnpm/hono@4.3.10/node_modules/hono/dist/utils/crypto.js"() {
|
117190
117219
|
}
|
117191
117220
|
});
|
117192
117221
|
|
117193
|
-
// node_modules/.pnpm/hono@4.3.
|
117222
|
+
// node_modules/.pnpm/hono@4.3.10/node_modules/hono/dist/utils/buffer.js
|
117194
117223
|
var bufferToFormData;
|
117195
117224
|
var init_buffer = __esm({
|
117196
|
-
"node_modules/.pnpm/hono@4.3.
|
117225
|
+
"node_modules/.pnpm/hono@4.3.10/node_modules/hono/dist/utils/buffer.js"() {
|
117197
117226
|
init_crypto();
|
117198
117227
|
bufferToFormData = (arrayBuffer, contentType) => {
|
117199
117228
|
const response = new Response(arrayBuffer, {
|
@@ -117206,10 +117235,10 @@ var init_buffer = __esm({
|
|
117206
117235
|
}
|
117207
117236
|
});
|
117208
117237
|
|
117209
|
-
// node_modules/.pnpm/hono@4.3.
|
117238
|
+
// node_modules/.pnpm/hono@4.3.10/node_modules/hono/dist/validator/validator.js
|
117210
117239
|
var validator;
|
117211
117240
|
var init_validator = __esm({
|
117212
|
-
"node_modules/.pnpm/hono@4.3.
|
117241
|
+
"node_modules/.pnpm/hono@4.3.10/node_modules/hono/dist/validator/validator.js"() {
|
117213
117242
|
init_cookie2();
|
117214
117243
|
init_http_exception();
|
117215
117244
|
init_buffer();
|
@@ -117291,17 +117320,17 @@ var init_validator = __esm({
|
|
117291
117320
|
}
|
117292
117321
|
});
|
117293
117322
|
|
117294
|
-
// node_modules/.pnpm/hono@4.3.
|
117323
|
+
// node_modules/.pnpm/hono@4.3.10/node_modules/hono/dist/validator/index.js
|
117295
117324
|
var init_validator2 = __esm({
|
117296
|
-
"node_modules/.pnpm/hono@4.3.
|
117325
|
+
"node_modules/.pnpm/hono@4.3.10/node_modules/hono/dist/validator/index.js"() {
|
117297
117326
|
init_validator();
|
117298
117327
|
}
|
117299
117328
|
});
|
117300
117329
|
|
117301
|
-
// node_modules/.pnpm/@hono+zod-validator@0.2.1_hono@4.3.
|
117330
|
+
// node_modules/.pnpm/@hono+zod-validator@0.2.1_hono@4.3.10_zod@3.23.8/node_modules/@hono/zod-validator/dist/esm/index.js
|
117302
117331
|
var zValidator;
|
117303
117332
|
var init_esm = __esm({
|
117304
|
-
"node_modules/.pnpm/@hono+zod-validator@0.2.1_hono@4.3.
|
117333
|
+
"node_modules/.pnpm/@hono+zod-validator@0.2.1_hono@4.3.10_zod@3.23.8/node_modules/@hono/zod-validator/dist/esm/index.js"() {
|
117305
117334
|
init_validator2();
|
117306
117335
|
zValidator = (target, schema5, hook2) => (
|
117307
117336
|
// @ts-expect-error not typed well
|
@@ -117328,10 +117357,10 @@ var init_esm = __esm({
|
|
117328
117357
|
}
|
117329
117358
|
});
|
117330
117359
|
|
117331
|
-
// node_modules/.pnpm/hono@4.3.
|
117360
|
+
// node_modules/.pnpm/hono@4.3.10/node_modules/hono/dist/utils/html.js
|
117332
117361
|
var HtmlEscapedCallbackPhase, raw, resolveCallback;
|
117333
117362
|
var init_html = __esm({
|
117334
|
-
"node_modules/.pnpm/hono@4.3.
|
117363
|
+
"node_modules/.pnpm/hono@4.3.10/node_modules/hono/dist/utils/html.js"() {
|
117335
117364
|
HtmlEscapedCallbackPhase = {
|
117336
117365
|
Stringify: 1,
|
117337
117366
|
BeforeStream: 2,
|
@@ -117367,10 +117396,10 @@ var init_html = __esm({
|
|
117367
117396
|
}
|
117368
117397
|
});
|
117369
117398
|
|
117370
|
-
// node_modules/.pnpm/hono@4.3.
|
117399
|
+
// node_modules/.pnpm/hono@4.3.10/node_modules/hono/dist/context.js
|
117371
117400
|
var TEXT_PLAIN, setHeaders, Context;
|
117372
117401
|
var init_context = __esm({
|
117373
|
-
"node_modules/.pnpm/hono@4.3.
|
117402
|
+
"node_modules/.pnpm/hono@4.3.10/node_modules/hono/dist/context.js"() {
|
117374
117403
|
init_html();
|
117375
117404
|
TEXT_PLAIN = "text/plain; charset=UTF-8";
|
117376
117405
|
setHeaders = (headers, map = {}) => {
|
@@ -117594,10 +117623,10 @@ var init_context = __esm({
|
|
117594
117623
|
}
|
117595
117624
|
});
|
117596
117625
|
|
117597
|
-
// node_modules/.pnpm/hono@4.3.
|
117626
|
+
// node_modules/.pnpm/hono@4.3.10/node_modules/hono/dist/compose.js
|
117598
117627
|
var compose;
|
117599
117628
|
var init_compose = __esm({
|
117600
|
-
"node_modules/.pnpm/hono@4.3.
|
117629
|
+
"node_modules/.pnpm/hono@4.3.10/node_modules/hono/dist/compose.js"() {
|
117601
117630
|
init_context();
|
117602
117631
|
compose = (middleware, onError, onNotFound) => {
|
117603
117632
|
return (context, next) => {
|
@@ -117648,7 +117677,7 @@ var init_compose = __esm({
|
|
117648
117677
|
}
|
117649
117678
|
});
|
117650
117679
|
|
117651
|
-
// node_modules/.pnpm/hono@4.3.
|
117680
|
+
// node_modules/.pnpm/hono@4.3.10/node_modules/hono/dist/utils/body.js
|
117652
117681
|
async function parseFormData(request, options) {
|
117653
117682
|
const formData = await request.formData();
|
117654
117683
|
if (formData) {
|
@@ -117670,7 +117699,7 @@ function convertFormDataToBodyData(formData, options) {
|
|
117670
117699
|
}
|
117671
117700
|
var parseBody, handleParsingAllValues;
|
117672
117701
|
var init_body2 = __esm({
|
117673
|
-
"node_modules/.pnpm/hono@4.3.
|
117702
|
+
"node_modules/.pnpm/hono@4.3.10/node_modules/hono/dist/utils/body.js"() {
|
117674
117703
|
init_request2();
|
117675
117704
|
parseBody = async (request, options = { all: false }) => {
|
117676
117705
|
const headers = request instanceof HonoRequest ? request.raw.headers : request.headers;
|
@@ -117694,10 +117723,10 @@ var init_body2 = __esm({
|
|
117694
117723
|
}
|
117695
117724
|
});
|
117696
117725
|
|
117697
|
-
// node_modules/.pnpm/hono@4.3.
|
117726
|
+
// node_modules/.pnpm/hono@4.3.10/node_modules/hono/dist/request.js
|
117698
117727
|
var HonoRequest;
|
117699
117728
|
var init_request2 = __esm({
|
117700
|
-
"node_modules/.pnpm/hono@4.3.
|
117729
|
+
"node_modules/.pnpm/hono@4.3.10/node_modules/hono/dist/request.js"() {
|
117701
117730
|
init_body2();
|
117702
117731
|
init_url();
|
117703
117732
|
HonoRequest = class {
|
@@ -117818,10 +117847,10 @@ var init_request2 = __esm({
|
|
117818
117847
|
}
|
117819
117848
|
});
|
117820
117849
|
|
117821
|
-
// node_modules/.pnpm/hono@4.3.
|
117850
|
+
// node_modules/.pnpm/hono@4.3.10/node_modules/hono/dist/router.js
|
117822
117851
|
var METHOD_NAME_ALL, METHOD_NAME_ALL_LOWERCASE, METHODS, MESSAGE_MATCHER_IS_ALREADY_BUILT, UnsupportedPathError;
|
117823
117852
|
var init_router = __esm({
|
117824
|
-
"node_modules/.pnpm/hono@4.3.
|
117853
|
+
"node_modules/.pnpm/hono@4.3.10/node_modules/hono/dist/router.js"() {
|
117825
117854
|
METHOD_NAME_ALL = "ALL";
|
117826
117855
|
METHOD_NAME_ALL_LOWERCASE = "all";
|
117827
117856
|
METHODS = ["get", "post", "put", "delete", "options", "patch"];
|
@@ -117831,14 +117860,14 @@ var init_router = __esm({
|
|
117831
117860
|
}
|
117832
117861
|
});
|
117833
117862
|
|
117834
|
-
// node_modules/.pnpm/hono@4.3.
|
117863
|
+
// node_modules/.pnpm/hono@4.3.10/node_modules/hono/dist/hono-base.js
|
117835
117864
|
function defineDynamicClass() {
|
117836
117865
|
return class {
|
117837
117866
|
};
|
117838
117867
|
}
|
117839
117868
|
var COMPOSED_HANDLER, notFoundHandler, errorHandler, Hono;
|
117840
117869
|
var init_hono_base = __esm({
|
117841
|
-
"node_modules/.pnpm/hono@4.3.
|
117870
|
+
"node_modules/.pnpm/hono@4.3.10/node_modules/hono/dist/hono-base.js"() {
|
117842
117871
|
init_compose();
|
117843
117872
|
init_context();
|
117844
117873
|
init_http_exception();
|
@@ -118057,7 +118086,7 @@ var init_hono_base = __esm({
|
|
118057
118086
|
}
|
118058
118087
|
});
|
118059
118088
|
|
118060
|
-
// node_modules/.pnpm/hono@4.3.
|
118089
|
+
// node_modules/.pnpm/hono@4.3.10/node_modules/hono/dist/router/reg-exp-router/node.js
|
118061
118090
|
function compareKey(a3, b4) {
|
118062
118091
|
if (a3.length === 1) {
|
118063
118092
|
return b4.length === 1 ? a3 < b4 ? -1 : 1 : -1;
|
@@ -118079,7 +118108,7 @@ function compareKey(a3, b4) {
|
|
118079
118108
|
}
|
118080
118109
|
var LABEL_REG_EXP_STR, ONLY_WILDCARD_REG_EXP_STR, TAIL_WILDCARD_REG_EXP_STR, PATH_ERROR, regExpMetaChars, Node;
|
118081
118110
|
var init_node = __esm({
|
118082
|
-
"node_modules/.pnpm/hono@4.3.
|
118111
|
+
"node_modules/.pnpm/hono@4.3.10/node_modules/hono/dist/router/reg-exp-router/node.js"() {
|
118083
118112
|
LABEL_REG_EXP_STR = "[^/]+";
|
118084
118113
|
ONLY_WILDCARD_REG_EXP_STR = ".*";
|
118085
118114
|
TAIL_WILDCARD_REG_EXP_STR = "(?:|/.*)";
|
@@ -118167,10 +118196,10 @@ var init_node = __esm({
|
|
118167
118196
|
}
|
118168
118197
|
});
|
118169
118198
|
|
118170
|
-
// node_modules/.pnpm/hono@4.3.
|
118199
|
+
// node_modules/.pnpm/hono@4.3.10/node_modules/hono/dist/router/reg-exp-router/trie.js
|
118171
118200
|
var Trie;
|
118172
118201
|
var init_trie = __esm({
|
118173
|
-
"node_modules/.pnpm/hono@4.3.
|
118202
|
+
"node_modules/.pnpm/hono@4.3.10/node_modules/hono/dist/router/reg-exp-router/trie.js"() {
|
118174
118203
|
init_node();
|
118175
118204
|
Trie = class {
|
118176
118205
|
context = { varIndex: 0 };
|
@@ -118229,7 +118258,7 @@ var init_trie = __esm({
|
|
118229
118258
|
}
|
118230
118259
|
});
|
118231
118260
|
|
118232
|
-
// node_modules/.pnpm/hono@4.3.
|
118261
|
+
// node_modules/.pnpm/hono@4.3.10/node_modules/hono/dist/router/reg-exp-router/router.js
|
118233
118262
|
function buildWildcardRegExp(path5) {
|
118234
118263
|
return wildcardRegExpCache[path5] ??= new RegExp(
|
118235
118264
|
path5 === "*" ? "" : `^${path5.replace(
|
@@ -118312,7 +118341,7 @@ function findMiddleware(middleware, path5) {
|
|
118312
118341
|
}
|
118313
118342
|
var emptyParam, nullMatcher, wildcardRegExpCache, RegExpRouter;
|
118314
118343
|
var init_router2 = __esm({
|
118315
|
-
"node_modules/.pnpm/hono@4.3.
|
118344
|
+
"node_modules/.pnpm/hono@4.3.10/node_modules/hono/dist/router/reg-exp-router/router.js"() {
|
118316
118345
|
init_router();
|
118317
118346
|
init_url();
|
118318
118347
|
init_node();
|
@@ -118434,17 +118463,17 @@ var init_router2 = __esm({
|
|
118434
118463
|
}
|
118435
118464
|
});
|
118436
118465
|
|
118437
|
-
// node_modules/.pnpm/hono@4.3.
|
118466
|
+
// node_modules/.pnpm/hono@4.3.10/node_modules/hono/dist/router/reg-exp-router/index.js
|
118438
118467
|
var init_reg_exp_router = __esm({
|
118439
|
-
"node_modules/.pnpm/hono@4.3.
|
118468
|
+
"node_modules/.pnpm/hono@4.3.10/node_modules/hono/dist/router/reg-exp-router/index.js"() {
|
118440
118469
|
init_router2();
|
118441
118470
|
}
|
118442
118471
|
});
|
118443
118472
|
|
118444
|
-
// node_modules/.pnpm/hono@4.3.
|
118473
|
+
// node_modules/.pnpm/hono@4.3.10/node_modules/hono/dist/router/smart-router/router.js
|
118445
118474
|
var SmartRouter;
|
118446
118475
|
var init_router3 = __esm({
|
118447
|
-
"node_modules/.pnpm/hono@4.3.
|
118476
|
+
"node_modules/.pnpm/hono@4.3.10/node_modules/hono/dist/router/smart-router/router.js"() {
|
118448
118477
|
init_router();
|
118449
118478
|
SmartRouter = class {
|
118450
118479
|
name = "SmartRouter";
|
@@ -118501,17 +118530,17 @@ var init_router3 = __esm({
|
|
118501
118530
|
}
|
118502
118531
|
});
|
118503
118532
|
|
118504
|
-
// node_modules/.pnpm/hono@4.3.
|
118533
|
+
// node_modules/.pnpm/hono@4.3.10/node_modules/hono/dist/router/smart-router/index.js
|
118505
118534
|
var init_smart_router = __esm({
|
118506
|
-
"node_modules/.pnpm/hono@4.3.
|
118535
|
+
"node_modules/.pnpm/hono@4.3.10/node_modules/hono/dist/router/smart-router/index.js"() {
|
118507
118536
|
init_router3();
|
118508
118537
|
}
|
118509
118538
|
});
|
118510
118539
|
|
118511
|
-
// node_modules/.pnpm/hono@4.3.
|
118540
|
+
// node_modules/.pnpm/hono@4.3.10/node_modules/hono/dist/router/trie-router/node.js
|
118512
118541
|
var Node2;
|
118513
118542
|
var init_node2 = __esm({
|
118514
|
-
"node_modules/.pnpm/hono@4.3.
|
118543
|
+
"node_modules/.pnpm/hono@4.3.10/node_modules/hono/dist/router/trie-router/node.js"() {
|
118515
118544
|
init_router();
|
118516
118545
|
init_url();
|
118517
118546
|
Node2 = class {
|
@@ -118663,10 +118692,10 @@ var init_node2 = __esm({
|
|
118663
118692
|
}
|
118664
118693
|
});
|
118665
118694
|
|
118666
|
-
// node_modules/.pnpm/hono@4.3.
|
118695
|
+
// node_modules/.pnpm/hono@4.3.10/node_modules/hono/dist/router/trie-router/router.js
|
118667
118696
|
var TrieRouter;
|
118668
118697
|
var init_router4 = __esm({
|
118669
|
-
"node_modules/.pnpm/hono@4.3.
|
118698
|
+
"node_modules/.pnpm/hono@4.3.10/node_modules/hono/dist/router/trie-router/router.js"() {
|
118670
118699
|
init_url();
|
118671
118700
|
init_node2();
|
118672
118701
|
TrieRouter = class {
|
@@ -118692,17 +118721,17 @@ var init_router4 = __esm({
|
|
118692
118721
|
}
|
118693
118722
|
});
|
118694
118723
|
|
118695
|
-
// node_modules/.pnpm/hono@4.3.
|
118724
|
+
// node_modules/.pnpm/hono@4.3.10/node_modules/hono/dist/router/trie-router/index.js
|
118696
118725
|
var init_trie_router = __esm({
|
118697
|
-
"node_modules/.pnpm/hono@4.3.
|
118726
|
+
"node_modules/.pnpm/hono@4.3.10/node_modules/hono/dist/router/trie-router/index.js"() {
|
118698
118727
|
init_router4();
|
118699
118728
|
}
|
118700
118729
|
});
|
118701
118730
|
|
118702
|
-
// node_modules/.pnpm/hono@4.3.
|
118731
|
+
// node_modules/.pnpm/hono@4.3.10/node_modules/hono/dist/hono.js
|
118703
118732
|
var Hono2;
|
118704
118733
|
var init_hono = __esm({
|
118705
|
-
"node_modules/.pnpm/hono@4.3.
|
118734
|
+
"node_modules/.pnpm/hono@4.3.10/node_modules/hono/dist/hono.js"() {
|
118706
118735
|
init_hono_base();
|
118707
118736
|
init_reg_exp_router();
|
118708
118737
|
init_smart_router();
|
@@ -118718,17 +118747,17 @@ var init_hono = __esm({
|
|
118718
118747
|
}
|
118719
118748
|
});
|
118720
118749
|
|
118721
|
-
// node_modules/.pnpm/hono@4.3.
|
118750
|
+
// node_modules/.pnpm/hono@4.3.10/node_modules/hono/dist/index.js
|
118722
118751
|
var init_dist4 = __esm({
|
118723
|
-
"node_modules/.pnpm/hono@4.3.
|
118752
|
+
"node_modules/.pnpm/hono@4.3.10/node_modules/hono/dist/index.js"() {
|
118724
118753
|
init_hono();
|
118725
118754
|
}
|
118726
118755
|
});
|
118727
118756
|
|
118728
|
-
// node_modules/.pnpm/hono@4.3.
|
118757
|
+
// node_modules/.pnpm/hono@4.3.10/node_modules/hono/dist/middleware/cors/index.js
|
118729
118758
|
var cors;
|
118730
118759
|
var init_cors = __esm({
|
118731
|
-
"node_modules/.pnpm/hono@4.3.
|
118760
|
+
"node_modules/.pnpm/hono@4.3.10/node_modules/hono/dist/middleware/cors/index.js"() {
|
118732
118761
|
cors = (options) => {
|
118733
118762
|
const defaults3 = {
|
118734
118763
|
origin: "*",
|
@@ -119567,7 +119596,7 @@ var init_dist6 = __esm({
|
|
119567
119596
|
});
|
119568
119597
|
|
119569
119598
|
// node_modules/.pnpm/superjson@2.2.1/node_modules/superjson/dist/index.js
|
119570
|
-
var SuperJSON, serialize2, deserialize, stringify3,
|
119599
|
+
var SuperJSON, serialize2, deserialize, stringify3, parse6, registerClass, registerCustom, registerSymbol, allowErrorProps;
|
119571
119600
|
var init_dist7 = __esm({
|
119572
119601
|
"node_modules/.pnpm/superjson@2.2.1/node_modules/superjson/dist/index.js"() {
|
119573
119602
|
init_class_registry();
|
@@ -119652,7 +119681,7 @@ var init_dist7 = __esm({
|
|
119652
119681
|
serialize2 = SuperJSON.serialize;
|
119653
119682
|
deserialize = SuperJSON.deserialize;
|
119654
119683
|
stringify3 = SuperJSON.stringify;
|
119655
|
-
|
119684
|
+
parse6 = SuperJSON.parse;
|
119656
119685
|
registerClass = SuperJSON.registerClass;
|
119657
119686
|
registerCustom = SuperJSON.registerCustom;
|
119658
119687
|
registerSymbol = SuperJSON.registerSymbol;
|
@@ -121343,7 +121372,7 @@ var printVersions = async () => {
|
|
121343
121372
|
var versions = async () => {
|
121344
121373
|
const { npmVersion } = await ormCoreVersions();
|
121345
121374
|
const ormVersion = npmVersion ? `drizzle-orm: v${npmVersion}` : "";
|
121346
|
-
const envVersion = "0.21.
|
121375
|
+
const envVersion = "0.21.4";
|
121347
121376
|
const kitVersion = envVersion ? `v${envVersion}` : "--";
|
121348
121377
|
const versions2 = `drizzle-kit: ${kitVersion}
|
121349
121378
|
${ormVersion}`;
|