@settlemint/sdk-js 2.3.8-pred8f4df3 → 2.3.11-main4a16f017

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 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: [settlemint.ts:239](https://github.com/settlemint/sdk/blob/v2.3.8/sdk/js/src/settlemint.ts#L239)
65
+ Defined in: [settlemint.ts:239](https://github.com/settlemint/sdk/blob/v2.3.11/sdk/js/src/settlemint.ts#L239)
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: [settlemint.ts:127](https://github.com/settlemint/sdk/blob/v2.3.8/sdk/js/src/settlemint.ts#L127)
112
+ Defined in: [settlemint.ts:127](https://github.com/settlemint/sdk/blob/v2.3.11/sdk/js/src/settlemint.ts#L127)
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: [settlemint.ts:117](https://github.com/settlemint/sdk/blob/v2.3.8/sdk/js/src/settlemint.ts#L117)
120
+ Defined in: [settlemint.ts:117](https://github.com/settlemint/sdk/blob/v2.3.11/sdk/js/src/settlemint.ts#L117)
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 | - | [settlemint.ts:119](https://github.com/settlemint/sdk/blob/v2.3.8/sdk/js/src/settlemint.ts#L119) |
133
- | <a id="anonymous"></a> `anonymous?` | `boolean` | `undefined` | Whether to allow anonymous access (no access token required) | - | [settlemint.ts:121](https://github.com/settlemint/sdk/blob/v2.3.8/sdk/js/src/settlemint.ts#L121) |
134
- | <a id="instance"></a> `instance` | `string` | `UrlSchema` | The URL of the SettleMint instance to connect to | `Omit.instance` | [helpers/client-options.schema.ts:11](https://github.com/settlemint/sdk/blob/v2.3.8/sdk/js/src/helpers/client-options.schema.ts#L11) |
132
+ | <a id="accesstoken"></a> `accessToken?` | `string` | `undefined` | The access token used to authenticate with the SettleMint platform | - | [settlemint.ts:119](https://github.com/settlemint/sdk/blob/v2.3.11/sdk/js/src/settlemint.ts#L119) |
133
+ | <a id="anonymous"></a> `anonymous?` | `boolean` | `undefined` | Whether to allow anonymous access (no access token required) | - | [settlemint.ts:121](https://github.com/settlemint/sdk/blob/v2.3.11/sdk/js/src/settlemint.ts#L121) |
134
+ | <a id="instance"></a> `instance` | `string` | `UrlSchema` | The URL of the SettleMint instance to connect to | `Omit.instance` | [helpers/client-options.schema.ts:11](https://github.com/settlemint/sdk/blob/v2.3.11/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: [graphql/application.ts:24](https://github.com/settlemint/sdk/blob/v2.3.8/sdk/js/src/graphql/application.ts#L24)
142
+ Defined in: [graphql/application.ts:24](https://github.com/settlemint/sdk/blob/v2.3.11/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: [graphql/blockchain-network.ts:82](https://github.com/settlemint/sdk/blob/v2.3.8/sdk/js/src/graphql/blockchain-network.ts#L82)
152
+ Defined in: [graphql/blockchain-network.ts:82](https://github.com/settlemint/sdk/blob/v2.3.11/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: [graphql/blockchain-node.ts:96](https://github.com/settlemint/sdk/blob/v2.3.8/sdk/js/src/graphql/blockchain-node.ts#L96)
162
+ Defined in: [graphql/blockchain-node.ts:96](https://github.com/settlemint/sdk/blob/v2.3.11/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: [graphql/custom-deployment.ts:33](https://github.com/settlemint/sdk/blob/v2.3.8/sdk/js/src/graphql/custom-deployment.ts#L33)
172
+ Defined in: [graphql/custom-deployment.ts:33](https://github.com/settlemint/sdk/blob/v2.3.11/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: [graphql/insights.ts:37](https://github.com/settlemint/sdk/blob/v2.3.8/sdk/js/src/graphql/insights.ts#L37)
182
+ Defined in: [graphql/insights.ts:37](https://github.com/settlemint/sdk/blob/v2.3.11/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: [graphql/integration-tool.ts:35](https://github.com/settlemint/sdk/blob/v2.3.8/sdk/js/src/graphql/integration-tool.ts#L35)
192
+ Defined in: [graphql/integration-tool.ts:35](https://github.com/settlemint/sdk/blob/v2.3.11/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: [graphql/load-balancer.ts:31](https://github.com/settlemint/sdk/blob/v2.3.8/sdk/js/src/graphql/load-balancer.ts#L31)
202
+ Defined in: [graphql/load-balancer.ts:31](https://github.com/settlemint/sdk/blob/v2.3.11/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: [graphql/middleware.ts:43](https://github.com/settlemint/sdk/blob/v2.3.8/sdk/js/src/graphql/middleware.ts#L43)
212
+ Defined in: [graphql/middleware.ts:43](https://github.com/settlemint/sdk/blob/v2.3.11/sdk/js/src/graphql/middleware.ts#L43)
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: [graphql/middleware.ts:101](https://github.com/settlemint/sdk/blob/v2.3.8/sdk/js/src/graphql/middleware.ts#L101)
222
+ Defined in: [graphql/middleware.ts:101](https://github.com/settlemint/sdk/blob/v2.3.11/sdk/js/src/graphql/middleware.ts#L101)
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: [graphql/platform.ts:56](https://github.com/settlemint/sdk/blob/v2.3.8/sdk/js/src/graphql/platform.ts#L56)
232
+ Defined in: [graphql/platform.ts:56](https://github.com/settlemint/sdk/blob/v2.3.11/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: [graphql/private-key.ts:44](https://github.com/settlemint/sdk/blob/v2.3.8/sdk/js/src/graphql/private-key.ts#L44)
242
+ Defined in: [graphql/private-key.ts:44](https://github.com/settlemint/sdk/blob/v2.3.11/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: [graphql/storage.ts:35](https://github.com/settlemint/sdk/blob/v2.3.8/sdk/js/src/graphql/storage.ts#L35)
252
+ Defined in: [graphql/storage.ts:35](https://github.com/settlemint/sdk/blob/v2.3.11/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: [graphql/workspace.ts:26](https://github.com/settlemint/sdk/blob/v2.3.8/sdk/js/src/graphql/workspace.ts#L26)
262
+ Defined in: [graphql/workspace.ts:26](https://github.com/settlemint/sdk/blob/v2.3.11/sdk/js/src/graphql/workspace.ts#L26)
263
263
 
264
264
  Type representing a workspace entity.
265
265
 
@@ -1,14 +1,14 @@
1
1
  import { Id } from "@settlemint/sdk-utils/validation";
2
+ import * as gql_tada2 from "gql.tada";
2
3
  import * as gql_tada0 from "gql.tada";
3
- import * as gql_tada1 from "gql.tada";
4
4
  import * as gql_tada3 from "gql.tada";
5
5
  import * as gql_tada5 from "gql.tada";
6
6
  import * as gql_tada7 from "gql.tada";
7
7
  import * as gql_tada9 from "gql.tada";
8
8
  import * as gql_tada11 from "gql.tada";
9
9
  import * as gql_tada13 from "gql.tada";
10
+ import * as gql_tada16 from "gql.tada";
10
11
  import * as gql_tada15 from "gql.tada";
11
- import * as gql_tada18 from "gql.tada";
12
12
  import * as gql_tada19 from "gql.tada";
13
13
  import * as gql_tada21 from "gql.tada";
14
14
  import * as gql_tada23 from "gql.tada";
@@ -102419,7 +102419,7 @@ declare module 'gql.tada' {
102419
102419
  }
102420
102420
  //#endregion
102421
102421
  //#region src/graphql/application-access-tokens.d.ts
102422
- declare const createApplicationAccessToken: gql_tada0.TadaDocumentNode<{
102422
+ declare const createApplicationAccessToken: gql_tada2.TadaDocumentNode<{
102423
102423
  createApplicationAccessToken: {
102424
102424
  token: string | null;
102425
102425
  };
@@ -102482,7 +102482,7 @@ type CreateApplicationAccessTokenArgs = Omit<VariablesOf<typeof createApplicatio
102482
102482
  /**
102483
102483
  * GraphQL fragment containing core application fields.
102484
102484
  */
102485
- declare const ApplicationFragment: gql_tada1.TadaDocumentNode<{
102485
+ declare const ApplicationFragment: gql_tada0.TadaDocumentNode<{
102486
102486
  id: string;
102487
102487
  uniqueName: string;
102488
102488
  name: string;
@@ -102503,7 +102503,7 @@ type Application = ResultOf<typeof ApplicationFragment>;
102503
102503
  /**
102504
102504
  * Mutation to create a new application.
102505
102505
  */
102506
- declare const createApplication: gql_tada1.TadaDocumentNode<{
102506
+ declare const createApplication: gql_tada0.TadaDocumentNode<{
102507
102507
  createApplication: {
102508
102508
  id: string;
102509
102509
  uniqueName: string;
@@ -146866,7 +146866,7 @@ type CreateLoadBalancerArgs = Omit<VariablesOf<typeof createLoadBalancer>, "appl
146866
146866
  /**
146867
146867
  * GraphQL fragment containing core middleware fields.
146868
146868
  */
146869
- declare const MiddlewareFragment: gql_tada15.TadaDocumentNode<{
146869
+ declare const MiddlewareFragment: gql_tada16.TadaDocumentNode<{
146870
146870
  __typename: "AttestationIndexerMiddleware";
146871
146871
  id: string;
146872
146872
  uniqueName: string;
@@ -147011,7 +147011,7 @@ type Middleware = ResultOf<typeof MiddlewareFragment>;
147011
147011
  /**
147012
147012
  * Query to fetch a specific middleware with subgraphs.
147013
147013
  */
147014
- declare const getGraphMiddlewareSubgraphs: gql_tada15.TadaDocumentNode<{
147014
+ declare const getGraphMiddlewareSubgraphs: gql_tada16.TadaDocumentNode<{
147015
147015
  middlewareByUniqueName: {
147016
147016
  __typename: "AttestationIndexerMiddleware";
147017
147017
  id: string;
@@ -147164,7 +147164,7 @@ type MiddlewareWithSubgraphs = ResultOf<typeof getGraphMiddlewareSubgraphs>["mid
147164
147164
  /**
147165
147165
  * Mutation to create a new middleware.
147166
147166
  */
147167
- declare const createMiddleware: gql_tada15.TadaDocumentNode<{
147167
+ declare const createMiddleware: gql_tada16.TadaDocumentNode<{
147168
147168
  createMiddleware: {
147169
147169
  __typename: "AttestationIndexerMiddleware";
147170
147170
  id: string;
@@ -147337,7 +147337,7 @@ type CreateMiddlewareArgs = Omit<VariablesOf<typeof createMiddleware>, "applicat
147337
147337
  /**
147338
147338
  * GraphQL query to fetch platform configuration.
147339
147339
  */
147340
- declare const getPlatformConfigQuery: gql_tada18.TadaDocumentNode<{
147340
+ declare const getPlatformConfigQuery: gql_tada15.TadaDocumentNode<{
147341
147341
  config: {
147342
147342
  smartContractSets: {
147343
147343
  id: 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.3.8-pred8f4df3",
4
+ "version": "2.3.11-main4a16f017",
5
5
  "type": "module",
6
6
  "private": false,
7
7
  "license": "FSL-1.1-MIT",
@@ -55,7 +55,7 @@
55
55
  "gql.tada": "^1",
56
56
  "graphql-request": "^7",
57
57
  "zod": "^3.25.0",
58
- "@settlemint/sdk-utils": "2.3.8-pred8f4df3"
58
+ "@settlemint/sdk-utils": "2.3.11-main4a16f017"
59
59
  },
60
60
  "peerDependencies": {},
61
61
  "engines": {