@settlemint/sdk-cli 2.4.0-pr5aacfff3 → 2.4.0-pr5aee34bd
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 +652 -2269
- package/dist/cli.js.map +47 -109
- package/package.json +10 -12
package/dist/cli.js
CHANGED
@@ -161742,7 +161742,7 @@ ${lanes.join(`
|
|
161742
161742
|
function generateOptionOutput(sys2, option, rightAlignOfLeft, leftAlignOfRight) {
|
161743
161743
|
var _a;
|
161744
161744
|
const text = [];
|
161745
|
-
const
|
161745
|
+
const colors3 = createColors(sys2);
|
161746
161746
|
const name2 = getDisplayNameTextOfOption(option);
|
161747
161747
|
const valueCandidates = getValueCandidate(option);
|
161748
161748
|
const defaultValueDescription = typeof option.defaultValueDescription === "object" ? getDiagnosticText(option.defaultValueDescription) : formatDefaultValue(option.defaultValueDescription, option.type === "list" || option.type === "listOrElement" ? option.element.type : option.type);
|
@@ -161763,7 +161763,7 @@ ${lanes.join(`
|
|
161763
161763
|
}
|
161764
161764
|
text.push(sys2.newLine);
|
161765
161765
|
} else {
|
161766
|
-
text.push(
|
161766
|
+
text.push(colors3.blue(name2), sys2.newLine);
|
161767
161767
|
if (option.description) {
|
161768
161768
|
const description3 = getDiagnosticText(option.description);
|
161769
161769
|
text.push(description3);
|
@@ -161808,7 +161808,7 @@ ${lanes.join(`
|
|
161808
161808
|
if (isFirstLine) {
|
161809
161809
|
curLeft = left.padStart(rightAlignOfLeft2);
|
161810
161810
|
curLeft = curLeft.padEnd(leftAlignOfRight2);
|
161811
|
-
curLeft = colorLeft ?
|
161811
|
+
curLeft = colorLeft ? colors3.blue(curLeft) : curLeft;
|
161812
161812
|
} else {
|
161813
161813
|
curLeft = "".padStart(leftAlignOfRight2);
|
161814
161814
|
}
|
@@ -161920,9 +161920,9 @@ ${lanes.join(`
|
|
161920
161920
|
return res;
|
161921
161921
|
}
|
161922
161922
|
function printEasyHelp(sys2, simpleOptions) {
|
161923
|
-
const
|
161923
|
+
const colors3 = createColors(sys2);
|
161924
161924
|
let output = [...getHeader(sys2, `${getDiagnosticText(Diagnostics.tsc_Colon_The_TypeScript_Compiler)} - ${getDiagnosticText(Diagnostics.Version_0, version4)}`)];
|
161925
|
-
output.push(
|
161925
|
+
output.push(colors3.bold(getDiagnosticText(Diagnostics.COMMON_COMMANDS)) + sys2.newLine + sys2.newLine);
|
161926
161926
|
example("tsc", Diagnostics.Compiles_the_current_project_tsconfig_json_in_the_working_directory);
|
161927
161927
|
example("tsc app.ts util.ts", Diagnostics.Ignoring_tsconfig_json_compiles_the_specified_files_with_default_compiler_options);
|
161928
161928
|
example("tsc -b", Diagnostics.Build_a_composite_project_in_the_working_directory);
|
@@ -161943,7 +161943,7 @@ ${lanes.join(`
|
|
161943
161943
|
function example(ex, desc) {
|
161944
161944
|
const examples = typeof ex === "string" ? [ex] : ex;
|
161945
161945
|
for (const example2 of examples) {
|
161946
|
-
output.push(" " +
|
161946
|
+
output.push(" " + colors3.blue(example2) + sys2.newLine);
|
161947
161947
|
}
|
161948
161948
|
output.push(" " + getDiagnosticText(desc) + sys2.newLine + sys2.newLine);
|
161949
161949
|
}
|
@@ -161966,12 +161966,12 @@ ${lanes.join(`
|
|
161966
161966
|
}
|
161967
161967
|
function getHeader(sys2, message) {
|
161968
161968
|
var _a;
|
161969
|
-
const
|
161969
|
+
const colors3 = createColors(sys2);
|
161970
161970
|
const header = [];
|
161971
161971
|
const terminalWidth = ((_a = sys2.getWidthOfTerminal) == null ? undefined : _a.call(sys2)) ?? 0;
|
161972
161972
|
const tsIconLength = 5;
|
161973
|
-
const tsIconFirstLine =
|
161974
|
-
const tsIconSecondLine =
|
161973
|
+
const tsIconFirstLine = colors3.blueBackground("".padStart(tsIconLength));
|
161974
|
+
const tsIconSecondLine = colors3.blueBackground(colors3.brightWhite("TS ".padStart(tsIconLength)));
|
161975
161975
|
if (terminalWidth >= message.length + tsIconLength) {
|
161976
161976
|
const rightAlign = terminalWidth > 120 ? 120 : terminalWidth;
|
161977
161977
|
const leftAlign = rightAlign - tsIconLength;
|
@@ -231623,7 +231623,7 @@ function size(value4) {
|
|
231623
231623
|
var init_size = () => {};
|
231624
231624
|
|
231625
231625
|
// ../../node_modules/viem/_esm/errors/version.js
|
231626
|
-
var version5 = "2.31.
|
231626
|
+
var version5 = "2.31.4";
|
231627
231627
|
|
231628
231628
|
// ../../node_modules/viem/_esm/errors/base.js
|
231629
231629
|
function walk(err, fn) {
|
@@ -232832,16 +232832,16 @@ var init_lru = __esm(() => {
|
|
232832
232832
|
});
|
232833
232833
|
this.maxSize = size2;
|
232834
232834
|
}
|
232835
|
-
get(
|
232836
|
-
const value4 = super.get(
|
232837
|
-
if (super.has(
|
232838
|
-
this.delete(
|
232839
|
-
super.set(
|
232835
|
+
get(key2) {
|
232836
|
+
const value4 = super.get(key2);
|
232837
|
+
if (super.has(key2) && value4 !== undefined) {
|
232838
|
+
this.delete(key2);
|
232839
|
+
super.set(key2, value4);
|
232840
232840
|
}
|
232841
232841
|
return value4;
|
232842
232842
|
}
|
232843
|
-
set(
|
232844
|
-
super.set(
|
232843
|
+
set(key2, value4) {
|
232844
|
+
super.set(key2, value4);
|
232845
232845
|
if (this.maxSize && this.size > this.maxSize) {
|
232846
232846
|
const firstKey = this.keys().next().value;
|
232847
232847
|
if (firstKey)
|
@@ -233883,9 +233883,9 @@ var init_decodeErrorResult = __esm(() => {
|
|
233883
233883
|
});
|
233884
233884
|
|
233885
233885
|
// ../../node_modules/viem/_esm/utils/stringify.js
|
233886
|
-
var stringify3 = (value4, replacer, space) => JSON.stringify(value4, (
|
233886
|
+
var stringify3 = (value4, replacer, space) => JSON.stringify(value4, (key2, value_) => {
|
233887
233887
|
const value5 = typeof value_ === "bigint" ? value_.toString() : value_;
|
233888
|
-
return typeof replacer === "function" ? replacer(
|
233888
|
+
return typeof replacer === "function" ? replacer(key2, value5) : value5;
|
233889
233889
|
}, space);
|
233890
233890
|
|
233891
233891
|
// ../../node_modules/viem/_esm/utils/abi/formatAbiItemWithArgs.js
|
@@ -233999,13 +233999,13 @@ var init_stateOverride = __esm(() => {
|
|
233999
233999
|
|
234000
234000
|
// ../../node_modules/viem/_esm/errors/transaction.js
|
234001
234001
|
function prettyPrint(args) {
|
234002
|
-
const entries = Object.entries(args).map(([
|
234002
|
+
const entries = Object.entries(args).map(([key2, value4]) => {
|
234003
234003
|
if (value4 === undefined || value4 === false)
|
234004
234004
|
return null;
|
234005
|
-
return [
|
234005
|
+
return [key2, value4];
|
234006
234006
|
}).filter(Boolean);
|
234007
|
-
const maxLength = entries.reduce((acc, [
|
234008
|
-
return entries.map(([
|
234007
|
+
const maxLength = entries.reduce((acc, [key2]) => Math.max(acc, key2.length), 0);
|
234008
|
+
return entries.map(([key2, value4]) => ` ${`${key2}:`.padEnd(maxLength + 1)} ${value4}`).join(`
|
234009
234009
|
`);
|
234010
234010
|
}
|
234011
234011
|
var FeeConflictError, InvalidSerializableTransactionError, TransactionNotFoundError, TransactionReceiptNotFoundError, WaitForTransactionReceiptTimeoutError;
|
@@ -235111,7 +235111,7 @@ var init_sha2 = __esm(() => {
|
|
235111
235111
|
});
|
235112
235112
|
|
235113
235113
|
// ../../node_modules/@noble/hashes/esm/hmac.js
|
235114
|
-
var HMAC, hmac = (hash2,
|
235114
|
+
var HMAC, hmac = (hash2, key2, message) => new HMAC(hash2, key2).update(message).digest();
|
235115
235115
|
var init_hmac = __esm(() => {
|
235116
235116
|
init_utils2();
|
235117
235117
|
HMAC = class HMAC extends Hash {
|
@@ -235120,7 +235120,7 @@ var init_hmac = __esm(() => {
|
|
235120
235120
|
this.finished = false;
|
235121
235121
|
this.destroyed = false;
|
235122
235122
|
ahash(hash2);
|
235123
|
-
const
|
235123
|
+
const key2 = toBytes2(_key);
|
235124
235124
|
this.iHash = hash2.create();
|
235125
235125
|
if (typeof this.iHash.update !== "function")
|
235126
235126
|
throw new Error("Expected instance of class which extends utils.Hash");
|
@@ -235128,7 +235128,7 @@ var init_hmac = __esm(() => {
|
|
235128
235128
|
this.outputLen = this.iHash.outputLen;
|
235129
235129
|
const blockLen = this.blockLen;
|
235130
235130
|
const pad2 = new Uint8Array(blockLen);
|
235131
|
-
pad2.set(
|
235131
|
+
pad2.set(key2.length > blockLen ? hash2.create().update(key2).digest() : key2);
|
235132
235132
|
for (let i6 = 0;i6 < pad2.length; i6++)
|
235133
235133
|
pad2[i6] ^= 54;
|
235134
235134
|
this.iHash.update(pad2);
|
@@ -235178,7 +235178,7 @@ var init_hmac = __esm(() => {
|
|
235178
235178
|
this.iHash.destroy();
|
235179
235179
|
}
|
235180
235180
|
};
|
235181
|
-
hmac.create = (hash2,
|
235181
|
+
hmac.create = (hash2, key2) => new HMAC(hash2, key2);
|
235182
235182
|
});
|
235183
235183
|
|
235184
235184
|
// ../../node_modules/@noble/curves/esm/utils.js
|
@@ -235579,13 +235579,13 @@ function getMinHashLength(fieldOrder) {
|
|
235579
235579
|
const length = getFieldBytesLength(fieldOrder);
|
235580
235580
|
return length + Math.ceil(length / 2);
|
235581
235581
|
}
|
235582
|
-
function mapHashToField(
|
235583
|
-
const len =
|
235582
|
+
function mapHashToField(key2, fieldOrder, isLE2 = false) {
|
235583
|
+
const len = key2.length;
|
235584
235584
|
const fieldLen = getFieldBytesLength(fieldOrder);
|
235585
235585
|
const minLen = getMinHashLength(fieldOrder);
|
235586
235586
|
if (len < 16 || len < minLen || len > 1024)
|
235587
235587
|
throw new Error("expected " + minLen + "-1024 bytes of input, got " + len);
|
235588
|
-
const num = isLE2 ? bytesToNumberLE(
|
235588
|
+
const num = isLE2 ? bytesToNumberLE(key2) : bytesToNumberBE(key2);
|
235589
235589
|
const reduced = mod(num, fieldOrder - _1n3) + _1n3;
|
235590
235590
|
return isLE2 ? numberToBytesLE(reduced, fieldLen) : numberToBytesBE(reduced, fieldLen);
|
235591
235591
|
}
|
@@ -235888,12 +235888,12 @@ function _legacyHelperEquat(Fp, a7, b4) {
|
|
235888
235888
|
}
|
235889
235889
|
function _legacyHelperNormPriv(Fn, allowedPrivateKeyLengths, wrapPrivateKey) {
|
235890
235890
|
const { BYTES: expected } = Fn;
|
235891
|
-
function normPrivateKeyToScalar(
|
235891
|
+
function normPrivateKeyToScalar(key2) {
|
235892
235892
|
let num;
|
235893
|
-
if (typeof
|
235894
|
-
num =
|
235893
|
+
if (typeof key2 === "bigint") {
|
235894
|
+
num = key2;
|
235895
235895
|
} else {
|
235896
|
-
let bytes = ensureBytes("private key",
|
235896
|
+
let bytes = ensureBytes("private key", key2);
|
235897
235897
|
if (allowedPrivateKeyLengths) {
|
235898
235898
|
if (!allowedPrivateKeyLengths.includes(bytes.length * 2))
|
235899
235899
|
throw new Error("invalid private key");
|
@@ -235904,7 +235904,7 @@ function _legacyHelperNormPriv(Fn, allowedPrivateKeyLengths, wrapPrivateKey) {
|
|
235904
235904
|
try {
|
235905
235905
|
num = Fn.fromBytes(bytes);
|
235906
235906
|
} catch (error44) {
|
235907
|
-
throw new Error(`invalid private key: expected ui8a of size ${expected}, got ${typeof
|
235907
|
+
throw new Error(`invalid private key: expected ui8a of size ${expected}, got ${typeof key2}`);
|
235908
235908
|
}
|
235909
235909
|
}
|
235910
235910
|
if (wrapPrivateKey)
|
@@ -236306,7 +236306,7 @@ function ecdsa(Point, ecdsaOpts, curveOpts = {}) {
|
|
236306
236306
|
bits2int_modN: "function"
|
236307
236307
|
});
|
236308
236308
|
const randomBytes_ = ecdsaOpts.randomBytes || randomBytes;
|
236309
|
-
const hmac_ = ecdsaOpts.hmac || ((
|
236309
|
+
const hmac_ = ecdsaOpts.hmac || ((key2, ...msgs) => hmac(ecdsaOpts.hash, key2, concatBytes(...msgs)));
|
236310
236310
|
const { Fp, Fn } = Point;
|
236311
236311
|
const { ORDER: CURVE_ORDER, BITS: fnBits } = Fn;
|
236312
236312
|
function isBiggerThanHalfOrder(number6) {
|
@@ -237464,11 +237464,11 @@ function extract2(value_, { format: format2 }) {
|
|
237464
237464
|
const value4 = {};
|
237465
237465
|
function extract_(formatted2) {
|
237466
237466
|
const keys = Object.keys(formatted2);
|
237467
|
-
for (const
|
237468
|
-
if (
|
237469
|
-
value4[
|
237470
|
-
if (formatted2[
|
237471
|
-
extract_(formatted2[
|
237467
|
+
for (const key2 of keys) {
|
237468
|
+
if (key2 in value_)
|
237469
|
+
value4[key2] = value_[key2];
|
237470
|
+
if (formatted2[key2] && typeof formatted2[key2] === "object" && !Array.isArray(formatted2[key2]))
|
237471
|
+
extract_(formatted2[key2]);
|
237472
237472
|
}
|
237473
237473
|
}
|
237474
237474
|
const formatted = format2(value_ || {});
|
@@ -237872,9 +237872,9 @@ var init_Errors = __esm(() => {
|
|
237872
237872
|
|
237873
237873
|
// ../../node_modules/ox/_esm/core/Json.js
|
237874
237874
|
function stringify4(value4, replacer, space) {
|
237875
|
-
return JSON.stringify(value4, (
|
237875
|
+
return JSON.stringify(value4, (key2, value5) => {
|
237876
237876
|
if (typeof replacer === "function")
|
237877
|
-
return replacer(
|
237877
|
+
return replacer(key2, value5);
|
237878
237878
|
if (typeof value5 === "bigint")
|
237879
237879
|
return value5.toString() + bigIntSuffix;
|
237880
237880
|
return value5;
|
@@ -238855,7 +238855,7 @@ async function localBatchGatewayRequest(parameters) {
|
|
238855
238855
|
const responses = [];
|
238856
238856
|
await Promise.all(queries.map(async (query, i6) => {
|
238857
238857
|
try {
|
238858
|
-
responses[i6] =
|
238858
|
+
responses[i6] = await ccipRequest(query);
|
238859
238859
|
failures[i6] = false;
|
238860
238860
|
} catch (err) {
|
238861
238861
|
failures[i6] = true;
|
@@ -239297,11 +239297,11 @@ var require_visit = __commonJS((exports) => {
|
|
239297
239297
|
visit2.BREAK = BREAK;
|
239298
239298
|
visit2.SKIP = SKIP;
|
239299
239299
|
visit2.REMOVE = REMOVE;
|
239300
|
-
function visit_(
|
239301
|
-
const ctrl = callVisitor(
|
239300
|
+
function visit_(key2, node, visitor, path7) {
|
239301
|
+
const ctrl = callVisitor(key2, node, visitor, path7);
|
239302
239302
|
if (identity2.isNode(ctrl) || identity2.isPair(ctrl)) {
|
239303
|
-
replaceNode(
|
239304
|
-
return visit_(
|
239303
|
+
replaceNode(key2, path7, ctrl);
|
239304
|
+
return visit_(key2, ctrl, visitor, path7);
|
239305
239305
|
}
|
239306
239306
|
if (typeof ctrl !== "symbol") {
|
239307
239307
|
if (identity2.isCollection(node)) {
|
@@ -239345,11 +239345,11 @@ var require_visit = __commonJS((exports) => {
|
|
239345
239345
|
visitAsync.BREAK = BREAK;
|
239346
239346
|
visitAsync.SKIP = SKIP;
|
239347
239347
|
visitAsync.REMOVE = REMOVE;
|
239348
|
-
async function visitAsync_(
|
239349
|
-
const ctrl = await callVisitor(
|
239348
|
+
async function visitAsync_(key2, node, visitor, path7) {
|
239349
|
+
const ctrl = await callVisitor(key2, node, visitor, path7);
|
239350
239350
|
if (identity2.isNode(ctrl) || identity2.isPair(ctrl)) {
|
239351
|
-
replaceNode(
|
239352
|
-
return visitAsync_(
|
239351
|
+
replaceNode(key2, path7, ctrl);
|
239352
|
+
return visitAsync_(key2, ctrl, visitor, path7);
|
239353
239353
|
}
|
239354
239354
|
if (typeof ctrl !== "symbol") {
|
239355
239355
|
if (identity2.isCollection(node)) {
|
@@ -239399,27 +239399,27 @@ var require_visit = __commonJS((exports) => {
|
|
239399
239399
|
}
|
239400
239400
|
return visitor;
|
239401
239401
|
}
|
239402
|
-
function callVisitor(
|
239402
|
+
function callVisitor(key2, node, visitor, path7) {
|
239403
239403
|
if (typeof visitor === "function")
|
239404
|
-
return visitor(
|
239404
|
+
return visitor(key2, node, path7);
|
239405
239405
|
if (identity2.isMap(node))
|
239406
|
-
return visitor.Map?.(
|
239406
|
+
return visitor.Map?.(key2, node, path7);
|
239407
239407
|
if (identity2.isSeq(node))
|
239408
|
-
return visitor.Seq?.(
|
239408
|
+
return visitor.Seq?.(key2, node, path7);
|
239409
239409
|
if (identity2.isPair(node))
|
239410
|
-
return visitor.Pair?.(
|
239410
|
+
return visitor.Pair?.(key2, node, path7);
|
239411
239411
|
if (identity2.isScalar(node))
|
239412
|
-
return visitor.Scalar?.(
|
239412
|
+
return visitor.Scalar?.(key2, node, path7);
|
239413
239413
|
if (identity2.isAlias(node))
|
239414
|
-
return visitor.Alias?.(
|
239414
|
+
return visitor.Alias?.(key2, node, path7);
|
239415
239415
|
return;
|
239416
239416
|
}
|
239417
|
-
function replaceNode(
|
239417
|
+
function replaceNode(key2, path7, node) {
|
239418
239418
|
const parent = path7[path7.length - 1];
|
239419
239419
|
if (identity2.isCollection(parent)) {
|
239420
|
-
parent.items[
|
239420
|
+
parent.items[key2] = node;
|
239421
239421
|
} else if (identity2.isPair(parent)) {
|
239422
|
-
if (
|
239422
|
+
if (key2 === "key")
|
239423
239423
|
parent.key = node;
|
239424
239424
|
else
|
239425
239425
|
parent.value = node;
|
@@ -239650,7 +239650,7 @@ var require_anchors = __commonJS((exports) => {
|
|
239650
239650
|
|
239651
239651
|
// ../../node_modules/yaml/dist/doc/applyReviver.js
|
239652
239652
|
var require_applyReviver = __commonJS((exports) => {
|
239653
|
-
function applyReviver(reviver, obj,
|
239653
|
+
function applyReviver(reviver, obj, key2, val) {
|
239654
239654
|
if (val && typeof val === "object") {
|
239655
239655
|
if (Array.isArray(val)) {
|
239656
239656
|
for (let i7 = 0, len = val.length;i7 < len; ++i7) {
|
@@ -239690,7 +239690,7 @@ var require_applyReviver = __commonJS((exports) => {
|
|
239690
239690
|
}
|
239691
239691
|
}
|
239692
239692
|
}
|
239693
|
-
return reviver.call(obj,
|
239693
|
+
return reviver.call(obj, key2, val);
|
239694
239694
|
}
|
239695
239695
|
exports.applyReviver = applyReviver;
|
239696
239696
|
});
|
@@ -240019,29 +240019,29 @@ var require_Collection = __commonJS((exports) => {
|
|
240019
240019
|
if (isEmptyPath(path7))
|
240020
240020
|
this.add(value4);
|
240021
240021
|
else {
|
240022
|
-
const [
|
240023
|
-
const node = this.get(
|
240022
|
+
const [key2, ...rest] = path7;
|
240023
|
+
const node = this.get(key2, true);
|
240024
240024
|
if (identity2.isCollection(node))
|
240025
240025
|
node.addIn(rest, value4);
|
240026
240026
|
else if (node === undefined && this.schema)
|
240027
|
-
this.set(
|
240027
|
+
this.set(key2, collectionFromPath(this.schema, rest, value4));
|
240028
240028
|
else
|
240029
|
-
throw new Error(`Expected YAML collection at ${
|
240029
|
+
throw new Error(`Expected YAML collection at ${key2}. Remaining path: ${rest}`);
|
240030
240030
|
}
|
240031
240031
|
}
|
240032
240032
|
deleteIn(path7) {
|
240033
|
-
const [
|
240033
|
+
const [key2, ...rest] = path7;
|
240034
240034
|
if (rest.length === 0)
|
240035
|
-
return this.delete(
|
240036
|
-
const node = this.get(
|
240035
|
+
return this.delete(key2);
|
240036
|
+
const node = this.get(key2, true);
|
240037
240037
|
if (identity2.isCollection(node))
|
240038
240038
|
return node.deleteIn(rest);
|
240039
240039
|
else
|
240040
|
-
throw new Error(`Expected YAML collection at ${
|
240040
|
+
throw new Error(`Expected YAML collection at ${key2}. Remaining path: ${rest}`);
|
240041
240041
|
}
|
240042
240042
|
getIn(path7, keepScalar) {
|
240043
|
-
const [
|
240044
|
-
const node = this.get(
|
240043
|
+
const [key2, ...rest] = path7;
|
240044
|
+
const node = this.get(key2, true);
|
240045
240045
|
if (rest.length === 0)
|
240046
240046
|
return !keepScalar && identity2.isScalar(node) ? node.value : node;
|
240047
240047
|
else
|
@@ -240056,24 +240056,24 @@ var require_Collection = __commonJS((exports) => {
|
|
240056
240056
|
});
|
240057
240057
|
}
|
240058
240058
|
hasIn(path7) {
|
240059
|
-
const [
|
240059
|
+
const [key2, ...rest] = path7;
|
240060
240060
|
if (rest.length === 0)
|
240061
|
-
return this.has(
|
240062
|
-
const node = this.get(
|
240061
|
+
return this.has(key2);
|
240062
|
+
const node = this.get(key2, true);
|
240063
240063
|
return identity2.isCollection(node) ? node.hasIn(rest) : false;
|
240064
240064
|
}
|
240065
240065
|
setIn(path7, value4) {
|
240066
|
-
const [
|
240066
|
+
const [key2, ...rest] = path7;
|
240067
240067
|
if (rest.length === 0) {
|
240068
|
-
this.set(
|
240068
|
+
this.set(key2, value4);
|
240069
240069
|
} else {
|
240070
|
-
const node = this.get(
|
240070
|
+
const node = this.get(key2, true);
|
240071
240071
|
if (identity2.isCollection(node))
|
240072
240072
|
node.setIn(rest, value4);
|
240073
240073
|
else if (node === undefined && this.schema)
|
240074
|
-
this.set(
|
240074
|
+
this.set(key2, collectionFromPath(this.schema, rest, value4));
|
240075
240075
|
else
|
240076
|
-
throw new Error(`Expected YAML collection at ${
|
240076
|
+
throw new Error(`Expected YAML collection at ${key2}. Remaining path: ${rest}`);
|
240077
240077
|
}
|
240078
240078
|
}
|
240079
240079
|
}
|
@@ -240660,19 +240660,19 @@ var require_stringifyPair = __commonJS((exports) => {
|
|
240660
240660
|
var Scalar = require_Scalar();
|
240661
240661
|
var stringify5 = require_stringify();
|
240662
240662
|
var stringifyComment = require_stringifyComment();
|
240663
|
-
function stringifyPair2({ key:
|
240663
|
+
function stringifyPair2({ key: key2, value: value4 }, ctx, onComment, onChompKeep) {
|
240664
240664
|
const { allNullValues, doc: doc2, indent: indent2, indentStep, options: { commentString, indentSeq, simpleKeys } } = ctx;
|
240665
|
-
let keyComment = identity2.isNode(
|
240665
|
+
let keyComment = identity2.isNode(key2) && key2.comment || null;
|
240666
240666
|
if (simpleKeys) {
|
240667
240667
|
if (keyComment) {
|
240668
240668
|
throw new Error("With simple keys, key nodes cannot have comments");
|
240669
240669
|
}
|
240670
|
-
if (identity2.isCollection(
|
240670
|
+
if (identity2.isCollection(key2) || !identity2.isNode(key2) && typeof key2 === "object") {
|
240671
240671
|
const msg = "With simple keys, collection cannot be used as a key value";
|
240672
240672
|
throw new Error(msg);
|
240673
240673
|
}
|
240674
240674
|
}
|
240675
|
-
let explicitKey = !simpleKeys && (!
|
240675
|
+
let explicitKey = !simpleKeys && (!key2 || keyComment && value4 == null && !ctx.inFlow || identity2.isCollection(key2) || (identity2.isScalar(key2) ? key2.type === Scalar.Scalar.BLOCK_FOLDED || key2.type === Scalar.Scalar.BLOCK_LITERAL : typeof key2 === "object"));
|
240676
240676
|
ctx = Object.assign({}, ctx, {
|
240677
240677
|
allNullValues: false,
|
240678
240678
|
implicitKey: !explicitKey && (simpleKeys || !allNullValues),
|
@@ -240680,7 +240680,7 @@ var require_stringifyPair = __commonJS((exports) => {
|
|
240680
240680
|
});
|
240681
240681
|
let keyCommentDone = false;
|
240682
240682
|
let chompKeep = false;
|
240683
|
-
let str = stringify5.stringify(
|
240683
|
+
let str = stringify5.stringify(key2, ctx, () => keyCommentDone = true, () => chompKeep = true);
|
240684
240684
|
if (!explicitKey && !ctx.inFlow && str.length > 1024) {
|
240685
240685
|
if (simpleKeys)
|
240686
240686
|
throw new Error("With simple keys, single line scalar must not span more than 1024 characters");
|
@@ -240824,7 +240824,7 @@ var require_merge = __commonJS((exports) => {
|
|
240824
240824
|
}),
|
240825
240825
|
stringify: () => MERGE_KEY
|
240826
240826
|
};
|
240827
|
-
var isMergeKey = (ctx,
|
240827
|
+
var isMergeKey = (ctx, key2) => (merge7.identify(key2) || identity2.isScalar(key2) && (!key2.type || key2.type === Scalar.Scalar.PLAIN) && merge7.identify(key2.value)) && ctx?.doc.schema.tags.some((tag) => tag.tag === merge7.tag && tag.default);
|
240828
240828
|
function addMergeToJSMap(ctx, map7, value4) {
|
240829
240829
|
value4 = ctx && identity2.isAlias(value4) ? value4.resolve(ctx.doc) : value4;
|
240830
240830
|
if (identity2.isSeq(value4))
|
@@ -240841,14 +240841,14 @@ var require_merge = __commonJS((exports) => {
|
|
240841
240841
|
if (!identity2.isMap(source))
|
240842
240842
|
throw new Error("Merge sources must be maps or map aliases");
|
240843
240843
|
const srcMap = source.toJSON(null, ctx, Map);
|
240844
|
-
for (const [
|
240844
|
+
for (const [key2, value5] of srcMap) {
|
240845
240845
|
if (map7 instanceof Map) {
|
240846
|
-
if (!map7.has(
|
240847
|
-
map7.set(
|
240846
|
+
if (!map7.has(key2))
|
240847
|
+
map7.set(key2, value5);
|
240848
240848
|
} else if (map7 instanceof Set) {
|
240849
|
-
map7.add(
|
240850
|
-
} else if (!Object.prototype.hasOwnProperty.call(map7,
|
240851
|
-
Object.defineProperty(map7,
|
240849
|
+
map7.add(key2);
|
240850
|
+
} else if (!Object.prototype.hasOwnProperty.call(map7, key2)) {
|
240851
|
+
Object.defineProperty(map7, key2, {
|
240852
240852
|
value: value5,
|
240853
240853
|
writable: true,
|
240854
240854
|
enumerable: true,
|
@@ -240870,19 +240870,19 @@ var require_addPairToJSMap = __commonJS((exports) => {
|
|
240870
240870
|
var stringify5 = require_stringify();
|
240871
240871
|
var identity2 = require_identity();
|
240872
240872
|
var toJS = require_toJS();
|
240873
|
-
function addPairToJSMap(ctx, map7, { key:
|
240874
|
-
if (identity2.isNode(
|
240875
|
-
|
240876
|
-
else if (merge7.isMergeKey(ctx,
|
240873
|
+
function addPairToJSMap(ctx, map7, { key: key2, value: value4 }) {
|
240874
|
+
if (identity2.isNode(key2) && key2.addToJSMap)
|
240875
|
+
key2.addToJSMap(ctx, map7, value4);
|
240876
|
+
else if (merge7.isMergeKey(ctx, key2))
|
240877
240877
|
merge7.addMergeToJSMap(ctx, map7, value4);
|
240878
240878
|
else {
|
240879
|
-
const jsKey = toJS.toJS(
|
240879
|
+
const jsKey = toJS.toJS(key2, "", ctx);
|
240880
240880
|
if (map7 instanceof Map) {
|
240881
240881
|
map7.set(jsKey, toJS.toJS(value4, jsKey, ctx));
|
240882
240882
|
} else if (map7 instanceof Set) {
|
240883
240883
|
map7.add(jsKey);
|
240884
240884
|
} else {
|
240885
|
-
const stringKey = stringifyKey(
|
240885
|
+
const stringKey = stringifyKey(key2, jsKey, ctx);
|
240886
240886
|
const jsValue = toJS.toJS(value4, stringKey, ctx);
|
240887
240887
|
if (stringKey in map7)
|
240888
240888
|
Object.defineProperty(map7, stringKey, {
|
@@ -240897,19 +240897,19 @@ var require_addPairToJSMap = __commonJS((exports) => {
|
|
240897
240897
|
}
|
240898
240898
|
return map7;
|
240899
240899
|
}
|
240900
|
-
function stringifyKey(
|
240900
|
+
function stringifyKey(key2, jsKey, ctx) {
|
240901
240901
|
if (jsKey === null)
|
240902
240902
|
return "";
|
240903
240903
|
if (typeof jsKey !== "object")
|
240904
240904
|
return String(jsKey);
|
240905
|
-
if (identity2.isNode(
|
240905
|
+
if (identity2.isNode(key2) && ctx?.doc) {
|
240906
240906
|
const strCtx = stringify5.createStringifyContext(ctx.doc, {});
|
240907
240907
|
strCtx.anchors = new Set;
|
240908
240908
|
for (const node of ctx.anchors.keys())
|
240909
240909
|
strCtx.anchors.add(node.anchor);
|
240910
240910
|
strCtx.inFlow = true;
|
240911
240911
|
strCtx.inStringifyKey = true;
|
240912
|
-
const strKey =
|
240912
|
+
const strKey = key2.toString(strCtx);
|
240913
240913
|
if (!ctx.mapKeyWarned) {
|
240914
240914
|
let jsonStr = JSON.stringify(strKey);
|
240915
240915
|
if (jsonStr.length > 40)
|
@@ -240930,25 +240930,25 @@ var require_Pair = __commonJS((exports) => {
|
|
240930
240930
|
var stringifyPair2 = require_stringifyPair();
|
240931
240931
|
var addPairToJSMap = require_addPairToJSMap();
|
240932
240932
|
var identity2 = require_identity();
|
240933
|
-
function createPair(
|
240934
|
-
const k6 = createNode.createNode(
|
240933
|
+
function createPair(key2, value4, ctx) {
|
240934
|
+
const k6 = createNode.createNode(key2, undefined, ctx);
|
240935
240935
|
const v7 = createNode.createNode(value4, undefined, ctx);
|
240936
240936
|
return new Pair(k6, v7);
|
240937
240937
|
}
|
240938
240938
|
|
240939
240939
|
class Pair {
|
240940
|
-
constructor(
|
240940
|
+
constructor(key2, value4 = null) {
|
240941
240941
|
Object.defineProperty(this, identity2.NODE_TYPE, { value: identity2.PAIR });
|
240942
|
-
this.key =
|
240942
|
+
this.key = key2;
|
240943
240943
|
this.value = value4;
|
240944
240944
|
}
|
240945
240945
|
clone(schema) {
|
240946
|
-
let { key:
|
240947
|
-
if (identity2.isNode(
|
240948
|
-
|
240946
|
+
let { key: key2, value: value4 } = this;
|
240947
|
+
if (identity2.isNode(key2))
|
240948
|
+
key2 = key2.clone(schema);
|
240949
240949
|
if (identity2.isNode(value4))
|
240950
240950
|
value4 = value4.clone(schema);
|
240951
|
-
return new Pair(
|
240951
|
+
return new Pair(key2, value4);
|
240952
240952
|
}
|
240953
240953
|
toJSON(_6, ctx) {
|
240954
240954
|
const pair = ctx?.mapAsMap ? new Map : {};
|
@@ -241115,11 +241115,11 @@ var require_YAMLMap = __commonJS((exports) => {
|
|
241115
241115
|
var identity2 = require_identity();
|
241116
241116
|
var Pair = require_Pair();
|
241117
241117
|
var Scalar = require_Scalar();
|
241118
|
-
function findPair(items,
|
241119
|
-
const k6 = identity2.isScalar(
|
241118
|
+
function findPair(items, key2) {
|
241119
|
+
const k6 = identity2.isScalar(key2) ? key2.value : key2;
|
241120
241120
|
for (const it2 of items) {
|
241121
241121
|
if (identity2.isPair(it2)) {
|
241122
|
-
if (it2.key ===
|
241122
|
+
if (it2.key === key2 || it2.key === k6)
|
241123
241123
|
return it2;
|
241124
241124
|
if (identity2.isScalar(it2.key) && it2.key.value === k6)
|
241125
241125
|
return it2;
|
@@ -241139,20 +241139,20 @@ var require_YAMLMap = __commonJS((exports) => {
|
|
241139
241139
|
static from(schema, obj, ctx) {
|
241140
241140
|
const { keepUndefined, replacer } = ctx;
|
241141
241141
|
const map7 = new this(schema);
|
241142
|
-
const add = (
|
241142
|
+
const add = (key2, value4) => {
|
241143
241143
|
if (typeof replacer === "function")
|
241144
|
-
value4 = replacer.call(obj,
|
241145
|
-
else if (Array.isArray(replacer) && !replacer.includes(
|
241144
|
+
value4 = replacer.call(obj, key2, value4);
|
241145
|
+
else if (Array.isArray(replacer) && !replacer.includes(key2))
|
241146
241146
|
return;
|
241147
241147
|
if (value4 !== undefined || keepUndefined)
|
241148
|
-
map7.items.push(Pair.createPair(
|
241148
|
+
map7.items.push(Pair.createPair(key2, value4, ctx));
|
241149
241149
|
};
|
241150
241150
|
if (obj instanceof Map) {
|
241151
|
-
for (const [
|
241152
|
-
add(
|
241151
|
+
for (const [key2, value4] of obj)
|
241152
|
+
add(key2, value4);
|
241153
241153
|
} else if (obj && typeof obj === "object") {
|
241154
|
-
for (const
|
241155
|
-
add(
|
241154
|
+
for (const key2 of Object.keys(obj))
|
241155
|
+
add(key2, obj[key2]);
|
241156
241156
|
}
|
241157
241157
|
if (typeof schema.sortMapEntries === "function") {
|
241158
241158
|
map7.items.sort(schema.sortMapEntries);
|
@@ -241186,23 +241186,23 @@ var require_YAMLMap = __commonJS((exports) => {
|
|
241186
241186
|
this.items.push(_pair);
|
241187
241187
|
}
|
241188
241188
|
}
|
241189
|
-
delete(
|
241190
|
-
const it2 = findPair(this.items,
|
241189
|
+
delete(key2) {
|
241190
|
+
const it2 = findPair(this.items, key2);
|
241191
241191
|
if (!it2)
|
241192
241192
|
return false;
|
241193
241193
|
const del = this.items.splice(this.items.indexOf(it2), 1);
|
241194
241194
|
return del.length > 0;
|
241195
241195
|
}
|
241196
|
-
get(
|
241197
|
-
const it2 = findPair(this.items,
|
241196
|
+
get(key2, keepScalar) {
|
241197
|
+
const it2 = findPair(this.items, key2);
|
241198
241198
|
const node = it2?.value;
|
241199
241199
|
return (!keepScalar && identity2.isScalar(node) ? node.value : node) ?? undefined;
|
241200
241200
|
}
|
241201
|
-
has(
|
241202
|
-
return !!findPair(this.items,
|
241201
|
+
has(key2) {
|
241202
|
+
return !!findPair(this.items, key2);
|
241203
241203
|
}
|
241204
|
-
set(
|
241205
|
-
this.add(new Pair.Pair(
|
241204
|
+
set(key2, value4) {
|
241205
|
+
this.add(new Pair.Pair(key2, value4), true);
|
241206
241206
|
}
|
241207
241207
|
toJSON(_6, ctx, Type) {
|
241208
241208
|
const map7 = Type ? new Type : ctx?.mapAsMap ? new Map : {};
|
@@ -241273,28 +241273,28 @@ var require_YAMLSeq = __commonJS((exports) => {
|
|
241273
241273
|
add(value4) {
|
241274
241274
|
this.items.push(value4);
|
241275
241275
|
}
|
241276
|
-
delete(
|
241277
|
-
const idx = asItemIndex(
|
241276
|
+
delete(key2) {
|
241277
|
+
const idx = asItemIndex(key2);
|
241278
241278
|
if (typeof idx !== "number")
|
241279
241279
|
return false;
|
241280
241280
|
const del = this.items.splice(idx, 1);
|
241281
241281
|
return del.length > 0;
|
241282
241282
|
}
|
241283
|
-
get(
|
241284
|
-
const idx = asItemIndex(
|
241283
|
+
get(key2, keepScalar) {
|
241284
|
+
const idx = asItemIndex(key2);
|
241285
241285
|
if (typeof idx !== "number")
|
241286
241286
|
return;
|
241287
241287
|
const it2 = this.items[idx];
|
241288
241288
|
return !keepScalar && identity2.isScalar(it2) ? it2.value : it2;
|
241289
241289
|
}
|
241290
|
-
has(
|
241291
|
-
const idx = asItemIndex(
|
241290
|
+
has(key2) {
|
241291
|
+
const idx = asItemIndex(key2);
|
241292
241292
|
return typeof idx === "number" && idx < this.items.length;
|
241293
241293
|
}
|
241294
|
-
set(
|
241295
|
-
const idx = asItemIndex(
|
241294
|
+
set(key2, value4) {
|
241295
|
+
const idx = asItemIndex(key2);
|
241296
241296
|
if (typeof idx !== "number")
|
241297
|
-
throw new Error(`Expected a valid index, not ${
|
241297
|
+
throw new Error(`Expected a valid index, not ${key2}.`);
|
241298
241298
|
const prev = this.items[idx];
|
241299
241299
|
if (identity2.isScalar(prev) && Scalar.isScalarValue(value4))
|
241300
241300
|
prev.value = value4;
|
@@ -241328,8 +241328,8 @@ var require_YAMLSeq = __commonJS((exports) => {
|
|
241328
241328
|
let i7 = 0;
|
241329
241329
|
for (let it2 of obj) {
|
241330
241330
|
if (typeof replacer === "function") {
|
241331
|
-
const
|
241332
|
-
it2 = replacer.call(obj,
|
241331
|
+
const key2 = obj instanceof Set ? it2 : String(i7++);
|
241332
|
+
it2 = replacer.call(obj, key2, it2);
|
241333
241333
|
}
|
241334
241334
|
seq.items.push(createNode.createNode(it2, undefined, ctx));
|
241335
241335
|
}
|
@@ -241337,8 +241337,8 @@ var require_YAMLSeq = __commonJS((exports) => {
|
|
241337
241337
|
return seq;
|
241338
241338
|
}
|
241339
241339
|
}
|
241340
|
-
function asItemIndex(
|
241341
|
-
let idx = identity2.isScalar(
|
241340
|
+
function asItemIndex(key2) {
|
241341
|
+
let idx = identity2.isScalar(key2) ? key2.value : key2;
|
241342
241342
|
if (idx && typeof idx === "string")
|
241343
241343
|
idx = Number(idx);
|
241344
241344
|
return typeof idx === "number" && Number.isInteger(idx) && idx >= 0 ? idx : null;
|
@@ -241711,25 +241711,25 @@ ${cn.comment}` : item.comment;
|
|
241711
241711
|
for (let it2 of iterable) {
|
241712
241712
|
if (typeof replacer === "function")
|
241713
241713
|
it2 = replacer.call(iterable, String(i7++), it2);
|
241714
|
-
let
|
241714
|
+
let key2, value4;
|
241715
241715
|
if (Array.isArray(it2)) {
|
241716
241716
|
if (it2.length === 2) {
|
241717
|
-
|
241717
|
+
key2 = it2[0];
|
241718
241718
|
value4 = it2[1];
|
241719
241719
|
} else
|
241720
241720
|
throw new TypeError(`Expected [key, value] tuple: ${it2}`);
|
241721
241721
|
} else if (it2 && it2 instanceof Object) {
|
241722
241722
|
const keys = Object.keys(it2);
|
241723
241723
|
if (keys.length === 1) {
|
241724
|
-
|
241725
|
-
value4 = it2[
|
241724
|
+
key2 = keys[0];
|
241725
|
+
value4 = it2[key2];
|
241726
241726
|
} else {
|
241727
241727
|
throw new TypeError(`Expected tuple with one key, not ${keys.length} keys`);
|
241728
241728
|
}
|
241729
241729
|
} else {
|
241730
|
-
|
241730
|
+
key2 = it2;
|
241731
241731
|
}
|
241732
|
-
pairs2.items.push(Pair.createPair(
|
241732
|
+
pairs2.items.push(Pair.createPair(key2, value4, ctx));
|
241733
241733
|
}
|
241734
241734
|
return pairs2;
|
241735
241735
|
}
|
@@ -241770,16 +241770,16 @@ var require_omap = __commonJS((exports) => {
|
|
241770
241770
|
if (ctx?.onCreate)
|
241771
241771
|
ctx.onCreate(map7);
|
241772
241772
|
for (const pair of this.items) {
|
241773
|
-
let
|
241773
|
+
let key2, value4;
|
241774
241774
|
if (identity2.isPair(pair)) {
|
241775
|
-
|
241776
|
-
value4 = toJS.toJS(pair.value,
|
241775
|
+
key2 = toJS.toJS(pair.key, "", ctx);
|
241776
|
+
value4 = toJS.toJS(pair.value, key2, ctx);
|
241777
241777
|
} else {
|
241778
|
-
|
241778
|
+
key2 = toJS.toJS(pair, "", ctx);
|
241779
241779
|
}
|
241780
|
-
if (map7.has(
|
241780
|
+
if (map7.has(key2))
|
241781
241781
|
throw new Error("Ordered maps must not include duplicate keys");
|
241782
|
-
map7.set(
|
241782
|
+
map7.set(key2, value4);
|
241783
241783
|
}
|
241784
241784
|
return map7;
|
241785
241785
|
}
|
@@ -241800,12 +241800,12 @@ var require_omap = __commonJS((exports) => {
|
|
241800
241800
|
resolve(seq, onError) {
|
241801
241801
|
const pairs$1 = pairs.resolvePairs(seq, onError);
|
241802
241802
|
const seenKeys = [];
|
241803
|
-
for (const { key:
|
241804
|
-
if (identity2.isScalar(
|
241805
|
-
if (seenKeys.includes(
|
241806
|
-
onError(`Ordered maps must not include duplicate keys: ${
|
241803
|
+
for (const { key: key2 } of pairs$1.items) {
|
241804
|
+
if (identity2.isScalar(key2)) {
|
241805
|
+
if (seenKeys.includes(key2.value)) {
|
241806
|
+
onError(`Ordered maps must not include duplicate keys: ${key2.value}`);
|
241807
241807
|
} else {
|
241808
|
-
seenKeys.push(
|
241808
|
+
seenKeys.push(key2.value);
|
241809
241809
|
}
|
241810
241810
|
}
|
241811
241811
|
}
|
@@ -241979,30 +241979,30 @@ var require_set = __commonJS((exports) => {
|
|
241979
241979
|
super(schema);
|
241980
241980
|
this.tag = YAMLSet.tag;
|
241981
241981
|
}
|
241982
|
-
add(
|
241982
|
+
add(key2) {
|
241983
241983
|
let pair;
|
241984
|
-
if (identity2.isPair(
|
241985
|
-
pair =
|
241986
|
-
else if (
|
241987
|
-
pair = new Pair.Pair(
|
241984
|
+
if (identity2.isPair(key2))
|
241985
|
+
pair = key2;
|
241986
|
+
else if (key2 && typeof key2 === "object" && "key" in key2 && "value" in key2 && key2.value === null)
|
241987
|
+
pair = new Pair.Pair(key2.key, null);
|
241988
241988
|
else
|
241989
|
-
pair = new Pair.Pair(
|
241989
|
+
pair = new Pair.Pair(key2, null);
|
241990
241990
|
const prev = YAMLMap.findPair(this.items, pair.key);
|
241991
241991
|
if (!prev)
|
241992
241992
|
this.items.push(pair);
|
241993
241993
|
}
|
241994
|
-
get(
|
241995
|
-
const pair = YAMLMap.findPair(this.items,
|
241994
|
+
get(key2, keepPair) {
|
241995
|
+
const pair = YAMLMap.findPair(this.items, key2);
|
241996
241996
|
return !keepPair && identity2.isPair(pair) ? identity2.isScalar(pair.key) ? pair.key.value : pair.key : pair;
|
241997
241997
|
}
|
241998
|
-
set(
|
241998
|
+
set(key2, value4) {
|
241999
241999
|
if (typeof value4 !== "boolean")
|
242000
242000
|
throw new Error(`Expected boolean value for set(key, value) in a YAML set, not ${typeof value4}`);
|
242001
|
-
const prev = YAMLMap.findPair(this.items,
|
242001
|
+
const prev = YAMLMap.findPair(this.items, key2);
|
242002
242002
|
if (prev && !value4) {
|
242003
242003
|
this.items.splice(this.items.indexOf(prev), 1);
|
242004
242004
|
} else if (!prev && value4) {
|
242005
|
-
this.items.push(new Pair.Pair(
|
242005
|
+
this.items.push(new Pair.Pair(key2));
|
242006
242006
|
}
|
242007
242007
|
}
|
242008
242008
|
toJSON(_6, ctx) {
|
@@ -242237,7 +242237,7 @@ var require_tags = __commonJS((exports) => {
|
|
242237
242237
|
if (Array.isArray(customTags))
|
242238
242238
|
tags = [];
|
242239
242239
|
else {
|
242240
|
-
const keys = Array.from(schemas3.keys()).filter((
|
242240
|
+
const keys = Array.from(schemas3.keys()).filter((key2) => key2 !== "yaml11").map((key2) => JSON.stringify(key2)).join(", ");
|
242241
242241
|
throw new Error(`Unknown schema "${schemaName}"; use one of ${keys} or define customTags array`);
|
242242
242242
|
}
|
242243
242243
|
}
|
@@ -242253,7 +242253,7 @@ var require_tags = __commonJS((exports) => {
|
|
242253
242253
|
const tagObj = typeof tag === "string" ? tagsByName[tag] : tag;
|
242254
242254
|
if (!tagObj) {
|
242255
242255
|
const tagName = JSON.stringify(tag);
|
242256
|
-
const keys = Object.keys(tagsByName).map((
|
242256
|
+
const keys = Object.keys(tagsByName).map((key2) => JSON.stringify(key2)).join(", ");
|
242257
242257
|
throw new Error(`Unknown custom tag ${tagName}; use one of ${keys}`);
|
242258
242258
|
}
|
242259
242259
|
if (!tags2.includes(tagObj))
|
@@ -242488,13 +242488,13 @@ var require_Document = __commonJS((exports) => {
|
|
242488
242488
|
setAnchors();
|
242489
242489
|
return node;
|
242490
242490
|
}
|
242491
|
-
createPair(
|
242492
|
-
const k6 = this.createNode(
|
242491
|
+
createPair(key2, value4, options = {}) {
|
242492
|
+
const k6 = this.createNode(key2, null, options);
|
242493
242493
|
const v7 = this.createNode(value4, null, options);
|
242494
242494
|
return new Pair.Pair(k6, v7);
|
242495
242495
|
}
|
242496
|
-
delete(
|
242497
|
-
return assertCollection(this.contents) ? this.contents.delete(
|
242496
|
+
delete(key2) {
|
242497
|
+
return assertCollection(this.contents) ? this.contents.delete(key2) : false;
|
242498
242498
|
}
|
242499
242499
|
deleteIn(path7) {
|
242500
242500
|
if (Collection.isEmptyPath(path7)) {
|
@@ -242505,27 +242505,27 @@ var require_Document = __commonJS((exports) => {
|
|
242505
242505
|
}
|
242506
242506
|
return assertCollection(this.contents) ? this.contents.deleteIn(path7) : false;
|
242507
242507
|
}
|
242508
|
-
get(
|
242509
|
-
return identity2.isCollection(this.contents) ? this.contents.get(
|
242508
|
+
get(key2, keepScalar) {
|
242509
|
+
return identity2.isCollection(this.contents) ? this.contents.get(key2, keepScalar) : undefined;
|
242510
242510
|
}
|
242511
242511
|
getIn(path7, keepScalar) {
|
242512
242512
|
if (Collection.isEmptyPath(path7))
|
242513
242513
|
return !keepScalar && identity2.isScalar(this.contents) ? this.contents.value : this.contents;
|
242514
242514
|
return identity2.isCollection(this.contents) ? this.contents.getIn(path7, keepScalar) : undefined;
|
242515
242515
|
}
|
242516
|
-
has(
|
242517
|
-
return identity2.isCollection(this.contents) ? this.contents.has(
|
242516
|
+
has(key2) {
|
242517
|
+
return identity2.isCollection(this.contents) ? this.contents.has(key2) : false;
|
242518
242518
|
}
|
242519
242519
|
hasIn(path7) {
|
242520
242520
|
if (Collection.isEmptyPath(path7))
|
242521
242521
|
return this.contents !== undefined;
|
242522
242522
|
return identity2.isCollection(this.contents) ? this.contents.hasIn(path7) : false;
|
242523
242523
|
}
|
242524
|
-
set(
|
242524
|
+
set(key2, value4) {
|
242525
242525
|
if (this.contents == null) {
|
242526
|
-
this.contents = Collection.collectionFromPath(this.schema, [
|
242526
|
+
this.contents = Collection.collectionFromPath(this.schema, [key2], value4);
|
242527
242527
|
} else if (assertCollection(this.contents)) {
|
242528
|
-
this.contents.set(
|
242528
|
+
this.contents.set(key2, value4);
|
242529
242529
|
}
|
242530
242530
|
}
|
242531
242531
|
setIn(path7, value4) {
|
@@ -242807,25 +242807,25 @@ var require_resolve_props = __commonJS((exports) => {
|
|
242807
242807
|
|
242808
242808
|
// ../../node_modules/yaml/dist/compose/util-contains-newline.js
|
242809
242809
|
var require_util_contains_newline = __commonJS((exports) => {
|
242810
|
-
function containsNewline(
|
242811
|
-
if (!
|
242810
|
+
function containsNewline(key2) {
|
242811
|
+
if (!key2)
|
242812
242812
|
return null;
|
242813
|
-
switch (
|
242813
|
+
switch (key2.type) {
|
242814
242814
|
case "alias":
|
242815
242815
|
case "scalar":
|
242816
242816
|
case "double-quoted-scalar":
|
242817
242817
|
case "single-quoted-scalar":
|
242818
|
-
if (
|
242818
|
+
if (key2.source.includes(`
|
242819
242819
|
`))
|
242820
242820
|
return true;
|
242821
|
-
if (
|
242822
|
-
for (const st2 of
|
242821
|
+
if (key2.end) {
|
242822
|
+
for (const st2 of key2.end)
|
242823
242823
|
if (st2.type === "newline")
|
242824
242824
|
return true;
|
242825
242825
|
}
|
242826
242826
|
return false;
|
242827
242827
|
case "flow-collection":
|
242828
|
-
for (const it2 of
|
242828
|
+
for (const it2 of key2.items) {
|
242829
242829
|
for (const st2 of it2.start)
|
242830
242830
|
if (st2.type === "newline")
|
242831
242831
|
return true;
|
@@ -242890,10 +242890,10 @@ var require_resolve_block_map = __commonJS((exports) => {
|
|
242890
242890
|
let offset = bm.offset;
|
242891
242891
|
let commentEnd = null;
|
242892
242892
|
for (const collItem of bm.items) {
|
242893
|
-
const { start: start3, key:
|
242893
|
+
const { start: start3, key: key2, sep: sep5, value: value4 } = collItem;
|
242894
242894
|
const keyProps = resolveProps.resolveProps(start3, {
|
242895
242895
|
indicator: "explicit-key-ind",
|
242896
|
-
next:
|
242896
|
+
next: key2 ?? sep5?.[0],
|
242897
242897
|
offset,
|
242898
242898
|
onError,
|
242899
242899
|
parentIndent: bm.indent,
|
@@ -242901,10 +242901,10 @@ var require_resolve_block_map = __commonJS((exports) => {
|
|
242901
242901
|
});
|
242902
242902
|
const implicitKey = !keyProps.found;
|
242903
242903
|
if (implicitKey) {
|
242904
|
-
if (
|
242905
|
-
if (
|
242904
|
+
if (key2) {
|
242905
|
+
if (key2.type === "block-seq")
|
242906
242906
|
onError(offset, "BLOCK_AS_IMPLICIT_KEY", "A block sequence may not be used as an implicit map key");
|
242907
|
-
else if ("indent" in
|
242907
|
+
else if ("indent" in key2 && key2.indent !== bm.indent)
|
242908
242908
|
onError(offset, "BAD_INDENT", startColMsg);
|
242909
242909
|
}
|
242910
242910
|
if (!keyProps.anchor && !keyProps.tag && !sep5) {
|
@@ -242918,17 +242918,17 @@ var require_resolve_block_map = __commonJS((exports) => {
|
|
242918
242918
|
}
|
242919
242919
|
continue;
|
242920
242920
|
}
|
242921
|
-
if (keyProps.newlineAfterProp || utilContainsNewline.containsNewline(
|
242922
|
-
onError(
|
242921
|
+
if (keyProps.newlineAfterProp || utilContainsNewline.containsNewline(key2)) {
|
242922
|
+
onError(key2 ?? start3[start3.length - 1], "MULTILINE_IMPLICIT_KEY", "Implicit keys need to be on a single line");
|
242923
242923
|
}
|
242924
242924
|
} else if (keyProps.found?.indent !== bm.indent) {
|
242925
242925
|
onError(offset, "BAD_INDENT", startColMsg);
|
242926
242926
|
}
|
242927
242927
|
ctx.atKey = true;
|
242928
242928
|
const keyStart = keyProps.end;
|
242929
|
-
const keyNode =
|
242929
|
+
const keyNode = key2 ? composeNode(ctx, key2, keyProps, onError) : composeEmptyNode(ctx, keyStart, start3, null, keyProps, onError);
|
242930
242930
|
if (ctx.schema.compat)
|
242931
|
-
utilFlowIndentCheck.flowIndentCheck(bm.indent,
|
242931
|
+
utilFlowIndentCheck.flowIndentCheck(bm.indent, key2, onError);
|
242932
242932
|
ctx.atKey = false;
|
242933
242933
|
if (utilMapIncludes.mapIncludes(ctx, map7.items, keyNode))
|
242934
242934
|
onError(keyStart, "DUPLICATE_KEY", "Map keys must be unique");
|
@@ -242938,7 +242938,7 @@ var require_resolve_block_map = __commonJS((exports) => {
|
|
242938
242938
|
offset: keyNode.range[2],
|
242939
242939
|
onError,
|
242940
242940
|
parentIndent: bm.indent,
|
242941
|
-
startOnNewline: !
|
242941
|
+
startOnNewline: !key2 || key2.type === "block-scalar"
|
242942
242942
|
});
|
242943
242943
|
offset = valueProps.end;
|
242944
242944
|
if (valueProps.found) {
|
@@ -243094,11 +243094,11 @@ var require_resolve_flow_collection = __commonJS((exports) => {
|
|
243094
243094
|
let offset = fc.offset + fc.start.source.length;
|
243095
243095
|
for (let i7 = 0;i7 < fc.items.length; ++i7) {
|
243096
243096
|
const collItem = fc.items[i7];
|
243097
|
-
const { start: start3, key:
|
243097
|
+
const { start: start3, key: key2, sep: sep5, value: value4 } = collItem;
|
243098
243098
|
const props = resolveProps.resolveProps(start3, {
|
243099
243099
|
flow: fcName,
|
243100
243100
|
indicator: "explicit-key-ind",
|
243101
|
-
next:
|
243101
|
+
next: key2 ?? sep5?.[0],
|
243102
243102
|
offset,
|
243103
243103
|
onError,
|
243104
243104
|
parentIndent: fc.indent,
|
@@ -243120,8 +243120,8 @@ var require_resolve_flow_collection = __commonJS((exports) => {
|
|
243120
243120
|
offset = props.end;
|
243121
243121
|
continue;
|
243122
243122
|
}
|
243123
|
-
if (!isMap && ctx.options.strict && utilContainsNewline.containsNewline(
|
243124
|
-
onError(
|
243123
|
+
if (!isMap && ctx.options.strict && utilContainsNewline.containsNewline(key2))
|
243124
|
+
onError(key2, "MULTILINE_IMPLICIT_KEY", "Implicit keys of flow sequence pairs need to be on a single line");
|
243125
243125
|
}
|
243126
243126
|
if (i7 === 0) {
|
243127
243127
|
if (props.comma)
|
@@ -243166,8 +243166,8 @@ var require_resolve_flow_collection = __commonJS((exports) => {
|
|
243166
243166
|
} else {
|
243167
243167
|
ctx.atKey = true;
|
243168
243168
|
const keyStart = props.end;
|
243169
|
-
const keyNode =
|
243170
|
-
if (isBlock(
|
243169
|
+
const keyNode = key2 ? composeNode(ctx, key2, props, onError) : composeEmptyNode(ctx, keyStart, start3, null, props, onError);
|
243170
|
+
if (isBlock(key2))
|
243171
243171
|
onError(keyNode.range, "BLOCK_IN_FLOW", blockMsg);
|
243172
243172
|
ctx.atKey = false;
|
243173
243173
|
const valueProps = resolveProps.resolveProps(sep5 ?? [], {
|
@@ -243978,7 +243978,7 @@ var require_composer = __commonJS((exports) => {
|
|
243978
243978
|
var node_process = __require("process");
|
243979
243979
|
var directives4 = require_directives2();
|
243980
243980
|
var Document = require_Document();
|
243981
|
-
var
|
243981
|
+
var errors4 = require_errors3();
|
243982
243982
|
var identity2 = require_identity();
|
243983
243983
|
var composeDoc = require_compose_doc();
|
243984
243984
|
var resolveEnd = require_resolve_end();
|
@@ -244029,9 +244029,9 @@ var require_composer = __commonJS((exports) => {
|
|
244029
244029
|
this.onError = (source, code2, message, warning) => {
|
244030
244030
|
const pos = getErrorPos(source);
|
244031
244031
|
if (warning)
|
244032
|
-
this.warnings.push(new
|
244032
|
+
this.warnings.push(new errors4.YAMLWarning(pos, code2, message));
|
244033
244033
|
else
|
244034
|
-
this.errors.push(new
|
244034
|
+
this.errors.push(new errors4.YAMLParseError(pos, code2, message));
|
244035
244035
|
};
|
244036
244036
|
this.directives = new directives4.Directives({ version: options.version || "1.2" });
|
244037
244037
|
this.options = options;
|
@@ -244115,7 +244115,7 @@ ${cb}` : comment;
|
|
244115
244115
|
break;
|
244116
244116
|
case "error": {
|
244117
244117
|
const msg = token.source ? `${token.message}: ${JSON.stringify(token.source)}` : token.message;
|
244118
|
-
const error45 = new
|
244118
|
+
const error45 = new errors4.YAMLParseError(getErrorPos(token), "UNEXPECTED_TOKEN", msg);
|
244119
244119
|
if (this.atDirectives || !this.doc)
|
244120
244120
|
this.errors.push(error45);
|
244121
244121
|
else
|
@@ -244125,7 +244125,7 @@ ${cb}` : comment;
|
|
244125
244125
|
case "doc-end": {
|
244126
244126
|
if (!this.doc) {
|
244127
244127
|
const msg = "Unexpected doc-end without preceding document";
|
244128
|
-
this.errors.push(new
|
244128
|
+
this.errors.push(new errors4.YAMLParseError(getErrorPos(token), "UNEXPECTED_TOKEN", msg));
|
244129
244129
|
break;
|
244130
244130
|
}
|
244131
244131
|
this.doc.directives.docEnd = true;
|
@@ -244140,7 +244140,7 @@ ${end.comment}` : end.comment;
|
|
244140
244140
|
break;
|
244141
244141
|
}
|
244142
244142
|
default:
|
244143
|
-
this.errors.push(new
|
244143
|
+
this.errors.push(new errors4.YAMLParseError(getErrorPos(token), "UNEXPECTED_TOKEN", `Unsupported token ${token.type}`));
|
244144
244144
|
}
|
244145
244145
|
}
|
244146
244146
|
*end(forceDoc = false, endOffset = -1) {
|
@@ -244166,7 +244166,7 @@ ${end.comment}` : end.comment;
|
|
244166
244166
|
var require_cst_scalar = __commonJS((exports) => {
|
244167
244167
|
var resolveBlockScalar = require_resolve_block_scalar();
|
244168
244168
|
var resolveFlowScalar = require_resolve_flow_scalar();
|
244169
|
-
var
|
244169
|
+
var errors4 = require_errors3();
|
244170
244170
|
var stringifyString = require_stringifyString();
|
244171
244171
|
function resolveAsScalar(token, strict = true, onError) {
|
244172
244172
|
if (token) {
|
@@ -244175,7 +244175,7 @@ var require_cst_scalar = __commonJS((exports) => {
|
|
244175
244175
|
if (onError)
|
244176
244176
|
onError(offset, code2, message);
|
244177
244177
|
else
|
244178
|
-
throw new
|
244178
|
+
throw new errors4.YAMLParseError([offset, offset + 1], code2, message);
|
244179
244179
|
};
|
244180
244180
|
switch (token.type) {
|
244181
244181
|
case "scalar":
|
@@ -244289,9 +244289,9 @@ var require_cst_scalar = __commonJS((exports) => {
|
|
244289
244289
|
if (!addEndtoBlockProps(props, "end" in token ? token.end : undefined))
|
244290
244290
|
props.push({ type: "newline", offset: -1, indent: indent2, source: `
|
244291
244291
|
` });
|
244292
|
-
for (const
|
244293
|
-
if (
|
244294
|
-
delete token[
|
244292
|
+
for (const key2 of Object.keys(token))
|
244293
|
+
if (key2 !== "type" && key2 !== "offset")
|
244294
|
+
delete token[key2];
|
244295
244295
|
Object.assign(token, { type: "block-scalar", indent: indent2, props, source: body });
|
244296
244296
|
}
|
244297
244297
|
}
|
@@ -244340,9 +244340,9 @@ var require_cst_scalar = __commonJS((exports) => {
|
|
244340
244340
|
default: {
|
244341
244341
|
const indent2 = "indent" in token ? token.indent : -1;
|
244342
244342
|
const end = "end" in token && Array.isArray(token.end) ? token.end.filter((st2) => st2.type === "space" || st2.type === "comment" || st2.type === "newline") : [];
|
244343
|
-
for (const
|
244344
|
-
if (
|
244345
|
-
delete token[
|
244343
|
+
for (const key2 of Object.keys(token))
|
244344
|
+
if (key2 !== "type" && key2 !== "offset")
|
244345
|
+
delete token[key2];
|
244346
244346
|
Object.assign(token, { type: type4, indent: indent2, source, end });
|
244347
244347
|
}
|
244348
244348
|
}
|
@@ -244394,12 +244394,12 @@ var require_cst_stringify = __commonJS((exports) => {
|
|
244394
244394
|
}
|
244395
244395
|
}
|
244396
244396
|
}
|
244397
|
-
function stringifyItem({ start: start3, key:
|
244397
|
+
function stringifyItem({ start: start3, key: key2, sep: sep5, value: value4 }) {
|
244398
244398
|
let res = "";
|
244399
244399
|
for (const st2 of start3)
|
244400
244400
|
res += st2.source;
|
244401
|
-
if (
|
244402
|
-
res += stringifyToken(
|
244401
|
+
if (key2)
|
244402
|
+
res += stringifyToken(key2);
|
244403
244403
|
if (sep5)
|
244404
244404
|
for (const st2 of sep5)
|
244405
244405
|
res += st2.source;
|
@@ -245695,7 +245695,7 @@ var require_parser2 = __commonJS((exports) => {
|
|
245695
245695
|
});
|
245696
245696
|
} else if (isFlowToken(it2.key) && !includesToken(it2.sep, "newline")) {
|
245697
245697
|
const start4 = getFirstKeyStartProps(it2.start);
|
245698
|
-
const
|
245698
|
+
const key2 = it2.key;
|
245699
245699
|
const sep5 = it2.sep;
|
245700
245700
|
sep5.push(this.sourceToken);
|
245701
245701
|
delete it2.key;
|
@@ -245704,7 +245704,7 @@ var require_parser2 = __commonJS((exports) => {
|
|
245704
245704
|
type: "block-map",
|
245705
245705
|
offset: this.offset,
|
245706
245706
|
indent: this.indent,
|
245707
|
-
items: [{ start: start4, key:
|
245707
|
+
items: [{ start: start4, key: key2, sep: sep5 }]
|
245708
245708
|
});
|
245709
245709
|
} else if (start3.length > 0) {
|
245710
245710
|
it2.sep = it2.sep.concat(start3, this.sourceToken);
|
@@ -246037,7 +246037,7 @@ var require_parser2 = __commonJS((exports) => {
|
|
246037
246037
|
var require_public_api = __commonJS((exports) => {
|
246038
246038
|
var composer = require_composer();
|
246039
246039
|
var Document = require_Document();
|
246040
|
-
var
|
246040
|
+
var errors4 = require_errors3();
|
246041
246041
|
var log = require_log();
|
246042
246042
|
var identity2 = require_identity();
|
246043
246043
|
var lineCounter = require_line_counter();
|
@@ -246054,8 +246054,8 @@ var require_public_api = __commonJS((exports) => {
|
|
246054
246054
|
const docs = Array.from(composer$1.compose(parser$1.parse(source)));
|
246055
246055
|
if (prettyErrors && lineCounter2)
|
246056
246056
|
for (const doc2 of docs) {
|
246057
|
-
doc2.errors.forEach(
|
246058
|
-
doc2.warnings.forEach(
|
246057
|
+
doc2.errors.forEach(errors4.prettifyError(source, lineCounter2));
|
246058
|
+
doc2.warnings.forEach(errors4.prettifyError(source, lineCounter2));
|
246059
246059
|
}
|
246060
246060
|
if (docs.length > 0)
|
246061
246061
|
return docs;
|
@@ -246070,13 +246070,13 @@ var require_public_api = __commonJS((exports) => {
|
|
246070
246070
|
if (!doc2)
|
246071
246071
|
doc2 = _doc;
|
246072
246072
|
else if (doc2.options.logLevel !== "silent") {
|
246073
|
-
doc2.errors.push(new
|
246073
|
+
doc2.errors.push(new errors4.YAMLParseError(_doc.range.slice(0, 2), "MULTIPLE_DOCS", "Source contains multiple documents; please use YAML.parseAllDocuments()"));
|
246074
246074
|
break;
|
246075
246075
|
}
|
246076
246076
|
}
|
246077
246077
|
if (prettyErrors && lineCounter2) {
|
246078
|
-
doc2.errors.forEach(
|
246079
|
-
doc2.warnings.forEach(
|
246078
|
+
doc2.errors.forEach(errors4.prettifyError(source, lineCounter2));
|
246079
|
+
doc2.warnings.forEach(errors4.prettifyError(source, lineCounter2));
|
246080
246080
|
}
|
246081
246081
|
return doc2;
|
246082
246082
|
}
|
@@ -258129,9 +258129,9 @@ ${formattedErrors}`);
|
|
258129
258129
|
throw error$37;
|
258130
258130
|
}
|
258131
258131
|
}
|
258132
|
-
var ApplicationAccessTokenSchema = string$1().regex(/^sm_aat_
|
258133
|
-
var PersonalAccessTokenSchema = string$1().regex(/^sm_pat_
|
258134
|
-
var AccessTokenSchema = string$1().regex(/^
|
258132
|
+
var ApplicationAccessTokenSchema = string$1().regex(/^sm_aat_.*$/);
|
258133
|
+
var PersonalAccessTokenSchema = string$1().regex(/^sm_pat_.*$/);
|
258134
|
+
var AccessTokenSchema = string$1().regex(/^sm_pat_.*|sm_aat_.*$/);
|
258135
258135
|
function tryParseJson(value, defaultValue = null) {
|
258136
258136
|
try {
|
258137
258137
|
const parsed = JSON.parse(value);
|
@@ -258139,7 +258139,7 @@ function tryParseJson(value, defaultValue = null) {
|
|
258139
258139
|
return defaultValue;
|
258140
258140
|
}
|
258141
258141
|
return parsed;
|
258142
|
-
} catch (
|
258142
|
+
} catch (err) {
|
258143
258143
|
return defaultValue;
|
258144
258144
|
}
|
258145
258145
|
}
|
@@ -263769,7 +263769,7 @@ async function findMonoRepoPackages(projectDir) {
|
|
263769
263769
|
}));
|
263770
263770
|
const allPaths = packagePaths.flat();
|
263771
263771
|
return allPaths.length === 0 ? [projectDir] : [monoRepoRoot, ...allPaths];
|
263772
|
-
} catch (
|
263772
|
+
} catch (error$37) {
|
263773
263773
|
return [projectDir];
|
263774
263774
|
}
|
263775
263775
|
}
|
@@ -263840,7 +263840,7 @@ function pruneCurrentEnv(currentEnv, env2) {
|
|
263840
263840
|
var package_default = {
|
263841
263841
|
name: "@settlemint/sdk-cli",
|
263842
263842
|
description: "Command-line interface for SettleMint SDK, providing development tools and project management capabilities",
|
263843
|
-
version: "2.4.0-
|
263843
|
+
version: "2.4.0-pr5aee34bd",
|
263844
263844
|
type: "module",
|
263845
263845
|
private: false,
|
263846
263846
|
license: "FSL-1.1-MIT",
|
@@ -263859,9 +263859,7 @@ var package_default = {
|
|
263859
263859
|
url: "https://github.com/settlemint/sdk/issues",
|
263860
263860
|
email: "support@settlemint.com"
|
263861
263861
|
},
|
263862
|
-
files: [
|
263863
|
-
"dist"
|
263864
|
-
],
|
263862
|
+
files: ["dist"],
|
263865
263863
|
exports: {
|
263866
263864
|
"./*": {
|
263867
263865
|
types: "./dist/*.d.ts",
|
@@ -263889,12 +263887,12 @@ var package_default = {
|
|
263889
263887
|
commander: "14.0.0",
|
263890
263888
|
"@inquirer/confirm": "5.1.12",
|
263891
263889
|
"@inquirer/input": "4.1.12",
|
263892
|
-
"@inquirer/password": "4.0.
|
263893
|
-
"@inquirer/select": "4.2.
|
263894
|
-
"@settlemint/sdk-js": "2.4.0-
|
263895
|
-
"@settlemint/sdk-utils": "2.4.0-
|
263896
|
-
"@settlemint/sdk-viem": "2.4.0-
|
263897
|
-
"@types/node": "24.0.
|
263890
|
+
"@inquirer/password": "4.0.15",
|
263891
|
+
"@inquirer/select": "4.2.3",
|
263892
|
+
"@settlemint/sdk-js": "2.4.0-pr5aee34bd",
|
263893
|
+
"@settlemint/sdk-utils": "2.4.0-pr5aee34bd",
|
263894
|
+
"@settlemint/sdk-viem": "2.4.0-pr5aee34bd",
|
263895
|
+
"@types/node": "24.0.4",
|
263898
263896
|
"@types/semver": "7.7.0",
|
263899
263897
|
"@types/which": "3.0.4",
|
263900
263898
|
"get-tsconfig": "4.10.1",
|
@@ -263902,13 +263900,13 @@ var package_default = {
|
|
263902
263900
|
"is-in-ci": "1.0.0",
|
263903
263901
|
semver: "7.7.2",
|
263904
263902
|
slugify: "1.6.6",
|
263905
|
-
viem: "2.31.
|
263903
|
+
viem: "2.31.4",
|
263906
263904
|
which: "5.0.0",
|
263907
263905
|
yaml: "2.8.0",
|
263908
263906
|
yoctocolors: "2.1.1"
|
263909
263907
|
},
|
263910
263908
|
peerDependencies: {
|
263911
|
-
hardhat: "2.
|
263909
|
+
hardhat: "2.24.3"
|
263912
263910
|
},
|
263913
263911
|
peerDependenciesMeta: {
|
263914
263912
|
hardhat: {
|
@@ -263963,7 +263961,7 @@ async function telemetry(data) {
|
|
263963
263961
|
signal: controller.signal
|
263964
263962
|
});
|
263965
263963
|
clearTimeout(timeout);
|
263966
|
-
} catch (
|
263964
|
+
} catch (error2) {}
|
263967
263965
|
}
|
263968
263966
|
|
263969
263967
|
// ../../node_modules/@commander-js/extra-typings/esm.mjs
|
@@ -263983,7 +263981,10 @@ var {
|
|
263983
263981
|
} = import__.default;
|
263984
263982
|
|
263985
263983
|
// ../../node_modules/@inquirer/core/dist/esm/lib/key.js
|
263984
|
+
var isUpKey = (key) => key.name === "up" || key.name === "k" || key.ctrl && key.name === "p";
|
263985
|
+
var isDownKey = (key) => key.name === "down" || key.name === "j" || key.ctrl && key.name === "n";
|
263986
263986
|
var isBackspaceKey = (key) => key.name === "backspace";
|
263987
|
+
var isNumberKey = (key) => "1234567890".includes(key.name);
|
263987
263988
|
var isEnterKey = (key) => key.name === "enter" || key.name === "return";
|
263988
263989
|
// ../../node_modules/@inquirer/core/dist/esm/lib/errors.js
|
263989
263990
|
class AbortPromptError extends Error {
|
@@ -264517,11 +264518,22 @@ function usePrefix({ status = "idle", theme }) {
|
|
264517
264518
|
const iconName = status === "loading" ? "idle" : status;
|
264518
264519
|
return typeof prefix === "string" ? prefix : prefix[iconName] ?? prefix["idle"];
|
264519
264520
|
}
|
264521
|
+
// ../../node_modules/@inquirer/core/dist/esm/lib/use-memo.js
|
264522
|
+
function useMemo(fn, dependencies) {
|
264523
|
+
return withPointer((pointer) => {
|
264524
|
+
const prev = pointer.get();
|
264525
|
+
if (!prev || prev.dependencies.length !== dependencies.length || prev.dependencies.some((dep, i) => dep !== dependencies[i])) {
|
264526
|
+
const value = fn();
|
264527
|
+
pointer.set({ value, dependencies });
|
264528
|
+
return value;
|
264529
|
+
}
|
264530
|
+
return prev.value;
|
264531
|
+
});
|
264532
|
+
}
|
264520
264533
|
// ../../node_modules/@inquirer/core/dist/esm/lib/use-ref.js
|
264521
264534
|
function useRef(val) {
|
264522
264535
|
return useState({ current: val })[0];
|
264523
264536
|
}
|
264524
|
-
|
264525
264537
|
// ../../node_modules/@inquirer/core/dist/esm/lib/use-keypress.js
|
264526
264538
|
function useKeypress(userHandler) {
|
264527
264539
|
const signal = useRef(userHandler);
|
@@ -264553,6 +264565,72 @@ function readlineWidth() {
|
|
264553
264565
|
return import_cli_width.default({ defaultWidth: 80, output: readline().output });
|
264554
264566
|
}
|
264555
264567
|
|
264568
|
+
// ../../node_modules/@inquirer/core/dist/esm/lib/pagination/use-pagination.js
|
264569
|
+
function usePointerPosition({ active, renderedItems, pageSize, loop }) {
|
264570
|
+
const state = useRef({
|
264571
|
+
lastPointer: active,
|
264572
|
+
lastActive: undefined
|
264573
|
+
});
|
264574
|
+
const { lastPointer, lastActive } = state.current;
|
264575
|
+
const middle = Math.floor(pageSize / 2);
|
264576
|
+
const renderedLength = renderedItems.reduce((acc, item) => acc + item.length, 0);
|
264577
|
+
const defaultPointerPosition = renderedItems.slice(0, active).reduce((acc, item) => acc + item.length, 0);
|
264578
|
+
let pointer = defaultPointerPosition;
|
264579
|
+
if (renderedLength > pageSize) {
|
264580
|
+
if (loop) {
|
264581
|
+
pointer = lastPointer;
|
264582
|
+
if (lastActive != null && lastActive < active && active - lastActive < pageSize) {
|
264583
|
+
pointer = Math.min(middle, Math.abs(active - lastActive) === 1 ? Math.min(lastPointer + (renderedItems[lastActive]?.length ?? 0), Math.max(defaultPointerPosition, lastPointer)) : lastPointer + active - lastActive);
|
264584
|
+
}
|
264585
|
+
} else {
|
264586
|
+
const spaceUnderActive = renderedItems.slice(active).reduce((acc, item) => acc + item.length, 0);
|
264587
|
+
pointer = spaceUnderActive < pageSize - middle ? pageSize - spaceUnderActive : Math.min(defaultPointerPosition, middle);
|
264588
|
+
}
|
264589
|
+
}
|
264590
|
+
state.current.lastPointer = pointer;
|
264591
|
+
state.current.lastActive = active;
|
264592
|
+
return pointer;
|
264593
|
+
}
|
264594
|
+
function usePagination({ items, active, renderItem, pageSize, loop = true }) {
|
264595
|
+
const width = readlineWidth();
|
264596
|
+
const bound = (num) => (num % items.length + items.length) % items.length;
|
264597
|
+
const renderedItems = items.map((item, index) => {
|
264598
|
+
if (item == null)
|
264599
|
+
return [];
|
264600
|
+
return breakLines(renderItem({ item, index, isActive: index === active }), width).split(`
|
264601
|
+
`);
|
264602
|
+
});
|
264603
|
+
const renderedLength = renderedItems.reduce((acc, item) => acc + item.length, 0);
|
264604
|
+
const renderItemAtIndex = (index) => renderedItems[index] ?? [];
|
264605
|
+
const pointer = usePointerPosition({ active, renderedItems, pageSize, loop });
|
264606
|
+
const activeItem = renderItemAtIndex(active).slice(0, pageSize);
|
264607
|
+
const activeItemPosition = pointer + activeItem.length <= pageSize ? pointer : pageSize - activeItem.length;
|
264608
|
+
const pageBuffer = Array.from({ length: pageSize });
|
264609
|
+
pageBuffer.splice(activeItemPosition, activeItem.length, ...activeItem);
|
264610
|
+
const itemVisited = new Set([active]);
|
264611
|
+
let bufferPointer = activeItemPosition + activeItem.length;
|
264612
|
+
let itemPointer = bound(active + 1);
|
264613
|
+
while (bufferPointer < pageSize && !itemVisited.has(itemPointer) && (loop && renderedLength > pageSize ? itemPointer !== active : itemPointer > active)) {
|
264614
|
+
const lines = renderItemAtIndex(itemPointer);
|
264615
|
+
const linesToAdd = lines.slice(0, pageSize - bufferPointer);
|
264616
|
+
pageBuffer.splice(bufferPointer, linesToAdd.length, ...linesToAdd);
|
264617
|
+
itemVisited.add(itemPointer);
|
264618
|
+
bufferPointer += linesToAdd.length;
|
264619
|
+
itemPointer = bound(itemPointer + 1);
|
264620
|
+
}
|
264621
|
+
bufferPointer = activeItemPosition - 1;
|
264622
|
+
itemPointer = bound(active - 1);
|
264623
|
+
while (bufferPointer >= 0 && !itemVisited.has(itemPointer) && (loop && renderedLength > pageSize ? itemPointer !== active : itemPointer < active)) {
|
264624
|
+
const lines = renderItemAtIndex(itemPointer);
|
264625
|
+
const linesToAdd = lines.slice(Math.max(0, lines.length - bufferPointer - 1));
|
264626
|
+
pageBuffer.splice(bufferPointer - linesToAdd.length + 1, linesToAdd.length, ...linesToAdd);
|
264627
|
+
itemVisited.add(itemPointer);
|
264628
|
+
bufferPointer -= linesToAdd.length;
|
264629
|
+
itemPointer = bound(itemPointer - 1);
|
264630
|
+
}
|
264631
|
+
return pageBuffer.filter((line) => typeof line === "string").join(`
|
264632
|
+
`);
|
264633
|
+
}
|
264556
264634
|
// ../../node_modules/@inquirer/core/dist/esm/lib/create-prompt.js
|
264557
264635
|
var import_mute_stream = __toESM(require_lib(), 1);
|
264558
264636
|
import * as readline2 from "node:readline";
|
@@ -264935,6 +265013,20 @@ function createPrompt(view) {
|
|
264935
265013
|
};
|
264936
265014
|
return prompt;
|
264937
265015
|
}
|
265016
|
+
// ../../node_modules/@inquirer/core/dist/esm/lib/Separator.js
|
265017
|
+
var import_yoctocolors_cjs2 = __toESM(require_yoctocolors_cjs(), 1);
|
265018
|
+
class Separator {
|
265019
|
+
separator = import_yoctocolors_cjs2.default.dim(Array.from({ length: 15 }).join(esm_default.line));
|
265020
|
+
type = "separator";
|
265021
|
+
constructor(separator) {
|
265022
|
+
if (separator) {
|
265023
|
+
this.separator = separator;
|
265024
|
+
}
|
265025
|
+
}
|
265026
|
+
static isSeparator(choice) {
|
265027
|
+
return Boolean(choice && typeof choice === "object" && "type" in choice && choice.type === "separator");
|
265028
|
+
}
|
265029
|
+
}
|
264938
265030
|
// ../utils/dist/terminal.js
|
264939
265031
|
import { spawn } from "node:child_process";
|
264940
265032
|
var import_console_table_printer2 = __toESM(require_dist2(), 1);
|
@@ -276421,9 +276513,9 @@ ${formattedErrors}`);
|
|
276421
276513
|
throw error$372;
|
276422
276514
|
}
|
276423
276515
|
}
|
276424
|
-
var ApplicationAccessTokenSchema2 = string$12().regex(/^sm_aat_
|
276425
|
-
var PersonalAccessTokenSchema2 = string$12().regex(/^sm_pat_
|
276426
|
-
var AccessTokenSchema2 = string$12().regex(/^
|
276516
|
+
var ApplicationAccessTokenSchema2 = string$12().regex(/^sm_aat_.*$/);
|
276517
|
+
var PersonalAccessTokenSchema2 = string$12().regex(/^sm_pat_.*$/);
|
276518
|
+
var AccessTokenSchema2 = string$12().regex(/^sm_pat_.*|sm_aat_.*$/);
|
276427
276519
|
function tryParseJson2(value, defaultValue = null) {
|
276428
276520
|
try {
|
276429
276521
|
const parsed = JSON.parse(value);
|
@@ -276431,7 +276523,7 @@ function tryParseJson2(value, defaultValue = null) {
|
|
276431
276523
|
return defaultValue;
|
276432
276524
|
}
|
276433
276525
|
return parsed;
|
276434
|
-
} catch (
|
276526
|
+
} catch (err) {
|
276435
276527
|
return defaultValue;
|
276436
276528
|
}
|
276437
276529
|
}
|
@@ -288197,20 +288289,6 @@ var restartBlockchainNetwork = graphql(`
|
|
288197
288289
|
}
|
288198
288290
|
}
|
288199
288291
|
`, [BlockchainNetworkFragment]);
|
288200
|
-
var pauseBlockchainNetwork = graphql(`
|
288201
|
-
mutation PauseBlockchainNetwork($uniqueName: String!) {
|
288202
|
-
pauseBlockchainNetworkByUniqueName(uniqueName: $uniqueName) {
|
288203
|
-
...BlockchainNetwork
|
288204
|
-
}
|
288205
|
-
}
|
288206
|
-
`, [BlockchainNetworkFragment]);
|
288207
|
-
var resumeBlockchainNetwork = graphql(`
|
288208
|
-
mutation ResumeBlockchainNetwork($uniqueName: String!) {
|
288209
|
-
resumeBlockchainNetworkByUniqueName(uniqueName: $uniqueName) {
|
288210
|
-
...BlockchainNetwork
|
288211
|
-
}
|
288212
|
-
}
|
288213
|
-
`, [BlockchainNetworkFragment]);
|
288214
288292
|
var blockchainNetworkList = (gqlClient) => {
|
288215
288293
|
return async (applicationUniqueName) => {
|
288216
288294
|
const { blockchainNetworksByUniqueName: { items } } = await gqlClient.request(getBlockchainNetworks, { applicationUniqueName });
|
@@ -288245,14 +288323,6 @@ var blockchainNetworkRestart = (gqlClient) => async (blockchainNetworkUniqueName
|
|
288245
288323
|
const { restartBlockchainNetworkByUniqueName: blockchainNetwork } = await gqlClient.request(restartBlockchainNetwork, { uniqueName: blockchainNetworkUniqueName });
|
288246
288324
|
return blockchainNetwork;
|
288247
288325
|
};
|
288248
|
-
var blockchainNetworkPause = (gqlClient) => async (blockchainNetworkUniqueName) => {
|
288249
|
-
const { pauseBlockchainNetworkByUniqueName: blockchainNetwork } = await gqlClient.request(pauseBlockchainNetwork, { uniqueName: blockchainNetworkUniqueName });
|
288250
|
-
return blockchainNetwork;
|
288251
|
-
};
|
288252
|
-
var blockchainNetworkResume = (gqlClient) => async (blockchainNetworkUniqueName) => {
|
288253
|
-
const { resumeBlockchainNetworkByUniqueName: blockchainNetwork } = await gqlClient.request(resumeBlockchainNetwork, { uniqueName: blockchainNetworkUniqueName });
|
288254
|
-
return blockchainNetwork;
|
288255
|
-
};
|
288256
288326
|
var BlockchainNodeFragment = graphql(`
|
288257
288327
|
fragment BlockchainNode on BlockchainNode {
|
288258
288328
|
__typename
|
@@ -288386,20 +288456,6 @@ var restartBlockchainNode = graphql(`
|
|
288386
288456
|
}
|
288387
288457
|
}
|
288388
288458
|
`, [BlockchainNodeFragment]);
|
288389
|
-
var pauseBlockchainNode = graphql(`
|
288390
|
-
mutation PauseBlockchainNode($uniqueName: String!) {
|
288391
|
-
pauseBlockchainNodeByUniqueName(uniqueName: $uniqueName) {
|
288392
|
-
...BlockchainNode
|
288393
|
-
}
|
288394
|
-
}
|
288395
|
-
`, [BlockchainNodeFragment]);
|
288396
|
-
var resumeBlockchainNode = graphql(`
|
288397
|
-
mutation ResumeBlockchainNode($uniqueName: String!) {
|
288398
|
-
resumeBlockchainNodeByUniqueName(uniqueName: $uniqueName) {
|
288399
|
-
...BlockchainNode
|
288400
|
-
}
|
288401
|
-
}
|
288402
|
-
`, [BlockchainNodeFragment]);
|
288403
288459
|
var blockchainNodeList = (gqlClient) => {
|
288404
288460
|
return async (applicationUniqueName) => {
|
288405
288461
|
const { blockchainNodesByUniqueName: { items } } = await gqlClient.request(getBlockchainNodes, { applicationUniqueName });
|
@@ -288428,14 +288484,6 @@ var blockchainNodeRestart = (gqlClient) => async (blockchainNodeUniqueName) => {
|
|
288428
288484
|
const { restartBlockchainNodeByUniqueName: blockchainNode } = await gqlClient.request(restartBlockchainNode, { uniqueName: blockchainNodeUniqueName });
|
288429
288485
|
return blockchainNode;
|
288430
288486
|
};
|
288431
|
-
var blockchainNodePause = (gqlClient) => async (blockchainNodeUniqueName) => {
|
288432
|
-
const { pauseBlockchainNodeByUniqueName: blockchainNode } = await gqlClient.request(pauseBlockchainNode, { uniqueName: blockchainNodeUniqueName });
|
288433
|
-
return blockchainNode;
|
288434
|
-
};
|
288435
|
-
var blockchainNodeResume = (gqlClient) => async (blockchainNodeUniqueName) => {
|
288436
|
-
const { resumeBlockchainNodeByUniqueName: blockchainNode } = await gqlClient.request(resumeBlockchainNode, { uniqueName: blockchainNodeUniqueName });
|
288437
|
-
return blockchainNode;
|
288438
|
-
};
|
288439
288487
|
var CustomDeploymentFragment = graphql(`
|
288440
288488
|
fragment CustomDeployment on CustomDeployment {
|
288441
288489
|
id
|
@@ -288518,20 +288566,6 @@ var restartCustomDeployment = graphql(`
|
|
288518
288566
|
}
|
288519
288567
|
}
|
288520
288568
|
`, [CustomDeploymentFragment]);
|
288521
|
-
var pauseCustomDeployment = graphql(`
|
288522
|
-
mutation PauseCustomDeployment($uniqueName: String!) {
|
288523
|
-
pauseCustomDeploymentByUniqueName(uniqueName: $uniqueName) {
|
288524
|
-
...CustomDeployment
|
288525
|
-
}
|
288526
|
-
}
|
288527
|
-
`, [CustomDeploymentFragment]);
|
288528
|
-
var resumeCustomDeployment = graphql(`
|
288529
|
-
mutation ResumeCustomDeployment($uniqueName: String!) {
|
288530
|
-
resumeCustomDeploymentByUniqueName(uniqueName: $uniqueName) {
|
288531
|
-
...CustomDeployment
|
288532
|
-
}
|
288533
|
-
}
|
288534
|
-
`, [CustomDeploymentFragment]);
|
288535
288569
|
var customdeploymentList = (gqlClient) => {
|
288536
288570
|
return async (applicationUniqueName) => {
|
288537
288571
|
const { customDeploymentsByUniqueName: { items } } = await gqlClient.request(getCustomDeployments, { applicationUniqueName });
|
@@ -288568,14 +288602,6 @@ var customDeploymentRestart = (gqlClient) => async (customDeploymentUniqueName)
|
|
288568
288602
|
const { restartCustomDeploymentByUniqueName: customDeployment } = await gqlClient.request(restartCustomDeployment, { uniqueName: customDeploymentUniqueName });
|
288569
288603
|
return customDeployment;
|
288570
288604
|
};
|
288571
|
-
var customDeploymentPause = (gqlClient) => async (customDeploymentUniqueName) => {
|
288572
|
-
const { pauseCustomDeploymentByUniqueName: customDeployment } = await gqlClient.request(pauseCustomDeployment, { uniqueName: customDeploymentUniqueName });
|
288573
|
-
return customDeployment;
|
288574
|
-
};
|
288575
|
-
var customDeploymentResume = (gqlClient) => async (customDeploymentUniqueName) => {
|
288576
|
-
const { resumeCustomDeploymentByUniqueName: customDeployment } = await gqlClient.request(resumeCustomDeployment, { uniqueName: customDeploymentUniqueName });
|
288577
|
-
return customDeployment;
|
288578
|
-
};
|
288579
288605
|
var getFoundryEnvConfig = graphql(`
|
288580
288606
|
query GetFoundryEnvConfig($blockchainNodeUniqueName: String!) {
|
288581
288607
|
foundryEnvConfigByUniqueName(blockchainNodeUniqueName: $blockchainNodeUniqueName)
|
@@ -288652,20 +288678,6 @@ var restartLoadBalancer = graphql(`
|
|
288652
288678
|
}
|
288653
288679
|
}
|
288654
288680
|
`, [LoadBalancerFragment]);
|
288655
|
-
var pauseLoadBalancer = graphql(`
|
288656
|
-
mutation PauseLoadBalancer($uniqueName: String!) {
|
288657
|
-
pauseLoadBalancerByUniqueName(uniqueName: $uniqueName) {
|
288658
|
-
...LoadBalancer
|
288659
|
-
}
|
288660
|
-
}
|
288661
|
-
`, [LoadBalancerFragment]);
|
288662
|
-
var resumeLoadBalancer = graphql(`
|
288663
|
-
mutation ResumeLoadBalancer($uniqueName: String!) {
|
288664
|
-
resumeLoadBalancerByUniqueName(uniqueName: $uniqueName) {
|
288665
|
-
...LoadBalancer
|
288666
|
-
}
|
288667
|
-
}
|
288668
|
-
`, [LoadBalancerFragment]);
|
288669
288681
|
var loadBalancerRead = (gqlClient) => {
|
288670
288682
|
return async (loadBalancerUniqueName) => {
|
288671
288683
|
const { loadBalancerByUniqueName: loadBalancer } = await gqlClient.request(getLoadBalancer, { uniqueName: loadBalancerUniqueName });
|
@@ -288699,14 +288711,6 @@ var loadBalancerRestart = (gqlClient) => async (loadBalancerUniqueName) => {
|
|
288699
288711
|
const { restartLoadBalancerByUniqueName: loadBalancer } = await gqlClient.request(restartLoadBalancer, { uniqueName: loadBalancerUniqueName });
|
288700
288712
|
return loadBalancer;
|
288701
288713
|
};
|
288702
|
-
var loadBalancerPause = (gqlClient) => async (loadBalancerUniqueName) => {
|
288703
|
-
const { pauseLoadBalancerByUniqueName: loadBalancer } = await gqlClient.request(pauseLoadBalancer, { uniqueName: loadBalancerUniqueName });
|
288704
|
-
return loadBalancer;
|
288705
|
-
};
|
288706
|
-
var loadBalancerResume = (gqlClient) => async (loadBalancerUniqueName) => {
|
288707
|
-
const { resumeLoadBalancerByUniqueName: loadBalancer } = await gqlClient.request(resumeLoadBalancer, { uniqueName: loadBalancerUniqueName });
|
288708
|
-
return loadBalancer;
|
288709
|
-
};
|
288710
288714
|
var InsightsFragment = graphql(`
|
288711
288715
|
fragment Insights on Insights {
|
288712
288716
|
__typename
|
@@ -288780,20 +288784,6 @@ var restartInsights = graphql(`
|
|
288780
288784
|
}
|
288781
288785
|
}
|
288782
288786
|
`, [InsightsFragment]);
|
288783
|
-
var pauseInsights = graphql(`
|
288784
|
-
mutation PauseInsights($uniqueName: String!) {
|
288785
|
-
pauseInsightsByUniqueName(uniqueName: $uniqueName) {
|
288786
|
-
...Insights
|
288787
|
-
}
|
288788
|
-
}
|
288789
|
-
`, [InsightsFragment]);
|
288790
|
-
var resumeInsights = graphql(`
|
288791
|
-
mutation ResumeInsights($uniqueName: String!) {
|
288792
|
-
resumeInsightsByUniqueName(uniqueName: $uniqueName) {
|
288793
|
-
...Insights
|
288794
|
-
}
|
288795
|
-
}
|
288796
|
-
`, [InsightsFragment]);
|
288797
288787
|
var insightsList = (gqlClient) => {
|
288798
288788
|
return async (applicationUniqueName) => {
|
288799
288789
|
const { insightsListByUniqueName: { items } } = await gqlClient.request(getInsights, { applicationUniqueName });
|
@@ -288827,14 +288817,6 @@ var insightsRestart = (gqlClient) => async (insightsUniqueName) => {
|
|
288827
288817
|
const { restartInsightsByUniqueName: insights } = await gqlClient.request(restartInsights, { uniqueName: insightsUniqueName });
|
288828
288818
|
return insights;
|
288829
288819
|
};
|
288830
|
-
var insightsPause = (gqlClient) => async (insightsUniqueName) => {
|
288831
|
-
const { pauseInsightsByUniqueName: insights } = await gqlClient.request(pauseInsights, { uniqueName: insightsUniqueName });
|
288832
|
-
return insights;
|
288833
|
-
};
|
288834
|
-
var insightsResume = (gqlClient) => async (insightsUniqueName) => {
|
288835
|
-
const { resumeInsightsByUniqueName: insights } = await gqlClient.request(resumeInsights, { uniqueName: insightsUniqueName });
|
288836
|
-
return insights;
|
288837
|
-
};
|
288838
288820
|
var IntegrationFragment = graphql(`
|
288839
288821
|
fragment Integration on Integration {
|
288840
288822
|
__typename
|
@@ -288904,20 +288886,6 @@ var restartIntegrationTool = graphql(`
|
|
288904
288886
|
}
|
288905
288887
|
}
|
288906
288888
|
`, [IntegrationFragment]);
|
288907
|
-
var pauseIntegrationTool = graphql(`
|
288908
|
-
mutation PauseIntegrationTool($uniqueName: String!) {
|
288909
|
-
pauseIntegrationByUniqueName(uniqueName: $uniqueName) {
|
288910
|
-
...Integration
|
288911
|
-
}
|
288912
|
-
}
|
288913
|
-
`, [IntegrationFragment]);
|
288914
|
-
var resumeIntegrationTool = graphql(`
|
288915
|
-
mutation ResumeIntegrationTool($uniqueName: String!) {
|
288916
|
-
resumeIntegrationByUniqueName(uniqueName: $uniqueName) {
|
288917
|
-
...Integration
|
288918
|
-
}
|
288919
|
-
}
|
288920
|
-
`, [IntegrationFragment]);
|
288921
288889
|
var integrationToolList = (gqlClient) => {
|
288922
288890
|
return async (applicationUniqueName) => {
|
288923
288891
|
const { integrationsByUniqueName: { items } } = await gqlClient.request(getIntegrations, { applicationUniqueName });
|
@@ -288945,14 +288913,6 @@ var integrationToolRestart = (gqlClient) => async (integrationUniqueName) => {
|
|
288945
288913
|
const { restartIntegrationByUniqueName: integration } = await gqlClient.request(restartIntegrationTool, { uniqueName: integrationUniqueName });
|
288946
288914
|
return integration;
|
288947
288915
|
};
|
288948
|
-
var integrationToolPause = (gqlClient) => async (integrationUniqueName) => {
|
288949
|
-
const { pauseIntegrationByUniqueName: integration } = await gqlClient.request(pauseIntegrationTool, { uniqueName: integrationUniqueName });
|
288950
|
-
return integration;
|
288951
|
-
};
|
288952
|
-
var integrationToolResume = (gqlClient) => async (integrationUniqueName) => {
|
288953
|
-
const { resumeIntegrationByUniqueName: integration } = await gqlClient.request(resumeIntegrationTool, { uniqueName: integrationUniqueName });
|
288954
|
-
return integration;
|
288955
|
-
};
|
288956
288916
|
var StorageFragment = graphql(`
|
288957
288917
|
fragment Storage on Storage {
|
288958
288918
|
__typename
|
@@ -289022,20 +288982,6 @@ var restartStorage = graphql(`
|
|
289022
288982
|
}
|
289023
288983
|
}
|
289024
288984
|
`, [StorageFragment]);
|
289025
|
-
var pauseStorage = graphql(`
|
289026
|
-
mutation PauseStorage($uniqueName: String!) {
|
289027
|
-
pauseStorageByUniqueName(uniqueName: $uniqueName) {
|
289028
|
-
...Storage
|
289029
|
-
}
|
289030
|
-
}
|
289031
|
-
`, [StorageFragment]);
|
289032
|
-
var resumeStorage = graphql(`
|
289033
|
-
mutation ResumeStorage($uniqueName: String!) {
|
289034
|
-
resumeStorageByUniqueName(uniqueName: $uniqueName) {
|
289035
|
-
...Storage
|
289036
|
-
}
|
289037
|
-
}
|
289038
|
-
`, [StorageFragment]);
|
289039
288985
|
var storageList = (gqlClient) => {
|
289040
288986
|
return async (applicationUniqueName) => {
|
289041
288987
|
const { storagesByUniqueName: { items } } = await gqlClient.request(getStorages, { applicationUniqueName });
|
@@ -289063,14 +289009,6 @@ var storageRestart = (gqlClient) => async (storageUniqueName) => {
|
|
289063
289009
|
const { restartStorageByUniqueName: storage } = await gqlClient.request(restartStorage, { uniqueName: storageUniqueName });
|
289064
289010
|
return storage;
|
289065
289011
|
};
|
289066
|
-
var storagePause = (gqlClient) => async (storageUniqueName) => {
|
289067
|
-
const { pauseStorageByUniqueName: storage } = await gqlClient.request(pauseStorage, { uniqueName: storageUniqueName });
|
289068
|
-
return storage;
|
289069
|
-
};
|
289070
|
-
var storageResume = (gqlClient) => async (storageUniqueName) => {
|
289071
|
-
const { resumeStorageByUniqueName: storage } = await gqlClient.request(resumeStorage, { uniqueName: storageUniqueName });
|
289072
|
-
return storage;
|
289073
|
-
};
|
289074
289012
|
var MiddlewareFragment = graphql(`
|
289075
289013
|
fragment Middleware on Middleware {
|
289076
289014
|
__typename
|
@@ -289171,20 +289109,6 @@ var restartMiddleware = graphql(`
|
|
289171
289109
|
}
|
289172
289110
|
}
|
289173
289111
|
`, [MiddlewareFragment]);
|
289174
|
-
var pauseMiddleware = graphql(`
|
289175
|
-
mutation PauseMiddleware($uniqueName: String!) {
|
289176
|
-
pauseMiddlewareByUniqueName(uniqueName: $uniqueName) {
|
289177
|
-
...Middleware
|
289178
|
-
}
|
289179
|
-
}
|
289180
|
-
`, [MiddlewareFragment]);
|
289181
|
-
var resumeMiddleware = graphql(`
|
289182
|
-
mutation ResumeMiddleware($uniqueName: String!) {
|
289183
|
-
resumeMiddlewareByUniqueName(uniqueName: $uniqueName) {
|
289184
|
-
...Middleware
|
289185
|
-
}
|
289186
|
-
}
|
289187
|
-
`, [MiddlewareFragment]);
|
289188
289112
|
var middlewareList = (gqlClient) => {
|
289189
289113
|
return async (applicationUniqueName) => {
|
289190
289114
|
const { middlewaresByUniqueName: { items } } = await gqlClient.request(getMiddlewares, { applicationUniqueName });
|
@@ -289229,14 +289153,6 @@ var middlewareRestart = (gqlClient) => async (middlewareUniqueName) => {
|
|
289229
289153
|
const { restartMiddlewareByUniqueName: middleware } = await gqlClient.request(restartMiddleware, { uniqueName: middlewareUniqueName });
|
289230
289154
|
return middleware;
|
289231
289155
|
};
|
289232
|
-
var middlewarePause = (gqlClient) => async (middlewareUniqueName) => {
|
289233
|
-
const { pauseMiddlewareByUniqueName: middleware } = await gqlClient.request(pauseMiddleware, { uniqueName: middlewareUniqueName });
|
289234
|
-
return middleware;
|
289235
|
-
};
|
289236
|
-
var middlewareResume = (gqlClient) => async (middlewareUniqueName) => {
|
289237
|
-
const { resumeMiddlewareByUniqueName: middleware } = await gqlClient.request(resumeMiddleware, { uniqueName: middlewareUniqueName });
|
289238
|
-
return middleware;
|
289239
|
-
};
|
289240
289156
|
var getPlatformConfigQuery = graphql(`
|
289241
289157
|
query platformConfig {
|
289242
289158
|
config {
|
@@ -289369,20 +289285,6 @@ var restartPrivateKey = graphql(`
|
|
289369
289285
|
}
|
289370
289286
|
}
|
289371
289287
|
`, [PrivateKeyFragment]);
|
289372
|
-
var pausePrivateKey = graphql(`
|
289373
|
-
mutation PausePrivateKey($uniqueName: String!) {
|
289374
|
-
pausePrivateKeyByUniqueName(uniqueName: $uniqueName) {
|
289375
|
-
...PrivateKey
|
289376
|
-
}
|
289377
|
-
}
|
289378
|
-
`, [PrivateKeyFragment]);
|
289379
|
-
var resumePrivateKey = graphql(`
|
289380
|
-
mutation ResumePrivateKey($uniqueName: String!) {
|
289381
|
-
resumePrivateKeyByUniqueName(uniqueName: $uniqueName) {
|
289382
|
-
...PrivateKey
|
289383
|
-
}
|
289384
|
-
}
|
289385
|
-
`, [PrivateKeyFragment]);
|
289386
289288
|
var privateKeyList = (gqlClient) => {
|
289387
289289
|
return async (applicationUniqueName) => {
|
289388
289290
|
const { privateKeysByUniqueName: { items } } = await gqlClient.request(getPrivateKeys, { applicationUniqueName });
|
@@ -289421,14 +289323,6 @@ var privateKeyRestart = (gqlClient) => async (privateKeyUniqueName) => {
|
|
289421
289323
|
const { restartPrivateKeyByUniqueName: privateKey } = await gqlClient.request(restartPrivateKey, { uniqueName: privateKeyUniqueName });
|
289422
289324
|
return privateKey;
|
289423
289325
|
};
|
289424
|
-
var privateKeyPause = (gqlClient) => async (privateKeyUniqueName) => {
|
289425
|
-
const { pausePrivateKeyByUniqueName: privateKey } = await gqlClient.request(pausePrivateKey, { uniqueName: privateKeyUniqueName });
|
289426
|
-
return privateKey;
|
289427
|
-
};
|
289428
|
-
var privateKeyResume = (gqlClient) => async (privateKeyUniqueName) => {
|
289429
|
-
const { resumePrivateKeyByUniqueName: privateKey } = await gqlClient.request(resumePrivateKey, { uniqueName: privateKeyUniqueName });
|
289430
|
-
return privateKey;
|
289431
|
-
};
|
289432
289326
|
var ClientOptionsSchema = exports_external.object({
|
289433
289327
|
accessToken: AccessTokenSchema2,
|
289434
289328
|
instance: UrlSchema2
|
@@ -289508,75 +289402,57 @@ function createSettleMintClient(options) {
|
|
289508
289402
|
read: blockchainNetworkRead(gqlClient),
|
289509
289403
|
create: blockchainNetworkCreate(gqlClient),
|
289510
289404
|
delete: blockchainNetworkDelete(gqlClient),
|
289511
|
-
restart: blockchainNetworkRestart(gqlClient)
|
289512
|
-
pause: blockchainNetworkPause(gqlClient),
|
289513
|
-
resume: blockchainNetworkResume(gqlClient)
|
289405
|
+
restart: blockchainNetworkRestart(gqlClient)
|
289514
289406
|
},
|
289515
289407
|
blockchainNode: {
|
289516
289408
|
list: blockchainNodeList(gqlClient),
|
289517
289409
|
read: blockchainNodeRead(gqlClient),
|
289518
289410
|
create: blockchainNodeCreate(gqlClient),
|
289519
|
-
restart: blockchainNodeRestart(gqlClient)
|
289520
|
-
pause: blockchainNodePause(gqlClient),
|
289521
|
-
resume: blockchainNodeResume(gqlClient)
|
289411
|
+
restart: blockchainNodeRestart(gqlClient)
|
289522
289412
|
},
|
289523
289413
|
loadBalancer: {
|
289524
289414
|
list: loadBalancerList(gqlClient),
|
289525
289415
|
read: loadBalancerRead(gqlClient),
|
289526
289416
|
create: loadBalancerCreate(gqlClient),
|
289527
|
-
restart: loadBalancerRestart(gqlClient)
|
289528
|
-
pause: loadBalancerPause(gqlClient),
|
289529
|
-
resume: loadBalancerResume(gqlClient)
|
289417
|
+
restart: loadBalancerRestart(gqlClient)
|
289530
289418
|
},
|
289531
289419
|
middleware: {
|
289532
289420
|
list: middlewareList(gqlClient),
|
289533
289421
|
read: middlewareRead(gqlClient),
|
289534
289422
|
graphSubgraphs: graphMiddlewareSubgraphs(gqlClient),
|
289535
289423
|
create: middlewareCreate(gqlClient),
|
289536
|
-
restart: middlewareRestart(gqlClient)
|
289537
|
-
pause: middlewarePause(gqlClient),
|
289538
|
-
resume: middlewareResume(gqlClient)
|
289424
|
+
restart: middlewareRestart(gqlClient)
|
289539
289425
|
},
|
289540
289426
|
integrationTool: {
|
289541
289427
|
list: integrationToolList(gqlClient),
|
289542
289428
|
read: integrationToolRead(gqlClient),
|
289543
289429
|
create: integrationToolCreate(gqlClient),
|
289544
|
-
restart: integrationToolRestart(gqlClient)
|
289545
|
-
pause: integrationToolPause(gqlClient),
|
289546
|
-
resume: integrationToolResume(gqlClient)
|
289430
|
+
restart: integrationToolRestart(gqlClient)
|
289547
289431
|
},
|
289548
289432
|
storage: {
|
289549
289433
|
list: storageList(gqlClient),
|
289550
289434
|
read: storageRead(gqlClient),
|
289551
289435
|
create: storageCreate(gqlClient),
|
289552
|
-
restart: storageRestart(gqlClient)
|
289553
|
-
pause: storagePause(gqlClient),
|
289554
|
-
resume: storageResume(gqlClient)
|
289436
|
+
restart: storageRestart(gqlClient)
|
289555
289437
|
},
|
289556
289438
|
privateKey: {
|
289557
289439
|
list: privateKeyList(gqlClient),
|
289558
289440
|
read: privatekeyRead(gqlClient),
|
289559
289441
|
create: privateKeyCreate(gqlClient),
|
289560
|
-
restart: privateKeyRestart(gqlClient)
|
289561
|
-
pause: privateKeyPause(gqlClient),
|
289562
|
-
resume: privateKeyResume(gqlClient)
|
289442
|
+
restart: privateKeyRestart(gqlClient)
|
289563
289443
|
},
|
289564
289444
|
insights: {
|
289565
289445
|
list: insightsList(gqlClient),
|
289566
289446
|
read: insightsRead(gqlClient),
|
289567
289447
|
create: insightsCreate(gqlClient),
|
289568
|
-
restart: insightsRestart(gqlClient)
|
289569
|
-
pause: insightsPause(gqlClient),
|
289570
|
-
resume: insightsResume(gqlClient)
|
289448
|
+
restart: insightsRestart(gqlClient)
|
289571
289449
|
},
|
289572
289450
|
customDeployment: {
|
289573
289451
|
list: customdeploymentList(gqlClient),
|
289574
289452
|
read: customdeploymentRead(gqlClient),
|
289575
289453
|
create: customdeploymentCreate(gqlClient),
|
289576
289454
|
update: customdeploymentUpdate(gqlClient),
|
289577
|
-
restart: customDeploymentRestart(gqlClient)
|
289578
|
-
pause: customDeploymentPause(gqlClient),
|
289579
|
-
resume: customDeploymentResume(gqlClient)
|
289455
|
+
restart: customDeploymentRestart(gqlClient)
|
289580
289456
|
},
|
289581
289457
|
foundry: { env: getEnv(gqlClient) },
|
289582
289458
|
applicationAccessToken: { create: applicationAccessTokenCreate(gqlClient) },
|
@@ -295993,6 +295869,17 @@ async function exists3(path$1) {
|
|
295993
295869
|
return false;
|
295994
295870
|
}
|
295995
295871
|
}
|
295872
|
+
function tryParseJson3(value2, defaultValue = null) {
|
295873
|
+
try {
|
295874
|
+
const parsed = JSON.parse(value2);
|
295875
|
+
if (parsed === undefined || parsed === null) {
|
295876
|
+
return defaultValue;
|
295877
|
+
}
|
295878
|
+
return parsed;
|
295879
|
+
} catch (err) {
|
295880
|
+
return defaultValue;
|
295881
|
+
}
|
295882
|
+
}
|
295996
295883
|
var require_balanced_match4 = __commonJS4({ "../../node_modules/balanced-match/index.js"(exports, module) {
|
295997
295884
|
module.exports = balanced$1;
|
295998
295885
|
function balanced$1(a3, b, str) {
|
@@ -301471,17 +301358,6 @@ var glob3 = Object.assign(glob_3, {
|
|
301471
301358
|
unescape: unescape4
|
301472
301359
|
});
|
301473
301360
|
glob3.glob = glob3;
|
301474
|
-
function tryParseJson3(value2, defaultValue = null) {
|
301475
|
-
try {
|
301476
|
-
const parsed = JSON.parse(value2);
|
301477
|
-
if (parsed === undefined || parsed === null) {
|
301478
|
-
return defaultValue;
|
301479
|
-
}
|
301480
|
-
return parsed;
|
301481
|
-
} catch (_err) {
|
301482
|
-
return defaultValue;
|
301483
|
-
}
|
301484
|
-
}
|
301485
301361
|
async function findMonoRepoRoot2(startDir) {
|
301486
301362
|
const lockFilePath = await findUp([
|
301487
301363
|
"package-lock.json",
|
@@ -301527,7 +301403,7 @@ function tryParseJson4(value2, defaultValue = null) {
|
|
301527
301403
|
return defaultValue;
|
301528
301404
|
}
|
301529
301405
|
return parsed;
|
301530
|
-
} catch (
|
301406
|
+
} catch (err) {
|
301531
301407
|
return defaultValue;
|
301532
301408
|
}
|
301533
301409
|
}
|
@@ -301555,7 +301431,7 @@ async function readConfig() {
|
|
301555
301431
|
try {
|
301556
301432
|
const content = await readFile4(CONFIG_FILE, "utf-8");
|
301557
301433
|
return tryParseJson4(content, { instances: {} });
|
301558
|
-
} catch (
|
301434
|
+
} catch (error41) {
|
301559
301435
|
return { instances: {} };
|
301560
301436
|
}
|
301561
301437
|
}
|
@@ -303219,565 +303095,14 @@ async function subgraphNamePrompt({
|
|
303219
303095
|
return sanitizeName(subgraphName);
|
303220
303096
|
}
|
303221
303097
|
|
303222
|
-
// ../../node_modules/@inquirer/select/node_modules/@inquirer/core/dist/esm/lib/key.js
|
303223
|
-
var isUpKey = (key2) => key2.name === "up" || key2.name === "k" || key2.ctrl && key2.name === "p";
|
303224
|
-
var isDownKey = (key2) => key2.name === "down" || key2.name === "j" || key2.ctrl && key2.name === "n";
|
303225
|
-
var isBackspaceKey2 = (key2) => key2.name === "backspace";
|
303226
|
-
var isNumberKey = (key2) => "1234567890".includes(key2.name);
|
303227
|
-
var isEnterKey2 = (key2) => key2.name === "enter" || key2.name === "return";
|
303228
|
-
// ../../node_modules/@inquirer/select/node_modules/@inquirer/core/dist/esm/lib/errors.js
|
303229
|
-
class AbortPromptError2 extends Error {
|
303230
|
-
name = "AbortPromptError";
|
303231
|
-
message = "Prompt was aborted";
|
303232
|
-
constructor(options) {
|
303233
|
-
super();
|
303234
|
-
this.cause = options?.cause;
|
303235
|
-
}
|
303236
|
-
}
|
303237
|
-
|
303238
|
-
class CancelPromptError2 extends Error {
|
303239
|
-
name = "CancelPromptError";
|
303240
|
-
message = "Prompt was canceled";
|
303241
|
-
}
|
303242
|
-
|
303243
|
-
class ExitPromptError2 extends Error {
|
303244
|
-
name = "ExitPromptError";
|
303245
|
-
}
|
303246
|
-
|
303247
|
-
class HookError2 extends Error {
|
303248
|
-
name = "HookError";
|
303249
|
-
}
|
303250
|
-
|
303251
|
-
class ValidationError2 extends Error {
|
303252
|
-
name = "ValidationError";
|
303253
|
-
}
|
303254
|
-
// ../../node_modules/@inquirer/select/node_modules/@inquirer/core/dist/esm/lib/use-state.js
|
303255
|
-
import { AsyncResource as AsyncResource5 } from "node:async_hooks";
|
303256
|
-
|
303257
|
-
// ../../node_modules/@inquirer/select/node_modules/@inquirer/core/dist/esm/lib/hook-engine.js
|
303258
|
-
import { AsyncLocalStorage as AsyncLocalStorage2, AsyncResource as AsyncResource4 } from "node:async_hooks";
|
303259
|
-
var hookStorage2 = new AsyncLocalStorage2;
|
303260
|
-
function createStore2(rl) {
|
303261
|
-
const store = {
|
303262
|
-
rl,
|
303263
|
-
hooks: [],
|
303264
|
-
hooksCleanup: [],
|
303265
|
-
hooksEffect: [],
|
303266
|
-
index: 0,
|
303267
|
-
handleChange() {}
|
303268
|
-
};
|
303269
|
-
return store;
|
303270
|
-
}
|
303271
|
-
function withHooks2(rl, cb) {
|
303272
|
-
const store = createStore2(rl);
|
303273
|
-
return hookStorage2.run(store, () => {
|
303274
|
-
function cycle(render) {
|
303275
|
-
store.handleChange = () => {
|
303276
|
-
store.index = 0;
|
303277
|
-
render();
|
303278
|
-
};
|
303279
|
-
store.handleChange();
|
303280
|
-
}
|
303281
|
-
return cb(cycle);
|
303282
|
-
});
|
303283
|
-
}
|
303284
|
-
function getStore2() {
|
303285
|
-
const store = hookStorage2.getStore();
|
303286
|
-
if (!store) {
|
303287
|
-
throw new HookError2("[Inquirer] Hook functions can only be called from within a prompt");
|
303288
|
-
}
|
303289
|
-
return store;
|
303290
|
-
}
|
303291
|
-
function readline3() {
|
303292
|
-
return getStore2().rl;
|
303293
|
-
}
|
303294
|
-
function withUpdates2(fn) {
|
303295
|
-
const wrapped = (...args) => {
|
303296
|
-
const store = getStore2();
|
303297
|
-
let shouldUpdate = false;
|
303298
|
-
const oldHandleChange = store.handleChange;
|
303299
|
-
store.handleChange = () => {
|
303300
|
-
shouldUpdate = true;
|
303301
|
-
};
|
303302
|
-
const returnValue = fn(...args);
|
303303
|
-
if (shouldUpdate) {
|
303304
|
-
oldHandleChange();
|
303305
|
-
}
|
303306
|
-
store.handleChange = oldHandleChange;
|
303307
|
-
return returnValue;
|
303308
|
-
};
|
303309
|
-
return AsyncResource4.bind(wrapped);
|
303310
|
-
}
|
303311
|
-
function withPointer2(cb) {
|
303312
|
-
const store = getStore2();
|
303313
|
-
const { index } = store;
|
303314
|
-
const pointer = {
|
303315
|
-
get() {
|
303316
|
-
return store.hooks[index];
|
303317
|
-
},
|
303318
|
-
set(value4) {
|
303319
|
-
store.hooks[index] = value4;
|
303320
|
-
},
|
303321
|
-
initialized: index in store.hooks
|
303322
|
-
};
|
303323
|
-
const returnValue = cb(pointer);
|
303324
|
-
store.index++;
|
303325
|
-
return returnValue;
|
303326
|
-
}
|
303327
|
-
function handleChange2() {
|
303328
|
-
getStore2().handleChange();
|
303329
|
-
}
|
303330
|
-
var effectScheduler2 = {
|
303331
|
-
queue(cb) {
|
303332
|
-
const store = getStore2();
|
303333
|
-
const { index } = store;
|
303334
|
-
store.hooksEffect.push(() => {
|
303335
|
-
store.hooksCleanup[index]?.();
|
303336
|
-
const cleanFn = cb(readline3());
|
303337
|
-
if (cleanFn != null && typeof cleanFn !== "function") {
|
303338
|
-
throw new ValidationError2("useEffect return value must be a cleanup function or nothing.");
|
303339
|
-
}
|
303340
|
-
store.hooksCleanup[index] = cleanFn;
|
303341
|
-
});
|
303342
|
-
},
|
303343
|
-
run() {
|
303344
|
-
const store = getStore2();
|
303345
|
-
withUpdates2(() => {
|
303346
|
-
store.hooksEffect.forEach((effect) => {
|
303347
|
-
effect();
|
303348
|
-
});
|
303349
|
-
store.hooksEffect.length = 0;
|
303350
|
-
})();
|
303351
|
-
},
|
303352
|
-
clearAll() {
|
303353
|
-
const store = getStore2();
|
303354
|
-
store.hooksCleanup.forEach((cleanFn) => {
|
303355
|
-
cleanFn?.();
|
303356
|
-
});
|
303357
|
-
store.hooksEffect.length = 0;
|
303358
|
-
store.hooksCleanup.length = 0;
|
303359
|
-
}
|
303360
|
-
};
|
303361
|
-
|
303362
|
-
// ../../node_modules/@inquirer/select/node_modules/@inquirer/core/dist/esm/lib/use-state.js
|
303363
|
-
function useState2(defaultValue) {
|
303364
|
-
return withPointer2((pointer) => {
|
303365
|
-
const setState = AsyncResource5.bind(function setState(newValue) {
|
303366
|
-
if (pointer.get() !== newValue) {
|
303367
|
-
pointer.set(newValue);
|
303368
|
-
handleChange2();
|
303369
|
-
}
|
303370
|
-
});
|
303371
|
-
if (pointer.initialized) {
|
303372
|
-
return [pointer.get(), setState];
|
303373
|
-
}
|
303374
|
-
const value4 = typeof defaultValue === "function" ? defaultValue() : defaultValue;
|
303375
|
-
pointer.set(value4);
|
303376
|
-
return [value4, setState];
|
303377
|
-
});
|
303378
|
-
}
|
303379
|
-
|
303380
|
-
// ../../node_modules/@inquirer/select/node_modules/@inquirer/core/dist/esm/lib/use-effect.js
|
303381
|
-
function useEffect2(cb, depArray) {
|
303382
|
-
withPointer2((pointer) => {
|
303383
|
-
const oldDeps = pointer.get();
|
303384
|
-
const hasChanged = !Array.isArray(oldDeps) || depArray.some((dep, i6) => !Object.is(dep, oldDeps[i6]));
|
303385
|
-
if (hasChanged) {
|
303386
|
-
effectScheduler2.queue(cb);
|
303387
|
-
}
|
303388
|
-
pointer.set(depArray);
|
303389
|
-
});
|
303390
|
-
}
|
303391
|
-
|
303392
|
-
// ../../node_modules/@inquirer/select/node_modules/@inquirer/core/dist/esm/lib/theme.js
|
303393
|
-
var import_yoctocolors_cjs2 = __toESM(require_yoctocolors_cjs(), 1);
|
303394
|
-
var defaultTheme2 = {
|
303395
|
-
prefix: {
|
303396
|
-
idle: import_yoctocolors_cjs2.default.blue("?"),
|
303397
|
-
done: import_yoctocolors_cjs2.default.green(esm_default.tick)
|
303398
|
-
},
|
303399
|
-
spinner: {
|
303400
|
-
interval: 80,
|
303401
|
-
frames: ["⠋", "⠙", "⠹", "⠸", "⠼", "⠴", "⠦", "⠧", "⠇", "⠏"].map((frame) => import_yoctocolors_cjs2.default.yellow(frame))
|
303402
|
-
},
|
303403
|
-
style: {
|
303404
|
-
answer: import_yoctocolors_cjs2.default.cyan,
|
303405
|
-
message: import_yoctocolors_cjs2.default.bold,
|
303406
|
-
error: (text2) => import_yoctocolors_cjs2.default.red(`> ${text2}`),
|
303407
|
-
defaultAnswer: (text2) => import_yoctocolors_cjs2.default.dim(`(${text2})`),
|
303408
|
-
help: import_yoctocolors_cjs2.default.dim,
|
303409
|
-
highlight: import_yoctocolors_cjs2.default.cyan,
|
303410
|
-
key: (text2) => import_yoctocolors_cjs2.default.cyan(import_yoctocolors_cjs2.default.bold(`<${text2}>`))
|
303411
|
-
}
|
303412
|
-
};
|
303413
|
-
|
303414
|
-
// ../../node_modules/@inquirer/select/node_modules/@inquirer/core/dist/esm/lib/make-theme.js
|
303415
|
-
function isPlainObject6(value4) {
|
303416
|
-
if (typeof value4 !== "object" || value4 === null)
|
303417
|
-
return false;
|
303418
|
-
let proto = value4;
|
303419
|
-
while (Object.getPrototypeOf(proto) !== null) {
|
303420
|
-
proto = Object.getPrototypeOf(proto);
|
303421
|
-
}
|
303422
|
-
return Object.getPrototypeOf(value4) === proto;
|
303423
|
-
}
|
303424
|
-
function deepMerge3(...objects) {
|
303425
|
-
const output = {};
|
303426
|
-
for (const obj of objects) {
|
303427
|
-
for (const [key2, value4] of Object.entries(obj)) {
|
303428
|
-
const prevValue = output[key2];
|
303429
|
-
output[key2] = isPlainObject6(prevValue) && isPlainObject6(value4) ? deepMerge3(prevValue, value4) : value4;
|
303430
|
-
}
|
303431
|
-
}
|
303432
|
-
return output;
|
303433
|
-
}
|
303434
|
-
function makeTheme2(...themes) {
|
303435
|
-
const themesToMerge = [
|
303436
|
-
defaultTheme2,
|
303437
|
-
...themes.filter((theme) => theme != null)
|
303438
|
-
];
|
303439
|
-
return deepMerge3(...themesToMerge);
|
303440
|
-
}
|
303441
|
-
|
303442
|
-
// ../../node_modules/@inquirer/select/node_modules/@inquirer/core/dist/esm/lib/use-prefix.js
|
303443
|
-
function usePrefix2({ status = "idle", theme }) {
|
303444
|
-
const [showLoader, setShowLoader] = useState2(false);
|
303445
|
-
const [tick, setTick] = useState2(0);
|
303446
|
-
const { prefix, spinner: spinner2 } = makeTheme2(theme);
|
303447
|
-
useEffect2(() => {
|
303448
|
-
if (status === "loading") {
|
303449
|
-
let tickInterval;
|
303450
|
-
let inc = -1;
|
303451
|
-
const delayTimeout = setTimeout(() => {
|
303452
|
-
setShowLoader(true);
|
303453
|
-
tickInterval = setInterval(() => {
|
303454
|
-
inc = inc + 1;
|
303455
|
-
setTick(inc % spinner2.frames.length);
|
303456
|
-
}, spinner2.interval);
|
303457
|
-
}, 300);
|
303458
|
-
return () => {
|
303459
|
-
clearTimeout(delayTimeout);
|
303460
|
-
clearInterval(tickInterval);
|
303461
|
-
};
|
303462
|
-
} else {
|
303463
|
-
setShowLoader(false);
|
303464
|
-
}
|
303465
|
-
}, [status]);
|
303466
|
-
if (showLoader) {
|
303467
|
-
return spinner2.frames[tick];
|
303468
|
-
}
|
303469
|
-
const iconName = status === "loading" ? "idle" : status;
|
303470
|
-
return typeof prefix === "string" ? prefix : prefix[iconName] ?? prefix["idle"];
|
303471
|
-
}
|
303472
|
-
// ../../node_modules/@inquirer/select/node_modules/@inquirer/core/dist/esm/lib/use-memo.js
|
303473
|
-
function useMemo(fn, dependencies) {
|
303474
|
-
return withPointer2((pointer) => {
|
303475
|
-
const prev = pointer.get();
|
303476
|
-
if (!prev || prev.dependencies.length !== dependencies.length || prev.dependencies.some((dep, i6) => dep !== dependencies[i6])) {
|
303477
|
-
const value4 = fn();
|
303478
|
-
pointer.set({ value: value4, dependencies });
|
303479
|
-
return value4;
|
303480
|
-
}
|
303481
|
-
return prev.value;
|
303482
|
-
});
|
303483
|
-
}
|
303484
|
-
// ../../node_modules/@inquirer/select/node_modules/@inquirer/core/dist/esm/lib/use-ref.js
|
303485
|
-
function useRef2(val) {
|
303486
|
-
return useState2({ current: val })[0];
|
303487
|
-
}
|
303488
|
-
// ../../node_modules/@inquirer/select/node_modules/@inquirer/core/dist/esm/lib/use-keypress.js
|
303489
|
-
function useKeypress2(userHandler) {
|
303490
|
-
const signal = useRef2(userHandler);
|
303491
|
-
signal.current = userHandler;
|
303492
|
-
useEffect2((rl) => {
|
303493
|
-
let ignore = false;
|
303494
|
-
const handler = withUpdates2((_input, event) => {
|
303495
|
-
if (ignore)
|
303496
|
-
return;
|
303497
|
-
signal.current(event, rl);
|
303498
|
-
});
|
303499
|
-
rl.input.on("keypress", handler);
|
303500
|
-
return () => {
|
303501
|
-
ignore = true;
|
303502
|
-
rl.input.removeListener("keypress", handler);
|
303503
|
-
};
|
303504
|
-
}, []);
|
303505
|
-
}
|
303506
|
-
// ../../node_modules/@inquirer/select/node_modules/@inquirer/core/dist/esm/lib/utils.js
|
303507
|
-
var import_cli_width2 = __toESM(require_cli_width(), 1);
|
303508
|
-
var import_wrap_ansi2 = __toESM(require_wrap_ansi(), 1);
|
303509
|
-
function breakLines2(content, width) {
|
303510
|
-
return content.split(`
|
303511
|
-
`).flatMap((line) => import_wrap_ansi2.default(line, width, { trim: false, hard: true }).split(`
|
303512
|
-
`).map((str) => str.trimEnd())).join(`
|
303513
|
-
`);
|
303514
|
-
}
|
303515
|
-
function readlineWidth2() {
|
303516
|
-
return import_cli_width2.default({ defaultWidth: 80, output: readline3().output });
|
303517
|
-
}
|
303518
|
-
|
303519
|
-
// ../../node_modules/@inquirer/select/node_modules/@inquirer/core/dist/esm/lib/pagination/use-pagination.js
|
303520
|
-
function usePointerPosition({ active, renderedItems, pageSize, loop }) {
|
303521
|
-
const state = useRef2({
|
303522
|
-
lastPointer: active,
|
303523
|
-
lastActive: undefined
|
303524
|
-
});
|
303525
|
-
const { lastPointer, lastActive } = state.current;
|
303526
|
-
const middle = Math.floor(pageSize / 2);
|
303527
|
-
const renderedLength = renderedItems.reduce((acc, item) => acc + item.length, 0);
|
303528
|
-
const defaultPointerPosition = renderedItems.slice(0, active).reduce((acc, item) => acc + item.length, 0);
|
303529
|
-
let pointer = defaultPointerPosition;
|
303530
|
-
if (renderedLength > pageSize) {
|
303531
|
-
if (loop) {
|
303532
|
-
pointer = lastPointer;
|
303533
|
-
if (lastActive != null && lastActive < active && active - lastActive < pageSize) {
|
303534
|
-
pointer = Math.min(middle, Math.abs(active - lastActive) === 1 ? Math.min(lastPointer + (renderedItems[lastActive]?.length ?? 0), Math.max(defaultPointerPosition, lastPointer)) : lastPointer + active - lastActive);
|
303535
|
-
}
|
303536
|
-
} else {
|
303537
|
-
const spaceUnderActive = renderedItems.slice(active).reduce((acc, item) => acc + item.length, 0);
|
303538
|
-
pointer = spaceUnderActive < pageSize - middle ? pageSize - spaceUnderActive : Math.min(defaultPointerPosition, middle);
|
303539
|
-
}
|
303540
|
-
}
|
303541
|
-
state.current.lastPointer = pointer;
|
303542
|
-
state.current.lastActive = active;
|
303543
|
-
return pointer;
|
303544
|
-
}
|
303545
|
-
function usePagination({ items, active, renderItem, pageSize, loop = true }) {
|
303546
|
-
const width = readlineWidth2();
|
303547
|
-
const bound = (num) => (num % items.length + items.length) % items.length;
|
303548
|
-
const renderedItems = items.map((item, index) => {
|
303549
|
-
if (item == null)
|
303550
|
-
return [];
|
303551
|
-
return breakLines2(renderItem({ item, index, isActive: index === active }), width).split(`
|
303552
|
-
`);
|
303553
|
-
});
|
303554
|
-
const renderedLength = renderedItems.reduce((acc, item) => acc + item.length, 0);
|
303555
|
-
const renderItemAtIndex = (index) => renderedItems[index] ?? [];
|
303556
|
-
const pointer = usePointerPosition({ active, renderedItems, pageSize, loop });
|
303557
|
-
const activeItem = renderItemAtIndex(active).slice(0, pageSize);
|
303558
|
-
const activeItemPosition = pointer + activeItem.length <= pageSize ? pointer : pageSize - activeItem.length;
|
303559
|
-
const pageBuffer = Array.from({ length: pageSize });
|
303560
|
-
pageBuffer.splice(activeItemPosition, activeItem.length, ...activeItem);
|
303561
|
-
const itemVisited = new Set([active]);
|
303562
|
-
let bufferPointer = activeItemPosition + activeItem.length;
|
303563
|
-
let itemPointer = bound(active + 1);
|
303564
|
-
while (bufferPointer < pageSize && !itemVisited.has(itemPointer) && (loop && renderedLength > pageSize ? itemPointer !== active : itemPointer > active)) {
|
303565
|
-
const lines = renderItemAtIndex(itemPointer);
|
303566
|
-
const linesToAdd = lines.slice(0, pageSize - bufferPointer);
|
303567
|
-
pageBuffer.splice(bufferPointer, linesToAdd.length, ...linesToAdd);
|
303568
|
-
itemVisited.add(itemPointer);
|
303569
|
-
bufferPointer += linesToAdd.length;
|
303570
|
-
itemPointer = bound(itemPointer + 1);
|
303571
|
-
}
|
303572
|
-
bufferPointer = activeItemPosition - 1;
|
303573
|
-
itemPointer = bound(active - 1);
|
303574
|
-
while (bufferPointer >= 0 && !itemVisited.has(itemPointer) && (loop && renderedLength > pageSize ? itemPointer !== active : itemPointer < active)) {
|
303575
|
-
const lines = renderItemAtIndex(itemPointer);
|
303576
|
-
const linesToAdd = lines.slice(Math.max(0, lines.length - bufferPointer - 1));
|
303577
|
-
pageBuffer.splice(bufferPointer - linesToAdd.length + 1, linesToAdd.length, ...linesToAdd);
|
303578
|
-
itemVisited.add(itemPointer);
|
303579
|
-
bufferPointer -= linesToAdd.length;
|
303580
|
-
itemPointer = bound(itemPointer - 1);
|
303581
|
-
}
|
303582
|
-
return pageBuffer.filter((line) => typeof line === "string").join(`
|
303583
|
-
`);
|
303584
|
-
}
|
303585
|
-
// ../../node_modules/@inquirer/select/node_modules/@inquirer/core/dist/esm/lib/create-prompt.js
|
303586
|
-
var import_mute_stream2 = __toESM(require_lib(), 1);
|
303587
|
-
import * as readline4 from "node:readline";
|
303588
|
-
import { AsyncResource as AsyncResource6 } from "node:async_hooks";
|
303589
|
-
|
303590
|
-
// ../../node_modules/@inquirer/select/node_modules/@inquirer/core/dist/esm/lib/screen-manager.js
|
303591
|
-
var import_ansi_escapes2 = __toESM(require_ansi_escapes(), 1);
|
303592
|
-
import { stripVTControlCharacters as stripVTControlCharacters3 } from "node:util";
|
303593
|
-
var height2 = (content) => content.split(`
|
303594
|
-
`).length;
|
303595
|
-
var lastLine2 = (content) => content.split(`
|
303596
|
-
`).pop() ?? "";
|
303597
|
-
function cursorDown2(n6) {
|
303598
|
-
return n6 > 0 ? import_ansi_escapes2.default.cursorDown(n6) : "";
|
303599
|
-
}
|
303600
|
-
|
303601
|
-
class ScreenManager2 {
|
303602
|
-
height = 0;
|
303603
|
-
extraLinesUnderPrompt = 0;
|
303604
|
-
cursorPos;
|
303605
|
-
rl;
|
303606
|
-
constructor(rl) {
|
303607
|
-
this.rl = rl;
|
303608
|
-
this.cursorPos = rl.getCursorPos();
|
303609
|
-
}
|
303610
|
-
write(content) {
|
303611
|
-
this.rl.output.unmute();
|
303612
|
-
this.rl.output.write(content);
|
303613
|
-
this.rl.output.mute();
|
303614
|
-
}
|
303615
|
-
render(content, bottomContent = "") {
|
303616
|
-
const promptLine = lastLine2(content);
|
303617
|
-
const rawPromptLine = stripVTControlCharacters3(promptLine);
|
303618
|
-
let prompt = rawPromptLine;
|
303619
|
-
if (this.rl.line.length > 0) {
|
303620
|
-
prompt = prompt.slice(0, -this.rl.line.length);
|
303621
|
-
}
|
303622
|
-
this.rl.setPrompt(prompt);
|
303623
|
-
this.cursorPos = this.rl.getCursorPos();
|
303624
|
-
const width = readlineWidth2();
|
303625
|
-
content = breakLines2(content, width);
|
303626
|
-
bottomContent = breakLines2(bottomContent, width);
|
303627
|
-
if (rawPromptLine.length % width === 0) {
|
303628
|
-
content += `
|
303629
|
-
`;
|
303630
|
-
}
|
303631
|
-
let output = content + (bottomContent ? `
|
303632
|
-
` + bottomContent : "");
|
303633
|
-
const promptLineUpDiff = Math.floor(rawPromptLine.length / width) - this.cursorPos.rows;
|
303634
|
-
const bottomContentHeight = promptLineUpDiff + (bottomContent ? height2(bottomContent) : 0);
|
303635
|
-
if (bottomContentHeight > 0)
|
303636
|
-
output += import_ansi_escapes2.default.cursorUp(bottomContentHeight);
|
303637
|
-
output += import_ansi_escapes2.default.cursorTo(this.cursorPos.cols);
|
303638
|
-
this.write(cursorDown2(this.extraLinesUnderPrompt) + import_ansi_escapes2.default.eraseLines(this.height) + output);
|
303639
|
-
this.extraLinesUnderPrompt = bottomContentHeight;
|
303640
|
-
this.height = height2(output);
|
303641
|
-
}
|
303642
|
-
checkCursorPos() {
|
303643
|
-
const cursorPos = this.rl.getCursorPos();
|
303644
|
-
if (cursorPos.cols !== this.cursorPos.cols) {
|
303645
|
-
this.write(import_ansi_escapes2.default.cursorTo(cursorPos.cols));
|
303646
|
-
this.cursorPos = cursorPos;
|
303647
|
-
}
|
303648
|
-
}
|
303649
|
-
done({ clearContent }) {
|
303650
|
-
this.rl.setPrompt("");
|
303651
|
-
let output = cursorDown2(this.extraLinesUnderPrompt);
|
303652
|
-
output += clearContent ? import_ansi_escapes2.default.eraseLines(this.height) : `
|
303653
|
-
`;
|
303654
|
-
output += import_ansi_escapes2.default.cursorShow;
|
303655
|
-
this.write(output);
|
303656
|
-
this.rl.close();
|
303657
|
-
}
|
303658
|
-
}
|
303659
|
-
|
303660
|
-
// ../../node_modules/@inquirer/select/node_modules/@inquirer/core/dist/esm/lib/promise-polyfill.js
|
303661
|
-
class PromisePolyfill2 extends Promise {
|
303662
|
-
static withResolver() {
|
303663
|
-
let resolve5;
|
303664
|
-
let reject;
|
303665
|
-
const promise4 = new Promise((res, rej) => {
|
303666
|
-
resolve5 = res;
|
303667
|
-
reject = rej;
|
303668
|
-
});
|
303669
|
-
return { promise: promise4, resolve: resolve5, reject };
|
303670
|
-
}
|
303671
|
-
}
|
303672
|
-
|
303673
|
-
// ../../node_modules/@inquirer/select/node_modules/@inquirer/core/dist/esm/lib/create-prompt.js
|
303674
|
-
function getCallSites2() {
|
303675
|
-
const _prepareStackTrace = Error.prepareStackTrace;
|
303676
|
-
let result = [];
|
303677
|
-
try {
|
303678
|
-
Error.prepareStackTrace = (_5, callSites) => {
|
303679
|
-
const callSitesWithoutCurrent = callSites.slice(1);
|
303680
|
-
result = callSitesWithoutCurrent;
|
303681
|
-
return callSitesWithoutCurrent;
|
303682
|
-
};
|
303683
|
-
new Error().stack;
|
303684
|
-
} catch {
|
303685
|
-
return result;
|
303686
|
-
}
|
303687
|
-
Error.prepareStackTrace = _prepareStackTrace;
|
303688
|
-
return result;
|
303689
|
-
}
|
303690
|
-
function createPrompt2(view) {
|
303691
|
-
const callSites = getCallSites2();
|
303692
|
-
const prompt = (config4, context = {}) => {
|
303693
|
-
const { input = process.stdin, signal } = context;
|
303694
|
-
const cleanups = new Set;
|
303695
|
-
const output = new import_mute_stream2.default;
|
303696
|
-
output.pipe(context.output ?? process.stdout);
|
303697
|
-
const rl = readline4.createInterface({
|
303698
|
-
terminal: true,
|
303699
|
-
input,
|
303700
|
-
output
|
303701
|
-
});
|
303702
|
-
const screen = new ScreenManager2(rl);
|
303703
|
-
const { promise: promise4, resolve: resolve5, reject } = PromisePolyfill2.withResolver();
|
303704
|
-
const cancel3 = () => reject(new CancelPromptError2);
|
303705
|
-
if (signal) {
|
303706
|
-
const abort = () => reject(new AbortPromptError2({ cause: signal.reason }));
|
303707
|
-
if (signal.aborted) {
|
303708
|
-
abort();
|
303709
|
-
return Object.assign(promise4, { cancel: cancel3 });
|
303710
|
-
}
|
303711
|
-
signal.addEventListener("abort", abort);
|
303712
|
-
cleanups.add(() => signal.removeEventListener("abort", abort));
|
303713
|
-
}
|
303714
|
-
cleanups.add(onExit((code2, signal2) => {
|
303715
|
-
reject(new ExitPromptError2(`User force closed the prompt with ${code2} ${signal2}`));
|
303716
|
-
}));
|
303717
|
-
const sigint = () => reject(new ExitPromptError2(`User force closed the prompt with SIGINT`));
|
303718
|
-
rl.on("SIGINT", sigint);
|
303719
|
-
cleanups.add(() => rl.removeListener("SIGINT", sigint));
|
303720
|
-
const checkCursorPos = () => screen.checkCursorPos();
|
303721
|
-
rl.input.on("keypress", checkCursorPos);
|
303722
|
-
cleanups.add(() => rl.input.removeListener("keypress", checkCursorPos));
|
303723
|
-
return withHooks2(rl, (cycle) => {
|
303724
|
-
const hooksCleanup = AsyncResource6.bind(() => effectScheduler2.clearAll());
|
303725
|
-
rl.on("close", hooksCleanup);
|
303726
|
-
cleanups.add(() => rl.removeListener("close", hooksCleanup));
|
303727
|
-
cycle(() => {
|
303728
|
-
try {
|
303729
|
-
const nextView = view(config4, (value4) => {
|
303730
|
-
setImmediate(() => resolve5(value4));
|
303731
|
-
});
|
303732
|
-
if (nextView === undefined) {
|
303733
|
-
const callerFilename = callSites[1]?.getFileName();
|
303734
|
-
throw new Error(`Prompt functions must return a string.
|
303735
|
-
at ${callerFilename}`);
|
303736
|
-
}
|
303737
|
-
const [content, bottomContent] = typeof nextView === "string" ? [nextView] : nextView;
|
303738
|
-
screen.render(content, bottomContent);
|
303739
|
-
effectScheduler2.run();
|
303740
|
-
} catch (error44) {
|
303741
|
-
reject(error44);
|
303742
|
-
}
|
303743
|
-
});
|
303744
|
-
return Object.assign(promise4.then((answer) => {
|
303745
|
-
effectScheduler2.clearAll();
|
303746
|
-
return answer;
|
303747
|
-
}, (error44) => {
|
303748
|
-
effectScheduler2.clearAll();
|
303749
|
-
throw error44;
|
303750
|
-
}).finally(() => {
|
303751
|
-
cleanups.forEach((cleanup) => cleanup());
|
303752
|
-
screen.done({ clearContent: Boolean(context.clearPromptOnDone) });
|
303753
|
-
output.end();
|
303754
|
-
}).then(() => promise4), { cancel: cancel3 });
|
303755
|
-
});
|
303756
|
-
};
|
303757
|
-
return prompt;
|
303758
|
-
}
|
303759
|
-
// ../../node_modules/@inquirer/select/node_modules/@inquirer/core/dist/esm/lib/Separator.js
|
303760
|
-
var import_yoctocolors_cjs3 = __toESM(require_yoctocolors_cjs(), 1);
|
303761
|
-
class Separator {
|
303762
|
-
separator = import_yoctocolors_cjs3.default.dim(Array.from({ length: 15 }).join(esm_default.line));
|
303763
|
-
type = "separator";
|
303764
|
-
constructor(separator) {
|
303765
|
-
if (separator) {
|
303766
|
-
this.separator = separator;
|
303767
|
-
}
|
303768
|
-
}
|
303769
|
-
static isSeparator(choice) {
|
303770
|
-
return Boolean(choice && typeof choice === "object" && "type" in choice && choice.type === "separator");
|
303771
|
-
}
|
303772
|
-
}
|
303773
303098
|
// ../../node_modules/@inquirer/select/dist/esm/index.js
|
303774
|
-
var
|
303775
|
-
var
|
303099
|
+
var import_yoctocolors_cjs3 = __toESM(require_yoctocolors_cjs(), 1);
|
303100
|
+
var import_ansi_escapes2 = __toESM(require_ansi_escapes(), 1);
|
303776
303101
|
var selectTheme = {
|
303777
303102
|
icon: { cursor: esm_default.pointer },
|
303778
303103
|
style: {
|
303779
|
-
disabled: (text2) =>
|
303780
|
-
description: (text2) =>
|
303104
|
+
disabled: (text2) => import_yoctocolors_cjs3.default.dim(`- ${text2}`),
|
303105
|
+
description: (text2) => import_yoctocolors_cjs3.default.cyan(text2)
|
303781
303106
|
},
|
303782
303107
|
helpMode: "auto",
|
303783
303108
|
indexMode: "hidden"
|
@@ -303810,19 +303135,19 @@ function normalizeChoices(choices) {
|
|
303810
303135
|
return normalizedChoice;
|
303811
303136
|
});
|
303812
303137
|
}
|
303813
|
-
var esm_default3 =
|
303138
|
+
var esm_default3 = createPrompt((config4, done) => {
|
303814
303139
|
const { loop = true, pageSize = 7 } = config4;
|
303815
|
-
const firstRender =
|
303816
|
-
const theme =
|
303817
|
-
const [status, setStatus] =
|
303818
|
-
const prefix =
|
303819
|
-
const searchTimeoutRef =
|
303140
|
+
const firstRender = useRef(true);
|
303141
|
+
const theme = makeTheme(selectTheme, config4.theme);
|
303142
|
+
const [status, setStatus] = useState("idle");
|
303143
|
+
const prefix = usePrefix({ status, theme });
|
303144
|
+
const searchTimeoutRef = useRef();
|
303820
303145
|
const items = useMemo(() => normalizeChoices(config4.choices), [config4.choices]);
|
303821
303146
|
const bounds = useMemo(() => {
|
303822
303147
|
const first = items.findIndex(isSelectable);
|
303823
303148
|
const last = items.findLastIndex(isSelectable);
|
303824
303149
|
if (first === -1) {
|
303825
|
-
throw new
|
303150
|
+
throw new ValidationError("[select prompt] No selectable choices. All choices are disabled.");
|
303826
303151
|
}
|
303827
303152
|
return { first, last };
|
303828
303153
|
}, [items]);
|
@@ -303831,24 +303156,24 @@ var esm_default3 = createPrompt2((config4, done) => {
|
|
303831
303156
|
return -1;
|
303832
303157
|
return items.findIndex((item) => isSelectable(item) && item.value === config4.default);
|
303833
303158
|
}, [config4.default, items]);
|
303834
|
-
const [active, setActive] =
|
303159
|
+
const [active, setActive] = useState(defaultItemIndex === -1 ? bounds.first : defaultItemIndex);
|
303835
303160
|
const selectedChoice = items[active];
|
303836
|
-
|
303161
|
+
useKeypress((key2, rl) => {
|
303837
303162
|
clearTimeout(searchTimeoutRef.current);
|
303838
|
-
if (
|
303163
|
+
if (isEnterKey(key2)) {
|
303839
303164
|
setStatus("done");
|
303840
303165
|
done(selectedChoice.value);
|
303841
|
-
} else if (isUpKey(
|
303166
|
+
} else if (isUpKey(key2) || isDownKey(key2)) {
|
303842
303167
|
rl.clearLine(0);
|
303843
|
-
if (loop || isUpKey(
|
303844
|
-
const offset = isUpKey(
|
303168
|
+
if (loop || isUpKey(key2) && active !== bounds.first || isDownKey(key2) && active !== bounds.last) {
|
303169
|
+
const offset = isUpKey(key2) ? -1 : 1;
|
303845
303170
|
let next = active;
|
303846
303171
|
do {
|
303847
303172
|
next = (next + offset + items.length) % items.length;
|
303848
303173
|
} while (!isSelectable(items[next]));
|
303849
303174
|
setActive(next);
|
303850
303175
|
}
|
303851
|
-
} else if (isNumberKey(
|
303176
|
+
} else if (isNumberKey(key2) && !Number.isNaN(Number(rl.line))) {
|
303852
303177
|
const position = Number(rl.line) - 1;
|
303853
303178
|
const item = items[position];
|
303854
303179
|
if (item != null && isSelectable(item)) {
|
@@ -303857,7 +303182,7 @@ var esm_default3 = createPrompt2((config4, done) => {
|
|
303857
303182
|
searchTimeoutRef.current = setTimeout(() => {
|
303858
303183
|
rl.clearLine(0);
|
303859
303184
|
}, 700);
|
303860
|
-
} else if (
|
303185
|
+
} else if (isBackspaceKey(key2)) {
|
303861
303186
|
rl.clearLine(0);
|
303862
303187
|
} else {
|
303863
303188
|
const searchTerm = rl.line.toLowerCase();
|
@@ -303874,7 +303199,7 @@ var esm_default3 = createPrompt2((config4, done) => {
|
|
303874
303199
|
}, 700);
|
303875
303200
|
}
|
303876
303201
|
});
|
303877
|
-
|
303202
|
+
useEffect(() => () => {
|
303878
303203
|
clearTimeout(searchTimeoutRef.current);
|
303879
303204
|
}, []);
|
303880
303205
|
const message = theme.style.message(config4.message, status);
|
@@ -303914,7 +303239,7 @@ ${theme.style.help(`(${config4.instructions?.pager ?? "Use arrow keys to reveal
|
|
303914
303239
|
const choiceDescription = selectedChoice.description ? `
|
303915
303240
|
${theme.style.description(selectedChoice.description)}` : ``;
|
303916
303241
|
return `${[prefix, message, helpTipTop].filter(Boolean).join(" ")}
|
303917
|
-
${page}${helpTipBottom}${choiceDescription}${
|
303242
|
+
${page}${helpTipBottom}${choiceDescription}${import_ansi_escapes2.default.cursorHide}`;
|
303918
303243
|
});
|
303919
303244
|
|
303920
303245
|
// src/prompts/smart-contract-set/subgraph.prompt.ts
|
@@ -305495,14 +304820,14 @@ function includesArgs(parameters) {
|
|
305495
304820
|
});
|
305496
304821
|
}
|
305497
304822
|
if (typeof args === "object" && !Array.isArray(args) && typeof matchArgs === "object" && !Array.isArray(matchArgs))
|
305498
|
-
return Object.entries(matchArgs).every(([
|
304823
|
+
return Object.entries(matchArgs).every(([key2, value4]) => {
|
305499
304824
|
if (value4 === null || value4 === undefined)
|
305500
304825
|
return true;
|
305501
|
-
const input = inputs.find((input2) => input2.name ===
|
304826
|
+
const input = inputs.find((input2) => input2.name === key2);
|
305502
304827
|
if (!input)
|
305503
304828
|
return false;
|
305504
304829
|
const value_ = Array.isArray(value4) ? value4 : [value4];
|
305505
|
-
return value_.some((value5) => isEqual(input, value5, args[
|
304830
|
+
return value_.some((value5) => isEqual(input, value5, args[key2]));
|
305506
304831
|
});
|
305507
304832
|
return false;
|
305508
304833
|
}
|
@@ -305701,13 +305026,13 @@ function observe(observerId, callbacks, fn) {
|
|
305701
305026
|
if (listeners && listeners.length > 0)
|
305702
305027
|
return unwatch;
|
305703
305028
|
const emit = {};
|
305704
|
-
for (const
|
305705
|
-
emit[
|
305029
|
+
for (const key2 in callbacks) {
|
305030
|
+
emit[key2] = (...args) => {
|
305706
305031
|
const listeners2 = getListeners();
|
305707
305032
|
if (listeners2.length === 0)
|
305708
305033
|
return;
|
305709
305034
|
for (const listener of listeners2)
|
305710
|
-
listener.fns[
|
305035
|
+
listener.fns[key2]?.(...args);
|
305711
305036
|
};
|
305712
305037
|
}
|
305713
305038
|
const cleanup = fn(emit);
|
@@ -306046,7 +305371,7 @@ function uid(length = 11) {
|
|
306046
305371
|
|
306047
305372
|
// ../../node_modules/viem/_esm/clients/createClient.js
|
306048
305373
|
function createClient(parameters) {
|
306049
|
-
const { batch, chain, ccipRead, key:
|
305374
|
+
const { batch, chain, ccipRead, key: key2 = "base", name: name3 = "Base Client", type: type4 = "base" } = parameters;
|
306050
305375
|
const blockTime = chain?.blockTime ?? 12000;
|
306051
305376
|
const defaultPollingInterval = Math.min(Math.max(Math.floor(blockTime / 2), 500), 4000);
|
306052
305377
|
const pollingInterval = parameters.pollingInterval ?? defaultPollingInterval;
|
@@ -306063,7 +305388,7 @@ function createClient(parameters) {
|
|
306063
305388
|
cacheTime,
|
306064
305389
|
ccipRead,
|
306065
305390
|
chain,
|
306066
|
-
key:
|
305391
|
+
key: key2,
|
306067
305392
|
name: name3,
|
306068
305393
|
pollingInterval,
|
306069
305394
|
request: request2,
|
@@ -306074,8 +305399,8 @@ function createClient(parameters) {
|
|
306074
305399
|
function extend4(base2) {
|
306075
305400
|
return (extendFn) => {
|
306076
305401
|
const extended = extendFn(base2);
|
306077
|
-
for (const
|
306078
|
-
delete extended[
|
305402
|
+
for (const key3 in client)
|
305403
|
+
delete extended[key3];
|
306079
305404
|
const combined = { ...base2, ...extended };
|
306080
305405
|
return Object.assign(combined, { extend: extend4(combined) });
|
306081
305406
|
};
|
@@ -306255,11 +305580,11 @@ function shouldRetry(error44) {
|
|
306255
305580
|
}
|
306256
305581
|
|
306257
305582
|
// ../../node_modules/viem/_esm/clients/transports/createTransport.js
|
306258
|
-
function createTransport({ key:
|
305583
|
+
function createTransport({ key: key2, methods, name: name3, request: request2, retryCount = 3, retryDelay = 150, timeout, type: type4 }, value4) {
|
306259
305584
|
const uid2 = uid();
|
306260
305585
|
return {
|
306261
305586
|
config: {
|
306262
|
-
key:
|
305587
|
+
key: key2,
|
306263
305588
|
methods,
|
306264
305589
|
name: name3,
|
306265
305590
|
request: request2,
|
@@ -306416,7 +305741,7 @@ function getHttpRpcClient(url4, options = {}) {
|
|
306416
305741
|
|
306417
305742
|
// ../../node_modules/viem/_esm/clients/transports/http.js
|
306418
305743
|
function http(url4, config4 = {}) {
|
306419
|
-
const { batch, fetchOptions, key:
|
305744
|
+
const { batch, fetchOptions, key: key2 = "http", methods, name: name3 = "HTTP JSON-RPC", onFetchRequest, onFetchResponse, retryDelay, raw } = config4;
|
306420
305745
|
return ({ chain, retryCount: retryCount_, timeout: timeout_ }) => {
|
306421
305746
|
const { batchSize = 1000, wait: wait2 = 0 } = typeof batch === "object" ? batch : {};
|
306422
305747
|
const retryCount = config4.retryCount ?? retryCount_;
|
@@ -306431,7 +305756,7 @@ function http(url4, config4 = {}) {
|
|
306431
305756
|
timeout
|
306432
305757
|
});
|
306433
305758
|
return createTransport({
|
306434
|
-
key:
|
305759
|
+
key: key2,
|
306435
305760
|
methods,
|
306436
305761
|
name: name3,
|
306437
305762
|
async request({ method, params }) {
|
@@ -306882,7 +306207,7 @@ init_getChainContractAddress();
|
|
306882
306207
|
init_toHex();
|
306883
306208
|
init_localBatchGatewayRequest();
|
306884
306209
|
async function getEnsText(client, parameters) {
|
306885
|
-
const { blockNumber, blockTag, key:
|
306210
|
+
const { blockNumber, blockTag, key: key2, name: name3, gatewayUrls, strict } = parameters;
|
306886
306211
|
const { chain } = client;
|
306887
306212
|
const universalResolverAddress = (() => {
|
306888
306213
|
if (parameters.universalResolverAddress)
|
@@ -306908,7 +306233,7 @@ async function getEnsText(client, parameters) {
|
|
306908
306233
|
encodeFunctionData({
|
306909
306234
|
abi: textResolverAbi,
|
306910
306235
|
functionName: "text",
|
306911
|
-
args: [namehash(name3),
|
306236
|
+
args: [namehash(name3), key2]
|
306912
306237
|
}),
|
306913
306238
|
gatewayUrls ?? [localBatchGatewayUrl]
|
306914
306239
|
],
|
@@ -307931,16 +307256,16 @@ class LruMap2 extends Map {
|
|
307931
307256
|
});
|
307932
307257
|
this.maxSize = size5;
|
307933
307258
|
}
|
307934
|
-
get(
|
307935
|
-
const value4 = super.get(
|
307936
|
-
if (super.has(
|
307937
|
-
this.delete(
|
307938
|
-
super.set(
|
307259
|
+
get(key2) {
|
307260
|
+
const value4 = super.get(key2);
|
307261
|
+
if (super.has(key2) && value4 !== undefined) {
|
307262
|
+
this.delete(key2);
|
307263
|
+
super.set(key2, value4);
|
307939
307264
|
}
|
307940
307265
|
return value4;
|
307941
307266
|
}
|
307942
|
-
set(
|
307943
|
-
super.set(
|
307267
|
+
set(key2, value4) {
|
307268
|
+
super.set(key2, value4);
|
307944
307269
|
if (this.maxSize && this.size > this.maxSize) {
|
307945
307270
|
const firstKey = this.keys().next().value;
|
307946
307271
|
if (firstKey)
|
@@ -309783,10 +309108,10 @@ function publicActions(client) {
|
|
309783
309108
|
|
309784
309109
|
// ../../node_modules/viem/_esm/clients/createPublicClient.js
|
309785
309110
|
function createPublicClient(parameters) {
|
309786
|
-
const { key:
|
309111
|
+
const { key: key2 = "public", name: name3 = "Public Client" } = parameters;
|
309787
309112
|
const client = createClient({
|
309788
309113
|
...parameters,
|
309789
|
-
key:
|
309114
|
+
key: key2,
|
309790
309115
|
name: name3,
|
309791
309116
|
type: "publicClient"
|
309792
309117
|
});
|
@@ -309887,7 +309212,7 @@ __export4(util_exports3, {
|
|
309887
309212
|
getParsedType: () => getParsedType4,
|
309888
309213
|
getSizableOrigin: () => getSizableOrigin4,
|
309889
309214
|
isObject: () => isObject4,
|
309890
|
-
isPlainObject: () =>
|
309215
|
+
isPlainObject: () => isPlainObject6,
|
309891
309216
|
issue: () => issue4,
|
309892
309217
|
joinValues: () => joinValues4,
|
309893
309218
|
jsonStringifyReplacer: () => jsonStringifyReplacer4,
|
@@ -309959,19 +309284,19 @@ function floatSafeRemainder4(val, step) {
|
|
309959
309284
|
const stepInt = Number.parseInt(step.toFixed(decCount).replace(".", ""));
|
309960
309285
|
return valInt % stepInt / 10 ** decCount;
|
309961
309286
|
}
|
309962
|
-
function defineLazy4(object$1,
|
309287
|
+
function defineLazy4(object$1, key2, getter) {
|
309963
309288
|
const set$1 = false;
|
309964
|
-
Object.defineProperty(object$1,
|
309289
|
+
Object.defineProperty(object$1, key2, {
|
309965
309290
|
get() {
|
309966
309291
|
if (!set$1) {
|
309967
309292
|
const value4 = getter();
|
309968
|
-
object$1[
|
309293
|
+
object$1[key2] = value4;
|
309969
309294
|
return value4;
|
309970
309295
|
}
|
309971
309296
|
throw new Error("cached value already set");
|
309972
309297
|
},
|
309973
309298
|
set(v6) {
|
309974
|
-
Object.defineProperty(object$1,
|
309299
|
+
Object.defineProperty(object$1, key2, { value: v6 });
|
309975
309300
|
},
|
309976
309301
|
configurable: true
|
309977
309302
|
});
|
@@ -309987,11 +309312,11 @@ function assignProp4(target, prop, value4) {
|
|
309987
309312
|
function getElementAtPath4(obj, path7) {
|
309988
309313
|
if (!path7)
|
309989
309314
|
return obj;
|
309990
|
-
return path7.reduce((acc,
|
309315
|
+
return path7.reduce((acc, key2) => acc?.[key2], obj);
|
309991
309316
|
}
|
309992
309317
|
function promiseAllObject4(promisesObj) {
|
309993
309318
|
const keys = Object.keys(promisesObj);
|
309994
|
-
const promises = keys.map((
|
309319
|
+
const promises = keys.map((key2) => promisesObj[key2]);
|
309995
309320
|
return Promise.all(promises).then((results) => {
|
309996
309321
|
const resolvedObj = {};
|
309997
309322
|
for (let i6 = 0;i6 < keys.length; i6++) {
|
@@ -310023,7 +309348,7 @@ var allowsEval4 = cached4(() => {
|
|
310023
309348
|
return false;
|
310024
309349
|
}
|
310025
309350
|
});
|
310026
|
-
function
|
309351
|
+
function isPlainObject6(o8) {
|
310027
309352
|
if (isObject4(o8) === false)
|
310028
309353
|
return false;
|
310029
309354
|
const ctor = o8.constructor;
|
@@ -310039,8 +309364,8 @@ function isPlainObject7(o8) {
|
|
310039
309364
|
}
|
310040
309365
|
function numKeys4(data) {
|
310041
309366
|
let keyCount = 0;
|
310042
|
-
for (const
|
310043
|
-
if (Object.prototype.hasOwnProperty.call(data,
|
309367
|
+
for (const key2 in data) {
|
309368
|
+
if (Object.prototype.hasOwnProperty.call(data, key2)) {
|
310044
309369
|
keyCount++;
|
310045
309370
|
}
|
310046
309371
|
}
|
@@ -310190,13 +309515,13 @@ var BIGINT_FORMAT_RANGES4 = {
|
|
310190
309515
|
function pick4(schema, mask) {
|
310191
309516
|
const newShape = {};
|
310192
309517
|
const currDef = schema._zod.def;
|
310193
|
-
for (const
|
310194
|
-
if (!(
|
310195
|
-
throw new Error(`Unrecognized key: "${
|
309518
|
+
for (const key2 in mask) {
|
309519
|
+
if (!(key2 in currDef.shape)) {
|
309520
|
+
throw new Error(`Unrecognized key: "${key2}"`);
|
310196
309521
|
}
|
310197
|
-
if (!mask[
|
309522
|
+
if (!mask[key2])
|
310198
309523
|
continue;
|
310199
|
-
newShape[
|
309524
|
+
newShape[key2] = currDef.shape[key2];
|
310200
309525
|
}
|
310201
309526
|
return clone4(schema, {
|
310202
309527
|
...schema._zod.def,
|
@@ -310207,13 +309532,13 @@ function pick4(schema, mask) {
|
|
310207
309532
|
function omit4(schema, mask) {
|
310208
309533
|
const newShape = { ...schema._zod.def.shape };
|
310209
309534
|
const currDef = schema._zod.def;
|
310210
|
-
for (const
|
310211
|
-
if (!(
|
310212
|
-
throw new Error(`Unrecognized key: "${
|
309535
|
+
for (const key2 in mask) {
|
309536
|
+
if (!(key2 in currDef.shape)) {
|
309537
|
+
throw new Error(`Unrecognized key: "${key2}"`);
|
310213
309538
|
}
|
310214
|
-
if (!mask[
|
309539
|
+
if (!mask[key2])
|
310215
309540
|
continue;
|
310216
|
-
delete newShape[
|
309541
|
+
delete newShape[key2];
|
310217
309542
|
}
|
310218
309543
|
return clone4(schema, {
|
310219
309544
|
...schema._zod.def,
|
@@ -310255,23 +309580,23 @@ function partial4(Class$1, schema, mask) {
|
|
310255
309580
|
const oldShape = schema._zod.def.shape;
|
310256
309581
|
const shape = { ...oldShape };
|
310257
309582
|
if (mask) {
|
310258
|
-
for (const
|
310259
|
-
if (!(
|
310260
|
-
throw new Error(`Unrecognized key: "${
|
309583
|
+
for (const key2 in mask) {
|
309584
|
+
if (!(key2 in oldShape)) {
|
309585
|
+
throw new Error(`Unrecognized key: "${key2}"`);
|
310261
309586
|
}
|
310262
|
-
if (!mask[
|
309587
|
+
if (!mask[key2])
|
310263
309588
|
continue;
|
310264
|
-
shape[
|
309589
|
+
shape[key2] = Class$1 ? new Class$1({
|
310265
309590
|
type: "optional",
|
310266
|
-
innerType: oldShape[
|
310267
|
-
}) : oldShape[
|
309591
|
+
innerType: oldShape[key2]
|
309592
|
+
}) : oldShape[key2];
|
310268
309593
|
}
|
310269
309594
|
} else {
|
310270
|
-
for (const
|
310271
|
-
shape[
|
309595
|
+
for (const key2 in oldShape) {
|
309596
|
+
shape[key2] = Class$1 ? new Class$1({
|
310272
309597
|
type: "optional",
|
310273
|
-
innerType: oldShape[
|
310274
|
-
}) : oldShape[
|
309598
|
+
innerType: oldShape[key2]
|
309599
|
+
}) : oldShape[key2];
|
310275
309600
|
}
|
310276
309601
|
}
|
310277
309602
|
return clone4(schema, {
|
@@ -310284,22 +309609,22 @@ function required4(Class$1, schema, mask) {
|
|
310284
309609
|
const oldShape = schema._zod.def.shape;
|
310285
309610
|
const shape = { ...oldShape };
|
310286
309611
|
if (mask) {
|
310287
|
-
for (const
|
310288
|
-
if (!(
|
310289
|
-
throw new Error(`Unrecognized key: "${
|
309612
|
+
for (const key2 in mask) {
|
309613
|
+
if (!(key2 in shape)) {
|
309614
|
+
throw new Error(`Unrecognized key: "${key2}"`);
|
310290
309615
|
}
|
310291
|
-
if (!mask[
|
309616
|
+
if (!mask[key2])
|
310292
309617
|
continue;
|
310293
|
-
shape[
|
309618
|
+
shape[key2] = new Class$1({
|
310294
309619
|
type: "nonoptional",
|
310295
|
-
innerType: oldShape[
|
309620
|
+
innerType: oldShape[key2]
|
310296
309621
|
});
|
310297
309622
|
}
|
310298
309623
|
} else {
|
310299
|
-
for (const
|
310300
|
-
shape[
|
309624
|
+
for (const key2 in oldShape) {
|
309625
|
+
shape[key2] = new Class$1({
|
310301
309626
|
type: "nonoptional",
|
310302
|
-
innerType: oldShape[
|
309627
|
+
innerType: oldShape[key2]
|
310303
309628
|
});
|
310304
309629
|
}
|
310305
309630
|
}
|
@@ -311879,28 +311204,28 @@ var $ZodArray4 = /* @__PURE__ */ $constructor4("$ZodArray", (inst, def) => {
|
|
311879
311204
|
return payload;
|
311880
311205
|
};
|
311881
311206
|
});
|
311882
|
-
function handleObjectResult4(result, final,
|
311207
|
+
function handleObjectResult4(result, final, key2) {
|
311883
311208
|
if (result.issues.length) {
|
311884
|
-
final.issues.push(...prefixIssues4(
|
311209
|
+
final.issues.push(...prefixIssues4(key2, result.issues));
|
311885
311210
|
}
|
311886
|
-
final.value[
|
311211
|
+
final.value[key2] = result.value;
|
311887
311212
|
}
|
311888
|
-
function handleOptionalObjectResult4(result, final,
|
311213
|
+
function handleOptionalObjectResult4(result, final, key2, input) {
|
311889
311214
|
if (result.issues.length) {
|
311890
|
-
if (input[
|
311891
|
-
if (
|
311892
|
-
final.value[
|
311215
|
+
if (input[key2] === undefined) {
|
311216
|
+
if (key2 in input) {
|
311217
|
+
final.value[key2] = undefined;
|
311893
311218
|
} else {
|
311894
|
-
final.value[
|
311219
|
+
final.value[key2] = result.value;
|
311895
311220
|
}
|
311896
311221
|
} else {
|
311897
|
-
final.issues.push(...prefixIssues4(
|
311222
|
+
final.issues.push(...prefixIssues4(key2, result.issues));
|
311898
311223
|
}
|
311899
311224
|
} else if (result.value === undefined) {
|
311900
|
-
if (
|
311901
|
-
final.value[
|
311225
|
+
if (key2 in input)
|
311226
|
+
final.value[key2] = undefined;
|
311902
311227
|
} else {
|
311903
|
-
final.value[
|
311228
|
+
final.value[key2] = result.value;
|
311904
311229
|
}
|
311905
311230
|
}
|
311906
311231
|
var $ZodObject4 = /* @__PURE__ */ $constructor4("$ZodObject", (inst, def) => {
|
@@ -311924,12 +311249,12 @@ var $ZodObject4 = /* @__PURE__ */ $constructor4("$ZodObject", (inst, def) => {
|
|
311924
311249
|
defineLazy4(inst._zod, "propValues", () => {
|
311925
311250
|
const shape = def.shape;
|
311926
311251
|
const propValues = {};
|
311927
|
-
for (const
|
311928
|
-
const field2 = shape[
|
311252
|
+
for (const key2 in shape) {
|
311253
|
+
const field2 = shape[key2]._zod;
|
311929
311254
|
if (field2.values) {
|
311930
|
-
propValues[
|
311255
|
+
propValues[key2] ?? (propValues[key2] = new Set);
|
311931
311256
|
for (const v6 of field2.values)
|
311932
|
-
propValues[
|
311257
|
+
propValues[key2].add(v6);
|
311933
311258
|
}
|
311934
311259
|
}
|
311935
311260
|
return propValues;
|
@@ -311941,21 +311266,21 @@ var $ZodObject4 = /* @__PURE__ */ $constructor4("$ZodObject", (inst, def) => {
|
|
311941
311266
|
"ctx"
|
311942
311267
|
]);
|
311943
311268
|
const { keys, optionalKeys: optionalKeys$1 } = _normalized.value;
|
311944
|
-
const parseStr = (
|
311945
|
-
const k5 = esc4(
|
311269
|
+
const parseStr = (key2) => {
|
311270
|
+
const k5 = esc4(key2);
|
311946
311271
|
return `shape[${k5}]._zod.run({ value: input[${k5}], issues: [] }, ctx)`;
|
311947
311272
|
};
|
311948
311273
|
doc2.write(`const input = payload.value;`);
|
311949
311274
|
const ids = Object.create(null);
|
311950
|
-
for (const
|
311951
|
-
ids[
|
311275
|
+
for (const key2 of keys) {
|
311276
|
+
ids[key2] = randomString4(15);
|
311952
311277
|
}
|
311953
311278
|
doc2.write(`const newResult = {}`);
|
311954
|
-
for (const
|
311955
|
-
if (optionalKeys$1.has(
|
311956
|
-
const id = ids[
|
311957
|
-
doc2.write(`const ${id} = ${parseStr(
|
311958
|
-
const k5 = esc4(
|
311279
|
+
for (const key2 of keys) {
|
311280
|
+
if (optionalKeys$1.has(key2)) {
|
311281
|
+
const id = ids[key2];
|
311282
|
+
doc2.write(`const ${id} = ${parseStr(key2)};`);
|
311283
|
+
const k5 = esc4(key2);
|
311959
311284
|
doc2.write(`
|
311960
311285
|
if (${id}.issues.length) {
|
311961
311286
|
if (input[${k5}] === undefined) {
|
@@ -311977,14 +311302,14 @@ var $ZodObject4 = /* @__PURE__ */ $constructor4("$ZodObject", (inst, def) => {
|
|
311977
311302
|
}
|
311978
311303
|
`);
|
311979
311304
|
} else {
|
311980
|
-
const id = ids[
|
311981
|
-
doc2.write(`const ${id} = ${parseStr(
|
311305
|
+
const id = ids[key2];
|
311306
|
+
doc2.write(`const ${id} = ${parseStr(key2)};`);
|
311982
311307
|
doc2.write(`
|
311983
311308
|
if (${id}.issues.length) payload.issues = payload.issues.concat(${id}.issues.map(iss => ({
|
311984
311309
|
...iss,
|
311985
|
-
path: iss.path ? [${esc4(
|
311310
|
+
path: iss.path ? [${esc4(key2)}, ...iss.path] : [${esc4(key2)}]
|
311986
311311
|
})));`);
|
311987
|
-
doc2.write(`newResult[${esc4(
|
311312
|
+
doc2.write(`newResult[${esc4(key2)}] = ${id}.value`);
|
311988
311313
|
}
|
311989
311314
|
}
|
311990
311315
|
doc2.write(`payload.value = newResult;`);
|
@@ -312019,20 +311344,20 @@ var $ZodObject4 = /* @__PURE__ */ $constructor4("$ZodObject", (inst, def) => {
|
|
312019
311344
|
} else {
|
312020
311345
|
payload.value = {};
|
312021
311346
|
const shape = value4.shape;
|
312022
|
-
for (const
|
312023
|
-
const el = shape[
|
311347
|
+
for (const key2 of value4.keys) {
|
311348
|
+
const el = shape[key2];
|
312024
311349
|
const r6 = el._zod.run({
|
312025
|
-
value: input[
|
311350
|
+
value: input[key2],
|
312026
311351
|
issues: []
|
312027
311352
|
}, ctx);
|
312028
311353
|
const isOptional = el._zod.optin === "optional" && el._zod.optout === "optional";
|
312029
311354
|
if (r6 instanceof Promise) {
|
312030
|
-
proms.push(r6.then((r$1) => isOptional ? handleOptionalObjectResult4(r$1, payload,
|
311355
|
+
proms.push(r6.then((r$1) => isOptional ? handleOptionalObjectResult4(r$1, payload, key2, input) : handleObjectResult4(r$1, payload, key2)));
|
312031
311356
|
} else {
|
312032
311357
|
if (isOptional) {
|
312033
|
-
handleOptionalObjectResult4(r6, payload,
|
311358
|
+
handleOptionalObjectResult4(r6, payload, key2, input);
|
312034
311359
|
} else {
|
312035
|
-
handleObjectResult4(r6, payload,
|
311360
|
+
handleObjectResult4(r6, payload, key2);
|
312036
311361
|
}
|
312037
311362
|
}
|
312038
311363
|
}
|
@@ -312044,21 +311369,21 @@ var $ZodObject4 = /* @__PURE__ */ $constructor4("$ZodObject", (inst, def) => {
|
|
312044
311369
|
const keySet = value4.keySet;
|
312045
311370
|
const _catchall = catchall._zod;
|
312046
311371
|
const t8 = _catchall.def.type;
|
312047
|
-
for (const
|
312048
|
-
if (keySet.has(
|
311372
|
+
for (const key2 of Object.keys(input)) {
|
311373
|
+
if (keySet.has(key2))
|
312049
311374
|
continue;
|
312050
311375
|
if (t8 === "never") {
|
312051
|
-
unrecognized.push(
|
311376
|
+
unrecognized.push(key2);
|
312052
311377
|
continue;
|
312053
311378
|
}
|
312054
311379
|
const r6 = _catchall.run({
|
312055
|
-
value: input[
|
311380
|
+
value: input[key2],
|
312056
311381
|
issues: []
|
312057
311382
|
}, ctx);
|
312058
311383
|
if (r6 instanceof Promise) {
|
312059
|
-
proms.push(r6.then((r$1) => handleObjectResult4(r$1, payload,
|
311384
|
+
proms.push(r6.then((r$1) => handleObjectResult4(r$1, payload, key2)));
|
312060
311385
|
} else {
|
312061
|
-
handleObjectResult4(r6, payload,
|
311386
|
+
handleObjectResult4(r6, payload, key2);
|
312062
311387
|
}
|
312063
311388
|
}
|
312064
311389
|
if (unrecognized.length) {
|
@@ -312228,22 +311553,22 @@ function mergeValues4(a7, b4) {
|
|
312228
311553
|
data: a7
|
312229
311554
|
};
|
312230
311555
|
}
|
312231
|
-
if (
|
311556
|
+
if (isPlainObject6(a7) && isPlainObject6(b4)) {
|
312232
311557
|
const bKeys = Object.keys(b4);
|
312233
|
-
const sharedKeys = Object.keys(a7).filter((
|
311558
|
+
const sharedKeys = Object.keys(a7).filter((key2) => bKeys.indexOf(key2) !== -1);
|
312234
311559
|
const newObj = {
|
312235
311560
|
...a7,
|
312236
311561
|
...b4
|
312237
311562
|
};
|
312238
|
-
for (const
|
312239
|
-
const sharedValue = mergeValues4(a7[
|
311563
|
+
for (const key2 of sharedKeys) {
|
311564
|
+
const sharedValue = mergeValues4(a7[key2], b4[key2]);
|
312240
311565
|
if (!sharedValue.valid) {
|
312241
311566
|
return {
|
312242
311567
|
valid: false,
|
312243
|
-
mergeErrorPath: [
|
311568
|
+
mergeErrorPath: [key2, ...sharedValue.mergeErrorPath]
|
312244
311569
|
};
|
312245
311570
|
}
|
312246
|
-
newObj[
|
311571
|
+
newObj[key2] = sharedValue.data;
|
312247
311572
|
}
|
312248
311573
|
return {
|
312249
311574
|
valid: true,
|
@@ -312379,7 +311704,7 @@ var $ZodRecord4 = /* @__PURE__ */ $constructor4("$ZodRecord", (inst, def) => {
|
|
312379
311704
|
$ZodType4.init(inst, def);
|
312380
311705
|
inst._zod.parse = (payload, ctx) => {
|
312381
311706
|
const input = payload.value;
|
312382
|
-
if (!
|
311707
|
+
if (!isPlainObject6(input)) {
|
312383
311708
|
payload.issues.push({
|
312384
311709
|
expected: "record",
|
312385
311710
|
code: "invalid_type",
|
@@ -312392,32 +311717,32 @@ var $ZodRecord4 = /* @__PURE__ */ $constructor4("$ZodRecord", (inst, def) => {
|
|
312392
311717
|
if (def.keyType._zod.values) {
|
312393
311718
|
const values = def.keyType._zod.values;
|
312394
311719
|
payload.value = {};
|
312395
|
-
for (const
|
312396
|
-
if (typeof
|
311720
|
+
for (const key2 of values) {
|
311721
|
+
if (typeof key2 === "string" || typeof key2 === "number" || typeof key2 === "symbol") {
|
312397
311722
|
const result = def.valueType._zod.run({
|
312398
|
-
value: input[
|
311723
|
+
value: input[key2],
|
312399
311724
|
issues: []
|
312400
311725
|
}, ctx);
|
312401
311726
|
if (result instanceof Promise) {
|
312402
311727
|
proms.push(result.then((result$1) => {
|
312403
311728
|
if (result$1.issues.length) {
|
312404
|
-
payload.issues.push(...prefixIssues4(
|
311729
|
+
payload.issues.push(...prefixIssues4(key2, result$1.issues));
|
312405
311730
|
}
|
312406
|
-
payload.value[
|
311731
|
+
payload.value[key2] = result$1.value;
|
312407
311732
|
}));
|
312408
311733
|
} else {
|
312409
311734
|
if (result.issues.length) {
|
312410
|
-
payload.issues.push(...prefixIssues4(
|
311735
|
+
payload.issues.push(...prefixIssues4(key2, result.issues));
|
312411
311736
|
}
|
312412
|
-
payload.value[
|
311737
|
+
payload.value[key2] = result.value;
|
312413
311738
|
}
|
312414
311739
|
}
|
312415
311740
|
}
|
312416
311741
|
let unrecognized;
|
312417
|
-
for (const
|
312418
|
-
if (!values.has(
|
311742
|
+
for (const key2 in input) {
|
311743
|
+
if (!values.has(key2)) {
|
312419
311744
|
unrecognized = unrecognized ?? [];
|
312420
|
-
unrecognized.push(
|
311745
|
+
unrecognized.push(key2);
|
312421
311746
|
}
|
312422
311747
|
}
|
312423
311748
|
if (unrecognized && unrecognized.length > 0) {
|
@@ -312430,11 +311755,11 @@ var $ZodRecord4 = /* @__PURE__ */ $constructor4("$ZodRecord", (inst, def) => {
|
|
312430
311755
|
}
|
312431
311756
|
} else {
|
312432
311757
|
payload.value = {};
|
312433
|
-
for (const
|
312434
|
-
if (
|
311758
|
+
for (const key2 of Reflect.ownKeys(input)) {
|
311759
|
+
if (key2 === "__proto__")
|
312435
311760
|
continue;
|
312436
311761
|
const keyResult = def.keyType._zod.run({
|
312437
|
-
value:
|
311762
|
+
value: key2,
|
312438
311763
|
issues: []
|
312439
311764
|
}, ctx);
|
312440
311765
|
if (keyResult instanceof Promise) {
|
@@ -312445,27 +311770,27 @@ var $ZodRecord4 = /* @__PURE__ */ $constructor4("$ZodRecord", (inst, def) => {
|
|
312445
311770
|
origin: "record",
|
312446
311771
|
code: "invalid_key",
|
312447
311772
|
issues: keyResult.issues.map((iss) => finalizeIssue4(iss, ctx, config4())),
|
312448
|
-
input:
|
312449
|
-
path: [
|
311773
|
+
input: key2,
|
311774
|
+
path: [key2],
|
312450
311775
|
inst
|
312451
311776
|
});
|
312452
311777
|
payload.value[keyResult.value] = keyResult.value;
|
312453
311778
|
continue;
|
312454
311779
|
}
|
312455
311780
|
const result = def.valueType._zod.run({
|
312456
|
-
value: input[
|
311781
|
+
value: input[key2],
|
312457
311782
|
issues: []
|
312458
311783
|
}, ctx);
|
312459
311784
|
if (result instanceof Promise) {
|
312460
311785
|
proms.push(result.then((result$1) => {
|
312461
311786
|
if (result$1.issues.length) {
|
312462
|
-
payload.issues.push(...prefixIssues4(
|
311787
|
+
payload.issues.push(...prefixIssues4(key2, result$1.issues));
|
312463
311788
|
}
|
312464
311789
|
payload.value[keyResult.value] = result$1.value;
|
312465
311790
|
}));
|
312466
311791
|
} else {
|
312467
311792
|
if (result.issues.length) {
|
312468
|
-
payload.issues.push(...prefixIssues4(
|
311793
|
+
payload.issues.push(...prefixIssues4(key2, result.issues));
|
312469
311794
|
}
|
312470
311795
|
payload.value[keyResult.value] = result.value;
|
312471
311796
|
}
|
@@ -312492,9 +311817,9 @@ var $ZodMap4 = /* @__PURE__ */ $constructor4("$ZodMap", (inst, def) => {
|
|
312492
311817
|
}
|
312493
311818
|
const proms = [];
|
312494
311819
|
payload.value = new Map;
|
312495
|
-
for (const [
|
311820
|
+
for (const [key2, value4] of input) {
|
312496
311821
|
const keyResult = def.keyType._zod.run({
|
312497
|
-
value:
|
311822
|
+
value: key2,
|
312498
311823
|
issues: []
|
312499
311824
|
}, ctx);
|
312500
311825
|
const valueResult = def.valueType._zod.run({
|
@@ -312503,10 +311828,10 @@ var $ZodMap4 = /* @__PURE__ */ $constructor4("$ZodMap", (inst, def) => {
|
|
312503
311828
|
}, ctx);
|
312504
311829
|
if (keyResult instanceof Promise || valueResult instanceof Promise) {
|
312505
311830
|
proms.push(Promise.all([keyResult, valueResult]).then(([keyResult$1, valueResult$1]) => {
|
312506
|
-
handleMapResult4(keyResult$1, valueResult$1, payload,
|
311831
|
+
handleMapResult4(keyResult$1, valueResult$1, payload, key2, input, inst, ctx);
|
312507
311832
|
}));
|
312508
311833
|
} else {
|
312509
|
-
handleMapResult4(keyResult, valueResult, payload,
|
311834
|
+
handleMapResult4(keyResult, valueResult, payload, key2, input, inst, ctx);
|
312510
311835
|
}
|
312511
311836
|
}
|
312512
311837
|
if (proms.length)
|
@@ -312514,10 +311839,10 @@ var $ZodMap4 = /* @__PURE__ */ $constructor4("$ZodMap", (inst, def) => {
|
|
312514
311839
|
return payload;
|
312515
311840
|
};
|
312516
311841
|
});
|
312517
|
-
function handleMapResult4(keyResult, valueResult, final,
|
311842
|
+
function handleMapResult4(keyResult, valueResult, final, key2, input, inst, ctx) {
|
312518
311843
|
if (keyResult.issues.length) {
|
312519
|
-
if (propertyKeyTypes4.has(typeof
|
312520
|
-
final.issues.push(...prefixIssues4(
|
311844
|
+
if (propertyKeyTypes4.has(typeof key2)) {
|
311845
|
+
final.issues.push(...prefixIssues4(key2, keyResult.issues));
|
312521
311846
|
} else {
|
312522
311847
|
final.issues.push({
|
312523
311848
|
origin: "map",
|
@@ -312529,15 +311854,15 @@ function handleMapResult4(keyResult, valueResult, final, key3, input, inst, ctx)
|
|
312529
311854
|
}
|
312530
311855
|
}
|
312531
311856
|
if (valueResult.issues.length) {
|
312532
|
-
if (propertyKeyTypes4.has(typeof
|
312533
|
-
final.issues.push(...prefixIssues4(
|
311857
|
+
if (propertyKeyTypes4.has(typeof key2)) {
|
311858
|
+
final.issues.push(...prefixIssues4(key2, valueResult.issues));
|
312534
311859
|
} else {
|
312535
311860
|
final.issues.push({
|
312536
311861
|
origin: "map",
|
312537
311862
|
code: "invalid_element",
|
312538
311863
|
input,
|
312539
311864
|
inst,
|
312540
|
-
key:
|
311865
|
+
key: key2,
|
312541
311866
|
issues: valueResult.issues.map((iss) => finalizeIssue4(iss, ctx, config4()))
|
312542
311867
|
});
|
312543
311868
|
}
|
@@ -318859,19 +318184,19 @@ var JSONSchemaGenerator4 = class {
|
|
318859
318184
|
json$1.type = "object";
|
318860
318185
|
json$1.properties = {};
|
318861
318186
|
const shape = def.shape;
|
318862
|
-
for (const
|
318863
|
-
json$1.properties[
|
318187
|
+
for (const key2 in shape) {
|
318188
|
+
json$1.properties[key2] = this.process(shape[key2], {
|
318864
318189
|
...params,
|
318865
318190
|
path: [
|
318866
318191
|
...params.path,
|
318867
318192
|
"properties",
|
318868
|
-
|
318193
|
+
key2
|
318869
318194
|
]
|
318870
318195
|
});
|
318871
318196
|
}
|
318872
318197
|
const allKeys = new Set(Object.keys(shape));
|
318873
|
-
const requiredKeys = new Set([...allKeys].filter((
|
318874
|
-
const v6 = def.shape[
|
318198
|
+
const requiredKeys = new Set([...allKeys].filter((key2) => {
|
318199
|
+
const v6 = def.shape[key2]._zod;
|
318875
318200
|
if (this.io === "input") {
|
318876
318201
|
return v6.optin === undefined;
|
318877
318202
|
} else {
|
@@ -319223,8 +318548,8 @@ var JSONSchemaGenerator4 = class {
|
|
319223
318548
|
if (defId)
|
319224
318549
|
seen.defId = defId;
|
319225
318550
|
const schema$1 = seen.schema;
|
319226
|
-
for (const
|
319227
|
-
delete schema$1[
|
318551
|
+
for (const key2 in schema$1) {
|
318552
|
+
delete schema$1[key2];
|
319228
318553
|
}
|
319229
318554
|
schema$1.$ref = ref;
|
319230
318555
|
};
|
@@ -319335,8 +318660,8 @@ function toJSONSchema4(input, _params) {
|
|
319335
318660
|
defs
|
319336
318661
|
};
|
319337
318662
|
for (const entry of input._idmap.entries()) {
|
319338
|
-
const [
|
319339
|
-
schemas3[
|
318663
|
+
const [key2, schema] = entry;
|
318664
|
+
schemas3[key2] = gen$1.emit(schema, {
|
319340
318665
|
..._params,
|
319341
318666
|
external: external2
|
319342
318667
|
});
|
@@ -319381,8 +318706,8 @@ function isTransforming4(_schema, _ctx) {
|
|
319381
318706
|
return isTransforming4(def.element, ctx);
|
319382
318707
|
}
|
319383
318708
|
case "object": {
|
319384
|
-
for (const
|
319385
|
-
if (isTransforming4(def.shape[
|
318709
|
+
for (const key2 in def.shape) {
|
318710
|
+
if (isTransforming4(def.shape[key2], ctx))
|
319386
318711
|
return true;
|
319387
318712
|
}
|
319388
318713
|
return false;
|
@@ -321125,13 +320450,13 @@ var esm_default4 = createPrompt((config5, done) => {
|
|
321125
320450
|
const [value4, setValue] = useState("");
|
321126
320451
|
const theme = makeTheme(config5.theme);
|
321127
320452
|
const prefix = usePrefix({ status, theme });
|
321128
|
-
useKeypress((
|
321129
|
-
if (isEnterKey(
|
320453
|
+
useKeypress((key2, rl) => {
|
320454
|
+
if (isEnterKey(key2)) {
|
321130
320455
|
const answer = getBooleanValue(value4, config5.default);
|
321131
320456
|
setValue(transformer(answer));
|
321132
320457
|
setStatus("done");
|
321133
320458
|
done(answer);
|
321134
|
-
} else if (
|
320459
|
+
} else if (key2.name === "tab") {
|
321135
320460
|
const answer = boolToString(!getBooleanValue(value4, config5.default));
|
321136
320461
|
rl.clearLine(0);
|
321137
320462
|
rl.write(answer);
|
@@ -321151,476 +320476,20 @@ var esm_default4 = createPrompt((config5, done) => {
|
|
321151
320476
|
return `${prefix} ${message}${defaultValue} ${formattedValue}`;
|
321152
320477
|
});
|
321153
320478
|
|
321154
|
-
// ../../node_modules/@inquirer/password/node_modules/@inquirer/core/dist/esm/lib/key.js
|
321155
|
-
var isEnterKey3 = (key3) => key3.name === "enter" || key3.name === "return";
|
321156
|
-
// ../../node_modules/@inquirer/password/node_modules/@inquirer/core/dist/esm/lib/errors.js
|
321157
|
-
class AbortPromptError3 extends Error {
|
321158
|
-
name = "AbortPromptError";
|
321159
|
-
message = "Prompt was aborted";
|
321160
|
-
constructor(options) {
|
321161
|
-
super();
|
321162
|
-
this.cause = options?.cause;
|
321163
|
-
}
|
321164
|
-
}
|
321165
|
-
|
321166
|
-
class CancelPromptError3 extends Error {
|
321167
|
-
name = "CancelPromptError";
|
321168
|
-
message = "Prompt was canceled";
|
321169
|
-
}
|
321170
|
-
|
321171
|
-
class ExitPromptError3 extends Error {
|
321172
|
-
name = "ExitPromptError";
|
321173
|
-
}
|
321174
|
-
|
321175
|
-
class HookError3 extends Error {
|
321176
|
-
name = "HookError";
|
321177
|
-
}
|
321178
|
-
|
321179
|
-
class ValidationError3 extends Error {
|
321180
|
-
name = "ValidationError";
|
321181
|
-
}
|
321182
|
-
// ../../node_modules/@inquirer/password/node_modules/@inquirer/core/dist/esm/lib/use-state.js
|
321183
|
-
import { AsyncResource as AsyncResource8 } from "node:async_hooks";
|
321184
|
-
|
321185
|
-
// ../../node_modules/@inquirer/password/node_modules/@inquirer/core/dist/esm/lib/hook-engine.js
|
321186
|
-
import { AsyncLocalStorage as AsyncLocalStorage3, AsyncResource as AsyncResource7 } from "node:async_hooks";
|
321187
|
-
var hookStorage3 = new AsyncLocalStorage3;
|
321188
|
-
function createStore3(rl) {
|
321189
|
-
const store = {
|
321190
|
-
rl,
|
321191
|
-
hooks: [],
|
321192
|
-
hooksCleanup: [],
|
321193
|
-
hooksEffect: [],
|
321194
|
-
index: 0,
|
321195
|
-
handleChange() {}
|
321196
|
-
};
|
321197
|
-
return store;
|
321198
|
-
}
|
321199
|
-
function withHooks3(rl, cb) {
|
321200
|
-
const store = createStore3(rl);
|
321201
|
-
return hookStorage3.run(store, () => {
|
321202
|
-
function cycle(render) {
|
321203
|
-
store.handleChange = () => {
|
321204
|
-
store.index = 0;
|
321205
|
-
render();
|
321206
|
-
};
|
321207
|
-
store.handleChange();
|
321208
|
-
}
|
321209
|
-
return cb(cycle);
|
321210
|
-
});
|
321211
|
-
}
|
321212
|
-
function getStore3() {
|
321213
|
-
const store = hookStorage3.getStore();
|
321214
|
-
if (!store) {
|
321215
|
-
throw new HookError3("[Inquirer] Hook functions can only be called from within a prompt");
|
321216
|
-
}
|
321217
|
-
return store;
|
321218
|
-
}
|
321219
|
-
function readline5() {
|
321220
|
-
return getStore3().rl;
|
321221
|
-
}
|
321222
|
-
function withUpdates3(fn) {
|
321223
|
-
const wrapped = (...args) => {
|
321224
|
-
const store = getStore3();
|
321225
|
-
let shouldUpdate = false;
|
321226
|
-
const oldHandleChange = store.handleChange;
|
321227
|
-
store.handleChange = () => {
|
321228
|
-
shouldUpdate = true;
|
321229
|
-
};
|
321230
|
-
const returnValue = fn(...args);
|
321231
|
-
if (shouldUpdate) {
|
321232
|
-
oldHandleChange();
|
321233
|
-
}
|
321234
|
-
store.handleChange = oldHandleChange;
|
321235
|
-
return returnValue;
|
321236
|
-
};
|
321237
|
-
return AsyncResource7.bind(wrapped);
|
321238
|
-
}
|
321239
|
-
function withPointer3(cb) {
|
321240
|
-
const store = getStore3();
|
321241
|
-
const { index: index2 } = store;
|
321242
|
-
const pointer = {
|
321243
|
-
get() {
|
321244
|
-
return store.hooks[index2];
|
321245
|
-
},
|
321246
|
-
set(value4) {
|
321247
|
-
store.hooks[index2] = value4;
|
321248
|
-
},
|
321249
|
-
initialized: index2 in store.hooks
|
321250
|
-
};
|
321251
|
-
const returnValue = cb(pointer);
|
321252
|
-
store.index++;
|
321253
|
-
return returnValue;
|
321254
|
-
}
|
321255
|
-
function handleChange3() {
|
321256
|
-
getStore3().handleChange();
|
321257
|
-
}
|
321258
|
-
var effectScheduler3 = {
|
321259
|
-
queue(cb) {
|
321260
|
-
const store = getStore3();
|
321261
|
-
const { index: index2 } = store;
|
321262
|
-
store.hooksEffect.push(() => {
|
321263
|
-
store.hooksCleanup[index2]?.();
|
321264
|
-
const cleanFn = cb(readline5());
|
321265
|
-
if (cleanFn != null && typeof cleanFn !== "function") {
|
321266
|
-
throw new ValidationError3("useEffect return value must be a cleanup function or nothing.");
|
321267
|
-
}
|
321268
|
-
store.hooksCleanup[index2] = cleanFn;
|
321269
|
-
});
|
321270
|
-
},
|
321271
|
-
run() {
|
321272
|
-
const store = getStore3();
|
321273
|
-
withUpdates3(() => {
|
321274
|
-
store.hooksEffect.forEach((effect) => {
|
321275
|
-
effect();
|
321276
|
-
});
|
321277
|
-
store.hooksEffect.length = 0;
|
321278
|
-
})();
|
321279
|
-
},
|
321280
|
-
clearAll() {
|
321281
|
-
const store = getStore3();
|
321282
|
-
store.hooksCleanup.forEach((cleanFn) => {
|
321283
|
-
cleanFn?.();
|
321284
|
-
});
|
321285
|
-
store.hooksEffect.length = 0;
|
321286
|
-
store.hooksCleanup.length = 0;
|
321287
|
-
}
|
321288
|
-
};
|
321289
|
-
|
321290
|
-
// ../../node_modules/@inquirer/password/node_modules/@inquirer/core/dist/esm/lib/use-state.js
|
321291
|
-
function useState3(defaultValue) {
|
321292
|
-
return withPointer3((pointer) => {
|
321293
|
-
const setState = AsyncResource8.bind(function setState(newValue) {
|
321294
|
-
if (pointer.get() !== newValue) {
|
321295
|
-
pointer.set(newValue);
|
321296
|
-
handleChange3();
|
321297
|
-
}
|
321298
|
-
});
|
321299
|
-
if (pointer.initialized) {
|
321300
|
-
return [pointer.get(), setState];
|
321301
|
-
}
|
321302
|
-
const value4 = typeof defaultValue === "function" ? defaultValue() : defaultValue;
|
321303
|
-
pointer.set(value4);
|
321304
|
-
return [value4, setState];
|
321305
|
-
});
|
321306
|
-
}
|
321307
|
-
|
321308
|
-
// ../../node_modules/@inquirer/password/node_modules/@inquirer/core/dist/esm/lib/use-effect.js
|
321309
|
-
function useEffect3(cb, depArray) {
|
321310
|
-
withPointer3((pointer) => {
|
321311
|
-
const oldDeps = pointer.get();
|
321312
|
-
const hasChanged = !Array.isArray(oldDeps) || depArray.some((dep, i6) => !Object.is(dep, oldDeps[i6]));
|
321313
|
-
if (hasChanged) {
|
321314
|
-
effectScheduler3.queue(cb);
|
321315
|
-
}
|
321316
|
-
pointer.set(depArray);
|
321317
|
-
});
|
321318
|
-
}
|
321319
|
-
|
321320
|
-
// ../../node_modules/@inquirer/password/node_modules/@inquirer/core/dist/esm/lib/theme.js
|
321321
|
-
var import_yoctocolors_cjs5 = __toESM(require_yoctocolors_cjs(), 1);
|
321322
|
-
var defaultTheme3 = {
|
321323
|
-
prefix: {
|
321324
|
-
idle: import_yoctocolors_cjs5.default.blue("?"),
|
321325
|
-
done: import_yoctocolors_cjs5.default.green(esm_default.tick)
|
321326
|
-
},
|
321327
|
-
spinner: {
|
321328
|
-
interval: 80,
|
321329
|
-
frames: ["⠋", "⠙", "⠹", "⠸", "⠼", "⠴", "⠦", "⠧", "⠇", "⠏"].map((frame) => import_yoctocolors_cjs5.default.yellow(frame))
|
321330
|
-
},
|
321331
|
-
style: {
|
321332
|
-
answer: import_yoctocolors_cjs5.default.cyan,
|
321333
|
-
message: import_yoctocolors_cjs5.default.bold,
|
321334
|
-
error: (text2) => import_yoctocolors_cjs5.default.red(`> ${text2}`),
|
321335
|
-
defaultAnswer: (text2) => import_yoctocolors_cjs5.default.dim(`(${text2})`),
|
321336
|
-
help: import_yoctocolors_cjs5.default.dim,
|
321337
|
-
highlight: import_yoctocolors_cjs5.default.cyan,
|
321338
|
-
key: (text2) => import_yoctocolors_cjs5.default.cyan(import_yoctocolors_cjs5.default.bold(`<${text2}>`))
|
321339
|
-
}
|
321340
|
-
};
|
321341
|
-
|
321342
|
-
// ../../node_modules/@inquirer/password/node_modules/@inquirer/core/dist/esm/lib/make-theme.js
|
321343
|
-
function isPlainObject8(value4) {
|
321344
|
-
if (typeof value4 !== "object" || value4 === null)
|
321345
|
-
return false;
|
321346
|
-
let proto = value4;
|
321347
|
-
while (Object.getPrototypeOf(proto) !== null) {
|
321348
|
-
proto = Object.getPrototypeOf(proto);
|
321349
|
-
}
|
321350
|
-
return Object.getPrototypeOf(value4) === proto;
|
321351
|
-
}
|
321352
|
-
function deepMerge4(...objects) {
|
321353
|
-
const output = {};
|
321354
|
-
for (const obj of objects) {
|
321355
|
-
for (const [key3, value4] of Object.entries(obj)) {
|
321356
|
-
const prevValue = output[key3];
|
321357
|
-
output[key3] = isPlainObject8(prevValue) && isPlainObject8(value4) ? deepMerge4(prevValue, value4) : value4;
|
321358
|
-
}
|
321359
|
-
}
|
321360
|
-
return output;
|
321361
|
-
}
|
321362
|
-
function makeTheme3(...themes) {
|
321363
|
-
const themesToMerge = [
|
321364
|
-
defaultTheme3,
|
321365
|
-
...themes.filter((theme) => theme != null)
|
321366
|
-
];
|
321367
|
-
return deepMerge4(...themesToMerge);
|
321368
|
-
}
|
321369
|
-
|
321370
|
-
// ../../node_modules/@inquirer/password/node_modules/@inquirer/core/dist/esm/lib/use-prefix.js
|
321371
|
-
function usePrefix3({ status = "idle", theme }) {
|
321372
|
-
const [showLoader, setShowLoader] = useState3(false);
|
321373
|
-
const [tick, setTick] = useState3(0);
|
321374
|
-
const { prefix, spinner: spinner2 } = makeTheme3(theme);
|
321375
|
-
useEffect3(() => {
|
321376
|
-
if (status === "loading") {
|
321377
|
-
let tickInterval;
|
321378
|
-
let inc = -1;
|
321379
|
-
const delayTimeout = setTimeout(() => {
|
321380
|
-
setShowLoader(true);
|
321381
|
-
tickInterval = setInterval(() => {
|
321382
|
-
inc = inc + 1;
|
321383
|
-
setTick(inc % spinner2.frames.length);
|
321384
|
-
}, spinner2.interval);
|
321385
|
-
}, 300);
|
321386
|
-
return () => {
|
321387
|
-
clearTimeout(delayTimeout);
|
321388
|
-
clearInterval(tickInterval);
|
321389
|
-
};
|
321390
|
-
} else {
|
321391
|
-
setShowLoader(false);
|
321392
|
-
}
|
321393
|
-
}, [status]);
|
321394
|
-
if (showLoader) {
|
321395
|
-
return spinner2.frames[tick];
|
321396
|
-
}
|
321397
|
-
const iconName = status === "loading" ? "idle" : status;
|
321398
|
-
return typeof prefix === "string" ? prefix : prefix[iconName] ?? prefix["idle"];
|
321399
|
-
}
|
321400
|
-
// ../../node_modules/@inquirer/password/node_modules/@inquirer/core/dist/esm/lib/use-ref.js
|
321401
|
-
function useRef3(val) {
|
321402
|
-
return useState3({ current: val })[0];
|
321403
|
-
}
|
321404
|
-
|
321405
|
-
// ../../node_modules/@inquirer/password/node_modules/@inquirer/core/dist/esm/lib/use-keypress.js
|
321406
|
-
function useKeypress3(userHandler) {
|
321407
|
-
const signal = useRef3(userHandler);
|
321408
|
-
signal.current = userHandler;
|
321409
|
-
useEffect3((rl) => {
|
321410
|
-
let ignore = false;
|
321411
|
-
const handler = withUpdates3((_input, event) => {
|
321412
|
-
if (ignore)
|
321413
|
-
return;
|
321414
|
-
signal.current(event, rl);
|
321415
|
-
});
|
321416
|
-
rl.input.on("keypress", handler);
|
321417
|
-
return () => {
|
321418
|
-
ignore = true;
|
321419
|
-
rl.input.removeListener("keypress", handler);
|
321420
|
-
};
|
321421
|
-
}, []);
|
321422
|
-
}
|
321423
|
-
// ../../node_modules/@inquirer/password/node_modules/@inquirer/core/dist/esm/lib/utils.js
|
321424
|
-
var import_cli_width3 = __toESM(require_cli_width(), 1);
|
321425
|
-
var import_wrap_ansi3 = __toESM(require_wrap_ansi(), 1);
|
321426
|
-
function breakLines3(content, width) {
|
321427
|
-
return content.split(`
|
321428
|
-
`).flatMap((line) => import_wrap_ansi3.default(line, width, { trim: false, hard: true }).split(`
|
321429
|
-
`).map((str) => str.trimEnd())).join(`
|
321430
|
-
`);
|
321431
|
-
}
|
321432
|
-
function readlineWidth3() {
|
321433
|
-
return import_cli_width3.default({ defaultWidth: 80, output: readline5().output });
|
321434
|
-
}
|
321435
|
-
|
321436
|
-
// ../../node_modules/@inquirer/password/node_modules/@inquirer/core/dist/esm/lib/create-prompt.js
|
321437
|
-
var import_mute_stream3 = __toESM(require_lib(), 1);
|
321438
|
-
import * as readline6 from "node:readline";
|
321439
|
-
import { AsyncResource as AsyncResource9 } from "node:async_hooks";
|
321440
|
-
|
321441
|
-
// ../../node_modules/@inquirer/password/node_modules/@inquirer/core/dist/esm/lib/screen-manager.js
|
321442
|
-
var import_ansi_escapes4 = __toESM(require_ansi_escapes(), 1);
|
321443
|
-
import { stripVTControlCharacters as stripVTControlCharacters4 } from "node:util";
|
321444
|
-
var height3 = (content) => content.split(`
|
321445
|
-
`).length;
|
321446
|
-
var lastLine3 = (content) => content.split(`
|
321447
|
-
`).pop() ?? "";
|
321448
|
-
function cursorDown3(n6) {
|
321449
|
-
return n6 > 0 ? import_ansi_escapes4.default.cursorDown(n6) : "";
|
321450
|
-
}
|
321451
|
-
|
321452
|
-
class ScreenManager3 {
|
321453
|
-
height = 0;
|
321454
|
-
extraLinesUnderPrompt = 0;
|
321455
|
-
cursorPos;
|
321456
|
-
rl;
|
321457
|
-
constructor(rl) {
|
321458
|
-
this.rl = rl;
|
321459
|
-
this.cursorPos = rl.getCursorPos();
|
321460
|
-
}
|
321461
|
-
write(content) {
|
321462
|
-
this.rl.output.unmute();
|
321463
|
-
this.rl.output.write(content);
|
321464
|
-
this.rl.output.mute();
|
321465
|
-
}
|
321466
|
-
render(content, bottomContent = "") {
|
321467
|
-
const promptLine = lastLine3(content);
|
321468
|
-
const rawPromptLine = stripVTControlCharacters4(promptLine);
|
321469
|
-
let prompt = rawPromptLine;
|
321470
|
-
if (this.rl.line.length > 0) {
|
321471
|
-
prompt = prompt.slice(0, -this.rl.line.length);
|
321472
|
-
}
|
321473
|
-
this.rl.setPrompt(prompt);
|
321474
|
-
this.cursorPos = this.rl.getCursorPos();
|
321475
|
-
const width = readlineWidth3();
|
321476
|
-
content = breakLines3(content, width);
|
321477
|
-
bottomContent = breakLines3(bottomContent, width);
|
321478
|
-
if (rawPromptLine.length % width === 0) {
|
321479
|
-
content += `
|
321480
|
-
`;
|
321481
|
-
}
|
321482
|
-
let output = content + (bottomContent ? `
|
321483
|
-
` + bottomContent : "");
|
321484
|
-
const promptLineUpDiff = Math.floor(rawPromptLine.length / width) - this.cursorPos.rows;
|
321485
|
-
const bottomContentHeight = promptLineUpDiff + (bottomContent ? height3(bottomContent) : 0);
|
321486
|
-
if (bottomContentHeight > 0)
|
321487
|
-
output += import_ansi_escapes4.default.cursorUp(bottomContentHeight);
|
321488
|
-
output += import_ansi_escapes4.default.cursorTo(this.cursorPos.cols);
|
321489
|
-
this.write(cursorDown3(this.extraLinesUnderPrompt) + import_ansi_escapes4.default.eraseLines(this.height) + output);
|
321490
|
-
this.extraLinesUnderPrompt = bottomContentHeight;
|
321491
|
-
this.height = height3(output);
|
321492
|
-
}
|
321493
|
-
checkCursorPos() {
|
321494
|
-
const cursorPos = this.rl.getCursorPos();
|
321495
|
-
if (cursorPos.cols !== this.cursorPos.cols) {
|
321496
|
-
this.write(import_ansi_escapes4.default.cursorTo(cursorPos.cols));
|
321497
|
-
this.cursorPos = cursorPos;
|
321498
|
-
}
|
321499
|
-
}
|
321500
|
-
done({ clearContent }) {
|
321501
|
-
this.rl.setPrompt("");
|
321502
|
-
let output = cursorDown3(this.extraLinesUnderPrompt);
|
321503
|
-
output += clearContent ? import_ansi_escapes4.default.eraseLines(this.height) : `
|
321504
|
-
`;
|
321505
|
-
output += import_ansi_escapes4.default.cursorShow;
|
321506
|
-
this.write(output);
|
321507
|
-
this.rl.close();
|
321508
|
-
}
|
321509
|
-
}
|
321510
|
-
|
321511
|
-
// ../../node_modules/@inquirer/password/node_modules/@inquirer/core/dist/esm/lib/promise-polyfill.js
|
321512
|
-
class PromisePolyfill3 extends Promise {
|
321513
|
-
static withResolver() {
|
321514
|
-
let resolve6;
|
321515
|
-
let reject;
|
321516
|
-
const promise5 = new Promise((res, rej) => {
|
321517
|
-
resolve6 = res;
|
321518
|
-
reject = rej;
|
321519
|
-
});
|
321520
|
-
return { promise: promise5, resolve: resolve6, reject };
|
321521
|
-
}
|
321522
|
-
}
|
321523
|
-
|
321524
|
-
// ../../node_modules/@inquirer/password/node_modules/@inquirer/core/dist/esm/lib/create-prompt.js
|
321525
|
-
function getCallSites3() {
|
321526
|
-
const _prepareStackTrace = Error.prepareStackTrace;
|
321527
|
-
let result = [];
|
321528
|
-
try {
|
321529
|
-
Error.prepareStackTrace = (_5, callSites) => {
|
321530
|
-
const callSitesWithoutCurrent = callSites.slice(1);
|
321531
|
-
result = callSitesWithoutCurrent;
|
321532
|
-
return callSitesWithoutCurrent;
|
321533
|
-
};
|
321534
|
-
new Error().stack;
|
321535
|
-
} catch {
|
321536
|
-
return result;
|
321537
|
-
}
|
321538
|
-
Error.prepareStackTrace = _prepareStackTrace;
|
321539
|
-
return result;
|
321540
|
-
}
|
321541
|
-
function createPrompt3(view) {
|
321542
|
-
const callSites = getCallSites3();
|
321543
|
-
const prompt = (config5, context = {}) => {
|
321544
|
-
const { input = process.stdin, signal } = context;
|
321545
|
-
const cleanups = new Set;
|
321546
|
-
const output = new import_mute_stream3.default;
|
321547
|
-
output.pipe(context.output ?? process.stdout);
|
321548
|
-
const rl = readline6.createInterface({
|
321549
|
-
terminal: true,
|
321550
|
-
input,
|
321551
|
-
output
|
321552
|
-
});
|
321553
|
-
const screen = new ScreenManager3(rl);
|
321554
|
-
const { promise: promise5, resolve: resolve6, reject } = PromisePolyfill3.withResolver();
|
321555
|
-
const cancel3 = () => reject(new CancelPromptError3);
|
321556
|
-
if (signal) {
|
321557
|
-
const abort = () => reject(new AbortPromptError3({ cause: signal.reason }));
|
321558
|
-
if (signal.aborted) {
|
321559
|
-
abort();
|
321560
|
-
return Object.assign(promise5, { cancel: cancel3 });
|
321561
|
-
}
|
321562
|
-
signal.addEventListener("abort", abort);
|
321563
|
-
cleanups.add(() => signal.removeEventListener("abort", abort));
|
321564
|
-
}
|
321565
|
-
cleanups.add(onExit((code2, signal2) => {
|
321566
|
-
reject(new ExitPromptError3(`User force closed the prompt with ${code2} ${signal2}`));
|
321567
|
-
}));
|
321568
|
-
const sigint = () => reject(new ExitPromptError3(`User force closed the prompt with SIGINT`));
|
321569
|
-
rl.on("SIGINT", sigint);
|
321570
|
-
cleanups.add(() => rl.removeListener("SIGINT", sigint));
|
321571
|
-
const checkCursorPos = () => screen.checkCursorPos();
|
321572
|
-
rl.input.on("keypress", checkCursorPos);
|
321573
|
-
cleanups.add(() => rl.input.removeListener("keypress", checkCursorPos));
|
321574
|
-
return withHooks3(rl, (cycle) => {
|
321575
|
-
const hooksCleanup = AsyncResource9.bind(() => effectScheduler3.clearAll());
|
321576
|
-
rl.on("close", hooksCleanup);
|
321577
|
-
cleanups.add(() => rl.removeListener("close", hooksCleanup));
|
321578
|
-
cycle(() => {
|
321579
|
-
try {
|
321580
|
-
const nextView = view(config5, (value4) => {
|
321581
|
-
setImmediate(() => resolve6(value4));
|
321582
|
-
});
|
321583
|
-
if (nextView === undefined) {
|
321584
|
-
const callerFilename = callSites[1]?.getFileName();
|
321585
|
-
throw new Error(`Prompt functions must return a string.
|
321586
|
-
at ${callerFilename}`);
|
321587
|
-
}
|
321588
|
-
const [content, bottomContent] = typeof nextView === "string" ? [nextView] : nextView;
|
321589
|
-
screen.render(content, bottomContent);
|
321590
|
-
effectScheduler3.run();
|
321591
|
-
} catch (error45) {
|
321592
|
-
reject(error45);
|
321593
|
-
}
|
321594
|
-
});
|
321595
|
-
return Object.assign(promise5.then((answer) => {
|
321596
|
-
effectScheduler3.clearAll();
|
321597
|
-
return answer;
|
321598
|
-
}, (error45) => {
|
321599
|
-
effectScheduler3.clearAll();
|
321600
|
-
throw error45;
|
321601
|
-
}).finally(() => {
|
321602
|
-
cleanups.forEach((cleanup) => cleanup());
|
321603
|
-
screen.done({ clearContent: Boolean(context.clearPromptOnDone) });
|
321604
|
-
output.end();
|
321605
|
-
}).then(() => promise5), { cancel: cancel3 });
|
321606
|
-
});
|
321607
|
-
};
|
321608
|
-
return prompt;
|
321609
|
-
}
|
321610
320479
|
// ../../node_modules/@inquirer/password/dist/esm/index.js
|
321611
|
-
var
|
321612
|
-
var esm_default5 =
|
320480
|
+
var import_ansi_escapes3 = __toESM(require_ansi_escapes(), 1);
|
320481
|
+
var esm_default5 = createPrompt((config5, done) => {
|
321613
320482
|
const { validate: validate5 = () => true } = config5;
|
321614
|
-
const theme =
|
321615
|
-
const [status, setStatus] =
|
321616
|
-
const [errorMsg, setError] =
|
321617
|
-
const [value4, setValue] =
|
321618
|
-
const prefix =
|
321619
|
-
|
320483
|
+
const theme = makeTheme(config5.theme);
|
320484
|
+
const [status, setStatus] = useState("idle");
|
320485
|
+
const [errorMsg, setError] = useState();
|
320486
|
+
const [value4, setValue] = useState("");
|
320487
|
+
const prefix = usePrefix({ status, theme });
|
320488
|
+
useKeypress(async (key2, rl) => {
|
321620
320489
|
if (status !== "idle") {
|
321621
320490
|
return;
|
321622
320491
|
}
|
321623
|
-
if (
|
320492
|
+
if (isEnterKey(key2)) {
|
321624
320493
|
const answer = value4;
|
321625
320494
|
setStatus("loading");
|
321626
320495
|
const isValid = await validate5(answer);
|
@@ -321645,7 +320514,7 @@ var esm_default5 = createPrompt3((config5, done) => {
|
|
321645
320514
|
const maskChar = typeof config5.mask === "string" ? config5.mask : "*";
|
321646
320515
|
formattedValue = maskChar.repeat(value4.length);
|
321647
320516
|
} else if (status !== "done") {
|
321648
|
-
helpTip = `${theme.style.help("[input is masked]")}${
|
320517
|
+
helpTip = `${theme.style.help("[input is masked]")}${import_ansi_escapes3.default.cursorHide}`;
|
321649
320518
|
}
|
321650
320519
|
if (status === "done") {
|
321651
320520
|
formattedValue = theme.style.answer(formattedValue);
|
@@ -321688,7 +320557,7 @@ async function applicationAccessTokenPrompt(env2, application, settlemint, accep
|
|
321688
320557
|
try {
|
321689
320558
|
validate2(exports_external.string(), value4);
|
321690
320559
|
return true;
|
321691
|
-
} catch (
|
320560
|
+
} catch (error45) {
|
321692
320561
|
return "Invalid token name";
|
321693
320562
|
}
|
321694
320563
|
}
|
@@ -321741,7 +320610,7 @@ async function applicationAccessTokenPrompt(env2, application, settlemint, accep
|
|
321741
320610
|
try {
|
321742
320611
|
validate2(ApplicationAccessTokenSchema2, aat);
|
321743
320612
|
return aat;
|
321744
|
-
} catch (
|
320613
|
+
} catch (error45) {}
|
321745
320614
|
}
|
321746
320615
|
return esm_default5({
|
321747
320616
|
message: "What is the application access token for your application in SettleMint? (format: sm_aat_...)",
|
@@ -321749,7 +320618,7 @@ async function applicationAccessTokenPrompt(env2, application, settlemint, accep
|
|
321749
320618
|
try {
|
321750
320619
|
validate2(ApplicationAccessTokenSchema2, value4);
|
321751
320620
|
return true;
|
321752
|
-
} catch (
|
320621
|
+
} catch (error45) {
|
321753
320622
|
return "Invalid application access token, it should start with sm_aat_...";
|
321754
320623
|
}
|
321755
320624
|
}
|
@@ -322154,7 +321023,7 @@ async function instancePrompt({
|
|
322154
321023
|
try {
|
322155
321024
|
validate2(UrlSchema2, value4);
|
322156
321025
|
return true;
|
322157
|
-
} catch (
|
321026
|
+
} catch (error45) {
|
322158
321027
|
return "Invalid URL";
|
322159
321028
|
}
|
322160
321029
|
},
|
@@ -322238,7 +321107,7 @@ async function serviceUrlPrompt({
|
|
322238
321107
|
try {
|
322239
321108
|
validate2(UrlSchema2, value4);
|
322240
321109
|
return true;
|
322241
|
-
} catch (
|
321110
|
+
} catch (error45) {
|
322242
321111
|
return "Invalid URL";
|
322243
321112
|
}
|
322244
321113
|
},
|
@@ -323182,7 +322051,7 @@ async function projectNamePrompt(env2, argument) {
|
|
323182
322051
|
try {
|
323183
322052
|
validate2(exports_external.string(), value4);
|
323184
322053
|
return true;
|
323185
|
-
} catch (
|
322054
|
+
} catch (error45) {
|
323186
322055
|
return "Invalid projectname";
|
323187
322056
|
}
|
323188
322057
|
}
|
@@ -323376,7 +322245,7 @@ var basename2 = function(p5, extension) {
|
|
323376
322245
|
return extension && lastSegment.endsWith(extension) ? lastSegment.slice(0, -extension.length) : lastSegment;
|
323377
322246
|
};
|
323378
322247
|
// ../../node_modules/defu/dist/defu.mjs
|
323379
|
-
function
|
322248
|
+
function isPlainObject7(value4) {
|
323380
322249
|
if (value4 === null || typeof value4 !== "object") {
|
323381
322250
|
return false;
|
323382
322251
|
}
|
@@ -323393,27 +322262,27 @@ function isPlainObject9(value4) {
|
|
323393
322262
|
return true;
|
323394
322263
|
}
|
323395
322264
|
function _defu(baseObject, defaults4, namespace = ".", merger) {
|
323396
|
-
if (!
|
322265
|
+
if (!isPlainObject7(defaults4)) {
|
323397
322266
|
return _defu(baseObject, {}, namespace, merger);
|
323398
322267
|
}
|
323399
322268
|
const object5 = Object.assign({}, defaults4);
|
323400
|
-
for (const
|
323401
|
-
if (
|
322269
|
+
for (const key2 in baseObject) {
|
322270
|
+
if (key2 === "__proto__" || key2 === "constructor") {
|
323402
322271
|
continue;
|
323403
322272
|
}
|
323404
|
-
const value4 = baseObject[
|
322273
|
+
const value4 = baseObject[key2];
|
323405
322274
|
if (value4 === null || value4 === undefined) {
|
323406
322275
|
continue;
|
323407
322276
|
}
|
323408
|
-
if (merger && merger(object5,
|
322277
|
+
if (merger && merger(object5, key2, value4, namespace)) {
|
323409
322278
|
continue;
|
323410
322279
|
}
|
323411
|
-
if (Array.isArray(value4) && Array.isArray(object5[
|
323412
|
-
object5[
|
323413
|
-
} else if (
|
323414
|
-
object5[
|
322280
|
+
if (Array.isArray(value4) && Array.isArray(object5[key2])) {
|
322281
|
+
object5[key2] = [...value4, ...object5[key2]];
|
322282
|
+
} else if (isPlainObject7(value4) && isPlainObject7(object5[key2])) {
|
322283
|
+
object5[key2] = _defu(value4, object5[key2], (namespace ? `${namespace}.` : "") + key2.toString(), merger);
|
323415
322284
|
} else {
|
323416
|
-
object5[
|
322285
|
+
object5[key2] = value4;
|
323417
322286
|
}
|
323418
322287
|
}
|
323419
322288
|
return object5;
|
@@ -323422,15 +322291,15 @@ function createDefu(merger) {
|
|
323422
322291
|
return (...arguments_4) => arguments_4.reduce((p5, c3) => _defu(p5, c3, "", merger), {});
|
323423
322292
|
}
|
323424
322293
|
var defu = createDefu();
|
323425
|
-
var defuFn = createDefu((object5,
|
323426
|
-
if (object5[
|
323427
|
-
object5[
|
322294
|
+
var defuFn = createDefu((object5, key2, currentValue) => {
|
322295
|
+
if (object5[key2] !== undefined && typeof currentValue === "function") {
|
322296
|
+
object5[key2] = currentValue(object5[key2]);
|
323428
322297
|
return true;
|
323429
322298
|
}
|
323430
322299
|
});
|
323431
|
-
var defuArrayFn = createDefu((object5,
|
323432
|
-
if (Array.isArray(object5[
|
323433
|
-
object5[
|
322300
|
+
var defuArrayFn = createDefu((object5, key2, currentValue) => {
|
322301
|
+
if (Array.isArray(object5[key2]) && typeof currentValue === "function") {
|
322302
|
+
object5[key2] = currentValue(object5[key2]);
|
323434
322303
|
return true;
|
323435
322304
|
}
|
323436
322305
|
});
|
@@ -326640,11 +325509,11 @@ function cacheDirectory() {
|
|
326640
325509
|
}
|
326641
325510
|
function normalizeHeaders(headers = {}) {
|
326642
325511
|
const normalized = {};
|
326643
|
-
for (const [
|
325512
|
+
for (const [key2, value4] of Object.entries(headers)) {
|
326644
325513
|
if (!value4) {
|
326645
325514
|
continue;
|
326646
325515
|
}
|
326647
|
-
normalized[
|
325516
|
+
normalized[key2.toLowerCase()] = value4;
|
326648
325517
|
}
|
326649
325518
|
return normalized;
|
326650
325519
|
}
|
@@ -327170,7 +326039,7 @@ async function personalAccessTokenPrompt(env2, instance, accept) {
|
|
327170
326039
|
try {
|
327171
326040
|
validate2(PersonalAccessTokenSchema2, value4);
|
327172
326041
|
return true;
|
327173
|
-
} catch (
|
326042
|
+
} catch (error45) {
|
327174
326043
|
return "Invalid personal access token, it should start with sm_pat_...";
|
327175
326044
|
}
|
327176
326045
|
}
|
@@ -327251,7 +326120,7 @@ function loginCommand() {
|
|
327251
326120
|
});
|
327252
326121
|
try {
|
327253
326122
|
await loginSpinner(client);
|
327254
|
-
} catch (
|
326123
|
+
} catch (error45) {
|
327255
326124
|
cancel2(`Invalid personal access token for instance ${selectedInstance}`);
|
327256
326125
|
}
|
327257
326126
|
await storeCredentials(personalAccessToken, selectedInstance);
|
@@ -327401,17 +326270,13 @@ function addClusterServiceArgs(cmd2) {
|
|
327401
326270
|
// src/commands/platform/utils/wait-for-completion.ts
|
327402
326271
|
class TimeoutError2 extends Error {
|
327403
326272
|
}
|
327404
|
-
|
327405
|
-
class DeploymentFailedError extends Error {
|
327406
|
-
}
|
327407
326273
|
async function waitForCompletion({
|
327408
326274
|
settlemint,
|
327409
326275
|
type: type4,
|
327410
326276
|
uniqueName,
|
327411
326277
|
action,
|
327412
326278
|
maxTimeout = 10 * 60 * 1000,
|
327413
|
-
restartIfTimeout = false
|
327414
|
-
restartOnError = false
|
326279
|
+
restartIfTimeout = false
|
327415
326280
|
}) {
|
327416
326281
|
const serviceType = SETTLEMINT_CLIENT_MAP[type4];
|
327417
326282
|
if (serviceType === "workspace" || serviceType === "application" || serviceType === "foundry" || serviceType === "applicationAccessToken" || serviceType === "platform" || serviceType === "wallet") {
|
@@ -327421,7 +326286,6 @@ async function waitForCompletion({
|
|
327421
326286
|
if (!service || !("read" in service)) {
|
327422
326287
|
throw new Error(`Service ${serviceType} does not support status checking`);
|
327423
326288
|
}
|
327424
|
-
let hasRestarted = false;
|
327425
326289
|
function showSpinner() {
|
327426
326290
|
return spinner({
|
327427
326291
|
startMessage: `Waiting for ${type4} to be ${getActionLabel(action)}`,
|
@@ -327431,20 +326295,33 @@ async function waitForCompletion({
|
|
327431
326295
|
while (true) {
|
327432
326296
|
try {
|
327433
326297
|
const resource = await service.read(uniqueName);
|
326298
|
+
if (resource.status === "COMPLETED") {
|
326299
|
+
if (spinner2) {
|
326300
|
+
spinner2.text = `${capitalizeFirstLetter2(type4)} is ${getActionLabel(action)}`;
|
326301
|
+
} else {
|
326302
|
+
note(`${capitalizeFirstLetter2(type4)} is ${getActionLabel(action)}`);
|
326303
|
+
}
|
326304
|
+
return true;
|
326305
|
+
}
|
327434
326306
|
if (resource.status === "FAILED") {
|
327435
|
-
|
327436
|
-
|
327437
|
-
|
326307
|
+
if (spinner2) {
|
326308
|
+
spinner2.text = `${capitalizeFirstLetter2(type4)} failed to ${getActionLabel(action)}`;
|
326309
|
+
} else {
|
326310
|
+
note(`${capitalizeFirstLetter2(type4)} failed to ${getActionLabel(action)}`);
|
327438
326311
|
}
|
327439
326312
|
return false;
|
327440
326313
|
}
|
327441
|
-
if (
|
327442
|
-
|
327443
|
-
|
326314
|
+
if (spinner2) {
|
326315
|
+
spinner2.text = `${capitalizeFirstLetter2(type4)} is not ready yet (status: ${resource.status})`;
|
326316
|
+
} else {
|
326317
|
+
note(`${capitalizeFirstLetter2(type4)} is not ready yet (status: ${resource.status})`);
|
326318
|
+
}
|
326319
|
+
} catch (error45) {
|
326320
|
+
if (spinner2) {
|
326321
|
+
spinner2.text = `${capitalizeFirstLetter2(type4)} is not ready yet (status: UNKNOWN)`;
|
326322
|
+
} else {
|
326323
|
+
note(`${capitalizeFirstLetter2(type4)} is not ready yet (status: UNKNOWN)`);
|
327444
326324
|
}
|
327445
|
-
updateStatus(spinner2, `${capitalizeFirstLetter2(type4)} is not ready yet (status: ${resource.status})`);
|
327446
|
-
} catch (_error) {
|
327447
|
-
updateStatus(spinner2, `${capitalizeFirstLetter2(type4)} is not ready yet (status: UNKNOWN)`);
|
327448
326325
|
}
|
327449
326326
|
if (Date.now() - startTime > maxTimeout) {
|
327450
326327
|
throw new TimeoutError2(`Operation timed out after ${maxTimeout / 60000} minutes for ${type4} with unique name ${uniqueName}`);
|
@@ -327457,59 +326334,23 @@ async function waitForCompletion({
|
|
327457
326334
|
try {
|
327458
326335
|
return await showSpinner();
|
327459
326336
|
} catch (error45) {
|
327460
|
-
|
326337
|
+
const isTimeoutError = error45 instanceof SpinnerError && error45.originalError instanceof TimeoutError2;
|
326338
|
+
if (restartIfTimeout && isTimeoutError) {
|
327461
326339
|
note(`Restarting ${capitalizeFirstLetter2(type4)}`);
|
327462
|
-
hasRestarted = true;
|
327463
326340
|
await service.restart(uniqueName);
|
327464
326341
|
return showSpinner();
|
327465
326342
|
}
|
327466
326343
|
throw error45;
|
327467
326344
|
}
|
327468
326345
|
}
|
327469
|
-
function shouldRestart(error45, restartIfTimeout) {
|
327470
|
-
const isSpinnerError = error45 instanceof SpinnerError;
|
327471
|
-
const isDeploymentFailedError = error45 instanceof DeploymentFailedError || isSpinnerError && error45.originalError instanceof DeploymentFailedError;
|
327472
|
-
if (isDeploymentFailedError) {
|
327473
|
-
return true;
|
327474
|
-
}
|
327475
|
-
const isTimeoutError = error45 instanceof TimeoutError2 || isSpinnerError && error45.originalError instanceof TimeoutError2;
|
327476
|
-
return restartIfTimeout && isTimeoutError;
|
327477
|
-
}
|
327478
|
-
function updateStatus(spinner2, message) {
|
327479
|
-
if (spinner2) {
|
327480
|
-
spinner2.text = message;
|
327481
|
-
} else {
|
327482
|
-
note(message);
|
327483
|
-
}
|
327484
|
-
}
|
327485
|
-
function isActionComplete(action, status) {
|
327486
|
-
switch (action) {
|
327487
|
-
case "pause":
|
327488
|
-
return status === "PAUSED" || status === "AUTO_PAUSED";
|
327489
|
-
case "resume":
|
327490
|
-
case "deploy":
|
327491
|
-
case "destroy":
|
327492
|
-
case "restart":
|
327493
|
-
return status === "COMPLETED";
|
327494
|
-
default:
|
327495
|
-
return false;
|
327496
|
-
}
|
327497
|
-
}
|
327498
326346
|
function getActionLabel(action) {
|
327499
|
-
|
327500
|
-
|
327501
|
-
|
327502
|
-
|
327503
|
-
|
327504
|
-
case "pause":
|
327505
|
-
return "paused";
|
327506
|
-
case "resume":
|
327507
|
-
return "resumed";
|
327508
|
-
case "deploy":
|
327509
|
-
return "deployed";
|
327510
|
-
default:
|
327511
|
-
return "deployed";
|
326347
|
+
if (action === "restart") {
|
326348
|
+
return "restarted";
|
326349
|
+
}
|
326350
|
+
if (action === "destroy") {
|
326351
|
+
return "destroyed";
|
327512
326352
|
}
|
326353
|
+
return "deployed";
|
327513
326354
|
}
|
327514
326355
|
|
327515
326356
|
// src/prompts/provider.prompt.ts
|
@@ -327590,9 +326431,9 @@ function getCreateCommand({
|
|
327590
326431
|
cmd2.alias(alias);
|
327591
326432
|
}
|
327592
326433
|
if (requiresDeployment) {
|
327593
|
-
cmd2.option("-w, --wait", "Wait until deployed").option("--restart-if-timeout", "Restart if wait time is exceeded")
|
326434
|
+
cmd2.option("-w, --wait", "Wait until deployed").option("-r, --restart-if-timeout", "Restart if wait time is exceeded");
|
327594
326435
|
}
|
327595
|
-
execute2(cmd2, async ({ acceptDefaults, prod, default: isDefault, wait: wait2, restartIfTimeout,
|
326436
|
+
execute2(cmd2, async ({ acceptDefaults, prod, default: isDefault, wait: wait2, restartIfTimeout, provider, region }, createFunction) => {
|
327596
326437
|
intro(`Creating ${type4} in the SettleMint platform`);
|
327597
326438
|
const env2 = await loadEnv(false, !!prod);
|
327598
326439
|
const instance = await instancePrompt({ env: env2, accept: acceptDefaults });
|
@@ -327606,8 +326447,8 @@ function getCreateCommand({
|
|
327606
326447
|
instance
|
327607
326448
|
});
|
327608
326449
|
const platformConfig = await settlemint.platform.config();
|
327609
|
-
let selectedProvider;
|
327610
|
-
let selectedRegion;
|
326450
|
+
let selectedProvider = undefined;
|
326451
|
+
let selectedRegion = undefined;
|
327611
326452
|
if (cmd2.options.some((option) => option.long === "--provider")) {
|
327612
326453
|
selectedProvider = await providerPrompt(platformConfig, provider);
|
327613
326454
|
if (!selectedProvider) {
|
@@ -327636,8 +326477,7 @@ function getCreateCommand({
|
|
327636
326477
|
type: waitFor?.resourceType ?? type4,
|
327637
326478
|
uniqueName: waitFor?.uniqueName ?? result.uniqueName,
|
327638
326479
|
action: "deploy",
|
327639
|
-
restartIfTimeout
|
327640
|
-
restartOnError
|
326480
|
+
restartIfTimeout
|
327641
326481
|
});
|
327642
326482
|
if (!isDeployed) {
|
327643
326483
|
throw new Error(`Failed to deploy ${waitFor?.resourceType ?? type4} ${waitFor?.uniqueName ?? result.uniqueName}`);
|
@@ -328819,7 +327659,7 @@ function privateKeyHsmCreateCommand() {
|
|
328819
327659
|
return baseAction({
|
328820
327660
|
...defaultArgs,
|
328821
327661
|
acceptDefaults
|
328822
|
-
}, async ({ settlemint, env: env2, showSpinner, provider
|
327662
|
+
}, async ({ settlemint, env: env2, showSpinner, provider, region }) => {
|
328823
327663
|
const applicationUniqueName = application ?? env2.SETTLEMINT_APPLICATION;
|
328824
327664
|
if (!applicationUniqueName) {
|
328825
327665
|
return missingApplication();
|
@@ -329108,256 +327948,25 @@ function deleteCommand() {
|
|
329108
327948
|
return new Command("delete").alias("d").description("Delete a resource in the SettleMint platform").addCommand(applicationDeleteCommand()).addCommand(workspaceDeleteCommand());
|
329109
327949
|
}
|
329110
327950
|
|
329111
|
-
// src/commands/platform/common/pause-command.ts
|
329112
|
-
function getPauseCommand({
|
329113
|
-
name: name3,
|
329114
|
-
type: type4,
|
329115
|
-
alias,
|
329116
|
-
envKey,
|
329117
|
-
pauseFunction,
|
329118
|
-
usePersonalAccessToken = true
|
329119
|
-
}) {
|
329120
|
-
const commandName = sanitizeCommandName(name3);
|
329121
|
-
const typeCommandName = sanitizeCommandName(type4);
|
329122
|
-
const exampleCommandPrefix = `platform pause ${typeCommandName !== commandName ? `${typeCommandName} ` : ""}${commandName}`;
|
329123
|
-
return new Command(commandName).alias(alias).description(`Pause a ${type4} in the SettleMint platform. Provide the ${type4} unique name or use 'default' to pause the default ${type4} from your .env file.`).usage(createExamples([
|
329124
|
-
{
|
329125
|
-
description: `Pauses the specified ${type4} by unique name`,
|
329126
|
-
command: `${exampleCommandPrefix} <unique-name>`
|
329127
|
-
},
|
329128
|
-
{
|
329129
|
-
description: `Pauses the default ${type4} in the production environment`,
|
329130
|
-
command: `${exampleCommandPrefix} default --prod`
|
329131
|
-
}
|
329132
|
-
])).argument("<unique-name>", `The unique name of the ${type4}, use 'default' to pause the default one from your .env file`).option("-a, --accept-defaults", "Accept the default and previously set values").option("--prod", "Connect to your production environment").option("-w, --wait", "Wait until paused").action(async (uniqueName, { acceptDefaults, prod, wait: wait2 }) => {
|
329133
|
-
intro(`Pausing ${type4} in the SettleMint platform`);
|
329134
|
-
const env2 = await loadEnv(false, !!prod);
|
329135
|
-
const instance = await instancePrompt({ env: env2, accept: acceptDefaults });
|
329136
|
-
const accessToken = await getApplicationOrPersonalAccessToken({
|
329137
|
-
env: env2,
|
329138
|
-
instance,
|
329139
|
-
prefer: usePersonalAccessToken ? "personal" : "application"
|
329140
|
-
});
|
329141
|
-
const settlemint = createSettleMintClient({
|
329142
|
-
accessToken,
|
329143
|
-
instance
|
329144
|
-
});
|
329145
|
-
const isDefaultUniqueName = uniqueName === "default";
|
329146
|
-
const serviceUniqueName = isDefaultUniqueName ? typeof env2[envKey] === "string" ? env2[envKey] : null : uniqueName;
|
329147
|
-
if (!serviceUniqueName) {
|
329148
|
-
cancel2(`No default ${type4} found in your .env file. Please provide a valid ${type4} unique name or set a default ${type4} first.`);
|
329149
|
-
}
|
329150
|
-
const result = await spinner({
|
329151
|
-
startMessage: `Pausing ${type4}`,
|
329152
|
-
task: async () => {
|
329153
|
-
return pauseFunction(settlemint, serviceUniqueName);
|
329154
|
-
},
|
329155
|
-
stopMessage: `${capitalizeFirstLetter2(type4)} pause initiated`
|
329156
|
-
});
|
329157
|
-
if (wait2) {
|
329158
|
-
const isPaused = await waitForCompletion({
|
329159
|
-
settlemint,
|
329160
|
-
type: type4,
|
329161
|
-
uniqueName: serviceUniqueName,
|
329162
|
-
action: "pause"
|
329163
|
-
});
|
329164
|
-
if (!isPaused) {
|
329165
|
-
throw new Error(`Failed to pause ${type4} ${serviceUniqueName}`);
|
329166
|
-
}
|
329167
|
-
}
|
329168
|
-
outro(`${capitalizeFirstLetter2(type4)} ${result.name} pause initiated successfully`);
|
329169
|
-
});
|
329170
|
-
}
|
329171
|
-
|
329172
|
-
// src/commands/platform/blockchain-network/pause.ts
|
329173
|
-
function blockchainNetworkPauseCommand() {
|
329174
|
-
return getPauseCommand({
|
329175
|
-
name: "blockchain-network",
|
329176
|
-
type: "blockchain network",
|
329177
|
-
alias: "bnw",
|
329178
|
-
envKey: "SETTLEMINT_BLOCKCHAIN_NETWORK",
|
329179
|
-
pauseFunction: async (settlemint, id) => {
|
329180
|
-
return settlemint.blockchainNetwork.pause(id);
|
329181
|
-
}
|
329182
|
-
});
|
329183
|
-
}
|
329184
|
-
|
329185
|
-
// src/commands/platform/blockchain-node/pause.ts
|
329186
|
-
function blockchainNodePauseCommand() {
|
329187
|
-
return getPauseCommand({
|
329188
|
-
name: "blockchain-node",
|
329189
|
-
type: "blockchain node",
|
329190
|
-
alias: "bn",
|
329191
|
-
envKey: "SETTLEMINT_BLOCKCHAIN_NODE",
|
329192
|
-
pauseFunction: async (settlemint, id) => {
|
329193
|
-
return settlemint.blockchainNode.pause(id);
|
329194
|
-
}
|
329195
|
-
});
|
329196
|
-
}
|
329197
|
-
|
329198
|
-
// src/commands/platform/custom-deployments/pause.ts
|
329199
|
-
function customDeploymentPauseCommand() {
|
329200
|
-
return getPauseCommand({
|
329201
|
-
name: "custom-deployment",
|
329202
|
-
type: "custom deployment",
|
329203
|
-
alias: "cd",
|
329204
|
-
envKey: "SETTLEMINT_CUSTOM_DEPLOYMENT",
|
329205
|
-
pauseFunction: async (settlemint, id) => {
|
329206
|
-
return settlemint.customDeployment.pause(id);
|
329207
|
-
}
|
329208
|
-
});
|
329209
|
-
}
|
329210
|
-
|
329211
|
-
// src/commands/platform/insights/blockscout/pause.ts
|
329212
|
-
function blockscoutPauseCommand() {
|
329213
|
-
return getPauseCommand({
|
329214
|
-
name: "blockscout",
|
329215
|
-
type: "insights",
|
329216
|
-
alias: "bs",
|
329217
|
-
envKey: "SETTLEMINT_BLOCKSCOUT",
|
329218
|
-
pauseFunction: async (settlemint, id) => {
|
329219
|
-
return settlemint.insights.pause(id);
|
329220
|
-
}
|
329221
|
-
});
|
329222
|
-
}
|
329223
|
-
|
329224
|
-
// src/commands/platform/insights/pause.ts
|
329225
|
-
function insightsPauseCommand() {
|
329226
|
-
return new Command("insights").alias("in").description("Pause an insights service in the SettleMint platform").addCommand(blockscoutPauseCommand());
|
329227
|
-
}
|
329228
|
-
|
329229
|
-
// src/commands/platform/integration-tools/hasura/pause.ts
|
329230
|
-
function hasuraPauseCommand() {
|
329231
|
-
return getPauseCommand({
|
329232
|
-
name: "hasura",
|
329233
|
-
type: "integration tool",
|
329234
|
-
alias: "ha",
|
329235
|
-
envKey: "SETTLEMINT_HASURA",
|
329236
|
-
pauseFunction: async (settlemint, id) => {
|
329237
|
-
return settlemint.integrationTool.pause(id);
|
329238
|
-
}
|
329239
|
-
});
|
329240
|
-
}
|
329241
|
-
|
329242
|
-
// src/commands/platform/integration-tools/pause.ts
|
329243
|
-
function integrationToolPauseCommand() {
|
329244
|
-
return new Command("integration-tool").alias("it").description("Pause an integration tool service in the SettleMint platform").addCommand(hasuraPauseCommand());
|
329245
|
-
}
|
329246
|
-
|
329247
|
-
// src/commands/platform/load-balancer/pause.ts
|
329248
|
-
function loadBalancerPauseCommand() {
|
329249
|
-
return getPauseCommand({
|
329250
|
-
name: "evm",
|
329251
|
-
type: "load balancer",
|
329252
|
-
alias: "lb",
|
329253
|
-
envKey: "SETTLEMINT_BLOCKCHAIN_NODE_OR_LOAD_BALANCER",
|
329254
|
-
pauseFunction: async (settlemint, id) => {
|
329255
|
-
return settlemint.loadBalancer.pause(id);
|
329256
|
-
}
|
329257
|
-
});
|
329258
|
-
}
|
329259
|
-
|
329260
|
-
// src/commands/platform/middleware/graph/pause.ts
|
329261
|
-
function graphMiddlewarePauseCommand() {
|
329262
|
-
return getPauseCommand({
|
329263
|
-
name: "graph",
|
329264
|
-
type: "middleware",
|
329265
|
-
alias: "gr",
|
329266
|
-
envKey: "SETTLEMINT_THEGRAPH",
|
329267
|
-
pauseFunction: async (settlemint, id) => {
|
329268
|
-
return settlemint.middleware.pause(id);
|
329269
|
-
}
|
329270
|
-
});
|
329271
|
-
}
|
329272
|
-
|
329273
|
-
// src/commands/platform/middleware/smart-contract-portal/pause.ts
|
329274
|
-
function smartContractPortalMiddlewarePauseCommand() {
|
329275
|
-
return getPauseCommand({
|
329276
|
-
name: "smart-contract-portal",
|
329277
|
-
type: "middleware",
|
329278
|
-
alias: "scp",
|
329279
|
-
envKey: "SETTLEMINT_PORTAL",
|
329280
|
-
pauseFunction: async (settlemint, id) => {
|
329281
|
-
return settlemint.middleware.pause(id);
|
329282
|
-
}
|
329283
|
-
});
|
329284
|
-
}
|
329285
|
-
|
329286
|
-
// src/commands/platform/middleware/pause.ts
|
329287
|
-
function middlewarePauseCommand() {
|
329288
|
-
return new Command("middleware").alias("mw").description("Pause a middleware service in the SettleMint platform").addCommand(graphMiddlewarePauseCommand()).addCommand(smartContractPortalMiddlewarePauseCommand());
|
329289
|
-
}
|
329290
|
-
|
329291
|
-
// src/commands/platform/private-key/pause.ts
|
329292
|
-
function privateKeyPauseCommand() {
|
329293
|
-
return getPauseCommand({
|
329294
|
-
name: "private-key",
|
329295
|
-
type: "private key",
|
329296
|
-
alias: "pk",
|
329297
|
-
envKey: "SETTLEMINT_ACCESSIBLE_PRIVATE_KEY",
|
329298
|
-
pauseFunction: async (settlemint, id) => {
|
329299
|
-
return settlemint.privateKey.pause(id);
|
329300
|
-
}
|
329301
|
-
});
|
329302
|
-
}
|
329303
|
-
|
329304
|
-
// src/commands/platform/storage/ipfs/pause.ts
|
329305
|
-
function ipfsStoragePauseCommand() {
|
329306
|
-
return getPauseCommand({
|
329307
|
-
name: "ipfs",
|
329308
|
-
type: "storage",
|
329309
|
-
alias: "ip",
|
329310
|
-
envKey: "SETTLEMINT_IPFS",
|
329311
|
-
pauseFunction: async (settlemint, id) => {
|
329312
|
-
return settlemint.storage.pause(id);
|
329313
|
-
}
|
329314
|
-
});
|
329315
|
-
}
|
329316
|
-
|
329317
|
-
// src/commands/platform/storage/minio/pause.ts
|
329318
|
-
function minioStoragePauseCommand() {
|
329319
|
-
return getPauseCommand({
|
329320
|
-
name: "minio",
|
329321
|
-
type: "storage",
|
329322
|
-
alias: "m",
|
329323
|
-
envKey: "SETTLEMINT_MINIO",
|
329324
|
-
pauseFunction: async (settlemint, id) => {
|
329325
|
-
return settlemint.storage.pause(id);
|
329326
|
-
}
|
329327
|
-
});
|
329328
|
-
}
|
329329
|
-
|
329330
|
-
// src/commands/platform/storage/pause.ts
|
329331
|
-
function storagePauseCommand() {
|
329332
|
-
return new Command("storage").alias("st").description("Pause a storage service in the SettleMint platform").addCommand(ipfsStoragePauseCommand()).addCommand(minioStoragePauseCommand());
|
329333
|
-
}
|
329334
|
-
|
329335
|
-
// src/commands/platform/pause.ts
|
329336
|
-
function pauseCommand() {
|
329337
|
-
const cmd2 = new Command("pause").description("Pause a resource in the SettleMint platform").addCommand(blockchainNodePauseCommand()).addCommand(blockchainNetworkPauseCommand()).addCommand(customDeploymentPauseCommand()).addCommand(insightsPauseCommand()).addCommand(integrationToolPauseCommand()).addCommand(loadBalancerPauseCommand()).addCommand(middlewarePauseCommand()).addCommand(privateKeyPauseCommand()).addCommand(storagePauseCommand());
|
329338
|
-
return cmd2;
|
329339
|
-
}
|
329340
|
-
|
329341
327951
|
// src/commands/platform/common/restart-command.ts
|
329342
327952
|
function getRestartCommand({
|
329343
327953
|
name: name3,
|
329344
327954
|
type: type4,
|
327955
|
+
subType,
|
329345
327956
|
alias,
|
329346
327957
|
envKey,
|
329347
327958
|
restartFunction,
|
329348
327959
|
usePersonalAccessToken = true
|
329349
327960
|
}) {
|
329350
327961
|
const commandName = sanitizeCommandName(name3);
|
329351
|
-
const typeCommandName = sanitizeCommandName(type4);
|
329352
|
-
const exampleCommandPrefix = `platform restart ${typeCommandName !== commandName ? `${typeCommandName} ` : ""}${commandName}`;
|
329353
327962
|
return new Command(commandName).alias(alias).description(`Restart a ${type4} in the SettleMint platform. Provide the ${type4} unique name or use 'default' to restart the default ${type4} from your .env file.`).usage(createExamples([
|
329354
327963
|
{
|
329355
|
-
description: `Restarts the specified ${type4} by
|
329356
|
-
command:
|
327964
|
+
description: `Restarts the specified ${type4} by id`,
|
327965
|
+
command: `platform restart ${commandName}${subType ? ` ${subType}` : ""} <${type4}-id>`
|
329357
327966
|
},
|
329358
327967
|
{
|
329359
327968
|
description: `Restarts the default ${type4} in the production environment`,
|
329360
|
-
command:
|
327969
|
+
command: `platform restart ${commandName}${subType ? ` ${subType}` : ""} default --prod`
|
329361
327970
|
}
|
329362
327971
|
])).argument("<unique-name>", `The unique name of the ${type4}, use 'default' to restart the default one from your .env file`).option("-a, --accept-defaults", "Accept the default and previously set values").option("--prod", "Connect to your production environment").option("-w, --wait", "Wait until restarted").action(async (uniqueName, { acceptDefaults, prod, wait: wait2 }) => {
|
329363
327972
|
intro(`Restarting ${type4} in the SettleMint platform`);
|
@@ -329444,6 +328053,7 @@ function blockscoutRestartCommand() {
|
|
329444
328053
|
return getRestartCommand({
|
329445
328054
|
name: "blockscout",
|
329446
328055
|
type: "insights",
|
328056
|
+
subType: "blockscout",
|
329447
328057
|
alias: "bs",
|
329448
328058
|
envKey: "SETTLEMINT_BLOCKSCOUT",
|
329449
328059
|
restartFunction: async (settlemint, uniqueName) => {
|
@@ -329462,6 +328072,7 @@ function hasuraRestartCommand() {
|
|
329462
328072
|
return getRestartCommand({
|
329463
328073
|
name: "hasura",
|
329464
328074
|
type: "integration tool",
|
328075
|
+
subType: "hasura",
|
329465
328076
|
alias: "ha",
|
329466
328077
|
envKey: "SETTLEMINT_HASURA",
|
329467
328078
|
restartFunction: async (settlemint, uniqueName) => {
|
@@ -329493,6 +328104,7 @@ function graphRestartCommand() {
|
|
329493
328104
|
return getRestartCommand({
|
329494
328105
|
name: "graph",
|
329495
328106
|
type: "middleware",
|
328107
|
+
subType: "graph",
|
329496
328108
|
alias: "gr",
|
329497
328109
|
envKey: "SETTLEMINT_THEGRAPH",
|
329498
328110
|
restartFunction: async (settlemint, id) => {
|
@@ -329506,6 +328118,7 @@ function smartContractPortalRestartCommand() {
|
|
329506
328118
|
return getRestartCommand({
|
329507
328119
|
name: "smart-contract-portal",
|
329508
328120
|
type: "middleware",
|
328121
|
+
subType: "smart-contract-portal",
|
329509
328122
|
alias: "scp",
|
329510
328123
|
envKey: "SETTLEMINT_PORTAL",
|
329511
328124
|
restartFunction: async (settlemint, uniqueName) => {
|
@@ -329556,236 +328169,6 @@ function restartCommand() {
|
|
329556
328169
|
return cmd2;
|
329557
328170
|
}
|
329558
328171
|
|
329559
|
-
// src/commands/platform/common/resume-command.ts
|
329560
|
-
function getResumeCommand({
|
329561
|
-
name: name3,
|
329562
|
-
type: type4,
|
329563
|
-
alias,
|
329564
|
-
envKey,
|
329565
|
-
resumeFunction,
|
329566
|
-
usePersonalAccessToken = true
|
329567
|
-
}) {
|
329568
|
-
const commandName = sanitizeCommandName(name3);
|
329569
|
-
const typeCommandName = sanitizeCommandName(type4);
|
329570
|
-
const exampleCommandPrefix = `platform resume ${typeCommandName !== commandName ? `${typeCommandName} ` : ""}${commandName}`;
|
329571
|
-
return new Command(commandName).alias(alias).description(`Resume a ${type4} in the SettleMint platform. Provide the ${type4} unique name or use 'default' to resume the default ${type4} from your .env file.`).usage(createExamples([
|
329572
|
-
{
|
329573
|
-
description: `Resumes the specified ${type4} by unique name`,
|
329574
|
-
command: `${exampleCommandPrefix} <unique-name>`
|
329575
|
-
},
|
329576
|
-
{
|
329577
|
-
description: `Resumes the default ${type4} in the production environment`,
|
329578
|
-
command: `${exampleCommandPrefix} default --prod`
|
329579
|
-
}
|
329580
|
-
])).argument("<unique-name>", `The unique name of the ${type4}, use 'default' to resume the default one from your .env file`).option("-a, --accept-defaults", "Accept the default and previously set values").option("--prod", "Connect to your production environment").option("-w, --wait", "Wait until resumed").action(async (uniqueName, { acceptDefaults, prod, wait: wait2 }) => {
|
329581
|
-
intro(`Resuming ${type4} in the SettleMint platform`);
|
329582
|
-
const env2 = await loadEnv(false, !!prod);
|
329583
|
-
const instance = await instancePrompt({ env: env2, accept: acceptDefaults });
|
329584
|
-
const accessToken = await getApplicationOrPersonalAccessToken({
|
329585
|
-
env: env2,
|
329586
|
-
instance,
|
329587
|
-
prefer: usePersonalAccessToken ? "personal" : "application"
|
329588
|
-
});
|
329589
|
-
const settlemint = createSettleMintClient({
|
329590
|
-
accessToken,
|
329591
|
-
instance
|
329592
|
-
});
|
329593
|
-
const isDefaultUniqueName = uniqueName === "default";
|
329594
|
-
const serviceUniqueName = isDefaultUniqueName ? typeof env2[envKey] === "string" ? env2[envKey] : null : uniqueName;
|
329595
|
-
if (!serviceUniqueName) {
|
329596
|
-
cancel2(`No default ${type4} found in your .env file. Please provide a valid ${type4} unique name or set a default ${type4} first.`);
|
329597
|
-
}
|
329598
|
-
const result = await spinner({
|
329599
|
-
startMessage: `Resuming ${type4}`,
|
329600
|
-
task: async () => {
|
329601
|
-
return resumeFunction(settlemint, serviceUniqueName);
|
329602
|
-
},
|
329603
|
-
stopMessage: `${capitalizeFirstLetter2(type4)} resume initiated`
|
329604
|
-
});
|
329605
|
-
if (wait2) {
|
329606
|
-
const isResumed = await waitForCompletion({
|
329607
|
-
settlemint,
|
329608
|
-
type: type4,
|
329609
|
-
uniqueName: serviceUniqueName,
|
329610
|
-
action: "resume"
|
329611
|
-
});
|
329612
|
-
if (!isResumed) {
|
329613
|
-
throw new Error(`Failed to resume ${type4} ${serviceUniqueName}`);
|
329614
|
-
}
|
329615
|
-
}
|
329616
|
-
outro(`${capitalizeFirstLetter2(type4)} ${result.name} resume initiated successfully`);
|
329617
|
-
});
|
329618
|
-
}
|
329619
|
-
|
329620
|
-
// src/commands/platform/blockchain-network/resume.ts
|
329621
|
-
function blockchainNetworkResumeCommand() {
|
329622
|
-
return getResumeCommand({
|
329623
|
-
name: "blockchain-network",
|
329624
|
-
type: "blockchain network",
|
329625
|
-
alias: "bnw",
|
329626
|
-
envKey: "SETTLEMINT_BLOCKCHAIN_NETWORK",
|
329627
|
-
resumeFunction: async (settlemint, id) => {
|
329628
|
-
return settlemint.blockchainNetwork.resume(id);
|
329629
|
-
}
|
329630
|
-
});
|
329631
|
-
}
|
329632
|
-
|
329633
|
-
// src/commands/platform/blockchain-node/resume.ts
|
329634
|
-
function blockchainNodeResumeCommand() {
|
329635
|
-
return getResumeCommand({
|
329636
|
-
name: "blockchain-node",
|
329637
|
-
type: "blockchain node",
|
329638
|
-
alias: "bn",
|
329639
|
-
envKey: "SETTLEMINT_BLOCKCHAIN_NODE",
|
329640
|
-
resumeFunction: async (settlemint, id) => {
|
329641
|
-
return settlemint.blockchainNode.resume(id);
|
329642
|
-
}
|
329643
|
-
});
|
329644
|
-
}
|
329645
|
-
|
329646
|
-
// src/commands/platform/custom-deployments/resume.ts
|
329647
|
-
function customDeploymentResumeCommand() {
|
329648
|
-
return getResumeCommand({
|
329649
|
-
name: "custom-deployment",
|
329650
|
-
type: "custom deployment",
|
329651
|
-
alias: "cd",
|
329652
|
-
envKey: "SETTLEMINT_CUSTOM_DEPLOYMENT",
|
329653
|
-
resumeFunction: async (settlemint, id) => {
|
329654
|
-
return settlemint.customDeployment.resume(id);
|
329655
|
-
}
|
329656
|
-
});
|
329657
|
-
}
|
329658
|
-
|
329659
|
-
// src/commands/platform/insights/blockscout/resume.ts
|
329660
|
-
function blockscoutResumeCommand() {
|
329661
|
-
return getResumeCommand({
|
329662
|
-
name: "blockscout",
|
329663
|
-
type: "insights",
|
329664
|
-
alias: "bs",
|
329665
|
-
envKey: "SETTLEMINT_BLOCKSCOUT",
|
329666
|
-
resumeFunction: async (settlemint, id) => {
|
329667
|
-
return settlemint.insights.resume(id);
|
329668
|
-
}
|
329669
|
-
});
|
329670
|
-
}
|
329671
|
-
|
329672
|
-
// src/commands/platform/insights/resume.ts
|
329673
|
-
function insightsResumeCommand() {
|
329674
|
-
return new Command("insights").alias("in").description("Resume an insights service in the SettleMint platform").addCommand(blockscoutResumeCommand());
|
329675
|
-
}
|
329676
|
-
|
329677
|
-
// src/commands/platform/integration-tools/hasura/resume.ts
|
329678
|
-
function hasuraResumeCommand() {
|
329679
|
-
return getResumeCommand({
|
329680
|
-
name: "hasura",
|
329681
|
-
type: "integration tool",
|
329682
|
-
alias: "ha",
|
329683
|
-
envKey: "SETTLEMINT_HASURA",
|
329684
|
-
resumeFunction: async (settlemint, id) => {
|
329685
|
-
return settlemint.integrationTool.resume(id);
|
329686
|
-
}
|
329687
|
-
});
|
329688
|
-
}
|
329689
|
-
|
329690
|
-
// src/commands/platform/integration-tools/resume.ts
|
329691
|
-
function integrationToolResumeCommand() {
|
329692
|
-
return new Command("integration-tool").alias("it").description("Resume an integration tool service in the SettleMint platform").addCommand(hasuraResumeCommand());
|
329693
|
-
}
|
329694
|
-
|
329695
|
-
// src/commands/platform/load-balancer/resume.ts
|
329696
|
-
function loadBalancerResumeCommand() {
|
329697
|
-
return getResumeCommand({
|
329698
|
-
name: "load-balancer",
|
329699
|
-
type: "load balancer",
|
329700
|
-
alias: "lb",
|
329701
|
-
envKey: "SETTLEMINT_BLOCKCHAIN_NODE_OR_LOAD_BALANCER",
|
329702
|
-
resumeFunction: async (settlemint, id) => {
|
329703
|
-
return settlemint.loadBalancer.resume(id);
|
329704
|
-
}
|
329705
|
-
});
|
329706
|
-
}
|
329707
|
-
|
329708
|
-
// src/commands/platform/middleware/graph/resume.ts
|
329709
|
-
function graphMiddlewareResumeCommand() {
|
329710
|
-
return getResumeCommand({
|
329711
|
-
name: "graph",
|
329712
|
-
type: "middleware",
|
329713
|
-
alias: "gr",
|
329714
|
-
envKey: "SETTLEMINT_THEGRAPH",
|
329715
|
-
resumeFunction: async (settlemint, id) => {
|
329716
|
-
return settlemint.middleware.resume(id);
|
329717
|
-
}
|
329718
|
-
});
|
329719
|
-
}
|
329720
|
-
|
329721
|
-
// src/commands/platform/middleware/smart-contract-portal/resume.ts
|
329722
|
-
function smartContractPortalMiddlewareResumeCommand() {
|
329723
|
-
return getResumeCommand({
|
329724
|
-
name: "smart-contract-portal",
|
329725
|
-
type: "middleware",
|
329726
|
-
alias: "scp",
|
329727
|
-
envKey: "SETTLEMINT_PORTAL",
|
329728
|
-
resumeFunction: async (settlemint, id) => {
|
329729
|
-
return settlemint.middleware.resume(id);
|
329730
|
-
}
|
329731
|
-
});
|
329732
|
-
}
|
329733
|
-
|
329734
|
-
// src/commands/platform/middleware/resume.ts
|
329735
|
-
function middlewareResumeCommand() {
|
329736
|
-
return new Command("middleware").alias("mw").description("Resume a middleware service in the SettleMint platform").addCommand(graphMiddlewareResumeCommand()).addCommand(smartContractPortalMiddlewareResumeCommand());
|
329737
|
-
}
|
329738
|
-
|
329739
|
-
// src/commands/platform/private-key/resume.ts
|
329740
|
-
function privateKeyResumeCommand() {
|
329741
|
-
return getResumeCommand({
|
329742
|
-
name: "private-key",
|
329743
|
-
type: "private key",
|
329744
|
-
alias: "pk",
|
329745
|
-
envKey: "SETTLEMINT_ACCESSIBLE_PRIVATE_KEY",
|
329746
|
-
resumeFunction: async (settlemint, id) => {
|
329747
|
-
return settlemint.privateKey.resume(id);
|
329748
|
-
}
|
329749
|
-
});
|
329750
|
-
}
|
329751
|
-
|
329752
|
-
// src/commands/platform/storage/ipfs/resume.ts
|
329753
|
-
function ipfsStorageResumeCommand() {
|
329754
|
-
return getResumeCommand({
|
329755
|
-
name: "ipfs",
|
329756
|
-
type: "storage",
|
329757
|
-
alias: "ip",
|
329758
|
-
envKey: "SETTLEMINT_IPFS",
|
329759
|
-
resumeFunction: async (settlemint, id) => {
|
329760
|
-
return settlemint.storage.resume(id);
|
329761
|
-
}
|
329762
|
-
});
|
329763
|
-
}
|
329764
|
-
|
329765
|
-
// src/commands/platform/storage/minio/resume.ts
|
329766
|
-
function minioStorageResumeCommand() {
|
329767
|
-
return getResumeCommand({
|
329768
|
-
name: "minio",
|
329769
|
-
type: "storage",
|
329770
|
-
alias: "m",
|
329771
|
-
envKey: "SETTLEMINT_MINIO",
|
329772
|
-
resumeFunction: async (settlemint, id) => {
|
329773
|
-
return settlemint.storage.resume(id);
|
329774
|
-
}
|
329775
|
-
});
|
329776
|
-
}
|
329777
|
-
|
329778
|
-
// src/commands/platform/storage/resume.ts
|
329779
|
-
function storageResumeCommand() {
|
329780
|
-
return new Command("storage").alias("st").description("Resume a storage service in the SettleMint platform").addCommand(ipfsStorageResumeCommand()).addCommand(minioStorageResumeCommand());
|
329781
|
-
}
|
329782
|
-
|
329783
|
-
// src/commands/platform/resume.ts
|
329784
|
-
function resumeCommand() {
|
329785
|
-
const cmd2 = new Command("resume").description("Resume a resource in the SettleMint platform").addCommand(blockchainNodeResumeCommand()).addCommand(blockchainNetworkResumeCommand()).addCommand(customDeploymentResumeCommand()).addCommand(insightsResumeCommand()).addCommand(integrationToolResumeCommand()).addCommand(loadBalancerResumeCommand()).addCommand(middlewareResumeCommand()).addCommand(privateKeyResumeCommand()).addCommand(storageResumeCommand());
|
329786
|
-
return cmd2;
|
329787
|
-
}
|
329788
|
-
|
329789
328172
|
// src/commands/platform/custom-deployments/update.ts
|
329790
328173
|
function customDeploymentsUpdateCommand() {
|
329791
328174
|
return new Command("custom-deployment").alias("cd").argument("<tag>", "The tag to update the custom deployment to").option("--unique-name <uniqueName>", "The unique name of the custom deployment to update. If not provided, will use SETTLEMINT_CUSTOM_DEPLOYMENT from env").option("--prod", "Connect to your production environment").option("--wait", "Wait for the custom deployment to be redeployed").description("Update a custom deployment in the SettleMint platform").usage(createExamples([
|
@@ -329850,7 +328233,7 @@ function jsonOutput(data) {
|
|
329850
328233
|
var composer = require_composer();
|
329851
328234
|
var Document = require_Document();
|
329852
328235
|
var Schema = require_Schema();
|
329853
|
-
var
|
328236
|
+
var errors4 = require_errors3();
|
329854
328237
|
var Alias = require_Alias();
|
329855
328238
|
var identity2 = require_identity();
|
329856
328239
|
var Pair = require_Pair();
|
@@ -329866,9 +328249,9 @@ var visit2 = require_visit();
|
|
329866
328249
|
var $Composer = composer.Composer;
|
329867
328250
|
var $Document = Document.Document;
|
329868
328251
|
var $Schema = Schema.Schema;
|
329869
|
-
var $YAMLError =
|
329870
|
-
var $YAMLParseError =
|
329871
|
-
var $YAMLWarning =
|
328252
|
+
var $YAMLError = errors4.YAMLError;
|
328253
|
+
var $YAMLParseError = errors4.YAMLParseError;
|
328254
|
+
var $YAMLWarning = errors4.YAMLWarning;
|
329872
328255
|
var $Alias = Alias.Alias;
|
329873
328256
|
var $isAlias = identity2.isAlias;
|
329874
328257
|
var $isCollection = identity2.isCollection;
|
@@ -330176,7 +328559,7 @@ function servicesCommand() {
|
|
330176
328559
|
if (!applicationUniqueName) {
|
330177
328560
|
return nothingSelectedError("application");
|
330178
328561
|
}
|
330179
|
-
let effectiveTypes;
|
328562
|
+
let effectiveTypes = undefined;
|
330180
328563
|
if (options.type && options.type.length > 0) {
|
330181
328564
|
effectiveTypes = options.type;
|
330182
328565
|
} else if (typeOperands && typeOperands.length > 0) {
|
@@ -330234,7 +328617,7 @@ async function getServicesAndMapResults({
|
|
330234
328617
|
const application = await settlemint.application.read(applicationUniqueName);
|
330235
328618
|
const services = await servicesSpinner(settlemint, applicationUniqueName, types4);
|
330236
328619
|
const results = (types4 ?? SERVICE_TYPES).filter((serviceType) => !types4 || types4.includes(serviceType)).map((serviceType) => {
|
330237
|
-
const [_6, labels] = Object.entries(LABELS_MAP).find(([
|
328620
|
+
const [_6, labels] = Object.entries(LABELS_MAP).find(([key2, value4]) => value4.command === serviceType) ?? [
|
330238
328621
|
null,
|
330239
328622
|
{ plural: serviceType }
|
330240
328623
|
];
|
@@ -330361,7 +328744,7 @@ function listCommand() {
|
|
330361
328744
|
|
330362
328745
|
// src/commands/platform.ts
|
330363
328746
|
function platformCommand() {
|
330364
|
-
return new Command("platform").description("Manage SettleMint platform resources").addCommand(configCommand()).addCommand(createCommand3()).addCommand(deleteCommand()).addCommand(listCommand()).addCommand(
|
328747
|
+
return new Command("platform").description("Manage SettleMint platform resources").addCommand(configCommand()).addCommand(createCommand3()).addCommand(deleteCommand()).addCommand(listCommand()).addCommand(restartCommand()).addCommand(updateCommand());
|
330365
328748
|
}
|
330366
328749
|
|
330367
328750
|
// src/commands/smart-contract-set/create.ts
|
@@ -330411,7 +328794,7 @@ var import_which = __toESM(require_lib5(), 1);
|
|
330411
328794
|
async function executeFoundryCommand(command, args) {
|
330412
328795
|
try {
|
330413
328796
|
await import_which.default(command);
|
330414
|
-
} catch (
|
328797
|
+
} catch (error45) {
|
330415
328798
|
cancel2("Foundry is not installed. Instructions to install Foundry can be found here: https://book.getfoundry.sh/getting-started/installation");
|
330416
328799
|
}
|
330417
328800
|
return executeCommand(command, args);
|
@@ -330475,11 +328858,11 @@ function createCommand4() {
|
|
330475
328858
|
|
330476
328859
|
// src/utils/commands/passthrough-options.ts
|
330477
328860
|
function mapPassthroughOptions(options, command) {
|
330478
|
-
const optionArgs = Object.entries(options).map(([
|
328861
|
+
const optionArgs = Object.entries(options).map(([key2, value4]) => {
|
330479
328862
|
if (value4 === true) {
|
330480
|
-
return `--${
|
328863
|
+
return `--${key2}`;
|
330481
328864
|
}
|
330482
|
-
return `--${
|
328865
|
+
return `--${key2}=${value4}`;
|
330483
328866
|
});
|
330484
328867
|
return [...optionArgs, ...command.args];
|
330485
328868
|
}
|
@@ -330499,7 +328882,7 @@ function foundryBuildCommand() {
|
|
330499
328882
|
description: "Build the smart contracts with additional Forge options",
|
330500
328883
|
command: "scs foundry build --optimize --force"
|
330501
328884
|
}
|
330502
|
-
])).helpOption(false).option("-h, --help", "Get list of possible forge options").passThroughOptions().allowUnknownOption(true).arguments("[operands...]").action(async (operands, options,
|
328885
|
+
])).helpOption(false).option("-h, --help", "Get list of possible forge options").passThroughOptions().allowUnknownOption(true).arguments("[operands...]").action(async (operands, options, cmd2) => {
|
330503
328886
|
intro("Building smart contracts using Foundry");
|
330504
328887
|
const forgeOptions = mapPassthroughOptions(options, { args: operands });
|
330505
328888
|
await executeFoundryCommand("forge", ["build", ...forgeOptions]);
|
@@ -330522,7 +328905,7 @@ function foundryFormatCommand() {
|
|
330522
328905
|
description: "Format the smart contracts with additional Forge options",
|
330523
328906
|
command: "scs foundry format --check"
|
330524
328907
|
}
|
330525
|
-
])).helpOption(false).option("-h, --help", "Get list of possible forge options").passThroughOptions().allowUnknownOption(true).arguments("[operands...]").action(async (operands, options,
|
328908
|
+
])).helpOption(false).option("-h, --help", "Get list of possible forge options").passThroughOptions().allowUnknownOption(true).arguments("[operands...]").action(async (operands, options, cmd2) => {
|
330526
328909
|
intro("Formatting smart contracts using Foundry");
|
330527
328910
|
const forgeOptions = mapPassthroughOptions(options, { args: operands });
|
330528
328911
|
await executeFoundryCommand("forge", ["fmt", ...forgeOptions]);
|
@@ -330545,7 +328928,7 @@ function foundryNetworkCommand() {
|
|
330545
328928
|
description: "Start a development network using Foundry with a specific port",
|
330546
328929
|
command: "scs foundry network --port 3000"
|
330547
328930
|
}
|
330548
|
-
])).helpOption(false).option("-h, --help", "Get list of possible anvil options").passThroughOptions().allowUnknownOption(true).arguments("[operands...]").action(async (operands, options,
|
328931
|
+
])).helpOption(false).option("-h, --help", "Get list of possible anvil options").passThroughOptions().allowUnknownOption(true).arguments("[operands...]").action(async (operands, options, cmd2) => {
|
330549
328932
|
const anvilOptions = mapPassthroughOptions(options, { args: operands });
|
330550
328933
|
await executeFoundryCommand("anvil", anvilOptions);
|
330551
328934
|
});
|
@@ -330566,7 +328949,7 @@ function foundryTestCommand() {
|
|
330566
328949
|
description: "Run a specific test function",
|
330567
328950
|
command: "scs foundry test --match-test testToken"
|
330568
328951
|
}
|
330569
|
-
])).helpOption(false).option("-h, --help", "Get list of possible forge options").passThroughOptions().allowUnknownOption(true).arguments("[operands...]").action(async (operands, options,
|
328952
|
+
])).helpOption(false).option("-h, --help", "Get list of possible forge options").passThroughOptions().allowUnknownOption(true).arguments("[operands...]").action(async (operands, options, cmd2) => {
|
330570
328953
|
intro("Running smart contract tests using Foundry");
|
330571
328954
|
const forgeOptions = mapPassthroughOptions(options, { args: operands });
|
330572
328955
|
await executeFoundryCommand("forge", ["test", ...forgeOptions]);
|
@@ -330580,7 +328963,7 @@ var validateIfRequiredPackagesAreInstalled = async (packages, cwd2) => {
|
|
330580
328963
|
try {
|
330581
328964
|
const isInstalled = await isPackageInstalled(pkg, cwd2);
|
330582
328965
|
return { packageName: pkg, isInstalled };
|
330583
|
-
} catch (
|
328966
|
+
} catch (err) {
|
330584
328967
|
return { packageName: pkg, isInstalled: false };
|
330585
328968
|
}
|
330586
328969
|
}));
|
@@ -330605,7 +328988,7 @@ function hardhatBuildCommand() {
|
|
330605
328988
|
description: "Build the smart contracts using additional options to the Hardhat compile command",
|
330606
328989
|
command: "scs hardhat build --concurrency 2"
|
330607
328990
|
}
|
330608
|
-
])).helpOption(false).option("-h, --help", "Get list of possible hardhat compile options").passThroughOptions().allowUnknownOption(true).arguments("[operands...]").action(async (operands, options,
|
328991
|
+
])).helpOption(false).option("-h, --help", "Get list of possible hardhat compile options").passThroughOptions().allowUnknownOption(true).arguments("[operands...]").action(async (operands, options, cmd2) => {
|
330609
328992
|
intro("Building smart contracts using Hardhat");
|
330610
328993
|
await validateIfRequiredPackagesAreInstalled(["hardhat"]);
|
330611
328994
|
const hardhatOptions = mapPassthroughOptions(options, { args: operands });
|
@@ -330676,7 +329059,7 @@ async function selectTargetNode({
|
|
330676
329059
|
settlemint
|
330677
329060
|
}) {
|
330678
329061
|
const nodeUniqueName = blockchainNodeUniqueName ?? (autoAccept ? env2.SETTLEMINT_BLOCKCHAIN_NODE : undefined);
|
330679
|
-
let node;
|
329062
|
+
let node = undefined;
|
330680
329063
|
if (!nodeUniqueName) {
|
330681
329064
|
if (!env2.SETTLEMINT_APPLICATION) {
|
330682
329065
|
return missingApplication();
|
@@ -330900,7 +329283,7 @@ function hardhatDeployRemoteCommand() {
|
|
330900
329283
|
} else {
|
330901
329284
|
note("Smart contract deployment was cancelled");
|
330902
329285
|
}
|
330903
|
-
} catch (
|
329286
|
+
} catch (error45) {
|
330904
329287
|
cancel2("The smart contract deployment was unsuccessful. Please check the error details above and try again. You may need to review your contract code or deployment configuration.");
|
330905
329288
|
}
|
330906
329289
|
});
|
@@ -330930,7 +329313,7 @@ function hardhatNetworkCommand() {
|
|
330930
329313
|
description: "Start a development network using Hardhat with a specific port",
|
330931
329314
|
command: "scs hardhat network --port 3000"
|
330932
329315
|
}
|
330933
|
-
])).helpOption(false).option("-h, --help", "Get list of possible hardhat node options").passThroughOptions().allowUnknownOption(true).arguments("[operands...]").action(async (operands, options,
|
329316
|
+
])).helpOption(false).option("-h, --help", "Get list of possible hardhat node options").passThroughOptions().allowUnknownOption(true).arguments("[operands...]").action(async (operands, options, cmd2) => {
|
330934
329317
|
intro("Starting development network using Hardhat");
|
330935
329318
|
await validateIfRequiredPackagesAreInstalled(["hardhat"]);
|
330936
329319
|
const hardhatOptions = mapPassthroughOptions(options, { args: operands });
|
@@ -331039,7 +329422,7 @@ function hardhatTestCommand() {
|
|
331039
329422
|
description: "Run a specific test file",
|
331040
329423
|
command: "scs hardhat test test/token.test.ts"
|
331041
329424
|
}
|
331042
|
-
])).helpOption(false).option("-h, --help", "Get list of possible hardhat test options").passThroughOptions().allowUnknownOption(true).arguments("[operands...]").action(async (operands, options,
|
329425
|
+
])).helpOption(false).option("-h, --help", "Get list of possible hardhat test options").passThroughOptions().allowUnknownOption(true).arguments("[operands...]").action(async (operands, options, cmd2) => {
|
331043
329426
|
intro("Running smart contract tests using Hardhat");
|
331044
329427
|
await validateIfRequiredPackagesAreInstalled(["hardhat"]);
|
331045
329428
|
const hardhatOptions = mapPassthroughOptions(options, { args: operands });
|
@@ -331297,12 +329680,12 @@ async function getNodeName({
|
|
331297
329680
|
|
331298
329681
|
// src/commands/smart-contract-set/subgraph/build.ts
|
331299
329682
|
function subgraphBuildCommand() {
|
331300
|
-
return new Command("build").description("Build the subgraph").
|
329683
|
+
return new Command("build").description("Build the subgraph").usage(createExamples([
|
331301
329684
|
{
|
331302
329685
|
description: "Build the subgraph",
|
331303
329686
|
command: "scs subgraph build"
|
331304
329687
|
}
|
331305
|
-
])).action(async (
|
329688
|
+
])).action(async () => {
|
331306
329689
|
intro("Building subgraph");
|
331307
329690
|
await validateIfRequiredPackagesAreInstalled(["@graphprotocol/graph-cli"]);
|
331308
329691
|
await subgraphSetup({
|
@@ -331311,7 +329694,7 @@ function subgraphBuildCommand() {
|
|
331311
329694
|
const { command, args } = await getPackageManagerExecutable();
|
331312
329695
|
const subgraphYamlFile = await getSubgraphYamlFile();
|
331313
329696
|
await executeCommand(command, [...args, "graph", "codegen", subgraphYamlFile]);
|
331314
|
-
await executeCommand(command, [...args, "graph", "build",
|
329697
|
+
await executeCommand(command, [...args, "graph", "build", subgraphYamlFile]);
|
331315
329698
|
outro("Subgraph built successfully");
|
331316
329699
|
});
|
331317
329700
|
}
|
@@ -331707,4 +330090,4 @@ async function sdkCliCommand(argv = process.argv) {
|
|
331707
330090
|
// src/cli.ts
|
331708
330091
|
sdkCliCommand();
|
331709
330092
|
|
331710
|
-
//# debugId=
|
330093
|
+
//# debugId=A13B72A7B38F752864756E2164756E21
|