@ton/ton 15.2.1 → 15.3.0

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.
@@ -118,7 +118,7 @@ export declare class TonClient4 {
118
118
  used: {
119
119
  bits: number;
120
120
  cells: number;
121
- publicCells: number;
121
+ publicCells?: number | undefined;
122
122
  };
123
123
  } | null;
124
124
  };
@@ -162,7 +162,7 @@ export declare class TonClient4 {
162
162
  used: {
163
163
  bits: number;
164
164
  cells: number;
165
- publicCells: number;
165
+ publicCells?: number | undefined;
166
166
  };
167
167
  } | null;
168
168
  };
@@ -490,7 +490,7 @@ const storageStatCodec = zod_1.z.object({
490
490
  used: zod_1.z.object({
491
491
  bits: zod_1.z.number(),
492
492
  cells: zod_1.z.number(),
493
- publicCells: zod_1.z.number()
493
+ publicCells: zod_1.z.number().optional()
494
494
  })
495
495
  });
496
496
  const accountCodec = zod_1.z.object({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ton/ton",
3
- "version": "15.2.1",
3
+ "version": "15.3.0",
4
4
  "repository": "https://github.com/ton-org/ton.git",
5
5
  "author": "Whales Corp. <developers@whalescorp.com>",
6
6
  "license": "MIT",