@mysten/sui 1.37.1 → 1.37.2

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.
Files changed (46) hide show
  1. package/CHANGELOG.md +7 -0
  2. package/dist/cjs/client/index.d.ts +1 -1
  3. package/dist/cjs/client/index.js +0 -2
  4. package/dist/cjs/client/index.js.map +2 -2
  5. package/dist/cjs/client/types/index.d.ts +6 -6
  6. package/dist/cjs/client/types/index.js +0 -7
  7. package/dist/cjs/client/types/index.js.map +2 -2
  8. package/dist/cjs/graphql/schemas/2024.1/index.d.ts +1 -1
  9. package/dist/cjs/graphql/schemas/2024.1/index.js +0 -2
  10. package/dist/cjs/graphql/schemas/2024.1/index.js.map +2 -2
  11. package/dist/cjs/graphql/schemas/2024.4/index.d.ts +1 -1
  12. package/dist/cjs/graphql/schemas/2024.4/index.js +0 -2
  13. package/dist/cjs/graphql/schemas/2024.4/index.js.map +2 -2
  14. package/dist/cjs/graphql/schemas/latest/index.d.ts +1 -1
  15. package/dist/cjs/graphql/schemas/latest/index.js +0 -2
  16. package/dist/cjs/graphql/schemas/latest/index.js.map +2 -2
  17. package/dist/cjs/version.d.ts +2 -2
  18. package/dist/cjs/version.js +2 -2
  19. package/dist/cjs/version.js.map +1 -1
  20. package/dist/esm/client/index.d.ts +1 -1
  21. package/dist/esm/client/index.js +0 -1
  22. package/dist/esm/client/index.js.map +2 -2
  23. package/dist/esm/client/types/index.d.ts +6 -6
  24. package/dist/esm/client/types/index.js +0 -6
  25. package/dist/esm/client/types/index.js.map +3 -3
  26. package/dist/esm/graphql/schemas/2024.1/index.d.ts +1 -1
  27. package/dist/esm/graphql/schemas/2024.1/index.js +0 -1
  28. package/dist/esm/graphql/schemas/2024.1/index.js.map +2 -2
  29. package/dist/esm/graphql/schemas/2024.4/index.d.ts +1 -1
  30. package/dist/esm/graphql/schemas/2024.4/index.js +0 -1
  31. package/dist/esm/graphql/schemas/2024.4/index.js.map +2 -2
  32. package/dist/esm/graphql/schemas/latest/index.d.ts +1 -1
  33. package/dist/esm/graphql/schemas/latest/index.js +0 -1
  34. package/dist/esm/graphql/schemas/latest/index.js.map +2 -2
  35. package/dist/esm/version.d.ts +2 -2
  36. package/dist/esm/version.js +2 -2
  37. package/dist/esm/version.js.map +1 -1
  38. package/dist/tsconfig.esm.tsbuildinfo +1 -1
  39. package/dist/tsconfig.tsbuildinfo +1 -1
  40. package/package.json +1 -1
  41. package/src/client/index.ts +1 -1
  42. package/src/client/types/index.ts +6 -6
  43. package/src/graphql/schemas/2024.1/index.ts +1 -1
  44. package/src/graphql/schemas/2024.4/index.ts +1 -1
  45. package/src/graphql/schemas/latest/index.ts +1 -1
  46. package/src/version.ts +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @mysten/sui.js
2
2
 
3
+ ## 1.37.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 660377c: Mark type-only exports as being type-only so that bundlers do not attempt to bundle empty
8
+ files.
9
+
3
10
  ## 1.37.1
4
11
 
5
12
  ### Patch Changes
@@ -1,5 +1,5 @@
1
1
  export { type SuiTransport, type SuiTransportRequestOptions, type SuiTransportSubscribeOptions, type HttpHeaders, type SuiHTTPTransportOptions, SuiHTTPTransport, } from './http-transport.js';
2
2
  export { getFullnodeUrl } from './network.js';
3
- export * from './types/index.js';
3
+ export type * from './types/index.js';
4
4
  export { type SuiClientOptions, type PaginationArguments, type OrderArguments, isSuiClient, SuiClient, } from './client.js';
5
5
  export { SuiHTTPStatusError, SuiHTTPTransportError, JsonRpcError } from './errors.js';
@@ -15,7 +15,6 @@ var __copyProps = (to, from, except, desc) => {
15
15
  }
16
16
  return to;
17
17
  };
18
- var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
19
18
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
20
19
  var client_exports = {};
21
20
  __export(client_exports, {
@@ -30,7 +29,6 @@ __export(client_exports, {
30
29
  module.exports = __toCommonJS(client_exports);
31
30
  var import_http_transport = require("./http-transport.js");
32
31
  var import_network = require("./network.js");
33
- __reExport(client_exports, require("./types/index.js"), module.exports);
34
32
  var import_client = require("./client.js");
35
33
  var import_errors = require("./errors.js");
36
34
  //# sourceMappingURL=index.js.map
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../src/client/index.ts"],
4
- "sourcesContent": ["// Copyright (c) Mysten Labs, Inc.\n// SPDX-License-Identifier: Apache-2.0\n\nexport {\n\ttype SuiTransport,\n\ttype SuiTransportRequestOptions,\n\ttype SuiTransportSubscribeOptions,\n\ttype HttpHeaders,\n\ttype SuiHTTPTransportOptions,\n\tSuiHTTPTransport,\n} from './http-transport.js';\nexport { getFullnodeUrl } from './network.js';\nexport * from './types/index.js';\nexport {\n\ttype SuiClientOptions,\n\ttype PaginationArguments,\n\ttype OrderArguments,\n\tisSuiClient,\n\tSuiClient,\n} from './client.js';\nexport { SuiHTTPStatusError, SuiHTTPTransportError, JsonRpcError } from './errors.js';\n"],
5
- "mappings": ";;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAGA,4BAOO;AACP,qBAA+B;AAC/B,2BAAc,6BAZd;AAaA,oBAMO;AACP,oBAAwE;",
4
+ "sourcesContent": ["// Copyright (c) Mysten Labs, Inc.\n// SPDX-License-Identifier: Apache-2.0\n\nexport {\n\ttype SuiTransport,\n\ttype SuiTransportRequestOptions,\n\ttype SuiTransportSubscribeOptions,\n\ttype HttpHeaders,\n\ttype SuiHTTPTransportOptions,\n\tSuiHTTPTransport,\n} from './http-transport.js';\nexport { getFullnodeUrl } from './network.js';\nexport type * from './types/index.js';\nexport {\n\ttype SuiClientOptions,\n\ttype PaginationArguments,\n\ttype OrderArguments,\n\tisSuiClient,\n\tSuiClient,\n} from './client.js';\nexport { SuiHTTPStatusError, SuiHTTPTransportError, JsonRpcError } from './errors.js';\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAGA,4BAOO;AACP,qBAA+B;AAE/B,oBAMO;AACP,oBAAwE;",
6
6
  "names": []
7
7
  }
@@ -1,6 +1,6 @@
1
- export * from './chain.js';
2
- export * from './coins.js';
3
- export * from './common.js';
4
- export * from './changes.js';
5
- export * from './generated.js';
6
- export * from './params.js';
1
+ export type * from './chain.js';
2
+ export type * from './coins.js';
3
+ export type * from './common.js';
4
+ export type * from './changes.js';
5
+ export type * from './generated.js';
6
+ export type * from './params.js';
@@ -11,14 +11,7 @@ var __copyProps = (to, from, except, desc) => {
11
11
  }
12
12
  return to;
13
13
  };
14
- var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
15
14
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
16
15
  var types_exports = {};
17
16
  module.exports = __toCommonJS(types_exports);
18
- __reExport(types_exports, require("./chain.js"), module.exports);
19
- __reExport(types_exports, require("./coins.js"), module.exports);
20
- __reExport(types_exports, require("./common.js"), module.exports);
21
- __reExport(types_exports, require("./changes.js"), module.exports);
22
- __reExport(types_exports, require("./generated.js"), module.exports);
23
- __reExport(types_exports, require("./params.js"), module.exports);
24
17
  //# sourceMappingURL=index.js.map
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../../src/client/types/index.ts"],
4
- "sourcesContent": ["// Copyright (c) Mysten Labs, Inc.\n// SPDX-License-Identifier: Apache-2.0\n\nexport * from './chain.js';\nexport * from './coins.js';\nexport * from './common.js';\nexport * from './changes.js';\nexport * from './generated.js';\nexport * from './params.js';\n"],
5
- "mappings": ";;;;;;;;;;;;;;;AAAA;AAAA;AAGA,0BAAc,uBAHd;AAIA,0BAAc,uBAJd;AAKA,0BAAc,wBALd;AAMA,0BAAc,yBANd;AAOA,0BAAc,2BAPd;AAQA,0BAAc,wBARd;",
4
+ "sourcesContent": ["// Copyright (c) Mysten Labs, Inc.\n// SPDX-License-Identifier: Apache-2.0\n\nexport type * from './chain.js';\nexport type * from './coins.js';\nexport type * from './common.js';\nexport type * from './changes.js';\nexport type * from './generated.js';\nexport type * from './params.js';\n"],
5
+ "mappings": ";;;;;;;;;;;;;;AAAA;AAAA;",
6
6
  "names": []
7
7
  }
@@ -1,7 +1,7 @@
1
1
  import { initGraphQLTada } from 'gql.tada';
2
2
  import type { introspection } from '../../generated/2024.1/tada-env.js';
3
3
  import type { CustomScalars } from '../../types.js';
4
- export * from '../../types.js';
4
+ export type * from '../../types.js';
5
5
  export type { FragmentOf, ResultOf, VariablesOf, TadaDocumentNode } from 'gql.tada';
6
6
  export { readFragment, maskFragments } from 'gql.tada';
7
7
  export declare const graphql: initGraphQLTada<{
@@ -15,7 +15,6 @@ var __copyProps = (to, from, except, desc) => {
15
15
  }
16
16
  return to;
17
17
  };
18
- var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
19
18
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
20
19
  var __exports = {};
21
20
  __export(__exports, {
@@ -25,7 +24,6 @@ __export(__exports, {
25
24
  });
26
25
  module.exports = __toCommonJS(__exports);
27
26
  var import_gql = require("gql.tada");
28
- __reExport(__exports, require("../../types.js"), module.exports);
29
27
  var import_gql2 = require("gql.tada");
30
28
  const graphql = (0, import_gql.initGraphQLTada)();
31
29
  //# sourceMappingURL=index.js.map
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../../../src/graphql/schemas/2024.1/index.ts"],
4
- "sourcesContent": ["// Copyright (c) Mysten Labs, Inc.\n// SPDX-License-Identifier: Apache-2.0\n\nimport { initGraphQLTada } from 'gql.tada';\n\nimport type { introspection } from '../../generated/2024.1/tada-env.js';\nimport type { CustomScalars } from '../../types.js';\n\nexport * from '../../types.js';\n\nexport type { FragmentOf, ResultOf, VariablesOf, TadaDocumentNode } from 'gql.tada';\nexport { readFragment, maskFragments } from 'gql.tada';\n\nexport const graphql = initGraphQLTada<{\n\tintrospection: typeof introspection;\n\tscalars: CustomScalars;\n}>();\n"],
5
- "mappings": ";;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAGA,iBAAgC;AAKhC,sBAAc,2BARd;AAWA,IAAAA,cAA4C;AAErC,MAAM,cAAU,4BAGpB;",
4
+ "sourcesContent": ["// Copyright (c) Mysten Labs, Inc.\n// SPDX-License-Identifier: Apache-2.0\n\nimport { initGraphQLTada } from 'gql.tada';\n\nimport type { introspection } from '../../generated/2024.1/tada-env.js';\nimport type { CustomScalars } from '../../types.js';\n\nexport type * from '../../types.js';\n\nexport type { FragmentOf, ResultOf, VariablesOf, TadaDocumentNode } from 'gql.tada';\nexport { readFragment, maskFragments } from 'gql.tada';\n\nexport const graphql = initGraphQLTada<{\n\tintrospection: typeof introspection;\n\tscalars: CustomScalars;\n}>();\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAGA,iBAAgC;AAQhC,IAAAA,cAA4C;AAErC,MAAM,cAAU,4BAGpB;",
6
6
  "names": ["import_gql"]
7
7
  }
@@ -1,7 +1,7 @@
1
1
  import { initGraphQLTada } from 'gql.tada';
2
2
  import type { introspection } from '../../generated/2024.4/tada-env.js';
3
3
  import type { CustomScalars } from '../../types.js';
4
- export * from '../../types.js';
4
+ export type * from '../../types.js';
5
5
  export type { FragmentOf, ResultOf, VariablesOf, TadaDocumentNode } from 'gql.tada';
6
6
  export { readFragment, maskFragments } from 'gql.tada';
7
7
  export declare const graphql: initGraphQLTada<{
@@ -15,7 +15,6 @@ var __copyProps = (to, from, except, desc) => {
15
15
  }
16
16
  return to;
17
17
  };
18
- var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
19
18
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
20
19
  var __exports = {};
21
20
  __export(__exports, {
@@ -25,7 +24,6 @@ __export(__exports, {
25
24
  });
26
25
  module.exports = __toCommonJS(__exports);
27
26
  var import_gql = require("gql.tada");
28
- __reExport(__exports, require("../../types.js"), module.exports);
29
27
  var import_gql2 = require("gql.tada");
30
28
  const graphql = (0, import_gql.initGraphQLTada)();
31
29
  //# sourceMappingURL=index.js.map
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../../../src/graphql/schemas/2024.4/index.ts"],
4
- "sourcesContent": ["// Copyright (c) Mysten Labs, Inc.\n// SPDX-License-Identifier: Apache-2.0\n\nimport { initGraphQLTada } from 'gql.tada';\n\nimport type { introspection } from '../../generated/2024.4/tada-env.js';\nimport type { CustomScalars } from '../../types.js';\n\nexport * from '../../types.js';\n\nexport type { FragmentOf, ResultOf, VariablesOf, TadaDocumentNode } from 'gql.tada';\nexport { readFragment, maskFragments } from 'gql.tada';\n\nexport const graphql = initGraphQLTada<{\n\tintrospection: typeof introspection;\n\tscalars: CustomScalars;\n}>();\n"],
5
- "mappings": ";;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAGA,iBAAgC;AAKhC,sBAAc,2BARd;AAWA,IAAAA,cAA4C;AAErC,MAAM,cAAU,4BAGpB;",
4
+ "sourcesContent": ["// Copyright (c) Mysten Labs, Inc.\n// SPDX-License-Identifier: Apache-2.0\n\nimport { initGraphQLTada } from 'gql.tada';\n\nimport type { introspection } from '../../generated/2024.4/tada-env.js';\nimport type { CustomScalars } from '../../types.js';\n\nexport type * from '../../types.js';\n\nexport type { FragmentOf, ResultOf, VariablesOf, TadaDocumentNode } from 'gql.tada';\nexport { readFragment, maskFragments } from 'gql.tada';\n\nexport const graphql = initGraphQLTada<{\n\tintrospection: typeof introspection;\n\tscalars: CustomScalars;\n}>();\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAGA,iBAAgC;AAQhC,IAAAA,cAA4C;AAErC,MAAM,cAAU,4BAGpB;",
6
6
  "names": ["import_gql"]
7
7
  }
@@ -1,7 +1,7 @@
1
1
  import { initGraphQLTada } from 'gql.tada';
2
2
  import type { introspection } from '../../generated/latest/tada-env.js';
3
3
  import type { CustomScalars } from '../../types.js';
4
- export * from '../../types.js';
4
+ export type * from '../../types.js';
5
5
  export type { FragmentOf, ResultOf, VariablesOf, TadaDocumentNode } from 'gql.tada';
6
6
  export { readFragment, maskFragments } from 'gql.tada';
7
7
  export declare const graphql: initGraphQLTada<{
@@ -15,7 +15,6 @@ var __copyProps = (to, from, except, desc) => {
15
15
  }
16
16
  return to;
17
17
  };
18
- var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
19
18
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
20
19
  var latest_exports = {};
21
20
  __export(latest_exports, {
@@ -25,7 +24,6 @@ __export(latest_exports, {
25
24
  });
26
25
  module.exports = __toCommonJS(latest_exports);
27
26
  var import_gql = require("gql.tada");
28
- __reExport(latest_exports, require("../../types.js"), module.exports);
29
27
  var import_gql2 = require("gql.tada");
30
28
  const graphql = (0, import_gql.initGraphQLTada)();
31
29
  //# sourceMappingURL=index.js.map
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../../../src/graphql/schemas/latest/index.ts"],
4
- "sourcesContent": ["// Copyright (c) Mysten Labs, Inc.\n// SPDX-License-Identifier: Apache-2.0\n\nimport { initGraphQLTada } from 'gql.tada';\n\nimport type { introspection } from '../../generated/latest/tada-env.js';\nimport type { CustomScalars } from '../../types.js';\n\nexport * from '../../types.js';\n\nexport type { FragmentOf, ResultOf, VariablesOf, TadaDocumentNode } from 'gql.tada';\nexport { readFragment, maskFragments } from 'gql.tada';\n\nexport const graphql = initGraphQLTada<{\n\tintrospection: typeof introspection;\n\tscalars: CustomScalars;\n}>();\n"],
5
- "mappings": ";;;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAGA,iBAAgC;AAKhC,2BAAc,2BARd;AAWA,IAAAA,cAA4C;AAErC,MAAM,cAAU,4BAGpB;",
4
+ "sourcesContent": ["// Copyright (c) Mysten Labs, Inc.\n// SPDX-License-Identifier: Apache-2.0\n\nimport { initGraphQLTada } from 'gql.tada';\n\nimport type { introspection } from '../../generated/latest/tada-env.js';\nimport type { CustomScalars } from '../../types.js';\n\nexport type * from '../../types.js';\n\nexport type { FragmentOf, ResultOf, VariablesOf, TadaDocumentNode } from 'gql.tada';\nexport { readFragment, maskFragments } from 'gql.tada';\n\nexport const graphql = initGraphQLTada<{\n\tintrospection: typeof introspection;\n\tscalars: CustomScalars;\n}>();\n"],
5
+ "mappings": ";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAGA,iBAAgC;AAQhC,IAAAA,cAA4C;AAErC,MAAM,cAAU,4BAGpB;",
6
6
  "names": ["import_gql"]
7
7
  }
@@ -1,2 +1,2 @@
1
- export declare const PACKAGE_VERSION = "1.37.1";
2
- export declare const TARGETED_RPC_VERSION = "1.54.0";
1
+ export declare const PACKAGE_VERSION = "1.37.2";
2
+ export declare const TARGETED_RPC_VERSION = "1.55.0";
@@ -22,6 +22,6 @@ __export(version_exports, {
22
22
  TARGETED_RPC_VERSION: () => TARGETED_RPC_VERSION
23
23
  });
24
24
  module.exports = __toCommonJS(version_exports);
25
- const PACKAGE_VERSION = "1.37.1";
26
- const TARGETED_RPC_VERSION = "1.54.0";
25
+ const PACKAGE_VERSION = "1.37.2";
26
+ const TARGETED_RPC_VERSION = "1.55.0";
27
27
  //# sourceMappingURL=version.js.map
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../src/version.ts"],
4
- "sourcesContent": ["// Copyright (c) Mysten Labs, Inc.\n// SPDX-License-Identifier: Apache-2.0\n\n// This file is generated by genversion.mjs. Do not edit it directly.\n\nexport const PACKAGE_VERSION = '1.37.1';\nexport const TARGETED_RPC_VERSION = '1.54.0';\n"],
4
+ "sourcesContent": ["// Copyright (c) Mysten Labs, Inc.\n// SPDX-License-Identifier: Apache-2.0\n\n// This file is generated by genversion.mjs. Do not edit it directly.\n\nexport const PACKAGE_VERSION = '1.37.2';\nexport const TARGETED_RPC_VERSION = '1.55.0';\n"],
5
5
  "mappings": ";;;;;;;;;;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAKO,MAAM,kBAAkB;AACxB,MAAM,uBAAuB;",
6
6
  "names": []
7
7
  }
@@ -1,5 +1,5 @@
1
1
  export { type SuiTransport, type SuiTransportRequestOptions, type SuiTransportSubscribeOptions, type HttpHeaders, type SuiHTTPTransportOptions, SuiHTTPTransport, } from './http-transport.js';
2
2
  export { getFullnodeUrl } from './network.js';
3
- export * from './types/index.js';
3
+ export type * from './types/index.js';
4
4
  export { type SuiClientOptions, type PaginationArguments, type OrderArguments, isSuiClient, SuiClient, } from './client.js';
5
5
  export { SuiHTTPStatusError, SuiHTTPTransportError, JsonRpcError } from './errors.js';
@@ -2,7 +2,6 @@ import {
2
2
  SuiHTTPTransport
3
3
  } from "./http-transport.js";
4
4
  import { getFullnodeUrl } from "./network.js";
5
- export * from "./types/index.js";
6
5
  import {
7
6
  isSuiClient,
8
7
  SuiClient
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../src/client/index.ts"],
4
- "sourcesContent": ["// Copyright (c) Mysten Labs, Inc.\n// SPDX-License-Identifier: Apache-2.0\n\nexport {\n\ttype SuiTransport,\n\ttype SuiTransportRequestOptions,\n\ttype SuiTransportSubscribeOptions,\n\ttype HttpHeaders,\n\ttype SuiHTTPTransportOptions,\n\tSuiHTTPTransport,\n} from './http-transport.js';\nexport { getFullnodeUrl } from './network.js';\nexport * from './types/index.js';\nexport {\n\ttype SuiClientOptions,\n\ttype PaginationArguments,\n\ttype OrderArguments,\n\tisSuiClient,\n\tSuiClient,\n} from './client.js';\nexport { SuiHTTPStatusError, SuiHTTPTransportError, JsonRpcError } from './errors.js';\n"],
5
- "mappings": "AAGA;AAAA,EAMC;AAAA,OACM;AACP,SAAS,sBAAsB;AAC/B,cAAc;AACd;AAAA,EAIC;AAAA,EACA;AAAA,OACM;AACP,SAAS,oBAAoB,uBAAuB,oBAAoB;",
4
+ "sourcesContent": ["// Copyright (c) Mysten Labs, Inc.\n// SPDX-License-Identifier: Apache-2.0\n\nexport {\n\ttype SuiTransport,\n\ttype SuiTransportRequestOptions,\n\ttype SuiTransportSubscribeOptions,\n\ttype HttpHeaders,\n\ttype SuiHTTPTransportOptions,\n\tSuiHTTPTransport,\n} from './http-transport.js';\nexport { getFullnodeUrl } from './network.js';\nexport type * from './types/index.js';\nexport {\n\ttype SuiClientOptions,\n\ttype PaginationArguments,\n\ttype OrderArguments,\n\tisSuiClient,\n\tSuiClient,\n} from './client.js';\nexport { SuiHTTPStatusError, SuiHTTPTransportError, JsonRpcError } from './errors.js';\n"],
5
+ "mappings": "AAGA;AAAA,EAMC;AAAA,OACM;AACP,SAAS,sBAAsB;AAE/B;AAAA,EAIC;AAAA,EACA;AAAA,OACM;AACP,SAAS,oBAAoB,uBAAuB,oBAAoB;",
6
6
  "names": []
7
7
  }
@@ -1,6 +1,6 @@
1
- export * from './chain.js';
2
- export * from './coins.js';
3
- export * from './common.js';
4
- export * from './changes.js';
5
- export * from './generated.js';
6
- export * from './params.js';
1
+ export type * from './chain.js';
2
+ export type * from './coins.js';
3
+ export type * from './common.js';
4
+ export type * from './changes.js';
5
+ export type * from './generated.js';
6
+ export type * from './params.js';
@@ -1,7 +1 @@
1
- export * from "./chain.js";
2
- export * from "./coins.js";
3
- export * from "./common.js";
4
- export * from "./changes.js";
5
- export * from "./generated.js";
6
- export * from "./params.js";
7
1
  //# sourceMappingURL=index.js.map
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
- "sources": ["../../../../src/client/types/index.ts"],
4
- "sourcesContent": ["// Copyright (c) Mysten Labs, Inc.\n// SPDX-License-Identifier: Apache-2.0\n\nexport * from './chain.js';\nexport * from './coins.js';\nexport * from './common.js';\nexport * from './changes.js';\nexport * from './generated.js';\nexport * from './params.js';\n"],
5
- "mappings": "AAGA,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;AACd,cAAc;",
3
+ "sources": [],
4
+ "sourcesContent": [],
5
+ "mappings": "",
6
6
  "names": []
7
7
  }
@@ -1,7 +1,7 @@
1
1
  import { initGraphQLTada } from 'gql.tada';
2
2
  import type { introspection } from '../../generated/2024.1/tada-env.js';
3
3
  import type { CustomScalars } from '../../types.js';
4
- export * from '../../types.js';
4
+ export type * from '../../types.js';
5
5
  export type { FragmentOf, ResultOf, VariablesOf, TadaDocumentNode } from 'gql.tada';
6
6
  export { readFragment, maskFragments } from 'gql.tada';
7
7
  export declare const graphql: initGraphQLTada<{
@@ -1,5 +1,4 @@
1
1
  import { initGraphQLTada } from "gql.tada";
2
- export * from "../../types.js";
3
2
  import { readFragment, maskFragments } from "gql.tada";
4
3
  const graphql = initGraphQLTada();
5
4
  export {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../../../src/graphql/schemas/2024.1/index.ts"],
4
- "sourcesContent": ["// Copyright (c) Mysten Labs, Inc.\n// SPDX-License-Identifier: Apache-2.0\n\nimport { initGraphQLTada } from 'gql.tada';\n\nimport type { introspection } from '../../generated/2024.1/tada-env.js';\nimport type { CustomScalars } from '../../types.js';\n\nexport * from '../../types.js';\n\nexport type { FragmentOf, ResultOf, VariablesOf, TadaDocumentNode } from 'gql.tada';\nexport { readFragment, maskFragments } from 'gql.tada';\n\nexport const graphql = initGraphQLTada<{\n\tintrospection: typeof introspection;\n\tscalars: CustomScalars;\n}>();\n"],
5
- "mappings": "AAGA,SAAS,uBAAuB;AAKhC,cAAc;AAGd,SAAS,cAAc,qBAAqB;AAErC,MAAM,UAAU,gBAGpB;",
4
+ "sourcesContent": ["// Copyright (c) Mysten Labs, Inc.\n// SPDX-License-Identifier: Apache-2.0\n\nimport { initGraphQLTada } from 'gql.tada';\n\nimport type { introspection } from '../../generated/2024.1/tada-env.js';\nimport type { CustomScalars } from '../../types.js';\n\nexport type * from '../../types.js';\n\nexport type { FragmentOf, ResultOf, VariablesOf, TadaDocumentNode } from 'gql.tada';\nexport { readFragment, maskFragments } from 'gql.tada';\n\nexport const graphql = initGraphQLTada<{\n\tintrospection: typeof introspection;\n\tscalars: CustomScalars;\n}>();\n"],
5
+ "mappings": "AAGA,SAAS,uBAAuB;AAQhC,SAAS,cAAc,qBAAqB;AAErC,MAAM,UAAU,gBAGpB;",
6
6
  "names": []
7
7
  }
@@ -1,7 +1,7 @@
1
1
  import { initGraphQLTada } from 'gql.tada';
2
2
  import type { introspection } from '../../generated/2024.4/tada-env.js';
3
3
  import type { CustomScalars } from '../../types.js';
4
- export * from '../../types.js';
4
+ export type * from '../../types.js';
5
5
  export type { FragmentOf, ResultOf, VariablesOf, TadaDocumentNode } from 'gql.tada';
6
6
  export { readFragment, maskFragments } from 'gql.tada';
7
7
  export declare const graphql: initGraphQLTada<{
@@ -1,5 +1,4 @@
1
1
  import { initGraphQLTada } from "gql.tada";
2
- export * from "../../types.js";
3
2
  import { readFragment, maskFragments } from "gql.tada";
4
3
  const graphql = initGraphQLTada();
5
4
  export {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../../../src/graphql/schemas/2024.4/index.ts"],
4
- "sourcesContent": ["// Copyright (c) Mysten Labs, Inc.\n// SPDX-License-Identifier: Apache-2.0\n\nimport { initGraphQLTada } from 'gql.tada';\n\nimport type { introspection } from '../../generated/2024.4/tada-env.js';\nimport type { CustomScalars } from '../../types.js';\n\nexport * from '../../types.js';\n\nexport type { FragmentOf, ResultOf, VariablesOf, TadaDocumentNode } from 'gql.tada';\nexport { readFragment, maskFragments } from 'gql.tada';\n\nexport const graphql = initGraphQLTada<{\n\tintrospection: typeof introspection;\n\tscalars: CustomScalars;\n}>();\n"],
5
- "mappings": "AAGA,SAAS,uBAAuB;AAKhC,cAAc;AAGd,SAAS,cAAc,qBAAqB;AAErC,MAAM,UAAU,gBAGpB;",
4
+ "sourcesContent": ["// Copyright (c) Mysten Labs, Inc.\n// SPDX-License-Identifier: Apache-2.0\n\nimport { initGraphQLTada } from 'gql.tada';\n\nimport type { introspection } from '../../generated/2024.4/tada-env.js';\nimport type { CustomScalars } from '../../types.js';\n\nexport type * from '../../types.js';\n\nexport type { FragmentOf, ResultOf, VariablesOf, TadaDocumentNode } from 'gql.tada';\nexport { readFragment, maskFragments } from 'gql.tada';\n\nexport const graphql = initGraphQLTada<{\n\tintrospection: typeof introspection;\n\tscalars: CustomScalars;\n}>();\n"],
5
+ "mappings": "AAGA,SAAS,uBAAuB;AAQhC,SAAS,cAAc,qBAAqB;AAErC,MAAM,UAAU,gBAGpB;",
6
6
  "names": []
7
7
  }
@@ -1,7 +1,7 @@
1
1
  import { initGraphQLTada } from 'gql.tada';
2
2
  import type { introspection } from '../../generated/latest/tada-env.js';
3
3
  import type { CustomScalars } from '../../types.js';
4
- export * from '../../types.js';
4
+ export type * from '../../types.js';
5
5
  export type { FragmentOf, ResultOf, VariablesOf, TadaDocumentNode } from 'gql.tada';
6
6
  export { readFragment, maskFragments } from 'gql.tada';
7
7
  export declare const graphql: initGraphQLTada<{
@@ -1,5 +1,4 @@
1
1
  import { initGraphQLTada } from "gql.tada";
2
- export * from "../../types.js";
3
2
  import { readFragment, maskFragments } from "gql.tada";
4
3
  const graphql = initGraphQLTada();
5
4
  export {
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../../../src/graphql/schemas/latest/index.ts"],
4
- "sourcesContent": ["// Copyright (c) Mysten Labs, Inc.\n// SPDX-License-Identifier: Apache-2.0\n\nimport { initGraphQLTada } from 'gql.tada';\n\nimport type { introspection } from '../../generated/latest/tada-env.js';\nimport type { CustomScalars } from '../../types.js';\n\nexport * from '../../types.js';\n\nexport type { FragmentOf, ResultOf, VariablesOf, TadaDocumentNode } from 'gql.tada';\nexport { readFragment, maskFragments } from 'gql.tada';\n\nexport const graphql = initGraphQLTada<{\n\tintrospection: typeof introspection;\n\tscalars: CustomScalars;\n}>();\n"],
5
- "mappings": "AAGA,SAAS,uBAAuB;AAKhC,cAAc;AAGd,SAAS,cAAc,qBAAqB;AAErC,MAAM,UAAU,gBAGpB;",
4
+ "sourcesContent": ["// Copyright (c) Mysten Labs, Inc.\n// SPDX-License-Identifier: Apache-2.0\n\nimport { initGraphQLTada } from 'gql.tada';\n\nimport type { introspection } from '../../generated/latest/tada-env.js';\nimport type { CustomScalars } from '../../types.js';\n\nexport type * from '../../types.js';\n\nexport type { FragmentOf, ResultOf, VariablesOf, TadaDocumentNode } from 'gql.tada';\nexport { readFragment, maskFragments } from 'gql.tada';\n\nexport const graphql = initGraphQLTada<{\n\tintrospection: typeof introspection;\n\tscalars: CustomScalars;\n}>();\n"],
5
+ "mappings": "AAGA,SAAS,uBAAuB;AAQhC,SAAS,cAAc,qBAAqB;AAErC,MAAM,UAAU,gBAGpB;",
6
6
  "names": []
7
7
  }
@@ -1,2 +1,2 @@
1
- export declare const PACKAGE_VERSION = "1.37.1";
2
- export declare const TARGETED_RPC_VERSION = "1.54.0";
1
+ export declare const PACKAGE_VERSION = "1.37.2";
2
+ export declare const TARGETED_RPC_VERSION = "1.55.0";
@@ -1,5 +1,5 @@
1
- const PACKAGE_VERSION = "1.37.1";
2
- const TARGETED_RPC_VERSION = "1.54.0";
1
+ const PACKAGE_VERSION = "1.37.2";
2
+ const TARGETED_RPC_VERSION = "1.55.0";
3
3
  export {
4
4
  PACKAGE_VERSION,
5
5
  TARGETED_RPC_VERSION
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../src/version.ts"],
4
- "sourcesContent": ["// Copyright (c) Mysten Labs, Inc.\n// SPDX-License-Identifier: Apache-2.0\n\n// This file is generated by genversion.mjs. Do not edit it directly.\n\nexport const PACKAGE_VERSION = '1.37.1';\nexport const TARGETED_RPC_VERSION = '1.54.0';\n"],
4
+ "sourcesContent": ["// Copyright (c) Mysten Labs, Inc.\n// SPDX-License-Identifier: Apache-2.0\n\n// This file is generated by genversion.mjs. Do not edit it directly.\n\nexport const PACKAGE_VERSION = '1.37.2';\nexport const TARGETED_RPC_VERSION = '1.55.0';\n"],
5
5
  "mappings": "AAKO,MAAM,kBAAkB;AACxB,MAAM,uBAAuB;",
6
6
  "names": []
7
7
  }