flywheel-sdk 20.3.0rc0__py2.py3-none-any.whl → 20.4.0__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.
flywheel/api_client.py CHANGED
@@ -84,7 +84,7 @@ class ApiClient(object):
84
84
  self.default_query_params = []
85
85
  self.cookie = cookie
86
86
  # Set default User-Agent.
87
- self.user_agent = 'Swagger-Codegen/20.3.0-rc0/python'
87
+ self.user_agent = 'Swagger-Codegen/20.4.0/python'
88
88
  self.last_response = None
89
89
  self._version_check_fn = None
90
90
  self._context = context
flywheel/configuration.py CHANGED
@@ -253,8 +253,8 @@ class Configuration(six.with_metaclass(TypeWithDefault, object)):
253
253
  return "Python SDK Debug Report:\n"\
254
254
  "OS: {env}\n"\
255
255
  "Python Version: {pyversion}\n"\
256
- "Version of the API: 20.3.0-rc0\n"\
257
- "SDK Package Version: 20.3.0-rc0".\
256
+ "Version of the API: 20.4.0\n"\
257
+ "SDK Package Version: 20.4.0".\
258
258
  format(env=sys.platform, pyversion=sys.version)
259
259
 
260
260
  def enable_message_cutoff(self, message_cutoff):
flywheel/flywheel.py CHANGED
@@ -40,7 +40,7 @@ from flywheel.view_builder import ViewBuilder
40
40
  from flywheel.finder import Finder
41
41
  import flywheel.api
42
42
 
43
- SDK_VERSION = "20.3.0-rc0"
43
+ SDK_VERSION = "20.4.0"
44
44
 
45
45
  def config_from_api_key(api_key):
46
46
  parts = api_key.split(':')
@@ -6,7 +6,7 @@
6
6
 
7
7
  Flywheel: API for data import, automated curation, image processing, machine learning workflows, and secure collaboration. # noqa: E501
8
8
 
9
- OpenAPI spec version: 20.3.0-rc0
9
+ OpenAPI spec version: 20.4.0
10
10
 
11
11
  Generated by: https://github.com/swagger-api/swagger-codegen.git
12
12
  """
@@ -18,30 +18,35 @@ import pprint
18
18
  import re # noqa: F401
19
19
  import six
20
20
 
21
+ from flywheel.models.cvat_sync_state import CVATSyncState # noqa: F401,E501
22
+
21
23
  class CVATInfo(object):
22
24
 
23
25
  swagger_types = {
24
26
  'task_id': 'int',
25
27
  'job_id': 'int',
26
28
  'sync_state': 'CVATSyncState',
27
- 'errors': 'list[str]'
29
+ 'errors': 'list[str]',
30
+ 'error_summary': 'str'
28
31
  }
29
32
 
30
33
  attribute_map = {
31
34
  'task_id': 'task_id',
32
35
  'job_id': 'job_id',
33
36
  'sync_state': 'sync_state',
34
- 'errors': 'errors'
37
+ 'errors': 'errors',
38
+ 'error_summary': 'error_summary'
35
39
  }
36
40
 
37
41
  rattribute_map = {
38
42
  'task_id': 'task_id',
39
43
  'job_id': 'job_id',
40
44
  'sync_state': 'sync_state',
41
- 'errors': 'errors'
45
+ 'errors': 'errors',
46
+ 'error_summary': 'error_summary'
42
47
  }
43
48
 
44
- def __init__(self, task_id=None, job_id=None, sync_state=None, errors=None): # noqa: E501
49
+ def __init__(self, task_id=None, job_id=None, sync_state=None, errors=None, error_summary=None): # noqa: E501
45
50
  """CVATInfo - a model defined in Swagger"""
46
51
  super(CVATInfo, self).__init__()
47
52
 
@@ -49,16 +54,20 @@ class CVATInfo(object):
49
54
  self._job_id = None
50
55
  self._sync_state = None
51
56
  self._errors = None
57
+ self._error_summary = None
52
58
  self.discriminator = None
53
59
  self.alt_discriminator = None
54
60
 
55
- self.task_id = task_id
61
+ if task_id is not None:
62
+ self.task_id = task_id
56
63
  if job_id is not None:
57
64
  self.job_id = job_id
58
65
  if sync_state is not None:
59
66
  self.sync_state = sync_state
60
67
  if errors is not None:
61
68
  self.errors = errors
69
+ if error_summary is not None:
70
+ self.error_summary = error_summary
62
71
 
63
72
  @property
64
73
  def task_id(self):
@@ -144,6 +153,27 @@ class CVATInfo(object):
144
153
 
145
154
  self._errors = errors
146
155
 
156
+ @property
157
+ def error_summary(self):
158
+ """Gets the error_summary of this CVATInfo.
159
+
160
+
161
+ :return: The error_summary of this CVATInfo.
162
+ :rtype: str
163
+ """
164
+ return self._error_summary
165
+
166
+ @error_summary.setter
167
+ def error_summary(self, error_summary):
168
+ """Sets the error_summary of this CVATInfo.
169
+
170
+
171
+ :param error_summary: The error_summary of this CVATInfo. # noqa: E501
172
+ :type: str
173
+ """
174
+
175
+ self._error_summary = error_summary
176
+
147
177
 
148
178
  @staticmethod
149
179
  def positional_to_model(value):
@@ -19,6 +19,8 @@ import re # noqa: F401
19
19
  import six
20
20
 
21
21
  from flywheel.models.container_reference import ContainerReference # noqa: F401,E501
22
+ from flywheel.models.cvat_info import CVATInfo # noqa: F401,E501
23
+ from flywheel.models.file_parents import FileParents # noqa: F401,E501
22
24
  from flywheel.models.file_version import FileVersion # noqa: F401,E501
23
25
  from flywheel.models.file_version_copy_of import FileVersionCopyOf # noqa: F401,E501
24
26
  from flywheel.models.origin import Origin # noqa: F401,E501
@@ -34,6 +36,8 @@ class DeletedFile(object):
34
36
  'uuid': 'str',
35
37
  'size': 'int',
36
38
  'copy_of': 'FileVersionCopyOf',
39
+ 'cvat': 'CVATInfo',
40
+ 'parents': 'FileParents',
37
41
  'created': 'datetime',
38
42
  'deleted': 'datetime',
39
43
  'replaced': 'datetime',
@@ -49,6 +53,8 @@ class DeletedFile(object):
49
53
  'uuid': 'uuid',
50
54
  'size': 'size',
51
55
  'copy_of': 'copy_of',
56
+ 'cvat': 'cvat',
57
+ 'parents': 'parents',
52
58
  'created': 'created',
53
59
  'deleted': 'deleted',
54
60
  'replaced': 'replaced',
@@ -64,13 +70,15 @@ class DeletedFile(object):
64
70
  'uuid': 'uuid',
65
71
  'size': 'size',
66
72
  'copy_of': 'copy_of',
73
+ 'cvat': 'cvat',
74
+ 'parents': 'parents',
67
75
  'created': 'created',
68
76
  'deleted': 'deleted',
69
77
  'replaced': 'replaced',
70
78
  'hard_deleted': 'hard_deleted'
71
79
  }
72
80
 
73
- def __init__(self, id=None, origin=None, parent_ref=None, name=None, provider_id=None, uuid=None, size=None, copy_of=None, created=None, deleted=None, replaced=None, hard_deleted=None): # noqa: E501
81
+ def __init__(self, id=None, origin=None, parent_ref=None, name=None, provider_id=None, uuid=None, size=None, copy_of=None, cvat=None, parents=None, created=None, deleted=None, replaced=None, hard_deleted=None): # noqa: E501
74
82
  """DeletedFile - a model defined in Swagger"""
75
83
  super(DeletedFile, self).__init__()
76
84
 
@@ -82,6 +90,8 @@ class DeletedFile(object):
82
90
  self._uuid = None
83
91
  self._size = None
84
92
  self._copy_of = None
93
+ self._cvat = None
94
+ self._parents = None
85
95
  self._created = None
86
96
  self._deleted = None
87
97
  self._replaced = None
@@ -98,6 +108,10 @@ class DeletedFile(object):
98
108
  self.size = size
99
109
  if copy_of is not None:
100
110
  self.copy_of = copy_of
111
+ if cvat is not None:
112
+ self.cvat = cvat
113
+ if parents is not None:
114
+ self.parents = parents
101
115
  self.created = created
102
116
  self.deleted = deleted
103
117
  if replaced is not None:
@@ -273,6 +287,48 @@ class DeletedFile(object):
273
287
 
274
288
  self._copy_of = copy_of
275
289
 
290
+ @property
291
+ def cvat(self):
292
+ """Gets the cvat of this DeletedFile.
293
+
294
+
295
+ :return: The cvat of this DeletedFile.
296
+ :rtype: CVATInfo
297
+ """
298
+ return self._cvat
299
+
300
+ @cvat.setter
301
+ def cvat(self, cvat):
302
+ """Sets the cvat of this DeletedFile.
303
+
304
+
305
+ :param cvat: The cvat of this DeletedFile. # noqa: E501
306
+ :type: CVATInfo
307
+ """
308
+
309
+ self._cvat = cvat
310
+
311
+ @property
312
+ def parents(self):
313
+ """Gets the parents of this DeletedFile.
314
+
315
+
316
+ :return: The parents of this DeletedFile.
317
+ :rtype: FileParents
318
+ """
319
+ return self._parents
320
+
321
+ @parents.setter
322
+ def parents(self, parents):
323
+ """Sets the parents of this DeletedFile.
324
+
325
+
326
+ :param parents: The parents of this DeletedFile. # noqa: E501
327
+ :type: FileParents
328
+ """
329
+
330
+ self._parents = parents
331
+
276
332
  @property
277
333
  def created(self):
278
334
  """Gets the created of this DeletedFile.
@@ -24,6 +24,7 @@ class DownloadStrategy(str, enum.Enum):
24
24
  BULK = "bulk"
25
25
  CLASSIC = "classic"
26
26
  FULL = "full"
27
+ READ_TASK = "read_task"
27
28
 
28
29
  def __str__(self):
29
30
  return self.value
@@ -35,7 +35,7 @@ class FileVersion(object):
35
35
  'version': 'version'
36
36
  }
37
37
 
38
- def __init__(self, file_id=None, version=1): # noqa: E501
38
+ def __init__(self, file_id=None, version=0): # noqa: E501
39
39
  """FileVersion - a model defined in Swagger"""
40
40
  super(FileVersion, self).__init__()
41
41
 
@@ -38,7 +38,7 @@ class FixedFileVersionInput(object):
38
38
  'input': 'input'
39
39
  }
40
40
 
41
- def __init__(self, file_id=None, version=1, input=None): # noqa: E501
41
+ def __init__(self, file_id=None, version=0, input=None): # noqa: E501
42
42
  """FixedFileVersionInput - a model defined in Swagger"""
43
43
  super(FixedFileVersionInput, self).__init__()
44
44
 
@@ -19,6 +19,7 @@ import re # noqa: F401
19
19
  import six
20
20
 
21
21
  from flywheel.models.common_classification import CommonClassification # noqa: F401,E501
22
+ from flywheel.models.cvat_info import CVATInfo # noqa: F401,E501
22
23
 
23
24
  from .mixins import FileMixin
24
25
  class SearchFileResponse(FileMixin):
@@ -28,7 +29,8 @@ class SearchFileResponse(FileMixin):
28
29
  'created': 'datetime',
29
30
  'type': 'str',
30
31
  'name': 'str',
31
- 'size': 'int'
32
+ 'size': 'int',
33
+ 'cvat': 'CVATInfo'
32
34
  }
33
35
 
34
36
  attribute_map = {
@@ -36,7 +38,8 @@ class SearchFileResponse(FileMixin):
36
38
  'created': 'created',
37
39
  'type': 'type',
38
40
  'name': 'name',
39
- 'size': 'size'
41
+ 'size': 'size',
42
+ 'cvat': 'cvat'
40
43
  }
41
44
 
42
45
  rattribute_map = {
@@ -44,10 +47,11 @@ class SearchFileResponse(FileMixin):
44
47
  'created': 'created',
45
48
  'type': 'type',
46
49
  'name': 'name',
47
- 'size': 'size'
50
+ 'size': 'size',
51
+ 'cvat': 'cvat'
48
52
  }
49
53
 
50
- def __init__(self, classification=None, created=None, type=None, name=None, size=None): # noqa: E501
54
+ def __init__(self, classification=None, created=None, type=None, name=None, size=None, cvat=None): # noqa: E501
51
55
  """SearchFileResponse - a model defined in Swagger"""
52
56
  super(SearchFileResponse, self).__init__()
53
57
 
@@ -56,6 +60,7 @@ class SearchFileResponse(FileMixin):
56
60
  self._type = None
57
61
  self._name = None
58
62
  self._size = None
63
+ self._cvat = None
59
64
  self.discriminator = None
60
65
  self.alt_discriminator = None
61
66
 
@@ -69,6 +74,8 @@ class SearchFileResponse(FileMixin):
69
74
  self.name = name
70
75
  if size is not None:
71
76
  self.size = size
77
+ if cvat is not None:
78
+ self.cvat = cvat
72
79
 
73
80
  @property
74
81
  def classification(self):
@@ -183,6 +190,27 @@ class SearchFileResponse(FileMixin):
183
190
 
184
191
  self._size = size
185
192
 
193
+ @property
194
+ def cvat(self):
195
+ """Gets the cvat of this SearchFileResponse.
196
+
197
+
198
+ :return: The cvat of this SearchFileResponse.
199
+ :rtype: CVATInfo
200
+ """
201
+ return self._cvat
202
+
203
+ @cvat.setter
204
+ def cvat(self, cvat):
205
+ """Sets the cvat of this SearchFileResponse.
206
+
207
+
208
+ :param cvat: The cvat of this SearchFileResponse. # noqa: E501
209
+ :type: CVATInfo
210
+ """
211
+
212
+ self._cvat = cvat
213
+
186
214
 
187
215
  @staticmethod
188
216
  def positional_to_model(value):
@@ -54,7 +54,8 @@ class SessionCopyInput(object):
54
54
  self.discriminator = None
55
55
  self.alt_discriminator = None
56
56
 
57
- self.dst_session_label = dst_session_label
57
+ if dst_session_label is not None:
58
+ self.dst_session_label = dst_session_label
58
59
  if dst_project_id is not None:
59
60
  self.dst_project_id = dst_project_id
60
61
  if dst_subject_id is not None:
@@ -65,6 +66,7 @@ class SessionCopyInput(object):
65
66
  def dst_session_label(self):
66
67
  """Gets the dst_session_label of this SessionCopyInput.
67
68
 
69
+ Label to apply to the copied session
68
70
 
69
71
  :return: The dst_session_label of this SessionCopyInput.
70
72
  :rtype: str
@@ -75,6 +77,7 @@ class SessionCopyInput(object):
75
77
  def dst_session_label(self, dst_session_label):
76
78
  """Sets the dst_session_label of this SessionCopyInput.
77
79
 
80
+ Label to apply to the copied session
78
81
 
79
82
  :param dst_session_label: The dst_session_label of this SessionCopyInput. # noqa: E501
80
83
  :type: str
@@ -86,6 +89,7 @@ class SessionCopyInput(object):
86
89
  def dst_project_id(self):
87
90
  """Gets the dst_project_id of this SessionCopyInput.
88
91
 
92
+ Project to copy to
89
93
 
90
94
  :return: The dst_project_id of this SessionCopyInput.
91
95
  :rtype: str
@@ -96,6 +100,7 @@ class SessionCopyInput(object):
96
100
  def dst_project_id(self, dst_project_id):
97
101
  """Sets the dst_project_id of this SessionCopyInput.
98
102
 
103
+ Project to copy to
99
104
 
100
105
  :param dst_project_id: The dst_project_id of this SessionCopyInput. # noqa: E501
101
106
  :type: str
@@ -107,6 +112,7 @@ class SessionCopyInput(object):
107
112
  def dst_subject_id(self):
108
113
  """Gets the dst_subject_id of this SessionCopyInput.
109
114
 
115
+ Subject to copy to
110
116
 
111
117
  :return: The dst_subject_id of this SessionCopyInput.
112
118
  :rtype: str
@@ -117,6 +123,7 @@ class SessionCopyInput(object):
117
123
  def dst_subject_id(self, dst_subject_id):
118
124
  """Sets the dst_subject_id of this SessionCopyInput.
119
125
 
126
+ Subject to copy to
120
127
 
121
128
  :param dst_subject_id: The dst_subject_id of this SessionCopyInput. # noqa: E501
122
129
  :type: str
@@ -1,11 +1,11 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: flywheel-sdk
3
- Version: 20.3.0rc0
3
+ Version: 20.4.0
4
4
  Summary: Flywheel SDK
5
5
  Home-page:
6
6
  Author-email: support@flywheel.io
7
7
  License: Other/Proprietary
8
- Project-URL: Documentation, https://flywheel-io.gitlab.io/product/backend/sdk/branches/master/python
8
+ Project-URL: Documentation, https://api-docs.flywheel.io/
9
9
  Keywords: Swagger,Flywheel API,flywheel
10
10
  License-File: LICENSE.txt
11
11
  Requires-Dist: urllib3>=2.2.1
@@ -1,11 +1,11 @@
1
1
  flywheel/__init__.py,sha256=cHiW2b3yaRFfaz68ObkD2r40hK9hV8YrUVuqvipprz8,45074
2
- flywheel/api_client.py,sha256=xTz9lLlM7RZL47-GMufphp6QC7js8mjBHbOajkbtGck,29574
2
+ flywheel/api_client.py,sha256=juFwu0eaAxUyAbqFXxf6rEYhrhk1H_bAqn_9h-Fm2Wo,29570
3
3
  flywheel/client.py,sha256=LMvn2aSdtn-waCpXzux8FKJxEB0469SJg5ZNnB5BqTc,10476
4
- flywheel/configuration.py,sha256=XWzYqFyAAF1dRuKOmgd16mR8pOeYxteyUq1PAivIBk0,10830
4
+ flywheel/configuration.py,sha256=4WSc0nHUT7egNYfiaSDVTtD_rjpPu_0-wHFNFpXHu7U,10822
5
5
  flywheel/drone_login.py,sha256=8nELIBYBJMuPHQ0zdrGjWB20C3OTZbxpFVyxWmQ0kr0,2229
6
6
  flywheel/file_spec.py,sha256=0BnFgyH0qsDxuupJG5_g9LX2cLq7JxRiSODN3HdI-ak,2220
7
7
  flywheel/finder.py,sha256=h5hxD03Ye4lZJflxh3Ub_zwFS273wWq2wTLf2CQz-lM,6887
8
- flywheel/flywheel.py,sha256=OGPl9duh6Ekb-1Tye4Yd_KuSBWgx0H5gEiTZTfGwrPA,414531
8
+ flywheel/flywheel.py,sha256=bktM9cvllCSLTJjHSCJ88zcbBC-z_oK6ikkAqcij0mM,414527
9
9
  flywheel/gear_context.py,sha256=cFJs8cC_on6v184HVUTXSSVS9y5ee73QN0lCkPTQ5jk,13701
10
10
  flywheel/partial_reader.py,sha256=SkMgwaGZeeVaN7f9dzmVitBFnQv8ARLJgEaQP36l92s,1222
11
11
  flywheel/rest.py,sha256=Luybe_pjqufXgw3LHSwPrSWFKrrAH6UU3IvTtSeCoAQ,13604
@@ -47,7 +47,7 @@ flywheel/api/uids_api.py,sha256=MjH6i7ASSUa1VGIZVuTHIJFelWM7drswXJVhKxk05eg,5032
47
47
  flywheel/api/upload_api.py,sha256=pMjW-OAIZnjqF05ym8vjPga-vYRq69aDa0zFSMUbxeU,38854
48
48
  flywheel/api/users_api.py,sha256=CGylcLYcF0XYIdaeVNpe6I-llsNpyaQq6YlHPmJwzAE,86167
49
49
  flywheel/api/views_api.py,sha256=Xk0N-j_CRAglraip5Uw_tzDVfmW7Fy1IgTofZ_RinEI,44765
50
- flywheel/models/__init__.py,sha256=sJF-A56zk5WMH4O_YCim6awFksS-4rJQQUQNSeFkOsI,42893
50
+ flywheel/models/__init__.py,sha256=K97kT1BupaGE4nz3GT47mGBlincU0l_A7H996WpOrgg,42889
51
51
  flywheel/models/access_level.py,sha256=zSgO2gWTTSo-p1v49ilz3Q5ZizZ7DESA5P6Ur67fgX0,575
52
52
  flywheel/models/access_permission.py,sha256=-IYmy-yb8zecmGZx7iE0bhZW7PvuWpm3zAHr2FwCyLI,5336
53
53
  flywheel/models/access_permission_output.py,sha256=faCnvyMYozmSVSlLFYMdJw84hQc3ugxx7LH2JzBfnoE,5202
@@ -184,7 +184,7 @@ flywheel/models/create_report_input.py,sha256=JpkgTHRQA8TK_K1ViU5utiX_XV0YIO1Zek
184
184
  flywheel/models/creds.py,sha256=kFhJ7_1zmHzHneoan4XKlJ7iRDIgZKuZFbnjCBQg28o,3876
185
185
  flywheel/models/curator.py,sha256=S1yhs6s-gCj-Zqz0NWrXE873xsBq7Ha4Ym82qWeABDs,5726
186
186
  flywheel/models/current_user_output.py,sha256=p7Zlfajmtqf3PRbDLBtvGhPKaU6zv2QVRvc5oiYp4GY,17621
187
- flywheel/models/cvat_info.py,sha256=XpdHjTuZv0mXRl3vI7ZP2NBHAEba1H11zkt6tgRACKc,6413
187
+ flywheel/models/cvat_info.py,sha256=A7buPcdRdkNanXXu3gE3Hpmx-4Sb3iMw0HVgZshv4Go,7282
188
188
  flywheel/models/cvat_settings.py,sha256=e1SaRBO-I6T9cTvKHZYCZAgBKi0N6Vueh9SrAJiRh8g,7688
189
189
  flywheel/models/cvat_settings_input.py,sha256=ApMhgrc_sBPtpqCmDXscDhGPmFJOxpvE9Qd7xWq5mlA,7807
190
190
  flywheel/models/cvat_sync_state.py,sha256=0VfuWGj-7185nuuITk3g55sf41Y3C8KLXsNtU6r7iIo,601
@@ -207,7 +207,7 @@ flywheel/models/data_view_zip_filter_spec.py,sha256=60_tTjdrqUw0d-QLl4pHjKMFu1Ya
207
207
  flywheel/models/default_flywheel_role.py,sha256=-AjXC5pWQXf7OmTDAWcGvaadd49ofv4HFuLdpj9iJKU,583
208
208
  flywheel/models/deid_log_skip_reason.py,sha256=KtHQjBrER4gEk8vXd1cjvuJDQ7LajqwgHuDgWDAMs74,615
209
209
  flywheel/models/delete_by_search_query.py,sha256=5pcSY1SSQsqOwUAo2GYswngRsg8aMSxMU7BmlSt5Ktk,7541
210
- flywheel/models/deleted_file.py,sha256=VrwLIAu1316bVu6gk41czolPCmZnvmUm_4AdKSh9iM0,11647
210
+ flywheel/models/deleted_file.py,sha256=pXuswES_iNT76VHtr6EImVklGUytTuATmW04F313jZg,13028
211
211
  flywheel/models/deleted_result.py,sha256=3FAnMsLOoT20mch6-wNRSvFOkEJbetm45_oR7CHEorE,5584
212
212
  flywheel/models/deprecated_action.py,sha256=iuUrtOSr6r2iW-s6dK7YVFf3e-QfGySLE9CmO2sdbD8,602
213
213
  flywheel/models/destination_container_type.py,sha256=o8DNvTa4ccx3bC4S8YCJjyhYy3L9D_NpZhjePz6x4Zk,618
@@ -230,7 +230,7 @@ flywheel/models/download_filter_definition.py,sha256=hcSAqaErKORZsu1dsHnohHq33gX
230
230
  flywheel/models/download_format.py,sha256=F09wVpFF-A6EJ3TgJWwNq2_PdYFQ8b6FUdahhN9_gh4,562
231
231
  flywheel/models/download_input.py,sha256=Ajf4055eSR4S1WTtDvDywY05ij67PM8RCPQAOH3mPV4,502
232
232
  flywheel/models/download_node.py,sha256=KYMz2kPe6Wu-I5E2trwMWW4Aepg8fJ6w0Yi_xYbiobw,4964
233
- flywheel/models/download_strategy.py,sha256=OuA6DjsrHXDAn3ZY04JWhi8g4yn9tDDyFpQb_XC0ZGM,592
233
+ flywheel/models/download_strategy.py,sha256=o_piaw9qHVVEULPhPTG5HgZ-LDietjStEmQH3p2G_-g,620
234
234
  flywheel/models/download_ticket.py,sha256=JDTgQRY5E3fW5i__u3zvAj3Skj4LBd9XOttk4PUqsHk,922
235
235
  flywheel/models/download_ticket_stub.py,sha256=_JRtcPO_CTgrAvWyq_6NyA3uyIqHVo1nty-5knyCa6E,6875
236
236
  flywheel/models/download_ticket_with_summary.py,sha256=1T0rhLDMp3AnjsBXzslLIKxYSwPKncmI7-Tlr2v3AmI,933
@@ -267,7 +267,7 @@ flywheel/models/file_template_options.py,sha256=1L3jjdmJeLpdPhUbei2rm1lXssaPedh4
267
267
  flywheel/models/file_upsert_input.py,sha256=_njhAlq6EsK8oe-52nlDS6EUk3wf3bhWAJJcQFDw3V0,16182
268
268
  flywheel/models/file_upsert_origin.py,sha256=pjyD3ZGWNpAO1IvXo1uC7pQchnZjRlshhY9s0KjgkRc,886
269
269
  flywheel/models/file_upsert_output.py,sha256=cYYAMFgweTuRUDg-rGoUiFSC1JgUrkO9W1oQDbzHFaY,31057
270
- flywheel/models/file_version.py,sha256=CkTYvamplVpFv34M9EWADkdlCLWgnsgnIbkzKV4Ymmk,5130
270
+ flywheel/models/file_version.py,sha256=ScZKDvrGukrPZF--M1XwSERZxnHLfx7VHXRQk-KJcKQ,5130
271
271
  flywheel/models/file_version_copy_of.py,sha256=NyZMHGDbwJcBnj-L3ZvauA3Gdqfgr50KZYIx04O6IkM,7463
272
272
  flywheel/models/file_version_output.py,sha256=Zpk9zSuJEb7V-tuWaCS7sobWjvA4X2MnQwG13CoRW_0,8701
273
273
  flywheel/models/file_via.py,sha256=kIhCxUHWLjS06TLxpGT0BwxPcCasDktqBletmbCLvyI,6095
@@ -275,7 +275,7 @@ flywheel/models/file_zip_entry.py,sha256=KjeEZ64xYZxor-8pOtFItrvW3RaoJvsuSO15zQk
275
275
  flywheel/models/file_zip_info.py,sha256=tSmkUbp4lqjZ995s8-ZGwAO0NfM-sT_IgeQ8Um1MZ9c,510
276
276
  flywheel/models/filter.py,sha256=H7dfOmWfc0cfUUlVvayZRkW7p5b-RgJ9BKclXdU0kSY,6041
277
277
  flywheel/models/filter_values.py,sha256=Djbju2DzQp7tiF4Ms4WTo9aNRzuyaCcedZ1Han_it84,5355
278
- flywheel/models/fixed_file_version_input.py,sha256=p33tDJS5DyQ4eoBDZhWjl0gfjx05xuFG2oQrGCyW-nU,5847
278
+ flywheel/models/fixed_file_version_input.py,sha256=9CAhiDvBkywoATGzKh4ltO2BJF72vo-j4AXVb3KpCps,5847
279
279
  flywheel/models/fixed_input.py,sha256=H0cFpldGBnSe8W87wTyMWGHSqkkU2H6x7Cp97-OAG-k,7345
280
280
  flywheel/models/form_definition.py,sha256=ojwrh7ueipNBUYsYHQaMGq3nJOTZJrTxBc0U4YIrNvs,4612
281
281
  flywheel/models/gcp_creds.py,sha256=PrVy6vYdwB6lLEwhoOhfaIaV9xpGCExWGwKEaiXfm5Q,10891
@@ -589,7 +589,7 @@ flywheel/models/save_search_update.py,sha256=dXLl5huhsGxhtXFh0BPRVOmQydS5JL4i47-
589
589
  flywheel/models/search_acquisition_response.py,sha256=HK4mCG3q7sBr2SQ9Iy0Pq9zKn0ImNwV9sUoe_H80-Og,6896
590
590
  flywheel/models/search_analysis_response.py,sha256=T-ZadT7J-0nkuKgbb17xymggKrVbVVvMGbjeCZdTzD8,6765
591
591
  flywheel/models/search_collection_response.py,sha256=rgok6AEB5xa9yMrbxA0MF2sd4pr6VrgtprHl98FTmg4,6875
592
- flywheel/models/search_file_response.py,sha256=WfZRwwKvGCLKQw8i_tYm7Vukr5efk6xw-jAI86irwzs,7750
592
+ flywheel/models/search_file_response.py,sha256=jhqpD5XjhdHTfkyVywXevTnK-a4o1ZlIBEE2zCBQvOY,8428
593
593
  flywheel/models/search_group_response.py,sha256=aXWrqYkRH7AWjHwOHlqIYbav_K-w0Uq9OsuVDbgUdmk,5272
594
594
  flywheel/models/search_parent_acquisition.py,sha256=dmopV_wckUIaASQg2p-R6UKGI4RrJFvkEZR_Fz4VTeU,1542
595
595
  flywheel/models/search_parent_analysis.py,sha256=zV_OrxxmObj42Qc0z0gy-FJaA-1EKTkpdamUWUA6wiE,1592
@@ -619,7 +619,7 @@ flywheel/models/service_aet.py,sha256=Gr2CsDqGOeIO7dEEJc4vFzeI6GAZH2rl-VlaCc_f6Y
619
619
  flywheel/models/service_aet_input.py,sha256=ZiOQUFT8vYOsDvc1hUzgai5B7Kfn-GC02U7oZy3KJ8k,7119
620
620
  flywheel/models/session.py,sha256=g8w6BT0P6nT3gFjl9ruDJXnHWWDnNIdBOzLAyPogKfU,512
621
621
  flywheel/models/session_container_output.py,sha256=gpJk2UzU4yebx4rJ8WCH-YffCsh6lQZY_UCJrY_3rLU,1029
622
- flywheel/models/session_copy_input.py,sha256=7B99BUHWkb4XOHZXaUma_jz6fkRwP8eqLnjsuGqqJrQ,7056
622
+ flywheel/models/session_copy_input.py,sha256=FMLH8HvS9ttsspcKnSNWcv2i7nrbBWbW8H0k5JHhnxA,7300
623
623
  flywheel/models/session_embedded_subject.py,sha256=cfdNfZ-IV1xpolhv-PTLvHZyu3um-Te_3DRoYhj7hFE,7799
624
624
  flywheel/models/session_input.py,sha256=9TtozWniwYzahR6y-82yL20S6QLpd4BaAxt5QtFn09w,11016
625
625
  flywheel/models/session_list_output.py,sha256=Ak_O7L4DmD6vWJBLCKJUhrZaOBe0e5xFF5LTSCugSGc,23850
@@ -709,8 +709,8 @@ flywheel/models/virus_scan_state.py,sha256=zBmk7x3ZoDhEozIeD-Gw7CEkU7yWYKFMFXklL
709
709
  flywheel/models/work_in_progress_features.py,sha256=dZ_cJTztcU3wPIUKptwZzb7hdv9mo27wXfWgolkJa1k,3944
710
710
  flywheel/models/zipfile_info.py,sha256=8ivqs0rTQaiC8KirTaK_WqSGkLvCndI_58dylOBKwa4,5243
711
711
  flywheel/models/zipfile_member_info.py,sha256=zAg9wRUeYXbz6bvXdo4xYFHtvv9eRSCjvyaTrQ3zvN4,6346
712
- flywheel_sdk-20.3.0rc0.dist-info/licenses/LICENSE.txt,sha256=F_Wp8b8L-2vc2xxcRr402gN1gg-2y0p2oG8aSj3hdMA,1057
713
- flywheel_sdk-20.3.0rc0.dist-info/METADATA,sha256=NtIqDqg4yNtqJYqerh9AHDdTMoaP2I6kHY5RLDuRwa0,1046
714
- flywheel_sdk-20.3.0rc0.dist-info/WHEEL,sha256=MAQBAzGbXNI3bUmkDsiV_duv8i-gcdnLzw7cfUFwqhU,109
715
- flywheel_sdk-20.3.0rc0.dist-info/top_level.txt,sha256=BQ1fXyhiudo2To7zMNcPOOGa6qtZuhx0V_I7CO-vU6w,9
716
- flywheel_sdk-20.3.0rc0.dist-info/RECORD,,
712
+ flywheel_sdk-20.4.0.dist-info/licenses/LICENSE.txt,sha256=F_Wp8b8L-2vc2xxcRr402gN1gg-2y0p2oG8aSj3hdMA,1057
713
+ flywheel_sdk-20.4.0.dist-info/METADATA,sha256=stJCOoMjSDAl8gngeQiCRIVrAN8FHstkL9--O1RATZk,1000
714
+ flywheel_sdk-20.4.0.dist-info/WHEEL,sha256=JNWh1Fm1UdwIQV075glCn4MVuCRs0sotJIq-J6rbxCU,109
715
+ flywheel_sdk-20.4.0.dist-info/top_level.txt,sha256=BQ1fXyhiudo2To7zMNcPOOGa6qtZuhx0V_I7CO-vU6w,9
716
+ flywheel_sdk-20.4.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (78.1.0)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py2-none-any
5
5
  Tag: py3-none-any