Skip to content

Commit 51ce749

Browse files
committed
Add EDIT_BID to TraitBidRequestType.
1 parent fbecfab commit 51ce749

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@tensor-hq/tensor-common",
3-
"version": "8.2.1",
3+
"version": "8.3.1",
44
"description": "Common utility methods used by Tensor.",
55
"sideEffects": false,
66
"module": "./dist/esm/index.js",

src/tensor/lambdas/trait_bid_cosigner_serde.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -561,6 +561,7 @@ export enum TraitBidRequestType {
561561
TakeT22 = 'TAKE_T22',
562562
TakeWns = 'TAKE_WNS',
563563
PlaceBid = 'PLACE_BID',
564+
EditBid = 'EDIT_BID',
564565
}
565566

566567
export type TraitBidsRequest =
@@ -576,6 +577,6 @@ export type TraitBidsRequest =
576577
args: TakeNonCompressedArgsSerialized;
577578
}
578579
| {
579-
type: TraitBidRequestType.PlaceBid;
580+
type: TraitBidRequestType.PlaceBid | TraitBidRequestType.EditBid;
580581
args: PlaceBidArgsSerialized;
581582
};

0 commit comments

Comments
 (0)