@settlemint/sdk-js 2.4.0-pr7cd97e38 → 2.4.0-pr7dabb22d

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.
@@ -9217,6 +9217,14 @@ type introspection_types = {
9217
9217
  };
9218
9218
  };
9219
9219
  };
9220
+ 'applicationAccessToken': {
9221
+ name: 'applicationAccessToken';
9222
+ type: {
9223
+ kind: 'OBJECT';
9224
+ name: 'ApplicationAccessToken';
9225
+ ofType: null;
9226
+ };
9227
+ };
9220
9228
  'applicationId': {
9221
9229
  name: 'applicationId';
9222
9230
  type: {
@@ -9324,13 +9332,9 @@ type introspection_types = {
9324
9332
  'user': {
9325
9333
  name: 'user';
9326
9334
  type: {
9327
- kind: 'NON_NULL';
9328
- name: never;
9329
- ofType: {
9330
- kind: 'OBJECT';
9331
- name: 'User';
9332
- ofType: null;
9333
- };
9335
+ kind: 'OBJECT';
9336
+ name: 'User';
9337
+ ofType: null;
9334
9338
  };
9335
9339
  };
9336
9340
  'variables': {
@@ -97952,6 +97956,18 @@ type introspection_types = {
97952
97956
  };
97953
97957
  };
97954
97958
  };
97959
+ 'validInStripe': {
97960
+ name: 'validInStripe';
97961
+ type: {
97962
+ kind: 'NON_NULL';
97963
+ name: never;
97964
+ ofType: {
97965
+ kind: 'SCALAR';
97966
+ name: 'Boolean';
97967
+ ofType: null;
97968
+ };
97969
+ };
97970
+ };
97955
97971
  };
97956
97972
  };
97957
97973
  'Subgraph': {
@@ -150418,18 +150434,24 @@ interface SettlemintClient {
150418
150434
  create: (args: CreateBlockchainNetworkArgs) => Promise<BlockchainNetwork>;
150419
150435
  delete: (networkUniqueName: string) => Promise<BlockchainNetwork>;
150420
150436
  restart: (networkUniqueName: string) => Promise<BlockchainNetwork>;
150437
+ pause: (networkUniqueName: string) => Promise<BlockchainNetwork>;
150438
+ resume: (networkUniqueName: string) => Promise<BlockchainNetwork>;
150421
150439
  };
150422
150440
  blockchainNode: {
150423
150441
  list: (applicationUniqueName: string) => Promise<BlockchainNode[]>;
150424
150442
  read: (blockchainNodeUniqueName: string) => Promise<BlockchainNode>;
150425
150443
  create: (args: CreateBlockchainNodeArgs) => Promise<BlockchainNode>;
150426
150444
  restart: (nodeUniqueName: string) => Promise<BlockchainNode>;
150445
+ pause: (nodeUniqueName: string) => Promise<BlockchainNode>;
150446
+ resume: (nodeUniqueName: string) => Promise<BlockchainNode>;
150427
150447
  };
150428
150448
  loadBalancer: {
150429
150449
  list: (applicationUniqueName: string) => Promise<LoadBalancer[]>;
150430
150450
  read: (loadBalancerUniqueName: string) => Promise<LoadBalancer>;
150431
150451
  create: (args: CreateLoadBalancerArgs) => Promise<LoadBalancer>;
150432
150452
  restart: (loadBalancerUniqueName: string) => Promise<LoadBalancer>;
150453
+ pause: (loadBalancerUniqueName: string) => Promise<LoadBalancer>;
150454
+ resume: (loadBalancerUniqueName: string) => Promise<LoadBalancer>;
150433
150455
  };
150434
150456
  middleware: {
150435
150457
  list: (applicationUniqueName: string) => Promise<Middleware[]>;
@@ -150437,30 +150459,40 @@ interface SettlemintClient {
150437
150459
  graphSubgraphs: (middlewareUniqueName: string, noCache?: boolean) => Promise<MiddlewareWithSubgraphs>;
150438
150460
  create: (args: CreateMiddlewareArgs) => Promise<Middleware>;
150439
150461
  restart: (middlewareUniqueName: string) => Promise<Middleware>;
150462
+ pause: (middlewareUniqueName: string) => Promise<Middleware>;
150463
+ resume: (middlewareUniqueName: string) => Promise<Middleware>;
150440
150464
  };
150441
150465
  integrationTool: {
150442
150466
  list: (applicationUniqueName: string) => Promise<IntegrationTool[]>;
150443
150467
  read: (integrationToolUniqueName: string) => Promise<IntegrationTool>;
150444
150468
  create: (args: CreateIntegrationToolArgs) => Promise<IntegrationTool>;
150445
150469
  restart: (integrationToolUniqueName: string) => Promise<IntegrationTool>;
150470
+ pause: (integrationToolUniqueName: string) => Promise<IntegrationTool>;
150471
+ resume: (integrationToolUniqueName: string) => Promise<IntegrationTool>;
150446
150472
  };
150447
150473
  storage: {
150448
150474
  list: (applicationUniqueName: string) => Promise<Storage[]>;
150449
150475
  read: (storageUniqueName: string) => Promise<Storage>;
150450
150476
  create: (args: CreateStorageArgs) => Promise<Storage>;
150451
150477
  restart: (storageUniqueName: string) => Promise<Storage>;
150478
+ pause: (storageUniqueName: string) => Promise<Storage>;
150479
+ resume: (storageUniqueName: string) => Promise<Storage>;
150452
150480
  };
150453
150481
  privateKey: {
150454
150482
  list: (applicationUniqueName: string) => Promise<PrivateKey[]>;
150455
150483
  read: (privateKeyUniqueName: string) => Promise<PrivateKey>;
150456
150484
  create: (args: CreatePrivateKeyArgs) => Promise<PrivateKey>;
150457
150485
  restart: (privateKeyUniqueName: string) => Promise<PrivateKey>;
150486
+ pause: (privateKeyUniqueName: string) => Promise<PrivateKey>;
150487
+ resume: (privateKeyUniqueName: string) => Promise<PrivateKey>;
150458
150488
  };
150459
150489
  insights: {
150460
150490
  list: (applicationUniqueName: string) => Promise<Insights[]>;
150461
150491
  read: (insightsUniqueName: string) => Promise<Insights>;
150462
150492
  create: (args: CreateInsightsArgs) => Promise<Insights>;
150463
150493
  restart: (insightsUniqueName: string) => Promise<Insights>;
150494
+ pause: (insightsUniqueName: string) => Promise<Insights>;
150495
+ resume: (insightsUniqueName: string) => Promise<Insights>;
150464
150496
  };
150465
150497
  customDeployment: {
150466
150498
  list: (applicationUniqueName: string) => Promise<CustomDeployment[]>;
@@ -150468,6 +150500,8 @@ interface SettlemintClient {
150468
150500
  create: (args: CreateCustomDeploymentArgs) => Promise<CustomDeployment>;
150469
150501
  update: (customDeploymentUniqueName: string, imageTag: string) => Promise<CustomDeployment>;
150470
150502
  restart: (customDeploymentUniqueName: string) => Promise<CustomDeployment>;
150503
+ pause: (customDeploymentUniqueName: string) => Promise<CustomDeployment>;
150504
+ resume: (customDeploymentUniqueName: string) => Promise<CustomDeployment>;
150471
150505
  };
150472
150506
  foundry: {
150473
150507
  env: (blockchainNodeUniqueName: string) => Promise<Record<string, string>>;
@@ -9218,6 +9218,14 @@ type introspection_types = {
9218
9218
  };
9219
9219
  };
9220
9220
  };
9221
+ 'applicationAccessToken': {
9222
+ name: 'applicationAccessToken';
9223
+ type: {
9224
+ kind: 'OBJECT';
9225
+ name: 'ApplicationAccessToken';
9226
+ ofType: null;
9227
+ };
9228
+ };
9221
9229
  'applicationId': {
9222
9230
  name: 'applicationId';
9223
9231
  type: {
@@ -9325,13 +9333,9 @@ type introspection_types = {
9325
9333
  'user': {
9326
9334
  name: 'user';
9327
9335
  type: {
9328
- kind: 'NON_NULL';
9329
- name: never;
9330
- ofType: {
9331
- kind: 'OBJECT';
9332
- name: 'User';
9333
- ofType: null;
9334
- };
9336
+ kind: 'OBJECT';
9337
+ name: 'User';
9338
+ ofType: null;
9335
9339
  };
9336
9340
  };
9337
9341
  'variables': {
@@ -97953,6 +97957,18 @@ type introspection_types = {
97953
97957
  };
97954
97958
  };
97955
97959
  };
97960
+ 'validInStripe': {
97961
+ name: 'validInStripe';
97962
+ type: {
97963
+ kind: 'NON_NULL';
97964
+ name: never;
97965
+ ofType: {
97966
+ kind: 'SCALAR';
97967
+ name: 'Boolean';
97968
+ ofType: null;
97969
+ };
97970
+ };
97971
+ };
97956
97972
  };
97957
97973
  };
97958
97974
  'Subgraph': {
@@ -150419,18 +150435,24 @@ interface SettlemintClient {
150419
150435
  create: (args: CreateBlockchainNetworkArgs) => Promise<BlockchainNetwork>;
150420
150436
  delete: (networkUniqueName: string) => Promise<BlockchainNetwork>;
150421
150437
  restart: (networkUniqueName: string) => Promise<BlockchainNetwork>;
150438
+ pause: (networkUniqueName: string) => Promise<BlockchainNetwork>;
150439
+ resume: (networkUniqueName: string) => Promise<BlockchainNetwork>;
150422
150440
  };
150423
150441
  blockchainNode: {
150424
150442
  list: (applicationUniqueName: string) => Promise<BlockchainNode[]>;
150425
150443
  read: (blockchainNodeUniqueName: string) => Promise<BlockchainNode>;
150426
150444
  create: (args: CreateBlockchainNodeArgs) => Promise<BlockchainNode>;
150427
150445
  restart: (nodeUniqueName: string) => Promise<BlockchainNode>;
150446
+ pause: (nodeUniqueName: string) => Promise<BlockchainNode>;
150447
+ resume: (nodeUniqueName: string) => Promise<BlockchainNode>;
150428
150448
  };
150429
150449
  loadBalancer: {
150430
150450
  list: (applicationUniqueName: string) => Promise<LoadBalancer[]>;
150431
150451
  read: (loadBalancerUniqueName: string) => Promise<LoadBalancer>;
150432
150452
  create: (args: CreateLoadBalancerArgs) => Promise<LoadBalancer>;
150433
150453
  restart: (loadBalancerUniqueName: string) => Promise<LoadBalancer>;
150454
+ pause: (loadBalancerUniqueName: string) => Promise<LoadBalancer>;
150455
+ resume: (loadBalancerUniqueName: string) => Promise<LoadBalancer>;
150434
150456
  };
150435
150457
  middleware: {
150436
150458
  list: (applicationUniqueName: string) => Promise<Middleware[]>;
@@ -150438,30 +150460,40 @@ interface SettlemintClient {
150438
150460
  graphSubgraphs: (middlewareUniqueName: string, noCache?: boolean) => Promise<MiddlewareWithSubgraphs>;
150439
150461
  create: (args: CreateMiddlewareArgs) => Promise<Middleware>;
150440
150462
  restart: (middlewareUniqueName: string) => Promise<Middleware>;
150463
+ pause: (middlewareUniqueName: string) => Promise<Middleware>;
150464
+ resume: (middlewareUniqueName: string) => Promise<Middleware>;
150441
150465
  };
150442
150466
  integrationTool: {
150443
150467
  list: (applicationUniqueName: string) => Promise<IntegrationTool[]>;
150444
150468
  read: (integrationToolUniqueName: string) => Promise<IntegrationTool>;
150445
150469
  create: (args: CreateIntegrationToolArgs) => Promise<IntegrationTool>;
150446
150470
  restart: (integrationToolUniqueName: string) => Promise<IntegrationTool>;
150471
+ pause: (integrationToolUniqueName: string) => Promise<IntegrationTool>;
150472
+ resume: (integrationToolUniqueName: string) => Promise<IntegrationTool>;
150447
150473
  };
150448
150474
  storage: {
150449
150475
  list: (applicationUniqueName: string) => Promise<Storage[]>;
150450
150476
  read: (storageUniqueName: string) => Promise<Storage>;
150451
150477
  create: (args: CreateStorageArgs) => Promise<Storage>;
150452
150478
  restart: (storageUniqueName: string) => Promise<Storage>;
150479
+ pause: (storageUniqueName: string) => Promise<Storage>;
150480
+ resume: (storageUniqueName: string) => Promise<Storage>;
150453
150481
  };
150454
150482
  privateKey: {
150455
150483
  list: (applicationUniqueName: string) => Promise<PrivateKey[]>;
150456
150484
  read: (privateKeyUniqueName: string) => Promise<PrivateKey>;
150457
150485
  create: (args: CreatePrivateKeyArgs) => Promise<PrivateKey>;
150458
150486
  restart: (privateKeyUniqueName: string) => Promise<PrivateKey>;
150487
+ pause: (privateKeyUniqueName: string) => Promise<PrivateKey>;
150488
+ resume: (privateKeyUniqueName: string) => Promise<PrivateKey>;
150459
150489
  };
150460
150490
  insights: {
150461
150491
  list: (applicationUniqueName: string) => Promise<Insights[]>;
150462
150492
  read: (insightsUniqueName: string) => Promise<Insights>;
150463
150493
  create: (args: CreateInsightsArgs) => Promise<Insights>;
150464
150494
  restart: (insightsUniqueName: string) => Promise<Insights>;
150495
+ pause: (insightsUniqueName: string) => Promise<Insights>;
150496
+ resume: (insightsUniqueName: string) => Promise<Insights>;
150465
150497
  };
150466
150498
  customDeployment: {
150467
150499
  list: (applicationUniqueName: string) => Promise<CustomDeployment[]>;
@@ -150469,6 +150501,8 @@ interface SettlemintClient {
150469
150501
  create: (args: CreateCustomDeploymentArgs) => Promise<CustomDeployment>;
150470
150502
  update: (customDeploymentUniqueName: string, imageTag: string) => Promise<CustomDeployment>;
150471
150503
  restart: (customDeploymentUniqueName: string) => Promise<CustomDeployment>;
150504
+ pause: (customDeploymentUniqueName: string) => Promise<CustomDeployment>;
150505
+ resume: (customDeploymentUniqueName: string) => Promise<CustomDeployment>;
150472
150506
  };
150473
150507
  foundry: {
150474
150508
  env: (blockchainNodeUniqueName: string) => Promise<Record<string, string>>;