@settlemint/sdk-mcp 2.4.0-prb7837cfe → 2.4.0-prb9f64cf3

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
@@ -16722,11 +16722,9 @@ var require_websocket_server = __commonJS((exports, module) => {
16722
16722
  abortHandshakeOrEmitwsClientError(this, req, socket, 400, message);
16723
16723
  return;
16724
16724
  }
16725
- if (version !== 13 && version !== 8) {
16725
+ if (version !== 8 && version !== 13) {
16726
16726
  const message = "Missing or invalid Sec-WebSocket-Version header";
16727
- abortHandshakeOrEmitwsClientError(this, req, socket, 400, message, {
16728
- "Sec-WebSocket-Version": "13, 8"
16729
- });
16727
+ abortHandshakeOrEmitwsClientError(this, req, socket, 400, message);
16730
16728
  return;
16731
16729
  }
16732
16730
  if (!this.shouldHandle(req)) {
@@ -16865,13 +16863,13 @@ var require_websocket_server = __commonJS((exports, module) => {
16865
16863
  \r
16866
16864
  ` + message);
16867
16865
  }
16868
- function abortHandshakeOrEmitwsClientError(server, req, socket, code, message, headers) {
16866
+ function abortHandshakeOrEmitwsClientError(server, req, socket, code, message) {
16869
16867
  if (server.listenerCount("wsClientError")) {
16870
16868
  const err = new Error(message);
16871
16869
  Error.captureStackTrace(err, abortHandshakeOrEmitwsClientError);
16872
16870
  server.emit("wsClientError", err, socket, req);
16873
16871
  } else {
16874
- abortHandshake(socket, code, message, headers);
16872
+ abortHandshake(socket, code, message);
16875
16873
  }
16876
16874
  }
16877
16875
  });
@@ -59941,21 +59939,14 @@ class Protocol {
59941
59939
  }
59942
59940
  }
59943
59941
  async connect(transport) {
59944
- var _a, _b, _c;
59945
59942
  this._transport = transport;
59946
- const _onclose = (_a = this.transport) === null || _a === undefined ? undefined : _a.onclose;
59947
59943
  this._transport.onclose = () => {
59948
- _onclose === null || _onclose === undefined || _onclose();
59949
59944
  this._onclose();
59950
59945
  };
59951
- const _onerror = (_b = this.transport) === null || _b === undefined ? undefined : _b.onerror;
59952
59946
  this._transport.onerror = (error) => {
59953
- _onerror === null || _onerror === undefined || _onerror(error);
59954
59947
  this._onerror(error);
59955
59948
  };
59956
- const _onmessage = (_c = this._transport) === null || _c === undefined ? undefined : _c.onmessage;
59957
59949
  this._transport.onmessage = (message, extra) => {
59958
- _onmessage === null || _onmessage === undefined || _onmessage(message, extra);
59959
59950
  if (isJSONRPCResponse(message) || isJSONRPCError(message)) {
59960
59951
  this._onresponse(message);
59961
59952
  } else if (isJSONRPCRequest(message)) {
@@ -60015,8 +60006,7 @@ class Protocol {
60015
60006
  sendNotification: (notification) => this.notification(notification, { relatedRequestId: request.id }),
60016
60007
  sendRequest: (r, resultSchema, options) => this.request(r, resultSchema, { ...options, relatedRequestId: request.id }),
60017
60008
  authInfo: extra === null || extra === undefined ? undefined : extra.authInfo,
60018
- requestId: request.id,
60019
- requestInfo: extra === null || extra === undefined ? undefined : extra.requestInfo
60009
+ requestId: request.id
60020
60010
  };
60021
60011
  Promise.resolve().then(() => handler(request, fullExtra)).then((result) => {
60022
60012
  var _a2;
@@ -61731,7 +61721,7 @@ class McpServer {
61731
61721
  };
61732
61722
  }
61733
61723
  }
61734
- if (tool.outputSchema && !result.isError) {
61724
+ if (tool.outputSchema) {
61735
61725
  if (!result.structuredContent) {
61736
61726
  throw new McpError(ErrorCode.InvalidParams, `Tool ${request.params.name} has an output schema but no structured content was provided`);
61737
61727
  }
@@ -90399,7 +90389,7 @@ var {
90399
90389
  var package_default = {
90400
90390
  name: "@settlemint/sdk-mcp",
90401
90391
  description: "MCP interface for SettleMint SDK, providing development tools and project management capabilities",
90402
- version: "2.4.0-prb7837cfe",
90392
+ version: "2.4.0-prb9f64cf3",
90403
90393
  type: "module",
90404
90394
  private: false,
90405
90395
  license: "FSL-1.1-MIT",
@@ -90442,9 +90432,9 @@ var package_default = {
90442
90432
  dependencies: {
90443
90433
  "@graphql-tools/load": "8.1.0",
90444
90434
  "@graphql-tools/url-loader": "8.0.31",
90445
- "@modelcontextprotocol/sdk": "1.13.2",
90446
- "@settlemint/sdk-js": "2.4.0-prb7837cfe",
90447
- "@settlemint/sdk-utils": "2.4.0-prb7837cfe",
90435
+ "@modelcontextprotocol/sdk": "1.13.1",
90436
+ "@settlemint/sdk-js": "2.4.0-prb9f64cf3",
90437
+ "@settlemint/sdk-utils": "2.4.0-prb9f64cf3",
90448
90438
  "@commander-js/extra-typings": "14.0.0",
90449
90439
  commander: "14.0.0",
90450
90440
  zod: "^3.25.0"
@@ -103906,20 +103896,6 @@ var restartBlockchainNetwork = graphql(`
103906
103896
  }
103907
103897
  }
103908
103898
  `, [BlockchainNetworkFragment]);
103909
- var pauseBlockchainNetwork = graphql(`
103910
- mutation PauseBlockchainNetwork($uniqueName: String!) {
103911
- pauseBlockchainNetworkByUniqueName(uniqueName: $uniqueName) {
103912
- ...BlockchainNetwork
103913
- }
103914
- }
103915
- `, [BlockchainNetworkFragment]);
103916
- var resumeBlockchainNetwork = graphql(`
103917
- mutation ResumeBlockchainNetwork($uniqueName: String!) {
103918
- resumeBlockchainNetworkByUniqueName(uniqueName: $uniqueName) {
103919
- ...BlockchainNetwork
103920
- }
103921
- }
103922
- `, [BlockchainNetworkFragment]);
103923
103899
  var blockchainNetworkList = (gqlClient) => {
103924
103900
  return async (applicationUniqueName) => {
103925
103901
  const { blockchainNetworksByUniqueName: { items } } = await gqlClient.request(getBlockchainNetworks, { applicationUniqueName });
@@ -103954,14 +103930,6 @@ var blockchainNetworkRestart = (gqlClient) => async (blockchainNetworkUniqueName
103954
103930
  const { restartBlockchainNetworkByUniqueName: blockchainNetwork } = await gqlClient.request(restartBlockchainNetwork, { uniqueName: blockchainNetworkUniqueName });
103955
103931
  return blockchainNetwork;
103956
103932
  };
103957
- var blockchainNetworkPause = (gqlClient) => async (blockchainNetworkUniqueName) => {
103958
- const { pauseBlockchainNetworkByUniqueName: blockchainNetwork } = await gqlClient.request(pauseBlockchainNetwork, { uniqueName: blockchainNetworkUniqueName });
103959
- return blockchainNetwork;
103960
- };
103961
- var blockchainNetworkResume = (gqlClient) => async (blockchainNetworkUniqueName) => {
103962
- const { resumeBlockchainNetworkByUniqueName: blockchainNetwork } = await gqlClient.request(resumeBlockchainNetwork, { uniqueName: blockchainNetworkUniqueName });
103963
- return blockchainNetwork;
103964
- };
103965
103933
  var BlockchainNodeFragment = graphql(`
103966
103934
  fragment BlockchainNode on BlockchainNode {
103967
103935
  __typename
@@ -104095,20 +104063,6 @@ var restartBlockchainNode = graphql(`
104095
104063
  }
104096
104064
  }
104097
104065
  `, [BlockchainNodeFragment]);
104098
- var pauseBlockchainNode = graphql(`
104099
- mutation PauseBlockchainNode($uniqueName: String!) {
104100
- pauseBlockchainNodeByUniqueName(uniqueName: $uniqueName) {
104101
- ...BlockchainNode
104102
- }
104103
- }
104104
- `, [BlockchainNodeFragment]);
104105
- var resumeBlockchainNode = graphql(`
104106
- mutation ResumeBlockchainNode($uniqueName: String!) {
104107
- resumeBlockchainNodeByUniqueName(uniqueName: $uniqueName) {
104108
- ...BlockchainNode
104109
- }
104110
- }
104111
- `, [BlockchainNodeFragment]);
104112
104066
  var blockchainNodeList = (gqlClient) => {
104113
104067
  return async (applicationUniqueName) => {
104114
104068
  const { blockchainNodesByUniqueName: { items } } = await gqlClient.request(getBlockchainNodes, { applicationUniqueName });
@@ -104137,14 +104091,6 @@ var blockchainNodeRestart = (gqlClient) => async (blockchainNodeUniqueName) => {
104137
104091
  const { restartBlockchainNodeByUniqueName: blockchainNode } = await gqlClient.request(restartBlockchainNode, { uniqueName: blockchainNodeUniqueName });
104138
104092
  return blockchainNode;
104139
104093
  };
104140
- var blockchainNodePause = (gqlClient) => async (blockchainNodeUniqueName) => {
104141
- const { pauseBlockchainNodeByUniqueName: blockchainNode } = await gqlClient.request(pauseBlockchainNode, { uniqueName: blockchainNodeUniqueName });
104142
- return blockchainNode;
104143
- };
104144
- var blockchainNodeResume = (gqlClient) => async (blockchainNodeUniqueName) => {
104145
- const { resumeBlockchainNodeByUniqueName: blockchainNode } = await gqlClient.request(resumeBlockchainNode, { uniqueName: blockchainNodeUniqueName });
104146
- return blockchainNode;
104147
- };
104148
104094
  var CustomDeploymentFragment = graphql(`
104149
104095
  fragment CustomDeployment on CustomDeployment {
104150
104096
  id
@@ -104227,20 +104173,6 @@ var restartCustomDeployment = graphql(`
104227
104173
  }
104228
104174
  }
104229
104175
  `, [CustomDeploymentFragment]);
104230
- var pauseCustomDeployment = graphql(`
104231
- mutation PauseCustomDeployment($uniqueName: String!) {
104232
- pauseCustomDeploymentByUniqueName(uniqueName: $uniqueName) {
104233
- ...CustomDeployment
104234
- }
104235
- }
104236
- `, [CustomDeploymentFragment]);
104237
- var resumeCustomDeployment = graphql(`
104238
- mutation ResumeCustomDeployment($uniqueName: String!) {
104239
- resumeCustomDeploymentByUniqueName(uniqueName: $uniqueName) {
104240
- ...CustomDeployment
104241
- }
104242
- }
104243
- `, [CustomDeploymentFragment]);
104244
104176
  var customdeploymentList = (gqlClient) => {
104245
104177
  return async (applicationUniqueName) => {
104246
104178
  const { customDeploymentsByUniqueName: { items } } = await gqlClient.request(getCustomDeployments, { applicationUniqueName });
@@ -104277,14 +104209,6 @@ var customDeploymentRestart = (gqlClient) => async (customDeploymentUniqueName)
104277
104209
  const { restartCustomDeploymentByUniqueName: customDeployment } = await gqlClient.request(restartCustomDeployment, { uniqueName: customDeploymentUniqueName });
104278
104210
  return customDeployment;
104279
104211
  };
104280
- var customDeploymentPause = (gqlClient) => async (customDeploymentUniqueName) => {
104281
- const { pauseCustomDeploymentByUniqueName: customDeployment } = await gqlClient.request(pauseCustomDeployment, { uniqueName: customDeploymentUniqueName });
104282
- return customDeployment;
104283
- };
104284
- var customDeploymentResume = (gqlClient) => async (customDeploymentUniqueName) => {
104285
- const { resumeCustomDeploymentByUniqueName: customDeployment } = await gqlClient.request(resumeCustomDeployment, { uniqueName: customDeploymentUniqueName });
104286
- return customDeployment;
104287
- };
104288
104212
  var getFoundryEnvConfig = graphql(`
104289
104213
  query GetFoundryEnvConfig($blockchainNodeUniqueName: String!) {
104290
104214
  foundryEnvConfigByUniqueName(blockchainNodeUniqueName: $blockchainNodeUniqueName)
@@ -104361,20 +104285,6 @@ var restartLoadBalancer = graphql(`
104361
104285
  }
104362
104286
  }
104363
104287
  `, [LoadBalancerFragment]);
104364
- var pauseLoadBalancer = graphql(`
104365
- mutation PauseLoadBalancer($uniqueName: String!) {
104366
- pauseLoadBalancerByUniqueName(uniqueName: $uniqueName) {
104367
- ...LoadBalancer
104368
- }
104369
- }
104370
- `, [LoadBalancerFragment]);
104371
- var resumeLoadBalancer = graphql(`
104372
- mutation ResumeLoadBalancer($uniqueName: String!) {
104373
- resumeLoadBalancerByUniqueName(uniqueName: $uniqueName) {
104374
- ...LoadBalancer
104375
- }
104376
- }
104377
- `, [LoadBalancerFragment]);
104378
104288
  var loadBalancerRead = (gqlClient) => {
104379
104289
  return async (loadBalancerUniqueName) => {
104380
104290
  const { loadBalancerByUniqueName: loadBalancer } = await gqlClient.request(getLoadBalancer, { uniqueName: loadBalancerUniqueName });
@@ -104408,14 +104318,6 @@ var loadBalancerRestart = (gqlClient) => async (loadBalancerUniqueName) => {
104408
104318
  const { restartLoadBalancerByUniqueName: loadBalancer } = await gqlClient.request(restartLoadBalancer, { uniqueName: loadBalancerUniqueName });
104409
104319
  return loadBalancer;
104410
104320
  };
104411
- var loadBalancerPause = (gqlClient) => async (loadBalancerUniqueName) => {
104412
- const { pauseLoadBalancerByUniqueName: loadBalancer } = await gqlClient.request(pauseLoadBalancer, { uniqueName: loadBalancerUniqueName });
104413
- return loadBalancer;
104414
- };
104415
- var loadBalancerResume = (gqlClient) => async (loadBalancerUniqueName) => {
104416
- const { resumeLoadBalancerByUniqueName: loadBalancer } = await gqlClient.request(resumeLoadBalancer, { uniqueName: loadBalancerUniqueName });
104417
- return loadBalancer;
104418
- };
104419
104321
  var InsightsFragment = graphql(`
104420
104322
  fragment Insights on Insights {
104421
104323
  __typename
@@ -104489,20 +104391,6 @@ var restartInsights = graphql(`
104489
104391
  }
104490
104392
  }
104491
104393
  `, [InsightsFragment]);
104492
- var pauseInsights = graphql(`
104493
- mutation PauseInsights($uniqueName: String!) {
104494
- pauseInsightsByUniqueName(uniqueName: $uniqueName) {
104495
- ...Insights
104496
- }
104497
- }
104498
- `, [InsightsFragment]);
104499
- var resumeInsights = graphql(`
104500
- mutation ResumeInsights($uniqueName: String!) {
104501
- resumeInsightsByUniqueName(uniqueName: $uniqueName) {
104502
- ...Insights
104503
- }
104504
- }
104505
- `, [InsightsFragment]);
104506
104394
  var insightsList = (gqlClient) => {
104507
104395
  return async (applicationUniqueName) => {
104508
104396
  const { insightsListByUniqueName: { items } } = await gqlClient.request(getInsights, { applicationUniqueName });
@@ -104536,14 +104424,6 @@ var insightsRestart = (gqlClient) => async (insightsUniqueName) => {
104536
104424
  const { restartInsightsByUniqueName: insights } = await gqlClient.request(restartInsights, { uniqueName: insightsUniqueName });
104537
104425
  return insights;
104538
104426
  };
104539
- var insightsPause = (gqlClient) => async (insightsUniqueName) => {
104540
- const { pauseInsightsByUniqueName: insights } = await gqlClient.request(pauseInsights, { uniqueName: insightsUniqueName });
104541
- return insights;
104542
- };
104543
- var insightsResume = (gqlClient) => async (insightsUniqueName) => {
104544
- const { resumeInsightsByUniqueName: insights } = await gqlClient.request(resumeInsights, { uniqueName: insightsUniqueName });
104545
- return insights;
104546
- };
104547
104427
  var IntegrationFragment = graphql(`
104548
104428
  fragment Integration on Integration {
104549
104429
  __typename
@@ -104613,20 +104493,6 @@ var restartIntegrationTool = graphql(`
104613
104493
  }
104614
104494
  }
104615
104495
  `, [IntegrationFragment]);
104616
- var pauseIntegrationTool = graphql(`
104617
- mutation PauseIntegrationTool($uniqueName: String!) {
104618
- pauseIntegrationByUniqueName(uniqueName: $uniqueName) {
104619
- ...Integration
104620
- }
104621
- }
104622
- `, [IntegrationFragment]);
104623
- var resumeIntegrationTool = graphql(`
104624
- mutation ResumeIntegrationTool($uniqueName: String!) {
104625
- resumeIntegrationByUniqueName(uniqueName: $uniqueName) {
104626
- ...Integration
104627
- }
104628
- }
104629
- `, [IntegrationFragment]);
104630
104496
  var integrationToolList = (gqlClient) => {
104631
104497
  return async (applicationUniqueName) => {
104632
104498
  const { integrationsByUniqueName: { items } } = await gqlClient.request(getIntegrations, { applicationUniqueName });
@@ -104654,14 +104520,6 @@ var integrationToolRestart = (gqlClient) => async (integrationUniqueName) => {
104654
104520
  const { restartIntegrationByUniqueName: integration } = await gqlClient.request(restartIntegrationTool, { uniqueName: integrationUniqueName });
104655
104521
  return integration;
104656
104522
  };
104657
- var integrationToolPause = (gqlClient) => async (integrationUniqueName) => {
104658
- const { pauseIntegrationByUniqueName: integration } = await gqlClient.request(pauseIntegrationTool, { uniqueName: integrationUniqueName });
104659
- return integration;
104660
- };
104661
- var integrationToolResume = (gqlClient) => async (integrationUniqueName) => {
104662
- const { resumeIntegrationByUniqueName: integration } = await gqlClient.request(resumeIntegrationTool, { uniqueName: integrationUniqueName });
104663
- return integration;
104664
- };
104665
104523
  var StorageFragment = graphql(`
104666
104524
  fragment Storage on Storage {
104667
104525
  __typename
@@ -104731,20 +104589,6 @@ var restartStorage = graphql(`
104731
104589
  }
104732
104590
  }
104733
104591
  `, [StorageFragment]);
104734
- var pauseStorage = graphql(`
104735
- mutation PauseStorage($uniqueName: String!) {
104736
- pauseStorageByUniqueName(uniqueName: $uniqueName) {
104737
- ...Storage
104738
- }
104739
- }
104740
- `, [StorageFragment]);
104741
- var resumeStorage = graphql(`
104742
- mutation ResumeStorage($uniqueName: String!) {
104743
- resumeStorageByUniqueName(uniqueName: $uniqueName) {
104744
- ...Storage
104745
- }
104746
- }
104747
- `, [StorageFragment]);
104748
104592
  var storageList = (gqlClient) => {
104749
104593
  return async (applicationUniqueName) => {
104750
104594
  const { storagesByUniqueName: { items } } = await gqlClient.request(getStorages, { applicationUniqueName });
@@ -104772,14 +104616,6 @@ var storageRestart = (gqlClient) => async (storageUniqueName) => {
104772
104616
  const { restartStorageByUniqueName: storage } = await gqlClient.request(restartStorage, { uniqueName: storageUniqueName });
104773
104617
  return storage;
104774
104618
  };
104775
- var storagePause = (gqlClient) => async (storageUniqueName) => {
104776
- const { pauseStorageByUniqueName: storage } = await gqlClient.request(pauseStorage, { uniqueName: storageUniqueName });
104777
- return storage;
104778
- };
104779
- var storageResume = (gqlClient) => async (storageUniqueName) => {
104780
- const { resumeStorageByUniqueName: storage } = await gqlClient.request(resumeStorage, { uniqueName: storageUniqueName });
104781
- return storage;
104782
- };
104783
104619
  var MiddlewareFragment = graphql(`
104784
104620
  fragment Middleware on Middleware {
104785
104621
  __typename
@@ -104880,20 +104716,6 @@ var restartMiddleware = graphql(`
104880
104716
  }
104881
104717
  }
104882
104718
  `, [MiddlewareFragment]);
104883
- var pauseMiddleware = graphql(`
104884
- mutation PauseMiddleware($uniqueName: String!) {
104885
- pauseMiddlewareByUniqueName(uniqueName: $uniqueName) {
104886
- ...Middleware
104887
- }
104888
- }
104889
- `, [MiddlewareFragment]);
104890
- var resumeMiddleware = graphql(`
104891
- mutation ResumeMiddleware($uniqueName: String!) {
104892
- resumeMiddlewareByUniqueName(uniqueName: $uniqueName) {
104893
- ...Middleware
104894
- }
104895
- }
104896
- `, [MiddlewareFragment]);
104897
104719
  var middlewareList = (gqlClient) => {
104898
104720
  return async (applicationUniqueName) => {
104899
104721
  const { middlewaresByUniqueName: { items } } = await gqlClient.request(getMiddlewares, { applicationUniqueName });
@@ -104938,14 +104760,6 @@ var middlewareRestart = (gqlClient) => async (middlewareUniqueName) => {
104938
104760
  const { restartMiddlewareByUniqueName: middleware } = await gqlClient.request(restartMiddleware, { uniqueName: middlewareUniqueName });
104939
104761
  return middleware;
104940
104762
  };
104941
- var middlewarePause = (gqlClient) => async (middlewareUniqueName) => {
104942
- const { pauseMiddlewareByUniqueName: middleware } = await gqlClient.request(pauseMiddleware, { uniqueName: middlewareUniqueName });
104943
- return middleware;
104944
- };
104945
- var middlewareResume = (gqlClient) => async (middlewareUniqueName) => {
104946
- const { resumeMiddlewareByUniqueName: middleware } = await gqlClient.request(resumeMiddleware, { uniqueName: middlewareUniqueName });
104947
- return middleware;
104948
- };
104949
104763
  var getPlatformConfigQuery = graphql(`
104950
104764
  query platformConfig {
104951
104765
  config {
@@ -105078,20 +104892,6 @@ var restartPrivateKey = graphql(`
105078
104892
  }
105079
104893
  }
105080
104894
  `, [PrivateKeyFragment]);
105081
- var pausePrivateKey = graphql(`
105082
- mutation PausePrivateKey($uniqueName: String!) {
105083
- pausePrivateKeyByUniqueName(uniqueName: $uniqueName) {
105084
- ...PrivateKey
105085
- }
105086
- }
105087
- `, [PrivateKeyFragment]);
105088
- var resumePrivateKey = graphql(`
105089
- mutation ResumePrivateKey($uniqueName: String!) {
105090
- resumePrivateKeyByUniqueName(uniqueName: $uniqueName) {
105091
- ...PrivateKey
105092
- }
105093
- }
105094
- `, [PrivateKeyFragment]);
105095
104895
  var privateKeyList = (gqlClient) => {
105096
104896
  return async (applicationUniqueName) => {
105097
104897
  const { privateKeysByUniqueName: { items } } = await gqlClient.request(getPrivateKeys, { applicationUniqueName });
@@ -105130,14 +104930,6 @@ var privateKeyRestart = (gqlClient) => async (privateKeyUniqueName) => {
105130
104930
  const { restartPrivateKeyByUniqueName: privateKey } = await gqlClient.request(restartPrivateKey, { uniqueName: privateKeyUniqueName });
105131
104931
  return privateKey;
105132
104932
  };
105133
- var privateKeyPause = (gqlClient) => async (privateKeyUniqueName) => {
105134
- const { pausePrivateKeyByUniqueName: privateKey } = await gqlClient.request(pausePrivateKey, { uniqueName: privateKeyUniqueName });
105135
- return privateKey;
105136
- };
105137
- var privateKeyResume = (gqlClient) => async (privateKeyUniqueName) => {
105138
- const { resumePrivateKeyByUniqueName: privateKey } = await gqlClient.request(resumePrivateKey, { uniqueName: privateKeyUniqueName });
105139
- return privateKey;
105140
- };
105141
104933
  var ClientOptionsSchema = exports_external2.object({
105142
104934
  accessToken: AccessTokenSchema2,
105143
104935
  instance: UrlSchema2
@@ -105217,75 +105009,57 @@ function createSettleMintClient(options) {
105217
105009
  read: blockchainNetworkRead(gqlClient),
105218
105010
  create: blockchainNetworkCreate(gqlClient),
105219
105011
  delete: blockchainNetworkDelete(gqlClient),
105220
- restart: blockchainNetworkRestart(gqlClient),
105221
- pause: blockchainNetworkPause(gqlClient),
105222
- resume: blockchainNetworkResume(gqlClient)
105012
+ restart: blockchainNetworkRestart(gqlClient)
105223
105013
  },
105224
105014
  blockchainNode: {
105225
105015
  list: blockchainNodeList(gqlClient),
105226
105016
  read: blockchainNodeRead(gqlClient),
105227
105017
  create: blockchainNodeCreate(gqlClient),
105228
- restart: blockchainNodeRestart(gqlClient),
105229
- pause: blockchainNodePause(gqlClient),
105230
- resume: blockchainNodeResume(gqlClient)
105018
+ restart: blockchainNodeRestart(gqlClient)
105231
105019
  },
105232
105020
  loadBalancer: {
105233
105021
  list: loadBalancerList(gqlClient),
105234
105022
  read: loadBalancerRead(gqlClient),
105235
105023
  create: loadBalancerCreate(gqlClient),
105236
- restart: loadBalancerRestart(gqlClient),
105237
- pause: loadBalancerPause(gqlClient),
105238
- resume: loadBalancerResume(gqlClient)
105024
+ restart: loadBalancerRestart(gqlClient)
105239
105025
  },
105240
105026
  middleware: {
105241
105027
  list: middlewareList(gqlClient),
105242
105028
  read: middlewareRead(gqlClient),
105243
105029
  graphSubgraphs: graphMiddlewareSubgraphs(gqlClient),
105244
105030
  create: middlewareCreate(gqlClient),
105245
- restart: middlewareRestart(gqlClient),
105246
- pause: middlewarePause(gqlClient),
105247
- resume: middlewareResume(gqlClient)
105031
+ restart: middlewareRestart(gqlClient)
105248
105032
  },
105249
105033
  integrationTool: {
105250
105034
  list: integrationToolList(gqlClient),
105251
105035
  read: integrationToolRead(gqlClient),
105252
105036
  create: integrationToolCreate(gqlClient),
105253
- restart: integrationToolRestart(gqlClient),
105254
- pause: integrationToolPause(gqlClient),
105255
- resume: integrationToolResume(gqlClient)
105037
+ restart: integrationToolRestart(gqlClient)
105256
105038
  },
105257
105039
  storage: {
105258
105040
  list: storageList(gqlClient),
105259
105041
  read: storageRead(gqlClient),
105260
105042
  create: storageCreate(gqlClient),
105261
- restart: storageRestart(gqlClient),
105262
- pause: storagePause(gqlClient),
105263
- resume: storageResume(gqlClient)
105043
+ restart: storageRestart(gqlClient)
105264
105044
  },
105265
105045
  privateKey: {
105266
105046
  list: privateKeyList(gqlClient),
105267
105047
  read: privatekeyRead(gqlClient),
105268
105048
  create: privateKeyCreate(gqlClient),
105269
- restart: privateKeyRestart(gqlClient),
105270
- pause: privateKeyPause(gqlClient),
105271
- resume: privateKeyResume(gqlClient)
105049
+ restart: privateKeyRestart(gqlClient)
105272
105050
  },
105273
105051
  insights: {
105274
105052
  list: insightsList(gqlClient),
105275
105053
  read: insightsRead(gqlClient),
105276
105054
  create: insightsCreate(gqlClient),
105277
- restart: insightsRestart(gqlClient),
105278
- pause: insightsPause(gqlClient),
105279
- resume: insightsResume(gqlClient)
105055
+ restart: insightsRestart(gqlClient)
105280
105056
  },
105281
105057
  customDeployment: {
105282
105058
  list: customdeploymentList(gqlClient),
105283
105059
  read: customdeploymentRead(gqlClient),
105284
105060
  create: customdeploymentCreate(gqlClient),
105285
105061
  update: customdeploymentUpdate(gqlClient),
105286
- restart: customDeploymentRestart(gqlClient),
105287
- pause: customDeploymentPause(gqlClient),
105288
- resume: customDeploymentResume(gqlClient)
105062
+ restart: customDeploymentRestart(gqlClient)
105289
105063
  },
105290
105064
  foundry: { env: getEnv(gqlClient) },
105291
105065
  applicationAccessToken: { create: applicationAccessTokenCreate(gqlClient) },
@@ -107109,4 +106883,4 @@ await main().catch((error41) => {
107109
106883
  process.exit(1);
107110
106884
  });
107111
106885
 
107112
- //# debugId=D5052BCD9009827464756E2164756E21
106886
+ //# debugId=7E240F84B9A3FF0064756E2164756E21