flywheel-sdk 18.5.0rc0__py2.py3-none-any.whl → 19.0.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.
- flywheel/__init__.py +2 -2
- flywheel/api/files_api.py +3 -3
- flywheel/api/projects_api.py +5 -1
- flywheel/api_client.py +1 -1
- flywheel/configuration.py +2 -2
- flywheel/flywheel.py +39 -8
- flywheel/models/__init__.py +3 -3
- flywheel/models/acquisition_list_output.py +3 -2
- flywheel/models/acquisition_upsert_input.py +4 -4
- flywheel/models/analysis_list_output.py +2 -4
- flywheel/models/analysis_list_output_inflated_job.py +2 -4
- flywheel/models/analysis_output.py +2 -4
- flywheel/models/analysis_output_inflated_job.py +2 -4
- flywheel/models/classic_batch_proposal_input.py +1 -2
- flywheel/models/classic_batch_proposal_output.py +2 -4
- flywheel/models/column.py +3 -4
- flywheel/models/container_pipeline_input.py +1 -2
- flywheel/models/{core_models_source_source.py → core_models_common_source.py} +12 -12
- flywheel/models/data_view_column_alias.py +2 -2
- flywheel/models/data_view_execution.py +2 -2
- flywheel/models/features.py +4 -31
- flywheel/models/field_change.py +1 -2
- flywheel/models/file.py +4 -4
- flywheel/models/file_upsert_input.py +4 -4
- flywheel/models/gear_context_value_output.py +1 -2
- flywheel/models/header_feature.py +1 -0
- flywheel/models/jupyterlab_server_response.py +2 -4
- flywheel/models/{page_file_output_.py → page_generic_file_output.py} +16 -16
- flywheel/models/project_hierarchy_input.py +4 -4
- flywheel/models/project_list_output.py +2 -4
- flywheel/models/project_output.py +2 -4
- flywheel/models/search_parent_acquisition.py +1 -0
- flywheel/models/search_parent_analysis.py +1 -0
- flywheel/models/search_parent_collection.py +1 -0
- flywheel/models/search_parent_project.py +1 -0
- flywheel/models/search_parent_response.py +4 -3
- flywheel/models/search_parent_session.py +1 -0
- flywheel/models/session_list_output.py +2 -4
- flywheel/models/session_output.py +2 -4
- flywheel/models/session_upsert_input.py +4 -4
- flywheel/models/structured_query_value_suggestion.py +58 -4
- flywheel/models/subject_output_for_list.py +2 -4
- flywheel/models/subject_upsert_input.py +4 -4
- flywheel/models/version.py +30 -1
- {flywheel_sdk-18.5.0rc0.dist-info → flywheel_sdk-19.0.0rc0.dist-info}/METADATA +6 -6
- {flywheel_sdk-18.5.0rc0.dist-info → flywheel_sdk-19.0.0rc0.dist-info}/RECORD +49 -49
- {flywheel_sdk-18.5.0rc0.dist-info → flywheel_sdk-19.0.0rc0.dist-info}/WHEEL +1 -1
- {flywheel_sdk-18.5.0rc0.dist-info → flywheel_sdk-19.0.0rc0.dist-info}/LICENSE.txt +0 -0
- {flywheel_sdk-18.5.0rc0.dist-info → flywheel_sdk-19.0.0rc0.dist-info}/top_level.txt +0 -0
flywheel/models/version.py
CHANGED
|
@@ -23,6 +23,7 @@ class Version(object):
|
|
|
23
23
|
swagger_types = {
|
|
24
24
|
'id': 'str',
|
|
25
25
|
'database': 'int',
|
|
26
|
+
'database_target': 'int',
|
|
26
27
|
'release': 'str',
|
|
27
28
|
'flywheel_release': 'str',
|
|
28
29
|
'cli_version': 'str',
|
|
@@ -33,6 +34,7 @@ class Version(object):
|
|
|
33
34
|
attribute_map = {
|
|
34
35
|
'id': '_id',
|
|
35
36
|
'database': 'database',
|
|
37
|
+
'database_target': 'database_target',
|
|
36
38
|
'release': 'release',
|
|
37
39
|
'flywheel_release': 'flywheel_release',
|
|
38
40
|
'cli_version': 'cli_version',
|
|
@@ -43,6 +45,7 @@ class Version(object):
|
|
|
43
45
|
rattribute_map = {
|
|
44
46
|
'_id': 'id',
|
|
45
47
|
'database': 'database',
|
|
48
|
+
'database_target': 'database_target',
|
|
46
49
|
'release': 'release',
|
|
47
50
|
'flywheel_release': 'flywheel_release',
|
|
48
51
|
'cli_version': 'cli_version',
|
|
@@ -50,12 +53,13 @@ class Version(object):
|
|
|
50
53
|
'applied_fixes': 'applied_fixes'
|
|
51
54
|
}
|
|
52
55
|
|
|
53
|
-
def __init__(self, id=None, database=None, release='', flywheel_release='', cli_version='', applied_checks=None, applied_fixes=None): # noqa: E501
|
|
56
|
+
def __init__(self, id=None, database=None, database_target=None, release='', flywheel_release='', cli_version='', applied_checks=None, applied_fixes=None): # noqa: E501
|
|
54
57
|
"""Version - a model defined in Swagger"""
|
|
55
58
|
super(Version, self).__init__()
|
|
56
59
|
|
|
57
60
|
self._id = None
|
|
58
61
|
self._database = None
|
|
62
|
+
self._database_target = None
|
|
59
63
|
self._release = None
|
|
60
64
|
self._flywheel_release = None
|
|
61
65
|
self._cli_version = None
|
|
@@ -66,6 +70,8 @@ class Version(object):
|
|
|
66
70
|
|
|
67
71
|
self.id = id
|
|
68
72
|
self.database = database
|
|
73
|
+
if database_target is not None:
|
|
74
|
+
self.database_target = database_target
|
|
69
75
|
if release is not None:
|
|
70
76
|
self.release = release
|
|
71
77
|
if flywheel_release is not None:
|
|
@@ -121,6 +127,29 @@ class Version(object):
|
|
|
121
127
|
|
|
122
128
|
self._database = database
|
|
123
129
|
|
|
130
|
+
@property
|
|
131
|
+
def database_target(self):
|
|
132
|
+
"""Gets the database_target of this Version.
|
|
133
|
+
|
|
134
|
+
Core database target version
|
|
135
|
+
|
|
136
|
+
:return: The database_target of this Version.
|
|
137
|
+
:rtype: int
|
|
138
|
+
"""
|
|
139
|
+
return self._database_target
|
|
140
|
+
|
|
141
|
+
@database_target.setter
|
|
142
|
+
def database_target(self, database_target):
|
|
143
|
+
"""Sets the database_target of this Version.
|
|
144
|
+
|
|
145
|
+
Core database target version
|
|
146
|
+
|
|
147
|
+
:param database_target: The database_target of this Version. # noqa: E501
|
|
148
|
+
:type: int
|
|
149
|
+
"""
|
|
150
|
+
|
|
151
|
+
self._database_target = database_target
|
|
152
|
+
|
|
124
153
|
@property
|
|
125
154
|
def release(self):
|
|
126
155
|
"""Gets the release of this Version.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: flywheel-sdk
|
|
3
|
-
Version:
|
|
3
|
+
Version: 19.0.0rc0
|
|
4
4
|
Summary: Flywheel SDK
|
|
5
5
|
Home-page:
|
|
6
6
|
Author-email: support@flywheel.io
|
|
@@ -9,12 +9,12 @@ Project-URL: Documentation, https://flywheel-io.gitlab.io/product/backend/sdk/br
|
|
|
9
9
|
Project-URL: Source, https://gitlab.com/flywheel-io/product/backend/core
|
|
10
10
|
Keywords: Swagger,Flywheel API,flywheel
|
|
11
11
|
License-File: LICENSE.txt
|
|
12
|
-
Requires-Dist: urllib3 >=2.2.1
|
|
13
|
-
Requires-Dist: six >=1.16
|
|
14
|
-
Requires-Dist: certifi >=2024.2.2
|
|
15
|
-
Requires-Dist: python-dateutil >=2.8.1
|
|
12
|
+
Requires-Dist: urllib3 (>=2.2.1)
|
|
13
|
+
Requires-Dist: six (>=1.16)
|
|
14
|
+
Requires-Dist: certifi (>=2024.2.2)
|
|
15
|
+
Requires-Dist: python-dateutil (>=2.8.1)
|
|
16
16
|
Requires-Dist: packaging
|
|
17
|
-
Requires-Dist: requests >=2.18.4
|
|
17
|
+
Requires-Dist: requests (>=2.18.4)
|
|
18
18
|
Requires-Dist: requests-toolbelt
|
|
19
19
|
|
|
20
20
|
|
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
flywheel/__init__.py,sha256=
|
|
2
|
-
flywheel/api_client.py,sha256=
|
|
1
|
+
flywheel/__init__.py,sha256=ovf4CvzAp9N02SGef9FqDai1yJXcmu2xBCWfYirP3ms,44872
|
|
2
|
+
flywheel/api_client.py,sha256=F0SlmPA2JarP4lENcOEYo17Wfbfl687y59UmXCI5o8k,28940
|
|
3
3
|
flywheel/client.py,sha256=LMvn2aSdtn-waCpXzux8FKJxEB0469SJg5ZNnB5BqTc,10476
|
|
4
|
-
flywheel/configuration.py,sha256=
|
|
4
|
+
flywheel/configuration.py,sha256=90oTqq2lemtOzBSKEPT7Mng3vToI8_2Yd_RX_Alr04w,8647
|
|
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=ueECCweO48TTAJXudzh3xBbqyhV-Vbzt1NnPUSqEU9U,6739
|
|
8
|
-
flywheel/flywheel.py,sha256=
|
|
8
|
+
flywheel/flywheel.py,sha256=_OM9rwhs4_o7sUfp4B3CMzw6ALPzDhh7-72NQhPqUCE,394239
|
|
9
9
|
flywheel/gear_context.py,sha256=xOjNzpReJPAKhdpfpQ-gDwsDoIdxAcS5CG-b1pJ69-o,13338
|
|
10
10
|
flywheel/partial_reader.py,sha256=SkMgwaGZeeVaN7f9dzmVitBFnQv8ARLJgEaQP36l92s,1222
|
|
11
11
|
flywheel/rest.py,sha256=hRPcmGLghBkiZ06jyFEE39iEdP0-6o4pDWj2Ocl7mSc,13119
|
|
@@ -27,14 +27,14 @@ flywheel/api/dataexplorer_api.py,sha256=nxNB0E_1VcOceyms6GdiS5o-UT0OlShSwuxOCL7h
|
|
|
27
27
|
flywheel/api/devices_api.py,sha256=jAQ9IRm0fqJWHuJwhTKmOIDAVNNjfdVCSIX2XvRl2hk,39374
|
|
28
28
|
flywheel/api/dimse_api.py,sha256=rTPcy5CTFFnpx1YWSuhsWMNjW4c9nTV85Q8EY1QcGN8,29974
|
|
29
29
|
flywheel/api/download_api.py,sha256=fFOA8DgRq1yknYQ6YZC26fcaZDhGIDnGuWMjvYD_Ans,10590
|
|
30
|
-
flywheel/api/files_api.py,sha256=
|
|
30
|
+
flywheel/api/files_api.py,sha256=lwOeSvj5DPVQsKvWu18Ma0Xb0EpgLyjd_1l71Ne-JZE,45535
|
|
31
31
|
flywheel/api/gears_api.py,sha256=7vlmbJtmaVBnPoI3BRPc3EoQ28raVZh0x-5TobeTqcI,73128
|
|
32
32
|
flywheel/api/groups_api.py,sha256=h8lOXjpuVDB32isLSqFjtTfoI5quHi_WBeBZNliHSdA,105316
|
|
33
33
|
flywheel/api/jobs_api.py,sha256=7FULp8eICFjCQLhYGHHOaAdaF86D6Pc98eGocaLeByU,73651
|
|
34
34
|
flywheel/api/jupyterlab_servers_api.py,sha256=FiwtzKL6SClFXiBnzbf5dtjHCjonMQ3jB7FHlrFNGQM,9180
|
|
35
35
|
flywheel/api/modalities_api.py,sha256=upQC0IB11zP08V2j0zXrd0b9A0xwr-u9pQNrOCO9N-U,20862
|
|
36
36
|
flywheel/api/packfiles_api.py,sha256=3IQHwnmjCYBw7L4gJIxnZwpGdIT6LqEZPb-eIHG3t8o,3847
|
|
37
|
-
flywheel/api/projects_api.py,sha256=
|
|
37
|
+
flywheel/api/projects_api.py,sha256=fEfKDcsYZ4n6TsW35_vpBdtcmSFY0tIUFWhc0aV5pQw,324256
|
|
38
38
|
flywheel/api/reports_api.py,sha256=6WW5CroopwNrw6GBE0_R34stBWbyqUXgRoyiHkAAZE4,36251
|
|
39
39
|
flywheel/api/resolve_api.py,sha256=6yuXytZnhpFBPz0x5TN1B57jtRn9kuSqth6WtXWSYaw,11603
|
|
40
40
|
flywheel/api/roles_api.py,sha256=ncA8ys7TC6Z_ciwzRR-uZZ_hsUAAl5oVDVjZIqfg7HA,20692
|
|
@@ -46,7 +46,7 @@ flywheel/api/uids_api.py,sha256=mFStWRKbdgymR_FYDHq8EsOiTfDKjz2XEcWT1XQUYtQ,4946
|
|
|
46
46
|
flywheel/api/upload_api.py,sha256=emrzAmurhGb-uBI7Ewckbn5DyP9LBkfn6OI1zxhKnb8,38540
|
|
47
47
|
flywheel/api/users_api.py,sha256=ThTGkL_oE-ixB9akEZEm2pogkYBa_m9qAM52W5ClRC0,82850
|
|
48
48
|
flywheel/api/views_api.py,sha256=Xshmzxd9XEwWavyMCzKwDXp_4Hep4-6MFOEBM_lBato,44403
|
|
49
|
-
flywheel/models/__init__.py,sha256
|
|
49
|
+
flywheel/models/__init__.py,sha256=-nTiMy_J591Mu40MxnsBpnsdIxCmhq4pZ4-_XkB1QSY,42752
|
|
50
50
|
flywheel/models/access_level.py,sha256=zSgO2gWTTSo-p1v49ilz3Q5ZizZ7DESA5P6Ur67fgX0,575
|
|
51
51
|
flywheel/models/access_permission.py,sha256=-IYmy-yb8zecmGZx7iE0bhZW7PvuWpm3zAHr2FwCyLI,5336
|
|
52
52
|
flywheel/models/access_permission_output.py,sha256=faCnvyMYozmSVSlLFYMdJw84hQc3ugxx7LH2JzBfnoE,5202
|
|
@@ -56,13 +56,13 @@ flywheel/models/accumulator.py,sha256=GsvpdVztFdUAdDJHUqvKB_SOC3SGjxMQbKULGkOwP0
|
|
|
56
56
|
flywheel/models/acquisition.py,sha256=n5OOI9hIqmzcpLuVgricOa_eijY-g4quuh6AG16Sxos,528
|
|
57
57
|
flywheel/models/acquisition_container_output.py,sha256=Fa2IsV9hFJq5sZTVpS4b_iB-VDKIhH-zTvhC0sh4YZU,907
|
|
58
58
|
flywheel/models/acquisition_input.py,sha256=qtLelP2kohg00tfqX3cbtgbCkEeeMf3aCDbf8AKqnP8,7671
|
|
59
|
-
flywheel/models/acquisition_list_output.py,sha256=
|
|
59
|
+
flywheel/models/acquisition_list_output.py,sha256=ynsNkFiahVTmWg2VwYHzeG5L3gaJsZErhfQk9qBeg1s,19980
|
|
60
60
|
flywheel/models/acquisition_modify_input.py,sha256=xqX22pZJejfgUyOnMcCwefT2jwJ_lqhgfntGlk_C83I,7909
|
|
61
61
|
flywheel/models/acquisition_node.py,sha256=TG0KQDW2LaLV19rKn7pv0pevADem3z9TBo1AAsmBET0,1054
|
|
62
62
|
flywheel/models/acquisition_output.py,sha256=hsWBlti0YXIr-S-s-46UtxS3f-OwAZ_XLjZ60R0W2Mo,19609
|
|
63
63
|
flywheel/models/acquisition_parents.py,sha256=G-mcOdBtSJZQPbD6mSgfez3AZ-FYQf_oXg4z6mgt1M0,6393
|
|
64
64
|
flywheel/models/acquisition_template_options.py,sha256=bbvtpv0DD24UjtJLA6tuC2NgifwoLAap7Lno6j8Eeuk,7436
|
|
65
|
-
flywheel/models/acquisition_upsert_input.py,sha256=
|
|
65
|
+
flywheel/models/acquisition_upsert_input.py,sha256=OKyzNC8CvrhKwl4ikcmDR2OTgEt3Kncp_NLhM_B6ct4,9423
|
|
66
66
|
flywheel/models/acquisition_upsert_output.py,sha256=KvOcTqnJq_oct1XzblgdetZJKRviSTTAKa8TmYBL4dY,6498
|
|
67
67
|
flywheel/models/action.py,sha256=cGpXexD3OmJMJLqKTgn8XEzo4wF1wsEV4rmIK-eP6Hw,3322
|
|
68
68
|
flywheel/models/adhoc_analysis_input.py,sha256=aysSK-CiV76WN5tUYvNObBivFDYjIcu-NEXTky3TWzw,6633
|
|
@@ -71,12 +71,12 @@ flywheel/models/analysis_container_output.py,sha256=Vptxnt3l9_UPQfaJ6EntrPxZL20O
|
|
|
71
71
|
flywheel/models/analysis_files_create_ticket_output.py,sha256=NMbMY2Gd0O8VIHYnpGMgG56i5Mi-ZovNs62sOjcsum8,6653
|
|
72
72
|
flywheel/models/analysis_input.py,sha256=YmY1R6lo22rkevxU5j0ufX8qi13X5Z0m0xOA7V8gMQQ,8406
|
|
73
73
|
flywheel/models/analysis_input_legacy.py,sha256=5wdETgwaKdExBdXJjD-pye1hCvEEDaFcK0GpHejsld4,524
|
|
74
|
-
flywheel/models/analysis_list_output.py,sha256=
|
|
75
|
-
flywheel/models/analysis_list_output_inflated_job.py,sha256=
|
|
74
|
+
flywheel/models/analysis_list_output.py,sha256=mukPmIMpIo8H66MfY7HHEu6B__br-pTkxTYmamRhf70,18073
|
|
75
|
+
flywheel/models/analysis_list_output_inflated_job.py,sha256=CLVtbqmIXpqfcvpwUaKSOP47-SaJkt8hLaRDd4uRM-o,18210
|
|
76
76
|
flywheel/models/analysis_modify_input.py,sha256=4cM87tlxJqGpK3UjnKS-vMdVnSAF9raak7CJ7XDvC5s,5309
|
|
77
77
|
flywheel/models/analysis_node.py,sha256=0VWp_qAjdHFCbEBuI8EYeUHgauv1AxVbdnlulFs5tfE,1104
|
|
78
|
-
flywheel/models/analysis_output.py,sha256=
|
|
79
|
-
flywheel/models/analysis_output_inflated_job.py,sha256=
|
|
78
|
+
flywheel/models/analysis_output.py,sha256=blzMTFzyny5IMt7HRF5kFLZ0ayIPPQA1ldgBHjFoRa0,17829
|
|
79
|
+
flywheel/models/analysis_output_inflated_job.py,sha256=Ib0sP5UJteCbzCBVQrJXgosesEvZNRx43TdTrvy_CXk,18266
|
|
80
80
|
flywheel/models/analysis_parents.py,sha256=hQgTsQnqtO4H_cTJciH36PPez9y-fOiqSkshvFqScPI,7144
|
|
81
81
|
flywheel/models/analysis_update.py,sha256=gcx1GL8H0cI8HUNZVze3WnzTFryK2S7IizAAGFdcP2Q,538
|
|
82
82
|
flywheel/models/api_key_input_with_optional_label.py,sha256=L3326OB84_ValnvHECPxEZATNP-Yad6xdRupQk_rhKk,5410
|
|
@@ -123,8 +123,8 @@ flywheel/models/change_log_document.py,sha256=O9rreKhcTFhjbeX3qnNCS0GB48Mk8FxEl2
|
|
|
123
123
|
flywheel/models/change_method.py,sha256=vyVNNA_-MOeZRkw98-YdjI-4J14rJ7uIvJrh8XFmikE,680
|
|
124
124
|
flywheel/models/classic_batch_job_output.py,sha256=5UgqjarwHQ5hNl075JI__xc0nmn5TG53xEv06zY8Qj4,9134
|
|
125
125
|
flywheel/models/classic_batch_job_output_inflated_jobs.py,sha256=tXALFo1ulkCO02M2HVG0gY6W8igCfmPFb6nqc7-B_kA,10261
|
|
126
|
-
flywheel/models/classic_batch_proposal_input.py,sha256=
|
|
127
|
-
flywheel/models/classic_batch_proposal_output.py,sha256=
|
|
126
|
+
flywheel/models/classic_batch_proposal_input.py,sha256=yUzllRK_x5JyoiYFmIHuyjHM1YpDrzafZ4HU32sbY7k,11455
|
|
127
|
+
flywheel/models/classic_batch_proposal_output.py,sha256=EJgaQfbP2fcIJJDPDBxfoofQIEyz0WFIz12VJUghcWc,13775
|
|
128
128
|
flywheel/models/classification_add_delete.py,sha256=j2mcUR_-Uo55F8kqo1fDXLLKwHAwZvYMNCUAz6HDGyU,946
|
|
129
129
|
flywheel/models/classification_replace.py,sha256=6EHMA9GwlRSMFOnZUG_S6wH9WqgLGhIFS3RiF-nq2A0,944
|
|
130
130
|
flywheel/models/classification_update_input.py,sha256=eKPpScKd2jHsFCO_jZ9XrIXCz_LhtWaaJ-uNpFq3ld0,948
|
|
@@ -139,7 +139,7 @@ flywheel/models/collection_operation.py,sha256=Zav3VZfisBgI2uuMUYwJevP7HwTnDq0PU
|
|
|
139
139
|
flywheel/models/collection_operation_type.py,sha256=jacYjmXZRg5sgn8cd3i5AhTTTcFsVwo0oScx3056pOs,577
|
|
140
140
|
flywheel/models/collection_output.py,sha256=I_V-7ZELbNMWDAJEwQZ_tsTOKhHhzS7VrWZo-sQ87xA,17517
|
|
141
141
|
flywheel/models/collection_with_stats.py,sha256=tnoAs99qgRMLHnc1KpaPKlkOzZbFBsy8HUgPbinowKg,17799
|
|
142
|
-
flywheel/models/column.py,sha256=
|
|
142
|
+
flywheel/models/column.py,sha256=kl-Xuvqsy6QQd9pYY085LaAxzBYgcdMU5VZFk-Kv-4w,7539
|
|
143
143
|
flywheel/models/column_type.py,sha256=4isimqTtFrB02p2LrznPyGYoxGXRD4pg3dRb4v0i6M4,624
|
|
144
144
|
flywheel/models/common_classification.py,sha256=c7NukBxEeucqUXrh0BK0CHiOWf90RIWxdkb8AMpfggQ,3936
|
|
145
145
|
flywheel/models/common_deleted_count.py,sha256=FXyoDqDEeVY1cGojOj8K9ZTZUbanCzd05YbThzrZcDI,523
|
|
@@ -169,7 +169,7 @@ flywheel/models/container_node_min.py,sha256=h5H-gb5hevcWi2muIGY63XwXPuaNhPiFYEh
|
|
|
169
169
|
flywheel/models/container_output.py,sha256=KyqYwLsRfa2sPhdVTN-VTVr4O18KUhaniwEHsmOeWHM,917
|
|
170
170
|
flywheel/models/container_output_with_files.py,sha256=xx9kNgKUMlbuJ1qHtiSDblfOJGbiT9A3ZiCQf4pFE6o,7665
|
|
171
171
|
flywheel/models/container_parents.py,sha256=TN_eF4svFUKny4fZ8DhUxgpRwGqz_OmcRXRZg7HdvIE,8239
|
|
172
|
-
flywheel/models/container_pipeline_input.py,sha256=
|
|
172
|
+
flywheel/models/container_pipeline_input.py,sha256=6RcLnSDdNto3kDRvnjtqUUuJciRi-QDaSuVkeaM4VQA,15167
|
|
173
173
|
flywheel/models/container_project_parents.py,sha256=4LBFTzPXzK2uqyz-6frJkADfoNjQllj1v84zsILhtOg,531
|
|
174
174
|
flywheel/models/container_reference.py,sha256=wcTb2v4lRrLU7oxeIooS0kZyxD-q9rDOBZMowRtvuPU,5157
|
|
175
175
|
flywheel/models/container_reference_with_label.py,sha256=wb6U1ckU-y0PoO6U0aKh6doVgFbgSsrrFk3IVwYV2KA,5990
|
|
@@ -180,8 +180,8 @@ flywheel/models/container_uidcheck.py,sha256=Ld7gohp29Pm28SYlUoV07iAj-kM8quUoXBC
|
|
|
180
180
|
flywheel/models/container_update.py,sha256=JN5C01CeKegQImm7kE9TD3AytKfafL5_rMahbJGYoT0,3916
|
|
181
181
|
flywheel/models/context_input.py,sha256=PyafRR26gT42JPHW-VvlawJrxwHK6eZ-i4hZm_e2wl4,5649
|
|
182
182
|
flywheel/models/core_models_api_key_api_key_input.py,sha256=lNpfQH45Vo35E_7nrpWH62FaExHwHZwur2m0s6iz_JU,5364
|
|
183
|
+
flywheel/models/core_models_common_source.py,sha256=ReRJiylWszYUqJkQ8v1zzomS3UqMGEjO3vIK3pdMmR0,5061
|
|
183
184
|
flywheel/models/core_models_jobs_api_key_input.py,sha256=yzs7jLOGCFeNuUENM4mxesuht-keVMKQ6pNWoSDP9Ig,5188
|
|
184
|
-
flywheel/models/core_models_source_source.py,sha256=BzxpP5UbNbxDzFnnmCmGcxqif0WL-gqn7ZLjo5S4cCI,5061
|
|
185
185
|
flywheel/models/create_report_input.py,sha256=JpkgTHRQA8TK_K1ViU5utiX_XV0YIO1ZekkPlpxTt70,7323
|
|
186
186
|
flywheel/models/creds.py,sha256=kFhJ7_1zmHzHneoan4XKlJ7iRDIgZKuZFbnjCBQg28o,3876
|
|
187
187
|
flywheel/models/curator.py,sha256=S1yhs6s-gCj-Zqz0NWrXE873xsBq7Ha4Ym82qWeABDs,5726
|
|
@@ -191,9 +191,9 @@ flywheel/models/data_strategy.py,sha256=CSkjkzS6o8TglM0zaTxykMoAIztFdIoNUauzwMyA
|
|
|
191
191
|
flywheel/models/data_view.py,sha256=T-6NU0roubb9wpij4MXS33GZkoyAKT1S2IbJE3tFS8Q,541
|
|
192
192
|
flywheel/models/data_view_analysis_file_spec.py,sha256=rImyQ_J5jNvok0BkTgHJ5UTzRmZTw6SdoQ4Q79W7FKY,6391
|
|
193
193
|
flywheel/models/data_view_analysis_filter_spec.py,sha256=6wafuwNbQXjn-Y1snSKUrAK_cdQXrPfFHQFDXSWjN3w,6423
|
|
194
|
-
flywheel/models/data_view_column_alias.py,sha256=
|
|
194
|
+
flywheel/models/data_view_column_alias.py,sha256=v1dEeRIis-8ZIem7Mij6auWUYw0FB7XvVC8-fQYPuuU,8822
|
|
195
195
|
flywheel/models/data_view_column_spec.py,sha256=_dkg_T5nbmqnWFwdK9a-kcR8Fhe-i6lP5Hpg93yfAkw,7888
|
|
196
|
-
flywheel/models/data_view_execution.py,sha256=
|
|
196
|
+
flywheel/models/data_view_execution.py,sha256=39tLBOFKYEfRhsRWSKzcyxwKsdZug4pTtLqxFvONNzo,13855
|
|
197
197
|
flywheel/models/data_view_execution_state.py,sha256=ex1hE36MZLnIdW1SjDRvWuUs6SU2MFeF3xGPM8cWy1E,640
|
|
198
198
|
flywheel/models/data_view_file_spec.py,sha256=JZUZ-QYJafL4RpqwOZWNlozh81_sCQheRY4I7BwMqYA,11406
|
|
199
199
|
flywheel/models/data_view_group_by.py,sha256=0QxAQJsMGaafx_dUHzIEiLk2-PstuE9M_m2jFyfpFPE,4698
|
|
@@ -239,10 +239,10 @@ flywheel/models/egress_provider_id.py,sha256=1dKUprJXQii7w_sdUr_hB_PebJDkLgZt9yj
|
|
|
239
239
|
flywheel/models/exchange_storage.py,sha256=J5ki23OZ78IU-snirVzcbXd6Jjuek4FjwHGG1FTlIzM,6719
|
|
240
240
|
flywheel/models/executor_info.py,sha256=nbvDWU_yEi_xwpF52y186xEgKkuKSjmBLGOGqmVA_Wg,9216
|
|
241
241
|
flywheel/models/export_templates.py,sha256=fAW_tPW2tBT1DhuzF4nS7GwSgvqHkFLED--Swl4ndco,5495
|
|
242
|
-
flywheel/models/features.py,sha256=
|
|
243
|
-
flywheel/models/field_change.py,sha256=
|
|
242
|
+
flywheel/models/features.py,sha256=9OB60xZCOhU91DB1P9ctYuKQr2L-iuXe-nRbD-hVCKI,50525
|
|
243
|
+
flywheel/models/field_change.py,sha256=H0QoBOIJuzgBsryMejJnhu5Vzwa2FpZ2ChQV7NnAgLU,7027
|
|
244
244
|
flywheel/models/field_change_log_document.py,sha256=-G5oxplkcregMMHywMAXuexl5x21PRe5X2SQxaIaAj0,7091
|
|
245
|
-
flywheel/models/file.py,sha256=
|
|
245
|
+
flywheel/models/file.py,sha256=SkL9vxFcvaTwveNQ8TO-33CnJ_EJttLSLf9iFInhSgw,27877
|
|
246
246
|
flywheel/models/file_classification_delta.py,sha256=i7WiwP3smfqB6EBxyOwhT9ncs0e9K6NC2w2EtIzE3a8,6744
|
|
247
247
|
flywheel/models/file_entry.py,sha256=RzUNtqHbDLWCiDaVEiS8FHHsLD-b5bsHUmCn89jt6Yc,19125
|
|
248
248
|
flywheel/models/file_export_templates.py,sha256=zrC4_KbDNfogg7S7E_eESb6cP4dUldk7IOgfsMfvqFE,7310
|
|
@@ -260,7 +260,7 @@ flywheel/models/file_parents.py,sha256=Bty9ILlZyXLxpF7rV1-MOk1K76Dlim7CkBLvscY1F
|
|
|
260
260
|
flywheel/models/file_reference.py,sha256=oP4I_dF6m45rT1GdnYR5Jy15eZ1XhHbLyGGyjHzc82w,5715
|
|
261
261
|
flywheel/models/file_suggestion.py,sha256=TMGPRRRYchOkaVzxJx8yWTdtu0sjRgfvJGngWFz-JXM,6370
|
|
262
262
|
flywheel/models/file_template_options.py,sha256=1L3jjdmJeLpdPhUbei2rm1lXssaPedh4wnLZNyzfya8,8065
|
|
263
|
-
flywheel/models/file_upsert_input.py,sha256=
|
|
263
|
+
flywheel/models/file_upsert_input.py,sha256=_njhAlq6EsK8oe-52nlDS6EUk3wf3bhWAJJcQFDw3V0,16182
|
|
264
264
|
flywheel/models/file_upsert_origin.py,sha256=pjyD3ZGWNpAO1IvXo1uC7pQchnZjRlshhY9s0KjgkRc,886
|
|
265
265
|
flywheel/models/file_upsert_output.py,sha256=0gcEpKpleOSKLnyn4fL0vDvAuE_KMf1mRpF46anrQ7o,28979
|
|
266
266
|
flywheel/models/file_version.py,sha256=CkTYvamplVpFv34M9EWADkdlCLWgnsgnIbkzKV4Ymmk,5130
|
|
@@ -281,7 +281,7 @@ flywheel/models/gear_config.py,sha256=-K6uOsPhwDb0fhOVUcH8v1Ob-JXd8SblF2s2xuog2E
|
|
|
281
281
|
flywheel/models/gear_context_input.py,sha256=jwom2SEXpvG4yqpoC9algx6us-niwJgL4kKpCLv2qRI,4513
|
|
282
282
|
flywheel/models/gear_context_lookup.py,sha256=P6X-2NtltNc6ZMMXXaNtJge2NnnSiSR4N2s8Xi-_q20,551
|
|
283
283
|
flywheel/models/gear_context_lookup_item.py,sha256=hgUQviMe4z1bejiUr-i9WmghhNahVPFZeLncA2YHPGE,942
|
|
284
|
-
flywheel/models/gear_context_value_output.py,sha256=
|
|
284
|
+
flywheel/models/gear_context_value_output.py,sha256=xLqgQsiknhkzOjNSlw814p1n6fxVBOg8ZEee3H8hNas,7262
|
|
285
285
|
flywheel/models/gear_context_value_output_unfound.py,sha256=wdpMOW9duiBmY24z8RYFuGbeIo6XSb7gqrZiBPs6dTA,4638
|
|
286
286
|
flywheel/models/gear_custom.py,sha256=BAGjCwhuojJ7qm83zoo8DiQa_vMvu0GrDrVNvzZtzE4,3896
|
|
287
287
|
flywheel/models/gear_directive.py,sha256=IDTgb6BxvueM1dVl_tkiZS1wABRrgJUSbkrO9688LEo,3908
|
|
@@ -332,7 +332,7 @@ flywheel/models/group_report.py,sha256=uneOddkDuqlGLFp75km2OLiWFpsGdu5E6x1BxTM-_
|
|
|
332
332
|
flywheel/models/group_role.py,sha256=bQCRU0Rp8bU9VwtLFTOgQR7NbvCFTMSdDeMWEue3CQQ,4379
|
|
333
333
|
flywheel/models/group_settings_output.py,sha256=01y7gpccwsz-vwwNtLmTbQbJ3azfsSxMKF-IUGwLIc8,7293
|
|
334
334
|
flywheel/models/group_update.py,sha256=6d2gY1cKV0h-KgtmbAQSfGZhjKK1DSKsmTI5hVJ1rWs,6659
|
|
335
|
-
flywheel/models/header_feature.py,sha256=
|
|
335
|
+
flywheel/models/header_feature.py,sha256=qMt7aaz_xwAy_8dacdhRY3AaPryJHDfYrh1V3m0F1gM,917
|
|
336
336
|
flywheel/models/hierarchy_export_templates.py,sha256=IEubYJ_f7aIcxIG56_GgiKHuRuK02Bf_A8PXb0qmsPY,7430
|
|
337
337
|
flywheel/models/http_validation_error.py,sha256=8OvnWz2WMt7zOF9TmP-0u-smM1a21VQkhdigkmt_Aro,4711
|
|
338
338
|
flywheel/models/info.py,sha256=1VR0MmrF4UWbNArJEW4CZCs0syWjVL2IX-erKbIK-0E,5618
|
|
@@ -419,7 +419,7 @@ flywheel/models/jupyterhub_workspace.py,sha256=S9ducCNcpR21XWvDEDF20TMjwStSwR_zV
|
|
|
419
419
|
flywheel/models/jupyterlab_server_modify.py,sha256=xwnbccTcdoccQSJIuy1uoC2fvWhXkvNWF8MVyNddG6c,7996
|
|
420
420
|
flywheel/models/jupyterlab_server_origin.py,sha256=fPImZWSCbPglJQ_qI4TZ1bb1SyfaoW2QiK30Y8qool4,505
|
|
421
421
|
flywheel/models/jupyterlab_server_output.py,sha256=8lyEsShgNRfv2-1_R87FZDzCOiRHVd2G1WtBz1oIn20,561
|
|
422
|
-
flywheel/models/jupyterlab_server_response.py,sha256=
|
|
422
|
+
flywheel/models/jupyterlab_server_response.py,sha256=0mHV0Rq1Uimf5m45gHB5RdgrLV7sPckmReGEfxGPO1I,11827
|
|
423
423
|
flywheel/models/jupyterlab_server_update.py,sha256=A6_bhtwXWlz6j-6hkKaFWNIHwZobCGlAD_UPzwI65Zk,555
|
|
424
424
|
flywheel/models/ldap_sync.py,sha256=p8deypEvi3ZscxhD-Eozmfd9vx0wj_26ynWUGJBlTIg,904
|
|
425
425
|
flywheel/models/ldap_sync_config.py,sha256=rUmNQ1lkMRifF_3uEZLg1S0UhjU2gvNtWvxr3froXgw,4543
|
|
@@ -459,7 +459,7 @@ flywheel/models/output_user_page.py,sha256=9UZ5AGmlylSboA0pvsIIdf8kkT8ULxYE1aOwh
|
|
|
459
459
|
flywheel/models/packfile_cleanup_output.py,sha256=pSKPUk6w6xcNblZireYt92Q2HG5TcUOujSWxASHbPBQ,4726
|
|
460
460
|
flywheel/models/packfile_removed_output.py,sha256=MPFpvkScs_xpHciwScBSJQPREPUsS6OD4jV5kEg_3_Y,5154
|
|
461
461
|
flywheel/models/page.py,sha256=dBjv1sycrKNnPA7E-j3ICseVM4uwRSXxhIcCwjisbRo,5561
|
|
462
|
-
flywheel/models/
|
|
462
|
+
flywheel/models/page_generic_file_output.py,sha256=CKGoLslJe37tIfoyfE_pnGtrRlP7hqnjzyxAT2akVJM,5916
|
|
463
463
|
flywheel/models/parent_type.py,sha256=eo6HoMmu5u2ZUbF4FPaJCzd95636Lsc2QbWNRt2IUC8,656
|
|
464
464
|
flywheel/models/parsed_query_response.py,sha256=GpLdqKLdDeBs4lRBfOhwuLH-0Xks50yFNcySgXpH9t0,5382
|
|
465
465
|
flywheel/models/permission_access_permission.py,sha256=mUTQNj2d9RJbv67RYkXNGKh7aTTDxYJZGnWSq2WyxHU,540
|
|
@@ -481,17 +481,17 @@ flywheel/models/project_copy_input.py,sha256=BR1AMjA3M77BNI1eBy2pm7bLOV-wlzFvWpu
|
|
|
481
481
|
flywheel/models/project_copy_output.py,sha256=VBNZPXCni0fMWoSj1s_hBhHkyZkMBXgF3hJnLTcI5jo,5939
|
|
482
482
|
flywheel/models/project_copy_status.py,sha256=I1UPavaYxo3NDsLOn0-Y7ZlZ-N0Ml7II04NJ7WIZtZ4,657
|
|
483
483
|
flywheel/models/project_counters.py,sha256=8eLv1Ar2DyyoprF2s_D-AO45aykPnreryQVgvhBU_pQ,9386
|
|
484
|
-
flywheel/models/project_hierarchy_input.py,sha256=
|
|
484
|
+
flywheel/models/project_hierarchy_input.py,sha256=ccAR6j_iyEwaca5aJAvBW-hdgFFzG-EvroMkqX8Uayg,7963
|
|
485
485
|
flywheel/models/project_hierarchy_output.py,sha256=5wOTYWzemmNZWn0gBqe1iFVX7Skpl2hi1QgZ8V8vneI,6464
|
|
486
486
|
flywheel/models/project_hierarchy_upsert_input.py,sha256=8A189_ZeKk2hYQftiIKvNZPd6eK5Zkuoo9AtHNnJWBw,557
|
|
487
487
|
flywheel/models/project_hierarchy_upsert_output.py,sha256=zPgCk8f8Xhk3jGTM32bkOsroIbsnJlqP67PAcUIubLk,561
|
|
488
488
|
flywheel/models/project_input.py,sha256=7eBAOHBeI5-6X1wlEjsPeIwPQgyuPaKb1DTISL8aIlE,10152
|
|
489
489
|
flywheel/models/project_institution.py,sha256=GwQb-LlPaWun7lBiHZrV9tcIdmbMsmMlL8nT0n2CHc8,5284
|
|
490
|
-
flywheel/models/project_list_output.py,sha256=
|
|
490
|
+
flywheel/models/project_list_output.py,sha256=JqpdhClCSlkRNz2gTnzpeHI2MyLOlter5sI7O_Kingc,24166
|
|
491
491
|
flywheel/models/project_locking_reason.py,sha256=-_cuVZK2q2dvkU73zNXBlSCjUOlJzbcQkGHe6Z9jRvM,710
|
|
492
492
|
flywheel/models/project_modify.py,sha256=lNpQmeXK4-noLImK3esT3ub_VoI9xoVhpX_DDmC5Q_s,11167
|
|
493
493
|
flywheel/models/project_node.py,sha256=8UHsZBPH4tAMW95mvi8rycnyxccQqRT-V8fC9jSuuAw,1624
|
|
494
|
-
flywheel/models/project_output.py,sha256=
|
|
494
|
+
flywheel/models/project_output.py,sha256=m6mjX2THWi0XhnadDOlaLX_8ltV_wdDximMXpmD-PQQ,23855
|
|
495
495
|
flywheel/models/project_parents.py,sha256=qeFzvys5dPQkc8MGWJGrcweYeI3fkzVfUIXgLj7sqBE,4677
|
|
496
496
|
flywheel/models/project_report.py,sha256=p_6AntjagxqIOlj4gV8Zqxdr08CEfU0e0yt2QMulqsw,12977
|
|
497
497
|
flywheel/models/project_report_list.py,sha256=PnQDumPa5LPwWHBBLJE1AytNsSeyKf3_FZ0pIrPZr5k,4729
|
|
@@ -587,12 +587,12 @@ flywheel/models/search_analysis_response.py,sha256=T-ZadT7J-0nkuKgbb17xymggKrVbV
|
|
|
587
587
|
flywheel/models/search_collection_response.py,sha256=rgok6AEB5xa9yMrbxA0MF2sd4pr6VrgtprHl98FTmg4,6875
|
|
588
588
|
flywheel/models/search_file_response.py,sha256=WfZRwwKvGCLKQw8i_tYm7Vukr5efk6xw-jAI86irwzs,7750
|
|
589
589
|
flywheel/models/search_group_response.py,sha256=aXWrqYkRH7AWjHwOHlqIYbav_K-w0Uq9OsuVDbgUdmk,5272
|
|
590
|
-
flywheel/models/search_parent_acquisition.py,sha256=
|
|
591
|
-
flywheel/models/search_parent_analysis.py,sha256=
|
|
592
|
-
flywheel/models/search_parent_collection.py,sha256=
|
|
593
|
-
flywheel/models/search_parent_project.py,sha256=
|
|
594
|
-
flywheel/models/search_parent_response.py,sha256=
|
|
595
|
-
flywheel/models/search_parent_session.py,sha256=
|
|
590
|
+
flywheel/models/search_parent_acquisition.py,sha256=dmopV_wckUIaASQg2p-R6UKGI4RrJFvkEZR_Fz4VTeU,1542
|
|
591
|
+
flywheel/models/search_parent_analysis.py,sha256=zV_OrxxmObj42Qc0z0gy-FJaA-1EKTkpdamUWUA6wiE,1592
|
|
592
|
+
flywheel/models/search_parent_collection.py,sha256=t4PTKjfrjdPE-JLJwhXiaJVVbnnIVbI_RqGqZcJ4KSU,1519
|
|
593
|
+
flywheel/models/search_parent_project.py,sha256=U5ct9i4floXm6MVl2WcXdTSy6-UMftNqlG2LWCQUQkI,2112
|
|
594
|
+
flywheel/models/search_parent_response.py,sha256=eA6owMmDwtZ3izU8F4ywrbx0WNSe7qyiv_BS6hNoYB8,5967
|
|
595
|
+
flywheel/models/search_parent_session.py,sha256=0YWEc92EK7bca4AmZtfqqEobiH-RiLAu6PDt9emSf_4,1586
|
|
596
596
|
flywheel/models/search_parent_subject.py,sha256=RtBJbXJxvgndKCw_nsr9479-p3QHM7ZcXZdvhxhsmUw,1646
|
|
597
597
|
flywheel/models/search_parse_error.py,sha256=MSA8gi6-e8zf5XOJIHGljFxZStB760pXjf_LCa_tJF0,6719
|
|
598
598
|
flywheel/models/search_parse_search_query_result.py,sha256=Q1-U1aI3QdKcpUi99XCOqJ_G4QCMfK1shIWJhvGwSt0,939
|
|
@@ -617,15 +617,15 @@ flywheel/models/session.py,sha256=g8w6BT0P6nT3gFjl9ruDJXnHWWDnNIdBOzLAyPogKfU,51
|
|
|
617
617
|
flywheel/models/session_container_output.py,sha256=9WQkuaPXXSHFYKNzd3VZWnjbQBjobrmxkPZ6I7EPnf0,959
|
|
618
618
|
flywheel/models/session_embedded_subject.py,sha256=cfdNfZ-IV1xpolhv-PTLvHZyu3um-Te_3DRoYhj7hFE,7799
|
|
619
619
|
flywheel/models/session_input.py,sha256=9TtozWniwYzahR6y-82yL20S6QLpd4BaAxt5QtFn09w,11016
|
|
620
|
-
flywheel/models/session_list_output.py,sha256=
|
|
620
|
+
flywheel/models/session_list_output.py,sha256=Md7WH38_Sp2AzAK3I-bJg1yI-ku8YTlKii4ZOwrV-y8,23012
|
|
621
621
|
flywheel/models/session_metadata_input.py,sha256=K4N1tWxe0L3VmyNq_aqWRt9SdApPCaWQybAZ_XEAJ4c,909
|
|
622
622
|
flywheel/models/session_modify.py,sha256=urKEKOKuwTCKUbIaX4FoiXTyOzCoztnQxD21QffwOR0,12071
|
|
623
623
|
flywheel/models/session_node.py,sha256=h7BYhpaa1bFx8cmpIs2W6pnW-0sWNg5-ttwdr4Pcm14,1098
|
|
624
|
-
flywheel/models/session_output.py,sha256=
|
|
624
|
+
flywheel/models/session_output.py,sha256=WZkGaRuo2x4PEugOIDnWly8iVlKoAlXlGMWnZf19HSg,22483
|
|
625
625
|
flywheel/models/session_parents.py,sha256=LRlg_eh2EDuEOPZdZa07lyne48M_urYADIxoHIiCrDQ,5899
|
|
626
626
|
flywheel/models/session_template_options.py,sha256=Zj4ZBpjzcGsqtu9FtmiaTnDlXF0rMqaBVZVxmDsBRls,6023
|
|
627
627
|
flywheel/models/session_template_recalc_output.py,sha256=k99UXLRpLE4WhaIlSBllP1u34ooSDZez19DrlDtV57A,4887
|
|
628
|
-
flywheel/models/session_upsert_input.py,sha256=
|
|
628
|
+
flywheel/models/session_upsert_input.py,sha256=c3GTcCTg_2387WnWvmzNod36osW4ok6Ge1ckZCw3Rb4,11186
|
|
629
629
|
flywheel/models/session_upsert_output.py,sha256=tDaaif8giZ471rQX8Y2QS5I7HePiIK2IDDOPXJOQYiI,6418
|
|
630
630
|
flywheel/models/sharing_filter_options.py,sha256=RgY6qVu0CYw5jzyqMRpPJnA7rf_HytnzVp6t0jJaXQg,9831
|
|
631
631
|
flywheel/models/signed_fs_upload_output.py,sha256=o4nTuKsnG9MuxPALXmaB4vdop3pOJ3eYXiTCy-KiESo,5226
|
|
@@ -645,19 +645,19 @@ flywheel/models/storage_strategy.py,sha256=kEotrStRqN4DfylrVQQzpYBA7k9MzkUPnl-V6
|
|
|
645
645
|
flywheel/models/storage_strategy_config.py,sha256=542hXYtvqb5BbD3Pq4QL7gVcOhozuJrFWat-bIDvrL8,5545
|
|
646
646
|
flywheel/models/structured_query.py,sha256=gqY-80w38_nzdHEGOSkx2XC50DLOxAhc842s7i7CX4E,4823
|
|
647
647
|
flywheel/models/structured_query_suggestions.py,sha256=KtbO45OLlQ0dm31RJlhzj0tqQ-MkgULAcGZ3Yko71jY,5743
|
|
648
|
-
flywheel/models/structured_query_value_suggestion.py,sha256=
|
|
648
|
+
flywheel/models/structured_query_value_suggestion.py,sha256=smfjtnTfhg6bMK5FW0Q35WEi33vTJObcIRJkWUgLzKM,6768
|
|
649
649
|
flywheel/models/subject.py,sha256=gOctKSjA1VaQSPM36LyEj1ViUk7Qg1SLTM8c7u4ByCM,512
|
|
650
650
|
flywheel/models/subject_container_output.py,sha256=HBBSU9efCfxzuDTOpypDlXa82LafqyEjSfKOyf6pbCo,1095
|
|
651
651
|
flywheel/models/subject_input.py,sha256=iFTye5hY0EgmvrmIyFH8Hjo3FUE9GwH1sK6ToY5_r4I,15390
|
|
652
652
|
flywheel/models/subject_modify.py,sha256=cQb8-KjbnY0JoGt5qGNASN1hPE9OSxXYyVetjMCuaWA,17039
|
|
653
653
|
flywheel/models/subject_node.py,sha256=unNIXZ6EJo6lWS9Cijp_BmdtfpGb7u4y6RxExWJr5F0,1234
|
|
654
654
|
flywheel/models/subject_output.py,sha256=Kt6Xw5wURjbYvL1MBmLu4Rqnu-VUxq7bQlgjt2Y-_oI,25395
|
|
655
|
-
flywheel/models/subject_output_for_list.py,sha256
|
|
655
|
+
flywheel/models/subject_output_for_list.py,sha256=XE4t79fp6YiouzkE74hYxjHYZJo08ql9Ug6NJJ0rTCo,26185
|
|
656
656
|
flywheel/models/subject_parents.py,sha256=uG5SUbRzMczasE5oqnfwQLk-Kk03DXlj86kG2qiLffI,5288
|
|
657
657
|
flywheel/models/subject_role_permission.py,sha256=IAGIMwqjPcTIkP7hSnQEX4bNOmN_rp-77TrYyExtQWg,5322
|
|
658
658
|
flywheel/models/subject_state.py,sha256=8Z54JmiMa6p05C9yvE5cP5P7EzRmQAT1RonLmGxvn2s,592
|
|
659
659
|
flywheel/models/subject_template_options.py,sha256=OT973eYRHm86toHbz4GV7LHgb4RALTBigZ2aA71FBro,5169
|
|
660
|
-
flywheel/models/subject_upsert_input.py,sha256=
|
|
660
|
+
flywheel/models/subject_upsert_input.py,sha256=oSCs4oRx5C5zn6DgIGQWjunNj1kfui0bw0mGxUweId4,13999
|
|
661
661
|
flywheel/models/subject_upsert_output.py,sha256=sS8lgPvNjX-xD8p4TIvGBywgsqqgSkRC3PdIDmoU5Mg,5839
|
|
662
662
|
flywheel/models/sync_user_input.py,sha256=bB1IulXvfRr5eq8yy1Du1EO0rQvL0jx9EYtzr2kYyDU,8325
|
|
663
663
|
flywheel/models/tag.py,sha256=F7FA106lPGRB7zQAi0_zQTRNtsDtDthMgzg-m1eVZtI,4483
|
|
@@ -692,7 +692,7 @@ flywheel/models/user_output_id.py,sha256=FX4yvxrCb8lR6nwUjqrHbETggWAtILMjpQf3CjG
|
|
|
692
692
|
flywheel/models/user_preferences.py,sha256=COcq40z8jZa5yWvPT_6Sk9Wv9hV4QxUrKpgEEUi53as,3916
|
|
693
693
|
flywheel/models/user_wechat.py,sha256=Z2RR3BfPvm6hZWjv0UUcPWO-ssAnBLT0pIQWQ6rGThw,3896
|
|
694
694
|
flywheel/models/validation_error.py,sha256=T_bv-OC-GLPOg8NIbV6ANEiEZy4HWLoCSBZifmeWJOo,5592
|
|
695
|
-
flywheel/models/version.py,sha256=
|
|
695
|
+
flywheel/models/version.py,sha256=9WVEtJ8abN5lsky-Hj3obav5P_UhkeFwpuHzepq1L_U,10063
|
|
696
696
|
flywheel/models/version_output.py,sha256=iXvZIQTVMq7SgR7QtcRrnCWWoHK2yfKgIvONR5pXsuA,499
|
|
697
697
|
flywheel/models/view_id_output.py,sha256=hjbc4w7uY40PpCeDs9yiIQwjuNdtJBqhFoJ-RlYr7kY,4438
|
|
698
698
|
flywheel/models/view_output.py,sha256=BNbmsGc_eGSstLi9h0bdOCIt2o7yoklb2bTA7KtxhIg,11822
|
|
@@ -704,8 +704,8 @@ flywheel/models/virus_scan_state.py,sha256=zBmk7x3ZoDhEozIeD-Gw7CEkU7yWYKFMFXklL
|
|
|
704
704
|
flywheel/models/work_in_progress_features.py,sha256=dZ_cJTztcU3wPIUKptwZzb7hdv9mo27wXfWgolkJa1k,3944
|
|
705
705
|
flywheel/models/zipfile_info.py,sha256=8ivqs0rTQaiC8KirTaK_WqSGkLvCndI_58dylOBKwa4,5243
|
|
706
706
|
flywheel/models/zipfile_member_info.py,sha256=zAg9wRUeYXbz6bvXdo4xYFHtvv9eRSCjvyaTrQ3zvN4,6346
|
|
707
|
-
flywheel_sdk-
|
|
708
|
-
flywheel_sdk-
|
|
709
|
-
flywheel_sdk-
|
|
710
|
-
flywheel_sdk-
|
|
711
|
-
flywheel_sdk-
|
|
707
|
+
flywheel_sdk-19.0.0rc0.dist-info/LICENSE.txt,sha256=F_Wp8b8L-2vc2xxcRr402gN1gg-2y0p2oG8aSj3hdMA,1057
|
|
708
|
+
flywheel_sdk-19.0.0rc0.dist-info/METADATA,sha256=jom3i4TWrPqJiu4qpWwna3oYlP1KIL0VZVkMzYGbzJg,959
|
|
709
|
+
flywheel_sdk-19.0.0rc0.dist-info/WHEEL,sha256=ANi2y8tYx-p70pj7MSdqQMJNFJEUgAOyfPpHzqz0w84,109
|
|
710
|
+
flywheel_sdk-19.0.0rc0.dist-info/top_level.txt,sha256=BQ1fXyhiudo2To7zMNcPOOGa6qtZuhx0V_I7CO-vU6w,9
|
|
711
|
+
flywheel_sdk-19.0.0rc0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|