@settlemint/sdk-js 2.6.2-prbcb9b987 → 2.6.2-prcf8a6283
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 +42 -26
- package/dist/settlemint.d.ts +16 -0
- 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";
|
|
@@ -5885,6 +5885,14 @@ type introspection_types = {
|
|
|
5885
5885
|
};
|
|
5886
5886
|
};
|
|
5887
5887
|
};
|
|
5888
|
+
'artifactsImage': {
|
|
5889
|
+
name: 'artifactsImage';
|
|
5890
|
+
type: {
|
|
5891
|
+
kind: 'SCALAR';
|
|
5892
|
+
name: 'String';
|
|
5893
|
+
ofType: null;
|
|
5894
|
+
};
|
|
5895
|
+
};
|
|
5888
5896
|
'blockchainNodes': {
|
|
5889
5897
|
name: 'blockchainNodes';
|
|
5890
5898
|
type: {
|
|
@@ -8179,6 +8187,14 @@ type introspection_types = {
|
|
|
8179
8187
|
};
|
|
8180
8188
|
};
|
|
8181
8189
|
};
|
|
8190
|
+
'artifactsImage': {
|
|
8191
|
+
name: 'artifactsImage';
|
|
8192
|
+
type: {
|
|
8193
|
+
kind: 'SCALAR';
|
|
8194
|
+
name: 'String';
|
|
8195
|
+
ofType: null;
|
|
8196
|
+
};
|
|
8197
|
+
};
|
|
8182
8198
|
'blockchainNodes': {
|
|
8183
8199
|
name: 'blockchainNodes';
|
|
8184
8200
|
type: {
|
|
@@ -65372,7 +65388,7 @@ declare const graphql: initGraphQLTada<{
|
|
|
65372
65388
|
/**
|
|
65373
65389
|
* GraphQL fragment containing core application fields.
|
|
65374
65390
|
*/
|
|
65375
|
-
declare const ApplicationFragment:
|
|
65391
|
+
declare const ApplicationFragment: gql_tada0.TadaDocumentNode<{
|
|
65376
65392
|
id: string;
|
|
65377
65393
|
uniqueName: string;
|
|
65378
65394
|
name: string;
|
|
@@ -65393,7 +65409,7 @@ type Application = ResultOf<typeof ApplicationFragment>;
|
|
|
65393
65409
|
/**
|
|
65394
65410
|
* Mutation to create a new application.
|
|
65395
65411
|
*/
|
|
65396
|
-
declare const createApplication:
|
|
65412
|
+
declare const createApplication: gql_tada0.TadaDocumentNode<{
|
|
65397
65413
|
createApplication: {
|
|
65398
65414
|
id: string;
|
|
65399
65415
|
uniqueName: string;
|
|
@@ -65448,7 +65464,7 @@ declare const applicationCreate: (gqlClient: GraphQLClient) => (args: CreateAppl
|
|
|
65448
65464
|
declare const applicationDelete: (gqlClient: GraphQLClient) => (applicationUniqueName: string) => Promise<Application>;
|
|
65449
65465
|
//#endregion
|
|
65450
65466
|
//#region src/graphql/application-access-tokens.d.ts
|
|
65451
|
-
declare const createApplicationAccessToken:
|
|
65467
|
+
declare const createApplicationAccessToken: gql_tada0.TadaDocumentNode<{
|
|
65452
65468
|
createApplicationAccessToken: {
|
|
65453
65469
|
token: string | null;
|
|
65454
65470
|
};
|
|
@@ -65512,7 +65528,7 @@ declare const applicationAccessTokenCreate: (gqlClient: GraphQLClient) => (args:
|
|
|
65512
65528
|
/**
|
|
65513
65529
|
* Fragment containing core blockchain network fields.
|
|
65514
65530
|
*/
|
|
65515
|
-
declare const BlockchainNetworkFragment:
|
|
65531
|
+
declare const BlockchainNetworkFragment: gql_tada0.TadaDocumentNode<{
|
|
65516
65532
|
__typename: "BesuIbftv2BlockchainNetwork";
|
|
65517
65533
|
id: string;
|
|
65518
65534
|
uniqueName: string;
|
|
@@ -66410,7 +66426,7 @@ type BlockchainNetwork = ResultOf<typeof BlockchainNetworkFragment>;
|
|
|
66410
66426
|
/**
|
|
66411
66427
|
* Mutation to create a new blockchain network.
|
|
66412
66428
|
*/
|
|
66413
|
-
declare const createBlockchainNetwork:
|
|
66429
|
+
declare const createBlockchainNetwork: gql_tada0.TadaDocumentNode<{
|
|
66414
66430
|
createBlockchainNetwork: {
|
|
66415
66431
|
__typename: "BesuIbftv2BlockchainNetwork";
|
|
66416
66432
|
id: string;
|
|
@@ -68908,7 +68924,7 @@ declare const blockchainNetworkResume: (gqlClient: GraphQLClient) => (blockchain
|
|
|
68908
68924
|
/**
|
|
68909
68925
|
* Fragment containing core blockchain node fields.
|
|
68910
68926
|
*/
|
|
68911
|
-
declare const BlockchainNodeFragment:
|
|
68927
|
+
declare const BlockchainNodeFragment: gql_tada0.TadaDocumentNode<{
|
|
68912
68928
|
__typename: "BesuIbftv2BlockchainNode";
|
|
68913
68929
|
id: string;
|
|
68914
68930
|
uniqueName: string;
|
|
@@ -69789,7 +69805,7 @@ type BlockchainNode = ResultOf<typeof BlockchainNodeFragment>;
|
|
|
69789
69805
|
/**
|
|
69790
69806
|
* Mutation to create a blockchain node.
|
|
69791
69807
|
*/
|
|
69792
|
-
declare const createBlockchainNode:
|
|
69808
|
+
declare const createBlockchainNode: gql_tada0.TadaDocumentNode<{
|
|
69793
69809
|
createBlockchainNode: {
|
|
69794
69810
|
__typename: "BesuIbftv2BlockchainNode";
|
|
69795
69811
|
id: string;
|
|
@@ -70415,7 +70431,7 @@ declare const blockchainNodeResume: (gqlClient: GraphQLClient) => (blockchainNod
|
|
|
70415
70431
|
/**
|
|
70416
70432
|
* Fragment containing core custom deployment fields.
|
|
70417
70433
|
*/
|
|
70418
|
-
declare const CustomDeploymentFragment:
|
|
70434
|
+
declare const CustomDeploymentFragment: gql_tada0.TadaDocumentNode<{
|
|
70419
70435
|
id: string;
|
|
70420
70436
|
uniqueName: string;
|
|
70421
70437
|
name: string;
|
|
@@ -70445,7 +70461,7 @@ type CustomDeployment = ResultOf<typeof CustomDeploymentFragment>;
|
|
|
70445
70461
|
/**
|
|
70446
70462
|
* Mutation to create a custom deployment.
|
|
70447
70463
|
*/
|
|
70448
|
-
declare const createCustomDeployment:
|
|
70464
|
+
declare const createCustomDeployment: gql_tada0.TadaDocumentNode<{
|
|
70449
70465
|
createCustomDeployment: {
|
|
70450
70466
|
id: string;
|
|
70451
70467
|
uniqueName: string;
|
|
@@ -70545,7 +70561,7 @@ declare const customDeploymentResume: (gqlClient: GraphQLClient) => (customDeplo
|
|
|
70545
70561
|
/**
|
|
70546
70562
|
* GraphQL fragment containing core insights fields.
|
|
70547
70563
|
*/
|
|
70548
|
-
declare const InsightsFragment:
|
|
70564
|
+
declare const InsightsFragment: gql_tada0.TadaDocumentNode<{
|
|
70549
70565
|
__typename: "BlockchainExplorer";
|
|
70550
70566
|
id: string;
|
|
70551
70567
|
uniqueName: string;
|
|
@@ -70617,7 +70633,7 @@ type Insights = ResultOf<typeof InsightsFragment>;
|
|
|
70617
70633
|
/**
|
|
70618
70634
|
* Mutation to create insights.
|
|
70619
70635
|
*/
|
|
70620
|
-
declare const createInsights:
|
|
70636
|
+
declare const createInsights: gql_tada0.TadaDocumentNode<{
|
|
70621
70637
|
createInsights: {
|
|
70622
70638
|
__typename: "BlockchainExplorer";
|
|
70623
70639
|
id: string;
|
|
@@ -70751,7 +70767,7 @@ declare const insightsResume: (gqlClient: GraphQLClient) => (insightsUniqueName:
|
|
|
70751
70767
|
/**
|
|
70752
70768
|
* GraphQL fragment containing core integration fields.
|
|
70753
70769
|
*/
|
|
70754
|
-
declare const IntegrationFragment:
|
|
70770
|
+
declare const IntegrationFragment: gql_tada0.TadaDocumentNode<{
|
|
70755
70771
|
__typename: "Chainlink";
|
|
70756
70772
|
id: string;
|
|
70757
70773
|
uniqueName: string;
|
|
@@ -70843,7 +70859,7 @@ type IntegrationTool = ResultOf<typeof IntegrationFragment>;
|
|
|
70843
70859
|
/**
|
|
70844
70860
|
* Mutation to create a new integration.
|
|
70845
70861
|
*/
|
|
70846
|
-
declare const createIntegration:
|
|
70862
|
+
declare const createIntegration: gql_tada0.TadaDocumentNode<{
|
|
70847
70863
|
createIntegration: {
|
|
70848
70864
|
__typename: "Chainlink";
|
|
70849
70865
|
id: string;
|
|
@@ -70993,7 +71009,7 @@ declare const integrationToolResume: (gqlClient: GraphQLClient) => (integrationU
|
|
|
70993
71009
|
/**
|
|
70994
71010
|
* GraphQL fragment containing core load balancer fields.
|
|
70995
71011
|
*/
|
|
70996
|
-
declare const LoadBalancerFragment:
|
|
71012
|
+
declare const LoadBalancerFragment: gql_tada0.TadaDocumentNode<{
|
|
70997
71013
|
__typename: "EVMLoadBalancer";
|
|
70998
71014
|
id: string;
|
|
70999
71015
|
uniqueName: string;
|
|
@@ -71033,7 +71049,7 @@ type LoadBalancer = ResultOf<typeof LoadBalancerFragment>;
|
|
|
71033
71049
|
/**
|
|
71034
71050
|
* Mutation to create a load balancer.
|
|
71035
71051
|
*/
|
|
71036
|
-
declare const createLoadBalancer:
|
|
71052
|
+
declare const createLoadBalancer: gql_tada0.TadaDocumentNode<{
|
|
71037
71053
|
createLoadBalancer: {
|
|
71038
71054
|
__typename: "EVMLoadBalancer";
|
|
71039
71055
|
id: string;
|
|
@@ -71134,7 +71150,7 @@ declare const loadBalancerResume: (gqlClient: GraphQLClient) => (loadBalancerUni
|
|
|
71134
71150
|
/**
|
|
71135
71151
|
* GraphQL fragment containing core middleware fields.
|
|
71136
71152
|
*/
|
|
71137
|
-
declare const MiddlewareFragment:
|
|
71153
|
+
declare const MiddlewareFragment: gql_tada0.TadaDocumentNode<{
|
|
71138
71154
|
__typename: "AttestationIndexerMiddleware";
|
|
71139
71155
|
id: string;
|
|
71140
71156
|
uniqueName: string;
|
|
@@ -71302,7 +71318,7 @@ type Middleware = ResultOf<typeof MiddlewareFragment>;
|
|
|
71302
71318
|
/**
|
|
71303
71319
|
* Query to fetch a specific middleware with subgraphs.
|
|
71304
71320
|
*/
|
|
71305
|
-
declare const getGraphMiddlewareSubgraphs:
|
|
71321
|
+
declare const getGraphMiddlewareSubgraphs: gql_tada0.TadaDocumentNode<{
|
|
71306
71322
|
middlewareByUniqueName: {
|
|
71307
71323
|
__typename: "AttestationIndexerMiddleware";
|
|
71308
71324
|
id: string;
|
|
@@ -71485,7 +71501,7 @@ type MiddlewareWithSubgraphs = ResultOf<typeof getGraphMiddlewareSubgraphs>["mid
|
|
|
71485
71501
|
/**
|
|
71486
71502
|
* Mutation to create a new middleware.
|
|
71487
71503
|
*/
|
|
71488
|
-
declare const createMiddleware:
|
|
71504
|
+
declare const createMiddleware: gql_tada0.TadaDocumentNode<{
|
|
71489
71505
|
createMiddleware: {
|
|
71490
71506
|
__typename: "AttestationIndexerMiddleware";
|
|
71491
71507
|
id: string;
|
|
@@ -71730,7 +71746,7 @@ declare const middlewareResume: (gqlClient: GraphQLClient) => (middlewareUniqueN
|
|
|
71730
71746
|
/**
|
|
71731
71747
|
* GraphQL query to fetch platform configuration.
|
|
71732
71748
|
*/
|
|
71733
|
-
declare const getPlatformConfigQuery:
|
|
71749
|
+
declare const getPlatformConfigQuery: gql_tada0.TadaDocumentNode<{
|
|
71734
71750
|
config: {
|
|
71735
71751
|
smartContractSets: {
|
|
71736
71752
|
id: string;
|
|
@@ -71787,7 +71803,7 @@ declare const getPlatformConfig: (gqlClient: GraphQLClient) => () => Promise<Pla
|
|
|
71787
71803
|
/**
|
|
71788
71804
|
* GraphQL fragment containing core private key fields.
|
|
71789
71805
|
*/
|
|
71790
|
-
declare const PrivateKeyFragment:
|
|
71806
|
+
declare const PrivateKeyFragment: gql_tada0.TadaDocumentNode<{
|
|
71791
71807
|
__typename: "AccessibleEcdsaP256PrivateKey";
|
|
71792
71808
|
id: string;
|
|
71793
71809
|
uniqueName: string;
|
|
@@ -71994,7 +72010,7 @@ type PrivateKey = ResultOf<typeof PrivateKeyFragment>;
|
|
|
71994
72010
|
/**
|
|
71995
72011
|
* Mutation to create a new private key.
|
|
71996
72012
|
*/
|
|
71997
|
-
declare const createPrivateKey:
|
|
72013
|
+
declare const createPrivateKey: gql_tada0.TadaDocumentNode<{
|
|
71998
72014
|
createPrivateKey: {
|
|
71999
72015
|
__typename: "AccessibleEcdsaP256PrivateKey";
|
|
72000
72016
|
id: string;
|
|
@@ -72265,7 +72281,7 @@ declare const privateKeyResume: (gqlClient: GraphQLClient) => (privateKeyUniqueN
|
|
|
72265
72281
|
/**
|
|
72266
72282
|
* GraphQL fragment containing core storage fields.
|
|
72267
72283
|
*/
|
|
72268
|
-
declare const StorageFragment:
|
|
72284
|
+
declare const StorageFragment: gql_tada0.TadaDocumentNode<{
|
|
72269
72285
|
__typename: "IPFSStorage";
|
|
72270
72286
|
id: string;
|
|
72271
72287
|
uniqueName: string;
|
|
@@ -72317,7 +72333,7 @@ type Storage = ResultOf<typeof StorageFragment>;
|
|
|
72317
72333
|
/**
|
|
72318
72334
|
* Mutation to create a new storage.
|
|
72319
72335
|
*/
|
|
72320
|
-
declare const createStorage:
|
|
72336
|
+
declare const createStorage: gql_tada0.TadaDocumentNode<{
|
|
72321
72337
|
createStorage: {
|
|
72322
72338
|
__typename: "IPFSStorage";
|
|
72323
72339
|
id: string;
|
|
@@ -72427,7 +72443,7 @@ declare const storageResume: (gqlClient: GraphQLClient) => (storageUniqueName: s
|
|
|
72427
72443
|
/**
|
|
72428
72444
|
* GraphQL fragment containing core workspace fields.
|
|
72429
72445
|
*/
|
|
72430
|
-
declare const WorkspaceFragment:
|
|
72446
|
+
declare const WorkspaceFragment: gql_tada0.TadaDocumentNode<{
|
|
72431
72447
|
id: string;
|
|
72432
72448
|
uniqueName: string;
|
|
72433
72449
|
name: string;
|
|
@@ -72448,7 +72464,7 @@ type Workspace = ResultOf<typeof WorkspaceFragment>;
|
|
|
72448
72464
|
/**
|
|
72449
72465
|
* Mutation to create a new workspace.
|
|
72450
72466
|
*/
|
|
72451
|
-
declare const createWorkspace:
|
|
72467
|
+
declare const createWorkspace: gql_tada0.TadaDocumentNode<{
|
|
72452
72468
|
createWorkspace: {
|
|
72453
72469
|
id: string;
|
|
72454
72470
|
uniqueName: string;
|
package/dist/settlemint.d.ts
CHANGED
|
@@ -5885,6 +5885,14 @@ type introspection_types = {
|
|
|
5885
5885
|
};
|
|
5886
5886
|
};
|
|
5887
5887
|
};
|
|
5888
|
+
'artifactsImage': {
|
|
5889
|
+
name: 'artifactsImage';
|
|
5890
|
+
type: {
|
|
5891
|
+
kind: 'SCALAR';
|
|
5892
|
+
name: 'String';
|
|
5893
|
+
ofType: null;
|
|
5894
|
+
};
|
|
5895
|
+
};
|
|
5888
5896
|
'blockchainNodes': {
|
|
5889
5897
|
name: 'blockchainNodes';
|
|
5890
5898
|
type: {
|
|
@@ -8179,6 +8187,14 @@ type introspection_types = {
|
|
|
8179
8187
|
};
|
|
8180
8188
|
};
|
|
8181
8189
|
};
|
|
8190
|
+
'artifactsImage': {
|
|
8191
|
+
name: 'artifactsImage';
|
|
8192
|
+
type: {
|
|
8193
|
+
kind: 'SCALAR';
|
|
8194
|
+
name: 'String';
|
|
8195
|
+
ofType: null;
|
|
8196
|
+
};
|
|
8197
|
+
};
|
|
8182
8198
|
'blockchainNodes': {
|
|
8183
8199
|
name: 'blockchainNodes';
|
|
8184
8200
|
type: {
|
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-prcf8a6283",
|
|
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-prcf8a6283",
|
|
58
58
|
"gql.tada": "^1",
|
|
59
59
|
"graphql": "^16",
|
|
60
60
|
"graphql-request": "^7",
|