@settlemint/sdk-js 2.6.2-prdbaefab2 → 2.6.2-prf4fd4e0b
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 +16 -7
- package/dist/settlemint.cjs.map +1 -1
- package/dist/settlemint.d.cts +9 -0
- package/dist/settlemint.d.ts +9 -0
- package/dist/settlemint.js +2 -0
- package/dist/settlemint.js.map +1 -1
- package/package.json +2 -2
package/dist/settlemint.d.cts
CHANGED
|
@@ -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,6 +66977,7 @@ declare const createBlockchainNetwork: gql_tada0.TadaDocumentNode<{
|
|
|
66969
66977
|
})[];
|
|
66970
66978
|
};
|
|
66971
66979
|
}, {
|
|
66980
|
+
includePredeployedContracts?: boolean | null | undefined;
|
|
66972
66981
|
privateKeyId?: string | null | undefined;
|
|
66973
66982
|
externalNodes?: {
|
|
66974
66983
|
nodeType?: "NON_VALIDATOR" | "VALIDATOR" | null | undefined;
|
package/dist/settlemint.d.ts
CHANGED
|
@@ -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,6 +66977,7 @@ declare const createBlockchainNetwork: gql_tada0.TadaDocumentNode<{
|
|
|
66969
66977
|
})[];
|
|
66970
66978
|
};
|
|
66971
66979
|
}, {
|
|
66980
|
+
includePredeployedContracts?: boolean | null | undefined;
|
|
66972
66981
|
privateKeyId?: string | null | undefined;
|
|
66973
66982
|
externalNodes?: {
|
|
66974
66983
|
nodeType?: "NON_VALIDATOR" | "VALIDATOR" | null | undefined;
|
package/dist/settlemint.js
CHANGED
|
@@ -502,6 +502,7 @@ const createBlockchainNetwork = graphql(`
|
|
|
502
502
|
$quorumGenesis: QuorumGenesisInput
|
|
503
503
|
$externalNodes: [BlockchainNetworkExternalNodeInput!]
|
|
504
504
|
$privateKeyId: ID
|
|
505
|
+
$includePredeployedContracts: Boolean
|
|
505
506
|
) {
|
|
506
507
|
createBlockchainNetwork(
|
|
507
508
|
applicationId: $applicationId
|
|
@@ -530,6 +531,7 @@ const createBlockchainNetwork = graphql(`
|
|
|
530
531
|
quorumGenesis: $quorumGenesis
|
|
531
532
|
externalNodes: $externalNodes
|
|
532
533
|
keyMaterial: $privateKeyId
|
|
534
|
+
includePredeployedContracts: $includePredeployedContracts
|
|
533
535
|
) {
|
|
534
536
|
...BlockchainNetwork
|
|
535
537
|
}
|