waldur-api-client 8.0.7.dev136__py3-none-any.whl → 8.0.7.dev138__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (36) hide show
  1. waldur_api_client/api/booking_resources/booking_resources_count.py +15 -0
  2. waldur_api_client/api/booking_resources/booking_resources_list.py +21 -0
  3. waldur_api_client/api/chat_threads/chat_threads_list.py +126 -0
  4. waldur_api_client/api/marketplace_provider_resources/marketplace_provider_resources_count.py +15 -0
  5. waldur_api_client/api/marketplace_provider_resources/marketplace_provider_resources_history_list.py +21 -0
  6. waldur_api_client/api/marketplace_provider_resources/marketplace_provider_resources_list.py +21 -0
  7. waldur_api_client/api/marketplace_resources/marketplace_resources_count.py +15 -0
  8. waldur_api_client/api/marketplace_resources/marketplace_resources_history_list.py +21 -0
  9. waldur_api_client/api/marketplace_resources/marketplace_resources_list.py +21 -0
  10. waldur_api_client/api/support_comments/support_comments_count.py +10 -10
  11. waldur_api_client/api/support_comments/support_comments_list.py +14 -14
  12. waldur_api_client/api-map.md +9 -9
  13. waldur_api_client/llms-full.txt +24 -10
  14. waldur_api_client/llms.txt +1 -1
  15. waldur_api_client/models/__init__.py +2 -0
  16. waldur_api_client/models/comment_o_enum.py +11 -0
  17. waldur_api_client/models/constance_settings.py +15 -0
  18. waldur_api_client/models/constance_settings_request.py +15 -0
  19. waldur_api_client/models/constance_settings_request_form.py +15 -0
  20. waldur_api_client/models/constance_settings_request_multipart.py +23 -0
  21. waldur_api_client/models/message.py +28 -0
  22. waldur_api_client/models/patched_user_request.py +9 -0
  23. waldur_api_client/models/patched_user_request_form.py +9 -0
  24. waldur_api_client/models/patched_user_request_multipart.py +12 -0
  25. waldur_api_client/models/thread_session.py +101 -1
  26. waldur_api_client/models/thread_session_field_enum.py +5 -0
  27. waldur_api_client/models/thread_session_o_enum.py +7 -1
  28. waldur_api_client/models/user.py +9 -0
  29. waldur_api_client/models/user_field_enum.py +1 -0
  30. waldur_api_client/models/user_request.py +9 -0
  31. waldur_api_client/models/user_request_form.py +9 -0
  32. waldur_api_client/models/user_request_multipart.py +12 -0
  33. {waldur_api_client-8.0.7.dev136.dist-info → waldur_api_client-8.0.7.dev138.dist-info}/METADATA +1 -1
  34. {waldur_api_client-8.0.7.dev136.dist-info → waldur_api_client-8.0.7.dev138.dist-info}/RECORD +36 -35
  35. {waldur_api_client-8.0.7.dev136.dist-info → waldur_api_client-8.0.7.dev138.dist-info}/WHEEL +0 -0
  36. {waldur_api_client-8.0.7.dev136.dist-info → waldur_api_client-8.0.7.dev138.dist-info}/licenses/LICENSE +0 -0
@@ -52,6 +52,7 @@ def _get_kwargs(
52
52
  project_uuid: Union[Unset, UUID] = UNSET,
53
53
  provider_uuid: Union[Unset, UUID] = UNSET,
54
54
  query: Union[Unset, str] = UNSET,
55
+ resource_attributes: Union[Unset, str] = UNSET,
55
56
  restrict_member_access: Union[Unset, bool] = UNSET,
56
57
  runtime_state: Union[Unset, str] = UNSET,
57
58
  service_manager_uuid: Union[Unset, UUID] = UNSET,
@@ -194,6 +195,8 @@ def _get_kwargs(
194
195
 
195
196
  params["query"] = query
196
197
 
198
+ params["resource_attributes"] = resource_attributes
199
+
197
200
  params["restrict_member_access"] = restrict_member_access
198
201
 
199
202
  params["runtime_state"] = runtime_state
@@ -295,6 +298,7 @@ def sync_detailed(
295
298
  project_uuid: Union[Unset, UUID] = UNSET,
296
299
  provider_uuid: Union[Unset, UUID] = UNSET,
297
300
  query: Union[Unset, str] = UNSET,
301
+ resource_attributes: Union[Unset, str] = UNSET,
298
302
  restrict_member_access: Union[Unset, bool] = UNSET,
299
303
  runtime_state: Union[Unset, str] = UNSET,
300
304
  service_manager_uuid: Union[Unset, UUID] = UNSET,
@@ -343,6 +347,7 @@ def sync_detailed(
343
347
  project_uuid (Union[Unset, UUID]):
344
348
  provider_uuid (Union[Unset, UUID]):
345
349
  query (Union[Unset, str]):
350
+ resource_attributes (Union[Unset, str]):
346
351
  restrict_member_access (Union[Unset, bool]):
347
352
  runtime_state (Union[Unset, str]):
348
353
  service_manager_uuid (Union[Unset, UUID]):
@@ -397,6 +402,7 @@ def sync_detailed(
397
402
  project_uuid=project_uuid,
398
403
  provider_uuid=provider_uuid,
399
404
  query=query,
405
+ resource_attributes=resource_attributes,
400
406
  restrict_member_access=restrict_member_access,
401
407
  runtime_state=runtime_state,
402
408
  service_manager_uuid=service_manager_uuid,
@@ -453,6 +459,7 @@ def sync(
453
459
  project_uuid: Union[Unset, UUID] = UNSET,
454
460
  provider_uuid: Union[Unset, UUID] = UNSET,
455
461
  query: Union[Unset, str] = UNSET,
462
+ resource_attributes: Union[Unset, str] = UNSET,
456
463
  restrict_member_access: Union[Unset, bool] = UNSET,
457
464
  runtime_state: Union[Unset, str] = UNSET,
458
465
  service_manager_uuid: Union[Unset, UUID] = UNSET,
@@ -501,6 +508,7 @@ def sync(
501
508
  project_uuid (Union[Unset, UUID]):
502
509
  provider_uuid (Union[Unset, UUID]):
503
510
  query (Union[Unset, str]):
511
+ resource_attributes (Union[Unset, str]):
504
512
  restrict_member_access (Union[Unset, bool]):
505
513
  runtime_state (Union[Unset, str]):
506
514
  service_manager_uuid (Union[Unset, UUID]):
@@ -556,6 +564,7 @@ def sync(
556
564
  project_uuid=project_uuid,
557
565
  provider_uuid=provider_uuid,
558
566
  query=query,
567
+ resource_attributes=resource_attributes,
559
568
  restrict_member_access=restrict_member_access,
560
569
  runtime_state=runtime_state,
561
570
  service_manager_uuid=service_manager_uuid,
@@ -606,6 +615,7 @@ async def asyncio_detailed(
606
615
  project_uuid: Union[Unset, UUID] = UNSET,
607
616
  provider_uuid: Union[Unset, UUID] = UNSET,
608
617
  query: Union[Unset, str] = UNSET,
618
+ resource_attributes: Union[Unset, str] = UNSET,
609
619
  restrict_member_access: Union[Unset, bool] = UNSET,
610
620
  runtime_state: Union[Unset, str] = UNSET,
611
621
  service_manager_uuid: Union[Unset, UUID] = UNSET,
@@ -654,6 +664,7 @@ async def asyncio_detailed(
654
664
  project_uuid (Union[Unset, UUID]):
655
665
  provider_uuid (Union[Unset, UUID]):
656
666
  query (Union[Unset, str]):
667
+ resource_attributes (Union[Unset, str]):
657
668
  restrict_member_access (Union[Unset, bool]):
658
669
  runtime_state (Union[Unset, str]):
659
670
  service_manager_uuid (Union[Unset, UUID]):
@@ -708,6 +719,7 @@ async def asyncio_detailed(
708
719
  project_uuid=project_uuid,
709
720
  provider_uuid=provider_uuid,
710
721
  query=query,
722
+ resource_attributes=resource_attributes,
711
723
  restrict_member_access=restrict_member_access,
712
724
  runtime_state=runtime_state,
713
725
  service_manager_uuid=service_manager_uuid,
@@ -762,6 +774,7 @@ async def asyncio(
762
774
  project_uuid: Union[Unset, UUID] = UNSET,
763
775
  provider_uuid: Union[Unset, UUID] = UNSET,
764
776
  query: Union[Unset, str] = UNSET,
777
+ resource_attributes: Union[Unset, str] = UNSET,
765
778
  restrict_member_access: Union[Unset, bool] = UNSET,
766
779
  runtime_state: Union[Unset, str] = UNSET,
767
780
  service_manager_uuid: Union[Unset, UUID] = UNSET,
@@ -810,6 +823,7 @@ async def asyncio(
810
823
  project_uuid (Union[Unset, UUID]):
811
824
  provider_uuid (Union[Unset, UUID]):
812
825
  query (Union[Unset, str]):
826
+ resource_attributes (Union[Unset, str]):
813
827
  restrict_member_access (Union[Unset, bool]):
814
828
  runtime_state (Union[Unset, str]):
815
829
  service_manager_uuid (Union[Unset, UUID]):
@@ -866,6 +880,7 @@ async def asyncio(
866
880
  project_uuid=project_uuid,
867
881
  provider_uuid=provider_uuid,
868
882
  query=query,
883
+ resource_attributes=resource_attributes,
869
884
  restrict_member_access=restrict_member_access,
870
885
  runtime_state=runtime_state,
871
886
  service_manager_uuid=service_manager_uuid,
@@ -56,6 +56,7 @@ def _get_kwargs(
56
56
  project_uuid: Union[Unset, UUID] = UNSET,
57
57
  provider_uuid: Union[Unset, UUID] = UNSET,
58
58
  query: Union[Unset, str] = UNSET,
59
+ resource_attributes: Union[Unset, str] = UNSET,
59
60
  restrict_member_access: Union[Unset, bool] = UNSET,
60
61
  runtime_state: Union[Unset, str] = UNSET,
61
62
  service_manager_uuid: Union[Unset, UUID] = UNSET,
@@ -207,6 +208,8 @@ def _get_kwargs(
207
208
 
208
209
  params["query"] = query
209
210
 
211
+ params["resource_attributes"] = resource_attributes
212
+
210
213
  params["restrict_member_access"] = restrict_member_access
211
214
 
212
215
  params["runtime_state"] = runtime_state
@@ -309,6 +312,7 @@ def sync_detailed(
309
312
  project_uuid: Union[Unset, UUID] = UNSET,
310
313
  provider_uuid: Union[Unset, UUID] = UNSET,
311
314
  query: Union[Unset, str] = UNSET,
315
+ resource_attributes: Union[Unset, str] = UNSET,
312
316
  restrict_member_access: Union[Unset, bool] = UNSET,
313
317
  runtime_state: Union[Unset, str] = UNSET,
314
318
  service_manager_uuid: Union[Unset, UUID] = UNSET,
@@ -357,6 +361,7 @@ def sync_detailed(
357
361
  project_uuid (Union[Unset, UUID]):
358
362
  provider_uuid (Union[Unset, UUID]):
359
363
  query (Union[Unset, str]):
364
+ resource_attributes (Union[Unset, str]):
360
365
  restrict_member_access (Union[Unset, bool]):
361
366
  runtime_state (Union[Unset, str]):
362
367
  service_manager_uuid (Union[Unset, UUID]):
@@ -412,6 +417,7 @@ def sync_detailed(
412
417
  project_uuid=project_uuid,
413
418
  provider_uuid=provider_uuid,
414
419
  query=query,
420
+ resource_attributes=resource_attributes,
415
421
  restrict_member_access=restrict_member_access,
416
422
  runtime_state=runtime_state,
417
423
  service_manager_uuid=service_manager_uuid,
@@ -469,6 +475,7 @@ def sync(
469
475
  project_uuid: Union[Unset, UUID] = UNSET,
470
476
  provider_uuid: Union[Unset, UUID] = UNSET,
471
477
  query: Union[Unset, str] = UNSET,
478
+ resource_attributes: Union[Unset, str] = UNSET,
472
479
  restrict_member_access: Union[Unset, bool] = UNSET,
473
480
  runtime_state: Union[Unset, str] = UNSET,
474
481
  service_manager_uuid: Union[Unset, UUID] = UNSET,
@@ -517,6 +524,7 @@ def sync(
517
524
  project_uuid (Union[Unset, UUID]):
518
525
  provider_uuid (Union[Unset, UUID]):
519
526
  query (Union[Unset, str]):
527
+ resource_attributes (Union[Unset, str]):
520
528
  restrict_member_access (Union[Unset, bool]):
521
529
  runtime_state (Union[Unset, str]):
522
530
  service_manager_uuid (Union[Unset, UUID]):
@@ -573,6 +581,7 @@ def sync(
573
581
  project_uuid=project_uuid,
574
582
  provider_uuid=provider_uuid,
575
583
  query=query,
584
+ resource_attributes=resource_attributes,
576
585
  restrict_member_access=restrict_member_access,
577
586
  runtime_state=runtime_state,
578
587
  service_manager_uuid=service_manager_uuid,
@@ -624,6 +633,7 @@ async def asyncio_detailed(
624
633
  project_uuid: Union[Unset, UUID] = UNSET,
625
634
  provider_uuid: Union[Unset, UUID] = UNSET,
626
635
  query: Union[Unset, str] = UNSET,
636
+ resource_attributes: Union[Unset, str] = UNSET,
627
637
  restrict_member_access: Union[Unset, bool] = UNSET,
628
638
  runtime_state: Union[Unset, str] = UNSET,
629
639
  service_manager_uuid: Union[Unset, UUID] = UNSET,
@@ -672,6 +682,7 @@ async def asyncio_detailed(
672
682
  project_uuid (Union[Unset, UUID]):
673
683
  provider_uuid (Union[Unset, UUID]):
674
684
  query (Union[Unset, str]):
685
+ resource_attributes (Union[Unset, str]):
675
686
  restrict_member_access (Union[Unset, bool]):
676
687
  runtime_state (Union[Unset, str]):
677
688
  service_manager_uuid (Union[Unset, UUID]):
@@ -727,6 +738,7 @@ async def asyncio_detailed(
727
738
  project_uuid=project_uuid,
728
739
  provider_uuid=provider_uuid,
729
740
  query=query,
741
+ resource_attributes=resource_attributes,
730
742
  restrict_member_access=restrict_member_access,
731
743
  runtime_state=runtime_state,
732
744
  service_manager_uuid=service_manager_uuid,
@@ -782,6 +794,7 @@ async def asyncio(
782
794
  project_uuid: Union[Unset, UUID] = UNSET,
783
795
  provider_uuid: Union[Unset, UUID] = UNSET,
784
796
  query: Union[Unset, str] = UNSET,
797
+ resource_attributes: Union[Unset, str] = UNSET,
785
798
  restrict_member_access: Union[Unset, bool] = UNSET,
786
799
  runtime_state: Union[Unset, str] = UNSET,
787
800
  service_manager_uuid: Union[Unset, UUID] = UNSET,
@@ -830,6 +843,7 @@ async def asyncio(
830
843
  project_uuid (Union[Unset, UUID]):
831
844
  provider_uuid (Union[Unset, UUID]):
832
845
  query (Union[Unset, str]):
846
+ resource_attributes (Union[Unset, str]):
833
847
  restrict_member_access (Union[Unset, bool]):
834
848
  runtime_state (Union[Unset, str]):
835
849
  service_manager_uuid (Union[Unset, UUID]):
@@ -887,6 +901,7 @@ async def asyncio(
887
901
  project_uuid=project_uuid,
888
902
  provider_uuid=provider_uuid,
889
903
  query=query,
904
+ resource_attributes=resource_attributes,
890
905
  restrict_member_access=restrict_member_access,
891
906
  runtime_state=runtime_state,
892
907
  service_manager_uuid=service_manager_uuid,
@@ -937,6 +952,7 @@ def sync_all(
937
952
  project_uuid: Union[Unset, UUID] = UNSET,
938
953
  provider_uuid: Union[Unset, UUID] = UNSET,
939
954
  query: Union[Unset, str] = UNSET,
955
+ resource_attributes: Union[Unset, str] = UNSET,
940
956
  restrict_member_access: Union[Unset, bool] = UNSET,
941
957
  runtime_state: Union[Unset, str] = UNSET,
942
958
  service_manager_uuid: Union[Unset, UUID] = UNSET,
@@ -989,6 +1005,7 @@ def sync_all(
989
1005
  project_uuid (Union[Unset, UUID]):
990
1006
  provider_uuid (Union[Unset, UUID]):
991
1007
  query (Union[Unset, str]):
1008
+ resource_attributes (Union[Unset, str]):
992
1009
  restrict_member_access (Union[Unset, bool]):
993
1010
  runtime_state (Union[Unset, str]):
994
1011
  service_manager_uuid (Union[Unset, UUID]):
@@ -1046,6 +1063,7 @@ def sync_all(
1046
1063
  project_uuid=project_uuid,
1047
1064
  provider_uuid=provider_uuid,
1048
1065
  query=query,
1066
+ resource_attributes=resource_attributes,
1049
1067
  restrict_member_access=restrict_member_access,
1050
1068
  runtime_state=runtime_state,
1051
1069
  service_manager_uuid=service_manager_uuid,
@@ -1136,6 +1154,7 @@ async def asyncio_all(
1136
1154
  project_uuid: Union[Unset, UUID] = UNSET,
1137
1155
  provider_uuid: Union[Unset, UUID] = UNSET,
1138
1156
  query: Union[Unset, str] = UNSET,
1157
+ resource_attributes: Union[Unset, str] = UNSET,
1139
1158
  restrict_member_access: Union[Unset, bool] = UNSET,
1140
1159
  runtime_state: Union[Unset, str] = UNSET,
1141
1160
  service_manager_uuid: Union[Unset, UUID] = UNSET,
@@ -1188,6 +1207,7 @@ async def asyncio_all(
1188
1207
  project_uuid (Union[Unset, UUID]):
1189
1208
  provider_uuid (Union[Unset, UUID]):
1190
1209
  query (Union[Unset, str]):
1210
+ resource_attributes (Union[Unset, str]):
1191
1211
  restrict_member_access (Union[Unset, bool]):
1192
1212
  runtime_state (Union[Unset, str]):
1193
1213
  service_manager_uuid (Union[Unset, UUID]):
@@ -1245,6 +1265,7 @@ async def asyncio_all(
1245
1265
  project_uuid=project_uuid,
1246
1266
  provider_uuid=provider_uuid,
1247
1267
  query=query,
1268
+ resource_attributes=resource_attributes,
1248
1269
  restrict_member_access=restrict_member_access,
1249
1270
  runtime_state=runtime_state,
1250
1271
  service_manager_uuid=service_manager_uuid,
@@ -19,14 +19,20 @@ def _get_kwargs(
19
19
  *,
20
20
  created: Union[Unset, datetime.date] = UNSET,
21
21
  field: Union[Unset, list[ThreadSessionFieldEnum]] = UNSET,
22
+ input_tokens_max: Union[Unset, float] = UNSET,
23
+ input_tokens_min: Union[Unset, float] = UNSET,
22
24
  is_archived: Union[Unset, bool] = UNSET,
23
25
  is_flagged: Union[Unset, bool] = UNSET,
24
26
  max_severity: Union[Unset, InjectionSeverityEnum] = UNSET,
25
27
  modified: Union[Unset, datetime.date] = UNSET,
26
28
  o: Union[Unset, list[ThreadSessionOEnum]] = UNSET,
29
+ output_tokens_max: Union[Unset, float] = UNSET,
30
+ output_tokens_min: Union[Unset, float] = UNSET,
27
31
  page: Union[Unset, int] = UNSET,
28
32
  page_size: Union[Unset, int] = UNSET,
29
33
  query: Union[Unset, str] = UNSET,
34
+ total_tokens_max: Union[Unset, float] = UNSET,
35
+ total_tokens_min: Union[Unset, float] = UNSET,
30
36
  user: Union[Unset, UUID] = UNSET,
31
37
  ) -> dict[str, Any]:
32
38
  params: dict[str, Any] = {}
@@ -45,6 +51,10 @@ def _get_kwargs(
45
51
 
46
52
  params["field"] = json_field
47
53
 
54
+ params["input_tokens_max"] = input_tokens_max
55
+
56
+ params["input_tokens_min"] = input_tokens_min
57
+
48
58
  params["is_archived"] = is_archived
49
59
 
50
60
  params["is_flagged"] = is_flagged
@@ -69,12 +79,20 @@ def _get_kwargs(
69
79
 
70
80
  params["o"] = json_o
71
81
 
82
+ params["output_tokens_max"] = output_tokens_max
83
+
84
+ params["output_tokens_min"] = output_tokens_min
85
+
72
86
  params["page"] = page
73
87
 
74
88
  params["page_size"] = page_size
75
89
 
76
90
  params["query"] = query
77
91
 
92
+ params["total_tokens_max"] = total_tokens_max
93
+
94
+ params["total_tokens_min"] = total_tokens_min
95
+
78
96
  json_user: Union[Unset, str] = UNSET
79
97
  if not isinstance(user, Unset):
80
98
  json_user = str(user)
@@ -122,28 +140,40 @@ def sync_detailed(
122
140
  client: AuthenticatedClient,
123
141
  created: Union[Unset, datetime.date] = UNSET,
124
142
  field: Union[Unset, list[ThreadSessionFieldEnum]] = UNSET,
143
+ input_tokens_max: Union[Unset, float] = UNSET,
144
+ input_tokens_min: Union[Unset, float] = UNSET,
125
145
  is_archived: Union[Unset, bool] = UNSET,
126
146
  is_flagged: Union[Unset, bool] = UNSET,
127
147
  max_severity: Union[Unset, InjectionSeverityEnum] = UNSET,
128
148
  modified: Union[Unset, datetime.date] = UNSET,
129
149
  o: Union[Unset, list[ThreadSessionOEnum]] = UNSET,
150
+ output_tokens_max: Union[Unset, float] = UNSET,
151
+ output_tokens_min: Union[Unset, float] = UNSET,
130
152
  page: Union[Unset, int] = UNSET,
131
153
  page_size: Union[Unset, int] = UNSET,
132
154
  query: Union[Unset, str] = UNSET,
155
+ total_tokens_max: Union[Unset, float] = UNSET,
156
+ total_tokens_min: Union[Unset, float] = UNSET,
133
157
  user: Union[Unset, UUID] = UNSET,
134
158
  ) -> Response[list["ThreadSession"]]:
135
159
  """
136
160
  Args:
137
161
  created (Union[Unset, datetime.date]):
138
162
  field (Union[Unset, list[ThreadSessionFieldEnum]]):
163
+ input_tokens_max (Union[Unset, float]):
164
+ input_tokens_min (Union[Unset, float]):
139
165
  is_archived (Union[Unset, bool]):
140
166
  is_flagged (Union[Unset, bool]):
141
167
  max_severity (Union[Unset, InjectionSeverityEnum]):
142
168
  modified (Union[Unset, datetime.date]):
143
169
  o (Union[Unset, list[ThreadSessionOEnum]]):
170
+ output_tokens_max (Union[Unset, float]):
171
+ output_tokens_min (Union[Unset, float]):
144
172
  page (Union[Unset, int]):
145
173
  page_size (Union[Unset, int]):
146
174
  query (Union[Unset, str]):
175
+ total_tokens_max (Union[Unset, float]):
176
+ total_tokens_min (Union[Unset, float]):
147
177
  user (Union[Unset, UUID]):
148
178
 
149
179
  Raises:
@@ -157,14 +187,20 @@ def sync_detailed(
157
187
  kwargs = _get_kwargs(
158
188
  created=created,
159
189
  field=field,
190
+ input_tokens_max=input_tokens_max,
191
+ input_tokens_min=input_tokens_min,
160
192
  is_archived=is_archived,
161
193
  is_flagged=is_flagged,
162
194
  max_severity=max_severity,
163
195
  modified=modified,
164
196
  o=o,
197
+ output_tokens_max=output_tokens_max,
198
+ output_tokens_min=output_tokens_min,
165
199
  page=page,
166
200
  page_size=page_size,
167
201
  query=query,
202
+ total_tokens_max=total_tokens_max,
203
+ total_tokens_min=total_tokens_min,
168
204
  user=user,
169
205
  )
170
206
 
@@ -180,28 +216,40 @@ def sync(
180
216
  client: AuthenticatedClient,
181
217
  created: Union[Unset, datetime.date] = UNSET,
182
218
  field: Union[Unset, list[ThreadSessionFieldEnum]] = UNSET,
219
+ input_tokens_max: Union[Unset, float] = UNSET,
220
+ input_tokens_min: Union[Unset, float] = UNSET,
183
221
  is_archived: Union[Unset, bool] = UNSET,
184
222
  is_flagged: Union[Unset, bool] = UNSET,
185
223
  max_severity: Union[Unset, InjectionSeverityEnum] = UNSET,
186
224
  modified: Union[Unset, datetime.date] = UNSET,
187
225
  o: Union[Unset, list[ThreadSessionOEnum]] = UNSET,
226
+ output_tokens_max: Union[Unset, float] = UNSET,
227
+ output_tokens_min: Union[Unset, float] = UNSET,
188
228
  page: Union[Unset, int] = UNSET,
189
229
  page_size: Union[Unset, int] = UNSET,
190
230
  query: Union[Unset, str] = UNSET,
231
+ total_tokens_max: Union[Unset, float] = UNSET,
232
+ total_tokens_min: Union[Unset, float] = UNSET,
191
233
  user: Union[Unset, UUID] = UNSET,
192
234
  ) -> list["ThreadSession"]:
193
235
  """
194
236
  Args:
195
237
  created (Union[Unset, datetime.date]):
196
238
  field (Union[Unset, list[ThreadSessionFieldEnum]]):
239
+ input_tokens_max (Union[Unset, float]):
240
+ input_tokens_min (Union[Unset, float]):
197
241
  is_archived (Union[Unset, bool]):
198
242
  is_flagged (Union[Unset, bool]):
199
243
  max_severity (Union[Unset, InjectionSeverityEnum]):
200
244
  modified (Union[Unset, datetime.date]):
201
245
  o (Union[Unset, list[ThreadSessionOEnum]]):
246
+ output_tokens_max (Union[Unset, float]):
247
+ output_tokens_min (Union[Unset, float]):
202
248
  page (Union[Unset, int]):
203
249
  page_size (Union[Unset, int]):
204
250
  query (Union[Unset, str]):
251
+ total_tokens_max (Union[Unset, float]):
252
+ total_tokens_min (Union[Unset, float]):
205
253
  user (Union[Unset, UUID]):
206
254
 
207
255
  Raises:
@@ -216,14 +264,20 @@ def sync(
216
264
  client=client,
217
265
  created=created,
218
266
  field=field,
267
+ input_tokens_max=input_tokens_max,
268
+ input_tokens_min=input_tokens_min,
219
269
  is_archived=is_archived,
220
270
  is_flagged=is_flagged,
221
271
  max_severity=max_severity,
222
272
  modified=modified,
223
273
  o=o,
274
+ output_tokens_max=output_tokens_max,
275
+ output_tokens_min=output_tokens_min,
224
276
  page=page,
225
277
  page_size=page_size,
226
278
  query=query,
279
+ total_tokens_max=total_tokens_max,
280
+ total_tokens_min=total_tokens_min,
227
281
  user=user,
228
282
  ).parsed
229
283
 
@@ -233,28 +287,40 @@ async def asyncio_detailed(
233
287
  client: AuthenticatedClient,
234
288
  created: Union[Unset, datetime.date] = UNSET,
235
289
  field: Union[Unset, list[ThreadSessionFieldEnum]] = UNSET,
290
+ input_tokens_max: Union[Unset, float] = UNSET,
291
+ input_tokens_min: Union[Unset, float] = UNSET,
236
292
  is_archived: Union[Unset, bool] = UNSET,
237
293
  is_flagged: Union[Unset, bool] = UNSET,
238
294
  max_severity: Union[Unset, InjectionSeverityEnum] = UNSET,
239
295
  modified: Union[Unset, datetime.date] = UNSET,
240
296
  o: Union[Unset, list[ThreadSessionOEnum]] = UNSET,
297
+ output_tokens_max: Union[Unset, float] = UNSET,
298
+ output_tokens_min: Union[Unset, float] = UNSET,
241
299
  page: Union[Unset, int] = UNSET,
242
300
  page_size: Union[Unset, int] = UNSET,
243
301
  query: Union[Unset, str] = UNSET,
302
+ total_tokens_max: Union[Unset, float] = UNSET,
303
+ total_tokens_min: Union[Unset, float] = UNSET,
244
304
  user: Union[Unset, UUID] = UNSET,
245
305
  ) -> Response[list["ThreadSession"]]:
246
306
  """
247
307
  Args:
248
308
  created (Union[Unset, datetime.date]):
249
309
  field (Union[Unset, list[ThreadSessionFieldEnum]]):
310
+ input_tokens_max (Union[Unset, float]):
311
+ input_tokens_min (Union[Unset, float]):
250
312
  is_archived (Union[Unset, bool]):
251
313
  is_flagged (Union[Unset, bool]):
252
314
  max_severity (Union[Unset, InjectionSeverityEnum]):
253
315
  modified (Union[Unset, datetime.date]):
254
316
  o (Union[Unset, list[ThreadSessionOEnum]]):
317
+ output_tokens_max (Union[Unset, float]):
318
+ output_tokens_min (Union[Unset, float]):
255
319
  page (Union[Unset, int]):
256
320
  page_size (Union[Unset, int]):
257
321
  query (Union[Unset, str]):
322
+ total_tokens_max (Union[Unset, float]):
323
+ total_tokens_min (Union[Unset, float]):
258
324
  user (Union[Unset, UUID]):
259
325
 
260
326
  Raises:
@@ -268,14 +334,20 @@ async def asyncio_detailed(
268
334
  kwargs = _get_kwargs(
269
335
  created=created,
270
336
  field=field,
337
+ input_tokens_max=input_tokens_max,
338
+ input_tokens_min=input_tokens_min,
271
339
  is_archived=is_archived,
272
340
  is_flagged=is_flagged,
273
341
  max_severity=max_severity,
274
342
  modified=modified,
275
343
  o=o,
344
+ output_tokens_max=output_tokens_max,
345
+ output_tokens_min=output_tokens_min,
276
346
  page=page,
277
347
  page_size=page_size,
278
348
  query=query,
349
+ total_tokens_max=total_tokens_max,
350
+ total_tokens_min=total_tokens_min,
279
351
  user=user,
280
352
  )
281
353
 
@@ -289,28 +361,40 @@ async def asyncio(
289
361
  client: AuthenticatedClient,
290
362
  created: Union[Unset, datetime.date] = UNSET,
291
363
  field: Union[Unset, list[ThreadSessionFieldEnum]] = UNSET,
364
+ input_tokens_max: Union[Unset, float] = UNSET,
365
+ input_tokens_min: Union[Unset, float] = UNSET,
292
366
  is_archived: Union[Unset, bool] = UNSET,
293
367
  is_flagged: Union[Unset, bool] = UNSET,
294
368
  max_severity: Union[Unset, InjectionSeverityEnum] = UNSET,
295
369
  modified: Union[Unset, datetime.date] = UNSET,
296
370
  o: Union[Unset, list[ThreadSessionOEnum]] = UNSET,
371
+ output_tokens_max: Union[Unset, float] = UNSET,
372
+ output_tokens_min: Union[Unset, float] = UNSET,
297
373
  page: Union[Unset, int] = UNSET,
298
374
  page_size: Union[Unset, int] = UNSET,
299
375
  query: Union[Unset, str] = UNSET,
376
+ total_tokens_max: Union[Unset, float] = UNSET,
377
+ total_tokens_min: Union[Unset, float] = UNSET,
300
378
  user: Union[Unset, UUID] = UNSET,
301
379
  ) -> list["ThreadSession"]:
302
380
  """
303
381
  Args:
304
382
  created (Union[Unset, datetime.date]):
305
383
  field (Union[Unset, list[ThreadSessionFieldEnum]]):
384
+ input_tokens_max (Union[Unset, float]):
385
+ input_tokens_min (Union[Unset, float]):
306
386
  is_archived (Union[Unset, bool]):
307
387
  is_flagged (Union[Unset, bool]):
308
388
  max_severity (Union[Unset, InjectionSeverityEnum]):
309
389
  modified (Union[Unset, datetime.date]):
310
390
  o (Union[Unset, list[ThreadSessionOEnum]]):
391
+ output_tokens_max (Union[Unset, float]):
392
+ output_tokens_min (Union[Unset, float]):
311
393
  page (Union[Unset, int]):
312
394
  page_size (Union[Unset, int]):
313
395
  query (Union[Unset, str]):
396
+ total_tokens_max (Union[Unset, float]):
397
+ total_tokens_min (Union[Unset, float]):
314
398
  user (Union[Unset, UUID]):
315
399
 
316
400
  Raises:
@@ -326,14 +410,20 @@ async def asyncio(
326
410
  client=client,
327
411
  created=created,
328
412
  field=field,
413
+ input_tokens_max=input_tokens_max,
414
+ input_tokens_min=input_tokens_min,
329
415
  is_archived=is_archived,
330
416
  is_flagged=is_flagged,
331
417
  max_severity=max_severity,
332
418
  modified=modified,
333
419
  o=o,
420
+ output_tokens_max=output_tokens_max,
421
+ output_tokens_min=output_tokens_min,
334
422
  page=page,
335
423
  page_size=page_size,
336
424
  query=query,
425
+ total_tokens_max=total_tokens_max,
426
+ total_tokens_min=total_tokens_min,
337
427
  user=user,
338
428
  )
339
429
  ).parsed
@@ -344,12 +434,18 @@ def sync_all(
344
434
  client: AuthenticatedClient,
345
435
  created: Union[Unset, datetime.date] = UNSET,
346
436
  field: Union[Unset, list[ThreadSessionFieldEnum]] = UNSET,
437
+ input_tokens_max: Union[Unset, float] = UNSET,
438
+ input_tokens_min: Union[Unset, float] = UNSET,
347
439
  is_archived: Union[Unset, bool] = UNSET,
348
440
  is_flagged: Union[Unset, bool] = UNSET,
349
441
  max_severity: Union[Unset, InjectionSeverityEnum] = UNSET,
350
442
  modified: Union[Unset, datetime.date] = UNSET,
351
443
  o: Union[Unset, list[ThreadSessionOEnum]] = UNSET,
444
+ output_tokens_max: Union[Unset, float] = UNSET,
445
+ output_tokens_min: Union[Unset, float] = UNSET,
352
446
  query: Union[Unset, str] = UNSET,
447
+ total_tokens_max: Union[Unset, float] = UNSET,
448
+ total_tokens_min: Union[Unset, float] = UNSET,
353
449
  user: Union[Unset, UUID] = UNSET,
354
450
  ) -> list["ThreadSession"]:
355
451
  """Get All Pages
@@ -362,12 +458,18 @@ def sync_all(
362
458
  Args:
363
459
  created (Union[Unset, datetime.date]):
364
460
  field (Union[Unset, list[ThreadSessionFieldEnum]]):
461
+ input_tokens_max (Union[Unset, float]):
462
+ input_tokens_min (Union[Unset, float]):
365
463
  is_archived (Union[Unset, bool]):
366
464
  is_flagged (Union[Unset, bool]):
367
465
  max_severity (Union[Unset, InjectionSeverityEnum]):
368
466
  modified (Union[Unset, datetime.date]):
369
467
  o (Union[Unset, list[ThreadSessionOEnum]]):
468
+ output_tokens_max (Union[Unset, float]):
469
+ output_tokens_min (Union[Unset, float]):
370
470
  query (Union[Unset, str]):
471
+ total_tokens_max (Union[Unset, float]):
472
+ total_tokens_min (Union[Unset, float]):
371
473
  user (Union[Unset, UUID]):
372
474
 
373
475
  Raises:
@@ -385,12 +487,18 @@ def sync_all(
385
487
  kwargs = _get_kwargs(
386
488
  created=created,
387
489
  field=field,
490
+ input_tokens_max=input_tokens_max,
491
+ input_tokens_min=input_tokens_min,
388
492
  is_archived=is_archived,
389
493
  is_flagged=is_flagged,
390
494
  max_severity=max_severity,
391
495
  modified=modified,
392
496
  o=o,
497
+ output_tokens_max=output_tokens_max,
498
+ output_tokens_min=output_tokens_min,
393
499
  query=query,
500
+ total_tokens_max=total_tokens_max,
501
+ total_tokens_min=total_tokens_min,
394
502
  user=user,
395
503
  )
396
504
 
@@ -441,12 +549,18 @@ async def asyncio_all(
441
549
  client: AuthenticatedClient,
442
550
  created: Union[Unset, datetime.date] = UNSET,
443
551
  field: Union[Unset, list[ThreadSessionFieldEnum]] = UNSET,
552
+ input_tokens_max: Union[Unset, float] = UNSET,
553
+ input_tokens_min: Union[Unset, float] = UNSET,
444
554
  is_archived: Union[Unset, bool] = UNSET,
445
555
  is_flagged: Union[Unset, bool] = UNSET,
446
556
  max_severity: Union[Unset, InjectionSeverityEnum] = UNSET,
447
557
  modified: Union[Unset, datetime.date] = UNSET,
448
558
  o: Union[Unset, list[ThreadSessionOEnum]] = UNSET,
559
+ output_tokens_max: Union[Unset, float] = UNSET,
560
+ output_tokens_min: Union[Unset, float] = UNSET,
449
561
  query: Union[Unset, str] = UNSET,
562
+ total_tokens_max: Union[Unset, float] = UNSET,
563
+ total_tokens_min: Union[Unset, float] = UNSET,
450
564
  user: Union[Unset, UUID] = UNSET,
451
565
  ) -> list["ThreadSession"]:
452
566
  """Get All Pages (Async)
@@ -459,12 +573,18 @@ async def asyncio_all(
459
573
  Args:
460
574
  created (Union[Unset, datetime.date]):
461
575
  field (Union[Unset, list[ThreadSessionFieldEnum]]):
576
+ input_tokens_max (Union[Unset, float]):
577
+ input_tokens_min (Union[Unset, float]):
462
578
  is_archived (Union[Unset, bool]):
463
579
  is_flagged (Union[Unset, bool]):
464
580
  max_severity (Union[Unset, InjectionSeverityEnum]):
465
581
  modified (Union[Unset, datetime.date]):
466
582
  o (Union[Unset, list[ThreadSessionOEnum]]):
583
+ output_tokens_max (Union[Unset, float]):
584
+ output_tokens_min (Union[Unset, float]):
467
585
  query (Union[Unset, str]):
586
+ total_tokens_max (Union[Unset, float]):
587
+ total_tokens_min (Union[Unset, float]):
468
588
  user (Union[Unset, UUID]):
469
589
 
470
590
  Raises:
@@ -482,12 +602,18 @@ async def asyncio_all(
482
602
  kwargs = _get_kwargs(
483
603
  created=created,
484
604
  field=field,
605
+ input_tokens_max=input_tokens_max,
606
+ input_tokens_min=input_tokens_min,
485
607
  is_archived=is_archived,
486
608
  is_flagged=is_flagged,
487
609
  max_severity=max_severity,
488
610
  modified=modified,
489
611
  o=o,
612
+ output_tokens_max=output_tokens_max,
613
+ output_tokens_min=output_tokens_min,
490
614
  query=query,
615
+ total_tokens_max=total_tokens_max,
616
+ total_tokens_min=total_tokens_min,
491
617
  user=user,
492
618
  )
493
619