@settlemint/sdk-cli 2.6.2-pr6b918f55 → 2.6.2-pr7190db47
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 +63 -169
- package/dist/cli.js.map +7 -7
- package/package.json +12 -12
package/dist/cli.js
CHANGED
@@ -3666,124 +3666,6 @@ var require_lib = __commonJS((exports, module) => {
|
|
3666
3666
|
module.exports = MuteStream;
|
3667
3667
|
});
|
3668
3668
|
|
3669
|
-
// ../../node_modules/.bun/ansi-escapes@4.3.2/node_modules/ansi-escapes/index.js
|
3670
|
-
var require_ansi_escapes = __commonJS((exports, module) => {
|
3671
|
-
var ansiEscapes = exports;
|
3672
|
-
exports.default = ansiEscapes;
|
3673
|
-
var ESC = "\x1B[";
|
3674
|
-
var OSC = "\x1B]";
|
3675
|
-
var BEL = "\x07";
|
3676
|
-
var SEP = ";";
|
3677
|
-
var isTerminalApp = process.env.TERM_PROGRAM === "Apple_Terminal";
|
3678
|
-
ansiEscapes.cursorTo = (x, y) => {
|
3679
|
-
if (typeof x !== "number") {
|
3680
|
-
throw new TypeError("The `x` argument is required");
|
3681
|
-
}
|
3682
|
-
if (typeof y !== "number") {
|
3683
|
-
return ESC + (x + 1) + "G";
|
3684
|
-
}
|
3685
|
-
return ESC + (y + 1) + ";" + (x + 1) + "H";
|
3686
|
-
};
|
3687
|
-
ansiEscapes.cursorMove = (x, y) => {
|
3688
|
-
if (typeof x !== "number") {
|
3689
|
-
throw new TypeError("The `x` argument is required");
|
3690
|
-
}
|
3691
|
-
let ret = "";
|
3692
|
-
if (x < 0) {
|
3693
|
-
ret += ESC + -x + "D";
|
3694
|
-
} else if (x > 0) {
|
3695
|
-
ret += ESC + x + "C";
|
3696
|
-
}
|
3697
|
-
if (y < 0) {
|
3698
|
-
ret += ESC + -y + "A";
|
3699
|
-
} else if (y > 0) {
|
3700
|
-
ret += ESC + y + "B";
|
3701
|
-
}
|
3702
|
-
return ret;
|
3703
|
-
};
|
3704
|
-
ansiEscapes.cursorUp = (count = 1) => ESC + count + "A";
|
3705
|
-
ansiEscapes.cursorDown = (count = 1) => ESC + count + "B";
|
3706
|
-
ansiEscapes.cursorForward = (count = 1) => ESC + count + "C";
|
3707
|
-
ansiEscapes.cursorBackward = (count = 1) => ESC + count + "D";
|
3708
|
-
ansiEscapes.cursorLeft = ESC + "G";
|
3709
|
-
ansiEscapes.cursorSavePosition = isTerminalApp ? "\x1B7" : ESC + "s";
|
3710
|
-
ansiEscapes.cursorRestorePosition = isTerminalApp ? "\x1B8" : ESC + "u";
|
3711
|
-
ansiEscapes.cursorGetPosition = ESC + "6n";
|
3712
|
-
ansiEscapes.cursorNextLine = ESC + "E";
|
3713
|
-
ansiEscapes.cursorPrevLine = ESC + "F";
|
3714
|
-
ansiEscapes.cursorHide = ESC + "?25l";
|
3715
|
-
ansiEscapes.cursorShow = ESC + "?25h";
|
3716
|
-
ansiEscapes.eraseLines = (count) => {
|
3717
|
-
let clear = "";
|
3718
|
-
for (let i = 0;i < count; i++) {
|
3719
|
-
clear += ansiEscapes.eraseLine + (i < count - 1 ? ansiEscapes.cursorUp() : "");
|
3720
|
-
}
|
3721
|
-
if (count) {
|
3722
|
-
clear += ansiEscapes.cursorLeft;
|
3723
|
-
}
|
3724
|
-
return clear;
|
3725
|
-
};
|
3726
|
-
ansiEscapes.eraseEndLine = ESC + "K";
|
3727
|
-
ansiEscapes.eraseStartLine = ESC + "1K";
|
3728
|
-
ansiEscapes.eraseLine = ESC + "2K";
|
3729
|
-
ansiEscapes.eraseDown = ESC + "J";
|
3730
|
-
ansiEscapes.eraseUp = ESC + "1J";
|
3731
|
-
ansiEscapes.eraseScreen = ESC + "2J";
|
3732
|
-
ansiEscapes.scrollUp = ESC + "S";
|
3733
|
-
ansiEscapes.scrollDown = ESC + "T";
|
3734
|
-
ansiEscapes.clearScreen = "\x1Bc";
|
3735
|
-
ansiEscapes.clearTerminal = process.platform === "win32" ? `${ansiEscapes.eraseScreen}${ESC}0f` : `${ansiEscapes.eraseScreen}${ESC}3J${ESC}H`;
|
3736
|
-
ansiEscapes.beep = BEL;
|
3737
|
-
ansiEscapes.link = (text, url) => {
|
3738
|
-
return [
|
3739
|
-
OSC,
|
3740
|
-
"8",
|
3741
|
-
SEP,
|
3742
|
-
SEP,
|
3743
|
-
url,
|
3744
|
-
BEL,
|
3745
|
-
text,
|
3746
|
-
OSC,
|
3747
|
-
"8",
|
3748
|
-
SEP,
|
3749
|
-
SEP,
|
3750
|
-
BEL
|
3751
|
-
].join("");
|
3752
|
-
};
|
3753
|
-
ansiEscapes.image = (buffer, options = {}) => {
|
3754
|
-
let ret = `${OSC}1337;File=inline=1`;
|
3755
|
-
if (options.width) {
|
3756
|
-
ret += `;width=${options.width}`;
|
3757
|
-
}
|
3758
|
-
if (options.height) {
|
3759
|
-
ret += `;height=${options.height}`;
|
3760
|
-
}
|
3761
|
-
if (options.preserveAspectRatio === false) {
|
3762
|
-
ret += ";preserveAspectRatio=0";
|
3763
|
-
}
|
3764
|
-
return ret + ":" + buffer.toString("base64") + BEL;
|
3765
|
-
};
|
3766
|
-
ansiEscapes.iTerm = {
|
3767
|
-
setCwd: (cwd = process.cwd()) => `${OSC}50;CurrentDir=${cwd}${BEL}`,
|
3768
|
-
annotation: (message, options = {}) => {
|
3769
|
-
let ret = `${OSC}1337;`;
|
3770
|
-
const hasX = typeof options.x !== "undefined";
|
3771
|
-
const hasY = typeof options.y !== "undefined";
|
3772
|
-
if ((hasX || hasY) && !(hasX && hasY && typeof options.length !== "undefined")) {
|
3773
|
-
throw new Error("`x`, `y` and `length` must be defined when `x` or `y` is defined");
|
3774
|
-
}
|
3775
|
-
message = message.replace(/\|/g, "");
|
3776
|
-
ret += options.isHidden ? "AddHiddenAnnotation=" : "AddAnnotation=";
|
3777
|
-
if (options.length > 0) {
|
3778
|
-
ret += (hasX ? [message, options.length, options.x, options.y] : [options.length, message]).join("|");
|
3779
|
-
} else {
|
3780
|
-
ret += message;
|
3781
|
-
}
|
3782
|
-
return ret + BEL;
|
3783
|
-
}
|
3784
|
-
};
|
3785
|
-
});
|
3786
|
-
|
3787
3669
|
// ../../node_modules/.bun/console-table-printer@2.14.6/node_modules/console-table-printer/dist/src/utils/colored-console-line.js
|
3788
3670
|
var require_colored_console_line = __commonJS((exports) => {
|
3789
3671
|
Object.defineProperty(exports, "__esModule", { value: true });
|
@@ -247510,14 +247392,14 @@ var {
|
|
247510
247392
|
Help
|
247511
247393
|
} = import__.default;
|
247512
247394
|
|
247513
|
-
// ../../node_modules/.bun/@inquirer+core@10.2.
|
247395
|
+
// ../../node_modules/.bun/@inquirer+core@10.2.2+4f29a949a66ffb46/node_modules/@inquirer/core/dist/esm/lib/key.js
|
247514
247396
|
var isUpKey = (key) => key.name === "up";
|
247515
247397
|
var isDownKey = (key) => key.name === "down";
|
247516
247398
|
var isBackspaceKey = (key) => key.name === "backspace";
|
247517
247399
|
var isTabKey = (key) => key.name === "tab";
|
247518
247400
|
var isNumberKey = (key) => "1234567890".includes(key.name);
|
247519
247401
|
var isEnterKey = (key) => key.name === "enter" || key.name === "return";
|
247520
|
-
// ../../node_modules/.bun/@inquirer+core@10.2.
|
247402
|
+
// ../../node_modules/.bun/@inquirer+core@10.2.2+4f29a949a66ffb46/node_modules/@inquirer/core/dist/esm/lib/errors.js
|
247521
247403
|
class AbortPromptError extends Error {
|
247522
247404
|
name = "AbortPromptError";
|
247523
247405
|
message = "Prompt was aborted";
|
@@ -247543,10 +247425,10 @@ class HookError extends Error {
|
|
247543
247425
|
class ValidationError extends Error {
|
247544
247426
|
name = "ValidationError";
|
247545
247427
|
}
|
247546
|
-
// ../../node_modules/.bun/@inquirer+core@10.2.
|
247428
|
+
// ../../node_modules/.bun/@inquirer+core@10.2.2+4f29a949a66ffb46/node_modules/@inquirer/core/dist/esm/lib/use-state.js
|
247547
247429
|
import { AsyncResource as AsyncResource2 } from "node:async_hooks";
|
247548
247430
|
|
247549
|
-
// ../../node_modules/.bun/@inquirer+core@10.2.
|
247431
|
+
// ../../node_modules/.bun/@inquirer+core@10.2.2+4f29a949a66ffb46/node_modules/@inquirer/core/dist/esm/lib/hook-engine.js
|
247550
247432
|
import { AsyncLocalStorage, AsyncResource } from "node:async_hooks";
|
247551
247433
|
var hookStorage = new AsyncLocalStorage;
|
247552
247434
|
function createStore(rl) {
|
@@ -247651,7 +247533,7 @@ var effectScheduler = {
|
|
247651
247533
|
}
|
247652
247534
|
};
|
247653
247535
|
|
247654
|
-
// ../../node_modules/.bun/@inquirer+core@10.2.
|
247536
|
+
// ../../node_modules/.bun/@inquirer+core@10.2.2+4f29a949a66ffb46/node_modules/@inquirer/core/dist/esm/lib/use-state.js
|
247655
247537
|
function useState(defaultValue) {
|
247656
247538
|
return withPointer((pointer) => {
|
247657
247539
|
const setState = AsyncResource2.bind(function setState(newValue) {
|
@@ -247669,7 +247551,7 @@ function useState(defaultValue) {
|
|
247669
247551
|
});
|
247670
247552
|
}
|
247671
247553
|
|
247672
|
-
// ../../node_modules/.bun/@inquirer+core@10.2.
|
247554
|
+
// ../../node_modules/.bun/@inquirer+core@10.2.2+4f29a949a66ffb46/node_modules/@inquirer/core/dist/esm/lib/use-effect.js
|
247673
247555
|
function useEffect(cb, depArray) {
|
247674
247556
|
withPointer((pointer) => {
|
247675
247557
|
const oldDeps = pointer.get();
|
@@ -247681,7 +247563,7 @@ function useEffect(cb, depArray) {
|
|
247681
247563
|
});
|
247682
247564
|
}
|
247683
247565
|
|
247684
|
-
// ../../node_modules/.bun/@inquirer+core@10.2.
|
247566
|
+
// ../../node_modules/.bun/@inquirer+core@10.2.2+4f29a949a66ffb46/node_modules/@inquirer/core/dist/esm/lib/theme.js
|
247685
247567
|
var import_yoctocolors_cjs = __toESM(require_yoctocolors_cjs(), 1);
|
247686
247568
|
|
247687
247569
|
// ../../node_modules/.bun/@inquirer+figures@1.0.13/node_modules/@inquirer/figures/dist/esm/index.js
|
@@ -247970,7 +247852,7 @@ var figures = shouldUseMain ? mainSymbols : fallbackSymbols;
|
|
247970
247852
|
var esm_default = figures;
|
247971
247853
|
var replacements = Object.entries(specialMainSymbols);
|
247972
247854
|
|
247973
|
-
// ../../node_modules/.bun/@inquirer+core@10.2.
|
247855
|
+
// ../../node_modules/.bun/@inquirer+core@10.2.2+4f29a949a66ffb46/node_modules/@inquirer/core/dist/esm/lib/theme.js
|
247974
247856
|
var defaultTheme = {
|
247975
247857
|
prefix: {
|
247976
247858
|
idle: import_yoctocolors_cjs.default.blue("?"),
|
@@ -247991,7 +247873,7 @@ var defaultTheme = {
|
|
247991
247873
|
}
|
247992
247874
|
};
|
247993
247875
|
|
247994
|
-
// ../../node_modules/.bun/@inquirer+core@10.2.
|
247876
|
+
// ../../node_modules/.bun/@inquirer+core@10.2.2+4f29a949a66ffb46/node_modules/@inquirer/core/dist/esm/lib/make-theme.js
|
247995
247877
|
function isPlainObject(value) {
|
247996
247878
|
if (typeof value !== "object" || value === null)
|
247997
247879
|
return false;
|
@@ -248019,7 +247901,7 @@ function makeTheme(...themes) {
|
|
248019
247901
|
return deepMerge(...themesToMerge);
|
248020
247902
|
}
|
248021
247903
|
|
248022
|
-
// ../../node_modules/.bun/@inquirer+core@10.2.
|
247904
|
+
// ../../node_modules/.bun/@inquirer+core@10.2.2+4f29a949a66ffb46/node_modules/@inquirer/core/dist/esm/lib/use-prefix.js
|
248023
247905
|
function usePrefix({ status = "idle", theme }) {
|
248024
247906
|
const [showLoader, setShowLoader] = useState(false);
|
248025
247907
|
const [tick, setTick] = useState(0);
|
@@ -248049,7 +247931,7 @@ function usePrefix({ status = "idle", theme }) {
|
|
248049
247931
|
const iconName = status === "loading" ? "idle" : status;
|
248050
247932
|
return typeof prefix === "string" ? prefix : prefix[iconName] ?? prefix["idle"];
|
248051
247933
|
}
|
248052
|
-
// ../../node_modules/.bun/@inquirer+core@10.2.
|
247934
|
+
// ../../node_modules/.bun/@inquirer+core@10.2.2+4f29a949a66ffb46/node_modules/@inquirer/core/dist/esm/lib/use-memo.js
|
248053
247935
|
function useMemo(fn, dependencies) {
|
248054
247936
|
return withPointer((pointer) => {
|
248055
247937
|
const prev = pointer.get();
|
@@ -248061,11 +247943,11 @@ function useMemo(fn, dependencies) {
|
|
248061
247943
|
return prev.value;
|
248062
247944
|
});
|
248063
247945
|
}
|
248064
|
-
// ../../node_modules/.bun/@inquirer+core@10.2.
|
247946
|
+
// ../../node_modules/.bun/@inquirer+core@10.2.2+4f29a949a66ffb46/node_modules/@inquirer/core/dist/esm/lib/use-ref.js
|
248065
247947
|
function useRef(val) {
|
248066
247948
|
return useState({ current: val })[0];
|
248067
247949
|
}
|
248068
|
-
// ../../node_modules/.bun/@inquirer+core@10.2.
|
247950
|
+
// ../../node_modules/.bun/@inquirer+core@10.2.2+4f29a949a66ffb46/node_modules/@inquirer/core/dist/esm/lib/use-keypress.js
|
248069
247951
|
function useKeypress(userHandler) {
|
248070
247952
|
const signal = useRef(userHandler);
|
248071
247953
|
signal.current = userHandler;
|
@@ -248083,7 +247965,7 @@ function useKeypress(userHandler) {
|
|
248083
247965
|
};
|
248084
247966
|
}, []);
|
248085
247967
|
}
|
248086
|
-
// ../../node_modules/.bun/@inquirer+core@10.2.
|
247968
|
+
// ../../node_modules/.bun/@inquirer+core@10.2.2+4f29a949a66ffb46/node_modules/@inquirer/core/dist/esm/lib/utils.js
|
248087
247969
|
var import_cli_width = __toESM(require_cli_width(), 1);
|
248088
247970
|
var import_wrap_ansi = __toESM(require_wrap_ansi(), 1);
|
248089
247971
|
function breakLines(content, width) {
|
@@ -248096,7 +247978,7 @@ function readlineWidth() {
|
|
248096
247978
|
return import_cli_width.default({ defaultWidth: 80, output: readline().output });
|
248097
247979
|
}
|
248098
247980
|
|
248099
|
-
// ../../node_modules/.bun/@inquirer+core@10.2.
|
247981
|
+
// ../../node_modules/.bun/@inquirer+core@10.2.2+4f29a949a66ffb46/node_modules/@inquirer/core/dist/esm/lib/pagination/use-pagination.js
|
248100
247982
|
function usePointerPosition({ active, renderedItems, pageSize, loop }) {
|
248101
247983
|
const state = useRef({
|
248102
247984
|
lastPointer: active,
|
@@ -248162,7 +248044,7 @@ function usePagination({ items, active, renderItem, pageSize, loop = true }) {
|
|
248162
248044
|
return pageBuffer.filter((line) => typeof line === "string").join(`
|
248163
248045
|
`);
|
248164
248046
|
}
|
248165
|
-
// ../../node_modules/.bun/@inquirer+core@10.2.
|
248047
|
+
// ../../node_modules/.bun/@inquirer+core@10.2.2+4f29a949a66ffb46/node_modules/@inquirer/core/dist/esm/lib/create-prompt.js
|
248166
248048
|
var import_mute_stream = __toESM(require_lib(), 1);
|
248167
248049
|
import * as readline2 from "node:readline";
|
248168
248050
|
import { AsyncResource as AsyncResource3 } from "node:async_hooks";
|
@@ -248375,16 +248257,30 @@ var {
|
|
248375
248257
|
unload
|
248376
248258
|
} = signalExitWrap(processOk(process3) ? new SignalExit(process3) : new SignalExitFallback);
|
248377
248259
|
|
248378
|
-
// ../../node_modules/.bun/@inquirer+core@10.2.
|
248379
|
-
var import_ansi_escapes = __toESM(require_ansi_escapes(), 1);
|
248260
|
+
// ../../node_modules/.bun/@inquirer+core@10.2.2+4f29a949a66ffb46/node_modules/@inquirer/core/dist/esm/lib/screen-manager.js
|
248380
248261
|
import { stripVTControlCharacters } from "node:util";
|
248262
|
+
|
248263
|
+
// ../../node_modules/.bun/@inquirer+ansi@1.0.0/node_modules/@inquirer/ansi/dist/esm/index.js
|
248264
|
+
var ESC = "\x1B[";
|
248265
|
+
var cursorLeft = ESC + "G";
|
248266
|
+
var cursorHide = ESC + "?25l";
|
248267
|
+
var cursorShow = ESC + "?25h";
|
248268
|
+
var cursorUp = (rows = 1) => rows > 0 ? `${ESC}${rows}A` : "";
|
248269
|
+
var cursorDown = (rows = 1) => rows > 0 ? `${ESC}${rows}B` : "";
|
248270
|
+
var cursorTo = (x, y) => {
|
248271
|
+
if (typeof y === "number" && !Number.isNaN(y)) {
|
248272
|
+
return `${ESC}${y + 1};${x + 1}H`;
|
248273
|
+
}
|
248274
|
+
return `${ESC}${x + 1}G`;
|
248275
|
+
};
|
248276
|
+
var eraseLine = ESC + "2K";
|
248277
|
+
var eraseLines = (lines) => lines > 0 ? (eraseLine + cursorUp(1)).repeat(lines - 1) + eraseLine + cursorLeft : "";
|
248278
|
+
|
248279
|
+
// ../../node_modules/.bun/@inquirer+core@10.2.2+4f29a949a66ffb46/node_modules/@inquirer/core/dist/esm/lib/screen-manager.js
|
248381
248280
|
var height = (content) => content.split(`
|
248382
248281
|
`).length;
|
248383
248282
|
var lastLine = (content) => content.split(`
|
248384
248283
|
`).pop() ?? "";
|
248385
|
-
function cursorDown(n) {
|
248386
|
-
return n > 0 ? import_ansi_escapes.default.cursorDown(n) : "";
|
248387
|
-
}
|
248388
248284
|
|
248389
248285
|
class ScreenManager {
|
248390
248286
|
height = 0;
|
@@ -248421,31 +248317,31 @@ class ScreenManager {
|
|
248421
248317
|
const promptLineUpDiff = Math.floor(rawPromptLine.length / width) - this.cursorPos.rows;
|
248422
248318
|
const bottomContentHeight = promptLineUpDiff + (bottomContent ? height(bottomContent) : 0);
|
248423
248319
|
if (bottomContentHeight > 0)
|
248424
|
-
output +=
|
248425
|
-
output +=
|
248426
|
-
this.write(cursorDown(this.extraLinesUnderPrompt) +
|
248320
|
+
output += cursorUp(bottomContentHeight);
|
248321
|
+
output += cursorTo(this.cursorPos.cols);
|
248322
|
+
this.write(cursorDown(this.extraLinesUnderPrompt) + eraseLines(this.height) + output);
|
248427
248323
|
this.extraLinesUnderPrompt = bottomContentHeight;
|
248428
248324
|
this.height = height(output);
|
248429
248325
|
}
|
248430
248326
|
checkCursorPos() {
|
248431
248327
|
const cursorPos = this.rl.getCursorPos();
|
248432
248328
|
if (cursorPos.cols !== this.cursorPos.cols) {
|
248433
|
-
this.write(
|
248329
|
+
this.write(cursorTo(cursorPos.cols));
|
248434
248330
|
this.cursorPos = cursorPos;
|
248435
248331
|
}
|
248436
248332
|
}
|
248437
248333
|
done({ clearContent }) {
|
248438
248334
|
this.rl.setPrompt("");
|
248439
248335
|
let output = cursorDown(this.extraLinesUnderPrompt);
|
248440
|
-
output += clearContent ?
|
248336
|
+
output += clearContent ? eraseLines(this.height) : `
|
248441
248337
|
`;
|
248442
|
-
output +=
|
248338
|
+
output += cursorShow;
|
248443
248339
|
this.write(output);
|
248444
248340
|
this.rl.close();
|
248445
248341
|
}
|
248446
248342
|
}
|
248447
248343
|
|
248448
|
-
// ../../node_modules/.bun/@inquirer+core@10.2.
|
248344
|
+
// ../../node_modules/.bun/@inquirer+core@10.2.2+4f29a949a66ffb46/node_modules/@inquirer/core/dist/esm/lib/promise-polyfill.js
|
248449
248345
|
class PromisePolyfill extends Promise {
|
248450
248346
|
static withResolver() {
|
248451
248347
|
let resolve;
|
@@ -248458,7 +248354,7 @@ class PromisePolyfill extends Promise {
|
|
248458
248354
|
}
|
248459
248355
|
}
|
248460
248356
|
|
248461
|
-
// ../../node_modules/.bun/@inquirer+core@10.2.
|
248357
|
+
// ../../node_modules/.bun/@inquirer+core@10.2.2+4f29a949a66ffb46/node_modules/@inquirer/core/dist/esm/lib/create-prompt.js
|
248462
248358
|
function getCallSites() {
|
248463
248359
|
const _prepareStackTrace = Error.prepareStackTrace;
|
248464
248360
|
let result = [];
|
@@ -248544,7 +248440,7 @@ function createPrompt(view) {
|
|
248544
248440
|
};
|
248545
248441
|
return prompt;
|
248546
248442
|
}
|
248547
|
-
// ../../node_modules/.bun/@inquirer+core@10.2.
|
248443
|
+
// ../../node_modules/.bun/@inquirer+core@10.2.2+4f29a949a66ffb46/node_modules/@inquirer/core/dist/esm/lib/Separator.js
|
248548
248444
|
var import_yoctocolors_cjs2 = __toESM(require_yoctocolors_cjs(), 1);
|
248549
248445
|
class Separator {
|
248550
248446
|
separator = import_yoctocolors_cjs2.default.dim(Array.from({ length: 15 }).join(esm_default.line));
|
@@ -267215,7 +267111,7 @@ function pruneCurrentEnv(currentEnv, env2) {
|
|
267215
267111
|
var package_default = {
|
267216
267112
|
name: "@settlemint/sdk-cli",
|
267217
267113
|
description: "Command-line interface for SettleMint SDK, providing development tools and project management capabilities",
|
267218
|
-
version: "2.6.2-
|
267114
|
+
version: "2.6.2-pr7190db47",
|
267219
267115
|
type: "module",
|
267220
267116
|
private: false,
|
267221
267117
|
license: "FSL-1.1-MIT",
|
@@ -267258,22 +267154,22 @@ var package_default = {
|
|
267258
267154
|
},
|
267259
267155
|
dependencies: {
|
267260
267156
|
"@gql.tada/cli-utils": "1.7.1",
|
267261
|
-
"@inquirer/core": "10.2.
|
267157
|
+
"@inquirer/core": "10.2.2",
|
267262
267158
|
"node-fetch-native": "1.6.7",
|
267263
267159
|
zod: "^4"
|
267264
267160
|
},
|
267265
267161
|
devDependencies: {
|
267266
267162
|
"@commander-js/extra-typings": "14.0.0",
|
267267
267163
|
commander: "14.0.1",
|
267268
|
-
"@inquirer/confirm": "5.1.
|
267269
|
-
"@inquirer/input": "4.2.
|
267270
|
-
"@inquirer/password": "4.0.
|
267271
|
-
"@inquirer/select": "4.3.
|
267272
|
-
"@settlemint/sdk-hasura": "2.6.2-
|
267273
|
-
"@settlemint/sdk-js": "2.6.2-
|
267274
|
-
"@settlemint/sdk-utils": "2.6.2-
|
267275
|
-
"@settlemint/sdk-viem": "2.6.2-
|
267276
|
-
"@types/node": "24.
|
267164
|
+
"@inquirer/confirm": "5.1.18",
|
267165
|
+
"@inquirer/input": "4.2.4",
|
267166
|
+
"@inquirer/password": "4.0.20",
|
267167
|
+
"@inquirer/select": "4.3.4",
|
267168
|
+
"@settlemint/sdk-hasura": "2.6.2-pr7190db47",
|
267169
|
+
"@settlemint/sdk-js": "2.6.2-pr7190db47",
|
267170
|
+
"@settlemint/sdk-utils": "2.6.2-pr7190db47",
|
267171
|
+
"@settlemint/sdk-viem": "2.6.2-pr7190db47",
|
267172
|
+
"@types/node": "24.5.0",
|
267277
267173
|
"@types/semver": "7.7.1",
|
267278
267174
|
"@types/which": "3.0.4",
|
267279
267175
|
"get-tsconfig": "4.10.1",
|
@@ -267289,7 +267185,7 @@ var package_default = {
|
|
267289
267185
|
},
|
267290
267186
|
peerDependencies: {
|
267291
267187
|
hardhat: "<= 4",
|
267292
|
-
"@settlemint/sdk-js": "2.6.2-
|
267188
|
+
"@settlemint/sdk-js": "2.6.2-pr7190db47"
|
267293
267189
|
},
|
267294
267190
|
peerDependenciesMeta: {
|
267295
267191
|
hardhat: {
|
@@ -273107,7 +273003,7 @@ function sanitizeName(value5, length = 35) {
|
|
273107
273003
|
}).slice(0, length).replaceAll(/(^\d*)/g, "").replaceAll(/(-$)/g, "").replaceAll(/(^-)/g, "");
|
273108
273004
|
}
|
273109
273005
|
|
273110
|
-
// ../../node_modules/.bun/@inquirer+input@4.2.
|
273006
|
+
// ../../node_modules/.bun/@inquirer+input@4.2.4+4f29a949a66ffb46/node_modules/@inquirer/input/dist/esm/index.js
|
273111
273007
|
var inputTheme = {
|
273112
273008
|
validationFailureMode: "keep"
|
273113
273009
|
};
|
@@ -273197,9 +273093,8 @@ async function subgraphNamePrompt({
|
|
273197
273093
|
return sanitizeName(subgraphName);
|
273198
273094
|
}
|
273199
273095
|
|
273200
|
-
// ../../node_modules/.bun/@inquirer+select@4.3.
|
273096
|
+
// ../../node_modules/.bun/@inquirer+select@4.3.4+4f29a949a66ffb46/node_modules/@inquirer/select/dist/esm/index.js
|
273201
273097
|
var import_yoctocolors_cjs3 = __toESM(require_yoctocolors_cjs(), 1);
|
273202
|
-
var import_ansi_escapes2 = __toESM(require_ansi_escapes(), 1);
|
273203
273098
|
var selectTheme = {
|
273204
273099
|
icon: { cursor: esm_default.pointer },
|
273205
273100
|
style: {
|
@@ -273350,7 +273245,7 @@ ${theme.style.help(`(${config3.instructions?.pager ?? "Use arrow keys to reveal
|
|
273350
273245
|
const choiceDescription = selectedChoice.description ? `
|
273351
273246
|
${theme.style.description(selectedChoice.description)}` : ``;
|
273352
273247
|
return `${[prefix, message, helpTipTop].filter(Boolean).join(" ")}
|
273353
|
-
${page}${helpTipBottom}${choiceDescription}${
|
273248
|
+
${page}${helpTipBottom}${choiceDescription}${cursorHide}`;
|
273354
273249
|
});
|
273355
273250
|
|
273356
273251
|
// src/prompts/smart-contract-set/subgraph.prompt.ts
|
@@ -298936,7 +298831,7 @@ function extractInfoFromBody(body) {
|
|
298936
298831
|
}
|
298937
298832
|
}
|
298938
298833
|
|
298939
|
-
// ../../node_modules/.bun/@inquirer+confirm@5.1.
|
298834
|
+
// ../../node_modules/.bun/@inquirer+confirm@5.1.18+4f29a949a66ffb46/node_modules/@inquirer/confirm/dist/esm/index.js
|
298940
298835
|
function getBooleanValue(value5, defaultValue) {
|
298941
298836
|
let answer = defaultValue !== false;
|
298942
298837
|
if (/^(y|yes)/i.test(value5))
|
@@ -298982,8 +298877,7 @@ var esm_default4 = createPrompt((config3, done) => {
|
|
298982
298877
|
return `${prefix} ${message}${defaultValue} ${formattedValue}`;
|
298983
298878
|
});
|
298984
298879
|
|
298985
|
-
// ../../node_modules/.bun/@inquirer+password@4.0.
|
298986
|
-
var import_ansi_escapes3 = __toESM(require_ansi_escapes(), 1);
|
298880
|
+
// ../../node_modules/.bun/@inquirer+password@4.0.20+4f29a949a66ffb46/node_modules/@inquirer/password/dist/esm/index.js
|
298987
298881
|
var esm_default5 = createPrompt((config3, done) => {
|
298988
298882
|
const { validate: validate8 = () => true } = config3;
|
298989
298883
|
const theme = makeTheme(config3.theme);
|
@@ -299020,7 +298914,7 @@ var esm_default5 = createPrompt((config3, done) => {
|
|
299020
298914
|
const maskChar = typeof config3.mask === "string" ? config3.mask : "*";
|
299021
298915
|
formattedValue = maskChar.repeat(value5.length);
|
299022
298916
|
} else if (status !== "done") {
|
299023
|
-
helpTip = `${theme.style.help("[input is masked]")}${
|
298917
|
+
helpTip = `${theme.style.help("[input is masked]")}${cursorHide}`;
|
299024
298918
|
}
|
299025
298919
|
if (status === "done") {
|
299026
298920
|
formattedValue = theme.style.answer(formattedValue);
|
@@ -308593,4 +308487,4 @@ async function sdkCliCommand(argv = process.argv) {
|
|
308593
308487
|
// src/cli.ts
|
308594
308488
|
sdkCliCommand();
|
308595
308489
|
|
308596
|
-
//# debugId=
|
308490
|
+
//# debugId=8E151655A3126FE064756E2164756E21
|