@settlemint/sdk-mcp 1.2.1 → 1.2.2-pr78a270a7

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
@@ -62582,7 +62582,7 @@ var {
62582
62582
  var package_default = {
62583
62583
  name: "@settlemint/sdk-mcp",
62584
62584
  description: "MCP interface for SettleMint SDK, providing development tools and project management capabilities",
62585
- version: "1.2.1",
62585
+ version: "1.2.2-pr78a270a7",
62586
62586
  type: "module",
62587
62587
  private: false,
62588
62588
  license: "FSL-1.1-MIT",
@@ -62624,8 +62624,8 @@ var package_default = {
62624
62624
  "@graphql-tools/load": "8.0.17",
62625
62625
  "@graphql-tools/url-loader": "8.0.29",
62626
62626
  "@modelcontextprotocol/sdk": "1.7.0",
62627
- "@settlemint/sdk-js": "1.2.1",
62628
- "@settlemint/sdk-utils": "1.2.1",
62627
+ "@settlemint/sdk-js": "1.2.2-pr78a270a7",
62628
+ "@settlemint/sdk-utils": "1.2.2-pr78a270a7",
62629
62629
  "@commander-js/extra-typings": "11.1.0",
62630
62630
  commander: "11.1.0",
62631
62631
  zod: "3.24.2"
@@ -65509,6 +65509,8 @@ var createCustomDeployment = graphql(`
65509
65509
  $port: Int!
65510
65510
  $provider: String!
65511
65511
  $region: String!
65512
+ $size: ClusterServiceSize
65513
+ $type: ClusterServiceType
65512
65514
  ) {
65513
65515
  createCustomDeployment(
65514
65516
  applicationId: $applicationId
@@ -65520,6 +65522,8 @@ var createCustomDeployment = graphql(`
65520
65522
  environmentVariables: $environmentVariables
65521
65523
  provider: $provider
65522
65524
  region: $region
65525
+ size: $size
65526
+ type: $type
65523
65527
  ) {
65524
65528
  ...CustomDeployment
65525
65529
  }
@@ -66469,6 +66473,7 @@ var platformBlockchainNetworkCreate = (server, env3, pat) => {
66469
66473
  applicationUniqueName,
66470
66474
  name: params.name,
66471
66475
  type: params.type,
66476
+ size: params.size,
66472
66477
  provider: params.provider,
66473
66478
  region: params.region,
66474
66479
  nodeName: params.nodeName,
@@ -66609,6 +66614,7 @@ var platformBlockchainNodeCreate = (server, env3, pat) => {
66609
66614
  blockchainNetworkUniqueName: params.blockchainNetworkUniqueName,
66610
66615
  name: params.name,
66611
66616
  type: params.type,
66617
+ size: params.size,
66612
66618
  nodeType: params.nodeType,
66613
66619
  provider: params.provider,
66614
66620
  region: params.region
@@ -66731,8 +66737,8 @@ var platformCustomDeploymentCreate = (server, env3, pat) => {
66731
66737
  environmentVariables: z.record(z.string(), z.any()).optional().describe("Environment variables for the custom deployment"),
66732
66738
  provider: z.string().describe("Provider for the custom deployment"),
66733
66739
  region: z.string().describe("Region for the custom deployment"),
66734
- type: z.enum(["DEDICATED", "SHARED"]).optional().describe("Type of the custom deployment (DEDICATED or SHARED)"),
66735
- size: z.enum(["SMALL", "MEDIUM", "LARGE"]).optional().describe("Size of the custom deployment")
66740
+ type: z.enum(["DEDICATED", "SHARED"]).describe("Type of the custom deployment (DEDICATED or SHARED)"),
66741
+ size: z.enum(["SMALL", "MEDIUM", "LARGE"]).describe("Size of the custom deployment")
66736
66742
  }, async (params) => {
66737
66743
  const customDeployment = await client.customDeployment.create({
66738
66744
  applicationUniqueName: params.applicationUniqueName,
@@ -66744,8 +66750,8 @@ var platformCustomDeploymentCreate = (server, env3, pat) => {
66744
66750
  environmentVariables: params.environmentVariables,
66745
66751
  provider: params.provider,
66746
66752
  region: params.region,
66747
- ...params.type && { type: params.type },
66748
- ...params.size && { size: params.size }
66753
+ type: params.type,
66754
+ size: params.size
66749
66755
  });
66750
66756
  return {
66751
66757
  content: [
@@ -66898,6 +66904,7 @@ var platformInsightsCreate = (server, env3, pat) => {
66898
66904
  applicationUniqueName: params.applicationUniqueName,
66899
66905
  name: params.name,
66900
66906
  type: params.type,
66907
+ size: params.size,
66901
66908
  provider: params.provider,
66902
66909
  region: params.region,
66903
66910
  insightsCategory: params.insightsCategory,
@@ -67024,6 +67031,7 @@ var platformIntegrationToolCreate = (server, env3, pat) => {
67024
67031
  applicationUniqueName: params.applicationUniqueName,
67025
67032
  name: params.name,
67026
67033
  type: params.type,
67034
+ size: params.size,
67027
67035
  provider: params.provider,
67028
67036
  region: params.region,
67029
67037
  integrationType: params.integrationType
@@ -67150,6 +67158,7 @@ var platformMiddlewareCreate = (server, env3, pat) => {
67150
67158
  applicationUniqueName: params.applicationUniqueName,
67151
67159
  name: params.name,
67152
67160
  type: params.type,
67161
+ size: params.size,
67153
67162
  provider: params.provider,
67154
67163
  region: params.region,
67155
67164
  interface: params.interface,
@@ -67396,6 +67405,7 @@ var platformStorageCreate = (server, env3, pat) => {
67396
67405
  applicationUniqueName: params.applicationUniqueName,
67397
67406
  name: params.name,
67398
67407
  type: params.type,
67408
+ size: params.size,
67399
67409
  provider: params.provider,
67400
67410
  region: params.region,
67401
67411
  storageProtocol: params.storageProtocol
@@ -68037,4 +68047,4 @@ await main().catch((error2) => {
68037
68047
  process.exit(1);
68038
68048
  });
68039
68049
 
68040
- //# debugId=4E9A837EA14C724764756E2164756E21
68050
+ //# debugId=AD1560F4C12757D664756E2164756E21