@farcaster/hub-web 0.6.2 → 0.6.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
@@ -13544,7 +13544,8 @@ declare enum StoreType {
13544
13544
  LINKS = 2,
13545
13545
  REACTIONS = 3,
13546
13546
  USER_DATA = 4,
13547
- VERIFICATIONS = 5
13547
+ VERIFICATIONS = 5,
13548
+ USERNAME_PROOFS = 6
13548
13549
  }
13549
13550
  interface Empty {
13550
13551
  }
package/dist/index.js CHANGED
@@ -6124,6 +6124,9 @@ function storeTypeFromJSON(object) {
6124
6124
  case 5:
6125
6125
  case "STORE_TYPE_VERIFICATIONS":
6126
6126
  return 5 /* VERIFICATIONS */;
6127
+ case 6:
6128
+ case "STORE_TYPE_USERNAME_PROOFS":
6129
+ return 6 /* USERNAME_PROOFS */;
6127
6130
  default:
6128
6131
  throw new tsProtoGlobalThis7.Error("Unrecognized enum value " + object + " for enum StoreType");
6129
6132
  }
@@ -6142,6 +6145,8 @@ function storeTypeToJSON(object) {
6142
6145
  return "STORE_TYPE_USER_DATA";
6143
6146
  case 5 /* VERIFICATIONS */:
6144
6147
  return "STORE_TYPE_VERIFICATIONS";
6148
+ case 6 /* USERNAME_PROOFS */:
6149
+ return "STORE_TYPE_USERNAME_PROOFS";
6145
6150
  default:
6146
6151
  throw new tsProtoGlobalThis7.Error("Unrecognized enum value " + object + " for enum StoreType");
6147
6152
  }
package/dist/index.mjs CHANGED
@@ -6055,6 +6055,9 @@ function storeTypeFromJSON(object) {
6055
6055
  case 5:
6056
6056
  case "STORE_TYPE_VERIFICATIONS":
6057
6057
  return 5 /* VERIFICATIONS */;
6058
+ case 6:
6059
+ case "STORE_TYPE_USERNAME_PROOFS":
6060
+ return 6 /* USERNAME_PROOFS */;
6058
6061
  default:
6059
6062
  throw new tsProtoGlobalThis7.Error("Unrecognized enum value " + object + " for enum StoreType");
6060
6063
  }
@@ -6073,6 +6076,8 @@ function storeTypeToJSON(object) {
6073
6076
  return "STORE_TYPE_USER_DATA";
6074
6077
  case 5 /* VERIFICATIONS */:
6075
6078
  return "STORE_TYPE_VERIFICATIONS";
6079
+ case 6 /* USERNAME_PROOFS */:
6080
+ return "STORE_TYPE_USERNAME_PROOFS";
6076
6081
  default:
6077
6082
  throw new tsProtoGlobalThis7.Error("Unrecognized enum value " + object + " for enum StoreType");
6078
6083
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@farcaster/hub-web",
3
- "version": "0.6.2",
3
+ "version": "0.6.3",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.mjs",
6
6
  "types": "./dist/index.d.ts",
@@ -19,17 +19,17 @@
19
19
  "build": "tsup --config tsup.config.ts",
20
20
  "clean": "rimraf ./dist",
21
21
  "protoc": "protoc --plugin=./node_modules/.bin/protoc-gen-ts_proto --ts_proto_out=./src/generated/ --ts_proto_opt=esModuleInterop=true,exportCommonSymbols=false,outputClientImpl=grpc-web,useOptionals=none,unrecognizedEnum=false,removeEnumPrefix=true,lowerCaseServiceMethods=true --proto_path=../../protobufs//schemas ../../protobufs/schemas/rpc.proto",
22
- "lint": "rome format src/ examples/ --write && rome check src/ examples/ --apply",
23
- "lint:ci": "rome ci src/ examples/",
22
+ "lint": "biome format src/ examples/ --write && biome check src/ examples/ --apply",
23
+ "lint:ci": "biome ci src/ examples/",
24
24
  "prepublishOnly": "yarn run build"
25
25
  },
26
26
  "devDependencies": {
27
+ "biome-config-custom": "*",
27
28
  "eslint-config-custom": "*",
28
- "rome-config-custom": "*",
29
29
  "ts-proto": "^1.146.0"
30
30
  },
31
31
  "dependencies": {
32
- "@farcaster/core": "^0.12.5",
32
+ "@farcaster/core": "^0.12.6",
33
33
  "@improbable-eng/grpc-web": "^0.15.0",
34
34
  "rxjs": "^7.8.0"
35
35
  }