flywheel-sdk 18.4.1rc0__py2.py3-none-any.whl → 18.5.0rc0__py2.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 (34) hide show
  1. flywheel/__init__.py +0 -1
  2. flywheel/api/acquisitions_api.py +4 -4
  3. flywheel/api/audit_trail_api.py +2 -2
  4. flywheel/api/collections_api.py +4 -4
  5. flywheel/api/gears_api.py +2 -2
  6. flywheel/api/groups_api.py +8 -8
  7. flywheel/api/projects_api.py +18 -18
  8. flywheel/api/roles_api.py +2 -2
  9. flywheel/api/sessions_api.py +4 -4
  10. flywheel/api/subjects_api.py +6 -6
  11. flywheel/api_client.py +1 -1
  12. flywheel/configuration.py +2 -2
  13. flywheel/flywheel.py +26 -26
  14. flywheel/models/__init__.py +1 -2
  15. flywheel/models/analysis_node.py +0 -1
  16. flywheel/models/analysis_output.py +3 -4
  17. flywheel/models/central_out.py +85 -4
  18. flywheel/models/change.py +3 -3
  19. flywheel/models/change_log_document.py +3 -3
  20. flywheel/models/config_out.py +1 -28
  21. flywheel/models/features.py +1 -28
  22. flywheel/models/field_change_log_document.py +3 -3
  23. flywheel/models/ingress_site_settings.py +3 -3
  24. flywheel/models/project_settings_input.py +3 -3
  25. flywheel/models/search_parent_analysis.py +0 -1
  26. flywheel/models/session_input.py +3 -3
  27. flywheel/models/session_modify.py +3 -3
  28. flywheel/models/validation_error.py +3 -3
  29. {flywheel_sdk-18.4.1rc0.dist-info → flywheel_sdk-18.5.0rc0.dist-info}/METADATA +6 -6
  30. {flywheel_sdk-18.4.1rc0.dist-info → flywheel_sdk-18.5.0rc0.dist-info}/RECORD +33 -34
  31. {flywheel_sdk-18.4.1rc0.dist-info → flywheel_sdk-18.5.0rc0.dist-info}/WHEEL +1 -1
  32. flywheel/models/open_tracing.py +0 -244
  33. {flywheel_sdk-18.4.1rc0.dist-info → flywheel_sdk-18.5.0rc0.dist-info}/LICENSE.txt +0 -0
  34. {flywheel_sdk-18.4.1rc0.dist-info → flywheel_sdk-18.5.0rc0.dist-info}/top_level.txt +0 -0
flywheel/__init__.py CHANGED
@@ -465,7 +465,6 @@ from flywheel.models.modify_user_input import ModifyUserInput
465
465
  from flywheel.models.move_conflict import MoveConflict
466
466
  from flywheel.models.note import Note
467
467
  from flywheel.models.note_input import NoteInput
468
- from flywheel.models.open_tracing import OpenTracing
469
468
  from flywheel.models.optional_input_policy import OptionalInputPolicy
470
469
  from flywheel.models.order import Order
471
470
  from flywheel.models.organ_system import OrganSystem
@@ -2703,7 +2703,7 @@ class AcquisitionsApi(object):
2703
2703
  :param str acquisition_id: (required)
2704
2704
  :param JoinType join:
2705
2705
  :param bool join_avatars: add name and avatar to notes
2706
- :param list[union[HeaderFeature,string]] x_accept_feature:
2706
+ :param list[union[HeaderFeature,str]] x_accept_feature:
2707
2707
  :param bool async_: Perform the request asynchronously
2708
2708
  :return: AcquisitionOutput
2709
2709
  """
@@ -2732,7 +2732,7 @@ class AcquisitionsApi(object):
2732
2732
  :param str acquisition_id: (required)
2733
2733
  :param JoinType join:
2734
2734
  :param bool join_avatars: add name and avatar to notes
2735
- :param list[union[HeaderFeature,string]] x_accept_feature:
2735
+ :param list[union[HeaderFeature,str]] x_accept_feature:
2736
2736
  :param bool async_: Perform the request asynchronously
2737
2737
  :return: AcquisitionOutput
2738
2738
  """
@@ -3384,7 +3384,7 @@ class AcquisitionsApi(object):
3384
3384
  :param int skip: The number of entries to skip.
3385
3385
  :param int page: The page number (i.e. skip limit*page entries)
3386
3386
  :param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
3387
- :param list[union[HeaderFeature,string]] x_accept_feature:
3387
+ :param list[union[HeaderFeature,str]] x_accept_feature:
3388
3388
  :param bool async_: Perform the request asynchronously
3389
3389
  :return: union[list[AcquisitionListOutput],Page]
3390
3390
  """
@@ -3420,7 +3420,7 @@ class AcquisitionsApi(object):
3420
3420
  :param int skip: The number of entries to skip.
3421
3421
  :param int page: The page number (i.e. skip limit*page entries)
3422
3422
  :param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
3423
- :param list[union[HeaderFeature,string]] x_accept_feature:
3423
+ :param list[union[HeaderFeature,str]] x_accept_feature:
3424
3424
  :param bool async_: Perform the request asynchronously
3425
3425
  :return: union[list[AcquisitionListOutput],Page]
3426
3426
  """
@@ -341,7 +341,7 @@ class AuditTrailApi(object):
341
341
  :param int skip: The number of entries to skip.
342
342
  :param int page: The page number (i.e. skip limit*page entries)
343
343
  :param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
344
- :param list[union[HeaderFeature,string]] x_accept_feature:
344
+ :param list[union[HeaderFeature,str]] x_accept_feature:
345
345
  :param bool async_: Perform the request asynchronously
346
346
  :return: union[Page,list[AuditTrailReport]]
347
347
  """
@@ -373,7 +373,7 @@ class AuditTrailApi(object):
373
373
  :param int skip: The number of entries to skip.
374
374
  :param int page: The page number (i.e. skip limit*page entries)
375
375
  :param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
376
- :param list[union[HeaderFeature,string]] x_accept_feature:
376
+ :param list[union[HeaderFeature,str]] x_accept_feature:
377
377
  :param bool async_: Perform the request asynchronously
378
378
  :return: union[Page,list[AuditTrailReport]]
379
379
  """
@@ -1643,7 +1643,7 @@ class CollectionsApi(object):
1643
1643
  :param int skip: The number of entries to skip.
1644
1644
  :param int page: The page number (i.e. skip limit*page entries)
1645
1645
  :param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
1646
- :param list[union[HeaderFeature,string]] x_accept_feature:
1646
+ :param list[union[HeaderFeature,str]] x_accept_feature:
1647
1647
  :param bool async_: Perform the request asynchronously
1648
1648
  :return: union[Page,list[CollectionWithStats],list[CollectionOutput]]
1649
1649
  """
@@ -1681,7 +1681,7 @@ class CollectionsApi(object):
1681
1681
  :param int skip: The number of entries to skip.
1682
1682
  :param int page: The page number (i.e. skip limit*page entries)
1683
1683
  :param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
1684
- :param list[union[HeaderFeature,string]] x_accept_feature:
1684
+ :param list[union[HeaderFeature,str]] x_accept_feature:
1685
1685
  :param bool async_: Perform the request asynchronously
1686
1686
  :return: union[Page,list[CollectionWithStats],list[CollectionOutput]]
1687
1687
  """
@@ -1887,7 +1887,7 @@ class CollectionsApi(object):
1887
1887
  :param str collection_id: (required)
1888
1888
  :param bool join_avatars: add name and avatar to notes
1889
1889
  :param JoinType join:
1890
- :param list[union[HeaderFeature,string]] x_accept_feature:
1890
+ :param list[union[HeaderFeature,str]] x_accept_feature:
1891
1891
  :param bool async_: Perform the request asynchronously
1892
1892
  :return: CollectionOutput
1893
1893
  """
@@ -1916,7 +1916,7 @@ class CollectionsApi(object):
1916
1916
  :param str collection_id: (required)
1917
1917
  :param bool join_avatars: add name and avatar to notes
1918
1918
  :param JoinType join:
1919
- :param list[union[HeaderFeature,string]] x_accept_feature:
1919
+ :param list[union[HeaderFeature,str]] x_accept_feature:
1920
1920
  :param bool async_: Perform the request asynchronously
1921
1921
  :return: CollectionOutput
1922
1922
  """
flywheel/api/gears_api.py CHANGED
@@ -580,7 +580,7 @@ class GearsApi(object):
580
580
  :param int page: The page number (i.e. skip limit*page entries)
581
581
  :param bool exhaustive: Set to return a complete list regardless of permissions
582
582
  :param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
583
- :param list[union[HeaderFeature,string]] x_accept_feature:
583
+ :param list[union[HeaderFeature,str]] x_accept_feature:
584
584
  :param bool async_: Perform the request asynchronously
585
585
  :return: union[list[GearDocument],Page]
586
586
  """
@@ -616,7 +616,7 @@ class GearsApi(object):
616
616
  :param int page: The page number (i.e. skip limit*page entries)
617
617
  :param bool exhaustive: Set to return a complete list regardless of permissions
618
618
  :param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
619
- :param list[union[HeaderFeature,string]] x_accept_feature:
619
+ :param list[union[HeaderFeature,str]] x_accept_feature:
620
620
  :param bool async_: Perform the request asynchronously
621
621
  :return: union[list[GearDocument],Page]
622
622
  """
@@ -261,7 +261,7 @@ class GroupsApi(object):
261
261
  :param str group_id: (required)
262
262
  :param RolePermission body: (required)
263
263
  :param bool propagate:
264
- :param list[union[HeaderFeature,string]] x_accept_feature:
264
+ :param list[union[HeaderFeature,str]] x_accept_feature:
265
265
  :param bool async_: Perform the request asynchronously
266
266
  :return: RolePermissionOutput
267
267
  """
@@ -290,7 +290,7 @@ class GroupsApi(object):
290
290
  :param str group_id: (required)
291
291
  :param RolePermission body: (required)
292
292
  :param bool propagate:
293
- :param list[union[HeaderFeature,string]] x_accept_feature:
293
+ :param list[union[HeaderFeature,str]] x_accept_feature:
294
294
  :param bool async_: Perform the request asynchronously
295
295
  :return: RolePermissionOutput
296
296
  """
@@ -1135,7 +1135,7 @@ class GroupsApi(object):
1135
1135
  :param str group_id: (required)
1136
1136
  :param str user_id: (required)
1137
1137
  :param bool propagate:
1138
- :param list[union[HeaderFeature,string]] x_accept_feature:
1138
+ :param list[union[HeaderFeature,str]] x_accept_feature:
1139
1139
  :param bool async_: Perform the request asynchronously
1140
1140
  :return: ModifiedResult
1141
1141
  """
@@ -1164,7 +1164,7 @@ class GroupsApi(object):
1164
1164
  :param str group_id: (required)
1165
1165
  :param str user_id: (required)
1166
1166
  :param bool propagate:
1167
- :param list[union[HeaderFeature,string]] x_accept_feature:
1167
+ :param list[union[HeaderFeature,str]] x_accept_feature:
1168
1168
  :param bool async_: Perform the request asynchronously
1169
1169
  :return: ModifiedResult
1170
1170
  """
@@ -1348,7 +1348,7 @@ class GroupsApi(object):
1348
1348
  :param int skip: The number of entries to skip.
1349
1349
  :param int page: The page number (i.e. skip limit*page entries)
1350
1350
  :param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
1351
- :param list[union[HeaderFeature,string]] x_accept_feature:
1351
+ :param list[union[HeaderFeature,str]] x_accept_feature:
1352
1352
  :param bool async_: Perform the request asynchronously
1353
1353
  :return: union[Page,list[GroupOutput]]
1354
1354
  """
@@ -1381,7 +1381,7 @@ class GroupsApi(object):
1381
1381
  :param int skip: The number of entries to skip.
1382
1382
  :param int page: The page number (i.e. skip limit*page entries)
1383
1383
  :param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
1384
- :param list[union[HeaderFeature,string]] x_accept_feature:
1384
+ :param list[union[HeaderFeature,str]] x_accept_feature:
1385
1385
  :param bool async_: Perform the request asynchronously
1386
1386
  :return: union[Page,list[GroupOutput]]
1387
1387
  """
@@ -2345,7 +2345,7 @@ class GroupsApi(object):
2345
2345
  :param str user_id: (required)
2346
2346
  :param RolePermissionUpdate body: (required)
2347
2347
  :param bool propagate:
2348
- :param list[union[HeaderFeature,string]] x_accept_feature:
2348
+ :param list[union[HeaderFeature,str]] x_accept_feature:
2349
2349
  :param bool async_: Perform the request asynchronously
2350
2350
  :return: RolePermissionOutput
2351
2351
  """
@@ -2375,7 +2375,7 @@ class GroupsApi(object):
2375
2375
  :param str user_id: (required)
2376
2376
  :param RolePermissionUpdate body: (required)
2377
2377
  :param bool propagate:
2378
- :param list[union[HeaderFeature,string]] x_accept_feature:
2378
+ :param list[union[HeaderFeature,str]] x_accept_feature:
2379
2379
  :param bool async_: Perform the request asynchronously
2380
2380
  :return: RolePermissionOutput
2381
2381
  """
@@ -506,7 +506,7 @@ class ProjectsApi(object):
506
506
 
507
507
  :param str project_id: (required)
508
508
  :param RolePermission body: (required)
509
- :param list[union[HeaderFeature,string]] x_accept_feature:
509
+ :param list[union[HeaderFeature,str]] x_accept_feature:
510
510
  :param bool async_: Perform the request asynchronously
511
511
  :return: RolePermissionOutput
512
512
  """
@@ -534,7 +534,7 @@ class ProjectsApi(object):
534
534
 
535
535
  :param str project_id: (required)
536
536
  :param RolePermission body: (required)
537
- :param list[union[HeaderFeature,string]] x_accept_feature:
537
+ :param list[union[HeaderFeature,str]] x_accept_feature:
538
538
  :param bool async_: Perform the request asynchronously
539
539
  :return: RolePermissionOutput
540
540
  """
@@ -966,7 +966,7 @@ class ProjectsApi(object):
966
966
  :param int skip: The number of entries to skip
967
967
  :param int page: The page number (i.e. skip limit*page entries)
968
968
  :param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
969
- :param list[union[HeaderFeature,string]] x_accept_feature:
969
+ :param list[union[HeaderFeature,str]] x_accept_feature:
970
970
  :param bool async_: Perform the request asynchronously
971
971
  :return: union[list[CatalogListOutput],Page]
972
972
  """
@@ -998,7 +998,7 @@ class ProjectsApi(object):
998
998
  :param int skip: The number of entries to skip
999
999
  :param int page: The page number (i.e. skip limit*page entries)
1000
1000
  :param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
1001
- :param list[union[HeaderFeature,string]] x_accept_feature:
1001
+ :param list[union[HeaderFeature,str]] x_accept_feature:
1002
1002
  :param bool async_: Perform the request asynchronously
1003
1003
  :return: union[list[CatalogListOutput],Page]
1004
1004
  """
@@ -1828,7 +1828,7 @@ class ProjectsApi(object):
1828
1828
 
1829
1829
  :param str project_id: (required)
1830
1830
  :param str uid: (required)
1831
- :param list[union[HeaderFeature,string]] x_accept_feature:
1831
+ :param list[union[HeaderFeature,str]] x_accept_feature:
1832
1832
  :param bool async_: Perform the request asynchronously
1833
1833
  :return: ModifiedResult
1834
1834
  """
@@ -1855,7 +1855,7 @@ class ProjectsApi(object):
1855
1855
 
1856
1856
  :param str project_id: (required)
1857
1857
  :param str uid: (required)
1858
- :param list[union[HeaderFeature,string]] x_accept_feature:
1858
+ :param list[union[HeaderFeature,str]] x_accept_feature:
1859
1859
  :param bool async_: Perform the request asynchronously
1860
1860
  :return: ModifiedResult
1861
1861
  """
@@ -3289,7 +3289,7 @@ class ProjectsApi(object):
3289
3289
  :param bool join_avatars: Return the joined avatars of the permissions
3290
3290
  :param JoinType join:
3291
3291
  :param bool exhaustive: Set to return a complete list regardless of permissions
3292
- :param list[union[HeaderFeature,string]] x_accept_feature:
3292
+ :param list[union[HeaderFeature,str]] x_accept_feature:
3293
3293
  :param bool async_: Perform the request asynchronously
3294
3294
  :return: union[list[ProjectListOutput],Page]
3295
3295
  """
@@ -3325,7 +3325,7 @@ class ProjectsApi(object):
3325
3325
  :param bool join_avatars: Return the joined avatars of the permissions
3326
3326
  :param JoinType join:
3327
3327
  :param bool exhaustive: Set to return a complete list regardless of permissions
3328
- :param list[union[HeaderFeature,string]] x_accept_feature:
3328
+ :param list[union[HeaderFeature,str]] x_accept_feature:
3329
3329
  :param bool async_: Perform the request asynchronously
3330
3330
  :return: union[list[ProjectListOutput],Page]
3331
3331
  """
@@ -3621,7 +3621,7 @@ class ProjectsApi(object):
3621
3621
  :param str project_id: (required)
3622
3622
  :param JoinType join:
3623
3623
  :param bool join_avatars: add name and avatar to notes
3624
- :param list[union[HeaderFeature,string]] x_accept_feature:
3624
+ :param list[union[HeaderFeature,str]] x_accept_feature:
3625
3625
  :param bool async_: Perform the request asynchronously
3626
3626
  :return: ProjectOutput
3627
3627
  """
@@ -3649,7 +3649,7 @@ class ProjectsApi(object):
3649
3649
  :param str project_id: (required)
3650
3650
  :param JoinType join:
3651
3651
  :param bool join_avatars: add name and avatar to notes
3652
- :param list[union[HeaderFeature,string]] x_accept_feature:
3652
+ :param list[union[HeaderFeature,str]] x_accept_feature:
3653
3653
  :param bool async_: Perform the request asynchronously
3654
3654
  :return: ProjectOutput
3655
3655
  """
@@ -4528,7 +4528,7 @@ class ProjectsApi(object):
4528
4528
  :param int skip: The number of entries to skip.
4529
4529
  :param int page: The page number (i.e. skip limit*page entries)
4530
4530
  :param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
4531
- :param list[union[HeaderFeature,string]] x_accept_feature:
4531
+ :param list[union[HeaderFeature,str]] x_accept_feature:
4532
4532
  :param bool async_: Perform the request asynchronously
4533
4533
  :return: union[Page,list[SessionListOutput]]
4534
4534
  """
@@ -4562,7 +4562,7 @@ class ProjectsApi(object):
4562
4562
  :param int skip: The number of entries to skip.
4563
4563
  :param int page: The page number (i.e. skip limit*page entries)
4564
4564
  :param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
4565
- :param list[union[HeaderFeature,string]] x_accept_feature:
4565
+ :param list[union[HeaderFeature,str]] x_accept_feature:
4566
4566
  :param bool async_: Perform the request asynchronously
4567
4567
  :return: union[Page,list[SessionListOutput]]
4568
4568
  """
@@ -5081,7 +5081,7 @@ class ProjectsApi(object):
5081
5081
 
5082
5082
  :param str project_id: (required)
5083
5083
  :param ProjectModify body: (required)
5084
- :param list[union[HeaderFeature,string]] x_accept_feature:
5084
+ :param list[union[HeaderFeature,str]] x_accept_feature:
5085
5085
  :param bool async_: Perform the request asynchronously
5086
5086
  :return: ModifiedResult
5087
5087
  """
@@ -5108,7 +5108,7 @@ class ProjectsApi(object):
5108
5108
 
5109
5109
  :param str project_id: (required)
5110
5110
  :param ProjectModify body: (required)
5111
- :param list[union[HeaderFeature,string]] x_accept_feature:
5111
+ :param list[union[HeaderFeature,str]] x_accept_feature:
5112
5112
  :param bool async_: Perform the request asynchronously
5113
5113
  :return: ModifiedResult
5114
5114
  """
@@ -6052,7 +6052,7 @@ class ProjectsApi(object):
6052
6052
 
6053
6053
  :param str project_id: (required)
6054
6054
  :param ProjectSettingsInput body: (required)
6055
- :param list[union[HeaderFeature,string]] x_accept_feature:
6055
+ :param list[union[HeaderFeature,str]] x_accept_feature:
6056
6056
  :param bool async_: Perform the request asynchronously
6057
6057
  :return: ProjectSettingsOutput
6058
6058
  """
@@ -6079,7 +6079,7 @@ class ProjectsApi(object):
6079
6079
 
6080
6080
  :param str project_id: (required)
6081
6081
  :param ProjectSettingsInput body: (required)
6082
- :param list[union[HeaderFeature,string]] x_accept_feature:
6082
+ :param list[union[HeaderFeature,str]] x_accept_feature:
6083
6083
  :param bool async_: Perform the request asynchronously
6084
6084
  :return: ProjectSettingsOutput
6085
6085
  """
@@ -6172,7 +6172,7 @@ class ProjectsApi(object):
6172
6172
  :param str project_id: (required)
6173
6173
  :param str uid: (required)
6174
6174
  :param RolePermissionUpdate body: (required)
6175
- :param list[union[HeaderFeature,string]] x_accept_feature:
6175
+ :param list[union[HeaderFeature,str]] x_accept_feature:
6176
6176
  :param bool async_: Perform the request asynchronously
6177
6177
  :return: RolePermissionOutput
6178
6178
  """
@@ -6201,7 +6201,7 @@ class ProjectsApi(object):
6201
6201
  :param str project_id: (required)
6202
6202
  :param str uid: (required)
6203
6203
  :param RolePermissionUpdate body: (required)
6204
- :param list[union[HeaderFeature,string]] x_accept_feature:
6204
+ :param list[union[HeaderFeature,str]] x_accept_feature:
6205
6205
  :param bool async_: Perform the request asynchronously
6206
6206
  :return: RolePermissionOutput
6207
6207
  """
flywheel/api/roles_api.py CHANGED
@@ -445,7 +445,7 @@ class RolesApi(object):
445
445
 
446
446
  :param str role_id: (required)
447
447
  :param RoleUpdate body: (required)
448
- :param list[union[HeaderFeature,string]] x_accept_feature:
448
+ :param list[union[HeaderFeature,str]] x_accept_feature:
449
449
  :param bool async_: Perform the request asynchronously
450
450
  :return: RoleOutput
451
451
  """
@@ -472,7 +472,7 @@ class RolesApi(object):
472
472
 
473
473
  :param str role_id: (required)
474
474
  :param RoleUpdate body: (required)
475
- :param list[union[HeaderFeature,string]] x_accept_feature:
475
+ :param list[union[HeaderFeature,str]] x_accept_feature:
476
476
  :param bool async_: Perform the request asynchronously
477
477
  :return: RoleOutput
478
478
  """
@@ -2710,7 +2710,7 @@ class SessionsApi(object):
2710
2710
  :param int skip: The number of entries to skip.
2711
2711
  :param int page: The page number (i.e. skip limit*page entries)
2712
2712
  :param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
2713
- :param list[union[HeaderFeature,string]] x_accept_feature:
2713
+ :param list[union[HeaderFeature,str]] x_accept_feature:
2714
2714
  :param bool async_: Perform the request asynchronously
2715
2715
  :return: union[Page,list[SessionListOutput]]
2716
2716
  """
@@ -2746,7 +2746,7 @@ class SessionsApi(object):
2746
2746
  :param int skip: The number of entries to skip.
2747
2747
  :param int page: The page number (i.e. skip limit*page entries)
2748
2748
  :param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
2749
- :param list[union[HeaderFeature,string]] x_accept_feature:
2749
+ :param list[union[HeaderFeature,str]] x_accept_feature:
2750
2750
  :param bool async_: Perform the request asynchronously
2751
2751
  :return: union[Page,list[SessionListOutput]]
2752
2752
  """
@@ -2836,7 +2836,7 @@ class SessionsApi(object):
2836
2836
  :param str session_id: (required)
2837
2837
  :param bool join_avatars: add name and avatar to notes
2838
2838
  :param JoinType join:
2839
- :param list[union[HeaderFeature,string]] x_accept_feature:
2839
+ :param list[union[HeaderFeature,str]] x_accept_feature:
2840
2840
  :param bool async_: Perform the request asynchronously
2841
2841
  :return: SessionOutput
2842
2842
  """
@@ -2865,7 +2865,7 @@ class SessionsApi(object):
2865
2865
  :param str session_id: (required)
2866
2866
  :param bool join_avatars: add name and avatar to notes
2867
2867
  :param JoinType join:
2868
- :param list[union[HeaderFeature,string]] x_accept_feature:
2868
+ :param list[union[HeaderFeature,str]] x_accept_feature:
2869
2869
  :param bool async_: Perform the request asynchronously
2870
2870
  :return: SessionOutput
2871
2871
  """
@@ -2816,7 +2816,7 @@ class SubjectsApi(object):
2816
2816
  :param int skip: The number of entries to skip.
2817
2817
  :param int page: The page number (i.e. skip limit*page entries)
2818
2818
  :param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
2819
- :param list[union[HeaderFeature,string]] x_accept_feature:
2819
+ :param list[union[HeaderFeature,str]] x_accept_feature:
2820
2820
  :param bool async_: Perform the request asynchronously
2821
2821
  :return: union[Page,list[SubjectOutputForList]]
2822
2822
  """
@@ -2851,7 +2851,7 @@ class SubjectsApi(object):
2851
2851
  :param int skip: The number of entries to skip.
2852
2852
  :param int page: The page number (i.e. skip limit*page entries)
2853
2853
  :param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
2854
- :param list[union[HeaderFeature,string]] x_accept_feature:
2854
+ :param list[union[HeaderFeature,str]] x_accept_feature:
2855
2855
  :param bool async_: Perform the request asynchronously
2856
2856
  :return: union[Page,list[SubjectOutputForList]]
2857
2857
  """
@@ -2939,7 +2939,7 @@ class SubjectsApi(object):
2939
2939
  :param str subject_id: 24-char hex subject id (required)
2940
2940
  :param JoinType join: join file origins
2941
2941
  :param bool join_avatars: add name and avatar to notes
2942
- :param list[union[HeaderFeature,string]] x_accept_feature:
2942
+ :param list[union[HeaderFeature,str]] x_accept_feature:
2943
2943
  :param bool async_: Perform the request asynchronously
2944
2944
  :return: SubjectOutput
2945
2945
  """
@@ -2968,7 +2968,7 @@ class SubjectsApi(object):
2968
2968
  :param str subject_id: 24-char hex subject id (required)
2969
2969
  :param JoinType join: join file origins
2970
2970
  :param bool join_avatars: add name and avatar to notes
2971
- :param list[union[HeaderFeature,string]] x_accept_feature:
2971
+ :param list[union[HeaderFeature,str]] x_accept_feature:
2972
2972
  :param bool async_: Perform the request asynchronously
2973
2973
  :return: SubjectOutput
2974
2974
  """
@@ -3514,7 +3514,7 @@ class SubjectsApi(object):
3514
3514
  :param int skip: The number of entries to skip.
3515
3515
  :param int page: The page number (i.e. skip limit*page entries)
3516
3516
  :param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
3517
- :param list[union[HeaderFeature,string]] x_accept_feature:
3517
+ :param list[union[HeaderFeature,str]] x_accept_feature:
3518
3518
  :param bool async_: Perform the request asynchronously
3519
3519
  :return: union[Page,list[SessionListOutput]]
3520
3520
  """
@@ -3548,7 +3548,7 @@ class SubjectsApi(object):
3548
3548
  :param int skip: The number of entries to skip.
3549
3549
  :param int page: The page number (i.e. skip limit*page entries)
3550
3550
  :param str after_id: Paginate after the given id. (Cannot be used with sort, page or skip)
3551
- :param list[union[HeaderFeature,string]] x_accept_feature:
3551
+ :param list[union[HeaderFeature,str]] x_accept_feature:
3552
3552
  :param bool async_: Perform the request asynchronously
3553
3553
  :return: union[Page,list[SessionListOutput]]
3554
3554
  """
flywheel/api_client.py CHANGED
@@ -81,7 +81,7 @@ class ApiClient(object):
81
81
  self.default_query_params = []
82
82
  self.cookie = cookie
83
83
  # Set default User-Agent.
84
- self.user_agent = 'Swagger-Codegen/18.4.1-rc0/python'
84
+ self.user_agent = 'Swagger-Codegen/18.5.0-rc0/python'
85
85
  self.last_response = None
86
86
  self._version_check_fn = None
87
87
  self._context = context
flywheel/configuration.py CHANGED
@@ -252,6 +252,6 @@ class Configuration(six.with_metaclass(TypeWithDefault, object)):
252
252
  return "Python SDK Debug Report:\n"\
253
253
  "OS: {env}\n"\
254
254
  "Python Version: {pyversion}\n"\
255
- "Version of the API: 18.4.1-rc0\n"\
256
- "SDK Package Version: 18.4.1-rc0".\
255
+ "Version of the API: 18.5.0-rc0\n"\
256
+ "SDK Package Version: 18.5.0-rc0".\
257
257
  format(env=sys.platform, pyversion=sys.version)