@settlemint/sdk-js 2.6.3-pr88f1ab51 → 2.6.3-pr8949506b
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.ts +26 -26
- package/package.json +2 -2
package/dist/settlemint.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
import { Id } from "@settlemint/sdk-utils/validation";
|
|
3
3
|
import { GraphQLClient } from "graphql-request";
|
|
4
4
|
import { z } from "zod";
|
|
5
|
-
import * as
|
|
5
|
+
import * as gql_tada0 from "gql.tada";
|
|
6
6
|
import { ResultOf, VariablesOf, initGraphQLTada } from "gql.tada";
|
|
7
7
|
|
|
8
8
|
//#region src/helpers/graphql-env.d.ts
|
|
@@ -65495,7 +65495,7 @@ declare const graphql: initGraphQLTada<{
|
|
|
65495
65495
|
/**
|
|
65496
65496
|
* GraphQL fragment containing core application fields.
|
|
65497
65497
|
*/
|
|
65498
|
-
declare const ApplicationFragment:
|
|
65498
|
+
declare const ApplicationFragment: gql_tada0.TadaDocumentNode<{
|
|
65499
65499
|
id: string;
|
|
65500
65500
|
uniqueName: string;
|
|
65501
65501
|
name: string;
|
|
@@ -65516,7 +65516,7 @@ type Application = ResultOf<typeof ApplicationFragment>;
|
|
|
65516
65516
|
/**
|
|
65517
65517
|
* Mutation to create a new application.
|
|
65518
65518
|
*/
|
|
65519
|
-
declare const createApplication:
|
|
65519
|
+
declare const createApplication: gql_tada0.TadaDocumentNode<{
|
|
65520
65520
|
createApplication: {
|
|
65521
65521
|
id: string;
|
|
65522
65522
|
uniqueName: string;
|
|
@@ -65571,7 +65571,7 @@ declare const applicationCreate: (gqlClient: GraphQLClient) => (args: CreateAppl
|
|
|
65571
65571
|
declare const applicationDelete: (gqlClient: GraphQLClient) => (applicationUniqueName: string) => Promise<Application>;
|
|
65572
65572
|
//#endregion
|
|
65573
65573
|
//#region src/graphql/application-access-tokens.d.ts
|
|
65574
|
-
declare const createApplicationAccessToken:
|
|
65574
|
+
declare const createApplicationAccessToken: gql_tada0.TadaDocumentNode<{
|
|
65575
65575
|
createApplicationAccessToken: {
|
|
65576
65576
|
token: string | null;
|
|
65577
65577
|
};
|
|
@@ -65635,7 +65635,7 @@ declare const applicationAccessTokenCreate: (gqlClient: GraphQLClient) => (args:
|
|
|
65635
65635
|
/**
|
|
65636
65636
|
* Fragment containing core blockchain network fields.
|
|
65637
65637
|
*/
|
|
65638
|
-
declare const BlockchainNetworkFragment:
|
|
65638
|
+
declare const BlockchainNetworkFragment: gql_tada0.TadaDocumentNode<{
|
|
65639
65639
|
__typename: "BesuIbftv2BlockchainNetwork";
|
|
65640
65640
|
id: string;
|
|
65641
65641
|
uniqueName: string;
|
|
@@ -66533,7 +66533,7 @@ type BlockchainNetwork = ResultOf<typeof BlockchainNetworkFragment>;
|
|
|
66533
66533
|
/**
|
|
66534
66534
|
* Mutation to create a new blockchain network.
|
|
66535
66535
|
*/
|
|
66536
|
-
declare const createBlockchainNetwork:
|
|
66536
|
+
declare const createBlockchainNetwork: gql_tada0.TadaDocumentNode<{
|
|
66537
66537
|
createBlockchainNetwork: {
|
|
66538
66538
|
__typename: "BesuIbftv2BlockchainNetwork";
|
|
66539
66539
|
id: string;
|
|
@@ -69031,7 +69031,7 @@ declare const blockchainNetworkResume: (gqlClient: GraphQLClient) => (blockchain
|
|
|
69031
69031
|
/**
|
|
69032
69032
|
* Fragment containing core blockchain node fields.
|
|
69033
69033
|
*/
|
|
69034
|
-
declare const BlockchainNodeFragment:
|
|
69034
|
+
declare const BlockchainNodeFragment: gql_tada0.TadaDocumentNode<{
|
|
69035
69035
|
__typename: "BesuIbftv2BlockchainNode";
|
|
69036
69036
|
id: string;
|
|
69037
69037
|
uniqueName: string;
|
|
@@ -69912,7 +69912,7 @@ type BlockchainNode = ResultOf<typeof BlockchainNodeFragment>;
|
|
|
69912
69912
|
/**
|
|
69913
69913
|
* Mutation to create a blockchain node.
|
|
69914
69914
|
*/
|
|
69915
|
-
declare const createBlockchainNode:
|
|
69915
|
+
declare const createBlockchainNode: gql_tada0.TadaDocumentNode<{
|
|
69916
69916
|
createBlockchainNode: {
|
|
69917
69917
|
__typename: "BesuIbftv2BlockchainNode";
|
|
69918
69918
|
id: string;
|
|
@@ -70538,7 +70538,7 @@ declare const blockchainNodeResume: (gqlClient: GraphQLClient) => (blockchainNod
|
|
|
70538
70538
|
/**
|
|
70539
70539
|
* Fragment containing core custom deployment fields.
|
|
70540
70540
|
*/
|
|
70541
|
-
declare const CustomDeploymentFragment:
|
|
70541
|
+
declare const CustomDeploymentFragment: gql_tada0.TadaDocumentNode<{
|
|
70542
70542
|
id: string;
|
|
70543
70543
|
uniqueName: string;
|
|
70544
70544
|
name: string;
|
|
@@ -70568,7 +70568,7 @@ type CustomDeployment = ResultOf<typeof CustomDeploymentFragment>;
|
|
|
70568
70568
|
/**
|
|
70569
70569
|
* Mutation to create a custom deployment.
|
|
70570
70570
|
*/
|
|
70571
|
-
declare const createCustomDeployment:
|
|
70571
|
+
declare const createCustomDeployment: gql_tada0.TadaDocumentNode<{
|
|
70572
70572
|
createCustomDeployment: {
|
|
70573
70573
|
id: string;
|
|
70574
70574
|
uniqueName: string;
|
|
@@ -70668,7 +70668,7 @@ declare const customDeploymentResume: (gqlClient: GraphQLClient) => (customDeplo
|
|
|
70668
70668
|
/**
|
|
70669
70669
|
* GraphQL fragment containing core insights fields.
|
|
70670
70670
|
*/
|
|
70671
|
-
declare const InsightsFragment:
|
|
70671
|
+
declare const InsightsFragment: gql_tada0.TadaDocumentNode<{
|
|
70672
70672
|
__typename: "BlockchainExplorer";
|
|
70673
70673
|
id: string;
|
|
70674
70674
|
uniqueName: string;
|
|
@@ -70740,7 +70740,7 @@ type Insights = ResultOf<typeof InsightsFragment>;
|
|
|
70740
70740
|
/**
|
|
70741
70741
|
* Mutation to create insights.
|
|
70742
70742
|
*/
|
|
70743
|
-
declare const createInsights:
|
|
70743
|
+
declare const createInsights: gql_tada0.TadaDocumentNode<{
|
|
70744
70744
|
createInsights: {
|
|
70745
70745
|
__typename: "BlockchainExplorer";
|
|
70746
70746
|
id: string;
|
|
@@ -70874,7 +70874,7 @@ declare const insightsResume: (gqlClient: GraphQLClient) => (insightsUniqueName:
|
|
|
70874
70874
|
/**
|
|
70875
70875
|
* GraphQL fragment containing core integration fields.
|
|
70876
70876
|
*/
|
|
70877
|
-
declare const IntegrationFragment:
|
|
70877
|
+
declare const IntegrationFragment: gql_tada0.TadaDocumentNode<{
|
|
70878
70878
|
__typename: "Chainlink";
|
|
70879
70879
|
id: string;
|
|
70880
70880
|
uniqueName: string;
|
|
@@ -70966,7 +70966,7 @@ type IntegrationTool = ResultOf<typeof IntegrationFragment>;
|
|
|
70966
70966
|
/**
|
|
70967
70967
|
* Mutation to create a new integration.
|
|
70968
70968
|
*/
|
|
70969
|
-
declare const createIntegration:
|
|
70969
|
+
declare const createIntegration: gql_tada0.TadaDocumentNode<{
|
|
70970
70970
|
createIntegration: {
|
|
70971
70971
|
__typename: "Chainlink";
|
|
70972
70972
|
id: string;
|
|
@@ -71116,7 +71116,7 @@ declare const integrationToolResume: (gqlClient: GraphQLClient) => (integrationU
|
|
|
71116
71116
|
/**
|
|
71117
71117
|
* GraphQL fragment containing core load balancer fields.
|
|
71118
71118
|
*/
|
|
71119
|
-
declare const LoadBalancerFragment:
|
|
71119
|
+
declare const LoadBalancerFragment: gql_tada0.TadaDocumentNode<{
|
|
71120
71120
|
__typename: "EVMLoadBalancer";
|
|
71121
71121
|
id: string;
|
|
71122
71122
|
uniqueName: string;
|
|
@@ -71156,7 +71156,7 @@ type LoadBalancer = ResultOf<typeof LoadBalancerFragment>;
|
|
|
71156
71156
|
/**
|
|
71157
71157
|
* Mutation to create a load balancer.
|
|
71158
71158
|
*/
|
|
71159
|
-
declare const createLoadBalancer:
|
|
71159
|
+
declare const createLoadBalancer: gql_tada0.TadaDocumentNode<{
|
|
71160
71160
|
createLoadBalancer: {
|
|
71161
71161
|
__typename: "EVMLoadBalancer";
|
|
71162
71162
|
id: string;
|
|
@@ -71257,7 +71257,7 @@ declare const loadBalancerResume: (gqlClient: GraphQLClient) => (loadBalancerUni
|
|
|
71257
71257
|
/**
|
|
71258
71258
|
* GraphQL fragment containing core middleware fields.
|
|
71259
71259
|
*/
|
|
71260
|
-
declare const MiddlewareFragment:
|
|
71260
|
+
declare const MiddlewareFragment: gql_tada0.TadaDocumentNode<{
|
|
71261
71261
|
__typename: "AttestationIndexerMiddleware";
|
|
71262
71262
|
id: string;
|
|
71263
71263
|
uniqueName: string;
|
|
@@ -71425,7 +71425,7 @@ type Middleware = ResultOf<typeof MiddlewareFragment>;
|
|
|
71425
71425
|
/**
|
|
71426
71426
|
* Query to fetch a specific middleware with subgraphs.
|
|
71427
71427
|
*/
|
|
71428
|
-
declare const getGraphMiddlewareSubgraphs:
|
|
71428
|
+
declare const getGraphMiddlewareSubgraphs: gql_tada0.TadaDocumentNode<{
|
|
71429
71429
|
middlewareByUniqueName: {
|
|
71430
71430
|
__typename: "AttestationIndexerMiddleware";
|
|
71431
71431
|
id: string;
|
|
@@ -71608,7 +71608,7 @@ type MiddlewareWithSubgraphs = ResultOf<typeof getGraphMiddlewareSubgraphs>["mid
|
|
|
71608
71608
|
/**
|
|
71609
71609
|
* Mutation to create a new middleware.
|
|
71610
71610
|
*/
|
|
71611
|
-
declare const createMiddleware:
|
|
71611
|
+
declare const createMiddleware: gql_tada0.TadaDocumentNode<{
|
|
71612
71612
|
createMiddleware: {
|
|
71613
71613
|
__typename: "AttestationIndexerMiddleware";
|
|
71614
71614
|
id: string;
|
|
@@ -71853,7 +71853,7 @@ declare const middlewareResume: (gqlClient: GraphQLClient) => (middlewareUniqueN
|
|
|
71853
71853
|
/**
|
|
71854
71854
|
* GraphQL query to fetch platform configuration.
|
|
71855
71855
|
*/
|
|
71856
|
-
declare const getPlatformConfigQuery:
|
|
71856
|
+
declare const getPlatformConfigQuery: gql_tada0.TadaDocumentNode<{
|
|
71857
71857
|
config: {
|
|
71858
71858
|
smartContractSets: {
|
|
71859
71859
|
id: string;
|
|
@@ -71910,7 +71910,7 @@ declare const getPlatformConfig: (gqlClient: GraphQLClient) => () => Promise<Pla
|
|
|
71910
71910
|
/**
|
|
71911
71911
|
* GraphQL fragment containing core private key fields.
|
|
71912
71912
|
*/
|
|
71913
|
-
declare const PrivateKeyFragment:
|
|
71913
|
+
declare const PrivateKeyFragment: gql_tada0.TadaDocumentNode<{
|
|
71914
71914
|
__typename: "AccessibleEcdsaP256PrivateKey";
|
|
71915
71915
|
id: string;
|
|
71916
71916
|
uniqueName: string;
|
|
@@ -72117,7 +72117,7 @@ type PrivateKey = ResultOf<typeof PrivateKeyFragment>;
|
|
|
72117
72117
|
/**
|
|
72118
72118
|
* Mutation to create a new private key.
|
|
72119
72119
|
*/
|
|
72120
|
-
declare const createPrivateKey:
|
|
72120
|
+
declare const createPrivateKey: gql_tada0.TadaDocumentNode<{
|
|
72121
72121
|
createPrivateKey: {
|
|
72122
72122
|
__typename: "AccessibleEcdsaP256PrivateKey";
|
|
72123
72123
|
id: string;
|
|
@@ -72388,7 +72388,7 @@ declare const privateKeyResume: (gqlClient: GraphQLClient) => (privateKeyUniqueN
|
|
|
72388
72388
|
/**
|
|
72389
72389
|
* GraphQL fragment containing core storage fields.
|
|
72390
72390
|
*/
|
|
72391
|
-
declare const StorageFragment:
|
|
72391
|
+
declare const StorageFragment: gql_tada0.TadaDocumentNode<{
|
|
72392
72392
|
__typename: "IPFSStorage";
|
|
72393
72393
|
id: string;
|
|
72394
72394
|
uniqueName: string;
|
|
@@ -72440,7 +72440,7 @@ type Storage = ResultOf<typeof StorageFragment>;
|
|
|
72440
72440
|
/**
|
|
72441
72441
|
* Mutation to create a new storage.
|
|
72442
72442
|
*/
|
|
72443
|
-
declare const createStorage:
|
|
72443
|
+
declare const createStorage: gql_tada0.TadaDocumentNode<{
|
|
72444
72444
|
createStorage: {
|
|
72445
72445
|
__typename: "IPFSStorage";
|
|
72446
72446
|
id: string;
|
|
@@ -72550,7 +72550,7 @@ declare const storageResume: (gqlClient: GraphQLClient) => (storageUniqueName: s
|
|
|
72550
72550
|
/**
|
|
72551
72551
|
* GraphQL fragment containing core workspace fields.
|
|
72552
72552
|
*/
|
|
72553
|
-
declare const WorkspaceFragment:
|
|
72553
|
+
declare const WorkspaceFragment: gql_tada0.TadaDocumentNode<{
|
|
72554
72554
|
id: string;
|
|
72555
72555
|
uniqueName: string;
|
|
72556
72556
|
name: string;
|
|
@@ -72571,7 +72571,7 @@ type Workspace = ResultOf<typeof WorkspaceFragment>;
|
|
|
72571
72571
|
/**
|
|
72572
72572
|
* Mutation to create a new workspace.
|
|
72573
72573
|
*/
|
|
72574
|
-
declare const createWorkspace:
|
|
72574
|
+
declare const createWorkspace: gql_tada0.TadaDocumentNode<{
|
|
72575
72575
|
createWorkspace: {
|
|
72576
72576
|
id: string;
|
|
72577
72577
|
uniqueName: string;
|
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.3-
|
|
4
|
+
"version": "2.6.3-pr8949506b",
|
|
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.3-
|
|
57
|
+
"@settlemint/sdk-utils": "2.6.3-pr8949506b",
|
|
58
58
|
"gql.tada": "^1",
|
|
59
59
|
"graphql": "^16",
|
|
60
60
|
"graphql-request": "^7",
|