@settlemint/sdk-js 2.6.2-prf4f7dbcf → 2.6.2-prf7f629f7
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 +26 -26
- 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_tada0 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";
|
|
@@ -65372,7 +65372,7 @@ declare const graphql: initGraphQLTada<{
|
|
|
65372
65372
|
/**
|
|
65373
65373
|
* GraphQL fragment containing core application fields.
|
|
65374
65374
|
*/
|
|
65375
|
-
declare const ApplicationFragment:
|
|
65375
|
+
declare const ApplicationFragment: gql_tada0.TadaDocumentNode<{
|
|
65376
65376
|
id: string;
|
|
65377
65377
|
uniqueName: string;
|
|
65378
65378
|
name: string;
|
|
@@ -65393,7 +65393,7 @@ type Application = ResultOf<typeof ApplicationFragment>;
|
|
|
65393
65393
|
/**
|
|
65394
65394
|
* Mutation to create a new application.
|
|
65395
65395
|
*/
|
|
65396
|
-
declare const createApplication:
|
|
65396
|
+
declare const createApplication: gql_tada0.TadaDocumentNode<{
|
|
65397
65397
|
createApplication: {
|
|
65398
65398
|
id: string;
|
|
65399
65399
|
uniqueName: string;
|
|
@@ -65448,7 +65448,7 @@ declare const applicationCreate: (gqlClient: GraphQLClient) => (args: CreateAppl
|
|
|
65448
65448
|
declare const applicationDelete: (gqlClient: GraphQLClient) => (applicationUniqueName: string) => Promise<Application>;
|
|
65449
65449
|
//#endregion
|
|
65450
65450
|
//#region src/graphql/application-access-tokens.d.ts
|
|
65451
|
-
declare const createApplicationAccessToken:
|
|
65451
|
+
declare const createApplicationAccessToken: gql_tada0.TadaDocumentNode<{
|
|
65452
65452
|
createApplicationAccessToken: {
|
|
65453
65453
|
token: string | null;
|
|
65454
65454
|
};
|
|
@@ -65512,7 +65512,7 @@ declare const applicationAccessTokenCreate: (gqlClient: GraphQLClient) => (args:
|
|
|
65512
65512
|
/**
|
|
65513
65513
|
* Fragment containing core blockchain network fields.
|
|
65514
65514
|
*/
|
|
65515
|
-
declare const BlockchainNetworkFragment:
|
|
65515
|
+
declare const BlockchainNetworkFragment: gql_tada0.TadaDocumentNode<{
|
|
65516
65516
|
__typename: "BesuIbftv2BlockchainNetwork";
|
|
65517
65517
|
id: string;
|
|
65518
65518
|
uniqueName: string;
|
|
@@ -66410,7 +66410,7 @@ type BlockchainNetwork = ResultOf<typeof BlockchainNetworkFragment>;
|
|
|
66410
66410
|
/**
|
|
66411
66411
|
* Mutation to create a new blockchain network.
|
|
66412
66412
|
*/
|
|
66413
|
-
declare const createBlockchainNetwork:
|
|
66413
|
+
declare const createBlockchainNetwork: gql_tada0.TadaDocumentNode<{
|
|
66414
66414
|
createBlockchainNetwork: {
|
|
66415
66415
|
__typename: "BesuIbftv2BlockchainNetwork";
|
|
66416
66416
|
id: string;
|
|
@@ -68908,7 +68908,7 @@ declare const blockchainNetworkResume: (gqlClient: GraphQLClient) => (blockchain
|
|
|
68908
68908
|
/**
|
|
68909
68909
|
* Fragment containing core blockchain node fields.
|
|
68910
68910
|
*/
|
|
68911
|
-
declare const BlockchainNodeFragment:
|
|
68911
|
+
declare const BlockchainNodeFragment: gql_tada0.TadaDocumentNode<{
|
|
68912
68912
|
__typename: "BesuIbftv2BlockchainNode";
|
|
68913
68913
|
id: string;
|
|
68914
68914
|
uniqueName: string;
|
|
@@ -69789,7 +69789,7 @@ type BlockchainNode = ResultOf<typeof BlockchainNodeFragment>;
|
|
|
69789
69789
|
/**
|
|
69790
69790
|
* Mutation to create a blockchain node.
|
|
69791
69791
|
*/
|
|
69792
|
-
declare const createBlockchainNode:
|
|
69792
|
+
declare const createBlockchainNode: gql_tada0.TadaDocumentNode<{
|
|
69793
69793
|
createBlockchainNode: {
|
|
69794
69794
|
__typename: "BesuIbftv2BlockchainNode";
|
|
69795
69795
|
id: string;
|
|
@@ -70415,7 +70415,7 @@ declare const blockchainNodeResume: (gqlClient: GraphQLClient) => (blockchainNod
|
|
|
70415
70415
|
/**
|
|
70416
70416
|
* Fragment containing core custom deployment fields.
|
|
70417
70417
|
*/
|
|
70418
|
-
declare const CustomDeploymentFragment:
|
|
70418
|
+
declare const CustomDeploymentFragment: gql_tada0.TadaDocumentNode<{
|
|
70419
70419
|
id: string;
|
|
70420
70420
|
uniqueName: string;
|
|
70421
70421
|
name: string;
|
|
@@ -70445,7 +70445,7 @@ type CustomDeployment = ResultOf<typeof CustomDeploymentFragment>;
|
|
|
70445
70445
|
/**
|
|
70446
70446
|
* Mutation to create a custom deployment.
|
|
70447
70447
|
*/
|
|
70448
|
-
declare const createCustomDeployment:
|
|
70448
|
+
declare const createCustomDeployment: gql_tada0.TadaDocumentNode<{
|
|
70449
70449
|
createCustomDeployment: {
|
|
70450
70450
|
id: string;
|
|
70451
70451
|
uniqueName: string;
|
|
@@ -70545,7 +70545,7 @@ declare const customDeploymentResume: (gqlClient: GraphQLClient) => (customDeplo
|
|
|
70545
70545
|
/**
|
|
70546
70546
|
* GraphQL fragment containing core insights fields.
|
|
70547
70547
|
*/
|
|
70548
|
-
declare const InsightsFragment:
|
|
70548
|
+
declare const InsightsFragment: gql_tada0.TadaDocumentNode<{
|
|
70549
70549
|
__typename: "BlockchainExplorer";
|
|
70550
70550
|
id: string;
|
|
70551
70551
|
uniqueName: string;
|
|
@@ -70617,7 +70617,7 @@ type Insights = ResultOf<typeof InsightsFragment>;
|
|
|
70617
70617
|
/**
|
|
70618
70618
|
* Mutation to create insights.
|
|
70619
70619
|
*/
|
|
70620
|
-
declare const createInsights:
|
|
70620
|
+
declare const createInsights: gql_tada0.TadaDocumentNode<{
|
|
70621
70621
|
createInsights: {
|
|
70622
70622
|
__typename: "BlockchainExplorer";
|
|
70623
70623
|
id: string;
|
|
@@ -70751,7 +70751,7 @@ declare const insightsResume: (gqlClient: GraphQLClient) => (insightsUniqueName:
|
|
|
70751
70751
|
/**
|
|
70752
70752
|
* GraphQL fragment containing core integration fields.
|
|
70753
70753
|
*/
|
|
70754
|
-
declare const IntegrationFragment:
|
|
70754
|
+
declare const IntegrationFragment: gql_tada0.TadaDocumentNode<{
|
|
70755
70755
|
__typename: "Chainlink";
|
|
70756
70756
|
id: string;
|
|
70757
70757
|
uniqueName: string;
|
|
@@ -70843,7 +70843,7 @@ type IntegrationTool = ResultOf<typeof IntegrationFragment>;
|
|
|
70843
70843
|
/**
|
|
70844
70844
|
* Mutation to create a new integration.
|
|
70845
70845
|
*/
|
|
70846
|
-
declare const createIntegration:
|
|
70846
|
+
declare const createIntegration: gql_tada0.TadaDocumentNode<{
|
|
70847
70847
|
createIntegration: {
|
|
70848
70848
|
__typename: "Chainlink";
|
|
70849
70849
|
id: string;
|
|
@@ -70993,7 +70993,7 @@ declare const integrationToolResume: (gqlClient: GraphQLClient) => (integrationU
|
|
|
70993
70993
|
/**
|
|
70994
70994
|
* GraphQL fragment containing core load balancer fields.
|
|
70995
70995
|
*/
|
|
70996
|
-
declare const LoadBalancerFragment:
|
|
70996
|
+
declare const LoadBalancerFragment: gql_tada0.TadaDocumentNode<{
|
|
70997
70997
|
__typename: "EVMLoadBalancer";
|
|
70998
70998
|
id: string;
|
|
70999
70999
|
uniqueName: string;
|
|
@@ -71033,7 +71033,7 @@ type LoadBalancer = ResultOf<typeof LoadBalancerFragment>;
|
|
|
71033
71033
|
/**
|
|
71034
71034
|
* Mutation to create a load balancer.
|
|
71035
71035
|
*/
|
|
71036
|
-
declare const createLoadBalancer:
|
|
71036
|
+
declare const createLoadBalancer: gql_tada0.TadaDocumentNode<{
|
|
71037
71037
|
createLoadBalancer: {
|
|
71038
71038
|
__typename: "EVMLoadBalancer";
|
|
71039
71039
|
id: string;
|
|
@@ -71134,7 +71134,7 @@ declare const loadBalancerResume: (gqlClient: GraphQLClient) => (loadBalancerUni
|
|
|
71134
71134
|
/**
|
|
71135
71135
|
* GraphQL fragment containing core middleware fields.
|
|
71136
71136
|
*/
|
|
71137
|
-
declare const MiddlewareFragment:
|
|
71137
|
+
declare const MiddlewareFragment: gql_tada0.TadaDocumentNode<{
|
|
71138
71138
|
__typename: "AttestationIndexerMiddleware";
|
|
71139
71139
|
id: string;
|
|
71140
71140
|
uniqueName: string;
|
|
@@ -71302,7 +71302,7 @@ type Middleware = ResultOf<typeof MiddlewareFragment>;
|
|
|
71302
71302
|
/**
|
|
71303
71303
|
* Query to fetch a specific middleware with subgraphs.
|
|
71304
71304
|
*/
|
|
71305
|
-
declare const getGraphMiddlewareSubgraphs:
|
|
71305
|
+
declare const getGraphMiddlewareSubgraphs: gql_tada0.TadaDocumentNode<{
|
|
71306
71306
|
middlewareByUniqueName: {
|
|
71307
71307
|
__typename: "AttestationIndexerMiddleware";
|
|
71308
71308
|
id: string;
|
|
@@ -71485,7 +71485,7 @@ type MiddlewareWithSubgraphs = ResultOf<typeof getGraphMiddlewareSubgraphs>["mid
|
|
|
71485
71485
|
/**
|
|
71486
71486
|
* Mutation to create a new middleware.
|
|
71487
71487
|
*/
|
|
71488
|
-
declare const createMiddleware:
|
|
71488
|
+
declare const createMiddleware: gql_tada0.TadaDocumentNode<{
|
|
71489
71489
|
createMiddleware: {
|
|
71490
71490
|
__typename: "AttestationIndexerMiddleware";
|
|
71491
71491
|
id: string;
|
|
@@ -71730,7 +71730,7 @@ declare const middlewareResume: (gqlClient: GraphQLClient) => (middlewareUniqueN
|
|
|
71730
71730
|
/**
|
|
71731
71731
|
* GraphQL query to fetch platform configuration.
|
|
71732
71732
|
*/
|
|
71733
|
-
declare const getPlatformConfigQuery:
|
|
71733
|
+
declare const getPlatformConfigQuery: gql_tada0.TadaDocumentNode<{
|
|
71734
71734
|
config: {
|
|
71735
71735
|
smartContractSets: {
|
|
71736
71736
|
id: string;
|
|
@@ -71787,7 +71787,7 @@ declare const getPlatformConfig: (gqlClient: GraphQLClient) => () => Promise<Pla
|
|
|
71787
71787
|
/**
|
|
71788
71788
|
* GraphQL fragment containing core private key fields.
|
|
71789
71789
|
*/
|
|
71790
|
-
declare const PrivateKeyFragment:
|
|
71790
|
+
declare const PrivateKeyFragment: gql_tada0.TadaDocumentNode<{
|
|
71791
71791
|
__typename: "AccessibleEcdsaP256PrivateKey";
|
|
71792
71792
|
id: string;
|
|
71793
71793
|
uniqueName: string;
|
|
@@ -71994,7 +71994,7 @@ type PrivateKey = ResultOf<typeof PrivateKeyFragment>;
|
|
|
71994
71994
|
/**
|
|
71995
71995
|
* Mutation to create a new private key.
|
|
71996
71996
|
*/
|
|
71997
|
-
declare const createPrivateKey:
|
|
71997
|
+
declare const createPrivateKey: gql_tada0.TadaDocumentNode<{
|
|
71998
71998
|
createPrivateKey: {
|
|
71999
71999
|
__typename: "AccessibleEcdsaP256PrivateKey";
|
|
72000
72000
|
id: string;
|
|
@@ -72265,7 +72265,7 @@ declare const privateKeyResume: (gqlClient: GraphQLClient) => (privateKeyUniqueN
|
|
|
72265
72265
|
/**
|
|
72266
72266
|
* GraphQL fragment containing core storage fields.
|
|
72267
72267
|
*/
|
|
72268
|
-
declare const StorageFragment:
|
|
72268
|
+
declare const StorageFragment: gql_tada0.TadaDocumentNode<{
|
|
72269
72269
|
__typename: "IPFSStorage";
|
|
72270
72270
|
id: string;
|
|
72271
72271
|
uniqueName: string;
|
|
@@ -72317,7 +72317,7 @@ type Storage = ResultOf<typeof StorageFragment>;
|
|
|
72317
72317
|
/**
|
|
72318
72318
|
* Mutation to create a new storage.
|
|
72319
72319
|
*/
|
|
72320
|
-
declare const createStorage:
|
|
72320
|
+
declare const createStorage: gql_tada0.TadaDocumentNode<{
|
|
72321
72321
|
createStorage: {
|
|
72322
72322
|
__typename: "IPFSStorage";
|
|
72323
72323
|
id: string;
|
|
@@ -72427,7 +72427,7 @@ declare const storageResume: (gqlClient: GraphQLClient) => (storageUniqueName: s
|
|
|
72427
72427
|
/**
|
|
72428
72428
|
* GraphQL fragment containing core workspace fields.
|
|
72429
72429
|
*/
|
|
72430
|
-
declare const WorkspaceFragment:
|
|
72430
|
+
declare const WorkspaceFragment: gql_tada0.TadaDocumentNode<{
|
|
72431
72431
|
id: string;
|
|
72432
72432
|
uniqueName: string;
|
|
72433
72433
|
name: string;
|
|
@@ -72448,7 +72448,7 @@ type Workspace = ResultOf<typeof WorkspaceFragment>;
|
|
|
72448
72448
|
/**
|
|
72449
72449
|
* Mutation to create a new workspace.
|
|
72450
72450
|
*/
|
|
72451
|
-
declare const createWorkspace:
|
|
72451
|
+
declare const createWorkspace: gql_tada0.TadaDocumentNode<{
|
|
72452
72452
|
createWorkspace: {
|
|
72453
72453
|
id: string;
|
|
72454
72454
|
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.2-
|
|
4
|
+
"version": "2.6.2-prf7f629f7",
|
|
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.2-
|
|
57
|
+
"@settlemint/sdk-utils": "2.6.2-prf7f629f7",
|
|
58
58
|
"gql.tada": "^1",
|
|
59
59
|
"graphql": "^16",
|
|
60
60
|
"graphql-request": "^7",
|