@settlemint/sdk-js 2.4.0-pr3b4bbbfe → 2.4.0-pr3f71e882
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/settlemint.cjs +405 -9
- package/dist/settlemint.cjs.map +1 -1
- package/dist/settlemint.d.cts +18 -0
- package/dist/settlemint.d.ts +18 -0
- package/dist/settlemint.js +405 -9
- package/dist/settlemint.js.map +1 -1
- package/package.json +2 -2
package/dist/settlemint.d.cts
CHANGED
|
@@ -150434,18 +150434,24 @@ interface SettlemintClient {
|
|
|
150434
150434
|
create: (args: CreateBlockchainNetworkArgs) => Promise<BlockchainNetwork>;
|
|
150435
150435
|
delete: (networkUniqueName: string) => Promise<BlockchainNetwork>;
|
|
150436
150436
|
restart: (networkUniqueName: string) => Promise<BlockchainNetwork>;
|
|
150437
|
+
pause: (networkUniqueName: string) => Promise<BlockchainNetwork>;
|
|
150438
|
+
resume: (networkUniqueName: string) => Promise<BlockchainNetwork>;
|
|
150437
150439
|
};
|
|
150438
150440
|
blockchainNode: {
|
|
150439
150441
|
list: (applicationUniqueName: string) => Promise<BlockchainNode[]>;
|
|
150440
150442
|
read: (blockchainNodeUniqueName: string) => Promise<BlockchainNode>;
|
|
150441
150443
|
create: (args: CreateBlockchainNodeArgs) => Promise<BlockchainNode>;
|
|
150442
150444
|
restart: (nodeUniqueName: string) => Promise<BlockchainNode>;
|
|
150445
|
+
pause: (nodeUniqueName: string) => Promise<BlockchainNode>;
|
|
150446
|
+
resume: (nodeUniqueName: string) => Promise<BlockchainNode>;
|
|
150443
150447
|
};
|
|
150444
150448
|
loadBalancer: {
|
|
150445
150449
|
list: (applicationUniqueName: string) => Promise<LoadBalancer[]>;
|
|
150446
150450
|
read: (loadBalancerUniqueName: string) => Promise<LoadBalancer>;
|
|
150447
150451
|
create: (args: CreateLoadBalancerArgs) => Promise<LoadBalancer>;
|
|
150448
150452
|
restart: (loadBalancerUniqueName: string) => Promise<LoadBalancer>;
|
|
150453
|
+
pause: (loadBalancerUniqueName: string) => Promise<LoadBalancer>;
|
|
150454
|
+
resume: (loadBalancerUniqueName: string) => Promise<LoadBalancer>;
|
|
150449
150455
|
};
|
|
150450
150456
|
middleware: {
|
|
150451
150457
|
list: (applicationUniqueName: string) => Promise<Middleware[]>;
|
|
@@ -150453,30 +150459,40 @@ interface SettlemintClient {
|
|
|
150453
150459
|
graphSubgraphs: (middlewareUniqueName: string, noCache?: boolean) => Promise<MiddlewareWithSubgraphs>;
|
|
150454
150460
|
create: (args: CreateMiddlewareArgs) => Promise<Middleware>;
|
|
150455
150461
|
restart: (middlewareUniqueName: string) => Promise<Middleware>;
|
|
150462
|
+
pause: (middlewareUniqueName: string) => Promise<Middleware>;
|
|
150463
|
+
resume: (middlewareUniqueName: string) => Promise<Middleware>;
|
|
150456
150464
|
};
|
|
150457
150465
|
integrationTool: {
|
|
150458
150466
|
list: (applicationUniqueName: string) => Promise<IntegrationTool[]>;
|
|
150459
150467
|
read: (integrationToolUniqueName: string) => Promise<IntegrationTool>;
|
|
150460
150468
|
create: (args: CreateIntegrationToolArgs) => Promise<IntegrationTool>;
|
|
150461
150469
|
restart: (integrationToolUniqueName: string) => Promise<IntegrationTool>;
|
|
150470
|
+
pause: (integrationToolUniqueName: string) => Promise<IntegrationTool>;
|
|
150471
|
+
resume: (integrationToolUniqueName: string) => Promise<IntegrationTool>;
|
|
150462
150472
|
};
|
|
150463
150473
|
storage: {
|
|
150464
150474
|
list: (applicationUniqueName: string) => Promise<Storage[]>;
|
|
150465
150475
|
read: (storageUniqueName: string) => Promise<Storage>;
|
|
150466
150476
|
create: (args: CreateStorageArgs) => Promise<Storage>;
|
|
150467
150477
|
restart: (storageUniqueName: string) => Promise<Storage>;
|
|
150478
|
+
pause: (storageUniqueName: string) => Promise<Storage>;
|
|
150479
|
+
resume: (storageUniqueName: string) => Promise<Storage>;
|
|
150468
150480
|
};
|
|
150469
150481
|
privateKey: {
|
|
150470
150482
|
list: (applicationUniqueName: string) => Promise<PrivateKey[]>;
|
|
150471
150483
|
read: (privateKeyUniqueName: string) => Promise<PrivateKey>;
|
|
150472
150484
|
create: (args: CreatePrivateKeyArgs) => Promise<PrivateKey>;
|
|
150473
150485
|
restart: (privateKeyUniqueName: string) => Promise<PrivateKey>;
|
|
150486
|
+
pause: (privateKeyUniqueName: string) => Promise<PrivateKey>;
|
|
150487
|
+
resume: (privateKeyUniqueName: string) => Promise<PrivateKey>;
|
|
150474
150488
|
};
|
|
150475
150489
|
insights: {
|
|
150476
150490
|
list: (applicationUniqueName: string) => Promise<Insights[]>;
|
|
150477
150491
|
read: (insightsUniqueName: string) => Promise<Insights>;
|
|
150478
150492
|
create: (args: CreateInsightsArgs) => Promise<Insights>;
|
|
150479
150493
|
restart: (insightsUniqueName: string) => Promise<Insights>;
|
|
150494
|
+
pause: (insightsUniqueName: string) => Promise<Insights>;
|
|
150495
|
+
resume: (insightsUniqueName: string) => Promise<Insights>;
|
|
150480
150496
|
};
|
|
150481
150497
|
customDeployment: {
|
|
150482
150498
|
list: (applicationUniqueName: string) => Promise<CustomDeployment[]>;
|
|
@@ -150484,6 +150500,8 @@ interface SettlemintClient {
|
|
|
150484
150500
|
create: (args: CreateCustomDeploymentArgs) => Promise<CustomDeployment>;
|
|
150485
150501
|
update: (customDeploymentUniqueName: string, imageTag: string) => Promise<CustomDeployment>;
|
|
150486
150502
|
restart: (customDeploymentUniqueName: string) => Promise<CustomDeployment>;
|
|
150503
|
+
pause: (customDeploymentUniqueName: string) => Promise<CustomDeployment>;
|
|
150504
|
+
resume: (customDeploymentUniqueName: string) => Promise<CustomDeployment>;
|
|
150487
150505
|
};
|
|
150488
150506
|
foundry: {
|
|
150489
150507
|
env: (blockchainNodeUniqueName: string) => Promise<Record<string, string>>;
|
package/dist/settlemint.d.ts
CHANGED
|
@@ -150435,18 +150435,24 @@ interface SettlemintClient {
|
|
|
150435
150435
|
create: (args: CreateBlockchainNetworkArgs) => Promise<BlockchainNetwork>;
|
|
150436
150436
|
delete: (networkUniqueName: string) => Promise<BlockchainNetwork>;
|
|
150437
150437
|
restart: (networkUniqueName: string) => Promise<BlockchainNetwork>;
|
|
150438
|
+
pause: (networkUniqueName: string) => Promise<BlockchainNetwork>;
|
|
150439
|
+
resume: (networkUniqueName: string) => Promise<BlockchainNetwork>;
|
|
150438
150440
|
};
|
|
150439
150441
|
blockchainNode: {
|
|
150440
150442
|
list: (applicationUniqueName: string) => Promise<BlockchainNode[]>;
|
|
150441
150443
|
read: (blockchainNodeUniqueName: string) => Promise<BlockchainNode>;
|
|
150442
150444
|
create: (args: CreateBlockchainNodeArgs) => Promise<BlockchainNode>;
|
|
150443
150445
|
restart: (nodeUniqueName: string) => Promise<BlockchainNode>;
|
|
150446
|
+
pause: (nodeUniqueName: string) => Promise<BlockchainNode>;
|
|
150447
|
+
resume: (nodeUniqueName: string) => Promise<BlockchainNode>;
|
|
150444
150448
|
};
|
|
150445
150449
|
loadBalancer: {
|
|
150446
150450
|
list: (applicationUniqueName: string) => Promise<LoadBalancer[]>;
|
|
150447
150451
|
read: (loadBalancerUniqueName: string) => Promise<LoadBalancer>;
|
|
150448
150452
|
create: (args: CreateLoadBalancerArgs) => Promise<LoadBalancer>;
|
|
150449
150453
|
restart: (loadBalancerUniqueName: string) => Promise<LoadBalancer>;
|
|
150454
|
+
pause: (loadBalancerUniqueName: string) => Promise<LoadBalancer>;
|
|
150455
|
+
resume: (loadBalancerUniqueName: string) => Promise<LoadBalancer>;
|
|
150450
150456
|
};
|
|
150451
150457
|
middleware: {
|
|
150452
150458
|
list: (applicationUniqueName: string) => Promise<Middleware[]>;
|
|
@@ -150454,30 +150460,40 @@ interface SettlemintClient {
|
|
|
150454
150460
|
graphSubgraphs: (middlewareUniqueName: string, noCache?: boolean) => Promise<MiddlewareWithSubgraphs>;
|
|
150455
150461
|
create: (args: CreateMiddlewareArgs) => Promise<Middleware>;
|
|
150456
150462
|
restart: (middlewareUniqueName: string) => Promise<Middleware>;
|
|
150463
|
+
pause: (middlewareUniqueName: string) => Promise<Middleware>;
|
|
150464
|
+
resume: (middlewareUniqueName: string) => Promise<Middleware>;
|
|
150457
150465
|
};
|
|
150458
150466
|
integrationTool: {
|
|
150459
150467
|
list: (applicationUniqueName: string) => Promise<IntegrationTool[]>;
|
|
150460
150468
|
read: (integrationToolUniqueName: string) => Promise<IntegrationTool>;
|
|
150461
150469
|
create: (args: CreateIntegrationToolArgs) => Promise<IntegrationTool>;
|
|
150462
150470
|
restart: (integrationToolUniqueName: string) => Promise<IntegrationTool>;
|
|
150471
|
+
pause: (integrationToolUniqueName: string) => Promise<IntegrationTool>;
|
|
150472
|
+
resume: (integrationToolUniqueName: string) => Promise<IntegrationTool>;
|
|
150463
150473
|
};
|
|
150464
150474
|
storage: {
|
|
150465
150475
|
list: (applicationUniqueName: string) => Promise<Storage[]>;
|
|
150466
150476
|
read: (storageUniqueName: string) => Promise<Storage>;
|
|
150467
150477
|
create: (args: CreateStorageArgs) => Promise<Storage>;
|
|
150468
150478
|
restart: (storageUniqueName: string) => Promise<Storage>;
|
|
150479
|
+
pause: (storageUniqueName: string) => Promise<Storage>;
|
|
150480
|
+
resume: (storageUniqueName: string) => Promise<Storage>;
|
|
150469
150481
|
};
|
|
150470
150482
|
privateKey: {
|
|
150471
150483
|
list: (applicationUniqueName: string) => Promise<PrivateKey[]>;
|
|
150472
150484
|
read: (privateKeyUniqueName: string) => Promise<PrivateKey>;
|
|
150473
150485
|
create: (args: CreatePrivateKeyArgs) => Promise<PrivateKey>;
|
|
150474
150486
|
restart: (privateKeyUniqueName: string) => Promise<PrivateKey>;
|
|
150487
|
+
pause: (privateKeyUniqueName: string) => Promise<PrivateKey>;
|
|
150488
|
+
resume: (privateKeyUniqueName: string) => Promise<PrivateKey>;
|
|
150475
150489
|
};
|
|
150476
150490
|
insights: {
|
|
150477
150491
|
list: (applicationUniqueName: string) => Promise<Insights[]>;
|
|
150478
150492
|
read: (insightsUniqueName: string) => Promise<Insights>;
|
|
150479
150493
|
create: (args: CreateInsightsArgs) => Promise<Insights>;
|
|
150480
150494
|
restart: (insightsUniqueName: string) => Promise<Insights>;
|
|
150495
|
+
pause: (insightsUniqueName: string) => Promise<Insights>;
|
|
150496
|
+
resume: (insightsUniqueName: string) => Promise<Insights>;
|
|
150481
150497
|
};
|
|
150482
150498
|
customDeployment: {
|
|
150483
150499
|
list: (applicationUniqueName: string) => Promise<CustomDeployment[]>;
|
|
@@ -150485,6 +150501,8 @@ interface SettlemintClient {
|
|
|
150485
150501
|
create: (args: CreateCustomDeploymentArgs) => Promise<CustomDeployment>;
|
|
150486
150502
|
update: (customDeploymentUniqueName: string, imageTag: string) => Promise<CustomDeployment>;
|
|
150487
150503
|
restart: (customDeploymentUniqueName: string) => Promise<CustomDeployment>;
|
|
150504
|
+
pause: (customDeploymentUniqueName: string) => Promise<CustomDeployment>;
|
|
150505
|
+
resume: (customDeploymentUniqueName: string) => Promise<CustomDeployment>;
|
|
150488
150506
|
};
|
|
150489
150507
|
foundry: {
|
|
150490
150508
|
env: (blockchainNodeUniqueName: string) => Promise<Record<string, string>>;
|