@mysten/sui 1.37.0 → 1.37.1

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/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "author": "Mysten Labs <build@mystenlabs.com>",
4
4
  "description": "Sui TypeScript API",
5
5
  "homepage": "https://sdk.mystenlabs.com",
6
- "version": "1.37.0",
6
+ "version": "1.37.1",
7
7
  "license": "Apache-2.0",
8
8
  "sideEffects": false,
9
9
  "files": [
@@ -147,7 +147,7 @@
147
147
  "graphql": "^16.11.0",
148
148
  "poseidon-lite": "^0.2.0",
149
149
  "valibot": "^0.36.0",
150
- "@mysten/bcs": "1.6.4",
150
+ "@mysten/bcs": "1.7.0",
151
151
  "@mysten/utils": "0.1.1"
152
152
  },
153
153
  "scripts": {
package/src/bcs/index.ts CHANGED
@@ -41,7 +41,7 @@ import { TransactionEffects } from './effects.js';
41
41
  export type { TypeTag } from './types.js';
42
42
 
43
43
  export { TypeTagSerializer } from './type-tag-serializer.js';
44
- export { BcsType, type BcsTypeOptions } from '@mysten/bcs';
44
+ export { BcsType, BcsStruct, BcsEnum, BcsTuple, type BcsTypeOptions } from '@mysten/bcs';
45
45
 
46
46
  const suiBcs = {
47
47
  ...bcs,
package/src/version.ts CHANGED
@@ -3,5 +3,5 @@
3
3
 
4
4
  // This file is generated by genversion.mjs. Do not edit it directly.
5
5
 
6
- export const PACKAGE_VERSION = '1.37.0';
6
+ export const PACKAGE_VERSION = '1.37.1';
7
7
  export const TARGETED_RPC_VERSION = '1.54.0';