@settlemint/sdk-cli 2.4.0-pr85903089 → 2.4.0-pr88ac0d7d

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
@@ -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-pr85903089",
263843
+ version: "2.4.0-pr88ac0d7d",
263844
263844
  type: "module",
263845
263845
  private: false,
263846
263846
  license: "FSL-1.1-MIT",
@@ -263891,9 +263891,9 @@ var package_default = {
263891
263891
  "@inquirer/input": "4.1.12",
263892
263892
  "@inquirer/password": "4.0.15",
263893
263893
  "@inquirer/select": "4.2.3",
263894
- "@settlemint/sdk-js": "2.4.0-pr85903089",
263895
- "@settlemint/sdk-utils": "2.4.0-pr85903089",
263896
- "@settlemint/sdk-viem": "2.4.0-pr85903089",
263894
+ "@settlemint/sdk-js": "2.4.0-pr88ac0d7d",
263895
+ "@settlemint/sdk-utils": "2.4.0-pr88ac0d7d",
263896
+ "@settlemint/sdk-viem": "2.4.0-pr88ac0d7d",
263897
263897
  "@types/node": "24.0.10",
263898
263898
  "@types/semver": "7.7.0",
263899
263899
  "@types/which": "3.0.4",
@@ -328308,6 +328308,11 @@ function blockscoutPauseCommand() {
328308
328308
  });
328309
328309
  }
328310
328310
 
328311
+ // src/commands/platform/insights/pause.ts
328312
+ function insightsPauseCommand() {
328313
+ return new Command("insights").alias("in").description("Pause an insights service in the SettleMint platform").addCommand(blockscoutPauseCommand());
328314
+ }
328315
+
328311
328316
  // src/commands/platform/integration-tools/hasura/pause.ts
328312
328317
  function hasuraPauseCommand() {
328313
328318
  return getPauseCommand({
@@ -328321,8 +328326,13 @@ function hasuraPauseCommand() {
328321
328326
  });
328322
328327
  }
328323
328328
 
328324
- // src/commands/platform/load-balancer/evm/pause.ts
328325
- function evmLoadBalancerPauseCommand() {
328329
+ // src/commands/platform/integration-tools/pause.ts
328330
+ function integrationToolPauseCommand() {
328331
+ return new Command("integration-tool").alias("it").description("Pause an integration tool service in the SettleMint platform").addCommand(hasuraPauseCommand());
328332
+ }
328333
+
328334
+ // src/commands/platform/load-balancer/pause.ts
328335
+ function loadBalancerPauseCommand() {
328326
328336
  return getPauseCommand({
328327
328337
  name: "evm",
328328
328338
  type: "load balancer",
@@ -328360,26 +328370,18 @@ function smartContractPortalMiddlewarePauseCommand() {
328360
328370
  });
328361
328371
  }
328362
328372
 
328363
- // src/commands/platform/private-key/accessible-ecdsa-p256/pause.ts
328364
- function accessibleEcdsaP256PrivateKeyPauseCommand() {
328365
- return getPauseCommand({
328366
- name: "accessible-ecdsa-p256",
328367
- type: "private key",
328368
- alias: "acc",
328369
- envKey: "SETTLEMINT_ACCESSIBLE_PRIVATE_KEY",
328370
- pauseFunction: async (settlemint, id) => {
328371
- return settlemint.privateKey.pause(id);
328372
- }
328373
- });
328373
+ // src/commands/platform/middleware/pause.ts
328374
+ function middlewarePauseCommand() {
328375
+ return new Command("middleware").alias("mw").description("Pause a middleware service in the SettleMint platform").addCommand(graphMiddlewarePauseCommand()).addCommand(smartContractPortalMiddlewarePauseCommand());
328374
328376
  }
328375
328377
 
328376
- // src/commands/platform/private-key/hd-ecdsa-p256/pause.ts
328377
- function hdEcdsaP256PrivateKeyPauseCommand() {
328378
+ // src/commands/platform/private-key/pause.ts
328379
+ function privateKeyPauseCommand() {
328378
328380
  return getPauseCommand({
328379
- name: "hd-ecdsa-p256",
328381
+ name: "private-key",
328380
328382
  type: "private key",
328381
- alias: "hd",
328382
- envKey: "SETTLEMINT_HD_PRIVATE_KEY",
328383
+ alias: "pk",
328384
+ envKey: "SETTLEMINT_ACCESSIBLE_PRIVATE_KEY",
328383
328385
  pauseFunction: async (settlemint, id) => {
328384
328386
  return settlemint.privateKey.pause(id);
328385
328387
  }
@@ -328412,9 +328414,14 @@ function minioStoragePauseCommand() {
328412
328414
  });
328413
328415
  }
328414
328416
 
328417
+ // src/commands/platform/storage/pause.ts
328418
+ function storagePauseCommand() {
328419
+ return new Command("storage").alias("st").description("Pause a storage service in the SettleMint platform").addCommand(ipfsStoragePauseCommand()).addCommand(minioStoragePauseCommand());
328420
+ }
328421
+
328415
328422
  // src/commands/platform/pause.ts
328416
328423
  function pauseCommand() {
328417
- const cmd2 = new Command("pause").description("Pause a resource in the SettleMint platform").addCommand(blockchainNodePauseCommand()).addCommand(blockchainNetworkPauseCommand()).addCommand(customDeploymentPauseCommand()).addCommand(blockscoutPauseCommand()).addCommand(hasuraPauseCommand()).addCommand(evmLoadBalancerPauseCommand()).addCommand(graphMiddlewarePauseCommand()).addCommand(smartContractPortalMiddlewarePauseCommand()).addCommand(accessibleEcdsaP256PrivateKeyPauseCommand()).addCommand(hdEcdsaP256PrivateKeyPauseCommand()).addCommand(ipfsStoragePauseCommand()).addCommand(minioStoragePauseCommand());
328424
+ 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());
328418
328425
  return cmd2;
328419
328426
  }
328420
328427
 
@@ -328749,6 +328756,11 @@ function blockscoutResumeCommand() {
328749
328756
  });
328750
328757
  }
328751
328758
 
328759
+ // src/commands/platform/insights/resume.ts
328760
+ function insightsResumeCommand() {
328761
+ return new Command("insights").alias("in").description("Resume an insights service in the SettleMint platform").addCommand(blockscoutResumeCommand());
328762
+ }
328763
+
328752
328764
  // src/commands/platform/integration-tools/hasura/resume.ts
328753
328765
  function hasuraResumeCommand() {
328754
328766
  return getResumeCommand({
@@ -328762,10 +328774,15 @@ function hasuraResumeCommand() {
328762
328774
  });
328763
328775
  }
328764
328776
 
328765
- // src/commands/platform/load-balancer/evm/resume.ts
328766
- function evmLoadBalancerResumeCommand() {
328777
+ // src/commands/platform/integration-tools/resume.ts
328778
+ function integrationToolResumeCommand() {
328779
+ return new Command("integration-tool").alias("it").description("Resume an integration tool service in the SettleMint platform").addCommand(hasuraResumeCommand());
328780
+ }
328781
+
328782
+ // src/commands/platform/load-balancer/resume.ts
328783
+ function loadBalancerResumeCommand() {
328767
328784
  return getResumeCommand({
328768
- name: "evm",
328785
+ name: "load-balancer",
328769
328786
  type: "load balancer",
328770
328787
  alias: "lb",
328771
328788
  envKey: "SETTLEMINT_BLOCKCHAIN_NODE_OR_LOAD_BALANCER",
@@ -328801,26 +328818,18 @@ function smartContractPortalMiddlewareResumeCommand() {
328801
328818
  });
328802
328819
  }
328803
328820
 
328804
- // src/commands/platform/private-key/accessible-ecdsa-p256/resume.ts
328805
- function accessibleEcdsaP256PrivateKeyResumeCommand() {
328806
- return getResumeCommand({
328807
- name: "accessible-ecdsa-p256",
328808
- type: "private key",
328809
- alias: "acc",
328810
- envKey: "SETTLEMINT_ACCESSIBLE_PRIVATE_KEY",
328811
- resumeFunction: async (settlemint, id) => {
328812
- return settlemint.privateKey.resume(id);
328813
- }
328814
- });
328821
+ // src/commands/platform/middleware/resume.ts
328822
+ function middlewareResumeCommand() {
328823
+ return new Command("middleware").alias("mw").description("Resume a middleware service in the SettleMint platform").addCommand(graphMiddlewareResumeCommand()).addCommand(smartContractPortalMiddlewareResumeCommand());
328815
328824
  }
328816
328825
 
328817
- // src/commands/platform/private-key/hd-ecdsa-p256/resume.ts
328818
- function hdEcdsaP256PrivateKeyResumeCommand() {
328826
+ // src/commands/platform/private-key/resume.ts
328827
+ function privateKeyResumeCommand() {
328819
328828
  return getResumeCommand({
328820
- name: "hd-ecdsa-p256",
328829
+ name: "private-key",
328821
328830
  type: "private key",
328822
- alias: "hd",
328823
- envKey: "SETTLEMINT_HD_PRIVATE_KEY",
328831
+ alias: "pk",
328832
+ envKey: "SETTLEMINT_ACCESSIBLE_PRIVATE_KEY",
328824
328833
  resumeFunction: async (settlemint, id) => {
328825
328834
  return settlemint.privateKey.resume(id);
328826
328835
  }
@@ -328853,9 +328862,14 @@ function minioStorageResumeCommand() {
328853
328862
  });
328854
328863
  }
328855
328864
 
328865
+ // src/commands/platform/storage/resume.ts
328866
+ function storageResumeCommand() {
328867
+ return new Command("storage").alias("st").description("Resume a storage service in the SettleMint platform").addCommand(ipfsStorageResumeCommand()).addCommand(minioStorageResumeCommand());
328868
+ }
328869
+
328856
328870
  // src/commands/platform/resume.ts
328857
328871
  function resumeCommand() {
328858
- const cmd2 = new Command("resume").description("Resume a resource in the SettleMint platform").addCommand(blockchainNodeResumeCommand()).addCommand(blockchainNetworkResumeCommand()).addCommand(customDeploymentResumeCommand()).addCommand(blockscoutResumeCommand()).addCommand(hasuraResumeCommand()).addCommand(evmLoadBalancerResumeCommand()).addCommand(graphMiddlewareResumeCommand()).addCommand(smartContractPortalMiddlewareResumeCommand()).addCommand(accessibleEcdsaP256PrivateKeyResumeCommand()).addCommand(hdEcdsaP256PrivateKeyResumeCommand()).addCommand(ipfsStorageResumeCommand()).addCommand(minioStorageResumeCommand());
328872
+ 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());
328859
328873
  return cmd2;
328860
328874
  }
328861
328875
 
@@ -330780,4 +330794,4 @@ async function sdkCliCommand(argv = process.argv) {
330780
330794
  // src/cli.ts
330781
330795
  sdkCliCommand();
330782
330796
 
330783
- //# debugId=B36877A9EE01A29164756E2164756E21
330797
+ //# debugId=93BE7E1BD62375F564756E2164756E21