@settlemint/sdk-js 2.6.2-pr66954c31 → 2.6.2-pr7d8c4e64

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.
@@ -17651,6 +17651,14 @@ type introspection_types = {
17651
17651
  };
17652
17652
  };
17653
17653
  defaultValue: null;
17654
+ }, {
17655
+ name: 'preloadDatabaseSchema';
17656
+ type: {
17657
+ kind: 'SCALAR';
17658
+ name: 'Boolean';
17659
+ ofType: null;
17660
+ };
17661
+ defaultValue: null;
17654
17662
  }, {
17655
17663
  name: 'productName';
17656
17664
  type: {
@@ -66969,7 +66977,6 @@ declare const createBlockchainNetwork: gql_tada0.TadaDocumentNode<{
66969
66977
  })[];
66970
66978
  };
66971
66979
  }, {
66972
- includePredeployedContracts?: boolean | null | undefined;
66973
66980
  privateKeyId?: string | null | undefined;
66974
66981
  externalNodes?: {
66975
66982
  nodeType?: "NON_VALIDATOR" | "VALIDATOR" | null | undefined;
@@ -17651,6 +17651,14 @@ type introspection_types = {
17651
17651
  };
17652
17652
  };
17653
17653
  defaultValue: null;
17654
+ }, {
17655
+ name: 'preloadDatabaseSchema';
17656
+ type: {
17657
+ kind: 'SCALAR';
17658
+ name: 'Boolean';
17659
+ ofType: null;
17660
+ };
17661
+ defaultValue: null;
17654
17662
  }, {
17655
17663
  name: 'productName';
17656
17664
  type: {
@@ -66969,7 +66977,6 @@ declare const createBlockchainNetwork: gql_tada0.TadaDocumentNode<{
66969
66977
  })[];
66970
66978
  };
66971
66979
  }, {
66972
- includePredeployedContracts?: boolean | null | undefined;
66973
66980
  privateKeyId?: string | null | undefined;
66974
66981
  externalNodes?: {
66975
66982
  nodeType?: "NON_VALIDATOR" | "VALIDATOR" | null | undefined;
@@ -502,7 +502,6 @@ const createBlockchainNetwork = graphql(`
502
502
  $quorumGenesis: QuorumGenesisInput
503
503
  $externalNodes: [BlockchainNetworkExternalNodeInput!]
504
504
  $privateKeyId: ID
505
- $includePredeployedContracts: Boolean
506
505
  ) {
507
506
  createBlockchainNetwork(
508
507
  applicationId: $applicationId
@@ -531,7 +530,6 @@ const createBlockchainNetwork = graphql(`
531
530
  quorumGenesis: $quorumGenesis
532
531
  externalNodes: $externalNodes
533
532
  keyMaterial: $privateKeyId
534
- includePredeployedContracts: $includePredeployedContracts
535
533
  ) {
536
534
  ...BlockchainNetwork
537
535
  }