@settlemint/sdk-mcp 2.4.0-pr04db78f3 → 2.4.0-pr04e7799a

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/mcp.js CHANGED
@@ -73554,9 +73554,9 @@ ${formattedErrors}`);
73554
73554
  throw error$37;
73555
73555
  }
73556
73556
  }
73557
- var ApplicationAccessTokenSchema = string$1().regex(/^sm_aat_.*$/);
73558
- var PersonalAccessTokenSchema = string$1().regex(/^sm_pat_.*$/);
73559
- var AccessTokenSchema = string$1().regex(/^sm_pat_.*|sm_aat_.*$/);
73557
+ var ApplicationAccessTokenSchema = string$1().regex(/^sm_aat_.+$/);
73558
+ var PersonalAccessTokenSchema = string$1().regex(/^sm_pat_.+$/);
73559
+ var AccessTokenSchema = string$1().regex(/^(sm_pat_.+|sm_aat_.+)$/);
73560
73560
  function tryParseJson(value, defaultValue = null) {
73561
73561
  try {
73562
73562
  const parsed = JSON.parse(value);
@@ -73564,7 +73564,7 @@ function tryParseJson(value, defaultValue = null) {
73564
73564
  return defaultValue;
73565
73565
  }
73566
73566
  return parsed;
73567
- } catch (err) {
73567
+ } catch (_err) {
73568
73568
  return defaultValue;
73569
73569
  }
73570
73570
  }
@@ -90295,9 +90295,9 @@ ${formattedErrors}`);
90295
90295
  throw error$372;
90296
90296
  }
90297
90297
  }
90298
- var ApplicationAccessTokenSchema2 = string$12().regex(/^sm_aat_.*$/);
90299
- var PersonalAccessTokenSchema2 = string$12().regex(/^sm_pat_.*$/);
90300
- var AccessTokenSchema2 = string$12().regex(/^sm_pat_.*|sm_aat_.*$/);
90298
+ var ApplicationAccessTokenSchema2 = string$12().regex(/^sm_aat_.+$/);
90299
+ var PersonalAccessTokenSchema2 = string$12().regex(/^sm_pat_.+$/);
90300
+ var AccessTokenSchema2 = string$12().regex(/^(sm_pat_.+|sm_aat_.+)$/);
90301
90301
  function tryParseJson2(value, defaultValue = null) {
90302
90302
  try {
90303
90303
  const parsed = JSON.parse(value);
@@ -90305,7 +90305,7 @@ function tryParseJson2(value, defaultValue = null) {
90305
90305
  return defaultValue;
90306
90306
  }
90307
90307
  return parsed;
90308
- } catch (err) {
90308
+ } catch (_err) {
90309
90309
  return defaultValue;
90310
90310
  }
90311
90311
  }
@@ -90389,7 +90389,7 @@ var {
90389
90389
  var package_default = {
90390
90390
  name: "@settlemint/sdk-mcp",
90391
90391
  description: "MCP interface for SettleMint SDK, providing development tools and project management capabilities",
90392
- version: "2.4.0-pr04db78f3",
90392
+ version: "2.4.0-pr04e7799a",
90393
90393
  type: "module",
90394
90394
  private: false,
90395
90395
  license: "FSL-1.1-MIT",
@@ -90408,7 +90408,9 @@ var package_default = {
90408
90408
  url: "https://github.com/settlemint/sdk/issues",
90409
90409
  email: "support@settlemint.com"
90410
90410
  },
90411
- files: ["dist"],
90411
+ files: [
90412
+ "dist"
90413
+ ],
90412
90414
  exports: {
90413
90415
  "./*": {
90414
90416
  types: "./dist/*.d.ts",
@@ -90430,9 +90432,9 @@ var package_default = {
90430
90432
  dependencies: {
90431
90433
  "@graphql-tools/load": "8.1.0",
90432
90434
  "@graphql-tools/url-loader": "8.0.31",
90433
- "@modelcontextprotocol/sdk": "1.13.0",
90434
- "@settlemint/sdk-js": "2.4.0-pr04db78f3",
90435
- "@settlemint/sdk-utils": "2.4.0-pr04db78f3",
90435
+ "@modelcontextprotocol/sdk": "1.13.1",
90436
+ "@settlemint/sdk-js": "2.4.0-pr04e7799a",
90437
+ "@settlemint/sdk-utils": "2.4.0-pr04e7799a",
90436
90438
  "@commander-js/extra-typings": "14.0.0",
90437
90439
  commander: "14.0.0",
90438
90440
  zod: "^3.25.0"
@@ -91263,7 +91265,7 @@ var processFieldTypes = (fields2, schema, collectedTypes) => {
91263
91265
  }
91264
91266
  };
91265
91267
  var collectCustomTypes = (type, schema, collectedTypes = new Set) => {
91266
- const typeName = type.toString().replace(/[\[\]!]/g, "");
91268
+ const typeName = type.toString().replace(/[[\]!]/g, "");
91267
91269
  if (collectedTypes.has(typeName) || ["String", "Int", "Float", "Boolean", "ID"].includes(typeName)) {
91268
91270
  return collectedTypes;
91269
91271
  }
@@ -103894,6 +103896,20 @@ var restartBlockchainNetwork = graphql(`
103894
103896
  }
103895
103897
  }
103896
103898
  `, [BlockchainNetworkFragment]);
103899
+ var pauseBlockchainNetwork = graphql(`
103900
+ mutation PauseBlockchainNetwork($uniqueName: String!) {
103901
+ pauseBlockchainNetworkByUniqueName(uniqueName: $uniqueName) {
103902
+ ...BlockchainNetwork
103903
+ }
103904
+ }
103905
+ `, [BlockchainNetworkFragment]);
103906
+ var resumeBlockchainNetwork = graphql(`
103907
+ mutation ResumeBlockchainNetwork($uniqueName: String!) {
103908
+ resumeBlockchainNetworkByUniqueName(uniqueName: $uniqueName) {
103909
+ ...BlockchainNetwork
103910
+ }
103911
+ }
103912
+ `, [BlockchainNetworkFragment]);
103897
103913
  var blockchainNetworkList = (gqlClient) => {
103898
103914
  return async (applicationUniqueName) => {
103899
103915
  const { blockchainNetworksByUniqueName: { items } } = await gqlClient.request(getBlockchainNetworks, { applicationUniqueName });
@@ -103928,6 +103944,14 @@ var blockchainNetworkRestart = (gqlClient) => async (blockchainNetworkUniqueName
103928
103944
  const { restartBlockchainNetworkByUniqueName: blockchainNetwork } = await gqlClient.request(restartBlockchainNetwork, { uniqueName: blockchainNetworkUniqueName });
103929
103945
  return blockchainNetwork;
103930
103946
  };
103947
+ var blockchainNetworkPause = (gqlClient) => async (blockchainNetworkUniqueName) => {
103948
+ const { pauseBlockchainNetworkByUniqueName: blockchainNetwork } = await gqlClient.request(pauseBlockchainNetwork, { uniqueName: blockchainNetworkUniqueName });
103949
+ return blockchainNetwork;
103950
+ };
103951
+ var blockchainNetworkResume = (gqlClient) => async (blockchainNetworkUniqueName) => {
103952
+ const { resumeBlockchainNetworkByUniqueName: blockchainNetwork } = await gqlClient.request(resumeBlockchainNetwork, { uniqueName: blockchainNetworkUniqueName });
103953
+ return blockchainNetwork;
103954
+ };
103931
103955
  var BlockchainNodeFragment = graphql(`
103932
103956
  fragment BlockchainNode on BlockchainNode {
103933
103957
  __typename
@@ -104061,6 +104085,20 @@ var restartBlockchainNode = graphql(`
104061
104085
  }
104062
104086
  }
104063
104087
  `, [BlockchainNodeFragment]);
104088
+ var pauseBlockchainNode = graphql(`
104089
+ mutation PauseBlockchainNode($uniqueName: String!) {
104090
+ pauseBlockchainNodeByUniqueName(uniqueName: $uniqueName) {
104091
+ ...BlockchainNode
104092
+ }
104093
+ }
104094
+ `, [BlockchainNodeFragment]);
104095
+ var resumeBlockchainNode = graphql(`
104096
+ mutation ResumeBlockchainNode($uniqueName: String!) {
104097
+ resumeBlockchainNodeByUniqueName(uniqueName: $uniqueName) {
104098
+ ...BlockchainNode
104099
+ }
104100
+ }
104101
+ `, [BlockchainNodeFragment]);
104064
104102
  var blockchainNodeList = (gqlClient) => {
104065
104103
  return async (applicationUniqueName) => {
104066
104104
  const { blockchainNodesByUniqueName: { items } } = await gqlClient.request(getBlockchainNodes, { applicationUniqueName });
@@ -104089,6 +104127,14 @@ var blockchainNodeRestart = (gqlClient) => async (blockchainNodeUniqueName) => {
104089
104127
  const { restartBlockchainNodeByUniqueName: blockchainNode } = await gqlClient.request(restartBlockchainNode, { uniqueName: blockchainNodeUniqueName });
104090
104128
  return blockchainNode;
104091
104129
  };
104130
+ var blockchainNodePause = (gqlClient) => async (blockchainNodeUniqueName) => {
104131
+ const { pauseBlockchainNodeByUniqueName: blockchainNode } = await gqlClient.request(pauseBlockchainNode, { uniqueName: blockchainNodeUniqueName });
104132
+ return blockchainNode;
104133
+ };
104134
+ var blockchainNodeResume = (gqlClient) => async (blockchainNodeUniqueName) => {
104135
+ const { resumeBlockchainNodeByUniqueName: blockchainNode } = await gqlClient.request(resumeBlockchainNode, { uniqueName: blockchainNodeUniqueName });
104136
+ return blockchainNode;
104137
+ };
104092
104138
  var CustomDeploymentFragment = graphql(`
104093
104139
  fragment CustomDeployment on CustomDeployment {
104094
104140
  id
@@ -104171,6 +104217,20 @@ var restartCustomDeployment = graphql(`
104171
104217
  }
104172
104218
  }
104173
104219
  `, [CustomDeploymentFragment]);
104220
+ var pauseCustomDeployment = graphql(`
104221
+ mutation PauseCustomDeployment($uniqueName: String!) {
104222
+ pauseCustomDeploymentByUniqueName(uniqueName: $uniqueName) {
104223
+ ...CustomDeployment
104224
+ }
104225
+ }
104226
+ `, [CustomDeploymentFragment]);
104227
+ var resumeCustomDeployment = graphql(`
104228
+ mutation ResumeCustomDeployment($uniqueName: String!) {
104229
+ resumeCustomDeploymentByUniqueName(uniqueName: $uniqueName) {
104230
+ ...CustomDeployment
104231
+ }
104232
+ }
104233
+ `, [CustomDeploymentFragment]);
104174
104234
  var customdeploymentList = (gqlClient) => {
104175
104235
  return async (applicationUniqueName) => {
104176
104236
  const { customDeploymentsByUniqueName: { items } } = await gqlClient.request(getCustomDeployments, { applicationUniqueName });
@@ -104207,6 +104267,14 @@ var customDeploymentRestart = (gqlClient) => async (customDeploymentUniqueName)
104207
104267
  const { restartCustomDeploymentByUniqueName: customDeployment } = await gqlClient.request(restartCustomDeployment, { uniqueName: customDeploymentUniqueName });
104208
104268
  return customDeployment;
104209
104269
  };
104270
+ var customDeploymentPause = (gqlClient) => async (customDeploymentUniqueName) => {
104271
+ const { pauseCustomDeploymentByUniqueName: customDeployment } = await gqlClient.request(pauseCustomDeployment, { uniqueName: customDeploymentUniqueName });
104272
+ return customDeployment;
104273
+ };
104274
+ var customDeploymentResume = (gqlClient) => async (customDeploymentUniqueName) => {
104275
+ const { resumeCustomDeploymentByUniqueName: customDeployment } = await gqlClient.request(resumeCustomDeployment, { uniqueName: customDeploymentUniqueName });
104276
+ return customDeployment;
104277
+ };
104210
104278
  var getFoundryEnvConfig = graphql(`
104211
104279
  query GetFoundryEnvConfig($blockchainNodeUniqueName: String!) {
104212
104280
  foundryEnvConfigByUniqueName(blockchainNodeUniqueName: $blockchainNodeUniqueName)
@@ -104283,6 +104351,20 @@ var restartLoadBalancer = graphql(`
104283
104351
  }
104284
104352
  }
104285
104353
  `, [LoadBalancerFragment]);
104354
+ var pauseLoadBalancer = graphql(`
104355
+ mutation PauseLoadBalancer($uniqueName: String!) {
104356
+ pauseLoadBalancerByUniqueName(uniqueName: $uniqueName) {
104357
+ ...LoadBalancer
104358
+ }
104359
+ }
104360
+ `, [LoadBalancerFragment]);
104361
+ var resumeLoadBalancer = graphql(`
104362
+ mutation ResumeLoadBalancer($uniqueName: String!) {
104363
+ resumeLoadBalancerByUniqueName(uniqueName: $uniqueName) {
104364
+ ...LoadBalancer
104365
+ }
104366
+ }
104367
+ `, [LoadBalancerFragment]);
104286
104368
  var loadBalancerRead = (gqlClient) => {
104287
104369
  return async (loadBalancerUniqueName) => {
104288
104370
  const { loadBalancerByUniqueName: loadBalancer } = await gqlClient.request(getLoadBalancer, { uniqueName: loadBalancerUniqueName });
@@ -104316,6 +104398,14 @@ var loadBalancerRestart = (gqlClient) => async (loadBalancerUniqueName) => {
104316
104398
  const { restartLoadBalancerByUniqueName: loadBalancer } = await gqlClient.request(restartLoadBalancer, { uniqueName: loadBalancerUniqueName });
104317
104399
  return loadBalancer;
104318
104400
  };
104401
+ var loadBalancerPause = (gqlClient) => async (loadBalancerUniqueName) => {
104402
+ const { pauseLoadBalancerByUniqueName: loadBalancer } = await gqlClient.request(pauseLoadBalancer, { uniqueName: loadBalancerUniqueName });
104403
+ return loadBalancer;
104404
+ };
104405
+ var loadBalancerResume = (gqlClient) => async (loadBalancerUniqueName) => {
104406
+ const { resumeLoadBalancerByUniqueName: loadBalancer } = await gqlClient.request(resumeLoadBalancer, { uniqueName: loadBalancerUniqueName });
104407
+ return loadBalancer;
104408
+ };
104319
104409
  var InsightsFragment = graphql(`
104320
104410
  fragment Insights on Insights {
104321
104411
  __typename
@@ -104389,6 +104479,20 @@ var restartInsights = graphql(`
104389
104479
  }
104390
104480
  }
104391
104481
  `, [InsightsFragment]);
104482
+ var pauseInsights = graphql(`
104483
+ mutation PauseInsights($uniqueName: String!) {
104484
+ pauseInsightsByUniqueName(uniqueName: $uniqueName) {
104485
+ ...Insights
104486
+ }
104487
+ }
104488
+ `, [InsightsFragment]);
104489
+ var resumeInsights = graphql(`
104490
+ mutation ResumeInsights($uniqueName: String!) {
104491
+ resumeInsightsByUniqueName(uniqueName: $uniqueName) {
104492
+ ...Insights
104493
+ }
104494
+ }
104495
+ `, [InsightsFragment]);
104392
104496
  var insightsList = (gqlClient) => {
104393
104497
  return async (applicationUniqueName) => {
104394
104498
  const { insightsListByUniqueName: { items } } = await gqlClient.request(getInsights, { applicationUniqueName });
@@ -104422,6 +104526,14 @@ var insightsRestart = (gqlClient) => async (insightsUniqueName) => {
104422
104526
  const { restartInsightsByUniqueName: insights } = await gqlClient.request(restartInsights, { uniqueName: insightsUniqueName });
104423
104527
  return insights;
104424
104528
  };
104529
+ var insightsPause = (gqlClient) => async (insightsUniqueName) => {
104530
+ const { pauseInsightsByUniqueName: insights } = await gqlClient.request(pauseInsights, { uniqueName: insightsUniqueName });
104531
+ return insights;
104532
+ };
104533
+ var insightsResume = (gqlClient) => async (insightsUniqueName) => {
104534
+ const { resumeInsightsByUniqueName: insights } = await gqlClient.request(resumeInsights, { uniqueName: insightsUniqueName });
104535
+ return insights;
104536
+ };
104425
104537
  var IntegrationFragment = graphql(`
104426
104538
  fragment Integration on Integration {
104427
104539
  __typename
@@ -104491,6 +104603,20 @@ var restartIntegrationTool = graphql(`
104491
104603
  }
104492
104604
  }
104493
104605
  `, [IntegrationFragment]);
104606
+ var pauseIntegrationTool = graphql(`
104607
+ mutation PauseIntegrationTool($uniqueName: String!) {
104608
+ pauseIntegrationByUniqueName(uniqueName: $uniqueName) {
104609
+ ...Integration
104610
+ }
104611
+ }
104612
+ `, [IntegrationFragment]);
104613
+ var resumeIntegrationTool = graphql(`
104614
+ mutation ResumeIntegrationTool($uniqueName: String!) {
104615
+ resumeIntegrationByUniqueName(uniqueName: $uniqueName) {
104616
+ ...Integration
104617
+ }
104618
+ }
104619
+ `, [IntegrationFragment]);
104494
104620
  var integrationToolList = (gqlClient) => {
104495
104621
  return async (applicationUniqueName) => {
104496
104622
  const { integrationsByUniqueName: { items } } = await gqlClient.request(getIntegrations, { applicationUniqueName });
@@ -104518,6 +104644,14 @@ var integrationToolRestart = (gqlClient) => async (integrationUniqueName) => {
104518
104644
  const { restartIntegrationByUniqueName: integration } = await gqlClient.request(restartIntegrationTool, { uniqueName: integrationUniqueName });
104519
104645
  return integration;
104520
104646
  };
104647
+ var integrationToolPause = (gqlClient) => async (integrationUniqueName) => {
104648
+ const { pauseIntegrationByUniqueName: integration } = await gqlClient.request(pauseIntegrationTool, { uniqueName: integrationUniqueName });
104649
+ return integration;
104650
+ };
104651
+ var integrationToolResume = (gqlClient) => async (integrationUniqueName) => {
104652
+ const { resumeIntegrationByUniqueName: integration } = await gqlClient.request(resumeIntegrationTool, { uniqueName: integrationUniqueName });
104653
+ return integration;
104654
+ };
104521
104655
  var StorageFragment = graphql(`
104522
104656
  fragment Storage on Storage {
104523
104657
  __typename
@@ -104587,6 +104721,20 @@ var restartStorage = graphql(`
104587
104721
  }
104588
104722
  }
104589
104723
  `, [StorageFragment]);
104724
+ var pauseStorage = graphql(`
104725
+ mutation PauseStorage($uniqueName: String!) {
104726
+ pauseStorageByUniqueName(uniqueName: $uniqueName) {
104727
+ ...Storage
104728
+ }
104729
+ }
104730
+ `, [StorageFragment]);
104731
+ var resumeStorage = graphql(`
104732
+ mutation ResumeStorage($uniqueName: String!) {
104733
+ resumeStorageByUniqueName(uniqueName: $uniqueName) {
104734
+ ...Storage
104735
+ }
104736
+ }
104737
+ `, [StorageFragment]);
104590
104738
  var storageList = (gqlClient) => {
104591
104739
  return async (applicationUniqueName) => {
104592
104740
  const { storagesByUniqueName: { items } } = await gqlClient.request(getStorages, { applicationUniqueName });
@@ -104614,6 +104762,14 @@ var storageRestart = (gqlClient) => async (storageUniqueName) => {
104614
104762
  const { restartStorageByUniqueName: storage } = await gqlClient.request(restartStorage, { uniqueName: storageUniqueName });
104615
104763
  return storage;
104616
104764
  };
104765
+ var storagePause = (gqlClient) => async (storageUniqueName) => {
104766
+ const { pauseStorageByUniqueName: storage } = await gqlClient.request(pauseStorage, { uniqueName: storageUniqueName });
104767
+ return storage;
104768
+ };
104769
+ var storageResume = (gqlClient) => async (storageUniqueName) => {
104770
+ const { resumeStorageByUniqueName: storage } = await gqlClient.request(resumeStorage, { uniqueName: storageUniqueName });
104771
+ return storage;
104772
+ };
104617
104773
  var MiddlewareFragment = graphql(`
104618
104774
  fragment Middleware on Middleware {
104619
104775
  __typename
@@ -104714,6 +104870,20 @@ var restartMiddleware = graphql(`
104714
104870
  }
104715
104871
  }
104716
104872
  `, [MiddlewareFragment]);
104873
+ var pauseMiddleware = graphql(`
104874
+ mutation PauseMiddleware($uniqueName: String!) {
104875
+ pauseMiddlewareByUniqueName(uniqueName: $uniqueName) {
104876
+ ...Middleware
104877
+ }
104878
+ }
104879
+ `, [MiddlewareFragment]);
104880
+ var resumeMiddleware = graphql(`
104881
+ mutation ResumeMiddleware($uniqueName: String!) {
104882
+ resumeMiddlewareByUniqueName(uniqueName: $uniqueName) {
104883
+ ...Middleware
104884
+ }
104885
+ }
104886
+ `, [MiddlewareFragment]);
104717
104887
  var middlewareList = (gqlClient) => {
104718
104888
  return async (applicationUniqueName) => {
104719
104889
  const { middlewaresByUniqueName: { items } } = await gqlClient.request(getMiddlewares, { applicationUniqueName });
@@ -104758,6 +104928,14 @@ var middlewareRestart = (gqlClient) => async (middlewareUniqueName) => {
104758
104928
  const { restartMiddlewareByUniqueName: middleware } = await gqlClient.request(restartMiddleware, { uniqueName: middlewareUniqueName });
104759
104929
  return middleware;
104760
104930
  };
104931
+ var middlewarePause = (gqlClient) => async (middlewareUniqueName) => {
104932
+ const { pauseMiddlewareByUniqueName: middleware } = await gqlClient.request(pauseMiddleware, { uniqueName: middlewareUniqueName });
104933
+ return middleware;
104934
+ };
104935
+ var middlewareResume = (gqlClient) => async (middlewareUniqueName) => {
104936
+ const { resumeMiddlewareByUniqueName: middleware } = await gqlClient.request(resumeMiddleware, { uniqueName: middlewareUniqueName });
104937
+ return middleware;
104938
+ };
104761
104939
  var getPlatformConfigQuery = graphql(`
104762
104940
  query platformConfig {
104763
104941
  config {
@@ -104890,6 +105068,20 @@ var restartPrivateKey = graphql(`
104890
105068
  }
104891
105069
  }
104892
105070
  `, [PrivateKeyFragment]);
105071
+ var pausePrivateKey = graphql(`
105072
+ mutation PausePrivateKey($uniqueName: String!) {
105073
+ pausePrivateKeyByUniqueName(uniqueName: $uniqueName) {
105074
+ ...PrivateKey
105075
+ }
105076
+ }
105077
+ `, [PrivateKeyFragment]);
105078
+ var resumePrivateKey = graphql(`
105079
+ mutation ResumePrivateKey($uniqueName: String!) {
105080
+ resumePrivateKeyByUniqueName(uniqueName: $uniqueName) {
105081
+ ...PrivateKey
105082
+ }
105083
+ }
105084
+ `, [PrivateKeyFragment]);
104893
105085
  var privateKeyList = (gqlClient) => {
104894
105086
  return async (applicationUniqueName) => {
104895
105087
  const { privateKeysByUniqueName: { items } } = await gqlClient.request(getPrivateKeys, { applicationUniqueName });
@@ -104928,6 +105120,14 @@ var privateKeyRestart = (gqlClient) => async (privateKeyUniqueName) => {
104928
105120
  const { restartPrivateKeyByUniqueName: privateKey } = await gqlClient.request(restartPrivateKey, { uniqueName: privateKeyUniqueName });
104929
105121
  return privateKey;
104930
105122
  };
105123
+ var privateKeyPause = (gqlClient) => async (privateKeyUniqueName) => {
105124
+ const { pausePrivateKeyByUniqueName: privateKey } = await gqlClient.request(pausePrivateKey, { uniqueName: privateKeyUniqueName });
105125
+ return privateKey;
105126
+ };
105127
+ var privateKeyResume = (gqlClient) => async (privateKeyUniqueName) => {
105128
+ const { resumePrivateKeyByUniqueName: privateKey } = await gqlClient.request(resumePrivateKey, { uniqueName: privateKeyUniqueName });
105129
+ return privateKey;
105130
+ };
104931
105131
  var ClientOptionsSchema = exports_external2.object({
104932
105132
  accessToken: AccessTokenSchema2,
104933
105133
  instance: UrlSchema2
@@ -105007,57 +105207,75 @@ function createSettleMintClient(options) {
105007
105207
  read: blockchainNetworkRead(gqlClient),
105008
105208
  create: blockchainNetworkCreate(gqlClient),
105009
105209
  delete: blockchainNetworkDelete(gqlClient),
105010
- restart: blockchainNetworkRestart(gqlClient)
105210
+ restart: blockchainNetworkRestart(gqlClient),
105211
+ pause: blockchainNetworkPause(gqlClient),
105212
+ resume: blockchainNetworkResume(gqlClient)
105011
105213
  },
105012
105214
  blockchainNode: {
105013
105215
  list: blockchainNodeList(gqlClient),
105014
105216
  read: blockchainNodeRead(gqlClient),
105015
105217
  create: blockchainNodeCreate(gqlClient),
105016
- restart: blockchainNodeRestart(gqlClient)
105218
+ restart: blockchainNodeRestart(gqlClient),
105219
+ pause: blockchainNodePause(gqlClient),
105220
+ resume: blockchainNodeResume(gqlClient)
105017
105221
  },
105018
105222
  loadBalancer: {
105019
105223
  list: loadBalancerList(gqlClient),
105020
105224
  read: loadBalancerRead(gqlClient),
105021
105225
  create: loadBalancerCreate(gqlClient),
105022
- restart: loadBalancerRestart(gqlClient)
105226
+ restart: loadBalancerRestart(gqlClient),
105227
+ pause: loadBalancerPause(gqlClient),
105228
+ resume: loadBalancerResume(gqlClient)
105023
105229
  },
105024
105230
  middleware: {
105025
105231
  list: middlewareList(gqlClient),
105026
105232
  read: middlewareRead(gqlClient),
105027
105233
  graphSubgraphs: graphMiddlewareSubgraphs(gqlClient),
105028
105234
  create: middlewareCreate(gqlClient),
105029
- restart: middlewareRestart(gqlClient)
105235
+ restart: middlewareRestart(gqlClient),
105236
+ pause: middlewarePause(gqlClient),
105237
+ resume: middlewareResume(gqlClient)
105030
105238
  },
105031
105239
  integrationTool: {
105032
105240
  list: integrationToolList(gqlClient),
105033
105241
  read: integrationToolRead(gqlClient),
105034
105242
  create: integrationToolCreate(gqlClient),
105035
- restart: integrationToolRestart(gqlClient)
105243
+ restart: integrationToolRestart(gqlClient),
105244
+ pause: integrationToolPause(gqlClient),
105245
+ resume: integrationToolResume(gqlClient)
105036
105246
  },
105037
105247
  storage: {
105038
105248
  list: storageList(gqlClient),
105039
105249
  read: storageRead(gqlClient),
105040
105250
  create: storageCreate(gqlClient),
105041
- restart: storageRestart(gqlClient)
105251
+ restart: storageRestart(gqlClient),
105252
+ pause: storagePause(gqlClient),
105253
+ resume: storageResume(gqlClient)
105042
105254
  },
105043
105255
  privateKey: {
105044
105256
  list: privateKeyList(gqlClient),
105045
105257
  read: privatekeyRead(gqlClient),
105046
105258
  create: privateKeyCreate(gqlClient),
105047
- restart: privateKeyRestart(gqlClient)
105259
+ restart: privateKeyRestart(gqlClient),
105260
+ pause: privateKeyPause(gqlClient),
105261
+ resume: privateKeyResume(gqlClient)
105048
105262
  },
105049
105263
  insights: {
105050
105264
  list: insightsList(gqlClient),
105051
105265
  read: insightsRead(gqlClient),
105052
105266
  create: insightsCreate(gqlClient),
105053
- restart: insightsRestart(gqlClient)
105267
+ restart: insightsRestart(gqlClient),
105268
+ pause: insightsPause(gqlClient),
105269
+ resume: insightsResume(gqlClient)
105054
105270
  },
105055
105271
  customDeployment: {
105056
105272
  list: customdeploymentList(gqlClient),
105057
105273
  read: customdeploymentRead(gqlClient),
105058
105274
  create: customdeploymentCreate(gqlClient),
105059
105275
  update: customdeploymentUpdate(gqlClient),
105060
- restart: customDeploymentRestart(gqlClient)
105276
+ restart: customDeploymentRestart(gqlClient),
105277
+ pause: customDeploymentPause(gqlClient),
105278
+ resume: customDeploymentResume(gqlClient)
105061
105279
  },
105062
105280
  foundry: { env: getEnv(gqlClient) },
105063
105281
  applicationAccessToken: { create: applicationAccessTokenCreate(gqlClient) },
@@ -106589,21 +106807,6 @@ var promptsGet = (server, _env) => {
106589
106807
  try {
106590
106808
  const promptsDir = path2.resolve(__dirname, "../../prompts");
106591
106809
  const promptPath = path2.join(promptsDir, category, `${name2}.ts`);
106592
- try {
106593
- await fs.access(promptPath);
106594
- } catch (error41) {
106595
- return {
106596
- content: [
106597
- {
106598
- type: "text",
106599
- name: "Prompt Not Found",
106600
- description: `Prompt '${name2}' in category '${category}' not found`,
106601
- mimeType: "text/plain",
106602
- text: `Prompt '${name2}' in category '${category}' does not exist. Use the prompts-list tool to see available prompts.`
106603
- }
106604
- ]
106605
- };
106606
- }
106607
106810
  const fileContent = await fs.readFile(promptPath, "utf-8");
106608
106811
  return {
106609
106812
  content: [
@@ -106617,6 +106820,19 @@ var promptsGet = (server, _env) => {
106617
106820
  ]
106618
106821
  };
106619
106822
  } catch (error41) {
106823
+ if (error41 instanceof Error && "code" in error41 && error41.code === "ENOENT") {
106824
+ return {
106825
+ content: [
106826
+ {
106827
+ type: "text",
106828
+ name: "Prompt Not Found",
106829
+ description: `Prompt '${name2}' in category '${category}' not found`,
106830
+ mimeType: "text/plain",
106831
+ text: `Prompt '${name2}' in category '${category}' does not exist. Use the prompts-list tool to see available prompts.`
106832
+ }
106833
+ ]
106834
+ };
106835
+ }
106620
106836
  return {
106621
106837
  content: [
106622
106838
  {
@@ -106707,21 +106923,6 @@ var resourcesGet = (server, _env) => {
106707
106923
  try {
106708
106924
  const resourcesDir = path4.resolve(__dirname, "../../resources");
106709
106925
  const resourcePath = path4.join(resourcesDir, `${name2}.ts`);
106710
- try {
106711
- await fs3.access(resourcePath);
106712
- } catch (error41) {
106713
- return {
106714
- content: [
106715
- {
106716
- type: "text",
106717
- name: "Resource Not Found",
106718
- description: `Resource '${name2}' not found`,
106719
- mimeType: "text/plain",
106720
- text: `Resource '${name2}' does not exist. Use the resources-list tool to see available resources.`
106721
- }
106722
- ]
106723
- };
106724
- }
106725
106926
  const fileContent = await fs3.readFile(resourcePath, "utf-8");
106726
106927
  return {
106727
106928
  content: [
@@ -106735,6 +106936,19 @@ var resourcesGet = (server, _env) => {
106735
106936
  ]
106736
106937
  };
106737
106938
  } catch (error41) {
106939
+ if (error41 instanceof Error && "code" in error41 && error41.code === "ENOENT") {
106940
+ return {
106941
+ content: [
106942
+ {
106943
+ type: "text",
106944
+ name: "Resource Not Found",
106945
+ description: `Resource '${name2}' not found`,
106946
+ mimeType: "text/plain",
106947
+ text: `Resource '${name2}' does not exist. Use the resources-list tool to see available resources.`
106948
+ }
106949
+ ]
106950
+ };
106951
+ }
106738
106952
  return {
106739
106953
  content: [
106740
106954
  {
@@ -106885,4 +107099,4 @@ await main().catch((error41) => {
106885
107099
  process.exit(1);
106886
107100
  });
106887
107101
 
106888
- //# debugId=4301D56B759E79C464756E2164756E21
107102
+ //# debugId=2E981F37593CBE9C64756E2164756E21