File tree 1 file changed +15
-0
lines changed
1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -435,6 +435,9 @@ def get_annotations(
435
435
specification = None ,
436
436
from_date = None ,
437
437
to_date = None ,
438
+ last_updated_from = None ,
439
+ last_updated_to = None ,
440
+ state = None ,
438
441
endpoint = None ,
439
442
rec_limit = None ,
440
443
company_id = None ,
@@ -453,6 +456,9 @@ def get_annotations(
453
456
specification = specification ,
454
457
from_date = from_date ,
455
458
to_date = to_date ,
459
+ last_updated_from = last_updated_from ,
460
+ last_updated_to = last_updated_to ,
461
+ state = state ,
456
462
endpoint = endpoint ,
457
463
company_id = company_id ,
458
464
):
@@ -467,6 +473,9 @@ def _get_annotations(
467
473
specification = None ,
468
474
from_date = None ,
469
475
to_date = None ,
476
+ last_updated_from = None ,
477
+ last_updated_to = None ,
478
+ state = None ,
470
479
endpoint = None ,
471
480
company_id = None ,
472
481
offset = 0 ,
@@ -485,6 +494,12 @@ def _get_annotations(
485
494
filters .append ("fromDate=" + from_date )
486
495
if to_date is not None :
487
496
filters .append ("toDate=" + to_date )
497
+ if last_updated_from is not None :
498
+ filters .append ("lastUpdatedFrom=" + last_updated_from )
499
+ if last_updated_to is not None :
500
+ filters .append ("lastUpdatedTo=" + last_updated_to )
501
+ if state is not None :
502
+ filters .append ("state=" + state )
488
503
if company_id is not None :
489
504
filters .append ("companyId=" + company_id )
490
505
You can’t perform that action at this time.
0 commit comments