@farcaster/hub-web 0.11.2 → 0.11.3

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/dist/index.d.ts CHANGED
@@ -23955,7 +23955,8 @@ declare enum StoreType {
23955
23955
  }
23956
23956
  declare enum StorageUnitType {
23957
23957
  UNIT_TYPE_LEGACY = 0,
23958
- UNIT_TYPE_2024 = 1
23958
+ UNIT_TYPE_2024 = 1,
23959
+ UNIT_TYPE_2025 = 2
23959
23960
  }
23960
23961
  interface BlocksRequest {
23961
23962
  shardId: number;
package/dist/index.js CHANGED
@@ -7447,6 +7447,9 @@ function storageUnitTypeFromJSON(object) {
7447
7447
  case 1:
7448
7448
  case "UNIT_TYPE_2024":
7449
7449
  return 1 /* UNIT_TYPE_2024 */;
7450
+ case 2:
7451
+ case "UNIT_TYPE_2025":
7452
+ return 2 /* UNIT_TYPE_2025 */;
7450
7453
  default:
7451
7454
  throw new tsProtoGlobalThis6.Error("Unrecognized enum value " + object + " for enum StorageUnitType");
7452
7455
  }
@@ -7457,6 +7460,8 @@ function storageUnitTypeToJSON(object) {
7457
7460
  return "UNIT_TYPE_LEGACY";
7458
7461
  case 1 /* UNIT_TYPE_2024 */:
7459
7462
  return "UNIT_TYPE_2024";
7463
+ case 2 /* UNIT_TYPE_2025 */:
7464
+ return "UNIT_TYPE_2025";
7460
7465
  default:
7461
7466
  throw new tsProtoGlobalThis6.Error("Unrecognized enum value " + object + " for enum StorageUnitType");
7462
7467
  }
package/dist/index.mjs CHANGED
@@ -7388,6 +7388,9 @@ function storageUnitTypeFromJSON(object) {
7388
7388
  case 1:
7389
7389
  case "UNIT_TYPE_2024":
7390
7390
  return 1 /* UNIT_TYPE_2024 */;
7391
+ case 2:
7392
+ case "UNIT_TYPE_2025":
7393
+ return 2 /* UNIT_TYPE_2025 */;
7391
7394
  default:
7392
7395
  throw new tsProtoGlobalThis6.Error("Unrecognized enum value " + object + " for enum StorageUnitType");
7393
7396
  }
@@ -7398,6 +7401,8 @@ function storageUnitTypeToJSON(object) {
7398
7401
  return "UNIT_TYPE_LEGACY";
7399
7402
  case 1 /* UNIT_TYPE_2024 */:
7400
7403
  return "UNIT_TYPE_2024";
7404
+ case 2 /* UNIT_TYPE_2025 */:
7405
+ return "UNIT_TYPE_2025";
7401
7406
  default:
7402
7407
  throw new tsProtoGlobalThis6.Error("Unrecognized enum value " + object + " for enum StorageUnitType");
7403
7408
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@farcaster/hub-web",
3
- "version": "0.11.2",
3
+ "version": "0.11.3",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.mjs",
6
6
  "types": "./dist/index.d.ts",
@@ -32,7 +32,7 @@
32
32
  "ts-proto": "^1.146.0"
33
33
  },
34
34
  "dependencies": {
35
- "@farcaster/core": "^0.18.2",
35
+ "@farcaster/core": "^0.18.3",
36
36
  "@improbable-eng/grpc-web": "^0.15.0",
37
37
  "rxjs": "^7.8.0"
38
38
  }