@@ -864,6 +864,8 @@ export type Transfer = Node & {
864864 completedAtTxHash : Maybe < Scalars [ 'String' ] [ 'output' ] > ;
865865 destNetwork : NetworkEnum ;
866866 destination : Scalars [ 'String' ] [ 'output' ] ;
867+ ethBridgeBuiltInMsgHash : Maybe < Scalars [ 'String' ] [ 'output' ] > ;
868+ ethBridgeBuiltInQueueId : Maybe < Scalars [ 'BigInt' ] [ 'output' ] > ;
867869 id : Scalars [ 'String' ] [ 'output' ] ;
868870 /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */
869871 nodeId : Scalars [ 'ID' ] [ 'output' ] ;
@@ -900,6 +902,10 @@ export type TransferCondition = {
900902 destNetwork : InputMaybe < NetworkEnum > ;
901903 /** Checks for equality with the object’s `destination` field. */
902904 destination : InputMaybe < Scalars [ 'String' ] [ 'input' ] > ;
905+ /** Checks for equality with the object’s `ethBridgeBuiltInMsgHash` field. */
906+ ethBridgeBuiltInMsgHash : InputMaybe < Scalars [ 'String' ] [ 'input' ] > ;
907+ /** Checks for equality with the object’s `ethBridgeBuiltInQueueId` field. */
908+ ethBridgeBuiltInQueueId : InputMaybe < Scalars [ 'BigInt' ] [ 'input' ] > ;
903909 /** Checks for equality with the object’s `id` field. */
904910 id : InputMaybe < Scalars [ 'String' ] [ 'input' ] > ;
905911 /** Checks for equality with the object’s `nonce` field. */
@@ -942,6 +948,10 @@ export type TransferFilter = {
942948 destNetwork : InputMaybe < NetworkEnumFilter > ;
943949 /** Filter by the object’s `destination` field. */
944950 destination : InputMaybe < StringFilter > ;
951+ /** Filter by the object’s `ethBridgeBuiltInMsgHash` field. */
952+ ethBridgeBuiltInMsgHash : InputMaybe < StringFilter > ;
953+ /** Filter by the object’s `ethBridgeBuiltInQueueId` field. */
954+ ethBridgeBuiltInQueueId : InputMaybe < BigIntFilter > ;
945955 /** Filter by the object’s `id` field. */
946956 id : InputMaybe < StringFilter > ;
947957 /** Filter by the object’s `nonce` field. */
@@ -1008,6 +1018,10 @@ export enum TransfersOrderBy {
10081018 DestinationDesc = 'DESTINATION_DESC' ,
10091019 DestNetworkAsc = 'DEST_NETWORK_ASC' ,
10101020 DestNetworkDesc = 'DEST_NETWORK_DESC' ,
1021+ EthBridgeBuiltInMsgHashAsc = 'ETH_BRIDGE_BUILT_IN_MSG_HASH_ASC' ,
1022+ EthBridgeBuiltInMsgHashDesc = 'ETH_BRIDGE_BUILT_IN_MSG_HASH_DESC' ,
1023+ EthBridgeBuiltInQueueIdAsc = 'ETH_BRIDGE_BUILT_IN_QUEUE_ID_ASC' ,
1024+ EthBridgeBuiltInQueueIdDesc = 'ETH_BRIDGE_BUILT_IN_QUEUE_ID_DESC' ,
10111025 IdAsc = 'ID_ASC' ,
10121026 IdDesc = 'ID_DESC' ,
10131027 Natural = 'NATURAL' ,
0 commit comments