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