@settlemint/sdk-js 2.5.14 → 2.6.0-pr1f094253
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/README.md +19 -19
- package/dist/settlemint.d.cts +26 -26
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -62,7 +62,7 @@ The SettleMint JavaScript SDK provides a type-safe wrapper around the SettleMint
|
|
|
62
62
|
|
|
63
63
|
> **createSettleMintClient**(`options`): [`SettlemintClient`](#settlemintclient)
|
|
64
64
|
|
|
65
|
-
Defined in: [sdk/js/src/settlemint.ts:275](https://github.com/settlemint/sdk/blob/v2.
|
|
65
|
+
Defined in: [sdk/js/src/settlemint.ts:275](https://github.com/settlemint/sdk/blob/v2.6.0/sdk/js/src/settlemint.ts#L275)
|
|
66
66
|
|
|
67
67
|
Creates a SettleMint client with the provided options. The client provides methods to interact with
|
|
68
68
|
various SettleMint resources like workspaces, applications, blockchain networks, blockchain nodes, middleware,
|
|
@@ -109,7 +109,7 @@ const workspace = await client.workspace.read('workspace-unique-name');
|
|
|
109
109
|
|
|
110
110
|
#### SettlemintClient
|
|
111
111
|
|
|
112
|
-
Defined in: [sdk/js/src/settlemint.ts:145](https://github.com/settlemint/sdk/blob/v2.
|
|
112
|
+
Defined in: [sdk/js/src/settlemint.ts:145](https://github.com/settlemint/sdk/blob/v2.6.0/sdk/js/src/settlemint.ts#L145)
|
|
113
113
|
|
|
114
114
|
Client interface for interacting with the SettleMint platform.
|
|
115
115
|
|
|
@@ -117,7 +117,7 @@ Client interface for interacting with the SettleMint platform.
|
|
|
117
117
|
|
|
118
118
|
#### SettlemintClientOptions
|
|
119
119
|
|
|
120
|
-
Defined in: [sdk/js/src/settlemint.ts:135](https://github.com/settlemint/sdk/blob/v2.
|
|
120
|
+
Defined in: [sdk/js/src/settlemint.ts:135](https://github.com/settlemint/sdk/blob/v2.6.0/sdk/js/src/settlemint.ts#L135)
|
|
121
121
|
|
|
122
122
|
Options for the Settlemint client.
|
|
123
123
|
|
|
@@ -129,9 +129,9 @@ Options for the Settlemint client.
|
|
|
129
129
|
|
|
130
130
|
| Property | Type | Default value | Description | Inherited from | Defined in |
|
|
131
131
|
| ------ | ------ | ------ | ------ | ------ | ------ |
|
|
132
|
-
| <a id="accesstoken"></a> `accessToken?` | `string` | `undefined` | The access token used to authenticate with the SettleMint platform | - | [sdk/js/src/settlemint.ts:137](https://github.com/settlemint/sdk/blob/v2.
|
|
133
|
-
| <a id="anonymous"></a> `anonymous?` | `boolean` | `undefined` | Whether to allow anonymous access (no access token required) | - | [sdk/js/src/settlemint.ts:139](https://github.com/settlemint/sdk/blob/v2.
|
|
134
|
-
| <a id="instance"></a> `instance` | `string` | `UrlSchema` | The URL of the SettleMint instance to connect to | `Omit.instance` | [sdk/js/src/helpers/client-options.schema.ts:11](https://github.com/settlemint/sdk/blob/v2.
|
|
132
|
+
| <a id="accesstoken"></a> `accessToken?` | `string` | `undefined` | The access token used to authenticate with the SettleMint platform | - | [sdk/js/src/settlemint.ts:137](https://github.com/settlemint/sdk/blob/v2.6.0/sdk/js/src/settlemint.ts#L137) |
|
|
133
|
+
| <a id="anonymous"></a> `anonymous?` | `boolean` | `undefined` | Whether to allow anonymous access (no access token required) | - | [sdk/js/src/settlemint.ts:139](https://github.com/settlemint/sdk/blob/v2.6.0/sdk/js/src/settlemint.ts#L139) |
|
|
134
|
+
| <a id="instance"></a> `instance` | `string` | `UrlSchema` | The URL of the SettleMint instance to connect to | `Omit.instance` | [sdk/js/src/helpers/client-options.schema.ts:11](https://github.com/settlemint/sdk/blob/v2.6.0/sdk/js/src/helpers/client-options.schema.ts#L11) |
|
|
135
135
|
|
|
136
136
|
### Type Aliases
|
|
137
137
|
|
|
@@ -139,7 +139,7 @@ Options for the Settlemint client.
|
|
|
139
139
|
|
|
140
140
|
> **Application** = `ResultOf`\<*typeof* `ApplicationFragment`\>
|
|
141
141
|
|
|
142
|
-
Defined in: [sdk/js/src/graphql/application.ts:24](https://github.com/settlemint/sdk/blob/v2.
|
|
142
|
+
Defined in: [sdk/js/src/graphql/application.ts:24](https://github.com/settlemint/sdk/blob/v2.6.0/sdk/js/src/graphql/application.ts#L24)
|
|
143
143
|
|
|
144
144
|
Type representing an application entity.
|
|
145
145
|
|
|
@@ -149,7 +149,7 @@ Type representing an application entity.
|
|
|
149
149
|
|
|
150
150
|
> **BlockchainNetwork** = `ResultOf`\<*typeof* `BlockchainNetworkFragment`\>
|
|
151
151
|
|
|
152
|
-
Defined in: [sdk/js/src/graphql/blockchain-network.ts:82](https://github.com/settlemint/sdk/blob/v2.
|
|
152
|
+
Defined in: [sdk/js/src/graphql/blockchain-network.ts:82](https://github.com/settlemint/sdk/blob/v2.6.0/sdk/js/src/graphql/blockchain-network.ts#L82)
|
|
153
153
|
|
|
154
154
|
Type representing a blockchain network entity.
|
|
155
155
|
|
|
@@ -159,7 +159,7 @@ Type representing a blockchain network entity.
|
|
|
159
159
|
|
|
160
160
|
> **BlockchainNode** = `ResultOf`\<*typeof* `BlockchainNodeFragment`\>
|
|
161
161
|
|
|
162
|
-
Defined in: [sdk/js/src/graphql/blockchain-node.ts:96](https://github.com/settlemint/sdk/blob/v2.
|
|
162
|
+
Defined in: [sdk/js/src/graphql/blockchain-node.ts:96](https://github.com/settlemint/sdk/blob/v2.6.0/sdk/js/src/graphql/blockchain-node.ts#L96)
|
|
163
163
|
|
|
164
164
|
Type representing a blockchain node entity.
|
|
165
165
|
|
|
@@ -169,7 +169,7 @@ Type representing a blockchain node entity.
|
|
|
169
169
|
|
|
170
170
|
> **CustomDeployment** = `ResultOf`\<*typeof* `CustomDeploymentFragment`\>
|
|
171
171
|
|
|
172
|
-
Defined in: [sdk/js/src/graphql/custom-deployment.ts:33](https://github.com/settlemint/sdk/blob/v2.
|
|
172
|
+
Defined in: [sdk/js/src/graphql/custom-deployment.ts:33](https://github.com/settlemint/sdk/blob/v2.6.0/sdk/js/src/graphql/custom-deployment.ts#L33)
|
|
173
173
|
|
|
174
174
|
Type representing a custom deployment entity.
|
|
175
175
|
|
|
@@ -179,7 +179,7 @@ Type representing a custom deployment entity.
|
|
|
179
179
|
|
|
180
180
|
> **Insights** = `ResultOf`\<*typeof* `InsightsFragment`\>
|
|
181
181
|
|
|
182
|
-
Defined in: [sdk/js/src/graphql/insights.ts:37](https://github.com/settlemint/sdk/blob/v2.
|
|
182
|
+
Defined in: [sdk/js/src/graphql/insights.ts:37](https://github.com/settlemint/sdk/blob/v2.6.0/sdk/js/src/graphql/insights.ts#L37)
|
|
183
183
|
|
|
184
184
|
Type representing an insights entity.
|
|
185
185
|
|
|
@@ -189,7 +189,7 @@ Type representing an insights entity.
|
|
|
189
189
|
|
|
190
190
|
> **IntegrationTool** = `ResultOf`\<*typeof* `IntegrationFragment`\>
|
|
191
191
|
|
|
192
|
-
Defined in: [sdk/js/src/graphql/integration-tool.ts:35](https://github.com/settlemint/sdk/blob/v2.
|
|
192
|
+
Defined in: [sdk/js/src/graphql/integration-tool.ts:35](https://github.com/settlemint/sdk/blob/v2.6.0/sdk/js/src/graphql/integration-tool.ts#L35)
|
|
193
193
|
|
|
194
194
|
Type representing an integration tool entity.
|
|
195
195
|
|
|
@@ -199,7 +199,7 @@ Type representing an integration tool entity.
|
|
|
199
199
|
|
|
200
200
|
> **LoadBalancer** = `ResultOf`\<*typeof* `LoadBalancerFragment`\>
|
|
201
201
|
|
|
202
|
-
Defined in: [sdk/js/src/graphql/load-balancer.ts:31](https://github.com/settlemint/sdk/blob/v2.
|
|
202
|
+
Defined in: [sdk/js/src/graphql/load-balancer.ts:31](https://github.com/settlemint/sdk/blob/v2.6.0/sdk/js/src/graphql/load-balancer.ts#L31)
|
|
203
203
|
|
|
204
204
|
Type representing a load balancer entity.
|
|
205
205
|
|
|
@@ -209,7 +209,7 @@ Type representing a load balancer entity.
|
|
|
209
209
|
|
|
210
210
|
> **Middleware** = `ResultOf`\<*typeof* `MiddlewareFragment`\>
|
|
211
211
|
|
|
212
|
-
Defined in: [sdk/js/src/graphql/middleware.ts:56](https://github.com/settlemint/sdk/blob/v2.
|
|
212
|
+
Defined in: [sdk/js/src/graphql/middleware.ts:56](https://github.com/settlemint/sdk/blob/v2.6.0/sdk/js/src/graphql/middleware.ts#L56)
|
|
213
213
|
|
|
214
214
|
Type representing a middleware entity.
|
|
215
215
|
|
|
@@ -219,7 +219,7 @@ Type representing a middleware entity.
|
|
|
219
219
|
|
|
220
220
|
> **MiddlewareWithSubgraphs** = `ResultOf`\<*typeof* `getGraphMiddlewareSubgraphs`\>\[`"middlewareByUniqueName"`\]
|
|
221
221
|
|
|
222
|
-
Defined in: [sdk/js/src/graphql/middleware.ts:115](https://github.com/settlemint/sdk/blob/v2.
|
|
222
|
+
Defined in: [sdk/js/src/graphql/middleware.ts:115](https://github.com/settlemint/sdk/blob/v2.6.0/sdk/js/src/graphql/middleware.ts#L115)
|
|
223
223
|
|
|
224
224
|
Type representing a middleware entity with subgraphs.
|
|
225
225
|
|
|
@@ -229,7 +229,7 @@ Type representing a middleware entity with subgraphs.
|
|
|
229
229
|
|
|
230
230
|
> **PlatformConfig** = `ResultOf`\<*typeof* `getPlatformConfigQuery`\>\[`"config"`\]
|
|
231
231
|
|
|
232
|
-
Defined in: [sdk/js/src/graphql/platform.ts:56](https://github.com/settlemint/sdk/blob/v2.
|
|
232
|
+
Defined in: [sdk/js/src/graphql/platform.ts:56](https://github.com/settlemint/sdk/blob/v2.6.0/sdk/js/src/graphql/platform.ts#L56)
|
|
233
233
|
|
|
234
234
|
Type representing the platform configuration.
|
|
235
235
|
|
|
@@ -239,7 +239,7 @@ Type representing the platform configuration.
|
|
|
239
239
|
|
|
240
240
|
> **PrivateKey** = `ResultOf`\<*typeof* `PrivateKeyFragment`\>
|
|
241
241
|
|
|
242
|
-
Defined in: [sdk/js/src/graphql/private-key.ts:44](https://github.com/settlemint/sdk/blob/v2.
|
|
242
|
+
Defined in: [sdk/js/src/graphql/private-key.ts:44](https://github.com/settlemint/sdk/blob/v2.6.0/sdk/js/src/graphql/private-key.ts#L44)
|
|
243
243
|
|
|
244
244
|
Type representing a private key entity.
|
|
245
245
|
|
|
@@ -249,7 +249,7 @@ Type representing a private key entity.
|
|
|
249
249
|
|
|
250
250
|
> **Storage** = `ResultOf`\<*typeof* `StorageFragment`\>
|
|
251
251
|
|
|
252
|
-
Defined in: [sdk/js/src/graphql/storage.ts:35](https://github.com/settlemint/sdk/blob/v2.
|
|
252
|
+
Defined in: [sdk/js/src/graphql/storage.ts:35](https://github.com/settlemint/sdk/blob/v2.6.0/sdk/js/src/graphql/storage.ts#L35)
|
|
253
253
|
|
|
254
254
|
Type representing a storage entity.
|
|
255
255
|
|
|
@@ -259,7 +259,7 @@ Type representing a storage entity.
|
|
|
259
259
|
|
|
260
260
|
> **Workspace** = `ResultOf`\<*typeof* `WorkspaceFragment`\>
|
|
261
261
|
|
|
262
|
-
Defined in: [sdk/js/src/graphql/workspace.ts:26](https://github.com/settlemint/sdk/blob/v2.
|
|
262
|
+
Defined in: [sdk/js/src/graphql/workspace.ts:26](https://github.com/settlemint/sdk/blob/v2.6.0/sdk/js/src/graphql/workspace.ts#L26)
|
|
263
263
|
|
|
264
264
|
Type representing a workspace entity.
|
|
265
265
|
|
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_tada11 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";
|
|
@@ -104152,7 +104152,7 @@ declare const graphql: initGraphQLTada<{
|
|
|
104152
104152
|
/**
|
|
104153
104153
|
* GraphQL fragment containing core application fields.
|
|
104154
104154
|
*/
|
|
104155
|
-
declare const ApplicationFragment:
|
|
104155
|
+
declare const ApplicationFragment: gql_tada11.TadaDocumentNode<{
|
|
104156
104156
|
id: string;
|
|
104157
104157
|
uniqueName: string;
|
|
104158
104158
|
name: string;
|
|
@@ -104173,7 +104173,7 @@ type Application = ResultOf<typeof ApplicationFragment>;
|
|
|
104173
104173
|
/**
|
|
104174
104174
|
* Mutation to create a new application.
|
|
104175
104175
|
*/
|
|
104176
|
-
declare const createApplication:
|
|
104176
|
+
declare const createApplication: gql_tada11.TadaDocumentNode<{
|
|
104177
104177
|
createApplication: {
|
|
104178
104178
|
id: string;
|
|
104179
104179
|
uniqueName: string;
|
|
@@ -104228,7 +104228,7 @@ declare const applicationCreate: (gqlClient: GraphQLClient) => (args: CreateAppl
|
|
|
104228
104228
|
declare const applicationDelete: (gqlClient: GraphQLClient) => (applicationUniqueName: string) => Promise<Application>;
|
|
104229
104229
|
//#endregion
|
|
104230
104230
|
//#region src/graphql/application-access-tokens.d.ts
|
|
104231
|
-
declare const createApplicationAccessToken:
|
|
104231
|
+
declare const createApplicationAccessToken: gql_tada11.TadaDocumentNode<{
|
|
104232
104232
|
createApplicationAccessToken: {
|
|
104233
104233
|
token: string | null;
|
|
104234
104234
|
};
|
|
@@ -104292,7 +104292,7 @@ declare const applicationAccessTokenCreate: (gqlClient: GraphQLClient) => (args:
|
|
|
104292
104292
|
/**
|
|
104293
104293
|
* Fragment containing core blockchain network fields.
|
|
104294
104294
|
*/
|
|
104295
|
-
declare const BlockchainNetworkFragment:
|
|
104295
|
+
declare const BlockchainNetworkFragment: gql_tada11.TadaDocumentNode<{
|
|
104296
104296
|
__typename: "ArbitrumBlockchainNetwork";
|
|
104297
104297
|
id: string;
|
|
104298
104298
|
uniqueName: string;
|
|
@@ -117639,7 +117639,7 @@ type BlockchainNetwork = ResultOf<typeof BlockchainNetworkFragment>;
|
|
|
117639
117639
|
/**
|
|
117640
117640
|
* Mutation to create a new blockchain network.
|
|
117641
117641
|
*/
|
|
117642
|
-
declare const createBlockchainNetwork:
|
|
117642
|
+
declare const createBlockchainNetwork: gql_tada11.TadaDocumentNode<{
|
|
117643
117643
|
createBlockchainNetwork: {
|
|
117644
117644
|
__typename: "ArbitrumBlockchainNetwork";
|
|
117645
117645
|
id: string;
|
|
@@ -171220,7 +171220,7 @@ declare const blockchainNetworkResume: (gqlClient: GraphQLClient) => (blockchain
|
|
|
171220
171220
|
/**
|
|
171221
171221
|
* Fragment containing core blockchain node fields.
|
|
171222
171222
|
*/
|
|
171223
|
-
declare const BlockchainNodeFragment:
|
|
171223
|
+
declare const BlockchainNodeFragment: gql_tada11.TadaDocumentNode<{
|
|
171224
171224
|
__typename: "ArbitrumBlockchainNode";
|
|
171225
171225
|
id: string;
|
|
171226
171226
|
uniqueName: string;
|
|
@@ -179692,7 +179692,7 @@ type BlockchainNode = ResultOf<typeof BlockchainNodeFragment>;
|
|
|
179692
179692
|
/**
|
|
179693
179693
|
* Mutation to create a blockchain node.
|
|
179694
179694
|
*/
|
|
179695
|
-
declare const createBlockchainNode:
|
|
179695
|
+
declare const createBlockchainNode: gql_tada11.TadaDocumentNode<{
|
|
179696
179696
|
createBlockchainNode: {
|
|
179697
179697
|
__typename: "ArbitrumBlockchainNode";
|
|
179698
179698
|
id: string;
|
|
@@ -188225,7 +188225,7 @@ declare const blockchainNodeResume: (gqlClient: GraphQLClient) => (blockchainNod
|
|
|
188225
188225
|
/**
|
|
188226
188226
|
* Fragment containing core custom deployment fields.
|
|
188227
188227
|
*/
|
|
188228
|
-
declare const CustomDeploymentFragment:
|
|
188228
|
+
declare const CustomDeploymentFragment: gql_tada11.TadaDocumentNode<{
|
|
188229
188229
|
id: string;
|
|
188230
188230
|
uniqueName: string;
|
|
188231
188231
|
name: string;
|
|
@@ -188255,7 +188255,7 @@ type CustomDeployment = ResultOf<typeof CustomDeploymentFragment>;
|
|
|
188255
188255
|
/**
|
|
188256
188256
|
* Mutation to create a custom deployment.
|
|
188257
188257
|
*/
|
|
188258
|
-
declare const createCustomDeployment:
|
|
188258
|
+
declare const createCustomDeployment: gql_tada11.TadaDocumentNode<{
|
|
188259
188259
|
createCustomDeployment: {
|
|
188260
188260
|
id: string;
|
|
188261
188261
|
uniqueName: string;
|
|
@@ -188355,7 +188355,7 @@ declare const customDeploymentResume: (gqlClient: GraphQLClient) => (customDeplo
|
|
|
188355
188355
|
/**
|
|
188356
188356
|
* GraphQL fragment containing core insights fields.
|
|
188357
188357
|
*/
|
|
188358
|
-
declare const InsightsFragment:
|
|
188358
|
+
declare const InsightsFragment: gql_tada11.TadaDocumentNode<{
|
|
188359
188359
|
__typename: "BlockchainExplorer";
|
|
188360
188360
|
id: string;
|
|
188361
188361
|
uniqueName: string;
|
|
@@ -188427,7 +188427,7 @@ type Insights = ResultOf<typeof InsightsFragment>;
|
|
|
188427
188427
|
/**
|
|
188428
188428
|
* Mutation to create insights.
|
|
188429
188429
|
*/
|
|
188430
|
-
declare const createInsights:
|
|
188430
|
+
declare const createInsights: gql_tada11.TadaDocumentNode<{
|
|
188431
188431
|
createInsights: {
|
|
188432
188432
|
__typename: "BlockchainExplorer";
|
|
188433
188433
|
id: string;
|
|
@@ -188561,7 +188561,7 @@ declare const insightsResume: (gqlClient: GraphQLClient) => (insightsUniqueName:
|
|
|
188561
188561
|
/**
|
|
188562
188562
|
* GraphQL fragment containing core integration fields.
|
|
188563
188563
|
*/
|
|
188564
|
-
declare const IntegrationFragment:
|
|
188564
|
+
declare const IntegrationFragment: gql_tada11.TadaDocumentNode<{
|
|
188565
188565
|
__typename: "Chainlink";
|
|
188566
188566
|
id: string;
|
|
188567
188567
|
uniqueName: string;
|
|
@@ -188653,7 +188653,7 @@ type IntegrationTool = ResultOf<typeof IntegrationFragment>;
|
|
|
188653
188653
|
/**
|
|
188654
188654
|
* Mutation to create a new integration.
|
|
188655
188655
|
*/
|
|
188656
|
-
declare const createIntegration:
|
|
188656
|
+
declare const createIntegration: gql_tada11.TadaDocumentNode<{
|
|
188657
188657
|
createIntegration: {
|
|
188658
188658
|
__typename: "Chainlink";
|
|
188659
188659
|
id: string;
|
|
@@ -188803,7 +188803,7 @@ declare const integrationToolResume: (gqlClient: GraphQLClient) => (integrationU
|
|
|
188803
188803
|
/**
|
|
188804
188804
|
* GraphQL fragment containing core load balancer fields.
|
|
188805
188805
|
*/
|
|
188806
|
-
declare const LoadBalancerFragment:
|
|
188806
|
+
declare const LoadBalancerFragment: gql_tada11.TadaDocumentNode<{
|
|
188807
188807
|
__typename: "EVMLoadBalancer";
|
|
188808
188808
|
id: string;
|
|
188809
188809
|
uniqueName: string;
|
|
@@ -188843,7 +188843,7 @@ type LoadBalancer = ResultOf<typeof LoadBalancerFragment>;
|
|
|
188843
188843
|
/**
|
|
188844
188844
|
* Mutation to create a load balancer.
|
|
188845
188845
|
*/
|
|
188846
|
-
declare const createLoadBalancer:
|
|
188846
|
+
declare const createLoadBalancer: gql_tada11.TadaDocumentNode<{
|
|
188847
188847
|
createLoadBalancer: {
|
|
188848
188848
|
__typename: "EVMLoadBalancer";
|
|
188849
188849
|
id: string;
|
|
@@ -188944,7 +188944,7 @@ declare const loadBalancerResume: (gqlClient: GraphQLClient) => (loadBalancerUni
|
|
|
188944
188944
|
/**
|
|
188945
188945
|
* GraphQL fragment containing core middleware fields.
|
|
188946
188946
|
*/
|
|
188947
|
-
declare const MiddlewareFragment:
|
|
188947
|
+
declare const MiddlewareFragment: gql_tada11.TadaDocumentNode<{
|
|
188948
188948
|
__typename: "AttestationIndexerMiddleware";
|
|
188949
188949
|
id: string;
|
|
188950
188950
|
uniqueName: string;
|
|
@@ -189112,7 +189112,7 @@ type Middleware = ResultOf<typeof MiddlewareFragment>;
|
|
|
189112
189112
|
/**
|
|
189113
189113
|
* Query to fetch a specific middleware with subgraphs.
|
|
189114
189114
|
*/
|
|
189115
|
-
declare const getGraphMiddlewareSubgraphs:
|
|
189115
|
+
declare const getGraphMiddlewareSubgraphs: gql_tada11.TadaDocumentNode<{
|
|
189116
189116
|
middlewareByUniqueName: {
|
|
189117
189117
|
__typename: "AttestationIndexerMiddleware";
|
|
189118
189118
|
id: string;
|
|
@@ -189295,7 +189295,7 @@ type MiddlewareWithSubgraphs = ResultOf<typeof getGraphMiddlewareSubgraphs>["mid
|
|
|
189295
189295
|
/**
|
|
189296
189296
|
* Mutation to create a new middleware.
|
|
189297
189297
|
*/
|
|
189298
|
-
declare const createMiddleware:
|
|
189298
|
+
declare const createMiddleware: gql_tada11.TadaDocumentNode<{
|
|
189299
189299
|
createMiddleware: {
|
|
189300
189300
|
__typename: "AttestationIndexerMiddleware";
|
|
189301
189301
|
id: string;
|
|
@@ -189540,7 +189540,7 @@ declare const middlewareResume: (gqlClient: GraphQLClient) => (middlewareUniqueN
|
|
|
189540
189540
|
/**
|
|
189541
189541
|
* GraphQL query to fetch platform configuration.
|
|
189542
189542
|
*/
|
|
189543
|
-
declare const getPlatformConfigQuery:
|
|
189543
|
+
declare const getPlatformConfigQuery: gql_tada11.TadaDocumentNode<{
|
|
189544
189544
|
config: {
|
|
189545
189545
|
smartContractSets: {
|
|
189546
189546
|
id: string;
|
|
@@ -189597,7 +189597,7 @@ declare const getPlatformConfig: (gqlClient: GraphQLClient) => () => Promise<Pla
|
|
|
189597
189597
|
/**
|
|
189598
189598
|
* GraphQL fragment containing core private key fields.
|
|
189599
189599
|
*/
|
|
189600
|
-
declare const PrivateKeyFragment:
|
|
189600
|
+
declare const PrivateKeyFragment: gql_tada11.TadaDocumentNode<{
|
|
189601
189601
|
__typename: "AccessibleEcdsaP256PrivateKey";
|
|
189602
189602
|
id: string;
|
|
189603
189603
|
uniqueName: string;
|
|
@@ -190239,7 +190239,7 @@ type PrivateKey = ResultOf<typeof PrivateKeyFragment>;
|
|
|
190239
190239
|
/**
|
|
190240
190240
|
* Mutation to create a new private key.
|
|
190241
190241
|
*/
|
|
190242
|
-
declare const createPrivateKey:
|
|
190242
|
+
declare const createPrivateKey: gql_tada11.TadaDocumentNode<{
|
|
190243
190243
|
createPrivateKey: {
|
|
190244
190244
|
__typename: "AccessibleEcdsaP256PrivateKey";
|
|
190245
190245
|
id: string;
|
|
@@ -190945,7 +190945,7 @@ declare const privateKeyResume: (gqlClient: GraphQLClient) => (privateKeyUniqueN
|
|
|
190945
190945
|
/**
|
|
190946
190946
|
* GraphQL fragment containing core storage fields.
|
|
190947
190947
|
*/
|
|
190948
|
-
declare const StorageFragment:
|
|
190948
|
+
declare const StorageFragment: gql_tada11.TadaDocumentNode<{
|
|
190949
190949
|
__typename: "IPFSStorage";
|
|
190950
190950
|
id: string;
|
|
190951
190951
|
uniqueName: string;
|
|
@@ -190997,7 +190997,7 @@ type Storage = ResultOf<typeof StorageFragment>;
|
|
|
190997
190997
|
/**
|
|
190998
190998
|
* Mutation to create a new storage.
|
|
190999
190999
|
*/
|
|
191000
|
-
declare const createStorage:
|
|
191000
|
+
declare const createStorage: gql_tada11.TadaDocumentNode<{
|
|
191001
191001
|
createStorage: {
|
|
191002
191002
|
__typename: "IPFSStorage";
|
|
191003
191003
|
id: string;
|
|
@@ -191107,7 +191107,7 @@ declare const storageResume: (gqlClient: GraphQLClient) => (storageUniqueName: s
|
|
|
191107
191107
|
/**
|
|
191108
191108
|
* GraphQL fragment containing core workspace fields.
|
|
191109
191109
|
*/
|
|
191110
|
-
declare const WorkspaceFragment:
|
|
191110
|
+
declare const WorkspaceFragment: gql_tada11.TadaDocumentNode<{
|
|
191111
191111
|
id: string;
|
|
191112
191112
|
uniqueName: string;
|
|
191113
191113
|
name: string;
|
|
@@ -191128,7 +191128,7 @@ type Workspace = ResultOf<typeof WorkspaceFragment>;
|
|
|
191128
191128
|
/**
|
|
191129
191129
|
* Mutation to create a new workspace.
|
|
191130
191130
|
*/
|
|
191131
|
-
declare const createWorkspace:
|
|
191131
|
+
declare const createWorkspace: gql_tada11.TadaDocumentNode<{
|
|
191132
191132
|
createWorkspace: {
|
|
191133
191133
|
id: string;
|
|
191134
191134
|
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.
|
|
4
|
+
"version": "2.6.0-pr1f094253",
|
|
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.
|
|
57
|
+
"@settlemint/sdk-utils": "2.6.0-pr1f094253",
|
|
58
58
|
"gql.tada": "^1",
|
|
59
59
|
"graphql": "^16",
|
|
60
60
|
"graphql-request": "^7",
|