@settlemint/sdk-js 2.6.0-mainefcfc742 → 2.6.0-mainf63182f8
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.d.cts +53 -45
- package/dist/settlemint.d.ts +27 -19
- package/package.json +2 -2
package/dist/settlemint.d.cts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/* SettleMint SDK - Main Package */
|
|
2
2
|
import { Id } from "@settlemint/sdk-utils/validation";
|
|
3
|
-
import * as
|
|
3
|
+
import * as gql_tada1 from "gql.tada";
|
|
4
4
|
import { ResultOf, VariablesOf, initGraphQLTada } from "gql.tada";
|
|
5
5
|
import { GraphQLClient } from "graphql-request";
|
|
6
6
|
import { z } from "zod";
|
|
@@ -27739,6 +27739,14 @@ type introspection_types = {
|
|
|
27739
27739
|
ofType: null;
|
|
27740
27740
|
};
|
|
27741
27741
|
defaultValue: null;
|
|
27742
|
+
}, {
|
|
27743
|
+
name: 'includePredeployedContracts';
|
|
27744
|
+
type: {
|
|
27745
|
+
kind: 'SCALAR';
|
|
27746
|
+
name: 'Boolean';
|
|
27747
|
+
ofType: null;
|
|
27748
|
+
};
|
|
27749
|
+
defaultValue: "false";
|
|
27742
27750
|
}, {
|
|
27743
27751
|
name: 'keyMaterial';
|
|
27744
27752
|
type: {
|
|
@@ -104152,7 +104160,7 @@ declare const graphql: initGraphQLTada<{
|
|
|
104152
104160
|
/**
|
|
104153
104161
|
* GraphQL fragment containing core application fields.
|
|
104154
104162
|
*/
|
|
104155
|
-
declare const ApplicationFragment:
|
|
104163
|
+
declare const ApplicationFragment: gql_tada1.TadaDocumentNode<{
|
|
104156
104164
|
id: string;
|
|
104157
104165
|
uniqueName: string;
|
|
104158
104166
|
name: string;
|
|
@@ -104173,7 +104181,7 @@ type Application = ResultOf<typeof ApplicationFragment>;
|
|
|
104173
104181
|
/**
|
|
104174
104182
|
* Mutation to create a new application.
|
|
104175
104183
|
*/
|
|
104176
|
-
declare const createApplication:
|
|
104184
|
+
declare const createApplication: gql_tada1.TadaDocumentNode<{
|
|
104177
104185
|
createApplication: {
|
|
104178
104186
|
id: string;
|
|
104179
104187
|
uniqueName: string;
|
|
@@ -104228,7 +104236,7 @@ declare const applicationCreate: (gqlClient: GraphQLClient) => (args: CreateAppl
|
|
|
104228
104236
|
declare const applicationDelete: (gqlClient: GraphQLClient) => (applicationUniqueName: string) => Promise<Application>;
|
|
104229
104237
|
//#endregion
|
|
104230
104238
|
//#region src/graphql/application-access-tokens.d.ts
|
|
104231
|
-
declare const createApplicationAccessToken:
|
|
104239
|
+
declare const createApplicationAccessToken: gql_tada1.TadaDocumentNode<{
|
|
104232
104240
|
createApplicationAccessToken: {
|
|
104233
104241
|
token: string | null;
|
|
104234
104242
|
};
|
|
@@ -104292,7 +104300,7 @@ declare const applicationAccessTokenCreate: (gqlClient: GraphQLClient) => (args:
|
|
|
104292
104300
|
/**
|
|
104293
104301
|
* Fragment containing core blockchain network fields.
|
|
104294
104302
|
*/
|
|
104295
|
-
declare const BlockchainNetworkFragment:
|
|
104303
|
+
declare const BlockchainNetworkFragment: gql_tada1.TadaDocumentNode<{
|
|
104296
104304
|
__typename: "ArbitrumBlockchainNetwork";
|
|
104297
104305
|
id: string;
|
|
104298
104306
|
uniqueName: string;
|
|
@@ -117639,7 +117647,7 @@ type BlockchainNetwork = ResultOf<typeof BlockchainNetworkFragment>;
|
|
|
117639
117647
|
/**
|
|
117640
117648
|
* Mutation to create a new blockchain network.
|
|
117641
117649
|
*/
|
|
117642
|
-
declare const createBlockchainNetwork:
|
|
117650
|
+
declare const createBlockchainNetwork: gql_tada1.TadaDocumentNode<{
|
|
117643
117651
|
createBlockchainNetwork: {
|
|
117644
117652
|
__typename: "ArbitrumBlockchainNetwork";
|
|
117645
117653
|
id: string;
|
|
@@ -131133,8 +131141,8 @@ declare const createBlockchainNetwork: gql_tada0.TadaDocumentNode<{
|
|
|
131133
131141
|
absoluteMaxBytes?: number | null | undefined;
|
|
131134
131142
|
maxMessageCount?: number | null | undefined;
|
|
131135
131143
|
batchTimeout?: number | null | undefined;
|
|
131136
|
-
type?: "
|
|
131137
|
-
size?: "CUSTOM" | "
|
|
131144
|
+
type?: "DEDICATED" | "SHARED" | null | undefined;
|
|
131145
|
+
size?: "CUSTOM" | "LARGE" | "MEDIUM" | "SMALL" | null | undefined;
|
|
131138
131146
|
region: string;
|
|
131139
131147
|
provider: string;
|
|
131140
131148
|
secondsPerBlock?: number | null | undefined;
|
|
@@ -171220,7 +171228,7 @@ declare const blockchainNetworkResume: (gqlClient: GraphQLClient) => (blockchain
|
|
|
171220
171228
|
/**
|
|
171221
171229
|
* Fragment containing core blockchain node fields.
|
|
171222
171230
|
*/
|
|
171223
|
-
declare const BlockchainNodeFragment:
|
|
171231
|
+
declare const BlockchainNodeFragment: gql_tada1.TadaDocumentNode<{
|
|
171224
171232
|
__typename: "ArbitrumBlockchainNode";
|
|
171225
171233
|
id: string;
|
|
171226
171234
|
uniqueName: string;
|
|
@@ -179692,7 +179700,7 @@ type BlockchainNode = ResultOf<typeof BlockchainNodeFragment>;
|
|
|
179692
179700
|
/**
|
|
179693
179701
|
* Mutation to create a blockchain node.
|
|
179694
179702
|
*/
|
|
179695
|
-
declare const createBlockchainNode:
|
|
179703
|
+
declare const createBlockchainNode: gql_tada1.TadaDocumentNode<{
|
|
179696
179704
|
createBlockchainNode: {
|
|
179697
179705
|
__typename: "ArbitrumBlockchainNode";
|
|
179698
179706
|
id: string;
|
|
@@ -188156,9 +188164,9 @@ declare const createBlockchainNode: gql_tada0.TadaDocumentNode<{
|
|
|
188156
188164
|
};
|
|
188157
188165
|
}, {
|
|
188158
188166
|
keyMaterial?: string | null | undefined;
|
|
188159
|
-
nodeType?: "NON_VALIDATOR" | "
|
|
188160
|
-
type?: "
|
|
188161
|
-
size?: "CUSTOM" | "
|
|
188167
|
+
nodeType?: "NON_VALIDATOR" | "VALIDATOR" | "NOTARY" | "ORDERER" | "PEER" | "UNSPECIFIED" | null | undefined;
|
|
188168
|
+
type?: "DEDICATED" | "SHARED" | null | undefined;
|
|
188169
|
+
size?: "CUSTOM" | "LARGE" | "MEDIUM" | "SMALL" | null | undefined;
|
|
188162
188170
|
region: string;
|
|
188163
188171
|
provider: string;
|
|
188164
188172
|
name: string;
|
|
@@ -188225,7 +188233,7 @@ declare const blockchainNodeResume: (gqlClient: GraphQLClient) => (blockchainNod
|
|
|
188225
188233
|
/**
|
|
188226
188234
|
* Fragment containing core custom deployment fields.
|
|
188227
188235
|
*/
|
|
188228
|
-
declare const CustomDeploymentFragment:
|
|
188236
|
+
declare const CustomDeploymentFragment: gql_tada1.TadaDocumentNode<{
|
|
188229
188237
|
id: string;
|
|
188230
188238
|
uniqueName: string;
|
|
188231
188239
|
name: string;
|
|
@@ -188255,7 +188263,7 @@ type CustomDeployment = ResultOf<typeof CustomDeploymentFragment>;
|
|
|
188255
188263
|
/**
|
|
188256
188264
|
* Mutation to create a custom deployment.
|
|
188257
188265
|
*/
|
|
188258
|
-
declare const createCustomDeployment:
|
|
188266
|
+
declare const createCustomDeployment: gql_tada1.TadaDocumentNode<{
|
|
188259
188267
|
createCustomDeployment: {
|
|
188260
188268
|
id: string;
|
|
188261
188269
|
uniqueName: string;
|
|
@@ -188276,8 +188284,8 @@ declare const createCustomDeployment: gql_tada0.TadaDocumentNode<{
|
|
|
188276
188284
|
}[];
|
|
188277
188285
|
};
|
|
188278
188286
|
}, {
|
|
188279
|
-
type?: "
|
|
188280
|
-
size?: "CUSTOM" | "
|
|
188287
|
+
type?: "DEDICATED" | "SHARED" | null | undefined;
|
|
188288
|
+
size?: "CUSTOM" | "LARGE" | "MEDIUM" | "SMALL" | null | undefined;
|
|
188281
188289
|
region: string;
|
|
188282
188290
|
provider: string;
|
|
188283
188291
|
port: number;
|
|
@@ -188355,7 +188363,7 @@ declare const customDeploymentResume: (gqlClient: GraphQLClient) => (customDeplo
|
|
|
188355
188363
|
/**
|
|
188356
188364
|
* GraphQL fragment containing core insights fields.
|
|
188357
188365
|
*/
|
|
188358
|
-
declare const InsightsFragment:
|
|
188366
|
+
declare const InsightsFragment: gql_tada1.TadaDocumentNode<{
|
|
188359
188367
|
__typename: "BlockchainExplorer";
|
|
188360
188368
|
id: string;
|
|
188361
188369
|
uniqueName: string;
|
|
@@ -188427,7 +188435,7 @@ type Insights = ResultOf<typeof InsightsFragment>;
|
|
|
188427
188435
|
/**
|
|
188428
188436
|
* Mutation to create insights.
|
|
188429
188437
|
*/
|
|
188430
|
-
declare const createInsights:
|
|
188438
|
+
declare const createInsights: gql_tada1.TadaDocumentNode<{
|
|
188431
188439
|
createInsights: {
|
|
188432
188440
|
__typename: "BlockchainExplorer";
|
|
188433
188441
|
id: string;
|
|
@@ -188492,8 +188500,8 @@ declare const createInsights: gql_tada0.TadaDocumentNode<{
|
|
|
188492
188500
|
}, {
|
|
188493
188501
|
loadBalancer?: string | null | undefined;
|
|
188494
188502
|
blockchainNode?: string | null | undefined;
|
|
188495
|
-
type?: "
|
|
188496
|
-
size?: "CUSTOM" | "
|
|
188503
|
+
type?: "DEDICATED" | "SHARED" | null | undefined;
|
|
188504
|
+
size?: "CUSTOM" | "LARGE" | "MEDIUM" | "SMALL" | null | undefined;
|
|
188497
188505
|
region: string;
|
|
188498
188506
|
provider: string;
|
|
188499
188507
|
insightsCategory: "BLOCKCHAIN_EXPLORER" | "HYPERLEDGER_EXPLORER" | "OTTERSCAN_BLOCKCHAIN_EXPLORER";
|
|
@@ -188561,7 +188569,7 @@ declare const insightsResume: (gqlClient: GraphQLClient) => (insightsUniqueName:
|
|
|
188561
188569
|
/**
|
|
188562
188570
|
* GraphQL fragment containing core integration fields.
|
|
188563
188571
|
*/
|
|
188564
|
-
declare const IntegrationFragment:
|
|
188572
|
+
declare const IntegrationFragment: gql_tada1.TadaDocumentNode<{
|
|
188565
188573
|
__typename: "Chainlink";
|
|
188566
188574
|
id: string;
|
|
188567
188575
|
uniqueName: string;
|
|
@@ -188653,7 +188661,7 @@ type IntegrationTool = ResultOf<typeof IntegrationFragment>;
|
|
|
188653
188661
|
/**
|
|
188654
188662
|
* Mutation to create a new integration.
|
|
188655
188663
|
*/
|
|
188656
|
-
declare const createIntegration:
|
|
188664
|
+
declare const createIntegration: gql_tada1.TadaDocumentNode<{
|
|
188657
188665
|
createIntegration: {
|
|
188658
188666
|
__typename: "Chainlink";
|
|
188659
188667
|
id: string;
|
|
@@ -188736,8 +188744,8 @@ declare const createIntegration: gql_tada0.TadaDocumentNode<{
|
|
|
188736
188744
|
}[];
|
|
188737
188745
|
};
|
|
188738
188746
|
}, {
|
|
188739
|
-
type?: "
|
|
188740
|
-
size?: "CUSTOM" | "
|
|
188747
|
+
type?: "DEDICATED" | "SHARED" | null | undefined;
|
|
188748
|
+
size?: "CUSTOM" | "LARGE" | "MEDIUM" | "SMALL" | null | undefined;
|
|
188741
188749
|
region: string;
|
|
188742
188750
|
provider: string;
|
|
188743
188751
|
integrationType: "CHAINLINK" | "HASURA" | "HA_HASURA" | "INTEGRATION_STUDIO";
|
|
@@ -188803,7 +188811,7 @@ declare const integrationToolResume: (gqlClient: GraphQLClient) => (integrationU
|
|
|
188803
188811
|
/**
|
|
188804
188812
|
* GraphQL fragment containing core load balancer fields.
|
|
188805
188813
|
*/
|
|
188806
|
-
declare const LoadBalancerFragment:
|
|
188814
|
+
declare const LoadBalancerFragment: gql_tada1.TadaDocumentNode<{
|
|
188807
188815
|
__typename: "EVMLoadBalancer";
|
|
188808
188816
|
id: string;
|
|
188809
188817
|
uniqueName: string;
|
|
@@ -188843,7 +188851,7 @@ type LoadBalancer = ResultOf<typeof LoadBalancerFragment>;
|
|
|
188843
188851
|
/**
|
|
188844
188852
|
* Mutation to create a load balancer.
|
|
188845
188853
|
*/
|
|
188846
|
-
declare const createLoadBalancer:
|
|
188854
|
+
declare const createLoadBalancer: gql_tada1.TadaDocumentNode<{
|
|
188847
188855
|
createLoadBalancer: {
|
|
188848
188856
|
__typename: "EVMLoadBalancer";
|
|
188849
188857
|
id: string;
|
|
@@ -188875,8 +188883,8 @@ declare const createLoadBalancer: gql_tada0.TadaDocumentNode<{
|
|
|
188875
188883
|
};
|
|
188876
188884
|
}, {
|
|
188877
188885
|
connectedNodes: string[];
|
|
188878
|
-
type?: "
|
|
188879
|
-
size?: "CUSTOM" | "
|
|
188886
|
+
type?: "DEDICATED" | "SHARED" | null | undefined;
|
|
188887
|
+
size?: "CUSTOM" | "LARGE" | "MEDIUM" | "SMALL" | null | undefined;
|
|
188880
188888
|
region: string;
|
|
188881
188889
|
provider: string;
|
|
188882
188890
|
name: string;
|
|
@@ -188944,7 +188952,7 @@ declare const loadBalancerResume: (gqlClient: GraphQLClient) => (loadBalancerUni
|
|
|
188944
188952
|
/**
|
|
188945
188953
|
* GraphQL fragment containing core middleware fields.
|
|
188946
188954
|
*/
|
|
188947
|
-
declare const MiddlewareFragment:
|
|
188955
|
+
declare const MiddlewareFragment: gql_tada1.TadaDocumentNode<{
|
|
188948
188956
|
__typename: "AttestationIndexerMiddleware";
|
|
188949
188957
|
id: string;
|
|
188950
188958
|
uniqueName: string;
|
|
@@ -189112,7 +189120,7 @@ type Middleware = ResultOf<typeof MiddlewareFragment>;
|
|
|
189112
189120
|
/**
|
|
189113
189121
|
* Query to fetch a specific middleware with subgraphs.
|
|
189114
189122
|
*/
|
|
189115
|
-
declare const getGraphMiddlewareSubgraphs:
|
|
189123
|
+
declare const getGraphMiddlewareSubgraphs: gql_tada1.TadaDocumentNode<{
|
|
189116
189124
|
middlewareByUniqueName: {
|
|
189117
189125
|
__typename: "AttestationIndexerMiddleware";
|
|
189118
189126
|
id: string;
|
|
@@ -189295,7 +189303,7 @@ type MiddlewareWithSubgraphs = ResultOf<typeof getGraphMiddlewareSubgraphs>["mid
|
|
|
189295
189303
|
/**
|
|
189296
189304
|
* Mutation to create a new middleware.
|
|
189297
189305
|
*/
|
|
189298
|
-
declare const createMiddleware:
|
|
189306
|
+
declare const createMiddleware: gql_tada1.TadaDocumentNode<{
|
|
189299
189307
|
createMiddleware: {
|
|
189300
189308
|
__typename: "AttestationIndexerMiddleware";
|
|
189301
189309
|
id: string;
|
|
@@ -189463,8 +189471,8 @@ declare const createMiddleware: gql_tada0.TadaDocumentNode<{
|
|
|
189463
189471
|
blockchainNodeId?: string | null | undefined;
|
|
189464
189472
|
storageId?: string | null | undefined;
|
|
189465
189473
|
interface: "ATTESTATION_INDEXER" | "BESU" | "FIREFLY_FABCONNECT" | "GRAPH" | "HA_GRAPH" | "HA_GRAPH_POSTGRES" | "SMART_CONTRACT_PORTAL";
|
|
189466
|
-
type?: "
|
|
189467
|
-
size?: "CUSTOM" | "
|
|
189474
|
+
type?: "DEDICATED" | "SHARED" | null | undefined;
|
|
189475
|
+
size?: "CUSTOM" | "LARGE" | "MEDIUM" | "SMALL" | null | undefined;
|
|
189468
189476
|
region: string;
|
|
189469
189477
|
provider: string;
|
|
189470
189478
|
name: string;
|
|
@@ -189540,7 +189548,7 @@ declare const middlewareResume: (gqlClient: GraphQLClient) => (middlewareUniqueN
|
|
|
189540
189548
|
/**
|
|
189541
189549
|
* GraphQL query to fetch platform configuration.
|
|
189542
189550
|
*/
|
|
189543
|
-
declare const getPlatformConfigQuery:
|
|
189551
|
+
declare const getPlatformConfigQuery: gql_tada1.TadaDocumentNode<{
|
|
189544
189552
|
config: {
|
|
189545
189553
|
smartContractSets: {
|
|
189546
189554
|
id: string;
|
|
@@ -189597,7 +189605,7 @@ declare const getPlatformConfig: (gqlClient: GraphQLClient) => () => Promise<Pla
|
|
|
189597
189605
|
/**
|
|
189598
189606
|
* GraphQL fragment containing core private key fields.
|
|
189599
189607
|
*/
|
|
189600
|
-
declare const PrivateKeyFragment:
|
|
189608
|
+
declare const PrivateKeyFragment: gql_tada1.TadaDocumentNode<{
|
|
189601
189609
|
__typename: "AccessibleEcdsaP256PrivateKey";
|
|
189602
189610
|
id: string;
|
|
189603
189611
|
uniqueName: string;
|
|
@@ -190239,7 +190247,7 @@ type PrivateKey = ResultOf<typeof PrivateKeyFragment>;
|
|
|
190239
190247
|
/**
|
|
190240
190248
|
* Mutation to create a new private key.
|
|
190241
190249
|
*/
|
|
190242
|
-
declare const createPrivateKey:
|
|
190250
|
+
declare const createPrivateKey: gql_tada1.TadaDocumentNode<{
|
|
190243
190251
|
createPrivateKey: {
|
|
190244
190252
|
__typename: "AccessibleEcdsaP256PrivateKey";
|
|
190245
190253
|
id: string;
|
|
@@ -190876,8 +190884,8 @@ declare const createPrivateKey: gql_tada0.TadaDocumentNode<{
|
|
|
190876
190884
|
trustedForwarderAddress?: string | null | undefined;
|
|
190877
190885
|
trustedForwarderName?: string | null | undefined;
|
|
190878
190886
|
blockchainNodes?: string[] | null | undefined;
|
|
190879
|
-
type?: "
|
|
190880
|
-
size?: "CUSTOM" | "
|
|
190887
|
+
type?: "DEDICATED" | "SHARED" | null | undefined;
|
|
190888
|
+
size?: "CUSTOM" | "LARGE" | "MEDIUM" | "SMALL" | null | undefined;
|
|
190881
190889
|
region: string;
|
|
190882
190890
|
provider: string;
|
|
190883
190891
|
privateKeyType: "ACCESSIBLE_ECDSA_P256" | "HD_ECDSA_P256" | "HSM_ECDSA_P256";
|
|
@@ -190945,7 +190953,7 @@ declare const privateKeyResume: (gqlClient: GraphQLClient) => (privateKeyUniqueN
|
|
|
190945
190953
|
/**
|
|
190946
190954
|
* GraphQL fragment containing core storage fields.
|
|
190947
190955
|
*/
|
|
190948
|
-
declare const StorageFragment:
|
|
190956
|
+
declare const StorageFragment: gql_tada1.TadaDocumentNode<{
|
|
190949
190957
|
__typename: "IPFSStorage";
|
|
190950
190958
|
id: string;
|
|
190951
190959
|
uniqueName: string;
|
|
@@ -190997,7 +191005,7 @@ type Storage = ResultOf<typeof StorageFragment>;
|
|
|
190997
191005
|
/**
|
|
190998
191006
|
* Mutation to create a new storage.
|
|
190999
191007
|
*/
|
|
191000
|
-
declare const createStorage:
|
|
191008
|
+
declare const createStorage: gql_tada1.TadaDocumentNode<{
|
|
191001
191009
|
createStorage: {
|
|
191002
191010
|
__typename: "IPFSStorage";
|
|
191003
191011
|
id: string;
|
|
@@ -191040,8 +191048,8 @@ declare const createStorage: gql_tada0.TadaDocumentNode<{
|
|
|
191040
191048
|
}[];
|
|
191041
191049
|
};
|
|
191042
191050
|
}, {
|
|
191043
|
-
type?: "
|
|
191044
|
-
size?: "CUSTOM" | "
|
|
191051
|
+
type?: "DEDICATED" | "SHARED" | null | undefined;
|
|
191052
|
+
size?: "CUSTOM" | "LARGE" | "MEDIUM" | "SMALL" | null | undefined;
|
|
191045
191053
|
region: string;
|
|
191046
191054
|
provider: string;
|
|
191047
191055
|
storageProtocol: "IPFS" | "MINIO";
|
|
@@ -191107,7 +191115,7 @@ declare const storageResume: (gqlClient: GraphQLClient) => (storageUniqueName: s
|
|
|
191107
191115
|
/**
|
|
191108
191116
|
* GraphQL fragment containing core workspace fields.
|
|
191109
191117
|
*/
|
|
191110
|
-
declare const WorkspaceFragment:
|
|
191118
|
+
declare const WorkspaceFragment: gql_tada1.TadaDocumentNode<{
|
|
191111
191119
|
id: string;
|
|
191112
191120
|
uniqueName: string;
|
|
191113
191121
|
name: string;
|
|
@@ -191128,7 +191136,7 @@ type Workspace = ResultOf<typeof WorkspaceFragment>;
|
|
|
191128
191136
|
/**
|
|
191129
191137
|
* Mutation to create a new workspace.
|
|
191130
191138
|
*/
|
|
191131
|
-
declare const createWorkspace:
|
|
191139
|
+
declare const createWorkspace: gql_tada1.TadaDocumentNode<{
|
|
191132
191140
|
createWorkspace: {
|
|
191133
191141
|
id: string;
|
|
191134
191142
|
uniqueName: string;
|
package/dist/settlemint.d.ts
CHANGED
|
@@ -27739,6 +27739,14 @@ type introspection_types = {
|
|
|
27739
27739
|
ofType: null;
|
|
27740
27740
|
};
|
|
27741
27741
|
defaultValue: null;
|
|
27742
|
+
}, {
|
|
27743
|
+
name: 'includePredeployedContracts';
|
|
27744
|
+
type: {
|
|
27745
|
+
kind: 'SCALAR';
|
|
27746
|
+
name: 'Boolean';
|
|
27747
|
+
ofType: null;
|
|
27748
|
+
};
|
|
27749
|
+
defaultValue: "false";
|
|
27742
27750
|
}, {
|
|
27743
27751
|
name: 'keyMaterial';
|
|
27744
27752
|
type: {
|
|
@@ -131133,8 +131141,8 @@ declare const createBlockchainNetwork: gql_tada0.TadaDocumentNode<{
|
|
|
131133
131141
|
absoluteMaxBytes?: number | null | undefined;
|
|
131134
131142
|
maxMessageCount?: number | null | undefined;
|
|
131135
131143
|
batchTimeout?: number | null | undefined;
|
|
131136
|
-
type?: "
|
|
131137
|
-
size?: "CUSTOM" | "
|
|
131144
|
+
type?: "DEDICATED" | "SHARED" | null | undefined;
|
|
131145
|
+
size?: "CUSTOM" | "LARGE" | "MEDIUM" | "SMALL" | null | undefined;
|
|
131138
131146
|
region: string;
|
|
131139
131147
|
provider: string;
|
|
131140
131148
|
secondsPerBlock?: number | null | undefined;
|
|
@@ -188156,9 +188164,9 @@ declare const createBlockchainNode: gql_tada0.TadaDocumentNode<{
|
|
|
188156
188164
|
};
|
|
188157
188165
|
}, {
|
|
188158
188166
|
keyMaterial?: string | null | undefined;
|
|
188159
|
-
nodeType?: "NON_VALIDATOR" | "
|
|
188160
|
-
type?: "
|
|
188161
|
-
size?: "CUSTOM" | "
|
|
188167
|
+
nodeType?: "NON_VALIDATOR" | "VALIDATOR" | "NOTARY" | "ORDERER" | "PEER" | "UNSPECIFIED" | null | undefined;
|
|
188168
|
+
type?: "DEDICATED" | "SHARED" | null | undefined;
|
|
188169
|
+
size?: "CUSTOM" | "LARGE" | "MEDIUM" | "SMALL" | null | undefined;
|
|
188162
188170
|
region: string;
|
|
188163
188171
|
provider: string;
|
|
188164
188172
|
name: string;
|
|
@@ -188276,8 +188284,8 @@ declare const createCustomDeployment: gql_tada0.TadaDocumentNode<{
|
|
|
188276
188284
|
}[];
|
|
188277
188285
|
};
|
|
188278
188286
|
}, {
|
|
188279
|
-
type?: "
|
|
188280
|
-
size?: "CUSTOM" | "
|
|
188287
|
+
type?: "DEDICATED" | "SHARED" | null | undefined;
|
|
188288
|
+
size?: "CUSTOM" | "LARGE" | "MEDIUM" | "SMALL" | null | undefined;
|
|
188281
188289
|
region: string;
|
|
188282
188290
|
provider: string;
|
|
188283
188291
|
port: number;
|
|
@@ -188492,8 +188500,8 @@ declare const createInsights: gql_tada0.TadaDocumentNode<{
|
|
|
188492
188500
|
}, {
|
|
188493
188501
|
loadBalancer?: string | null | undefined;
|
|
188494
188502
|
blockchainNode?: string | null | undefined;
|
|
188495
|
-
type?: "
|
|
188496
|
-
size?: "CUSTOM" | "
|
|
188503
|
+
type?: "DEDICATED" | "SHARED" | null | undefined;
|
|
188504
|
+
size?: "CUSTOM" | "LARGE" | "MEDIUM" | "SMALL" | null | undefined;
|
|
188497
188505
|
region: string;
|
|
188498
188506
|
provider: string;
|
|
188499
188507
|
insightsCategory: "BLOCKCHAIN_EXPLORER" | "HYPERLEDGER_EXPLORER" | "OTTERSCAN_BLOCKCHAIN_EXPLORER";
|
|
@@ -188736,8 +188744,8 @@ declare const createIntegration: gql_tada0.TadaDocumentNode<{
|
|
|
188736
188744
|
}[];
|
|
188737
188745
|
};
|
|
188738
188746
|
}, {
|
|
188739
|
-
type?: "
|
|
188740
|
-
size?: "CUSTOM" | "
|
|
188747
|
+
type?: "DEDICATED" | "SHARED" | null | undefined;
|
|
188748
|
+
size?: "CUSTOM" | "LARGE" | "MEDIUM" | "SMALL" | null | undefined;
|
|
188741
188749
|
region: string;
|
|
188742
188750
|
provider: string;
|
|
188743
188751
|
integrationType: "CHAINLINK" | "HASURA" | "HA_HASURA" | "INTEGRATION_STUDIO";
|
|
@@ -188875,8 +188883,8 @@ declare const createLoadBalancer: gql_tada0.TadaDocumentNode<{
|
|
|
188875
188883
|
};
|
|
188876
188884
|
}, {
|
|
188877
188885
|
connectedNodes: string[];
|
|
188878
|
-
type?: "
|
|
188879
|
-
size?: "CUSTOM" | "
|
|
188886
|
+
type?: "DEDICATED" | "SHARED" | null | undefined;
|
|
188887
|
+
size?: "CUSTOM" | "LARGE" | "MEDIUM" | "SMALL" | null | undefined;
|
|
188880
188888
|
region: string;
|
|
188881
188889
|
provider: string;
|
|
188882
188890
|
name: string;
|
|
@@ -189463,8 +189471,8 @@ declare const createMiddleware: gql_tada0.TadaDocumentNode<{
|
|
|
189463
189471
|
blockchainNodeId?: string | null | undefined;
|
|
189464
189472
|
storageId?: string | null | undefined;
|
|
189465
189473
|
interface: "ATTESTATION_INDEXER" | "BESU" | "FIREFLY_FABCONNECT" | "GRAPH" | "HA_GRAPH" | "HA_GRAPH_POSTGRES" | "SMART_CONTRACT_PORTAL";
|
|
189466
|
-
type?: "
|
|
189467
|
-
size?: "CUSTOM" | "
|
|
189474
|
+
type?: "DEDICATED" | "SHARED" | null | undefined;
|
|
189475
|
+
size?: "CUSTOM" | "LARGE" | "MEDIUM" | "SMALL" | null | undefined;
|
|
189468
189476
|
region: string;
|
|
189469
189477
|
provider: string;
|
|
189470
189478
|
name: string;
|
|
@@ -190876,8 +190884,8 @@ declare const createPrivateKey: gql_tada0.TadaDocumentNode<{
|
|
|
190876
190884
|
trustedForwarderAddress?: string | null | undefined;
|
|
190877
190885
|
trustedForwarderName?: string | null | undefined;
|
|
190878
190886
|
blockchainNodes?: string[] | null | undefined;
|
|
190879
|
-
type?: "
|
|
190880
|
-
size?: "CUSTOM" | "
|
|
190887
|
+
type?: "DEDICATED" | "SHARED" | null | undefined;
|
|
190888
|
+
size?: "CUSTOM" | "LARGE" | "MEDIUM" | "SMALL" | null | undefined;
|
|
190881
190889
|
region: string;
|
|
190882
190890
|
provider: string;
|
|
190883
190891
|
privateKeyType: "ACCESSIBLE_ECDSA_P256" | "HD_ECDSA_P256" | "HSM_ECDSA_P256";
|
|
@@ -191040,8 +191048,8 @@ declare const createStorage: gql_tada0.TadaDocumentNode<{
|
|
|
191040
191048
|
}[];
|
|
191041
191049
|
};
|
|
191042
191050
|
}, {
|
|
191043
|
-
type?: "
|
|
191044
|
-
size?: "CUSTOM" | "
|
|
191051
|
+
type?: "DEDICATED" | "SHARED" | null | undefined;
|
|
191052
|
+
size?: "CUSTOM" | "LARGE" | "MEDIUM" | "SMALL" | null | undefined;
|
|
191045
191053
|
region: string;
|
|
191046
191054
|
provider: string;
|
|
191047
191055
|
storageProtocol: "IPFS" | "MINIO";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@settlemint/sdk-js",
|
|
3
3
|
"description": "Core JavaScript SDK for integrating SettleMint's blockchain platform services into your applications",
|
|
4
|
-
"version": "2.6.0-
|
|
4
|
+
"version": "2.6.0-mainf63182f8",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"private": false,
|
|
7
7
|
"license": "FSL-1.1-MIT",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {},
|
|
56
56
|
"dependencies": {
|
|
57
|
-
"@settlemint/sdk-utils": "2.6.0-
|
|
57
|
+
"@settlemint/sdk-utils": "2.6.0-mainf63182f8",
|
|
58
58
|
"gql.tada": "^1",
|
|
59
59
|
"graphql": "^16",
|
|
60
60
|
"graphql-request": "^7",
|