@uniswap/client-data-api 0.0.238 → 0.0.239

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.
@@ -853,6 +853,13 @@ export declare class GetTokenMultiChainRequest extends Message<GetTokenMultiChai
853
853
  * @generated from field: optional uint32 canonical_chain_id = 3;
854
854
  */
855
855
  canonicalChainId?: number;
856
+ /**
857
+ * External-consumer request: internally-sourced fields are omitted and SVM
858
+ * group members are not served (see GetTokenRequest.external).
859
+ *
860
+ * @generated from field: bool external = 4;
861
+ */
862
+ external: boolean;
856
863
  constructor(data?: PartialMessage<GetTokenMultiChainRequest>);
857
864
  static readonly runtime: typeof proto3;
858
865
  static readonly typeName = "data.v2.GetTokenMultiChainRequest";
@@ -906,6 +913,13 @@ export declare class GetTokensMultiChainRequest extends Message<GetTokensMultiCh
906
913
  * @generated from field: optional uint32 canonical_chain_id = 3;
907
914
  */
908
915
  canonicalChainId?: number;
916
+ /**
917
+ * External-consumer request: internally-sourced fields are omitted and SVM
918
+ * group members are not served (see GetTokenRequest.external).
919
+ *
920
+ * @generated from field: bool external = 4;
921
+ */
922
+ external: boolean;
909
923
  constructor(data?: PartialMessage<GetTokensMultiChainRequest>);
910
924
  static readonly runtime: typeof proto3;
911
925
  static readonly typeName = "data.v2.GetTokensMultiChainRequest";
@@ -1010,6 +1010,13 @@ export class GetTokenMultiChainRequest extends Message {
1010
1010
  * @generated from oneof data.v2.GetTokenMultiChainRequest.identifier
1011
1011
  */
1012
1012
  this.identifier = { case: undefined };
1013
+ /**
1014
+ * External-consumer request: internally-sourced fields are omitted and SVM
1015
+ * group members are not served (see GetTokenRequest.external).
1016
+ *
1017
+ * @generated from field: bool external = 4;
1018
+ */
1019
+ this.external = false;
1013
1020
  proto3.util.initPartial(data, this);
1014
1021
  }
1015
1022
  static fromBinary(bytes, options) {
@@ -1031,6 +1038,7 @@ GetTokenMultiChainRequest.fields = proto3.util.newFieldList(() => [
1031
1038
  { no: 1, name: "multichain_id", kind: "scalar", T: 9 /* ScalarType.STRING */, oneof: "identifier" },
1032
1039
  { no: 2, name: "token", kind: "message", T: TokenIdentifier, oneof: "identifier" },
1033
1040
  { no: 3, name: "canonical_chain_id", kind: "scalar", T: 13 /* ScalarType.UINT32 */, opt: true },
1041
+ { no: 4, name: "external", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
1034
1042
  ]);
1035
1043
  /**
1036
1044
  * @generated from message data.v2.GetTokenMultiChainResponse
@@ -1068,6 +1076,13 @@ export class GetTokensMultiChainRequest extends Message {
1068
1076
  * @generated from oneof data.v2.GetTokensMultiChainRequest.identifier
1069
1077
  */
1070
1078
  this.identifier = { case: undefined };
1079
+ /**
1080
+ * External-consumer request: internally-sourced fields are omitted and SVM
1081
+ * group members are not served (see GetTokenRequest.external).
1082
+ *
1083
+ * @generated from field: bool external = 4;
1084
+ */
1085
+ this.external = false;
1071
1086
  proto3.util.initPartial(data, this);
1072
1087
  }
1073
1088
  static fromBinary(bytes, options) {
@@ -1089,6 +1104,7 @@ GetTokensMultiChainRequest.fields = proto3.util.newFieldList(() => [
1089
1104
  { no: 1, name: "multichain_ids", kind: "message", T: MultichainIdList, oneof: "identifier" },
1090
1105
  { no: 2, name: "tokens", kind: "message", T: TokenIdentifierList, oneof: "identifier" },
1091
1106
  { no: 3, name: "canonical_chain_id", kind: "scalar", T: 13 /* ScalarType.UINT32 */, opt: true },
1107
+ { no: 4, name: "external", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
1092
1108
  ]);
1093
1109
  /**
1094
1110
  * @generated from message data.v2.MultichainIdList
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniswap/client-data-api",
3
- "version": "0.0.238",
3
+ "version": "0.0.239",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },