@settlemint/sdk-cli 2.0.0-pr99aa7c9f → 2.0.0-prae2ddec7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +1845 -473
- package/dist/cli.js.map +64 -22
- package/package.json +6 -6
package/dist/cli.js
CHANGED
@@ -14515,8 +14515,8 @@ var require_printLocation = __commonJS((exports) => {
|
|
14515
14515
|
const columnNum = sourceLocation.column + columnOffset;
|
14516
14516
|
const locationStr = `${source.name}:${lineNum}:${columnNum}
|
14517
14517
|
`;
|
14518
|
-
const
|
14519
|
-
const locationLine =
|
14518
|
+
const lines = body.split(/\r\n|[\n\r]/g);
|
14519
|
+
const locationLine = lines[lineIndex];
|
14520
14520
|
if (locationLine.length > 120) {
|
14521
14521
|
const subLineIndex = Math.floor(columnNum / 80);
|
14522
14522
|
const subLineColumnNum = columnNum % 80;
|
@@ -14532,14 +14532,14 @@ var require_printLocation = __commonJS((exports) => {
|
|
14532
14532
|
]);
|
14533
14533
|
}
|
14534
14534
|
return locationStr + printPrefixedLines([
|
14535
|
-
[`${lineNum - 1} |`,
|
14535
|
+
[`${lineNum - 1} |`, lines[lineIndex - 1]],
|
14536
14536
|
[`${lineNum} |`, locationLine],
|
14537
14537
|
["|", "^".padStart(columnNum)],
|
14538
|
-
[`${lineNum + 1} |`,
|
14538
|
+
[`${lineNum + 1} |`, lines[lineIndex + 1]]
|
14539
14539
|
]);
|
14540
14540
|
}
|
14541
|
-
function printPrefixedLines(
|
14542
|
-
const existingLines =
|
14541
|
+
function printPrefixedLines(lines) {
|
14542
|
+
const existingLines = lines.filter(([_, line]) => line !== undefined);
|
14543
14543
|
const padLen = Math.max(...existingLines.map(([prefix]) => prefix.length));
|
14544
14544
|
return existingLines.map(([prefix, line]) => prefix.padStart(padLen) + (line ? " " + line : "")).join(`
|
14545
14545
|
`);
|
@@ -14952,14 +14952,14 @@ var require_blockString = __commonJS((exports) => {
|
|
14952
14952
|
exports.isPrintableAsBlockString = isPrintableAsBlockString;
|
14953
14953
|
exports.printBlockString = printBlockString;
|
14954
14954
|
var _characterClasses = require_characterClasses();
|
14955
|
-
function dedentBlockStringLines(
|
14955
|
+
function dedentBlockStringLines(lines) {
|
14956
14956
|
var _firstNonEmptyLine2;
|
14957
14957
|
let commonIndent = Number.MAX_SAFE_INTEGER;
|
14958
14958
|
let firstNonEmptyLine = null;
|
14959
14959
|
let lastNonEmptyLine = -1;
|
14960
|
-
for (let i = 0;i <
|
14960
|
+
for (let i = 0;i < lines.length; ++i) {
|
14961
14961
|
var _firstNonEmptyLine;
|
14962
|
-
const line =
|
14962
|
+
const line = lines[i];
|
14963
14963
|
const indent = leadingWhitespace(line);
|
14964
14964
|
if (indent === line.length) {
|
14965
14965
|
continue;
|
@@ -14970,7 +14970,7 @@ var require_blockString = __commonJS((exports) => {
|
|
14970
14970
|
commonIndent = indent;
|
14971
14971
|
}
|
14972
14972
|
}
|
14973
|
-
return
|
14973
|
+
return lines.map((line, i) => i === 0 ? line : line.slice(commonIndent)).slice((_firstNonEmptyLine2 = firstNonEmptyLine) !== null && _firstNonEmptyLine2 !== undefined ? _firstNonEmptyLine2 : 0, lastNonEmptyLine + 1);
|
14974
14974
|
}
|
14975
14975
|
function leadingWhitespace(str) {
|
14976
14976
|
let i = 0;
|
@@ -15032,9 +15032,9 @@ var require_blockString = __commonJS((exports) => {
|
|
15032
15032
|
}
|
15033
15033
|
function printBlockString(value, options) {
|
15034
15034
|
const escapedValue = value.replace(/"""/g, '\\"""');
|
15035
|
-
const
|
15036
|
-
const isSingleLine =
|
15037
|
-
const forceLeadingNewLine =
|
15035
|
+
const lines = escapedValue.split(/\r\n|[\n\r]/g);
|
15036
|
+
const isSingleLine = lines.length === 1;
|
15037
|
+
const forceLeadingNewLine = lines.length > 1 && lines.slice(1).every((line) => line.length === 0 || (0, _characterClasses.isWhiteSpace)(line.charCodeAt(0)));
|
15038
15038
|
const hasTrailingTripleQuotes = escapedValue.endsWith('\\"""');
|
15039
15039
|
const hasTrailingQuote = value.endsWith('"') && !hasTrailingTripleQuotes;
|
15040
15040
|
const hasTrailingSlash = value.endsWith("\\");
|
@@ -34075,9 +34075,9 @@ var require_commonjs4 = __commonJS((exports) => {
|
|
34075
34075
|
this.#resolveCache = new ResolveCache2;
|
34076
34076
|
this.#resolvePosixCache = new ResolveCache2;
|
34077
34077
|
this.#children = new ChildrenCache2(childrenCacheSize);
|
34078
|
-
const
|
34079
|
-
if (
|
34080
|
-
|
34078
|
+
const split = cwdPath.substring(this.rootPath.length).split(sep2);
|
34079
|
+
if (split.length === 1 && !split[0]) {
|
34080
|
+
split.pop();
|
34081
34081
|
}
|
34082
34082
|
if (nocase === undefined) {
|
34083
34083
|
throw new TypeError("must provide nocase setting to PathScurryBase ctor");
|
@@ -34086,11 +34086,11 @@ var require_commonjs4 = __commonJS((exports) => {
|
|
34086
34086
|
this.root = this.newRoot(this.#fs);
|
34087
34087
|
this.roots[this.rootPath] = this.root;
|
34088
34088
|
let prev = this.root;
|
34089
|
-
let len =
|
34089
|
+
let len = split.length - 1;
|
34090
34090
|
const joinSep = pathImpl.sep;
|
34091
34091
|
let abs = this.rootPath;
|
34092
34092
|
let sawFirst = false;
|
34093
|
-
for (const part of
|
34093
|
+
for (const part of split) {
|
34094
34094
|
const l2 = len--;
|
34095
34095
|
prev = prev.child(part, {
|
34096
34096
|
relative: new Array(l2).fill("..").join(joinSep),
|
@@ -36541,9 +36541,9 @@ var require_ini = __commonJS((exports, module) => {
|
|
36541
36541
|
let p = out;
|
36542
36542
|
let section = null;
|
36543
36543
|
const re = /^\[([^\]]*)\]\s*$|^([^=]+)(=(.*))?$/i;
|
36544
|
-
const
|
36544
|
+
const lines = str.split(/[\r\n]+/g);
|
36545
36545
|
const duplicates = {};
|
36546
|
-
for (const line of
|
36546
|
+
for (const line of lines) {
|
36547
36547
|
if (!line || line.match(/^\s*[;#]/) || line.match(/^\s*$/)) {
|
36548
36548
|
continue;
|
36549
36549
|
}
|
@@ -38096,7 +38096,7 @@ var require_semver2 = __commonJS((exports, module) => {
|
|
38096
38096
|
// ../../node_modules/@npmcli/git/lib/lines-to-revs.js
|
38097
38097
|
var require_lines_to_revs = __commonJS((exports, module) => {
|
38098
38098
|
var semver = require_semver2();
|
38099
|
-
module.exports = (
|
38099
|
+
module.exports = (lines) => finish(lines.reduce(linesToRevsReducer, {
|
38100
38100
|
versions: {},
|
38101
38101
|
"dist-tags": {},
|
38102
38102
|
refs: {},
|
@@ -38157,12 +38157,12 @@ var require_lines_to_revs = __commonJS((exports, module) => {
|
|
38157
38157
|
return "other";
|
38158
38158
|
};
|
38159
38159
|
var lineToRevDoc = (line) => {
|
38160
|
-
const
|
38161
|
-
if (
|
38160
|
+
const split = line.trim().split(/\s+/, 2);
|
38161
|
+
if (split.length < 2) {
|
38162
38162
|
return null;
|
38163
38163
|
}
|
38164
|
-
const sha =
|
38165
|
-
const rawRef =
|
38164
|
+
const sha = split[0].trim();
|
38165
|
+
const rawRef = split[1].trim();
|
38166
38166
|
const type2 = refType(rawRef);
|
38167
38167
|
if (type2 === "tag") {
|
38168
38168
|
const ref = rawRef.slice("refs/tags/".length);
|
@@ -40723,17 +40723,17 @@ var require_normalize_data = __commonJS((exports, module) => {
|
|
40723
40723
|
};
|
40724
40724
|
var isEmail = (str) => str.includes("@") && str.indexOf("@") < str.lastIndexOf(".");
|
40725
40725
|
function extractDescription(description) {
|
40726
|
-
const
|
40726
|
+
const lines = description.trim().split(`
|
40727
40727
|
`);
|
40728
40728
|
let start = 0;
|
40729
|
-
while (
|
40729
|
+
while (lines[start]?.trim().match(/^(#|$)/)) {
|
40730
40730
|
start++;
|
40731
40731
|
}
|
40732
40732
|
let end = start + 1;
|
40733
|
-
while (end <
|
40733
|
+
while (end < lines.length && lines[end].trim()) {
|
40734
40734
|
end++;
|
40735
40735
|
}
|
40736
|
-
return
|
40736
|
+
return lines.slice(start, end).join(" ").trim();
|
40737
40737
|
}
|
40738
40738
|
function stringifyPerson(person) {
|
40739
40739
|
if (typeof person !== "string") {
|
@@ -59430,9 +59430,9 @@ ${lanes.join(`
|
|
59430
59430
|
return node.kind === 183 || node.kind === 233;
|
59431
59431
|
}
|
59432
59432
|
var MAX_SMI_X86 = 1073741823;
|
59433
|
-
function guessIndentation(
|
59433
|
+
function guessIndentation(lines) {
|
59434
59434
|
let indentation = MAX_SMI_X86;
|
59435
|
-
for (const line of
|
59435
|
+
for (const line of lines) {
|
59436
59436
|
if (!line.length) {
|
59437
59437
|
continue;
|
59438
59438
|
}
|
@@ -147983,8 +147983,8 @@ ${lanes.join(`
|
|
147983
147983
|
if (node.comment) {
|
147984
147984
|
const text = getTextOfJSDocComment(node.comment);
|
147985
147985
|
if (text) {
|
147986
|
-
const
|
147987
|
-
for (const line of
|
147986
|
+
const lines = text.split(/\r\n?|\n/);
|
147987
|
+
for (const line of lines) {
|
147988
147988
|
writeLine();
|
147989
147989
|
writeSpace();
|
147990
147990
|
writePunctuation("*");
|
@@ -148628,9 +148628,9 @@ ${lanes.join(`
|
|
148628
148628
|
if (getEmitFlags(parentNode) & 1) {
|
148629
148629
|
writeSpace();
|
148630
148630
|
} else if (preserveSourceNewlines) {
|
148631
|
-
const
|
148632
|
-
if (
|
148633
|
-
writeLine(
|
148631
|
+
const lines = getLinesBetweenNodes(parentNode, prevChildNode, nextChildNode);
|
148632
|
+
if (lines) {
|
148633
|
+
writeLine(lines);
|
148634
148634
|
} else {
|
148635
148635
|
writeSpace();
|
148636
148636
|
}
|
@@ -148639,9 +148639,9 @@ ${lanes.join(`
|
|
148639
148639
|
}
|
148640
148640
|
}
|
148641
148641
|
function writeLines(text) {
|
148642
|
-
const
|
148643
|
-
const indentation = guessIndentation(
|
148644
|
-
for (const lineText of
|
148642
|
+
const lines = text.split(/\r\n?|\n/);
|
148643
|
+
const indentation = guessIndentation(lines);
|
148644
|
+
for (const lineText of lines) {
|
148645
148645
|
const line = indentation ? lineText.slice(indentation) : lineText;
|
148646
148646
|
if (line.length) {
|
148647
148647
|
writeLine();
|
@@ -148739,11 +148739,11 @@ ${lanes.join(`
|
|
148739
148739
|
}
|
148740
148740
|
function getEffectiveLines(getLineDifference) {
|
148741
148741
|
Debug.assert(!!preserveSourceNewlines);
|
148742
|
-
const
|
148743
|
-
if (
|
148742
|
+
const lines = getLineDifference(true);
|
148743
|
+
if (lines === 0) {
|
148744
148744
|
return getLineDifference(false);
|
148745
148745
|
}
|
148746
|
-
return
|
148746
|
+
return lines;
|
148747
148747
|
}
|
148748
148748
|
function writeLineSeparatorsAndIndentBefore(node, parent2) {
|
148749
148749
|
const leadingNewlines = preserveSourceNewlines && getLeadingLineTerminatorCount(parent2, node, 0);
|
@@ -159029,7 +159029,7 @@ ${lanes.join(`
|
|
159029
159029
|
function generateOptionOutput(sys2, option, rightAlignOfLeft, leftAlignOfRight) {
|
159030
159030
|
var _a;
|
159031
159031
|
const text = [];
|
159032
|
-
const
|
159032
|
+
const colors2 = createColors(sys2);
|
159033
159033
|
const name2 = getDisplayNameTextOfOption(option);
|
159034
159034
|
const valueCandidates = getValueCandidate(option);
|
159035
159035
|
const defaultValueDescription = typeof option.defaultValueDescription === "object" ? getDiagnosticText(option.defaultValueDescription) : formatDefaultValue(option.defaultValueDescription, option.type === "list" || option.type === "listOrElement" ? option.element.type : option.type);
|
@@ -159050,7 +159050,7 @@ ${lanes.join(`
|
|
159050
159050
|
}
|
159051
159051
|
text.push(sys2.newLine);
|
159052
159052
|
} else {
|
159053
|
-
text.push(
|
159053
|
+
text.push(colors2.blue(name2), sys2.newLine);
|
159054
159054
|
if (option.description) {
|
159055
159055
|
const description3 = getDiagnosticText(option.description);
|
159056
159056
|
text.push(description3);
|
@@ -159095,7 +159095,7 @@ ${lanes.join(`
|
|
159095
159095
|
if (isFirstLine) {
|
159096
159096
|
curLeft = left.padStart(rightAlignOfLeft2);
|
159097
159097
|
curLeft = curLeft.padEnd(leftAlignOfRight2);
|
159098
|
-
curLeft = colorLeft ?
|
159098
|
+
curLeft = colorLeft ? colors2.blue(curLeft) : curLeft;
|
159099
159099
|
} else {
|
159100
159100
|
curLeft = "".padStart(leftAlignOfRight2);
|
159101
159101
|
}
|
@@ -159164,15 +159164,15 @@ ${lanes.join(`
|
|
159164
159164
|
}
|
159165
159165
|
const rightAlignOfLeftPart = maxLength2 + 2;
|
159166
159166
|
const leftAlignOfRightPart = rightAlignOfLeftPart + 2;
|
159167
|
-
let
|
159167
|
+
let lines = [];
|
159168
159168
|
for (const option of optionsList) {
|
159169
159169
|
const tmp = generateOptionOutput(sys2, option, rightAlignOfLeftPart, leftAlignOfRightPart);
|
159170
|
-
|
159170
|
+
lines = [...lines, ...tmp];
|
159171
159171
|
}
|
159172
|
-
if (
|
159173
|
-
|
159172
|
+
if (lines[lines.length - 2] !== sys2.newLine) {
|
159173
|
+
lines.push(sys2.newLine);
|
159174
159174
|
}
|
159175
|
-
return
|
159175
|
+
return lines;
|
159176
159176
|
}
|
159177
159177
|
function generateSectionOptionsOutput(sys2, sectionName, options, subCategory, beforeOptionsDescription, afterOptionsDescription) {
|
159178
159178
|
let res = [];
|
@@ -159207,9 +159207,9 @@ ${lanes.join(`
|
|
159207
159207
|
return res;
|
159208
159208
|
}
|
159209
159209
|
function printEasyHelp(sys2, simpleOptions) {
|
159210
|
-
const
|
159210
|
+
const colors2 = createColors(sys2);
|
159211
159211
|
let output = [...getHeader(sys2, `${getDiagnosticText(Diagnostics.tsc_Colon_The_TypeScript_Compiler)} - ${getDiagnosticText(Diagnostics.Version_0, version)}`)];
|
159212
|
-
output.push(
|
159212
|
+
output.push(colors2.bold(getDiagnosticText(Diagnostics.COMMON_COMMANDS)) + sys2.newLine + sys2.newLine);
|
159213
159213
|
example("tsc", Diagnostics.Compiles_the_current_project_tsconfig_json_in_the_working_directory);
|
159214
159214
|
example("tsc app.ts util.ts", Diagnostics.Ignoring_tsconfig_json_compiles_the_specified_files_with_default_compiler_options);
|
159215
159215
|
example("tsc -b", Diagnostics.Build_a_composite_project_in_the_working_directory);
|
@@ -159230,7 +159230,7 @@ ${lanes.join(`
|
|
159230
159230
|
function example(ex, desc) {
|
159231
159231
|
const examples = typeof ex === "string" ? [ex] : ex;
|
159232
159232
|
for (const example2 of examples) {
|
159233
|
-
output.push(" " +
|
159233
|
+
output.push(" " + colors2.blue(example2) + sys2.newLine);
|
159234
159234
|
}
|
159235
159235
|
output.push(" " + getDiagnosticText(desc) + sys2.newLine + sys2.newLine);
|
159236
159236
|
}
|
@@ -159253,12 +159253,12 @@ ${lanes.join(`
|
|
159253
159253
|
}
|
159254
159254
|
function getHeader(sys2, message) {
|
159255
159255
|
var _a;
|
159256
|
-
const
|
159256
|
+
const colors2 = createColors(sys2);
|
159257
159257
|
const header = [];
|
159258
159258
|
const terminalWidth = ((_a = sys2.getWidthOfTerminal) == null ? undefined : _a.call(sys2)) ?? 0;
|
159259
159259
|
const tsIconLength = 5;
|
159260
|
-
const tsIconFirstLine =
|
159261
|
-
const tsIconSecondLine =
|
159260
|
+
const tsIconFirstLine = colors2.blueBackground("".padStart(tsIconLength));
|
159261
|
+
const tsIconSecondLine = colors2.blueBackground(colors2.brightWhite("TS ".padStart(tsIconLength)));
|
159262
159262
|
if (terminalWidth >= message.length + tsIconLength) {
|
159263
159263
|
const rightAlign = terminalWidth > 120 ? 120 : terminalWidth;
|
159264
159264
|
const leftAlign = rightAlign - tsIconLength;
|
@@ -210964,9 +210964,9 @@ Additional information: BADCLIENT: Bad error code, ${badCode} not found in range
|
|
210964
210964
|
insertedText = this.initialText + this.trailingText;
|
210965
210965
|
}
|
210966
210966
|
const lm = LineIndex.linesFromText(insertedText);
|
210967
|
-
const
|
210968
|
-
if (
|
210969
|
-
|
210967
|
+
const lines = lm.lines;
|
210968
|
+
if (lines.length > 1 && lines[lines.length - 1] === "") {
|
210969
|
+
lines.pop();
|
210970
210970
|
}
|
210971
210971
|
let branchParent;
|
210972
210972
|
let lastZeroCount;
|
@@ -210985,13 +210985,13 @@ Additional information: BADCLIENT: Bad error code, ${badCode} not found in range
|
|
210985
210985
|
branchParent.remove(lastZeroCount);
|
210986
210986
|
}
|
210987
210987
|
const leafNode = this.startPath[this.startPath.length - 1];
|
210988
|
-
if (
|
210989
|
-
leafNode.text =
|
210990
|
-
if (
|
210991
|
-
let insertedNodes = new Array(
|
210988
|
+
if (lines.length > 0) {
|
210989
|
+
leafNode.text = lines[0];
|
210990
|
+
if (lines.length > 1) {
|
210991
|
+
let insertedNodes = new Array(lines.length - 1);
|
210992
210992
|
let startNode2 = leafNode;
|
210993
|
-
for (let i2 = 1;i2 <
|
210994
|
-
insertedNodes[i2 - 1] = new LineLeaf(
|
210993
|
+
for (let i2 = 1;i2 < lines.length; i2++) {
|
210994
|
+
insertedNodes[i2 - 1] = new LineLeaf(lines[i2]);
|
210995
210995
|
}
|
210996
210996
|
let pathIndex = this.startPath.length - 2;
|
210997
210997
|
while (pathIndex >= 0) {
|
@@ -211261,11 +211261,11 @@ Additional information: BADCLIENT: Bad error code, ${badCode} not found in range
|
|
211261
211261
|
return { absolutePosition: this.root.charCount(), lineText: undefined };
|
211262
211262
|
}
|
211263
211263
|
}
|
211264
|
-
load(
|
211265
|
-
if (
|
211264
|
+
load(lines) {
|
211265
|
+
if (lines.length > 0) {
|
211266
211266
|
const leaves = [];
|
211267
|
-
for (let i2 = 0;i2 <
|
211268
|
-
leaves[i2] = new LineLeaf(
|
211267
|
+
for (let i2 = 0;i2 < lines.length; i2++) {
|
211268
|
+
leaves[i2] = new LineLeaf(lines[i2]);
|
211269
211269
|
}
|
211270
211270
|
this.root = _LineIndex.buildTreeFromBottom(leaves);
|
211271
211271
|
} else {
|
@@ -211368,18 +211368,18 @@ Additional information: BADCLIENT: Bad error code, ${badCode} not found in range
|
|
211368
211368
|
if (lineMap.length === 0) {
|
211369
211369
|
return { lines: [], lineMap };
|
211370
211370
|
}
|
211371
|
-
const
|
211371
|
+
const lines = new Array(lineMap.length);
|
211372
211372
|
const lc = lineMap.length - 1;
|
211373
211373
|
for (let lmi = 0;lmi < lc; lmi++) {
|
211374
|
-
|
211374
|
+
lines[lmi] = text.substring(lineMap[lmi], lineMap[lmi + 1]);
|
211375
211375
|
}
|
211376
211376
|
const endText = text.substring(lineMap[lc]);
|
211377
211377
|
if (endText.length > 0) {
|
211378
|
-
|
211378
|
+
lines[lc] = endText;
|
211379
211379
|
} else {
|
211380
|
-
|
211380
|
+
lines.pop();
|
211381
211381
|
}
|
211382
|
-
return { lines
|
211382
|
+
return { lines, lineMap };
|
211383
211383
|
}
|
211384
211384
|
};
|
211385
211385
|
var LineNode = class _LineNode {
|
@@ -212450,7 +212450,7 @@ async function* streamBody(e4) {
|
|
212450
212450
|
}
|
212451
212451
|
}
|
212452
212452
|
}
|
212453
|
-
async function*
|
212453
|
+
async function* split(e4, r3) {
|
212454
212454
|
var a4 = "";
|
212455
212455
|
var n3;
|
212456
212456
|
for await (var t4 of e4) {
|
@@ -212484,7 +212484,7 @@ function makeFetchSource(e4, r3, a4) {
|
|
212484
212484
|
var n5 = "--" + (a6 ? a6[1] : "-");
|
212485
212485
|
var t5 = true;
|
212486
212486
|
var i4;
|
212487
|
-
for await (var o4 of
|
212487
|
+
for await (var o4 of split(streamBody(r5), `\r
|
212488
212488
|
` + n5)) {
|
212489
212489
|
if (t5) {
|
212490
212490
|
t5 = false;
|
@@ -212517,7 +212517,7 @@ function makeFetchSource(e4, r3, a4) {
|
|
212517
212517
|
} else if (/text\/event-stream/i.test(o3)) {
|
212518
212518
|
s2 = async function* parseEventStream(e6) {
|
212519
212519
|
var r5;
|
212520
|
-
for await (var a6 of
|
212520
|
+
for await (var a6 of split(streamBody(e6), `
|
212521
212521
|
|
212522
212522
|
`)) {
|
212523
212523
|
var n5 = a6.match(S);
|
@@ -232122,8 +232122,8 @@ var require_lib13 = __commonJS((exports, module) => {
|
|
232122
232122
|
function fetch2(input, options) {
|
232123
232123
|
return nodeFetch.fetch(input, options);
|
232124
232124
|
}
|
232125
|
-
for (const
|
232126
|
-
fetch2[
|
232125
|
+
for (const key5 in nodeFetch) {
|
232126
|
+
fetch2[key5] = nodeFetch[key5];
|
232127
232127
|
}
|
232128
232128
|
module.exports = fetch2;
|
232129
232129
|
});
|
@@ -232216,11 +232216,11 @@ var require_proxy = __commonJS((exports) => {
|
|
232216
232216
|
return hasRequiredSymbols$4 || (hasRequiredSymbols$4 = 1, symbols$4 = { kClose: Symbol("close"), kDestroy: Symbol("destroy"), kDispatch: Symbol("dispatch"), kUrl: Symbol("url"), kWriting: Symbol("writing"), kResuming: Symbol("resuming"), kQueue: Symbol("queue"), kConnect: Symbol("connect"), kConnecting: Symbol("connecting"), kKeepAliveDefaultTimeout: Symbol("default keep alive timeout"), kKeepAliveMaxTimeout: Symbol("max keep alive timeout"), kKeepAliveTimeoutThreshold: Symbol("keep alive timeout threshold"), kKeepAliveTimeoutValue: Symbol("keep alive timeout"), kKeepAlive: Symbol("keep alive"), kHeadersTimeout: Symbol("headers timeout"), kBodyTimeout: Symbol("body timeout"), kServerName: Symbol("server name"), kLocalAddress: Symbol("local address"), kHost: Symbol("host"), kNoRef: Symbol("no ref"), kBodyUsed: Symbol("used"), kBody: Symbol("abstracted request body"), kRunning: Symbol("running"), kBlocking: Symbol("blocking"), kPending: Symbol("pending"), kSize: Symbol("size"), kBusy: Symbol("busy"), kQueued: Symbol("queued"), kFree: Symbol("free"), kConnected: Symbol("connected"), kClosed: Symbol("closed"), kNeedDrain: Symbol("need drain"), kReset: Symbol("reset"), kDestroyed: Symbol.for("nodejs.stream.destroyed"), kResume: Symbol("resume"), kOnError: Symbol("on error"), kMaxHeadersSize: Symbol("max headers size"), kRunningIdx: Symbol("running index"), kPendingIdx: Symbol("pending index"), kError: Symbol("error"), kClients: Symbol("clients"), kClient: Symbol("client"), kParser: Symbol("parser"), kOnDestroyed: Symbol("destroy callbacks"), kPipelining: Symbol("pipelining"), kSocket: Symbol("socket"), kHostHeader: Symbol("host header"), kConnector: Symbol("connector"), kStrictContentLength: Symbol("strict content length"), kMaxRedirections: Symbol("maxRedirections"), kMaxRequests: Symbol("maxRequestsPerClient"), kProxy: Symbol("proxy agent options"), kCounter: Symbol("socket request counter"), kInterceptors: Symbol("dispatch interceptors"), kMaxResponseSize: Symbol("max response size"), kHTTP2Session: Symbol("http2Session"), kHTTP2SessionState: Symbol("http2Session state"), kRetryHandlerDefaultRetry: Symbol("retry agent default retry"), kConstruct: Symbol("constructable"), kListeners: Symbol("listeners"), kHTTPContext: Symbol("http context"), kMaxConcurrentStreams: Symbol("max concurrent streams"), kNoProxyAgent: Symbol("no proxy agent"), kHttpProxyAgent: Symbol("http proxy agent"), kHttpsProxyAgent: Symbol("https proxy agent") }), symbols$4;
|
232217
232217
|
}
|
232218
232218
|
e10(requireSymbols$4, "requireSymbols$4");
|
232219
|
-
var
|
232219
|
+
var errors5;
|
232220
232220
|
var hasRequiredErrors;
|
232221
232221
|
function requireErrors() {
|
232222
232222
|
if (hasRequiredErrors)
|
232223
|
-
return
|
232223
|
+
return errors5;
|
232224
232224
|
hasRequiredErrors = 1;
|
232225
232225
|
|
232226
232226
|
class A5 extends Error {
|
@@ -232429,7 +232429,7 @@ var require_proxy = __commonJS((exports) => {
|
|
232429
232429
|
super(i6, { cause: k5, ...F3 ?? {} }), this.name = "SecureProxyConnectionError", this.message = i6 || "Secure Proxy Connection failed", this.code = "UND_ERR_PRX_TLS", this.cause = k5;
|
232430
232430
|
}
|
232431
232431
|
}
|
232432
|
-
return
|
232432
|
+
return errors5 = { AbortError: Q4, HTTPParserError: Y4, UndiciError: A5, HeadersTimeoutError: c3, HeadersOverflowError: E6, BodyTimeoutError: t8, RequestContentLengthMismatchError: r6, ConnectTimeoutError: p6, ResponseStatusCodeError: B4, InvalidArgumentError: f5, InvalidReturnValueError: l3, RequestAbortedError: u6, ClientDestroyedError: a7, ClientClosedError: g5, InformationalError: n6, SocketError: d6, NotSupportedError: N7, ResponseContentLengthMismatchError: o8, BalancedPoolMissingUpstreamError: M5, ResponseExceededMaxSizeError: J4, RequestRetryError: V5, ResponseError: H4, SecureProxyConnectionError: h8 }, errors5;
|
232433
232433
|
}
|
232434
232434
|
e10(requireErrors, "requireErrors");
|
232435
232435
|
var constants$4;
|
@@ -242380,11 +242380,11 @@ var require_visit = __commonJS((exports) => {
|
|
242380
242380
|
visit2.BREAK = BREAK;
|
242381
242381
|
visit2.SKIP = SKIP;
|
242382
242382
|
visit2.REMOVE = REMOVE;
|
242383
|
-
function visit_(
|
242384
|
-
const ctrl = callVisitor(
|
242383
|
+
function visit_(key5, node, visitor, path6) {
|
242384
|
+
const ctrl = callVisitor(key5, node, visitor, path6);
|
242385
242385
|
if (identity2.isNode(ctrl) || identity2.isPair(ctrl)) {
|
242386
|
-
replaceNode(
|
242387
|
-
return visit_(
|
242386
|
+
replaceNode(key5, path6, ctrl);
|
242387
|
+
return visit_(key5, ctrl, visitor, path6);
|
242388
242388
|
}
|
242389
242389
|
if (typeof ctrl !== "symbol") {
|
242390
242390
|
if (identity2.isCollection(node)) {
|
@@ -242428,11 +242428,11 @@ var require_visit = __commonJS((exports) => {
|
|
242428
242428
|
visitAsync.BREAK = BREAK;
|
242429
242429
|
visitAsync.SKIP = SKIP;
|
242430
242430
|
visitAsync.REMOVE = REMOVE;
|
242431
|
-
async function visitAsync_(
|
242432
|
-
const ctrl = await callVisitor(
|
242431
|
+
async function visitAsync_(key5, node, visitor, path6) {
|
242432
|
+
const ctrl = await callVisitor(key5, node, visitor, path6);
|
242433
242433
|
if (identity2.isNode(ctrl) || identity2.isPair(ctrl)) {
|
242434
|
-
replaceNode(
|
242435
|
-
return visitAsync_(
|
242434
|
+
replaceNode(key5, path6, ctrl);
|
242435
|
+
return visitAsync_(key5, ctrl, visitor, path6);
|
242436
242436
|
}
|
242437
242437
|
if (typeof ctrl !== "symbol") {
|
242438
242438
|
if (identity2.isCollection(node)) {
|
@@ -242482,27 +242482,27 @@ var require_visit = __commonJS((exports) => {
|
|
242482
242482
|
}
|
242483
242483
|
return visitor;
|
242484
242484
|
}
|
242485
|
-
function callVisitor(
|
242485
|
+
function callVisitor(key5, node, visitor, path6) {
|
242486
242486
|
if (typeof visitor === "function")
|
242487
|
-
return visitor(
|
242487
|
+
return visitor(key5, node, path6);
|
242488
242488
|
if (identity2.isMap(node))
|
242489
|
-
return visitor.Map?.(
|
242489
|
+
return visitor.Map?.(key5, node, path6);
|
242490
242490
|
if (identity2.isSeq(node))
|
242491
|
-
return visitor.Seq?.(
|
242491
|
+
return visitor.Seq?.(key5, node, path6);
|
242492
242492
|
if (identity2.isPair(node))
|
242493
|
-
return visitor.Pair?.(
|
242493
|
+
return visitor.Pair?.(key5, node, path6);
|
242494
242494
|
if (identity2.isScalar(node))
|
242495
|
-
return visitor.Scalar?.(
|
242495
|
+
return visitor.Scalar?.(key5, node, path6);
|
242496
242496
|
if (identity2.isAlias(node))
|
242497
|
-
return visitor.Alias?.(
|
242497
|
+
return visitor.Alias?.(key5, node, path6);
|
242498
242498
|
return;
|
242499
242499
|
}
|
242500
|
-
function replaceNode(
|
242500
|
+
function replaceNode(key5, path6, node) {
|
242501
242501
|
const parent = path6[path6.length - 1];
|
242502
242502
|
if (identity2.isCollection(parent)) {
|
242503
|
-
parent.items[
|
242503
|
+
parent.items[key5] = node;
|
242504
242504
|
} else if (identity2.isPair(parent)) {
|
242505
|
-
if (
|
242505
|
+
if (key5 === "key")
|
242506
242506
|
parent.key = node;
|
242507
242507
|
else
|
242508
242508
|
parent.value = node;
|
@@ -242734,7 +242734,7 @@ var require_anchors = __commonJS((exports) => {
|
|
242734
242734
|
|
242735
242735
|
// ../../node_modules/yaml/dist/doc/applyReviver.js
|
242736
242736
|
var require_applyReviver = __commonJS((exports) => {
|
242737
|
-
function applyReviver(reviver, obj,
|
242737
|
+
function applyReviver(reviver, obj, key5, val) {
|
242738
242738
|
if (val && typeof val === "object") {
|
242739
242739
|
if (Array.isArray(val)) {
|
242740
242740
|
for (let i7 = 0, len = val.length;i7 < len; ++i7) {
|
@@ -242774,7 +242774,7 @@ var require_applyReviver = __commonJS((exports) => {
|
|
242774
242774
|
}
|
242775
242775
|
}
|
242776
242776
|
}
|
242777
|
-
return reviver.call(obj,
|
242777
|
+
return reviver.call(obj, key5, val);
|
242778
242778
|
}
|
242779
242779
|
exports.applyReviver = applyReviver;
|
242780
242780
|
});
|
@@ -243092,29 +243092,29 @@ var require_Collection = __commonJS((exports) => {
|
|
243092
243092
|
if (isEmptyPath(path6))
|
243093
243093
|
this.add(value4);
|
243094
243094
|
else {
|
243095
|
-
const [
|
243096
|
-
const node = this.get(
|
243095
|
+
const [key5, ...rest] = path6;
|
243096
|
+
const node = this.get(key5, true);
|
243097
243097
|
if (identity2.isCollection(node))
|
243098
243098
|
node.addIn(rest, value4);
|
243099
243099
|
else if (node === undefined && this.schema)
|
243100
|
-
this.set(
|
243100
|
+
this.set(key5, collectionFromPath(this.schema, rest, value4));
|
243101
243101
|
else
|
243102
|
-
throw new Error(`Expected YAML collection at ${
|
243102
|
+
throw new Error(`Expected YAML collection at ${key5}. Remaining path: ${rest}`);
|
243103
243103
|
}
|
243104
243104
|
}
|
243105
243105
|
deleteIn(path6) {
|
243106
|
-
const [
|
243106
|
+
const [key5, ...rest] = path6;
|
243107
243107
|
if (rest.length === 0)
|
243108
|
-
return this.delete(
|
243109
|
-
const node = this.get(
|
243108
|
+
return this.delete(key5);
|
243109
|
+
const node = this.get(key5, true);
|
243110
243110
|
if (identity2.isCollection(node))
|
243111
243111
|
return node.deleteIn(rest);
|
243112
243112
|
else
|
243113
|
-
throw new Error(`Expected YAML collection at ${
|
243113
|
+
throw new Error(`Expected YAML collection at ${key5}. Remaining path: ${rest}`);
|
243114
243114
|
}
|
243115
243115
|
getIn(path6, keepScalar) {
|
243116
|
-
const [
|
243117
|
-
const node = this.get(
|
243116
|
+
const [key5, ...rest] = path6;
|
243117
|
+
const node = this.get(key5, true);
|
243118
243118
|
if (rest.length === 0)
|
243119
243119
|
return !keepScalar && identity2.isScalar(node) ? node.value : node;
|
243120
243120
|
else
|
@@ -243129,24 +243129,24 @@ var require_Collection = __commonJS((exports) => {
|
|
243129
243129
|
});
|
243130
243130
|
}
|
243131
243131
|
hasIn(path6) {
|
243132
|
-
const [
|
243132
|
+
const [key5, ...rest] = path6;
|
243133
243133
|
if (rest.length === 0)
|
243134
|
-
return this.has(
|
243135
|
-
const node = this.get(
|
243134
|
+
return this.has(key5);
|
243135
|
+
const node = this.get(key5, true);
|
243136
243136
|
return identity2.isCollection(node) ? node.hasIn(rest) : false;
|
243137
243137
|
}
|
243138
243138
|
setIn(path6, value4) {
|
243139
|
-
const [
|
243139
|
+
const [key5, ...rest] = path6;
|
243140
243140
|
if (rest.length === 0) {
|
243141
|
-
this.set(
|
243141
|
+
this.set(key5, value4);
|
243142
243142
|
} else {
|
243143
|
-
const node = this.get(
|
243143
|
+
const node = this.get(key5, true);
|
243144
243144
|
if (identity2.isCollection(node))
|
243145
243145
|
node.setIn(rest, value4);
|
243146
243146
|
else if (node === undefined && this.schema)
|
243147
|
-
this.set(
|
243147
|
+
this.set(key5, collectionFromPath(this.schema, rest, value4));
|
243148
243148
|
else
|
243149
|
-
throw new Error(`Expected YAML collection at ${
|
243149
|
+
throw new Error(`Expected YAML collection at ${key5}. Remaining path: ${rest}`);
|
243150
243150
|
}
|
243151
243151
|
}
|
243152
243152
|
}
|
@@ -243734,19 +243734,19 @@ var require_stringifyPair = __commonJS((exports) => {
|
|
243734
243734
|
var Scalar = require_Scalar();
|
243735
243735
|
var stringify3 = require_stringify();
|
243736
243736
|
var stringifyComment = require_stringifyComment();
|
243737
|
-
function stringifyPair2({ key:
|
243737
|
+
function stringifyPair2({ key: key5, value: value4 }, ctx, onComment, onChompKeep) {
|
243738
243738
|
const { allNullValues, doc, indent: indent2, indentStep, options: { commentString, indentSeq, simpleKeys } } = ctx;
|
243739
|
-
let keyComment = identity2.isNode(
|
243739
|
+
let keyComment = identity2.isNode(key5) && key5.comment || null;
|
243740
243740
|
if (simpleKeys) {
|
243741
243741
|
if (keyComment) {
|
243742
243742
|
throw new Error("With simple keys, key nodes cannot have comments");
|
243743
243743
|
}
|
243744
|
-
if (identity2.isCollection(
|
243744
|
+
if (identity2.isCollection(key5) || !identity2.isNode(key5) && typeof key5 === "object") {
|
243745
243745
|
const msg = "With simple keys, collection cannot be used as a key value";
|
243746
243746
|
throw new Error(msg);
|
243747
243747
|
}
|
243748
243748
|
}
|
243749
|
-
let explicitKey = !simpleKeys && (!
|
243749
|
+
let explicitKey = !simpleKeys && (!key5 || keyComment && value4 == null && !ctx.inFlow || identity2.isCollection(key5) || (identity2.isScalar(key5) ? key5.type === Scalar.Scalar.BLOCK_FOLDED || key5.type === Scalar.Scalar.BLOCK_LITERAL : typeof key5 === "object"));
|
243750
243750
|
ctx = Object.assign({}, ctx, {
|
243751
243751
|
allNullValues: false,
|
243752
243752
|
implicitKey: !explicitKey && (simpleKeys || !allNullValues),
|
@@ -243754,7 +243754,7 @@ var require_stringifyPair = __commonJS((exports) => {
|
|
243754
243754
|
});
|
243755
243755
|
let keyCommentDone = false;
|
243756
243756
|
let chompKeep = false;
|
243757
|
-
let str = stringify3.stringify(
|
243757
|
+
let str = stringify3.stringify(key5, ctx, () => keyCommentDone = true, () => chompKeep = true);
|
243758
243758
|
if (!explicitKey && !ctx.inFlow && str.length > 1024) {
|
243759
243759
|
if (simpleKeys)
|
243760
243760
|
throw new Error("With simple keys, single line scalar must not span more than 1024 characters");
|
@@ -243898,7 +243898,7 @@ var require_merge = __commonJS((exports) => {
|
|
243898
243898
|
}),
|
243899
243899
|
stringify: () => MERGE_KEY
|
243900
243900
|
};
|
243901
|
-
var isMergeKey = (ctx,
|
243901
|
+
var isMergeKey = (ctx, key5) => (merge3.identify(key5) || identity2.isScalar(key5) && (!key5.type || key5.type === Scalar.Scalar.PLAIN) && merge3.identify(key5.value)) && ctx?.doc.schema.tags.some((tag) => tag.tag === merge3.tag && tag.default);
|
243902
243902
|
function addMergeToJSMap(ctx, map3, value4) {
|
243903
243903
|
value4 = ctx && identity2.isAlias(value4) ? value4.resolve(ctx.doc) : value4;
|
243904
243904
|
if (identity2.isSeq(value4))
|
@@ -243915,14 +243915,14 @@ var require_merge = __commonJS((exports) => {
|
|
243915
243915
|
if (!identity2.isMap(source))
|
243916
243916
|
throw new Error("Merge sources must be maps or map aliases");
|
243917
243917
|
const srcMap = source.toJSON(null, ctx, Map);
|
243918
|
-
for (const [
|
243918
|
+
for (const [key5, value5] of srcMap) {
|
243919
243919
|
if (map3 instanceof Map) {
|
243920
|
-
if (!map3.has(
|
243921
|
-
map3.set(
|
243920
|
+
if (!map3.has(key5))
|
243921
|
+
map3.set(key5, value5);
|
243922
243922
|
} else if (map3 instanceof Set) {
|
243923
|
-
map3.add(
|
243924
|
-
} else if (!Object.prototype.hasOwnProperty.call(map3,
|
243925
|
-
Object.defineProperty(map3,
|
243923
|
+
map3.add(key5);
|
243924
|
+
} else if (!Object.prototype.hasOwnProperty.call(map3, key5)) {
|
243925
|
+
Object.defineProperty(map3, key5, {
|
243926
243926
|
value: value5,
|
243927
243927
|
writable: true,
|
243928
243928
|
enumerable: true,
|
@@ -243944,19 +243944,19 @@ var require_addPairToJSMap = __commonJS((exports) => {
|
|
243944
243944
|
var stringify3 = require_stringify();
|
243945
243945
|
var identity2 = require_identity();
|
243946
243946
|
var toJS = require_toJS();
|
243947
|
-
function addPairToJSMap(ctx, map3, { key:
|
243948
|
-
if (identity2.isNode(
|
243949
|
-
|
243950
|
-
else if (merge3.isMergeKey(ctx,
|
243947
|
+
function addPairToJSMap(ctx, map3, { key: key5, value: value4 }) {
|
243948
|
+
if (identity2.isNode(key5) && key5.addToJSMap)
|
243949
|
+
key5.addToJSMap(ctx, map3, value4);
|
243950
|
+
else if (merge3.isMergeKey(ctx, key5))
|
243951
243951
|
merge3.addMergeToJSMap(ctx, map3, value4);
|
243952
243952
|
else {
|
243953
|
-
const jsKey = toJS.toJS(
|
243953
|
+
const jsKey = toJS.toJS(key5, "", ctx);
|
243954
243954
|
if (map3 instanceof Map) {
|
243955
243955
|
map3.set(jsKey, toJS.toJS(value4, jsKey, ctx));
|
243956
243956
|
} else if (map3 instanceof Set) {
|
243957
243957
|
map3.add(jsKey);
|
243958
243958
|
} else {
|
243959
|
-
const stringKey = stringifyKey(
|
243959
|
+
const stringKey = stringifyKey(key5, jsKey, ctx);
|
243960
243960
|
const jsValue = toJS.toJS(value4, stringKey, ctx);
|
243961
243961
|
if (stringKey in map3)
|
243962
243962
|
Object.defineProperty(map3, stringKey, {
|
@@ -243971,19 +243971,19 @@ var require_addPairToJSMap = __commonJS((exports) => {
|
|
243971
243971
|
}
|
243972
243972
|
return map3;
|
243973
243973
|
}
|
243974
|
-
function stringifyKey(
|
243974
|
+
function stringifyKey(key5, jsKey, ctx) {
|
243975
243975
|
if (jsKey === null)
|
243976
243976
|
return "";
|
243977
243977
|
if (typeof jsKey !== "object")
|
243978
243978
|
return String(jsKey);
|
243979
|
-
if (identity2.isNode(
|
243979
|
+
if (identity2.isNode(key5) && ctx?.doc) {
|
243980
243980
|
const strCtx = stringify3.createStringifyContext(ctx.doc, {});
|
243981
243981
|
strCtx.anchors = new Set;
|
243982
243982
|
for (const node of ctx.anchors.keys())
|
243983
243983
|
strCtx.anchors.add(node.anchor);
|
243984
243984
|
strCtx.inFlow = true;
|
243985
243985
|
strCtx.inStringifyKey = true;
|
243986
|
-
const strKey =
|
243986
|
+
const strKey = key5.toString(strCtx);
|
243987
243987
|
if (!ctx.mapKeyWarned) {
|
243988
243988
|
let jsonStr = JSON.stringify(strKey);
|
243989
243989
|
if (jsonStr.length > 40)
|
@@ -244004,25 +244004,25 @@ var require_Pair = __commonJS((exports) => {
|
|
244004
244004
|
var stringifyPair2 = require_stringifyPair();
|
244005
244005
|
var addPairToJSMap = require_addPairToJSMap();
|
244006
244006
|
var identity2 = require_identity();
|
244007
|
-
function createPair(
|
244008
|
-
const k6 = createNode.createNode(
|
244007
|
+
function createPair(key5, value4, ctx) {
|
244008
|
+
const k6 = createNode.createNode(key5, undefined, ctx);
|
244009
244009
|
const v7 = createNode.createNode(value4, undefined, ctx);
|
244010
244010
|
return new Pair(k6, v7);
|
244011
244011
|
}
|
244012
244012
|
|
244013
244013
|
class Pair {
|
244014
|
-
constructor(
|
244014
|
+
constructor(key5, value4 = null) {
|
244015
244015
|
Object.defineProperty(this, identity2.NODE_TYPE, { value: identity2.PAIR });
|
244016
|
-
this.key =
|
244016
|
+
this.key = key5;
|
244017
244017
|
this.value = value4;
|
244018
244018
|
}
|
244019
244019
|
clone(schema) {
|
244020
|
-
let { key:
|
244021
|
-
if (identity2.isNode(
|
244022
|
-
|
244020
|
+
let { key: key5, value: value4 } = this;
|
244021
|
+
if (identity2.isNode(key5))
|
244022
|
+
key5 = key5.clone(schema);
|
244023
244023
|
if (identity2.isNode(value4))
|
244024
244024
|
value4 = value4.clone(schema);
|
244025
|
-
return new Pair(
|
244025
|
+
return new Pair(key5, value4);
|
244026
244026
|
}
|
244027
244027
|
toJSON(_6, ctx) {
|
244028
244028
|
const pair = ctx?.mapAsMap ? new Map : {};
|
@@ -244189,11 +244189,11 @@ var require_YAMLMap = __commonJS((exports) => {
|
|
244189
244189
|
var identity2 = require_identity();
|
244190
244190
|
var Pair = require_Pair();
|
244191
244191
|
var Scalar = require_Scalar();
|
244192
|
-
function findPair(items,
|
244193
|
-
const k6 = identity2.isScalar(
|
244192
|
+
function findPair(items, key5) {
|
244193
|
+
const k6 = identity2.isScalar(key5) ? key5.value : key5;
|
244194
244194
|
for (const it2 of items) {
|
244195
244195
|
if (identity2.isPair(it2)) {
|
244196
|
-
if (it2.key ===
|
244196
|
+
if (it2.key === key5 || it2.key === k6)
|
244197
244197
|
return it2;
|
244198
244198
|
if (identity2.isScalar(it2.key) && it2.key.value === k6)
|
244199
244199
|
return it2;
|
@@ -244213,20 +244213,20 @@ var require_YAMLMap = __commonJS((exports) => {
|
|
244213
244213
|
static from(schema, obj, ctx) {
|
244214
244214
|
const { keepUndefined, replacer } = ctx;
|
244215
244215
|
const map3 = new this(schema);
|
244216
|
-
const add = (
|
244216
|
+
const add = (key5, value4) => {
|
244217
244217
|
if (typeof replacer === "function")
|
244218
|
-
value4 = replacer.call(obj,
|
244219
|
-
else if (Array.isArray(replacer) && !replacer.includes(
|
244218
|
+
value4 = replacer.call(obj, key5, value4);
|
244219
|
+
else if (Array.isArray(replacer) && !replacer.includes(key5))
|
244220
244220
|
return;
|
244221
244221
|
if (value4 !== undefined || keepUndefined)
|
244222
|
-
map3.items.push(Pair.createPair(
|
244222
|
+
map3.items.push(Pair.createPair(key5, value4, ctx));
|
244223
244223
|
};
|
244224
244224
|
if (obj instanceof Map) {
|
244225
|
-
for (const [
|
244226
|
-
add(
|
244225
|
+
for (const [key5, value4] of obj)
|
244226
|
+
add(key5, value4);
|
244227
244227
|
} else if (obj && typeof obj === "object") {
|
244228
|
-
for (const
|
244229
|
-
add(
|
244228
|
+
for (const key5 of Object.keys(obj))
|
244229
|
+
add(key5, obj[key5]);
|
244230
244230
|
}
|
244231
244231
|
if (typeof schema.sortMapEntries === "function") {
|
244232
244232
|
map3.items.sort(schema.sortMapEntries);
|
@@ -244260,23 +244260,23 @@ var require_YAMLMap = __commonJS((exports) => {
|
|
244260
244260
|
this.items.push(_pair);
|
244261
244261
|
}
|
244262
244262
|
}
|
244263
|
-
delete(
|
244264
|
-
const it2 = findPair(this.items,
|
244263
|
+
delete(key5) {
|
244264
|
+
const it2 = findPair(this.items, key5);
|
244265
244265
|
if (!it2)
|
244266
244266
|
return false;
|
244267
244267
|
const del = this.items.splice(this.items.indexOf(it2), 1);
|
244268
244268
|
return del.length > 0;
|
244269
244269
|
}
|
244270
|
-
get(
|
244271
|
-
const it2 = findPair(this.items,
|
244270
|
+
get(key5, keepScalar) {
|
244271
|
+
const it2 = findPair(this.items, key5);
|
244272
244272
|
const node = it2?.value;
|
244273
244273
|
return (!keepScalar && identity2.isScalar(node) ? node.value : node) ?? undefined;
|
244274
244274
|
}
|
244275
|
-
has(
|
244276
|
-
return !!findPair(this.items,
|
244275
|
+
has(key5) {
|
244276
|
+
return !!findPair(this.items, key5);
|
244277
244277
|
}
|
244278
|
-
set(
|
244279
|
-
this.add(new Pair.Pair(
|
244278
|
+
set(key5, value4) {
|
244279
|
+
this.add(new Pair.Pair(key5, value4), true);
|
244280
244280
|
}
|
244281
244281
|
toJSON(_6, ctx, Type) {
|
244282
244282
|
const map3 = Type ? new Type : ctx?.mapAsMap ? new Map : {};
|
@@ -244347,28 +244347,28 @@ var require_YAMLSeq = __commonJS((exports) => {
|
|
244347
244347
|
add(value4) {
|
244348
244348
|
this.items.push(value4);
|
244349
244349
|
}
|
244350
|
-
delete(
|
244351
|
-
const idx = asItemIndex(
|
244350
|
+
delete(key5) {
|
244351
|
+
const idx = asItemIndex(key5);
|
244352
244352
|
if (typeof idx !== "number")
|
244353
244353
|
return false;
|
244354
244354
|
const del = this.items.splice(idx, 1);
|
244355
244355
|
return del.length > 0;
|
244356
244356
|
}
|
244357
|
-
get(
|
244358
|
-
const idx = asItemIndex(
|
244357
|
+
get(key5, keepScalar) {
|
244358
|
+
const idx = asItemIndex(key5);
|
244359
244359
|
if (typeof idx !== "number")
|
244360
244360
|
return;
|
244361
244361
|
const it2 = this.items[idx];
|
244362
244362
|
return !keepScalar && identity2.isScalar(it2) ? it2.value : it2;
|
244363
244363
|
}
|
244364
|
-
has(
|
244365
|
-
const idx = asItemIndex(
|
244364
|
+
has(key5) {
|
244365
|
+
const idx = asItemIndex(key5);
|
244366
244366
|
return typeof idx === "number" && idx < this.items.length;
|
244367
244367
|
}
|
244368
|
-
set(
|
244369
|
-
const idx = asItemIndex(
|
244368
|
+
set(key5, value4) {
|
244369
|
+
const idx = asItemIndex(key5);
|
244370
244370
|
if (typeof idx !== "number")
|
244371
|
-
throw new Error(`Expected a valid index, not ${
|
244371
|
+
throw new Error(`Expected a valid index, not ${key5}.`);
|
244372
244372
|
const prev = this.items[idx];
|
244373
244373
|
if (identity2.isScalar(prev) && Scalar.isScalarValue(value4))
|
244374
244374
|
prev.value = value4;
|
@@ -244402,8 +244402,8 @@ var require_YAMLSeq = __commonJS((exports) => {
|
|
244402
244402
|
let i7 = 0;
|
244403
244403
|
for (let it2 of obj) {
|
244404
244404
|
if (typeof replacer === "function") {
|
244405
|
-
const
|
244406
|
-
it2 = replacer.call(obj,
|
244405
|
+
const key5 = obj instanceof Set ? it2 : String(i7++);
|
244406
|
+
it2 = replacer.call(obj, key5, it2);
|
244407
244407
|
}
|
244408
244408
|
seq.items.push(createNode.createNode(it2, undefined, ctx));
|
244409
244409
|
}
|
@@ -244411,8 +244411,8 @@ var require_YAMLSeq = __commonJS((exports) => {
|
|
244411
244411
|
return seq;
|
244412
244412
|
}
|
244413
244413
|
}
|
244414
|
-
function asItemIndex(
|
244415
|
-
let idx = identity2.isScalar(
|
244414
|
+
function asItemIndex(key5) {
|
244415
|
+
let idx = identity2.isScalar(key5) ? key5.value : key5;
|
244416
244416
|
if (idx && typeof idx === "string")
|
244417
244417
|
idx = Number(idx);
|
244418
244418
|
return typeof idx === "number" && Number.isInteger(idx) && idx >= 0 ? idx : null;
|
@@ -244713,6 +244713,8 @@ var require_binary = __commonJS((exports) => {
|
|
244713
244713
|
}
|
244714
244714
|
},
|
244715
244715
|
stringify({ comment, type: type4, value: value4 }, ctx, onComment, onChompKeep) {
|
244716
|
+
if (!value4)
|
244717
|
+
return "";
|
244716
244718
|
const buf = value4;
|
244717
244719
|
let str;
|
244718
244720
|
if (typeof node_buffer.Buffer === "function") {
|
@@ -244784,25 +244786,25 @@ ${cn.comment}` : item.comment;
|
|
244784
244786
|
for (let it2 of iterable) {
|
244785
244787
|
if (typeof replacer === "function")
|
244786
244788
|
it2 = replacer.call(iterable, String(i7++), it2);
|
244787
|
-
let
|
244789
|
+
let key5, value4;
|
244788
244790
|
if (Array.isArray(it2)) {
|
244789
244791
|
if (it2.length === 2) {
|
244790
|
-
|
244792
|
+
key5 = it2[0];
|
244791
244793
|
value4 = it2[1];
|
244792
244794
|
} else
|
244793
244795
|
throw new TypeError(`Expected [key, value] tuple: ${it2}`);
|
244794
244796
|
} else if (it2 && it2 instanceof Object) {
|
244795
244797
|
const keys = Object.keys(it2);
|
244796
244798
|
if (keys.length === 1) {
|
244797
|
-
|
244798
|
-
value4 = it2[
|
244799
|
+
key5 = keys[0];
|
244800
|
+
value4 = it2[key5];
|
244799
244801
|
} else {
|
244800
244802
|
throw new TypeError(`Expected tuple with one key, not ${keys.length} keys`);
|
244801
244803
|
}
|
244802
244804
|
} else {
|
244803
|
-
|
244805
|
+
key5 = it2;
|
244804
244806
|
}
|
244805
|
-
pairs2.items.push(Pair.createPair(
|
244807
|
+
pairs2.items.push(Pair.createPair(key5, value4, ctx));
|
244806
244808
|
}
|
244807
244809
|
return pairs2;
|
244808
244810
|
}
|
@@ -244843,16 +244845,16 @@ var require_omap = __commonJS((exports) => {
|
|
244843
244845
|
if (ctx?.onCreate)
|
244844
244846
|
ctx.onCreate(map3);
|
244845
244847
|
for (const pair of this.items) {
|
244846
|
-
let
|
244848
|
+
let key5, value4;
|
244847
244849
|
if (identity2.isPair(pair)) {
|
244848
|
-
|
244849
|
-
value4 = toJS.toJS(pair.value,
|
244850
|
+
key5 = toJS.toJS(pair.key, "", ctx);
|
244851
|
+
value4 = toJS.toJS(pair.value, key5, ctx);
|
244850
244852
|
} else {
|
244851
|
-
|
244853
|
+
key5 = toJS.toJS(pair, "", ctx);
|
244852
244854
|
}
|
244853
|
-
if (map3.has(
|
244855
|
+
if (map3.has(key5))
|
244854
244856
|
throw new Error("Ordered maps must not include duplicate keys");
|
244855
|
-
map3.set(
|
244857
|
+
map3.set(key5, value4);
|
244856
244858
|
}
|
244857
244859
|
return map3;
|
244858
244860
|
}
|
@@ -244873,12 +244875,12 @@ var require_omap = __commonJS((exports) => {
|
|
244873
244875
|
resolve(seq, onError) {
|
244874
244876
|
const pairs$1 = pairs.resolvePairs(seq, onError);
|
244875
244877
|
const seenKeys = [];
|
244876
|
-
for (const { key:
|
244877
|
-
if (identity2.isScalar(
|
244878
|
-
if (seenKeys.includes(
|
244879
|
-
onError(`Ordered maps must not include duplicate keys: ${
|
244878
|
+
for (const { key: key5 } of pairs$1.items) {
|
244879
|
+
if (identity2.isScalar(key5)) {
|
244880
|
+
if (seenKeys.includes(key5.value)) {
|
244881
|
+
onError(`Ordered maps must not include duplicate keys: ${key5.value}`);
|
244880
244882
|
} else {
|
244881
|
-
seenKeys.push(
|
244883
|
+
seenKeys.push(key5.value);
|
244882
244884
|
}
|
244883
244885
|
}
|
244884
244886
|
}
|
@@ -245052,30 +245054,30 @@ var require_set = __commonJS((exports) => {
|
|
245052
245054
|
super(schema);
|
245053
245055
|
this.tag = YAMLSet.tag;
|
245054
245056
|
}
|
245055
|
-
add(
|
245057
|
+
add(key5) {
|
245056
245058
|
let pair;
|
245057
|
-
if (identity2.isPair(
|
245058
|
-
pair =
|
245059
|
-
else if (
|
245060
|
-
pair = new Pair.Pair(
|
245059
|
+
if (identity2.isPair(key5))
|
245060
|
+
pair = key5;
|
245061
|
+
else if (key5 && typeof key5 === "object" && "key" in key5 && "value" in key5 && key5.value === null)
|
245062
|
+
pair = new Pair.Pair(key5.key, null);
|
245061
245063
|
else
|
245062
|
-
pair = new Pair.Pair(
|
245064
|
+
pair = new Pair.Pair(key5, null);
|
245063
245065
|
const prev = YAMLMap.findPair(this.items, pair.key);
|
245064
245066
|
if (!prev)
|
245065
245067
|
this.items.push(pair);
|
245066
245068
|
}
|
245067
|
-
get(
|
245068
|
-
const pair = YAMLMap.findPair(this.items,
|
245069
|
+
get(key5, keepPair) {
|
245070
|
+
const pair = YAMLMap.findPair(this.items, key5);
|
245069
245071
|
return !keepPair && identity2.isPair(pair) ? identity2.isScalar(pair.key) ? pair.key.value : pair.key : pair;
|
245070
245072
|
}
|
245071
|
-
set(
|
245073
|
+
set(key5, value4) {
|
245072
245074
|
if (typeof value4 !== "boolean")
|
245073
245075
|
throw new Error(`Expected boolean value for set(key, value) in a YAML set, not ${typeof value4}`);
|
245074
|
-
const prev = YAMLMap.findPair(this.items,
|
245076
|
+
const prev = YAMLMap.findPair(this.items, key5);
|
245075
245077
|
if (prev && !value4) {
|
245076
245078
|
this.items.splice(this.items.indexOf(prev), 1);
|
245077
245079
|
} else if (!prev && value4) {
|
245078
|
-
this.items.push(new Pair.Pair(
|
245080
|
+
this.items.push(new Pair.Pair(key5));
|
245079
245081
|
}
|
245080
245082
|
}
|
245081
245083
|
toJSON(_6, ctx) {
|
@@ -245199,7 +245201,7 @@ var require_timestamp = __commonJS((exports) => {
|
|
245199
245201
|
}
|
245200
245202
|
return new Date(date);
|
245201
245203
|
},
|
245202
|
-
stringify: ({ value: value4 }) => value4
|
245204
|
+
stringify: ({ value: value4 }) => value4?.toISOString().replace(/(T00:00:00)?\.000Z$/, "") ?? ""
|
245203
245205
|
};
|
245204
245206
|
exports.floatTime = floatTime;
|
245205
245207
|
exports.intTime = intTime;
|
@@ -245310,7 +245312,7 @@ var require_tags = __commonJS((exports) => {
|
|
245310
245312
|
if (Array.isArray(customTags))
|
245311
245313
|
tags = [];
|
245312
245314
|
else {
|
245313
|
-
const keys = Array.from(schemas.keys()).filter((
|
245315
|
+
const keys = Array.from(schemas.keys()).filter((key5) => key5 !== "yaml11").map((key5) => JSON.stringify(key5)).join(", ");
|
245314
245316
|
throw new Error(`Unknown schema "${schemaName}"; use one of ${keys} or define customTags array`);
|
245315
245317
|
}
|
245316
245318
|
}
|
@@ -245326,7 +245328,7 @@ var require_tags = __commonJS((exports) => {
|
|
245326
245328
|
const tagObj = typeof tag === "string" ? tagsByName[tag] : tag;
|
245327
245329
|
if (!tagObj) {
|
245328
245330
|
const tagName = JSON.stringify(tag);
|
245329
|
-
const keys = Object.keys(tagsByName).map((
|
245331
|
+
const keys = Object.keys(tagsByName).map((key5) => JSON.stringify(key5)).join(", ");
|
245330
245332
|
throw new Error(`Unknown custom tag ${tagName}; use one of ${keys}`);
|
245331
245333
|
}
|
245332
245334
|
if (!tags2.includes(tagObj))
|
@@ -245561,13 +245563,13 @@ var require_Document = __commonJS((exports) => {
|
|
245561
245563
|
setAnchors();
|
245562
245564
|
return node;
|
245563
245565
|
}
|
245564
|
-
createPair(
|
245565
|
-
const k6 = this.createNode(
|
245566
|
+
createPair(key5, value4, options = {}) {
|
245567
|
+
const k6 = this.createNode(key5, null, options);
|
245566
245568
|
const v7 = this.createNode(value4, null, options);
|
245567
245569
|
return new Pair.Pair(k6, v7);
|
245568
245570
|
}
|
245569
|
-
delete(
|
245570
|
-
return assertCollection(this.contents) ? this.contents.delete(
|
245571
|
+
delete(key5) {
|
245572
|
+
return assertCollection(this.contents) ? this.contents.delete(key5) : false;
|
245571
245573
|
}
|
245572
245574
|
deleteIn(path6) {
|
245573
245575
|
if (Collection.isEmptyPath(path6)) {
|
@@ -245578,27 +245580,27 @@ var require_Document = __commonJS((exports) => {
|
|
245578
245580
|
}
|
245579
245581
|
return assertCollection(this.contents) ? this.contents.deleteIn(path6) : false;
|
245580
245582
|
}
|
245581
|
-
get(
|
245582
|
-
return identity2.isCollection(this.contents) ? this.contents.get(
|
245583
|
+
get(key5, keepScalar) {
|
245584
|
+
return identity2.isCollection(this.contents) ? this.contents.get(key5, keepScalar) : undefined;
|
245583
245585
|
}
|
245584
245586
|
getIn(path6, keepScalar) {
|
245585
245587
|
if (Collection.isEmptyPath(path6))
|
245586
245588
|
return !keepScalar && identity2.isScalar(this.contents) ? this.contents.value : this.contents;
|
245587
245589
|
return identity2.isCollection(this.contents) ? this.contents.getIn(path6, keepScalar) : undefined;
|
245588
245590
|
}
|
245589
|
-
has(
|
245590
|
-
return identity2.isCollection(this.contents) ? this.contents.has(
|
245591
|
+
has(key5) {
|
245592
|
+
return identity2.isCollection(this.contents) ? this.contents.has(key5) : false;
|
245591
245593
|
}
|
245592
245594
|
hasIn(path6) {
|
245593
245595
|
if (Collection.isEmptyPath(path6))
|
245594
245596
|
return this.contents !== undefined;
|
245595
245597
|
return identity2.isCollection(this.contents) ? this.contents.hasIn(path6) : false;
|
245596
245598
|
}
|
245597
|
-
set(
|
245599
|
+
set(key5, value4) {
|
245598
245600
|
if (this.contents == null) {
|
245599
|
-
this.contents = Collection.collectionFromPath(this.schema, [
|
245601
|
+
this.contents = Collection.collectionFromPath(this.schema, [key5], value4);
|
245600
245602
|
} else if (assertCollection(this.contents)) {
|
245601
|
-
this.contents.set(
|
245603
|
+
this.contents.set(key5, value4);
|
245602
245604
|
}
|
245603
245605
|
}
|
245604
245606
|
setIn(path6, value4) {
|
@@ -245882,25 +245884,25 @@ var require_resolve_props = __commonJS((exports) => {
|
|
245882
245884
|
|
245883
245885
|
// ../../node_modules/yaml/dist/compose/util-contains-newline.js
|
245884
245886
|
var require_util_contains_newline = __commonJS((exports) => {
|
245885
|
-
function containsNewline(
|
245886
|
-
if (!
|
245887
|
+
function containsNewline(key5) {
|
245888
|
+
if (!key5)
|
245887
245889
|
return null;
|
245888
|
-
switch (
|
245890
|
+
switch (key5.type) {
|
245889
245891
|
case "alias":
|
245890
245892
|
case "scalar":
|
245891
245893
|
case "double-quoted-scalar":
|
245892
245894
|
case "single-quoted-scalar":
|
245893
|
-
if (
|
245895
|
+
if (key5.source.includes(`
|
245894
245896
|
`))
|
245895
245897
|
return true;
|
245896
|
-
if (
|
245897
|
-
for (const st2 of
|
245898
|
+
if (key5.end) {
|
245899
|
+
for (const st2 of key5.end)
|
245898
245900
|
if (st2.type === "newline")
|
245899
245901
|
return true;
|
245900
245902
|
}
|
245901
245903
|
return false;
|
245902
245904
|
case "flow-collection":
|
245903
|
-
for (const it2 of
|
245905
|
+
for (const it2 of key5.items) {
|
245904
245906
|
for (const st2 of it2.start)
|
245905
245907
|
if (st2.type === "newline")
|
245906
245908
|
return true;
|
@@ -245965,10 +245967,10 @@ var require_resolve_block_map = __commonJS((exports) => {
|
|
245965
245967
|
let offset = bm.offset;
|
245966
245968
|
let commentEnd = null;
|
245967
245969
|
for (const collItem of bm.items) {
|
245968
|
-
const { start: start3, key:
|
245970
|
+
const { start: start3, key: key5, sep: sep3, value: value4 } = collItem;
|
245969
245971
|
const keyProps = resolveProps.resolveProps(start3, {
|
245970
245972
|
indicator: "explicit-key-ind",
|
245971
|
-
next:
|
245973
|
+
next: key5 ?? sep3?.[0],
|
245972
245974
|
offset,
|
245973
245975
|
onError,
|
245974
245976
|
parentIndent: bm.indent,
|
@@ -245976,10 +245978,10 @@ var require_resolve_block_map = __commonJS((exports) => {
|
|
245976
245978
|
});
|
245977
245979
|
const implicitKey = !keyProps.found;
|
245978
245980
|
if (implicitKey) {
|
245979
|
-
if (
|
245980
|
-
if (
|
245981
|
+
if (key5) {
|
245982
|
+
if (key5.type === "block-seq")
|
245981
245983
|
onError(offset, "BLOCK_AS_IMPLICIT_KEY", "A block sequence may not be used as an implicit map key");
|
245982
|
-
else if ("indent" in
|
245984
|
+
else if ("indent" in key5 && key5.indent !== bm.indent)
|
245983
245985
|
onError(offset, "BAD_INDENT", startColMsg);
|
245984
245986
|
}
|
245985
245987
|
if (!keyProps.anchor && !keyProps.tag && !sep3) {
|
@@ -245993,17 +245995,17 @@ var require_resolve_block_map = __commonJS((exports) => {
|
|
245993
245995
|
}
|
245994
245996
|
continue;
|
245995
245997
|
}
|
245996
|
-
if (keyProps.newlineAfterProp || utilContainsNewline.containsNewline(
|
245997
|
-
onError(
|
245998
|
+
if (keyProps.newlineAfterProp || utilContainsNewline.containsNewline(key5)) {
|
245999
|
+
onError(key5 ?? start3[start3.length - 1], "MULTILINE_IMPLICIT_KEY", "Implicit keys need to be on a single line");
|
245998
246000
|
}
|
245999
246001
|
} else if (keyProps.found?.indent !== bm.indent) {
|
246000
246002
|
onError(offset, "BAD_INDENT", startColMsg);
|
246001
246003
|
}
|
246002
246004
|
ctx.atKey = true;
|
246003
246005
|
const keyStart = keyProps.end;
|
246004
|
-
const keyNode =
|
246006
|
+
const keyNode = key5 ? composeNode(ctx, key5, keyProps, onError) : composeEmptyNode(ctx, keyStart, start3, null, keyProps, onError);
|
246005
246007
|
if (ctx.schema.compat)
|
246006
|
-
utilFlowIndentCheck.flowIndentCheck(bm.indent,
|
246008
|
+
utilFlowIndentCheck.flowIndentCheck(bm.indent, key5, onError);
|
246007
246009
|
ctx.atKey = false;
|
246008
246010
|
if (utilMapIncludes.mapIncludes(ctx, map3.items, keyNode))
|
246009
246011
|
onError(keyStart, "DUPLICATE_KEY", "Map keys must be unique");
|
@@ -246013,7 +246015,7 @@ var require_resolve_block_map = __commonJS((exports) => {
|
|
246013
246015
|
offset: keyNode.range[2],
|
246014
246016
|
onError,
|
246015
246017
|
parentIndent: bm.indent,
|
246016
|
-
startOnNewline: !
|
246018
|
+
startOnNewline: !key5 || key5.type === "block-scalar"
|
246017
246019
|
});
|
246018
246020
|
offset = valueProps.end;
|
246019
246021
|
if (valueProps.found) {
|
@@ -246169,11 +246171,11 @@ var require_resolve_flow_collection = __commonJS((exports) => {
|
|
246169
246171
|
let offset = fc.offset + fc.start.source.length;
|
246170
246172
|
for (let i7 = 0;i7 < fc.items.length; ++i7) {
|
246171
246173
|
const collItem = fc.items[i7];
|
246172
|
-
const { start: start3, key:
|
246174
|
+
const { start: start3, key: key5, sep: sep3, value: value4 } = collItem;
|
246173
246175
|
const props = resolveProps.resolveProps(start3, {
|
246174
246176
|
flow: fcName,
|
246175
246177
|
indicator: "explicit-key-ind",
|
246176
|
-
next:
|
246178
|
+
next: key5 ?? sep3?.[0],
|
246177
246179
|
offset,
|
246178
246180
|
onError,
|
246179
246181
|
parentIndent: fc.indent,
|
@@ -246195,8 +246197,8 @@ var require_resolve_flow_collection = __commonJS((exports) => {
|
|
246195
246197
|
offset = props.end;
|
246196
246198
|
continue;
|
246197
246199
|
}
|
246198
|
-
if (!isMap && ctx.options.strict && utilContainsNewline.containsNewline(
|
246199
|
-
onError(
|
246200
|
+
if (!isMap && ctx.options.strict && utilContainsNewline.containsNewline(key5))
|
246201
|
+
onError(key5, "MULTILINE_IMPLICIT_KEY", "Implicit keys of flow sequence pairs need to be on a single line");
|
246200
246202
|
}
|
246201
246203
|
if (i7 === 0) {
|
246202
246204
|
if (props.comma)
|
@@ -246241,8 +246243,8 @@ var require_resolve_flow_collection = __commonJS((exports) => {
|
|
246241
246243
|
} else {
|
246242
246244
|
ctx.atKey = true;
|
246243
246245
|
const keyStart = props.end;
|
246244
|
-
const keyNode =
|
246245
|
-
if (isBlock(
|
246246
|
+
const keyNode = key5 ? composeNode(ctx, key5, props, onError) : composeEmptyNode(ctx, keyStart, start3, null, props, onError);
|
246247
|
+
if (isBlock(key5))
|
246246
246248
|
onError(keyNode.range, "BLOCK_IN_FLOW", blockMsg);
|
246247
246249
|
ctx.atKey = false;
|
246248
246250
|
const valueProps = resolveProps.resolveProps(sep3 ?? [], {
|
@@ -246376,8 +246378,8 @@ var require_compose_collection = __commonJS((exports) => {
|
|
246376
246378
|
ctx.schema.tags.push(Object.assign({}, kt3, { default: false }));
|
246377
246379
|
tag = kt3;
|
246378
246380
|
} else {
|
246379
|
-
if (kt3
|
246380
|
-
onError(tagToken, "BAD_COLLECTION_TYPE", `${kt3.tag} used for ${expType} collection, but expects ${kt3.collection}`, true);
|
246381
|
+
if (kt3) {
|
246382
|
+
onError(tagToken, "BAD_COLLECTION_TYPE", `${kt3.tag} used for ${expType} collection, but expects ${kt3.collection ?? "scalar"}`, true);
|
246381
246383
|
} else {
|
246382
246384
|
onError(tagToken, "TAG_RESOLVE_FAILED", `Unresolved tag: ${tagName}`, true);
|
246383
246385
|
}
|
@@ -247054,7 +247056,7 @@ var require_composer = __commonJS((exports) => {
|
|
247054
247056
|
var node_process = __require("node:process");
|
247055
247057
|
var directives4 = require_directives2();
|
247056
247058
|
var Document = require_Document();
|
247057
|
-
var
|
247059
|
+
var errors5 = require_errors3();
|
247058
247060
|
var identity2 = require_identity();
|
247059
247061
|
var composeDoc = require_compose_doc();
|
247060
247062
|
var resolveEnd = require_resolve_end();
|
@@ -247105,9 +247107,9 @@ var require_composer = __commonJS((exports) => {
|
|
247105
247107
|
this.onError = (source, code2, message, warning) => {
|
247106
247108
|
const pos = getErrorPos(source);
|
247107
247109
|
if (warning)
|
247108
|
-
this.warnings.push(new
|
247110
|
+
this.warnings.push(new errors5.YAMLWarning(pos, code2, message));
|
247109
247111
|
else
|
247110
|
-
this.errors.push(new
|
247112
|
+
this.errors.push(new errors5.YAMLParseError(pos, code2, message));
|
247111
247113
|
};
|
247112
247114
|
this.directives = new directives4.Directives({ version: options.version || "1.2" });
|
247113
247115
|
this.options = options;
|
@@ -247191,7 +247193,7 @@ ${cb}` : comment;
|
|
247191
247193
|
break;
|
247192
247194
|
case "error": {
|
247193
247195
|
const msg = token.source ? `${token.message}: ${JSON.stringify(token.source)}` : token.message;
|
247194
|
-
const error5 = new
|
247196
|
+
const error5 = new errors5.YAMLParseError(getErrorPos(token), "UNEXPECTED_TOKEN", msg);
|
247195
247197
|
if (this.atDirectives || !this.doc)
|
247196
247198
|
this.errors.push(error5);
|
247197
247199
|
else
|
@@ -247201,7 +247203,7 @@ ${cb}` : comment;
|
|
247201
247203
|
case "doc-end": {
|
247202
247204
|
if (!this.doc) {
|
247203
247205
|
const msg = "Unexpected doc-end without preceding document";
|
247204
|
-
this.errors.push(new
|
247206
|
+
this.errors.push(new errors5.YAMLParseError(getErrorPos(token), "UNEXPECTED_TOKEN", msg));
|
247205
247207
|
break;
|
247206
247208
|
}
|
247207
247209
|
this.doc.directives.docEnd = true;
|
@@ -247216,7 +247218,7 @@ ${end.comment}` : end.comment;
|
|
247216
247218
|
break;
|
247217
247219
|
}
|
247218
247220
|
default:
|
247219
|
-
this.errors.push(new
|
247221
|
+
this.errors.push(new errors5.YAMLParseError(getErrorPos(token), "UNEXPECTED_TOKEN", `Unsupported token ${token.type}`));
|
247220
247222
|
}
|
247221
247223
|
}
|
247222
247224
|
*end(forceDoc = false, endOffset = -1) {
|
@@ -247242,7 +247244,7 @@ ${end.comment}` : end.comment;
|
|
247242
247244
|
var require_cst_scalar = __commonJS((exports) => {
|
247243
247245
|
var resolveBlockScalar = require_resolve_block_scalar();
|
247244
247246
|
var resolveFlowScalar = require_resolve_flow_scalar();
|
247245
|
-
var
|
247247
|
+
var errors5 = require_errors3();
|
247246
247248
|
var stringifyString = require_stringifyString();
|
247247
247249
|
function resolveAsScalar(token, strict = true, onError) {
|
247248
247250
|
if (token) {
|
@@ -247251,7 +247253,7 @@ var require_cst_scalar = __commonJS((exports) => {
|
|
247251
247253
|
if (onError)
|
247252
247254
|
onError(offset, code2, message);
|
247253
247255
|
else
|
247254
|
-
throw new
|
247256
|
+
throw new errors5.YAMLParseError([offset, offset + 1], code2, message);
|
247255
247257
|
};
|
247256
247258
|
switch (token.type) {
|
247257
247259
|
case "scalar":
|
@@ -247365,9 +247367,9 @@ var require_cst_scalar = __commonJS((exports) => {
|
|
247365
247367
|
if (!addEndtoBlockProps(props, "end" in token ? token.end : undefined))
|
247366
247368
|
props.push({ type: "newline", offset: -1, indent: indent2, source: `
|
247367
247369
|
` });
|
247368
|
-
for (const
|
247369
|
-
if (
|
247370
|
-
delete token[
|
247370
|
+
for (const key5 of Object.keys(token))
|
247371
|
+
if (key5 !== "type" && key5 !== "offset")
|
247372
|
+
delete token[key5];
|
247371
247373
|
Object.assign(token, { type: "block-scalar", indent: indent2, props, source: body });
|
247372
247374
|
}
|
247373
247375
|
}
|
@@ -247416,9 +247418,9 @@ var require_cst_scalar = __commonJS((exports) => {
|
|
247416
247418
|
default: {
|
247417
247419
|
const indent2 = "indent" in token ? token.indent : -1;
|
247418
247420
|
const end = "end" in token && Array.isArray(token.end) ? token.end.filter((st2) => st2.type === "space" || st2.type === "comment" || st2.type === "newline") : [];
|
247419
|
-
for (const
|
247420
|
-
if (
|
247421
|
-
delete token[
|
247421
|
+
for (const key5 of Object.keys(token))
|
247422
|
+
if (key5 !== "type" && key5 !== "offset")
|
247423
|
+
delete token[key5];
|
247422
247424
|
Object.assign(token, { type: type4, indent: indent2, source, end });
|
247423
247425
|
}
|
247424
247426
|
}
|
@@ -247470,12 +247472,12 @@ var require_cst_stringify = __commonJS((exports) => {
|
|
247470
247472
|
}
|
247471
247473
|
}
|
247472
247474
|
}
|
247473
|
-
function stringifyItem({ start: start3, key:
|
247475
|
+
function stringifyItem({ start: start3, key: key5, sep: sep3, value: value4 }) {
|
247474
247476
|
let res = "";
|
247475
247477
|
for (const st2 of start3)
|
247476
247478
|
res += st2.source;
|
247477
|
-
if (
|
247478
|
-
res += stringifyToken(
|
247479
|
+
if (key5)
|
247480
|
+
res += stringifyToken(key5);
|
247479
247481
|
if (sep3)
|
247480
247482
|
for (const st2 of sep3)
|
247481
247483
|
res += st2.source;
|
@@ -248771,7 +248773,7 @@ var require_parser2 = __commonJS((exports) => {
|
|
248771
248773
|
});
|
248772
248774
|
} else if (isFlowToken(it2.key) && !includesToken(it2.sep, "newline")) {
|
248773
248775
|
const start4 = getFirstKeyStartProps(it2.start);
|
248774
|
-
const
|
248776
|
+
const key5 = it2.key;
|
248775
248777
|
const sep3 = it2.sep;
|
248776
248778
|
sep3.push(this.sourceToken);
|
248777
248779
|
delete it2.key;
|
@@ -248780,7 +248782,7 @@ var require_parser2 = __commonJS((exports) => {
|
|
248780
248782
|
type: "block-map",
|
248781
248783
|
offset: this.offset,
|
248782
248784
|
indent: this.indent,
|
248783
|
-
items: [{ start: start4, key:
|
248785
|
+
items: [{ start: start4, key: key5, sep: sep3 }]
|
248784
248786
|
});
|
248785
248787
|
} else if (start3.length > 0) {
|
248786
248788
|
it2.sep = it2.sep.concat(start3, this.sourceToken);
|
@@ -248824,7 +248826,17 @@ var require_parser2 = __commonJS((exports) => {
|
|
248824
248826
|
default: {
|
248825
248827
|
const bv = this.startBlockValue(map3);
|
248826
248828
|
if (bv) {
|
248827
|
-
if (
|
248829
|
+
if (bv.type === "block-seq") {
|
248830
|
+
if (!it2.explicitKey && it2.sep && !includesToken(it2.sep, "newline")) {
|
248831
|
+
yield* this.pop({
|
248832
|
+
type: "error",
|
248833
|
+
offset: this.offset,
|
248834
|
+
message: "Unexpected block-seq-ind on same line with key",
|
248835
|
+
source: this.source
|
248836
|
+
});
|
248837
|
+
return;
|
248838
|
+
}
|
248839
|
+
} else if (atMapIndent) {
|
248828
248840
|
map3.items.push({ start: start3 });
|
248829
248841
|
}
|
248830
248842
|
this.stack.push(bv);
|
@@ -249103,7 +249115,7 @@ var require_parser2 = __commonJS((exports) => {
|
|
249103
249115
|
var require_public_api = __commonJS((exports) => {
|
249104
249116
|
var composer = require_composer();
|
249105
249117
|
var Document = require_Document();
|
249106
|
-
var
|
249118
|
+
var errors5 = require_errors3();
|
249107
249119
|
var log = require_log();
|
249108
249120
|
var identity2 = require_identity();
|
249109
249121
|
var lineCounter = require_line_counter();
|
@@ -249120,8 +249132,8 @@ var require_public_api = __commonJS((exports) => {
|
|
249120
249132
|
const docs = Array.from(composer$1.compose(parser$1.parse(source)));
|
249121
249133
|
if (prettyErrors && lineCounter2)
|
249122
249134
|
for (const doc of docs) {
|
249123
|
-
doc.errors.forEach(
|
249124
|
-
doc.warnings.forEach(
|
249135
|
+
doc.errors.forEach(errors5.prettifyError(source, lineCounter2));
|
249136
|
+
doc.warnings.forEach(errors5.prettifyError(source, lineCounter2));
|
249125
249137
|
}
|
249126
249138
|
if (docs.length > 0)
|
249127
249139
|
return docs;
|
@@ -249136,13 +249148,13 @@ var require_public_api = __commonJS((exports) => {
|
|
249136
249148
|
if (!doc)
|
249137
249149
|
doc = _doc;
|
249138
249150
|
else if (doc.options.logLevel !== "silent") {
|
249139
|
-
doc.errors.push(new
|
249151
|
+
doc.errors.push(new errors5.YAMLParseError(_doc.range.slice(0, 2), "MULTIPLE_DOCS", "Source contains multiple documents; please use YAML.parseAllDocuments()"));
|
249140
249152
|
break;
|
249141
249153
|
}
|
249142
249154
|
}
|
249143
249155
|
if (prettyErrors && lineCounter2) {
|
249144
|
-
doc.errors.forEach(
|
249145
|
-
doc.warnings.forEach(
|
249156
|
+
doc.errors.forEach(errors5.prettifyError(source, lineCounter2));
|
249157
|
+
doc.warnings.forEach(errors5.prettifyError(source, lineCounter2));
|
249146
249158
|
}
|
249147
249159
|
return doc;
|
249148
249160
|
}
|
@@ -259524,7 +259536,7 @@ function pruneCurrentEnv(currentEnv, env2) {
|
|
259524
259536
|
var package_default = {
|
259525
259537
|
name: "@settlemint/sdk-cli",
|
259526
259538
|
description: "Command-line interface for SettleMint SDK, providing development tools and project management capabilities",
|
259527
|
-
version: "2.0.0-
|
259539
|
+
version: "2.0.0-prae2ddec7",
|
259528
259540
|
type: "module",
|
259529
259541
|
private: false,
|
259530
259542
|
license: "FSL-1.1-MIT",
|
@@ -259567,13 +259579,13 @@ var package_default = {
|
|
259567
259579
|
devDependencies: {
|
259568
259580
|
"@commander-js/extra-typings": "11.1.0",
|
259569
259581
|
commander: "11.1.0",
|
259570
|
-
"@inquirer/confirm": "5.1.
|
259582
|
+
"@inquirer/confirm": "5.1.9",
|
259571
259583
|
"@inquirer/input": "4.1.8",
|
259572
259584
|
"@inquirer/password": "4.0.11",
|
259573
259585
|
"@inquirer/select": "4.1.0",
|
259574
|
-
"@settlemint/sdk-js": "2.0.0-
|
259575
|
-
"@settlemint/sdk-utils": "2.0.0-
|
259576
|
-
"@types/node": "22.
|
259586
|
+
"@settlemint/sdk-js": "2.0.0-prae2ddec7",
|
259587
|
+
"@settlemint/sdk-utils": "2.0.0-prae2ddec7",
|
259588
|
+
"@types/node": "22.14.0",
|
259577
259589
|
"@types/semver": "7.7.0",
|
259578
259590
|
"@types/which": "3.0.4",
|
259579
259591
|
"get-tsconfig": "4.10.0",
|
@@ -259582,7 +259594,7 @@ var package_default = {
|
|
259582
259594
|
semver: "7.7.1",
|
259583
259595
|
slugify: "1.6.6",
|
259584
259596
|
which: "5.0.0",
|
259585
|
-
yaml: "2.7.
|
259597
|
+
yaml: "2.7.1",
|
259586
259598
|
yoctocolors: "2.1.1"
|
259587
259599
|
},
|
259588
259600
|
peerDependencies: {
|
@@ -259661,10 +259673,6 @@ var {
|
|
259661
259673
|
} = import__.default;
|
259662
259674
|
|
259663
259675
|
// ../../node_modules/@inquirer/core/dist/esm/lib/key.js
|
259664
|
-
var isUpKey = (key) => key.name === "up" || key.name === "k" || key.ctrl && key.name === "p";
|
259665
|
-
var isDownKey = (key) => key.name === "down" || key.name === "j" || key.ctrl && key.name === "n";
|
259666
|
-
var isBackspaceKey = (key) => key.name === "backspace";
|
259667
|
-
var isNumberKey = (key) => "1234567890".includes(key.name);
|
259668
259676
|
var isEnterKey = (key) => key.name === "enter" || key.name === "return";
|
259669
259677
|
// ../../node_modules/@inquirer/core/dist/esm/lib/errors.js
|
259670
259678
|
class AbortPromptError extends Error {
|
@@ -260198,22 +260206,11 @@ function usePrefix({ status = "idle", theme }) {
|
|
260198
260206
|
const iconName = status === "loading" ? "idle" : status;
|
260199
260207
|
return typeof prefix === "string" ? prefix : prefix[iconName] ?? prefix["idle"];
|
260200
260208
|
}
|
260201
|
-
// ../../node_modules/@inquirer/core/dist/esm/lib/use-memo.js
|
260202
|
-
function useMemo(fn, dependencies) {
|
260203
|
-
return withPointer((pointer) => {
|
260204
|
-
const prev = pointer.get();
|
260205
|
-
if (!prev || prev.dependencies.length !== dependencies.length || prev.dependencies.some((dep, i) => dep !== dependencies[i])) {
|
260206
|
-
const value = fn();
|
260207
|
-
pointer.set({ value, dependencies });
|
260208
|
-
return value;
|
260209
|
-
}
|
260210
|
-
return prev.value;
|
260211
|
-
});
|
260212
|
-
}
|
260213
260209
|
// ../../node_modules/@inquirer/core/dist/esm/lib/use-ref.js
|
260214
260210
|
function useRef(val) {
|
260215
260211
|
return useState({ current: val })[0];
|
260216
260212
|
}
|
260213
|
+
|
260217
260214
|
// ../../node_modules/@inquirer/core/dist/esm/lib/use-keypress.js
|
260218
260215
|
function useKeypress(userHandler) {
|
260219
260216
|
const signal = useRef(userHandler);
|
@@ -260245,95 +260242,6 @@ function readlineWidth() {
|
|
260245
260242
|
return import_cli_width.default({ defaultWidth: 80, output: readline().output });
|
260246
260243
|
}
|
260247
260244
|
|
260248
|
-
// ../../node_modules/@inquirer/core/dist/esm/lib/pagination/lines.js
|
260249
|
-
function split(content, width) {
|
260250
|
-
return breakLines(content, width).split(`
|
260251
|
-
`);
|
260252
|
-
}
|
260253
|
-
function rotate(count, items) {
|
260254
|
-
const max = items.length;
|
260255
|
-
const offset = (count % max + max) % max;
|
260256
|
-
return [...items.slice(offset), ...items.slice(0, offset)];
|
260257
|
-
}
|
260258
|
-
function lines({ items, width, renderItem, active, position: requested, pageSize }) {
|
260259
|
-
const layouts = items.map((item, index) => ({
|
260260
|
-
item,
|
260261
|
-
index,
|
260262
|
-
isActive: index === active
|
260263
|
-
}));
|
260264
|
-
const layoutsInPage = rotate(active - requested, layouts).slice(0, pageSize);
|
260265
|
-
const renderItemAt = (index) => layoutsInPage[index] == null ? [] : split(renderItem(layoutsInPage[index]), width);
|
260266
|
-
const pageBuffer = Array.from({ length: pageSize });
|
260267
|
-
const activeItem = renderItemAt(requested).slice(0, pageSize);
|
260268
|
-
const position = requested + activeItem.length <= pageSize ? requested : pageSize - activeItem.length;
|
260269
|
-
pageBuffer.splice(position, activeItem.length, ...activeItem);
|
260270
|
-
let bufferPointer = position + activeItem.length;
|
260271
|
-
let layoutPointer = requested + 1;
|
260272
|
-
while (bufferPointer < pageSize && layoutPointer < layoutsInPage.length) {
|
260273
|
-
for (const line of renderItemAt(layoutPointer)) {
|
260274
|
-
pageBuffer[bufferPointer++] = line;
|
260275
|
-
if (bufferPointer >= pageSize)
|
260276
|
-
break;
|
260277
|
-
}
|
260278
|
-
layoutPointer++;
|
260279
|
-
}
|
260280
|
-
bufferPointer = position - 1;
|
260281
|
-
layoutPointer = requested - 1;
|
260282
|
-
while (bufferPointer >= 0 && layoutPointer >= 0) {
|
260283
|
-
for (const line of renderItemAt(layoutPointer).reverse()) {
|
260284
|
-
pageBuffer[bufferPointer--] = line;
|
260285
|
-
if (bufferPointer < 0)
|
260286
|
-
break;
|
260287
|
-
}
|
260288
|
-
layoutPointer--;
|
260289
|
-
}
|
260290
|
-
return pageBuffer.filter((line) => typeof line === "string");
|
260291
|
-
}
|
260292
|
-
|
260293
|
-
// ../../node_modules/@inquirer/core/dist/esm/lib/pagination/position.js
|
260294
|
-
function finite({ active, pageSize, total }) {
|
260295
|
-
const middle = Math.floor(pageSize / 2);
|
260296
|
-
if (total <= pageSize || active < middle)
|
260297
|
-
return active;
|
260298
|
-
if (active >= total - middle)
|
260299
|
-
return active + pageSize - total;
|
260300
|
-
return middle;
|
260301
|
-
}
|
260302
|
-
function infinite({ active, lastActive, total, pageSize, pointer }) {
|
260303
|
-
if (total <= pageSize)
|
260304
|
-
return active;
|
260305
|
-
if (lastActive < active && active - lastActive < pageSize) {
|
260306
|
-
return Math.min(Math.floor(pageSize / 2), pointer + active - lastActive);
|
260307
|
-
}
|
260308
|
-
return pointer;
|
260309
|
-
}
|
260310
|
-
|
260311
|
-
// ../../node_modules/@inquirer/core/dist/esm/lib/pagination/use-pagination.js
|
260312
|
-
function usePagination({ items, active, renderItem, pageSize, loop = true }) {
|
260313
|
-
const state = useRef({ position: 0, lastActive: 0 });
|
260314
|
-
const position = loop ? infinite({
|
260315
|
-
active,
|
260316
|
-
lastActive: state.current.lastActive,
|
260317
|
-
total: items.length,
|
260318
|
-
pageSize,
|
260319
|
-
pointer: state.current.position
|
260320
|
-
}) : finite({
|
260321
|
-
active,
|
260322
|
-
total: items.length,
|
260323
|
-
pageSize
|
260324
|
-
});
|
260325
|
-
state.current.position = position;
|
260326
|
-
state.current.lastActive = active;
|
260327
|
-
return lines({
|
260328
|
-
items,
|
260329
|
-
width: readlineWidth(),
|
260330
|
-
renderItem,
|
260331
|
-
active,
|
260332
|
-
position,
|
260333
|
-
pageSize
|
260334
|
-
}).join(`
|
260335
|
-
`);
|
260336
|
-
}
|
260337
260245
|
// ../../node_modules/@inquirer/core/dist/esm/lib/create-prompt.js
|
260338
260246
|
var import_mute_stream = __toESM(require_lib(), 1);
|
260339
260247
|
import * as readline2 from "node:readline";
|
@@ -260687,7 +260595,7 @@ function createPrompt(view) {
|
|
260687
260595
|
setImmediate(() => resolve(value));
|
260688
260596
|
});
|
260689
260597
|
if (nextView === undefined) {
|
260690
|
-
const callerFilename = callSites[1]?.getFileName
|
260598
|
+
const callerFilename = callSites[1]?.getFileName();
|
260691
260599
|
throw new Error(`Prompt functions must return a string.
|
260692
260600
|
at ${callerFilename}`);
|
260693
260601
|
}
|
@@ -260713,20 +260621,6 @@ function createPrompt(view) {
|
|
260713
260621
|
};
|
260714
260622
|
return prompt;
|
260715
260623
|
}
|
260716
|
-
// ../../node_modules/@inquirer/core/dist/esm/lib/Separator.js
|
260717
|
-
var import_yoctocolors_cjs2 = __toESM(require_yoctocolors_cjs(), 1);
|
260718
|
-
class Separator {
|
260719
|
-
separator = import_yoctocolors_cjs2.default.dim(Array.from({ length: 15 }).join(esm_default.line));
|
260720
|
-
type = "separator";
|
260721
|
-
constructor(separator) {
|
260722
|
-
if (separator) {
|
260723
|
-
this.separator = separator;
|
260724
|
-
}
|
260725
|
-
}
|
260726
|
-
static isSeparator(choice) {
|
260727
|
-
return Boolean(choice && typeof choice === "object" && "type" in choice && choice.type === "separator");
|
260728
|
-
}
|
260729
|
-
}
|
260730
260624
|
// ../utils/dist/terminal.mjs
|
260731
260625
|
import { spawn } from "node:child_process";
|
260732
260626
|
var import_console_table_printer2 = __toESM(require_dist2(), 1);
|
@@ -265583,23 +265477,477 @@ function sanitizeName(value4, length = 35) {
|
|
265583
265477
|
}).slice(0, length).replaceAll(/(^\d*)/g, "").replaceAll(/(-$)/g, "").replaceAll(/(^-)/g, "");
|
265584
265478
|
}
|
265585
265479
|
|
265480
|
+
// ../../node_modules/@inquirer/input/node_modules/@inquirer/core/dist/esm/lib/key.js
|
265481
|
+
var isBackspaceKey = (key2) => key2.name === "backspace";
|
265482
|
+
var isEnterKey2 = (key2) => key2.name === "enter" || key2.name === "return";
|
265483
|
+
// ../../node_modules/@inquirer/input/node_modules/@inquirer/core/dist/esm/lib/errors.js
|
265484
|
+
class AbortPromptError2 extends Error {
|
265485
|
+
name = "AbortPromptError";
|
265486
|
+
message = "Prompt was aborted";
|
265487
|
+
constructor(options) {
|
265488
|
+
super();
|
265489
|
+
this.cause = options?.cause;
|
265490
|
+
}
|
265491
|
+
}
|
265492
|
+
|
265493
|
+
class CancelPromptError2 extends Error {
|
265494
|
+
name = "CancelPromptError";
|
265495
|
+
message = "Prompt was canceled";
|
265496
|
+
}
|
265497
|
+
|
265498
|
+
class ExitPromptError2 extends Error {
|
265499
|
+
name = "ExitPromptError";
|
265500
|
+
}
|
265501
|
+
|
265502
|
+
class HookError2 extends Error {
|
265503
|
+
name = "HookError";
|
265504
|
+
}
|
265505
|
+
|
265506
|
+
class ValidationError2 extends Error {
|
265507
|
+
name = "ValidationError";
|
265508
|
+
}
|
265509
|
+
// ../../node_modules/@inquirer/input/node_modules/@inquirer/core/dist/esm/lib/use-prefix.js
|
265510
|
+
import { AsyncResource as AsyncResource5 } from "node:async_hooks";
|
265511
|
+
|
265512
|
+
// ../../node_modules/@inquirer/input/node_modules/@inquirer/core/dist/esm/lib/hook-engine.js
|
265513
|
+
import { AsyncLocalStorage as AsyncLocalStorage2, AsyncResource as AsyncResource4 } from "node:async_hooks";
|
265514
|
+
var hookStorage2 = new AsyncLocalStorage2;
|
265515
|
+
function createStore2(rl) {
|
265516
|
+
const store = {
|
265517
|
+
rl,
|
265518
|
+
hooks: [],
|
265519
|
+
hooksCleanup: [],
|
265520
|
+
hooksEffect: [],
|
265521
|
+
index: 0,
|
265522
|
+
handleChange() {}
|
265523
|
+
};
|
265524
|
+
return store;
|
265525
|
+
}
|
265526
|
+
function withHooks2(rl, cb) {
|
265527
|
+
const store = createStore2(rl);
|
265528
|
+
return hookStorage2.run(store, () => {
|
265529
|
+
function cycle(render) {
|
265530
|
+
store.handleChange = () => {
|
265531
|
+
store.index = 0;
|
265532
|
+
render();
|
265533
|
+
};
|
265534
|
+
store.handleChange();
|
265535
|
+
}
|
265536
|
+
return cb(cycle);
|
265537
|
+
});
|
265538
|
+
}
|
265539
|
+
function getStore2() {
|
265540
|
+
const store = hookStorage2.getStore();
|
265541
|
+
if (!store) {
|
265542
|
+
throw new HookError2("[Inquirer] Hook functions can only be called from within a prompt");
|
265543
|
+
}
|
265544
|
+
return store;
|
265545
|
+
}
|
265546
|
+
function readline3() {
|
265547
|
+
return getStore2().rl;
|
265548
|
+
}
|
265549
|
+
function withUpdates2(fn) {
|
265550
|
+
const wrapped = (...args) => {
|
265551
|
+
const store = getStore2();
|
265552
|
+
let shouldUpdate = false;
|
265553
|
+
const oldHandleChange = store.handleChange;
|
265554
|
+
store.handleChange = () => {
|
265555
|
+
shouldUpdate = true;
|
265556
|
+
};
|
265557
|
+
const returnValue = fn(...args);
|
265558
|
+
if (shouldUpdate) {
|
265559
|
+
oldHandleChange();
|
265560
|
+
}
|
265561
|
+
store.handleChange = oldHandleChange;
|
265562
|
+
return returnValue;
|
265563
|
+
};
|
265564
|
+
return AsyncResource4.bind(wrapped);
|
265565
|
+
}
|
265566
|
+
function withPointer2(cb) {
|
265567
|
+
const store = getStore2();
|
265568
|
+
const { index } = store;
|
265569
|
+
const pointer = {
|
265570
|
+
get() {
|
265571
|
+
return store.hooks[index];
|
265572
|
+
},
|
265573
|
+
set(value4) {
|
265574
|
+
store.hooks[index] = value4;
|
265575
|
+
},
|
265576
|
+
initialized: index in store.hooks
|
265577
|
+
};
|
265578
|
+
const returnValue = cb(pointer);
|
265579
|
+
store.index++;
|
265580
|
+
return returnValue;
|
265581
|
+
}
|
265582
|
+
function handleChange2() {
|
265583
|
+
getStore2().handleChange();
|
265584
|
+
}
|
265585
|
+
var effectScheduler2 = {
|
265586
|
+
queue(cb) {
|
265587
|
+
const store = getStore2();
|
265588
|
+
const { index } = store;
|
265589
|
+
store.hooksEffect.push(() => {
|
265590
|
+
store.hooksCleanup[index]?.();
|
265591
|
+
const cleanFn = cb(readline3());
|
265592
|
+
if (cleanFn != null && typeof cleanFn !== "function") {
|
265593
|
+
throw new ValidationError2("useEffect return value must be a cleanup function or nothing.");
|
265594
|
+
}
|
265595
|
+
store.hooksCleanup[index] = cleanFn;
|
265596
|
+
});
|
265597
|
+
},
|
265598
|
+
run() {
|
265599
|
+
const store = getStore2();
|
265600
|
+
withUpdates2(() => {
|
265601
|
+
store.hooksEffect.forEach((effect) => {
|
265602
|
+
effect();
|
265603
|
+
});
|
265604
|
+
store.hooksEffect.length = 0;
|
265605
|
+
})();
|
265606
|
+
},
|
265607
|
+
clearAll() {
|
265608
|
+
const store = getStore2();
|
265609
|
+
store.hooksCleanup.forEach((cleanFn) => {
|
265610
|
+
cleanFn?.();
|
265611
|
+
});
|
265612
|
+
store.hooksEffect.length = 0;
|
265613
|
+
store.hooksCleanup.length = 0;
|
265614
|
+
}
|
265615
|
+
};
|
265616
|
+
|
265617
|
+
// ../../node_modules/@inquirer/input/node_modules/@inquirer/core/dist/esm/lib/use-state.js
|
265618
|
+
function useState2(defaultValue) {
|
265619
|
+
return withPointer2((pointer) => {
|
265620
|
+
const setFn = (newValue) => {
|
265621
|
+
if (pointer.get() !== newValue) {
|
265622
|
+
pointer.set(newValue);
|
265623
|
+
handleChange2();
|
265624
|
+
}
|
265625
|
+
};
|
265626
|
+
if (pointer.initialized) {
|
265627
|
+
return [pointer.get(), setFn];
|
265628
|
+
}
|
265629
|
+
const value4 = typeof defaultValue === "function" ? defaultValue() : defaultValue;
|
265630
|
+
pointer.set(value4);
|
265631
|
+
return [value4, setFn];
|
265632
|
+
});
|
265633
|
+
}
|
265634
|
+
|
265635
|
+
// ../../node_modules/@inquirer/input/node_modules/@inquirer/core/dist/esm/lib/use-effect.js
|
265636
|
+
function useEffect2(cb, depArray) {
|
265637
|
+
withPointer2((pointer) => {
|
265638
|
+
const oldDeps = pointer.get();
|
265639
|
+
const hasChanged = !Array.isArray(oldDeps) || depArray.some((dep, i6) => !Object.is(dep, oldDeps[i6]));
|
265640
|
+
if (hasChanged) {
|
265641
|
+
effectScheduler2.queue(cb);
|
265642
|
+
}
|
265643
|
+
pointer.set(depArray);
|
265644
|
+
});
|
265645
|
+
}
|
265646
|
+
|
265647
|
+
// ../../node_modules/@inquirer/input/node_modules/@inquirer/core/dist/esm/lib/theme.js
|
265648
|
+
var import_yoctocolors_cjs2 = __toESM(require_yoctocolors_cjs(), 1);
|
265649
|
+
var defaultTheme2 = {
|
265650
|
+
prefix: {
|
265651
|
+
idle: import_yoctocolors_cjs2.default.blue("?"),
|
265652
|
+
done: import_yoctocolors_cjs2.default.green(esm_default.tick)
|
265653
|
+
},
|
265654
|
+
spinner: {
|
265655
|
+
interval: 80,
|
265656
|
+
frames: ["⠋", "⠙", "⠹", "⠸", "⠼", "⠴", "⠦", "⠧", "⠇", "⠏"].map((frame) => import_yoctocolors_cjs2.default.yellow(frame))
|
265657
|
+
},
|
265658
|
+
style: {
|
265659
|
+
answer: import_yoctocolors_cjs2.default.cyan,
|
265660
|
+
message: import_yoctocolors_cjs2.default.bold,
|
265661
|
+
error: (text2) => import_yoctocolors_cjs2.default.red(`> ${text2}`),
|
265662
|
+
defaultAnswer: (text2) => import_yoctocolors_cjs2.default.dim(`(${text2})`),
|
265663
|
+
help: import_yoctocolors_cjs2.default.dim,
|
265664
|
+
highlight: import_yoctocolors_cjs2.default.cyan,
|
265665
|
+
key: (text2) => import_yoctocolors_cjs2.default.cyan(import_yoctocolors_cjs2.default.bold(`<${text2}>`))
|
265666
|
+
}
|
265667
|
+
};
|
265668
|
+
|
265669
|
+
// ../../node_modules/@inquirer/input/node_modules/@inquirer/core/dist/esm/lib/make-theme.js
|
265670
|
+
function isPlainObject3(value4) {
|
265671
|
+
if (typeof value4 !== "object" || value4 === null)
|
265672
|
+
return false;
|
265673
|
+
let proto = value4;
|
265674
|
+
while (Object.getPrototypeOf(proto) !== null) {
|
265675
|
+
proto = Object.getPrototypeOf(proto);
|
265676
|
+
}
|
265677
|
+
return Object.getPrototypeOf(value4) === proto;
|
265678
|
+
}
|
265679
|
+
function deepMerge3(...objects) {
|
265680
|
+
const output = {};
|
265681
|
+
for (const obj of objects) {
|
265682
|
+
for (const [key2, value4] of Object.entries(obj)) {
|
265683
|
+
const prevValue = output[key2];
|
265684
|
+
output[key2] = isPlainObject3(prevValue) && isPlainObject3(value4) ? deepMerge3(prevValue, value4) : value4;
|
265685
|
+
}
|
265686
|
+
}
|
265687
|
+
return output;
|
265688
|
+
}
|
265689
|
+
function makeTheme2(...themes) {
|
265690
|
+
const themesToMerge = [
|
265691
|
+
defaultTheme2,
|
265692
|
+
...themes.filter((theme) => theme != null)
|
265693
|
+
];
|
265694
|
+
return deepMerge3(...themesToMerge);
|
265695
|
+
}
|
265696
|
+
|
265697
|
+
// ../../node_modules/@inquirer/input/node_modules/@inquirer/core/dist/esm/lib/use-prefix.js
|
265698
|
+
function usePrefix2({ status = "idle", theme }) {
|
265699
|
+
const [showLoader, setShowLoader] = useState2(false);
|
265700
|
+
const [tick, setTick] = useState2(0);
|
265701
|
+
const { prefix, spinner: spinner2 } = makeTheme2(theme);
|
265702
|
+
useEffect2(() => {
|
265703
|
+
if (status === "loading") {
|
265704
|
+
let tickInterval;
|
265705
|
+
let inc = -1;
|
265706
|
+
const delayTimeout = setTimeout(AsyncResource5.bind(() => {
|
265707
|
+
setShowLoader(true);
|
265708
|
+
tickInterval = setInterval(AsyncResource5.bind(() => {
|
265709
|
+
inc = inc + 1;
|
265710
|
+
setTick(inc % spinner2.frames.length);
|
265711
|
+
}), spinner2.interval);
|
265712
|
+
}), 300);
|
265713
|
+
return () => {
|
265714
|
+
clearTimeout(delayTimeout);
|
265715
|
+
clearInterval(tickInterval);
|
265716
|
+
};
|
265717
|
+
} else {
|
265718
|
+
setShowLoader(false);
|
265719
|
+
}
|
265720
|
+
}, [status]);
|
265721
|
+
if (showLoader) {
|
265722
|
+
return spinner2.frames[tick];
|
265723
|
+
}
|
265724
|
+
const iconName = status === "loading" ? "idle" : status;
|
265725
|
+
return typeof prefix === "string" ? prefix : prefix[iconName] ?? prefix["idle"];
|
265726
|
+
}
|
265727
|
+
// ../../node_modules/@inquirer/input/node_modules/@inquirer/core/dist/esm/lib/use-ref.js
|
265728
|
+
function useRef2(val) {
|
265729
|
+
return useState2({ current: val })[0];
|
265730
|
+
}
|
265731
|
+
|
265732
|
+
// ../../node_modules/@inquirer/input/node_modules/@inquirer/core/dist/esm/lib/use-keypress.js
|
265733
|
+
function useKeypress2(userHandler) {
|
265734
|
+
const signal = useRef2(userHandler);
|
265735
|
+
signal.current = userHandler;
|
265736
|
+
useEffect2((rl) => {
|
265737
|
+
let ignore = false;
|
265738
|
+
const handler = withUpdates2((_input, event) => {
|
265739
|
+
if (ignore)
|
265740
|
+
return;
|
265741
|
+
signal.current(event, rl);
|
265742
|
+
});
|
265743
|
+
rl.input.on("keypress", handler);
|
265744
|
+
return () => {
|
265745
|
+
ignore = true;
|
265746
|
+
rl.input.removeListener("keypress", handler);
|
265747
|
+
};
|
265748
|
+
}, []);
|
265749
|
+
}
|
265750
|
+
// ../../node_modules/@inquirer/input/node_modules/@inquirer/core/dist/esm/lib/utils.js
|
265751
|
+
var import_cli_width2 = __toESM(require_cli_width(), 1);
|
265752
|
+
var import_wrap_ansi2 = __toESM(require_wrap_ansi(), 1);
|
265753
|
+
function breakLines2(content, width) {
|
265754
|
+
return content.split(`
|
265755
|
+
`).flatMap((line) => import_wrap_ansi2.default(line, width, { trim: false, hard: true }).split(`
|
265756
|
+
`).map((str) => str.trimEnd())).join(`
|
265757
|
+
`);
|
265758
|
+
}
|
265759
|
+
function readlineWidth2() {
|
265760
|
+
return import_cli_width2.default({ defaultWidth: 80, output: readline3().output });
|
265761
|
+
}
|
265762
|
+
|
265763
|
+
// ../../node_modules/@inquirer/input/node_modules/@inquirer/core/dist/esm/lib/create-prompt.js
|
265764
|
+
var import_mute_stream2 = __toESM(require_lib(), 1);
|
265765
|
+
import * as readline4 from "node:readline";
|
265766
|
+
import { AsyncResource as AsyncResource6 } from "node:async_hooks";
|
265767
|
+
|
265768
|
+
// ../../node_modules/@inquirer/input/node_modules/@inquirer/core/dist/esm/lib/screen-manager.js
|
265769
|
+
var import_ansi_escapes2 = __toESM(require_ansi_escapes(), 1);
|
265770
|
+
import { stripVTControlCharacters as stripVTControlCharacters3 } from "node:util";
|
265771
|
+
var height2 = (content) => content.split(`
|
265772
|
+
`).length;
|
265773
|
+
var lastLine2 = (content) => content.split(`
|
265774
|
+
`).pop() ?? "";
|
265775
|
+
function cursorDown2(n6) {
|
265776
|
+
return n6 > 0 ? import_ansi_escapes2.default.cursorDown(n6) : "";
|
265777
|
+
}
|
265778
|
+
|
265779
|
+
class ScreenManager2 {
|
265780
|
+
height = 0;
|
265781
|
+
extraLinesUnderPrompt = 0;
|
265782
|
+
cursorPos;
|
265783
|
+
rl;
|
265784
|
+
constructor(rl) {
|
265785
|
+
this.rl = rl;
|
265786
|
+
this.cursorPos = rl.getCursorPos();
|
265787
|
+
}
|
265788
|
+
write(content) {
|
265789
|
+
this.rl.output.unmute();
|
265790
|
+
this.rl.output.write(content);
|
265791
|
+
this.rl.output.mute();
|
265792
|
+
}
|
265793
|
+
render(content, bottomContent = "") {
|
265794
|
+
const promptLine = lastLine2(content);
|
265795
|
+
const rawPromptLine = stripVTControlCharacters3(promptLine);
|
265796
|
+
let prompt = rawPromptLine;
|
265797
|
+
if (this.rl.line.length > 0) {
|
265798
|
+
prompt = prompt.slice(0, -this.rl.line.length);
|
265799
|
+
}
|
265800
|
+
this.rl.setPrompt(prompt);
|
265801
|
+
this.cursorPos = this.rl.getCursorPos();
|
265802
|
+
const width = readlineWidth2();
|
265803
|
+
content = breakLines2(content, width);
|
265804
|
+
bottomContent = breakLines2(bottomContent, width);
|
265805
|
+
if (rawPromptLine.length % width === 0) {
|
265806
|
+
content += `
|
265807
|
+
`;
|
265808
|
+
}
|
265809
|
+
let output = content + (bottomContent ? `
|
265810
|
+
` + bottomContent : "");
|
265811
|
+
const promptLineUpDiff = Math.floor(rawPromptLine.length / width) - this.cursorPos.rows;
|
265812
|
+
const bottomContentHeight = promptLineUpDiff + (bottomContent ? height2(bottomContent) : 0);
|
265813
|
+
if (bottomContentHeight > 0)
|
265814
|
+
output += import_ansi_escapes2.default.cursorUp(bottomContentHeight);
|
265815
|
+
output += import_ansi_escapes2.default.cursorTo(this.cursorPos.cols);
|
265816
|
+
this.write(cursorDown2(this.extraLinesUnderPrompt) + import_ansi_escapes2.default.eraseLines(this.height) + output);
|
265817
|
+
this.extraLinesUnderPrompt = bottomContentHeight;
|
265818
|
+
this.height = height2(output);
|
265819
|
+
}
|
265820
|
+
checkCursorPos() {
|
265821
|
+
const cursorPos = this.rl.getCursorPos();
|
265822
|
+
if (cursorPos.cols !== this.cursorPos.cols) {
|
265823
|
+
this.write(import_ansi_escapes2.default.cursorTo(cursorPos.cols));
|
265824
|
+
this.cursorPos = cursorPos;
|
265825
|
+
}
|
265826
|
+
}
|
265827
|
+
done({ clearContent }) {
|
265828
|
+
this.rl.setPrompt("");
|
265829
|
+
let output = cursorDown2(this.extraLinesUnderPrompt);
|
265830
|
+
output += clearContent ? import_ansi_escapes2.default.eraseLines(this.height) : `
|
265831
|
+
`;
|
265832
|
+
output += import_ansi_escapes2.default.cursorShow;
|
265833
|
+
this.write(output);
|
265834
|
+
this.rl.close();
|
265835
|
+
}
|
265836
|
+
}
|
265837
|
+
|
265838
|
+
// ../../node_modules/@inquirer/input/node_modules/@inquirer/core/dist/esm/lib/promise-polyfill.js
|
265839
|
+
class PromisePolyfill2 extends Promise {
|
265840
|
+
static withResolver() {
|
265841
|
+
let resolve5;
|
265842
|
+
let reject;
|
265843
|
+
const promise = new Promise((res, rej) => {
|
265844
|
+
resolve5 = res;
|
265845
|
+
reject = rej;
|
265846
|
+
});
|
265847
|
+
return { promise, resolve: resolve5, reject };
|
265848
|
+
}
|
265849
|
+
}
|
265850
|
+
|
265851
|
+
// ../../node_modules/@inquirer/input/node_modules/@inquirer/core/dist/esm/lib/create-prompt.js
|
265852
|
+
function getCallSites2() {
|
265853
|
+
const _prepareStackTrace = Error.prepareStackTrace;
|
265854
|
+
let result = [];
|
265855
|
+
try {
|
265856
|
+
Error.prepareStackTrace = (_5, callSites) => {
|
265857
|
+
const callSitesWithoutCurrent = callSites.slice(1);
|
265858
|
+
result = callSitesWithoutCurrent;
|
265859
|
+
return callSitesWithoutCurrent;
|
265860
|
+
};
|
265861
|
+
new Error().stack;
|
265862
|
+
} catch {
|
265863
|
+
return result;
|
265864
|
+
}
|
265865
|
+
Error.prepareStackTrace = _prepareStackTrace;
|
265866
|
+
return result;
|
265867
|
+
}
|
265868
|
+
function createPrompt2(view) {
|
265869
|
+
const callSites = getCallSites2();
|
265870
|
+
const prompt = (config3, context = {}) => {
|
265871
|
+
const { input = process.stdin, signal } = context;
|
265872
|
+
const cleanups = new Set;
|
265873
|
+
const output = new import_mute_stream2.default;
|
265874
|
+
output.pipe(context.output ?? process.stdout);
|
265875
|
+
const rl = readline4.createInterface({
|
265876
|
+
terminal: true,
|
265877
|
+
input,
|
265878
|
+
output
|
265879
|
+
});
|
265880
|
+
const screen = new ScreenManager2(rl);
|
265881
|
+
const { promise, resolve: resolve5, reject } = PromisePolyfill2.withResolver();
|
265882
|
+
const cancel3 = () => reject(new CancelPromptError2);
|
265883
|
+
if (signal) {
|
265884
|
+
const abort = () => reject(new AbortPromptError2({ cause: signal.reason }));
|
265885
|
+
if (signal.aborted) {
|
265886
|
+
abort();
|
265887
|
+
return Object.assign(promise, { cancel: cancel3 });
|
265888
|
+
}
|
265889
|
+
signal.addEventListener("abort", abort);
|
265890
|
+
cleanups.add(() => signal.removeEventListener("abort", abort));
|
265891
|
+
}
|
265892
|
+
cleanups.add(onExit((code2, signal2) => {
|
265893
|
+
reject(new ExitPromptError2(`User force closed the prompt with ${code2} ${signal2}`));
|
265894
|
+
}));
|
265895
|
+
const checkCursorPos = () => screen.checkCursorPos();
|
265896
|
+
rl.input.on("keypress", checkCursorPos);
|
265897
|
+
cleanups.add(() => rl.input.removeListener("keypress", checkCursorPos));
|
265898
|
+
return withHooks2(rl, (cycle) => {
|
265899
|
+
const hooksCleanup = AsyncResource6.bind(() => effectScheduler2.clearAll());
|
265900
|
+
rl.on("close", hooksCleanup);
|
265901
|
+
cleanups.add(() => rl.removeListener("close", hooksCleanup));
|
265902
|
+
cycle(() => {
|
265903
|
+
try {
|
265904
|
+
const nextView = view(config3, (value4) => {
|
265905
|
+
setImmediate(() => resolve5(value4));
|
265906
|
+
});
|
265907
|
+
if (nextView === undefined) {
|
265908
|
+
const callerFilename = callSites[1]?.getFileName?.();
|
265909
|
+
throw new Error(`Prompt functions must return a string.
|
265910
|
+
at ${callerFilename}`);
|
265911
|
+
}
|
265912
|
+
const [content, bottomContent] = typeof nextView === "string" ? [nextView] : nextView;
|
265913
|
+
screen.render(content, bottomContent);
|
265914
|
+
effectScheduler2.run();
|
265915
|
+
} catch (error5) {
|
265916
|
+
reject(error5);
|
265917
|
+
}
|
265918
|
+
});
|
265919
|
+
return Object.assign(promise.then((answer) => {
|
265920
|
+
effectScheduler2.clearAll();
|
265921
|
+
return answer;
|
265922
|
+
}, (error5) => {
|
265923
|
+
effectScheduler2.clearAll();
|
265924
|
+
throw error5;
|
265925
|
+
}).finally(() => {
|
265926
|
+
cleanups.forEach((cleanup) => cleanup());
|
265927
|
+
screen.done({ clearContent: Boolean(context.clearPromptOnDone) });
|
265928
|
+
output.end();
|
265929
|
+
}).then(() => promise), { cancel: cancel3 });
|
265930
|
+
});
|
265931
|
+
};
|
265932
|
+
return prompt;
|
265933
|
+
}
|
265586
265934
|
// ../../node_modules/@inquirer/input/dist/esm/index.js
|
265587
265935
|
var inputTheme = {
|
265588
265936
|
validationFailureMode: "keep"
|
265589
265937
|
};
|
265590
|
-
var esm_default2 =
|
265938
|
+
var esm_default2 = createPrompt2((config3, done) => {
|
265591
265939
|
const { required, validate: validate3 = () => true } = config3;
|
265592
|
-
const theme =
|
265593
|
-
const [status, setStatus] =
|
265594
|
-
const [defaultValue = "", setDefaultValue] =
|
265595
|
-
const [errorMsg, setError] =
|
265596
|
-
const [value4, setValue] =
|
265597
|
-
const prefix =
|
265598
|
-
|
265940
|
+
const theme = makeTheme2(inputTheme, config3.theme);
|
265941
|
+
const [status, setStatus] = useState2("idle");
|
265942
|
+
const [defaultValue = "", setDefaultValue] = useState2(config3.default);
|
265943
|
+
const [errorMsg, setError] = useState2();
|
265944
|
+
const [value4, setValue] = useState2("");
|
265945
|
+
const prefix = usePrefix2({ status, theme });
|
265946
|
+
useKeypress2(async (key3, rl) => {
|
265599
265947
|
if (status !== "idle") {
|
265600
265948
|
return;
|
265601
265949
|
}
|
265602
|
-
if (
|
265950
|
+
if (isEnterKey2(key3)) {
|
265603
265951
|
const answer = value4 || defaultValue;
|
265604
265952
|
setStatus("loading");
|
265605
265953
|
const isValid2 = required && !answer ? "You must provide a value" : await validate3(answer);
|
@@ -265616,9 +265964,9 @@ var esm_default2 = createPrompt((config3, done) => {
|
|
265616
265964
|
setError(isValid2 || "You must provide a valid value");
|
265617
265965
|
setStatus("idle");
|
265618
265966
|
}
|
265619
|
-
} else if (isBackspaceKey(
|
265967
|
+
} else if (isBackspaceKey(key3) && !value4) {
|
265620
265968
|
setDefaultValue(undefined);
|
265621
|
-
} else if (
|
265969
|
+
} else if (key3.name === "tab" && !value4) {
|
265622
265970
|
setDefaultValue(undefined);
|
265623
265971
|
rl.clearLine(0);
|
265624
265972
|
rl.write(defaultValue);
|
@@ -265667,14 +266015,585 @@ async function subgraphNamePrompt({
|
|
265667
266015
|
return sanitizeName(subgraphName);
|
265668
266016
|
}
|
265669
266017
|
|
265670
|
-
// ../../node_modules/@inquirer/select/dist/esm/
|
266018
|
+
// ../../node_modules/@inquirer/select/node_modules/@inquirer/core/dist/esm/lib/key.js
|
266019
|
+
var isUpKey = (key3) => key3.name === "up" || key3.name === "k" || key3.ctrl && key3.name === "p";
|
266020
|
+
var isDownKey = (key3) => key3.name === "down" || key3.name === "j" || key3.ctrl && key3.name === "n";
|
266021
|
+
var isBackspaceKey2 = (key3) => key3.name === "backspace";
|
266022
|
+
var isNumberKey = (key3) => "1234567890".includes(key3.name);
|
266023
|
+
var isEnterKey3 = (key3) => key3.name === "enter" || key3.name === "return";
|
266024
|
+
// ../../node_modules/@inquirer/select/node_modules/@inquirer/core/dist/esm/lib/errors.js
|
266025
|
+
class AbortPromptError3 extends Error {
|
266026
|
+
name = "AbortPromptError";
|
266027
|
+
message = "Prompt was aborted";
|
266028
|
+
constructor(options) {
|
266029
|
+
super();
|
266030
|
+
this.cause = options?.cause;
|
266031
|
+
}
|
266032
|
+
}
|
266033
|
+
|
266034
|
+
class CancelPromptError3 extends Error {
|
266035
|
+
name = "CancelPromptError";
|
266036
|
+
message = "Prompt was canceled";
|
266037
|
+
}
|
266038
|
+
|
266039
|
+
class ExitPromptError3 extends Error {
|
266040
|
+
name = "ExitPromptError";
|
266041
|
+
}
|
266042
|
+
|
266043
|
+
class HookError3 extends Error {
|
266044
|
+
name = "HookError";
|
266045
|
+
}
|
266046
|
+
|
266047
|
+
class ValidationError3 extends Error {
|
266048
|
+
name = "ValidationError";
|
266049
|
+
}
|
266050
|
+
// ../../node_modules/@inquirer/select/node_modules/@inquirer/core/dist/esm/lib/use-prefix.js
|
266051
|
+
import { AsyncResource as AsyncResource8 } from "node:async_hooks";
|
266052
|
+
|
266053
|
+
// ../../node_modules/@inquirer/select/node_modules/@inquirer/core/dist/esm/lib/hook-engine.js
|
266054
|
+
import { AsyncLocalStorage as AsyncLocalStorage3, AsyncResource as AsyncResource7 } from "node:async_hooks";
|
266055
|
+
var hookStorage3 = new AsyncLocalStorage3;
|
266056
|
+
function createStore3(rl) {
|
266057
|
+
const store = {
|
266058
|
+
rl,
|
266059
|
+
hooks: [],
|
266060
|
+
hooksCleanup: [],
|
266061
|
+
hooksEffect: [],
|
266062
|
+
index: 0,
|
266063
|
+
handleChange() {}
|
266064
|
+
};
|
266065
|
+
return store;
|
266066
|
+
}
|
266067
|
+
function withHooks3(rl, cb) {
|
266068
|
+
const store = createStore3(rl);
|
266069
|
+
return hookStorage3.run(store, () => {
|
266070
|
+
function cycle(render) {
|
266071
|
+
store.handleChange = () => {
|
266072
|
+
store.index = 0;
|
266073
|
+
render();
|
266074
|
+
};
|
266075
|
+
store.handleChange();
|
266076
|
+
}
|
266077
|
+
return cb(cycle);
|
266078
|
+
});
|
266079
|
+
}
|
266080
|
+
function getStore3() {
|
266081
|
+
const store = hookStorage3.getStore();
|
266082
|
+
if (!store) {
|
266083
|
+
throw new HookError3("[Inquirer] Hook functions can only be called from within a prompt");
|
266084
|
+
}
|
266085
|
+
return store;
|
266086
|
+
}
|
266087
|
+
function readline5() {
|
266088
|
+
return getStore3().rl;
|
266089
|
+
}
|
266090
|
+
function withUpdates3(fn) {
|
266091
|
+
const wrapped = (...args) => {
|
266092
|
+
const store = getStore3();
|
266093
|
+
let shouldUpdate = false;
|
266094
|
+
const oldHandleChange = store.handleChange;
|
266095
|
+
store.handleChange = () => {
|
266096
|
+
shouldUpdate = true;
|
266097
|
+
};
|
266098
|
+
const returnValue = fn(...args);
|
266099
|
+
if (shouldUpdate) {
|
266100
|
+
oldHandleChange();
|
266101
|
+
}
|
266102
|
+
store.handleChange = oldHandleChange;
|
266103
|
+
return returnValue;
|
266104
|
+
};
|
266105
|
+
return AsyncResource7.bind(wrapped);
|
266106
|
+
}
|
266107
|
+
function withPointer3(cb) {
|
266108
|
+
const store = getStore3();
|
266109
|
+
const { index } = store;
|
266110
|
+
const pointer = {
|
266111
|
+
get() {
|
266112
|
+
return store.hooks[index];
|
266113
|
+
},
|
266114
|
+
set(value4) {
|
266115
|
+
store.hooks[index] = value4;
|
266116
|
+
},
|
266117
|
+
initialized: index in store.hooks
|
266118
|
+
};
|
266119
|
+
const returnValue = cb(pointer);
|
266120
|
+
store.index++;
|
266121
|
+
return returnValue;
|
266122
|
+
}
|
266123
|
+
function handleChange3() {
|
266124
|
+
getStore3().handleChange();
|
266125
|
+
}
|
266126
|
+
var effectScheduler3 = {
|
266127
|
+
queue(cb) {
|
266128
|
+
const store = getStore3();
|
266129
|
+
const { index } = store;
|
266130
|
+
store.hooksEffect.push(() => {
|
266131
|
+
store.hooksCleanup[index]?.();
|
266132
|
+
const cleanFn = cb(readline5());
|
266133
|
+
if (cleanFn != null && typeof cleanFn !== "function") {
|
266134
|
+
throw new ValidationError3("useEffect return value must be a cleanup function or nothing.");
|
266135
|
+
}
|
266136
|
+
store.hooksCleanup[index] = cleanFn;
|
266137
|
+
});
|
266138
|
+
},
|
266139
|
+
run() {
|
266140
|
+
const store = getStore3();
|
266141
|
+
withUpdates3(() => {
|
266142
|
+
store.hooksEffect.forEach((effect) => {
|
266143
|
+
effect();
|
266144
|
+
});
|
266145
|
+
store.hooksEffect.length = 0;
|
266146
|
+
})();
|
266147
|
+
},
|
266148
|
+
clearAll() {
|
266149
|
+
const store = getStore3();
|
266150
|
+
store.hooksCleanup.forEach((cleanFn) => {
|
266151
|
+
cleanFn?.();
|
266152
|
+
});
|
266153
|
+
store.hooksEffect.length = 0;
|
266154
|
+
store.hooksCleanup.length = 0;
|
266155
|
+
}
|
266156
|
+
};
|
266157
|
+
|
266158
|
+
// ../../node_modules/@inquirer/select/node_modules/@inquirer/core/dist/esm/lib/use-state.js
|
266159
|
+
function useState3(defaultValue) {
|
266160
|
+
return withPointer3((pointer) => {
|
266161
|
+
const setFn = (newValue) => {
|
266162
|
+
if (pointer.get() !== newValue) {
|
266163
|
+
pointer.set(newValue);
|
266164
|
+
handleChange3();
|
266165
|
+
}
|
266166
|
+
};
|
266167
|
+
if (pointer.initialized) {
|
266168
|
+
return [pointer.get(), setFn];
|
266169
|
+
}
|
266170
|
+
const value4 = typeof defaultValue === "function" ? defaultValue() : defaultValue;
|
266171
|
+
pointer.set(value4);
|
266172
|
+
return [value4, setFn];
|
266173
|
+
});
|
266174
|
+
}
|
266175
|
+
|
266176
|
+
// ../../node_modules/@inquirer/select/node_modules/@inquirer/core/dist/esm/lib/use-effect.js
|
266177
|
+
function useEffect3(cb, depArray) {
|
266178
|
+
withPointer3((pointer) => {
|
266179
|
+
const oldDeps = pointer.get();
|
266180
|
+
const hasChanged = !Array.isArray(oldDeps) || depArray.some((dep, i6) => !Object.is(dep, oldDeps[i6]));
|
266181
|
+
if (hasChanged) {
|
266182
|
+
effectScheduler3.queue(cb);
|
266183
|
+
}
|
266184
|
+
pointer.set(depArray);
|
266185
|
+
});
|
266186
|
+
}
|
266187
|
+
|
266188
|
+
// ../../node_modules/@inquirer/select/node_modules/@inquirer/core/dist/esm/lib/theme.js
|
265671
266189
|
var import_yoctocolors_cjs3 = __toESM(require_yoctocolors_cjs(), 1);
|
265672
|
-
var
|
266190
|
+
var defaultTheme3 = {
|
266191
|
+
prefix: {
|
266192
|
+
idle: import_yoctocolors_cjs3.default.blue("?"),
|
266193
|
+
done: import_yoctocolors_cjs3.default.green(esm_default.tick)
|
266194
|
+
},
|
266195
|
+
spinner: {
|
266196
|
+
interval: 80,
|
266197
|
+
frames: ["⠋", "⠙", "⠹", "⠸", "⠼", "⠴", "⠦", "⠧", "⠇", "⠏"].map((frame) => import_yoctocolors_cjs3.default.yellow(frame))
|
266198
|
+
},
|
266199
|
+
style: {
|
266200
|
+
answer: import_yoctocolors_cjs3.default.cyan,
|
266201
|
+
message: import_yoctocolors_cjs3.default.bold,
|
266202
|
+
error: (text2) => import_yoctocolors_cjs3.default.red(`> ${text2}`),
|
266203
|
+
defaultAnswer: (text2) => import_yoctocolors_cjs3.default.dim(`(${text2})`),
|
266204
|
+
help: import_yoctocolors_cjs3.default.dim,
|
266205
|
+
highlight: import_yoctocolors_cjs3.default.cyan,
|
266206
|
+
key: (text2) => import_yoctocolors_cjs3.default.cyan(import_yoctocolors_cjs3.default.bold(`<${text2}>`))
|
266207
|
+
}
|
266208
|
+
};
|
266209
|
+
|
266210
|
+
// ../../node_modules/@inquirer/select/node_modules/@inquirer/core/dist/esm/lib/make-theme.js
|
266211
|
+
function isPlainObject4(value4) {
|
266212
|
+
if (typeof value4 !== "object" || value4 === null)
|
266213
|
+
return false;
|
266214
|
+
let proto = value4;
|
266215
|
+
while (Object.getPrototypeOf(proto) !== null) {
|
266216
|
+
proto = Object.getPrototypeOf(proto);
|
266217
|
+
}
|
266218
|
+
return Object.getPrototypeOf(value4) === proto;
|
266219
|
+
}
|
266220
|
+
function deepMerge4(...objects) {
|
266221
|
+
const output = {};
|
266222
|
+
for (const obj of objects) {
|
266223
|
+
for (const [key3, value4] of Object.entries(obj)) {
|
266224
|
+
const prevValue = output[key3];
|
266225
|
+
output[key3] = isPlainObject4(prevValue) && isPlainObject4(value4) ? deepMerge4(prevValue, value4) : value4;
|
266226
|
+
}
|
266227
|
+
}
|
266228
|
+
return output;
|
266229
|
+
}
|
266230
|
+
function makeTheme3(...themes) {
|
266231
|
+
const themesToMerge = [
|
266232
|
+
defaultTheme3,
|
266233
|
+
...themes.filter((theme) => theme != null)
|
266234
|
+
];
|
266235
|
+
return deepMerge4(...themesToMerge);
|
266236
|
+
}
|
266237
|
+
|
266238
|
+
// ../../node_modules/@inquirer/select/node_modules/@inquirer/core/dist/esm/lib/use-prefix.js
|
266239
|
+
function usePrefix3({ status = "idle", theme }) {
|
266240
|
+
const [showLoader, setShowLoader] = useState3(false);
|
266241
|
+
const [tick, setTick] = useState3(0);
|
266242
|
+
const { prefix, spinner: spinner2 } = makeTheme3(theme);
|
266243
|
+
useEffect3(() => {
|
266244
|
+
if (status === "loading") {
|
266245
|
+
let tickInterval;
|
266246
|
+
let inc = -1;
|
266247
|
+
const delayTimeout = setTimeout(AsyncResource8.bind(() => {
|
266248
|
+
setShowLoader(true);
|
266249
|
+
tickInterval = setInterval(AsyncResource8.bind(() => {
|
266250
|
+
inc = inc + 1;
|
266251
|
+
setTick(inc % spinner2.frames.length);
|
266252
|
+
}), spinner2.interval);
|
266253
|
+
}), 300);
|
266254
|
+
return () => {
|
266255
|
+
clearTimeout(delayTimeout);
|
266256
|
+
clearInterval(tickInterval);
|
266257
|
+
};
|
266258
|
+
} else {
|
266259
|
+
setShowLoader(false);
|
266260
|
+
}
|
266261
|
+
}, [status]);
|
266262
|
+
if (showLoader) {
|
266263
|
+
return spinner2.frames[tick];
|
266264
|
+
}
|
266265
|
+
const iconName = status === "loading" ? "idle" : status;
|
266266
|
+
return typeof prefix === "string" ? prefix : prefix[iconName] ?? prefix["idle"];
|
266267
|
+
}
|
266268
|
+
// ../../node_modules/@inquirer/select/node_modules/@inquirer/core/dist/esm/lib/use-memo.js
|
266269
|
+
function useMemo(fn, dependencies) {
|
266270
|
+
return withPointer3((pointer) => {
|
266271
|
+
const prev = pointer.get();
|
266272
|
+
if (!prev || prev.dependencies.length !== dependencies.length || prev.dependencies.some((dep, i6) => dep !== dependencies[i6])) {
|
266273
|
+
const value4 = fn();
|
266274
|
+
pointer.set({ value: value4, dependencies });
|
266275
|
+
return value4;
|
266276
|
+
}
|
266277
|
+
return prev.value;
|
266278
|
+
});
|
266279
|
+
}
|
266280
|
+
// ../../node_modules/@inquirer/select/node_modules/@inquirer/core/dist/esm/lib/use-ref.js
|
266281
|
+
function useRef3(val) {
|
266282
|
+
return useState3({ current: val })[0];
|
266283
|
+
}
|
266284
|
+
// ../../node_modules/@inquirer/select/node_modules/@inquirer/core/dist/esm/lib/use-keypress.js
|
266285
|
+
function useKeypress3(userHandler) {
|
266286
|
+
const signal = useRef3(userHandler);
|
266287
|
+
signal.current = userHandler;
|
266288
|
+
useEffect3((rl) => {
|
266289
|
+
let ignore = false;
|
266290
|
+
const handler = withUpdates3((_input, event) => {
|
266291
|
+
if (ignore)
|
266292
|
+
return;
|
266293
|
+
signal.current(event, rl);
|
266294
|
+
});
|
266295
|
+
rl.input.on("keypress", handler);
|
266296
|
+
return () => {
|
266297
|
+
ignore = true;
|
266298
|
+
rl.input.removeListener("keypress", handler);
|
266299
|
+
};
|
266300
|
+
}, []);
|
266301
|
+
}
|
266302
|
+
// ../../node_modules/@inquirer/select/node_modules/@inquirer/core/dist/esm/lib/utils.js
|
266303
|
+
var import_cli_width3 = __toESM(require_cli_width(), 1);
|
266304
|
+
var import_wrap_ansi3 = __toESM(require_wrap_ansi(), 1);
|
266305
|
+
function breakLines3(content, width) {
|
266306
|
+
return content.split(`
|
266307
|
+
`).flatMap((line) => import_wrap_ansi3.default(line, width, { trim: false, hard: true }).split(`
|
266308
|
+
`).map((str) => str.trimEnd())).join(`
|
266309
|
+
`);
|
266310
|
+
}
|
266311
|
+
function readlineWidth3() {
|
266312
|
+
return import_cli_width3.default({ defaultWidth: 80, output: readline5().output });
|
266313
|
+
}
|
266314
|
+
|
266315
|
+
// ../../node_modules/@inquirer/select/node_modules/@inquirer/core/dist/esm/lib/pagination/lines.js
|
266316
|
+
function split2(content, width) {
|
266317
|
+
return breakLines3(content, width).split(`
|
266318
|
+
`);
|
266319
|
+
}
|
266320
|
+
function rotate(count, items) {
|
266321
|
+
const max = items.length;
|
266322
|
+
const offset = (count % max + max) % max;
|
266323
|
+
return [...items.slice(offset), ...items.slice(0, offset)];
|
266324
|
+
}
|
266325
|
+
function lines({ items, width, renderItem, active, position: requested, pageSize }) {
|
266326
|
+
const layouts = items.map((item, index) => ({
|
266327
|
+
item,
|
266328
|
+
index,
|
266329
|
+
isActive: index === active
|
266330
|
+
}));
|
266331
|
+
const layoutsInPage = rotate(active - requested, layouts).slice(0, pageSize);
|
266332
|
+
const renderItemAt = (index) => layoutsInPage[index] == null ? [] : split2(renderItem(layoutsInPage[index]), width);
|
266333
|
+
const pageBuffer = Array.from({ length: pageSize });
|
266334
|
+
const activeItem = renderItemAt(requested).slice(0, pageSize);
|
266335
|
+
const position = requested + activeItem.length <= pageSize ? requested : pageSize - activeItem.length;
|
266336
|
+
pageBuffer.splice(position, activeItem.length, ...activeItem);
|
266337
|
+
let bufferPointer = position + activeItem.length;
|
266338
|
+
let layoutPointer = requested + 1;
|
266339
|
+
while (bufferPointer < pageSize && layoutPointer < layoutsInPage.length) {
|
266340
|
+
for (const line of renderItemAt(layoutPointer)) {
|
266341
|
+
pageBuffer[bufferPointer++] = line;
|
266342
|
+
if (bufferPointer >= pageSize)
|
266343
|
+
break;
|
266344
|
+
}
|
266345
|
+
layoutPointer++;
|
266346
|
+
}
|
266347
|
+
bufferPointer = position - 1;
|
266348
|
+
layoutPointer = requested - 1;
|
266349
|
+
while (bufferPointer >= 0 && layoutPointer >= 0) {
|
266350
|
+
for (const line of renderItemAt(layoutPointer).reverse()) {
|
266351
|
+
pageBuffer[bufferPointer--] = line;
|
266352
|
+
if (bufferPointer < 0)
|
266353
|
+
break;
|
266354
|
+
}
|
266355
|
+
layoutPointer--;
|
266356
|
+
}
|
266357
|
+
return pageBuffer.filter((line) => typeof line === "string");
|
266358
|
+
}
|
266359
|
+
|
266360
|
+
// ../../node_modules/@inquirer/select/node_modules/@inquirer/core/dist/esm/lib/pagination/position.js
|
266361
|
+
function finite({ active, pageSize, total }) {
|
266362
|
+
const middle = Math.floor(pageSize / 2);
|
266363
|
+
if (total <= pageSize || active < middle)
|
266364
|
+
return active;
|
266365
|
+
if (active >= total - middle)
|
266366
|
+
return active + pageSize - total;
|
266367
|
+
return middle;
|
266368
|
+
}
|
266369
|
+
function infinite({ active, lastActive, total, pageSize, pointer }) {
|
266370
|
+
if (total <= pageSize)
|
266371
|
+
return active;
|
266372
|
+
if (lastActive < active && active - lastActive < pageSize) {
|
266373
|
+
return Math.min(Math.floor(pageSize / 2), pointer + active - lastActive);
|
266374
|
+
}
|
266375
|
+
return pointer;
|
266376
|
+
}
|
266377
|
+
|
266378
|
+
// ../../node_modules/@inquirer/select/node_modules/@inquirer/core/dist/esm/lib/pagination/use-pagination.js
|
266379
|
+
function usePagination({ items, active, renderItem, pageSize, loop = true }) {
|
266380
|
+
const state = useRef3({ position: 0, lastActive: 0 });
|
266381
|
+
const position = loop ? infinite({
|
266382
|
+
active,
|
266383
|
+
lastActive: state.current.lastActive,
|
266384
|
+
total: items.length,
|
266385
|
+
pageSize,
|
266386
|
+
pointer: state.current.position
|
266387
|
+
}) : finite({
|
266388
|
+
active,
|
266389
|
+
total: items.length,
|
266390
|
+
pageSize
|
266391
|
+
});
|
266392
|
+
state.current.position = position;
|
266393
|
+
state.current.lastActive = active;
|
266394
|
+
return lines({
|
266395
|
+
items,
|
266396
|
+
width: readlineWidth3(),
|
266397
|
+
renderItem,
|
266398
|
+
active,
|
266399
|
+
position,
|
266400
|
+
pageSize
|
266401
|
+
}).join(`
|
266402
|
+
`);
|
266403
|
+
}
|
266404
|
+
// ../../node_modules/@inquirer/select/node_modules/@inquirer/core/dist/esm/lib/create-prompt.js
|
266405
|
+
var import_mute_stream3 = __toESM(require_lib(), 1);
|
266406
|
+
import * as readline6 from "node:readline";
|
266407
|
+
import { AsyncResource as AsyncResource9 } from "node:async_hooks";
|
266408
|
+
|
266409
|
+
// ../../node_modules/@inquirer/select/node_modules/@inquirer/core/dist/esm/lib/screen-manager.js
|
266410
|
+
var import_ansi_escapes3 = __toESM(require_ansi_escapes(), 1);
|
266411
|
+
import { stripVTControlCharacters as stripVTControlCharacters4 } from "node:util";
|
266412
|
+
var height3 = (content) => content.split(`
|
266413
|
+
`).length;
|
266414
|
+
var lastLine3 = (content) => content.split(`
|
266415
|
+
`).pop() ?? "";
|
266416
|
+
function cursorDown3(n6) {
|
266417
|
+
return n6 > 0 ? import_ansi_escapes3.default.cursorDown(n6) : "";
|
266418
|
+
}
|
266419
|
+
|
266420
|
+
class ScreenManager3 {
|
266421
|
+
height = 0;
|
266422
|
+
extraLinesUnderPrompt = 0;
|
266423
|
+
cursorPos;
|
266424
|
+
rl;
|
266425
|
+
constructor(rl) {
|
266426
|
+
this.rl = rl;
|
266427
|
+
this.cursorPos = rl.getCursorPos();
|
266428
|
+
}
|
266429
|
+
write(content) {
|
266430
|
+
this.rl.output.unmute();
|
266431
|
+
this.rl.output.write(content);
|
266432
|
+
this.rl.output.mute();
|
266433
|
+
}
|
266434
|
+
render(content, bottomContent = "") {
|
266435
|
+
const promptLine = lastLine3(content);
|
266436
|
+
const rawPromptLine = stripVTControlCharacters4(promptLine);
|
266437
|
+
let prompt = rawPromptLine;
|
266438
|
+
if (this.rl.line.length > 0) {
|
266439
|
+
prompt = prompt.slice(0, -this.rl.line.length);
|
266440
|
+
}
|
266441
|
+
this.rl.setPrompt(prompt);
|
266442
|
+
this.cursorPos = this.rl.getCursorPos();
|
266443
|
+
const width = readlineWidth3();
|
266444
|
+
content = breakLines3(content, width);
|
266445
|
+
bottomContent = breakLines3(bottomContent, width);
|
266446
|
+
if (rawPromptLine.length % width === 0) {
|
266447
|
+
content += `
|
266448
|
+
`;
|
266449
|
+
}
|
266450
|
+
let output = content + (bottomContent ? `
|
266451
|
+
` + bottomContent : "");
|
266452
|
+
const promptLineUpDiff = Math.floor(rawPromptLine.length / width) - this.cursorPos.rows;
|
266453
|
+
const bottomContentHeight = promptLineUpDiff + (bottomContent ? height3(bottomContent) : 0);
|
266454
|
+
if (bottomContentHeight > 0)
|
266455
|
+
output += import_ansi_escapes3.default.cursorUp(bottomContentHeight);
|
266456
|
+
output += import_ansi_escapes3.default.cursorTo(this.cursorPos.cols);
|
266457
|
+
this.write(cursorDown3(this.extraLinesUnderPrompt) + import_ansi_escapes3.default.eraseLines(this.height) + output);
|
266458
|
+
this.extraLinesUnderPrompt = bottomContentHeight;
|
266459
|
+
this.height = height3(output);
|
266460
|
+
}
|
266461
|
+
checkCursorPos() {
|
266462
|
+
const cursorPos = this.rl.getCursorPos();
|
266463
|
+
if (cursorPos.cols !== this.cursorPos.cols) {
|
266464
|
+
this.write(import_ansi_escapes3.default.cursorTo(cursorPos.cols));
|
266465
|
+
this.cursorPos = cursorPos;
|
266466
|
+
}
|
266467
|
+
}
|
266468
|
+
done({ clearContent }) {
|
266469
|
+
this.rl.setPrompt("");
|
266470
|
+
let output = cursorDown3(this.extraLinesUnderPrompt);
|
266471
|
+
output += clearContent ? import_ansi_escapes3.default.eraseLines(this.height) : `
|
266472
|
+
`;
|
266473
|
+
output += import_ansi_escapes3.default.cursorShow;
|
266474
|
+
this.write(output);
|
266475
|
+
this.rl.close();
|
266476
|
+
}
|
266477
|
+
}
|
266478
|
+
|
266479
|
+
// ../../node_modules/@inquirer/select/node_modules/@inquirer/core/dist/esm/lib/promise-polyfill.js
|
266480
|
+
class PromisePolyfill3 extends Promise {
|
266481
|
+
static withResolver() {
|
266482
|
+
let resolve5;
|
266483
|
+
let reject;
|
266484
|
+
const promise = new Promise((res, rej) => {
|
266485
|
+
resolve5 = res;
|
266486
|
+
reject = rej;
|
266487
|
+
});
|
266488
|
+
return { promise, resolve: resolve5, reject };
|
266489
|
+
}
|
266490
|
+
}
|
266491
|
+
|
266492
|
+
// ../../node_modules/@inquirer/select/node_modules/@inquirer/core/dist/esm/lib/create-prompt.js
|
266493
|
+
function getCallSites3() {
|
266494
|
+
const _prepareStackTrace = Error.prepareStackTrace;
|
266495
|
+
let result = [];
|
266496
|
+
try {
|
266497
|
+
Error.prepareStackTrace = (_5, callSites) => {
|
266498
|
+
const callSitesWithoutCurrent = callSites.slice(1);
|
266499
|
+
result = callSitesWithoutCurrent;
|
266500
|
+
return callSitesWithoutCurrent;
|
266501
|
+
};
|
266502
|
+
new Error().stack;
|
266503
|
+
} catch {
|
266504
|
+
return result;
|
266505
|
+
}
|
266506
|
+
Error.prepareStackTrace = _prepareStackTrace;
|
266507
|
+
return result;
|
266508
|
+
}
|
266509
|
+
function createPrompt3(view) {
|
266510
|
+
const callSites = getCallSites3();
|
266511
|
+
const prompt = (config3, context = {}) => {
|
266512
|
+
const { input = process.stdin, signal } = context;
|
266513
|
+
const cleanups = new Set;
|
266514
|
+
const output = new import_mute_stream3.default;
|
266515
|
+
output.pipe(context.output ?? process.stdout);
|
266516
|
+
const rl = readline6.createInterface({
|
266517
|
+
terminal: true,
|
266518
|
+
input,
|
266519
|
+
output
|
266520
|
+
});
|
266521
|
+
const screen = new ScreenManager3(rl);
|
266522
|
+
const { promise, resolve: resolve5, reject } = PromisePolyfill3.withResolver();
|
266523
|
+
const cancel3 = () => reject(new CancelPromptError3);
|
266524
|
+
if (signal) {
|
266525
|
+
const abort = () => reject(new AbortPromptError3({ cause: signal.reason }));
|
266526
|
+
if (signal.aborted) {
|
266527
|
+
abort();
|
266528
|
+
return Object.assign(promise, { cancel: cancel3 });
|
266529
|
+
}
|
266530
|
+
signal.addEventListener("abort", abort);
|
266531
|
+
cleanups.add(() => signal.removeEventListener("abort", abort));
|
266532
|
+
}
|
266533
|
+
cleanups.add(onExit((code2, signal2) => {
|
266534
|
+
reject(new ExitPromptError3(`User force closed the prompt with ${code2} ${signal2}`));
|
266535
|
+
}));
|
266536
|
+
const checkCursorPos = () => screen.checkCursorPos();
|
266537
|
+
rl.input.on("keypress", checkCursorPos);
|
266538
|
+
cleanups.add(() => rl.input.removeListener("keypress", checkCursorPos));
|
266539
|
+
return withHooks3(rl, (cycle) => {
|
266540
|
+
const hooksCleanup = AsyncResource9.bind(() => effectScheduler3.clearAll());
|
266541
|
+
rl.on("close", hooksCleanup);
|
266542
|
+
cleanups.add(() => rl.removeListener("close", hooksCleanup));
|
266543
|
+
cycle(() => {
|
266544
|
+
try {
|
266545
|
+
const nextView = view(config3, (value4) => {
|
266546
|
+
setImmediate(() => resolve5(value4));
|
266547
|
+
});
|
266548
|
+
if (nextView === undefined) {
|
266549
|
+
const callerFilename = callSites[1]?.getFileName?.();
|
266550
|
+
throw new Error(`Prompt functions must return a string.
|
266551
|
+
at ${callerFilename}`);
|
266552
|
+
}
|
266553
|
+
const [content, bottomContent] = typeof nextView === "string" ? [nextView] : nextView;
|
266554
|
+
screen.render(content, bottomContent);
|
266555
|
+
effectScheduler3.run();
|
266556
|
+
} catch (error5) {
|
266557
|
+
reject(error5);
|
266558
|
+
}
|
266559
|
+
});
|
266560
|
+
return Object.assign(promise.then((answer) => {
|
266561
|
+
effectScheduler3.clearAll();
|
266562
|
+
return answer;
|
266563
|
+
}, (error5) => {
|
266564
|
+
effectScheduler3.clearAll();
|
266565
|
+
throw error5;
|
266566
|
+
}).finally(() => {
|
266567
|
+
cleanups.forEach((cleanup) => cleanup());
|
266568
|
+
screen.done({ clearContent: Boolean(context.clearPromptOnDone) });
|
266569
|
+
output.end();
|
266570
|
+
}).then(() => promise), { cancel: cancel3 });
|
266571
|
+
});
|
266572
|
+
};
|
266573
|
+
return prompt;
|
266574
|
+
}
|
266575
|
+
// ../../node_modules/@inquirer/select/node_modules/@inquirer/core/dist/esm/lib/Separator.js
|
266576
|
+
var import_yoctocolors_cjs4 = __toESM(require_yoctocolors_cjs(), 1);
|
266577
|
+
class Separator {
|
266578
|
+
separator = import_yoctocolors_cjs4.default.dim(Array.from({ length: 15 }).join(esm_default.line));
|
266579
|
+
type = "separator";
|
266580
|
+
constructor(separator) {
|
266581
|
+
if (separator) {
|
266582
|
+
this.separator = separator;
|
266583
|
+
}
|
266584
|
+
}
|
266585
|
+
static isSeparator(choice) {
|
266586
|
+
return Boolean(choice && typeof choice === "object" && "type" in choice && choice.type === "separator");
|
266587
|
+
}
|
266588
|
+
}
|
266589
|
+
// ../../node_modules/@inquirer/select/dist/esm/index.js
|
266590
|
+
var import_yoctocolors_cjs5 = __toESM(require_yoctocolors_cjs(), 1);
|
266591
|
+
var import_ansi_escapes4 = __toESM(require_ansi_escapes(), 1);
|
265673
266592
|
var selectTheme = {
|
265674
266593
|
icon: { cursor: esm_default.pointer },
|
265675
266594
|
style: {
|
265676
|
-
disabled: (text2) =>
|
265677
|
-
description: (text2) =>
|
266595
|
+
disabled: (text2) => import_yoctocolors_cjs5.default.dim(`- ${text2}`),
|
266596
|
+
description: (text2) => import_yoctocolors_cjs5.default.cyan(text2)
|
265678
266597
|
},
|
265679
266598
|
helpMode: "auto",
|
265680
266599
|
indexMode: "hidden"
|
@@ -265704,19 +266623,19 @@ function normalizeChoices(choices) {
|
|
265704
266623
|
};
|
265705
266624
|
});
|
265706
266625
|
}
|
265707
|
-
var esm_default3 =
|
266626
|
+
var esm_default3 = createPrompt3((config3, done) => {
|
265708
266627
|
const { loop = true, pageSize = 7 } = config3;
|
265709
|
-
const firstRender =
|
265710
|
-
const theme =
|
265711
|
-
const [status, setStatus] =
|
265712
|
-
const prefix =
|
265713
|
-
const searchTimeoutRef =
|
266628
|
+
const firstRender = useRef3(true);
|
266629
|
+
const theme = makeTheme3(selectTheme, config3.theme);
|
266630
|
+
const [status, setStatus] = useState3("idle");
|
266631
|
+
const prefix = usePrefix3({ status, theme });
|
266632
|
+
const searchTimeoutRef = useRef3();
|
265714
266633
|
const items = useMemo(() => normalizeChoices(config3.choices), [config3.choices]);
|
265715
266634
|
const bounds = useMemo(() => {
|
265716
266635
|
const first = items.findIndex(isSelectable);
|
265717
266636
|
const last = items.findLastIndex(isSelectable);
|
265718
266637
|
if (first === -1) {
|
265719
|
-
throw new
|
266638
|
+
throw new ValidationError3("[select prompt] No selectable choices. All choices are disabled.");
|
265720
266639
|
}
|
265721
266640
|
return { first, last };
|
265722
266641
|
}, [items]);
|
@@ -265725,24 +266644,24 @@ var esm_default3 = createPrompt((config3, done) => {
|
|
265725
266644
|
return -1;
|
265726
266645
|
return items.findIndex((item) => isSelectable(item) && item.value === config3.default);
|
265727
266646
|
}, [config3.default, items]);
|
265728
|
-
const [active, setActive] =
|
266647
|
+
const [active, setActive] = useState3(defaultItemIndex === -1 ? bounds.first : defaultItemIndex);
|
265729
266648
|
const selectedChoice = items[active];
|
265730
|
-
|
266649
|
+
useKeypress3((key4, rl) => {
|
265731
266650
|
clearTimeout(searchTimeoutRef.current);
|
265732
|
-
if (
|
266651
|
+
if (isEnterKey3(key4)) {
|
265733
266652
|
setStatus("done");
|
265734
266653
|
done(selectedChoice.value);
|
265735
|
-
} else if (isUpKey(
|
266654
|
+
} else if (isUpKey(key4) || isDownKey(key4)) {
|
265736
266655
|
rl.clearLine(0);
|
265737
|
-
if (loop || isUpKey(
|
265738
|
-
const offset = isUpKey(
|
266656
|
+
if (loop || isUpKey(key4) && active !== bounds.first || isDownKey(key4) && active !== bounds.last) {
|
266657
|
+
const offset = isUpKey(key4) ? -1 : 1;
|
265739
266658
|
let next = active;
|
265740
266659
|
do {
|
265741
266660
|
next = (next + offset + items.length) % items.length;
|
265742
266661
|
} while (!isSelectable(items[next]));
|
265743
266662
|
setActive(next);
|
265744
266663
|
}
|
265745
|
-
} else if (isNumberKey(
|
266664
|
+
} else if (isNumberKey(key4) && !Number.isNaN(Number(rl.line))) {
|
265746
266665
|
const position = Number(rl.line) - 1;
|
265747
266666
|
const item = items[position];
|
265748
266667
|
if (item != null && isSelectable(item)) {
|
@@ -265751,7 +266670,7 @@ var esm_default3 = createPrompt((config3, done) => {
|
|
265751
266670
|
searchTimeoutRef.current = setTimeout(() => {
|
265752
266671
|
rl.clearLine(0);
|
265753
266672
|
}, 700);
|
265754
|
-
} else if (
|
266673
|
+
} else if (isBackspaceKey2(key4)) {
|
265755
266674
|
rl.clearLine(0);
|
265756
266675
|
} else {
|
265757
266676
|
const searchTerm = rl.line.toLowerCase();
|
@@ -265768,7 +266687,7 @@ var esm_default3 = createPrompt((config3, done) => {
|
|
265768
266687
|
}, 700);
|
265769
266688
|
}
|
265770
266689
|
});
|
265771
|
-
|
266690
|
+
useEffect3(() => () => {
|
265772
266691
|
clearTimeout(searchTimeoutRef.current);
|
265773
266692
|
}, []);
|
265774
266693
|
const message = theme.style.message(config3.message, status);
|
@@ -265808,7 +266727,7 @@ ${theme.style.help("(Use arrow keys to reveal more choices)")}`;
|
|
265808
266727
|
const choiceDescription = selectedChoice.description ? `
|
265809
266728
|
${theme.style.description(selectedChoice.description)}` : ``;
|
265810
266729
|
return `${[prefix, message, helpTipTop].filter(Boolean).join(" ")}
|
265811
|
-
${page}${helpTipBottom}${choiceDescription}${
|
266730
|
+
${page}${helpTipBottom}${choiceDescription}${import_ansi_escapes4.default.cursorHide}`;
|
265812
266731
|
});
|
265813
266732
|
|
265814
266733
|
// src/prompts/smart-contract-set/subgraph.prompt.ts
|
@@ -266204,13 +267123,13 @@ var esm_default4 = createPrompt((config3, done) => {
|
|
266204
267123
|
const [value4, setValue] = useState("");
|
266205
267124
|
const theme = makeTheme(config3.theme);
|
266206
267125
|
const prefix = usePrefix({ status, theme });
|
266207
|
-
useKeypress((
|
266208
|
-
if (isEnterKey(
|
267126
|
+
useKeypress((key4, rl) => {
|
267127
|
+
if (isEnterKey(key4)) {
|
266209
267128
|
const answer = getBooleanValue(value4, config3.default);
|
266210
267129
|
setValue(transformer(answer));
|
266211
267130
|
setStatus("done");
|
266212
267131
|
done(answer);
|
266213
|
-
} else if (
|
267132
|
+
} else if (key4.name === "tab") {
|
266214
267133
|
const answer = boolToString(!getBooleanValue(value4, config3.default));
|
266215
267134
|
rl.clearLine(0);
|
266216
267135
|
rl.write(answer);
|
@@ -266230,20 +267149,473 @@ var esm_default4 = createPrompt((config3, done) => {
|
|
266230
267149
|
return `${prefix} ${message}${defaultValue} ${formattedValue}`;
|
266231
267150
|
});
|
266232
267151
|
|
267152
|
+
// ../../node_modules/@inquirer/password/node_modules/@inquirer/core/dist/esm/lib/key.js
|
267153
|
+
var isEnterKey4 = (key4) => key4.name === "enter" || key4.name === "return";
|
267154
|
+
// ../../node_modules/@inquirer/password/node_modules/@inquirer/core/dist/esm/lib/errors.js
|
267155
|
+
class AbortPromptError4 extends Error {
|
267156
|
+
name = "AbortPromptError";
|
267157
|
+
message = "Prompt was aborted";
|
267158
|
+
constructor(options) {
|
267159
|
+
super();
|
267160
|
+
this.cause = options?.cause;
|
267161
|
+
}
|
267162
|
+
}
|
267163
|
+
|
267164
|
+
class CancelPromptError4 extends Error {
|
267165
|
+
name = "CancelPromptError";
|
267166
|
+
message = "Prompt was canceled";
|
267167
|
+
}
|
267168
|
+
|
267169
|
+
class ExitPromptError4 extends Error {
|
267170
|
+
name = "ExitPromptError";
|
267171
|
+
}
|
267172
|
+
|
267173
|
+
class HookError4 extends Error {
|
267174
|
+
name = "HookError";
|
267175
|
+
}
|
267176
|
+
|
267177
|
+
class ValidationError4 extends Error {
|
267178
|
+
name = "ValidationError";
|
267179
|
+
}
|
267180
|
+
// ../../node_modules/@inquirer/password/node_modules/@inquirer/core/dist/esm/lib/use-prefix.js
|
267181
|
+
import { AsyncResource as AsyncResource11 } from "node:async_hooks";
|
267182
|
+
|
267183
|
+
// ../../node_modules/@inquirer/password/node_modules/@inquirer/core/dist/esm/lib/hook-engine.js
|
267184
|
+
import { AsyncLocalStorage as AsyncLocalStorage4, AsyncResource as AsyncResource10 } from "node:async_hooks";
|
267185
|
+
var hookStorage4 = new AsyncLocalStorage4;
|
267186
|
+
function createStore4(rl) {
|
267187
|
+
const store = {
|
267188
|
+
rl,
|
267189
|
+
hooks: [],
|
267190
|
+
hooksCleanup: [],
|
267191
|
+
hooksEffect: [],
|
267192
|
+
index: 0,
|
267193
|
+
handleChange() {}
|
267194
|
+
};
|
267195
|
+
return store;
|
267196
|
+
}
|
267197
|
+
function withHooks4(rl, cb) {
|
267198
|
+
const store = createStore4(rl);
|
267199
|
+
return hookStorage4.run(store, () => {
|
267200
|
+
function cycle(render) {
|
267201
|
+
store.handleChange = () => {
|
267202
|
+
store.index = 0;
|
267203
|
+
render();
|
267204
|
+
};
|
267205
|
+
store.handleChange();
|
267206
|
+
}
|
267207
|
+
return cb(cycle);
|
267208
|
+
});
|
267209
|
+
}
|
267210
|
+
function getStore4() {
|
267211
|
+
const store = hookStorage4.getStore();
|
267212
|
+
if (!store) {
|
267213
|
+
throw new HookError4("[Inquirer] Hook functions can only be called from within a prompt");
|
267214
|
+
}
|
267215
|
+
return store;
|
267216
|
+
}
|
267217
|
+
function readline7() {
|
267218
|
+
return getStore4().rl;
|
267219
|
+
}
|
267220
|
+
function withUpdates4(fn) {
|
267221
|
+
const wrapped = (...args) => {
|
267222
|
+
const store = getStore4();
|
267223
|
+
let shouldUpdate = false;
|
267224
|
+
const oldHandleChange = store.handleChange;
|
267225
|
+
store.handleChange = () => {
|
267226
|
+
shouldUpdate = true;
|
267227
|
+
};
|
267228
|
+
const returnValue = fn(...args);
|
267229
|
+
if (shouldUpdate) {
|
267230
|
+
oldHandleChange();
|
267231
|
+
}
|
267232
|
+
store.handleChange = oldHandleChange;
|
267233
|
+
return returnValue;
|
267234
|
+
};
|
267235
|
+
return AsyncResource10.bind(wrapped);
|
267236
|
+
}
|
267237
|
+
function withPointer4(cb) {
|
267238
|
+
const store = getStore4();
|
267239
|
+
const { index } = store;
|
267240
|
+
const pointer = {
|
267241
|
+
get() {
|
267242
|
+
return store.hooks[index];
|
267243
|
+
},
|
267244
|
+
set(value4) {
|
267245
|
+
store.hooks[index] = value4;
|
267246
|
+
},
|
267247
|
+
initialized: index in store.hooks
|
267248
|
+
};
|
267249
|
+
const returnValue = cb(pointer);
|
267250
|
+
store.index++;
|
267251
|
+
return returnValue;
|
267252
|
+
}
|
267253
|
+
function handleChange4() {
|
267254
|
+
getStore4().handleChange();
|
267255
|
+
}
|
267256
|
+
var effectScheduler4 = {
|
267257
|
+
queue(cb) {
|
267258
|
+
const store = getStore4();
|
267259
|
+
const { index } = store;
|
267260
|
+
store.hooksEffect.push(() => {
|
267261
|
+
store.hooksCleanup[index]?.();
|
267262
|
+
const cleanFn = cb(readline7());
|
267263
|
+
if (cleanFn != null && typeof cleanFn !== "function") {
|
267264
|
+
throw new ValidationError4("useEffect return value must be a cleanup function or nothing.");
|
267265
|
+
}
|
267266
|
+
store.hooksCleanup[index] = cleanFn;
|
267267
|
+
});
|
267268
|
+
},
|
267269
|
+
run() {
|
267270
|
+
const store = getStore4();
|
267271
|
+
withUpdates4(() => {
|
267272
|
+
store.hooksEffect.forEach((effect) => {
|
267273
|
+
effect();
|
267274
|
+
});
|
267275
|
+
store.hooksEffect.length = 0;
|
267276
|
+
})();
|
267277
|
+
},
|
267278
|
+
clearAll() {
|
267279
|
+
const store = getStore4();
|
267280
|
+
store.hooksCleanup.forEach((cleanFn) => {
|
267281
|
+
cleanFn?.();
|
267282
|
+
});
|
267283
|
+
store.hooksEffect.length = 0;
|
267284
|
+
store.hooksCleanup.length = 0;
|
267285
|
+
}
|
267286
|
+
};
|
267287
|
+
|
267288
|
+
// ../../node_modules/@inquirer/password/node_modules/@inquirer/core/dist/esm/lib/use-state.js
|
267289
|
+
function useState4(defaultValue) {
|
267290
|
+
return withPointer4((pointer) => {
|
267291
|
+
const setFn = (newValue) => {
|
267292
|
+
if (pointer.get() !== newValue) {
|
267293
|
+
pointer.set(newValue);
|
267294
|
+
handleChange4();
|
267295
|
+
}
|
267296
|
+
};
|
267297
|
+
if (pointer.initialized) {
|
267298
|
+
return [pointer.get(), setFn];
|
267299
|
+
}
|
267300
|
+
const value4 = typeof defaultValue === "function" ? defaultValue() : defaultValue;
|
267301
|
+
pointer.set(value4);
|
267302
|
+
return [value4, setFn];
|
267303
|
+
});
|
267304
|
+
}
|
267305
|
+
|
267306
|
+
// ../../node_modules/@inquirer/password/node_modules/@inquirer/core/dist/esm/lib/use-effect.js
|
267307
|
+
function useEffect4(cb, depArray) {
|
267308
|
+
withPointer4((pointer) => {
|
267309
|
+
const oldDeps = pointer.get();
|
267310
|
+
const hasChanged = !Array.isArray(oldDeps) || depArray.some((dep, i6) => !Object.is(dep, oldDeps[i6]));
|
267311
|
+
if (hasChanged) {
|
267312
|
+
effectScheduler4.queue(cb);
|
267313
|
+
}
|
267314
|
+
pointer.set(depArray);
|
267315
|
+
});
|
267316
|
+
}
|
267317
|
+
|
267318
|
+
// ../../node_modules/@inquirer/password/node_modules/@inquirer/core/dist/esm/lib/theme.js
|
267319
|
+
var import_yoctocolors_cjs6 = __toESM(require_yoctocolors_cjs(), 1);
|
267320
|
+
var defaultTheme4 = {
|
267321
|
+
prefix: {
|
267322
|
+
idle: import_yoctocolors_cjs6.default.blue("?"),
|
267323
|
+
done: import_yoctocolors_cjs6.default.green(esm_default.tick)
|
267324
|
+
},
|
267325
|
+
spinner: {
|
267326
|
+
interval: 80,
|
267327
|
+
frames: ["⠋", "⠙", "⠹", "⠸", "⠼", "⠴", "⠦", "⠧", "⠇", "⠏"].map((frame) => import_yoctocolors_cjs6.default.yellow(frame))
|
267328
|
+
},
|
267329
|
+
style: {
|
267330
|
+
answer: import_yoctocolors_cjs6.default.cyan,
|
267331
|
+
message: import_yoctocolors_cjs6.default.bold,
|
267332
|
+
error: (text2) => import_yoctocolors_cjs6.default.red(`> ${text2}`),
|
267333
|
+
defaultAnswer: (text2) => import_yoctocolors_cjs6.default.dim(`(${text2})`),
|
267334
|
+
help: import_yoctocolors_cjs6.default.dim,
|
267335
|
+
highlight: import_yoctocolors_cjs6.default.cyan,
|
267336
|
+
key: (text2) => import_yoctocolors_cjs6.default.cyan(import_yoctocolors_cjs6.default.bold(`<${text2}>`))
|
267337
|
+
}
|
267338
|
+
};
|
267339
|
+
|
267340
|
+
// ../../node_modules/@inquirer/password/node_modules/@inquirer/core/dist/esm/lib/make-theme.js
|
267341
|
+
function isPlainObject5(value4) {
|
267342
|
+
if (typeof value4 !== "object" || value4 === null)
|
267343
|
+
return false;
|
267344
|
+
let proto = value4;
|
267345
|
+
while (Object.getPrototypeOf(proto) !== null) {
|
267346
|
+
proto = Object.getPrototypeOf(proto);
|
267347
|
+
}
|
267348
|
+
return Object.getPrototypeOf(value4) === proto;
|
267349
|
+
}
|
267350
|
+
function deepMerge5(...objects) {
|
267351
|
+
const output = {};
|
267352
|
+
for (const obj of objects) {
|
267353
|
+
for (const [key4, value4] of Object.entries(obj)) {
|
267354
|
+
const prevValue = output[key4];
|
267355
|
+
output[key4] = isPlainObject5(prevValue) && isPlainObject5(value4) ? deepMerge5(prevValue, value4) : value4;
|
267356
|
+
}
|
267357
|
+
}
|
267358
|
+
return output;
|
267359
|
+
}
|
267360
|
+
function makeTheme4(...themes) {
|
267361
|
+
const themesToMerge = [
|
267362
|
+
defaultTheme4,
|
267363
|
+
...themes.filter((theme) => theme != null)
|
267364
|
+
];
|
267365
|
+
return deepMerge5(...themesToMerge);
|
267366
|
+
}
|
267367
|
+
|
267368
|
+
// ../../node_modules/@inquirer/password/node_modules/@inquirer/core/dist/esm/lib/use-prefix.js
|
267369
|
+
function usePrefix4({ status = "idle", theme }) {
|
267370
|
+
const [showLoader, setShowLoader] = useState4(false);
|
267371
|
+
const [tick, setTick] = useState4(0);
|
267372
|
+
const { prefix, spinner: spinner2 } = makeTheme4(theme);
|
267373
|
+
useEffect4(() => {
|
267374
|
+
if (status === "loading") {
|
267375
|
+
let tickInterval;
|
267376
|
+
let inc = -1;
|
267377
|
+
const delayTimeout = setTimeout(AsyncResource11.bind(() => {
|
267378
|
+
setShowLoader(true);
|
267379
|
+
tickInterval = setInterval(AsyncResource11.bind(() => {
|
267380
|
+
inc = inc + 1;
|
267381
|
+
setTick(inc % spinner2.frames.length);
|
267382
|
+
}), spinner2.interval);
|
267383
|
+
}), 300);
|
267384
|
+
return () => {
|
267385
|
+
clearTimeout(delayTimeout);
|
267386
|
+
clearInterval(tickInterval);
|
267387
|
+
};
|
267388
|
+
} else {
|
267389
|
+
setShowLoader(false);
|
267390
|
+
}
|
267391
|
+
}, [status]);
|
267392
|
+
if (showLoader) {
|
267393
|
+
return spinner2.frames[tick];
|
267394
|
+
}
|
267395
|
+
const iconName = status === "loading" ? "idle" : status;
|
267396
|
+
return typeof prefix === "string" ? prefix : prefix[iconName] ?? prefix["idle"];
|
267397
|
+
}
|
267398
|
+
// ../../node_modules/@inquirer/password/node_modules/@inquirer/core/dist/esm/lib/use-ref.js
|
267399
|
+
function useRef4(val) {
|
267400
|
+
return useState4({ current: val })[0];
|
267401
|
+
}
|
267402
|
+
|
267403
|
+
// ../../node_modules/@inquirer/password/node_modules/@inquirer/core/dist/esm/lib/use-keypress.js
|
267404
|
+
function useKeypress4(userHandler) {
|
267405
|
+
const signal = useRef4(userHandler);
|
267406
|
+
signal.current = userHandler;
|
267407
|
+
useEffect4((rl) => {
|
267408
|
+
let ignore = false;
|
267409
|
+
const handler = withUpdates4((_input, event) => {
|
267410
|
+
if (ignore)
|
267411
|
+
return;
|
267412
|
+
signal.current(event, rl);
|
267413
|
+
});
|
267414
|
+
rl.input.on("keypress", handler);
|
267415
|
+
return () => {
|
267416
|
+
ignore = true;
|
267417
|
+
rl.input.removeListener("keypress", handler);
|
267418
|
+
};
|
267419
|
+
}, []);
|
267420
|
+
}
|
267421
|
+
// ../../node_modules/@inquirer/password/node_modules/@inquirer/core/dist/esm/lib/utils.js
|
267422
|
+
var import_cli_width4 = __toESM(require_cli_width(), 1);
|
267423
|
+
var import_wrap_ansi4 = __toESM(require_wrap_ansi(), 1);
|
267424
|
+
function breakLines4(content, width) {
|
267425
|
+
return content.split(`
|
267426
|
+
`).flatMap((line) => import_wrap_ansi4.default(line, width, { trim: false, hard: true }).split(`
|
267427
|
+
`).map((str) => str.trimEnd())).join(`
|
267428
|
+
`);
|
267429
|
+
}
|
267430
|
+
function readlineWidth4() {
|
267431
|
+
return import_cli_width4.default({ defaultWidth: 80, output: readline7().output });
|
267432
|
+
}
|
267433
|
+
|
267434
|
+
// ../../node_modules/@inquirer/password/node_modules/@inquirer/core/dist/esm/lib/create-prompt.js
|
267435
|
+
var import_mute_stream4 = __toESM(require_lib(), 1);
|
267436
|
+
import * as readline8 from "node:readline";
|
267437
|
+
import { AsyncResource as AsyncResource12 } from "node:async_hooks";
|
267438
|
+
|
267439
|
+
// ../../node_modules/@inquirer/password/node_modules/@inquirer/core/dist/esm/lib/screen-manager.js
|
267440
|
+
var import_ansi_escapes5 = __toESM(require_ansi_escapes(), 1);
|
267441
|
+
import { stripVTControlCharacters as stripVTControlCharacters5 } from "node:util";
|
267442
|
+
var height4 = (content) => content.split(`
|
267443
|
+
`).length;
|
267444
|
+
var lastLine4 = (content) => content.split(`
|
267445
|
+
`).pop() ?? "";
|
267446
|
+
function cursorDown4(n6) {
|
267447
|
+
return n6 > 0 ? import_ansi_escapes5.default.cursorDown(n6) : "";
|
267448
|
+
}
|
267449
|
+
|
267450
|
+
class ScreenManager4 {
|
267451
|
+
height = 0;
|
267452
|
+
extraLinesUnderPrompt = 0;
|
267453
|
+
cursorPos;
|
267454
|
+
rl;
|
267455
|
+
constructor(rl) {
|
267456
|
+
this.rl = rl;
|
267457
|
+
this.cursorPos = rl.getCursorPos();
|
267458
|
+
}
|
267459
|
+
write(content) {
|
267460
|
+
this.rl.output.unmute();
|
267461
|
+
this.rl.output.write(content);
|
267462
|
+
this.rl.output.mute();
|
267463
|
+
}
|
267464
|
+
render(content, bottomContent = "") {
|
267465
|
+
const promptLine = lastLine4(content);
|
267466
|
+
const rawPromptLine = stripVTControlCharacters5(promptLine);
|
267467
|
+
let prompt = rawPromptLine;
|
267468
|
+
if (this.rl.line.length > 0) {
|
267469
|
+
prompt = prompt.slice(0, -this.rl.line.length);
|
267470
|
+
}
|
267471
|
+
this.rl.setPrompt(prompt);
|
267472
|
+
this.cursorPos = this.rl.getCursorPos();
|
267473
|
+
const width = readlineWidth4();
|
267474
|
+
content = breakLines4(content, width);
|
267475
|
+
bottomContent = breakLines4(bottomContent, width);
|
267476
|
+
if (rawPromptLine.length % width === 0) {
|
267477
|
+
content += `
|
267478
|
+
`;
|
267479
|
+
}
|
267480
|
+
let output = content + (bottomContent ? `
|
267481
|
+
` + bottomContent : "");
|
267482
|
+
const promptLineUpDiff = Math.floor(rawPromptLine.length / width) - this.cursorPos.rows;
|
267483
|
+
const bottomContentHeight = promptLineUpDiff + (bottomContent ? height4(bottomContent) : 0);
|
267484
|
+
if (bottomContentHeight > 0)
|
267485
|
+
output += import_ansi_escapes5.default.cursorUp(bottomContentHeight);
|
267486
|
+
output += import_ansi_escapes5.default.cursorTo(this.cursorPos.cols);
|
267487
|
+
this.write(cursorDown4(this.extraLinesUnderPrompt) + import_ansi_escapes5.default.eraseLines(this.height) + output);
|
267488
|
+
this.extraLinesUnderPrompt = bottomContentHeight;
|
267489
|
+
this.height = height4(output);
|
267490
|
+
}
|
267491
|
+
checkCursorPos() {
|
267492
|
+
const cursorPos = this.rl.getCursorPos();
|
267493
|
+
if (cursorPos.cols !== this.cursorPos.cols) {
|
267494
|
+
this.write(import_ansi_escapes5.default.cursorTo(cursorPos.cols));
|
267495
|
+
this.cursorPos = cursorPos;
|
267496
|
+
}
|
267497
|
+
}
|
267498
|
+
done({ clearContent }) {
|
267499
|
+
this.rl.setPrompt("");
|
267500
|
+
let output = cursorDown4(this.extraLinesUnderPrompt);
|
267501
|
+
output += clearContent ? import_ansi_escapes5.default.eraseLines(this.height) : `
|
267502
|
+
`;
|
267503
|
+
output += import_ansi_escapes5.default.cursorShow;
|
267504
|
+
this.write(output);
|
267505
|
+
this.rl.close();
|
267506
|
+
}
|
267507
|
+
}
|
267508
|
+
|
267509
|
+
// ../../node_modules/@inquirer/password/node_modules/@inquirer/core/dist/esm/lib/promise-polyfill.js
|
267510
|
+
class PromisePolyfill4 extends Promise {
|
267511
|
+
static withResolver() {
|
267512
|
+
let resolve6;
|
267513
|
+
let reject;
|
267514
|
+
const promise = new Promise((res, rej) => {
|
267515
|
+
resolve6 = res;
|
267516
|
+
reject = rej;
|
267517
|
+
});
|
267518
|
+
return { promise, resolve: resolve6, reject };
|
267519
|
+
}
|
267520
|
+
}
|
267521
|
+
|
267522
|
+
// ../../node_modules/@inquirer/password/node_modules/@inquirer/core/dist/esm/lib/create-prompt.js
|
267523
|
+
function getCallSites4() {
|
267524
|
+
const _prepareStackTrace = Error.prepareStackTrace;
|
267525
|
+
let result = [];
|
267526
|
+
try {
|
267527
|
+
Error.prepareStackTrace = (_5, callSites) => {
|
267528
|
+
const callSitesWithoutCurrent = callSites.slice(1);
|
267529
|
+
result = callSitesWithoutCurrent;
|
267530
|
+
return callSitesWithoutCurrent;
|
267531
|
+
};
|
267532
|
+
new Error().stack;
|
267533
|
+
} catch {
|
267534
|
+
return result;
|
267535
|
+
}
|
267536
|
+
Error.prepareStackTrace = _prepareStackTrace;
|
267537
|
+
return result;
|
267538
|
+
}
|
267539
|
+
function createPrompt4(view) {
|
267540
|
+
const callSites = getCallSites4();
|
267541
|
+
const prompt = (config3, context = {}) => {
|
267542
|
+
const { input = process.stdin, signal } = context;
|
267543
|
+
const cleanups = new Set;
|
267544
|
+
const output = new import_mute_stream4.default;
|
267545
|
+
output.pipe(context.output ?? process.stdout);
|
267546
|
+
const rl = readline8.createInterface({
|
267547
|
+
terminal: true,
|
267548
|
+
input,
|
267549
|
+
output
|
267550
|
+
});
|
267551
|
+
const screen = new ScreenManager4(rl);
|
267552
|
+
const { promise, resolve: resolve6, reject } = PromisePolyfill4.withResolver();
|
267553
|
+
const cancel3 = () => reject(new CancelPromptError4);
|
267554
|
+
if (signal) {
|
267555
|
+
const abort = () => reject(new AbortPromptError4({ cause: signal.reason }));
|
267556
|
+
if (signal.aborted) {
|
267557
|
+
abort();
|
267558
|
+
return Object.assign(promise, { cancel: cancel3 });
|
267559
|
+
}
|
267560
|
+
signal.addEventListener("abort", abort);
|
267561
|
+
cleanups.add(() => signal.removeEventListener("abort", abort));
|
267562
|
+
}
|
267563
|
+
cleanups.add(onExit((code2, signal2) => {
|
267564
|
+
reject(new ExitPromptError4(`User force closed the prompt with ${code2} ${signal2}`));
|
267565
|
+
}));
|
267566
|
+
const checkCursorPos = () => screen.checkCursorPos();
|
267567
|
+
rl.input.on("keypress", checkCursorPos);
|
267568
|
+
cleanups.add(() => rl.input.removeListener("keypress", checkCursorPos));
|
267569
|
+
return withHooks4(rl, (cycle) => {
|
267570
|
+
const hooksCleanup = AsyncResource12.bind(() => effectScheduler4.clearAll());
|
267571
|
+
rl.on("close", hooksCleanup);
|
267572
|
+
cleanups.add(() => rl.removeListener("close", hooksCleanup));
|
267573
|
+
cycle(() => {
|
267574
|
+
try {
|
267575
|
+
const nextView = view(config3, (value4) => {
|
267576
|
+
setImmediate(() => resolve6(value4));
|
267577
|
+
});
|
267578
|
+
if (nextView === undefined) {
|
267579
|
+
const callerFilename = callSites[1]?.getFileName?.();
|
267580
|
+
throw new Error(`Prompt functions must return a string.
|
267581
|
+
at ${callerFilename}`);
|
267582
|
+
}
|
267583
|
+
const [content, bottomContent] = typeof nextView === "string" ? [nextView] : nextView;
|
267584
|
+
screen.render(content, bottomContent);
|
267585
|
+
effectScheduler4.run();
|
267586
|
+
} catch (error5) {
|
267587
|
+
reject(error5);
|
267588
|
+
}
|
267589
|
+
});
|
267590
|
+
return Object.assign(promise.then((answer) => {
|
267591
|
+
effectScheduler4.clearAll();
|
267592
|
+
return answer;
|
267593
|
+
}, (error5) => {
|
267594
|
+
effectScheduler4.clearAll();
|
267595
|
+
throw error5;
|
267596
|
+
}).finally(() => {
|
267597
|
+
cleanups.forEach((cleanup) => cleanup());
|
267598
|
+
screen.done({ clearContent: Boolean(context.clearPromptOnDone) });
|
267599
|
+
output.end();
|
267600
|
+
}).then(() => promise), { cancel: cancel3 });
|
267601
|
+
});
|
267602
|
+
};
|
267603
|
+
return prompt;
|
267604
|
+
}
|
266233
267605
|
// ../../node_modules/@inquirer/password/dist/esm/index.js
|
266234
|
-
var
|
266235
|
-
var esm_default5 =
|
267606
|
+
var import_ansi_escapes6 = __toESM(require_ansi_escapes(), 1);
|
267607
|
+
var esm_default5 = createPrompt4((config3, done) => {
|
266236
267608
|
const { validate: validate3 = () => true } = config3;
|
266237
|
-
const theme =
|
266238
|
-
const [status, setStatus] =
|
266239
|
-
const [errorMsg, setError] =
|
266240
|
-
const [value4, setValue] =
|
266241
|
-
const prefix =
|
266242
|
-
|
267609
|
+
const theme = makeTheme4(config3.theme);
|
267610
|
+
const [status, setStatus] = useState4("idle");
|
267611
|
+
const [errorMsg, setError] = useState4();
|
267612
|
+
const [value4, setValue] = useState4("");
|
267613
|
+
const prefix = usePrefix4({ status, theme });
|
267614
|
+
useKeypress4(async (key5, rl) => {
|
266243
267615
|
if (status !== "idle") {
|
266244
267616
|
return;
|
266245
267617
|
}
|
266246
|
-
if (
|
267618
|
+
if (isEnterKey4(key5)) {
|
266247
267619
|
const answer = value4;
|
266248
267620
|
setStatus("loading");
|
266249
267621
|
const isValid2 = await validate3(answer);
|
@@ -266268,7 +267640,7 @@ var esm_default5 = createPrompt((config3, done) => {
|
|
266268
267640
|
const maskChar = typeof config3.mask === "string" ? config3.mask : "*";
|
266269
267641
|
formattedValue = maskChar.repeat(value4.length);
|
266270
267642
|
} else if (status !== "done") {
|
266271
|
-
helpTip = `${theme.style.help("[input is masked]")}${
|
267643
|
+
helpTip = `${theme.style.help("[input is masked]")}${import_ansi_escapes6.default.cursorHide}`;
|
266272
267644
|
}
|
266273
267645
|
if (status === "done") {
|
266274
267646
|
formattedValue = theme.style.answer(formattedValue);
|
@@ -267359,7 +268731,7 @@ var basename2 = function(p6, extension) {
|
|
267359
268731
|
return extension && lastSegment.endsWith(extension) ? lastSegment.slice(0, -extension.length) : lastSegment;
|
267360
268732
|
};
|
267361
268733
|
// ../../node_modules/defu/dist/defu.mjs
|
267362
|
-
function
|
268734
|
+
function isPlainObject6(value4) {
|
267363
268735
|
if (value4 === null || typeof value4 !== "object") {
|
267364
268736
|
return false;
|
267365
268737
|
}
|
@@ -267376,27 +268748,27 @@ function isPlainObject3(value4) {
|
|
267376
268748
|
return true;
|
267377
268749
|
}
|
267378
268750
|
function _defu(baseObject, defaults2, namespace = ".", merger) {
|
267379
|
-
if (!
|
268751
|
+
if (!isPlainObject6(defaults2)) {
|
267380
268752
|
return _defu(baseObject, {}, namespace, merger);
|
267381
268753
|
}
|
267382
268754
|
const object = Object.assign({}, defaults2);
|
267383
|
-
for (const
|
267384
|
-
if (
|
268755
|
+
for (const key5 in baseObject) {
|
268756
|
+
if (key5 === "__proto__" || key5 === "constructor") {
|
267385
268757
|
continue;
|
267386
268758
|
}
|
267387
|
-
const value4 = baseObject[
|
268759
|
+
const value4 = baseObject[key5];
|
267388
268760
|
if (value4 === null || value4 === undefined) {
|
267389
268761
|
continue;
|
267390
268762
|
}
|
267391
|
-
if (merger && merger(object,
|
268763
|
+
if (merger && merger(object, key5, value4, namespace)) {
|
267392
268764
|
continue;
|
267393
268765
|
}
|
267394
|
-
if (Array.isArray(value4) && Array.isArray(object[
|
267395
|
-
object[
|
267396
|
-
} else if (
|
267397
|
-
object[
|
268766
|
+
if (Array.isArray(value4) && Array.isArray(object[key5])) {
|
268767
|
+
object[key5] = [...value4, ...object[key5]];
|
268768
|
+
} else if (isPlainObject6(value4) && isPlainObject6(object[key5])) {
|
268769
|
+
object[key5] = _defu(value4, object[key5], (namespace ? `${namespace}.` : "") + key5.toString(), merger);
|
267398
268770
|
} else {
|
267399
|
-
object[
|
268771
|
+
object[key5] = value4;
|
267400
268772
|
}
|
267401
268773
|
}
|
267402
268774
|
return object;
|
@@ -267405,15 +268777,15 @@ function createDefu(merger) {
|
|
267405
268777
|
return (...arguments_4) => arguments_4.reduce((p6, c3) => _defu(p6, c3, "", merger), {});
|
267406
268778
|
}
|
267407
268779
|
var defu = createDefu();
|
267408
|
-
var defuFn = createDefu((object,
|
267409
|
-
if (object[
|
267410
|
-
object[
|
268780
|
+
var defuFn = createDefu((object, key5, currentValue) => {
|
268781
|
+
if (object[key5] !== undefined && typeof currentValue === "function") {
|
268782
|
+
object[key5] = currentValue(object[key5]);
|
267411
268783
|
return true;
|
267412
268784
|
}
|
267413
268785
|
});
|
267414
|
-
var defuArrayFn = createDefu((object,
|
267415
|
-
if (Array.isArray(object[
|
267416
|
-
object[
|
268786
|
+
var defuArrayFn = createDefu((object, key5, currentValue) => {
|
268787
|
+
if (Array.isArray(object[key5]) && typeof currentValue === "function") {
|
268788
|
+
object[key5] = currentValue(object[key5]);
|
267417
268789
|
return true;
|
267418
268790
|
}
|
267419
268791
|
});
|
@@ -270110,11 +271482,11 @@ function cacheDirectory() {
|
|
270110
271482
|
}
|
270111
271483
|
function normalizeHeaders(headers = {}) {
|
270112
271484
|
const normalized = {};
|
270113
|
-
for (const [
|
271485
|
+
for (const [key5, value4] of Object.entries(headers)) {
|
270114
271486
|
if (!value4) {
|
270115
271487
|
continue;
|
270116
271488
|
}
|
270117
|
-
normalized[
|
271489
|
+
normalized[key5.toLowerCase()] = value4;
|
270118
271490
|
}
|
270119
271491
|
return normalized;
|
270120
271492
|
}
|
@@ -272477,7 +273849,7 @@ function jsonOutput(data) {
|
|
272477
273849
|
var composer = require_composer();
|
272478
273850
|
var Document = require_Document();
|
272479
273851
|
var Schema = require_Schema();
|
272480
|
-
var
|
273852
|
+
var errors5 = require_errors3();
|
272481
273853
|
var Alias = require_Alias();
|
272482
273854
|
var identity2 = require_identity();
|
272483
273855
|
var Pair = require_Pair();
|
@@ -272493,9 +273865,9 @@ var visit2 = require_visit();
|
|
272493
273865
|
var $Composer = composer.Composer;
|
272494
273866
|
var $Document = Document.Document;
|
272495
273867
|
var $Schema = Schema.Schema;
|
272496
|
-
var $YAMLError =
|
272497
|
-
var $YAMLParseError =
|
272498
|
-
var $YAMLWarning =
|
273868
|
+
var $YAMLError = errors5.YAMLError;
|
273869
|
+
var $YAMLParseError = errors5.YAMLParseError;
|
273870
|
+
var $YAMLWarning = errors5.YAMLWarning;
|
272499
273871
|
var $Alias = Alias.Alias;
|
272500
273872
|
var $isAlias = identity2.isAlias;
|
272501
273873
|
var $isCollection = identity2.isCollection;
|
@@ -272843,7 +274215,7 @@ async function getServicesAndMapResults({
|
|
272843
274215
|
const application = await settlemint.application.read(applicationUniqueName);
|
272844
274216
|
const services = await servicesSpinner(settlemint, applicationUniqueName, types2);
|
272845
274217
|
const results = (types2 ?? SERVICE_TYPES).filter((serviceType) => !types2 || types2.includes(serviceType)).map((serviceType) => {
|
272846
|
-
const [_6, labels] = Object.entries(LABELS_MAP).find(([
|
274218
|
+
const [_6, labels] = Object.entries(LABELS_MAP).find(([key5, value4]) => value4.command === serviceType) ?? [
|
272847
274219
|
null,
|
272848
274220
|
{ plural: serviceType }
|
272849
274221
|
];
|
@@ -273071,11 +274443,11 @@ function createCommand4() {
|
|
273071
274443
|
|
273072
274444
|
// src/utils/commands/passthrough-options.ts
|
273073
274445
|
function mapPassthroughOptions(options, command) {
|
273074
|
-
const optionArgs = Object.entries(options).map(([
|
274446
|
+
const optionArgs = Object.entries(options).map(([key5, value4]) => {
|
273075
274447
|
if (value4 === true) {
|
273076
|
-
return `--${
|
274448
|
+
return `--${key5}`;
|
273077
274449
|
}
|
273078
|
-
return `--${
|
274450
|
+
return `--${key5}=${value4}`;
|
273079
274451
|
});
|
273080
274452
|
return [...optionArgs, ...command.args];
|
273081
274453
|
}
|
@@ -274090,4 +275462,4 @@ async function sdkCliCommand(argv = process.argv) {
|
|
274090
275462
|
// src/cli.ts
|
274091
275463
|
sdkCliCommand();
|
274092
275464
|
|
274093
|
-
//# debugId=
|
275465
|
+
//# debugId=D4424F96739550C964756E2164756E21
|