@@ -264,7 +264,7 @@ def assets(
264
264
label_honeypot_mark_gte : Optional [float ] = None ,
265
265
label_honeypot_mark_lte : Optional [float ] = None ,
266
266
issue_type : Optional [Literal ["QUESTION" , "ISSUE" ]] = None ,
267
- issue_status : Optional [Literal ["OPEN" , "SOLVED" ]] = None ,
267
+ issue_status : Optional [Literal ["CANCELLED" , " OPEN" , "SOLVED" ]] = None ,
268
268
external_id_strictly_in : Optional [List [str ]] = None ,
269
269
external_id_in : Optional [List [str ]] = None ,
270
270
label_output_format : Literal ["dict" , "parsed_label" ] = "dict" ,
@@ -330,7 +330,7 @@ def assets(
330
330
label_honeypot_mark_gte: Returned assets should have a label whose honeypot is greater or equal to this number.
331
331
label_honeypot_mark_lte: Returned assets should have a label whose honeypot is lower or equal to this number.
332
332
issue_type: Returned assets should have issues of type `QUESTION` or `ISSUE`.
333
- issue_status: Returned assets should have issues of status `OPEN` or `SOLVED`.
333
+ issue_status: Returned assets should have issues of status `CANCELLED`, ` OPEN` or `SOLVED`.
334
334
external_id_strictly_in: Returned assets should have external ids that match exactly the ones in the list.
335
335
external_id_in: Returned assets should have external ids that partially match the ones in the list.
336
336
For example, with `external_id_in=['abc']`, any asset with an external id containing `'abc'` will be returned.
0 commit comments