@settlemint/sdk-cli 2.6.2-maind3ce3378 → 2.6.2-pr024a83ae

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 CHANGED
@@ -29,7 +29,7 @@ var __export = (target, all) => {
29
29
  var __esm = (fn, res) => () => (fn && (res = fn(fn = 0)), res);
30
30
  var __require = /* @__PURE__ */ createRequire(import.meta.url);
31
31
 
32
- // ../../node_modules/.bun/commander@14.0.0/node_modules/commander/lib/error.js
32
+ // ../../node_modules/.bun/commander@14.0.1/node_modules/commander/lib/error.js
33
33
  var require_error = __commonJS((exports) => {
34
34
  class CommanderError extends Error {
35
35
  constructor(exitCode, code, message) {
@@ -53,7 +53,7 @@ var require_error = __commonJS((exports) => {
53
53
  exports.InvalidArgumentError = InvalidArgumentError;
54
54
  });
55
55
 
56
- // ../../node_modules/.bun/commander@14.0.0/node_modules/commander/lib/argument.js
56
+ // ../../node_modules/.bun/commander@14.0.1/node_modules/commander/lib/argument.js
57
57
  var require_argument = __commonJS((exports) => {
58
58
  var { InvalidArgumentError } = require_error();
59
59
 
@@ -79,7 +79,7 @@ var require_argument = __commonJS((exports) => {
79
79
  this._name = name;
80
80
  break;
81
81
  }
82
- if (this._name.length > 3 && this._name.slice(-3) === "...") {
82
+ if (this._name.endsWith("...")) {
83
83
  this.variadic = true;
84
84
  this._name = this._name.slice(0, -3);
85
85
  }
@@ -87,11 +87,12 @@ var require_argument = __commonJS((exports) => {
87
87
  name() {
88
88
  return this._name;
89
89
  }
90
- _concatValue(value, previous) {
90
+ _collectValue(value, previous) {
91
91
  if (previous === this.defaultValue || !Array.isArray(previous)) {
92
92
  return [value];
93
93
  }
94
- return previous.concat(value);
94
+ previous.push(value);
95
+ return previous;
95
96
  }
96
97
  default(value, description) {
97
98
  this.defaultValue = value;
@@ -109,7 +110,7 @@ var require_argument = __commonJS((exports) => {
109
110
  throw new InvalidArgumentError(`Allowed choices are ${this.argChoices.join(", ")}.`);
110
111
  }
111
112
  if (this.variadic) {
112
- return this._concatValue(arg, previous);
113
+ return this._collectValue(arg, previous);
113
114
  }
114
115
  return arg;
115
116
  };
@@ -132,7 +133,7 @@ var require_argument = __commonJS((exports) => {
132
133
  exports.humanReadableArgName = humanReadableArgName;
133
134
  });
134
135
 
135
- // ../../node_modules/.bun/commander@14.0.0/node_modules/commander/lib/help.js
136
+ // ../../node_modules/.bun/commander@14.0.1/node_modules/commander/lib/help.js
136
137
  var require_help = __commonJS((exports) => {
137
138
  var { humanReadableArgName } = require_argument();
138
139
 
@@ -489,7 +490,7 @@ ${itemIndentStr}`);
489
490
  exports.stripColor = stripColor;
490
491
  });
491
492
 
492
- // ../../node_modules/.bun/commander@14.0.0/node_modules/commander/lib/option.js
493
+ // ../../node_modules/.bun/commander@14.0.1/node_modules/commander/lib/option.js
493
494
  var require_option = __commonJS((exports) => {
494
495
  var { InvalidArgumentError } = require_error();
495
496
 
@@ -556,11 +557,12 @@ var require_option = __commonJS((exports) => {
556
557
  this.hidden = !!hide;
557
558
  return this;
558
559
  }
559
- _concatValue(value, previous) {
560
+ _collectValue(value, previous) {
560
561
  if (previous === this.defaultValue || !Array.isArray(previous)) {
561
562
  return [value];
562
563
  }
563
- return previous.concat(value);
564
+ previous.push(value);
565
+ return previous;
564
566
  }
565
567
  choices(values) {
566
568
  this.argChoices = values.slice();
@@ -569,7 +571,7 @@ var require_option = __commonJS((exports) => {
569
571
  throw new InvalidArgumentError(`Allowed choices are ${this.argChoices.join(", ")}.`);
570
572
  }
571
573
  if (this.variadic) {
572
- return this._concatValue(arg, previous);
574
+ return this._collectValue(arg, previous);
573
575
  }
574
576
  return arg;
575
577
  };
@@ -672,7 +674,7 @@ var require_option = __commonJS((exports) => {
672
674
  exports.DualOptions = DualOptions;
673
675
  });
674
676
 
675
- // ../../node_modules/.bun/commander@14.0.0/node_modules/commander/lib/suggestSimilar.js
677
+ // ../../node_modules/.bun/commander@14.0.1/node_modules/commander/lib/suggestSimilar.js
676
678
  var require_suggestSimilar = __commonJS((exports) => {
677
679
  var maxDistance = 3;
678
680
  function editDistance(a, b) {
@@ -745,7 +747,7 @@ var require_suggestSimilar = __commonJS((exports) => {
745
747
  exports.suggestSimilar = suggestSimilar;
746
748
  });
747
749
 
748
- // ../../node_modules/.bun/commander@14.0.0/node_modules/commander/lib/command.js
750
+ // ../../node_modules/.bun/commander@14.0.1/node_modules/commander/lib/command.js
749
751
  var require_command = __commonJS((exports) => {
750
752
  var EventEmitter = __require("node:events").EventEmitter;
751
753
  var childProcess = __require("node:child_process");
@@ -875,7 +877,10 @@ var require_command = __commonJS((exports) => {
875
877
  configureOutput(configuration) {
876
878
  if (configuration === undefined)
877
879
  return this._outputConfiguration;
878
- this._outputConfiguration = Object.assign({}, this._outputConfiguration, configuration);
880
+ this._outputConfiguration = {
881
+ ...this._outputConfiguration,
882
+ ...configuration
883
+ };
879
884
  return this;
880
885
  }
881
886
  showHelpAfterError(displayHelp = true) {
@@ -924,7 +929,7 @@ var require_command = __commonJS((exports) => {
924
929
  }
925
930
  addArgument(argument) {
926
931
  const previousArgument = this.registeredArguments.slice(-1)[0];
927
- if (previousArgument && previousArgument.variadic) {
932
+ if (previousArgument?.variadic) {
928
933
  throw new Error(`only the last argument can be variadic '${previousArgument.name()}'`);
929
934
  }
930
935
  if (argument.required && argument.defaultValue !== undefined && argument.parseArg === undefined) {
@@ -1079,7 +1084,7 @@ Expecting one of '${allowedValues.join("', '")}'`);
1079
1084
  if (val !== null && option.parseArg) {
1080
1085
  val = this._callParseArg(option, val, oldValue, invalidValueMessage);
1081
1086
  } else if (val !== null && option.variadic) {
1082
- val = option._concatValue(val, oldValue);
1087
+ val = option._collectValue(val, oldValue);
1083
1088
  }
1084
1089
  if (val == null) {
1085
1090
  if (option.negate) {
@@ -1454,7 +1459,7 @@ Expecting one of '${allowedValues.join("', '")}'`);
1454
1459
  this.processedArgs = processedArgs;
1455
1460
  }
1456
1461
  _chainOrCall(promise, fn) {
1457
- if (promise && promise.then && typeof promise.then === "function") {
1462
+ if (promise?.then && typeof promise.then === "function") {
1458
1463
  return promise.then(() => fn());
1459
1464
  }
1460
1465
  return fn();
@@ -1531,7 +1536,7 @@ Expecting one of '${allowedValues.join("', '")}'`);
1531
1536
  promiseChain = this._chainOrCallHooks(promiseChain, "postAction");
1532
1537
  return promiseChain;
1533
1538
  }
1534
- if (this.parent && this.parent.listenerCount(commandEvent)) {
1539
+ if (this.parent?.listenerCount(commandEvent)) {
1535
1540
  checkForUnknownOptions();
1536
1541
  this._processArguments();
1537
1542
  this.parent.emit(commandEvent, operands, unknown);
@@ -1593,11 +1598,10 @@ Expecting one of '${allowedValues.join("', '")}'`);
1593
1598
  cmd._checkForConflictingLocalOptions();
1594
1599
  });
1595
1600
  }
1596
- parseOptions(argv) {
1601
+ parseOptions(args) {
1597
1602
  const operands = [];
1598
1603
  const unknown = [];
1599
1604
  let dest = operands;
1600
- const args = argv.slice();
1601
1605
  function maybeOption(arg) {
1602
1606
  return arg.length > 1 && arg[0] === "-";
1603
1607
  }
@@ -1607,12 +1611,15 @@ Expecting one of '${allowedValues.join("', '")}'`);
1607
1611
  return !this._getCommandAndAncestors().some((cmd) => cmd.options.map((opt) => opt.short).some((short) => /^-\d$/.test(short)));
1608
1612
  };
1609
1613
  let activeVariadicOption = null;
1610
- while (args.length) {
1611
- const arg = args.shift();
1614
+ let activeGroup = null;
1615
+ let i = 0;
1616
+ while (i < args.length || activeGroup) {
1617
+ const arg = activeGroup ?? args[i++];
1618
+ activeGroup = null;
1612
1619
  if (arg === "--") {
1613
1620
  if (dest === unknown)
1614
1621
  dest.push(arg);
1615
- dest.push(...args);
1622
+ dest.push(...args.slice(i));
1616
1623
  break;
1617
1624
  }
1618
1625
  if (activeVariadicOption && (!maybeOption(arg) || negativeNumberArg(arg))) {
@@ -1624,14 +1631,14 @@ Expecting one of '${allowedValues.join("', '")}'`);
1624
1631
  const option = this._findOption(arg);
1625
1632
  if (option) {
1626
1633
  if (option.required) {
1627
- const value = args.shift();
1634
+ const value = args[i++];
1628
1635
  if (value === undefined)
1629
1636
  this.optionMissingArgument(option);
1630
1637
  this.emit(`option:${option.name()}`, value);
1631
1638
  } else if (option.optional) {
1632
1639
  let value = null;
1633
- if (args.length > 0 && (!maybeOption(args[0]) || negativeNumberArg(args[0]))) {
1634
- value = args.shift();
1640
+ if (i < args.length && (!maybeOption(args[i]) || negativeNumberArg(args[i]))) {
1641
+ value = args[i++];
1635
1642
  }
1636
1643
  this.emit(`option:${option.name()}`, value);
1637
1644
  } else {
@@ -1648,7 +1655,7 @@ Expecting one of '${allowedValues.join("', '")}'`);
1648
1655
  this.emit(`option:${option.name()}`, arg.slice(2));
1649
1656
  } else {
1650
1657
  this.emit(`option:${option.name()}`);
1651
- args.unshift(`-${arg.slice(2)}`);
1658
+ activeGroup = `-${arg.slice(2)}`;
1652
1659
  }
1653
1660
  continue;
1654
1661
  }
@@ -1667,25 +1674,18 @@ Expecting one of '${allowedValues.join("', '")}'`);
1667
1674
  if ((this._enablePositionalOptions || this._passThroughOptions) && operands.length === 0 && unknown.length === 0) {
1668
1675
  if (this._findCommand(arg)) {
1669
1676
  operands.push(arg);
1670
- if (args.length > 0)
1671
- unknown.push(...args);
1677
+ unknown.push(...args.slice(i));
1672
1678
  break;
1673
1679
  } else if (this._getHelpCommand() && arg === this._getHelpCommand().name()) {
1674
- operands.push(arg);
1675
- if (args.length > 0)
1676
- operands.push(...args);
1680
+ operands.push(arg, ...args.slice(i));
1677
1681
  break;
1678
1682
  } else if (this._defaultCommandName) {
1679
- unknown.push(arg);
1680
- if (args.length > 0)
1681
- unknown.push(...args);
1683
+ unknown.push(arg, ...args.slice(i));
1682
1684
  break;
1683
1685
  }
1684
1686
  }
1685
1687
  if (this._passThroughOptions) {
1686
- dest.push(arg);
1687
- if (args.length > 0)
1688
- dest.push(...args);
1688
+ dest.push(arg, ...args.slice(i));
1689
1689
  break;
1690
1690
  }
1691
1691
  dest.push(arg);
@@ -2102,7 +2102,7 @@ Expecting one of '${allowedValues.join("', '")}'`);
2102
2102
  exports.useColor = useColor;
2103
2103
  });
2104
2104
 
2105
- // ../../node_modules/.bun/commander@14.0.0/node_modules/commander/index.js
2105
+ // ../../node_modules/.bun/commander@14.0.1/node_modules/commander/index.js
2106
2106
  var require_commander = __commonJS((exports) => {
2107
2107
  var { Argument } = require_argument();
2108
2108
  var { Command } = require_command();
@@ -2122,7 +2122,7 @@ var require_commander = __commonJS((exports) => {
2122
2122
  exports.InvalidOptionArgumentError = InvalidArgumentError;
2123
2123
  });
2124
2124
 
2125
- // ../../node_modules/.bun/@commander-js+extra-typings@14.0.0+62ffbc41b7dfe13b/node_modules/@commander-js/extra-typings/index.js
2125
+ // ../../node_modules/.bun/@commander-js+extra-typings@14.0.0+408f7c8952c8497c/node_modules/@commander-js/extra-typings/index.js
2126
2126
  var require_extra_typings = __commonJS((exports, module) => {
2127
2127
  var commander = require_commander();
2128
2128
  exports = module.exports = {};
@@ -247494,7 +247494,7 @@ var require_public_api = __commonJS((exports) => {
247494
247494
  exports.stringify = stringify5;
247495
247495
  });
247496
247496
 
247497
- // ../../node_modules/.bun/@commander-js+extra-typings@14.0.0+62ffbc41b7dfe13b/node_modules/@commander-js/extra-typings/esm.mjs
247497
+ // ../../node_modules/.bun/@commander-js+extra-typings@14.0.0+408f7c8952c8497c/node_modules/@commander-js/extra-typings/esm.mjs
247498
247498
  var import__ = __toESM(require_extra_typings(), 1);
247499
247499
  var {
247500
247500
  program,
@@ -267215,7 +267215,7 @@ function pruneCurrentEnv(currentEnv, env2) {
267215
267215
  var package_default = {
267216
267216
  name: "@settlemint/sdk-cli",
267217
267217
  description: "Command-line interface for SettleMint SDK, providing development tools and project management capabilities",
267218
- version: "2.6.2-maind3ce3378",
267218
+ version: "2.6.2-pr024a83ae",
267219
267219
  type: "module",
267220
267220
  private: false,
267221
267221
  license: "FSL-1.1-MIT",
@@ -267264,15 +267264,15 @@ var package_default = {
267264
267264
  },
267265
267265
  devDependencies: {
267266
267266
  "@commander-js/extra-typings": "14.0.0",
267267
- commander: "14.0.0",
267267
+ commander: "14.0.1",
267268
267268
  "@inquirer/confirm": "5.1.16",
267269
267269
  "@inquirer/input": "4.2.2",
267270
267270
  "@inquirer/password": "4.0.18",
267271
267271
  "@inquirer/select": "4.3.2",
267272
- "@settlemint/sdk-hasura": "2.6.2-maind3ce3378",
267273
- "@settlemint/sdk-js": "2.6.2-maind3ce3378",
267274
- "@settlemint/sdk-utils": "2.6.2-maind3ce3378",
267275
- "@settlemint/sdk-viem": "2.6.2-maind3ce3378",
267272
+ "@settlemint/sdk-hasura": "2.6.2-pr024a83ae",
267273
+ "@settlemint/sdk-js": "2.6.2-pr024a83ae",
267274
+ "@settlemint/sdk-utils": "2.6.2-pr024a83ae",
267275
+ "@settlemint/sdk-viem": "2.6.2-pr024a83ae",
267276
267276
  "@types/node": "24.3.1",
267277
267277
  "@types/semver": "7.7.1",
267278
267278
  "@types/which": "3.0.4",
@@ -267289,7 +267289,7 @@ var package_default = {
267289
267289
  },
267290
267290
  peerDependencies: {
267291
267291
  hardhat: "<= 4",
267292
- "@settlemint/sdk-js": "2.6.2-maind3ce3378"
267292
+ "@settlemint/sdk-js": "2.6.2-pr024a83ae"
267293
267293
  },
267294
267294
  peerDependenciesMeta: {
267295
267295
  hardhat: {
@@ -308593,4 +308593,4 @@ async function sdkCliCommand(argv = process.argv) {
308593
308593
  // src/cli.ts
308594
308594
  sdkCliCommand();
308595
308595
 
308596
- //# debugId=6746BE9F4C1E85B364756E2164756E21
308596
+ //# debugId=0840AFB5E1FA521664756E2164756E21