File tree 2 files changed +14
-1
lines changed
2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @opensea/stream-js" ,
3
- "version" : " 0.0.21-rc.0 " ,
3
+ "version" : " 0.0.21-rc.1 " ,
4
4
"description" : " An SDK to receive pushed updates from OpenSea over websocket" ,
5
5
"license" : " MIT" ,
6
6
"author" : " OpenSea Developers" ,
Original file line number Diff line number Diff line change @@ -103,6 +103,7 @@ export interface ItemListedEventPayload extends Payload {
103
103
base_price : string ;
104
104
payment_token : PaymentToken ;
105
105
is_private : boolean ;
106
+ order_hash : string ;
106
107
event_timestamp : string ;
107
108
}
108
109
@@ -120,6 +121,7 @@ export interface ItemSoldEventPayload extends Payload {
120
121
transaction : Transaction ;
121
122
maker : Account ;
122
123
taker : Account ;
124
+ order_hash : string ;
123
125
sale_price : string ;
124
126
payment_token : PaymentToken ;
125
127
is_private : boolean ;
@@ -145,6 +147,7 @@ export interface ItemReceivedBidEventPayload extends Payload {
145
147
expiration_date : string ;
146
148
maker : Account ;
147
149
taker : Account ;
150
+ order_hash : string ;
148
151
base_price : string ;
149
152
payment_token : PaymentToken ;
150
153
event_timestamp : string ;
@@ -159,6 +162,7 @@ export interface ItemReceivedOfferEventPayload extends Payload {
159
162
expiration_date : string ;
160
163
maker : Account ;
161
164
taker : Account ;
165
+ order_hash : string ;
162
166
base_price : string ;
163
167
payment_token : PaymentToken ;
164
168
event_timestamp : string ;
@@ -169,9 +173,16 @@ export type ItemReceivedOfferEvent =
169
173
170
174
export interface ItemCancelledEventPayload extends Payload {
171
175
quantity : number ;
176
+ base_price : string ;
177
+ expiration_date : string ;
178
+ maker : Account ;
179
+ taker : Account ;
172
180
listing_type : string ;
181
+ listing_date : string ;
173
182
transaction : Transaction ;
174
183
payment_token : PaymentToken ;
184
+ order_hash : string ;
185
+ is_private : boolean ;
175
186
event_timestamp : string ;
176
187
}
177
188
@@ -182,6 +193,7 @@ export interface CollectionOfferEventPayload extends Payload {
182
193
created_date : string ;
183
194
expiration_date : string ;
184
195
maker : Account ;
196
+ taker : Account ;
185
197
base_price : string ;
186
198
order_hash : string ;
187
199
payment_token : PaymentToken ;
@@ -198,6 +210,7 @@ export interface TraitOfferEventPayload extends Payload {
198
210
created_date : string ;
199
211
expiration_date : string ;
200
212
maker : Account ;
213
+ taker : Account ;
201
214
base_price : string ;
202
215
order_hash : string ;
203
216
payment_token : PaymentToken ;
You can’t perform that action at this time.
0 commit comments