@uniswap/client-data-api 0.0.76 → 0.0.77

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.
@@ -427,6 +427,10 @@ export declare class SubmitReportRequest extends Message<SubmitReportRequest> {
427
427
  * @generated from field: string details = 4;
428
428
  */
429
429
  details: string;
430
+ /**
431
+ * @generated from field: optional bool multichain = 5;
432
+ */
433
+ multichain?: boolean;
430
434
  constructor(data?: PartialMessage<SubmitReportRequest>);
431
435
  static readonly runtime: typeof proto3;
432
436
  static readonly typeName = "data.v1.SubmitReportRequest";
@@ -481,6 +485,10 @@ export declare class SubmitDataReportRequest extends Message<SubmitDataReportReq
481
485
  * @generated from field: optional string token_address = 6;
482
486
  */
483
487
  tokenAddress?: string;
488
+ /**
489
+ * @generated from field: optional bool multichain = 7;
490
+ */
491
+ multichain?: boolean;
484
492
  constructor(data?: PartialMessage<SubmitDataReportRequest>);
485
493
  static readonly runtime: typeof proto3;
486
494
  static readonly typeName = "data.v1.SubmitDataReportRequest";
@@ -642,6 +642,7 @@ SubmitReportRequest.fields = proto3.util.newFieldList(() => [
642
642
  { no: 2, name: "address", kind: "scalar", T: 9 /* ScalarType.STRING */ },
643
643
  { no: 3, name: "event", kind: "enum", T: proto3.getEnumType(TokenReportEventType) },
644
644
  { no: 4, name: "details", kind: "scalar", T: 9 /* ScalarType.STRING */ },
645
+ { no: 5, name: "multichain", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
645
646
  ]);
646
647
  /**
647
648
  * @generated from message data.v1.SubmitReportResponse
@@ -715,6 +716,7 @@ SubmitDataReportRequest.fields = proto3.util.newFieldList(() => [
715
716
  { no: 4, name: "wallet_address", kind: "scalar", T: 9 /* ScalarType.STRING */ },
716
717
  { no: 5, name: "chain_id", kind: "scalar", T: 13 /* ScalarType.UINT32 */, opt: true },
717
718
  { no: 6, name: "token_address", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
719
+ { no: 7, name: "multichain", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
718
720
  ]);
719
721
  /**
720
722
  * @generated from message data.v1.SubmitDataReportResponse
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniswap/client-data-api",
3
- "version": "0.0.76",
3
+ "version": "0.0.77",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },