aind-metadata-service-async-client 2.0.0__py3-none-any.whl → 2.1.0__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.
- aind_metadata_service_async_client/__init__.py +2 -2
- aind_metadata_service_async_client/api/default_api.py +264 -1
- aind_metadata_service_async_client/api/healthcheck_api.py +1 -1
- aind_metadata_service_async_client/api_client.py +2 -2
- aind_metadata_service_async_client/configuration.py +3 -3
- aind_metadata_service_async_client/exceptions.py +1 -1
- aind_metadata_service_async_client/models/__init__.py +1 -1
- aind_metadata_service_async_client/models/health_check.py +3 -3
- aind_metadata_service_async_client/models/http_validation_error.py +1 -1
- aind_metadata_service_async_client/models/slims_workflow.py +1 -1
- aind_metadata_service_async_client/models/validation_error.py +1 -1
- aind_metadata_service_async_client/models/validation_error_loc_inner.py +1 -1
- aind_metadata_service_async_client/rest.py +1 -1
- {aind_metadata_service_async_client-2.0.0.dist-info → aind_metadata_service_async_client-2.1.0.dist-info}/METADATA +1 -1
- aind_metadata_service_async_client-2.1.0.dist-info/RECORD +20 -0
- aind_metadata_service_async_client-2.0.0.dist-info/RECORD +0 -20
- {aind_metadata_service_async_client-2.0.0.dist-info → aind_metadata_service_async_client-2.1.0.dist-info}/WHEEL +0 -0
- {aind_metadata_service_async_client-2.0.0.dist-info → aind_metadata_service_async_client-2.1.0.dist-info}/top_level.txt +0 -0
|
@@ -7,14 +7,14 @@
|
|
|
7
7
|
|
|
8
8
|
## aind-metadata-service Service to pull data from example backend.
|
|
9
9
|
|
|
10
|
-
The version of the OpenAPI document: 2.
|
|
10
|
+
The version of the OpenAPI document: 2.1.0
|
|
11
11
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
12
12
|
|
|
13
13
|
Do not edit the class manually.
|
|
14
14
|
""" # noqa: E501
|
|
15
15
|
|
|
16
16
|
|
|
17
|
-
__version__ = "2.
|
|
17
|
+
__version__ = "2.1.0"
|
|
18
18
|
|
|
19
19
|
# import apis into sdk package
|
|
20
20
|
from aind_metadata_service_async_client.api.default_api import DefaultApi
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
## aind-metadata-service Service to pull data from example backend.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 2.
|
|
8
|
+
The version of the OpenAPI document: 2.1.0
|
|
9
9
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
10
|
|
|
11
11
|
Do not edit the class manually.
|
|
@@ -39,6 +39,269 @@ class DefaultApi:
|
|
|
39
39
|
self.api_client = api_client
|
|
40
40
|
|
|
41
41
|
|
|
42
|
+
@validate_call
|
|
43
|
+
async def get_procedures(
|
|
44
|
+
self,
|
|
45
|
+
subject_id: StrictStr,
|
|
46
|
+
_request_timeout: Union[
|
|
47
|
+
None,
|
|
48
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
49
|
+
Tuple[
|
|
50
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
51
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
52
|
+
]
|
|
53
|
+
] = None,
|
|
54
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
55
|
+
_content_type: Optional[StrictStr] = None,
|
|
56
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
57
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
58
|
+
) -> object:
|
|
59
|
+
"""Get Procedures
|
|
60
|
+
|
|
61
|
+
## Procedures Return Procedure metadata.
|
|
62
|
+
|
|
63
|
+
:param subject_id: (required)
|
|
64
|
+
:type subject_id: str
|
|
65
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
66
|
+
number provided, it will be total request
|
|
67
|
+
timeout. It can also be a pair (tuple) of
|
|
68
|
+
(connection, read) timeouts.
|
|
69
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
70
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
71
|
+
request; this effectively ignores the
|
|
72
|
+
authentication in the spec for a single request.
|
|
73
|
+
:type _request_auth: dict, optional
|
|
74
|
+
:param _content_type: force content-type for the request.
|
|
75
|
+
:type _content_type: str, Optional
|
|
76
|
+
:param _headers: set to override the headers for a single
|
|
77
|
+
request; this effectively ignores the headers
|
|
78
|
+
in the spec for a single request.
|
|
79
|
+
:type _headers: dict, optional
|
|
80
|
+
:param _host_index: set to override the host_index for a single
|
|
81
|
+
request; this effectively ignores the host_index
|
|
82
|
+
in the spec for a single request.
|
|
83
|
+
:type _host_index: int, optional
|
|
84
|
+
:return: Returns the result object.
|
|
85
|
+
""" # noqa: E501
|
|
86
|
+
|
|
87
|
+
_param = self._get_procedures_serialize(
|
|
88
|
+
subject_id=subject_id,
|
|
89
|
+
_request_auth=_request_auth,
|
|
90
|
+
_content_type=_content_type,
|
|
91
|
+
_headers=_headers,
|
|
92
|
+
_host_index=_host_index
|
|
93
|
+
)
|
|
94
|
+
|
|
95
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
96
|
+
'200': "object",
|
|
97
|
+
'422': "HTTPValidationError",
|
|
98
|
+
}
|
|
99
|
+
response_data = await self.api_client.call_api(
|
|
100
|
+
*_param,
|
|
101
|
+
_request_timeout=_request_timeout
|
|
102
|
+
)
|
|
103
|
+
await response_data.read()
|
|
104
|
+
return self.api_client.response_deserialize(
|
|
105
|
+
response_data=response_data,
|
|
106
|
+
response_types_map=_response_types_map,
|
|
107
|
+
).data
|
|
108
|
+
|
|
109
|
+
|
|
110
|
+
@validate_call
|
|
111
|
+
async def get_procedures_with_http_info(
|
|
112
|
+
self,
|
|
113
|
+
subject_id: StrictStr,
|
|
114
|
+
_request_timeout: Union[
|
|
115
|
+
None,
|
|
116
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
117
|
+
Tuple[
|
|
118
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
119
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
120
|
+
]
|
|
121
|
+
] = None,
|
|
122
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
123
|
+
_content_type: Optional[StrictStr] = None,
|
|
124
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
125
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
126
|
+
) -> ApiResponse[object]:
|
|
127
|
+
"""Get Procedures
|
|
128
|
+
|
|
129
|
+
## Procedures Return Procedure metadata.
|
|
130
|
+
|
|
131
|
+
:param subject_id: (required)
|
|
132
|
+
:type subject_id: str
|
|
133
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
134
|
+
number provided, it will be total request
|
|
135
|
+
timeout. It can also be a pair (tuple) of
|
|
136
|
+
(connection, read) timeouts.
|
|
137
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
138
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
139
|
+
request; this effectively ignores the
|
|
140
|
+
authentication in the spec for a single request.
|
|
141
|
+
:type _request_auth: dict, optional
|
|
142
|
+
:param _content_type: force content-type for the request.
|
|
143
|
+
:type _content_type: str, Optional
|
|
144
|
+
:param _headers: set to override the headers for a single
|
|
145
|
+
request; this effectively ignores the headers
|
|
146
|
+
in the spec for a single request.
|
|
147
|
+
:type _headers: dict, optional
|
|
148
|
+
:param _host_index: set to override the host_index for a single
|
|
149
|
+
request; this effectively ignores the host_index
|
|
150
|
+
in the spec for a single request.
|
|
151
|
+
:type _host_index: int, optional
|
|
152
|
+
:return: Returns the result object.
|
|
153
|
+
""" # noqa: E501
|
|
154
|
+
|
|
155
|
+
_param = self._get_procedures_serialize(
|
|
156
|
+
subject_id=subject_id,
|
|
157
|
+
_request_auth=_request_auth,
|
|
158
|
+
_content_type=_content_type,
|
|
159
|
+
_headers=_headers,
|
|
160
|
+
_host_index=_host_index
|
|
161
|
+
)
|
|
162
|
+
|
|
163
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
164
|
+
'200': "object",
|
|
165
|
+
'422': "HTTPValidationError",
|
|
166
|
+
}
|
|
167
|
+
response_data = await self.api_client.call_api(
|
|
168
|
+
*_param,
|
|
169
|
+
_request_timeout=_request_timeout
|
|
170
|
+
)
|
|
171
|
+
await response_data.read()
|
|
172
|
+
return self.api_client.response_deserialize(
|
|
173
|
+
response_data=response_data,
|
|
174
|
+
response_types_map=_response_types_map,
|
|
175
|
+
)
|
|
176
|
+
|
|
177
|
+
|
|
178
|
+
@validate_call
|
|
179
|
+
async def get_procedures_without_preload_content(
|
|
180
|
+
self,
|
|
181
|
+
subject_id: StrictStr,
|
|
182
|
+
_request_timeout: Union[
|
|
183
|
+
None,
|
|
184
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
185
|
+
Tuple[
|
|
186
|
+
Annotated[StrictFloat, Field(gt=0)],
|
|
187
|
+
Annotated[StrictFloat, Field(gt=0)]
|
|
188
|
+
]
|
|
189
|
+
] = None,
|
|
190
|
+
_request_auth: Optional[Dict[StrictStr, Any]] = None,
|
|
191
|
+
_content_type: Optional[StrictStr] = None,
|
|
192
|
+
_headers: Optional[Dict[StrictStr, Any]] = None,
|
|
193
|
+
_host_index: Annotated[StrictInt, Field(ge=0, le=0)] = 0,
|
|
194
|
+
) -> RESTResponseType:
|
|
195
|
+
"""Get Procedures
|
|
196
|
+
|
|
197
|
+
## Procedures Return Procedure metadata.
|
|
198
|
+
|
|
199
|
+
:param subject_id: (required)
|
|
200
|
+
:type subject_id: str
|
|
201
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
202
|
+
number provided, it will be total request
|
|
203
|
+
timeout. It can also be a pair (tuple) of
|
|
204
|
+
(connection, read) timeouts.
|
|
205
|
+
:type _request_timeout: int, tuple(int, int), optional
|
|
206
|
+
:param _request_auth: set to override the auth_settings for an a single
|
|
207
|
+
request; this effectively ignores the
|
|
208
|
+
authentication in the spec for a single request.
|
|
209
|
+
:type _request_auth: dict, optional
|
|
210
|
+
:param _content_type: force content-type for the request.
|
|
211
|
+
:type _content_type: str, Optional
|
|
212
|
+
:param _headers: set to override the headers for a single
|
|
213
|
+
request; this effectively ignores the headers
|
|
214
|
+
in the spec for a single request.
|
|
215
|
+
:type _headers: dict, optional
|
|
216
|
+
:param _host_index: set to override the host_index for a single
|
|
217
|
+
request; this effectively ignores the host_index
|
|
218
|
+
in the spec for a single request.
|
|
219
|
+
:type _host_index: int, optional
|
|
220
|
+
:return: Returns the result object.
|
|
221
|
+
""" # noqa: E501
|
|
222
|
+
|
|
223
|
+
_param = self._get_procedures_serialize(
|
|
224
|
+
subject_id=subject_id,
|
|
225
|
+
_request_auth=_request_auth,
|
|
226
|
+
_content_type=_content_type,
|
|
227
|
+
_headers=_headers,
|
|
228
|
+
_host_index=_host_index
|
|
229
|
+
)
|
|
230
|
+
|
|
231
|
+
_response_types_map: Dict[str, Optional[str]] = {
|
|
232
|
+
'200': "object",
|
|
233
|
+
'422': "HTTPValidationError",
|
|
234
|
+
}
|
|
235
|
+
response_data = await self.api_client.call_api(
|
|
236
|
+
*_param,
|
|
237
|
+
_request_timeout=_request_timeout
|
|
238
|
+
)
|
|
239
|
+
return response_data.response
|
|
240
|
+
|
|
241
|
+
|
|
242
|
+
def _get_procedures_serialize(
|
|
243
|
+
self,
|
|
244
|
+
subject_id,
|
|
245
|
+
_request_auth,
|
|
246
|
+
_content_type,
|
|
247
|
+
_headers,
|
|
248
|
+
_host_index,
|
|
249
|
+
) -> RequestSerialized:
|
|
250
|
+
|
|
251
|
+
_host = None
|
|
252
|
+
|
|
253
|
+
_collection_formats: Dict[str, str] = {
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
_path_params: Dict[str, str] = {}
|
|
257
|
+
_query_params: List[Tuple[str, str]] = []
|
|
258
|
+
_header_params: Dict[str, Optional[str]] = _headers or {}
|
|
259
|
+
_form_params: List[Tuple[str, str]] = []
|
|
260
|
+
_files: Dict[
|
|
261
|
+
str, Union[str, bytes, List[str], List[bytes], List[Tuple[str, bytes]]]
|
|
262
|
+
] = {}
|
|
263
|
+
_body_params: Optional[bytes] = None
|
|
264
|
+
|
|
265
|
+
# process the path parameters
|
|
266
|
+
if subject_id is not None:
|
|
267
|
+
_path_params['subject_id'] = subject_id
|
|
268
|
+
# process the query parameters
|
|
269
|
+
# process the header parameters
|
|
270
|
+
# process the form parameters
|
|
271
|
+
# process the body parameter
|
|
272
|
+
|
|
273
|
+
|
|
274
|
+
# set the HTTP header `Accept`
|
|
275
|
+
if 'Accept' not in _header_params:
|
|
276
|
+
_header_params['Accept'] = self.api_client.select_header_accept(
|
|
277
|
+
[
|
|
278
|
+
'application/json'
|
|
279
|
+
]
|
|
280
|
+
)
|
|
281
|
+
|
|
282
|
+
|
|
283
|
+
# authentication setting
|
|
284
|
+
_auth_settings: List[str] = [
|
|
285
|
+
]
|
|
286
|
+
|
|
287
|
+
return self.api_client.param_serialize(
|
|
288
|
+
method='GET',
|
|
289
|
+
resource_path='/api/v2/procedures/{subject_id}',
|
|
290
|
+
path_params=_path_params,
|
|
291
|
+
query_params=_query_params,
|
|
292
|
+
header_params=_header_params,
|
|
293
|
+
body=_body_params,
|
|
294
|
+
post_params=_form_params,
|
|
295
|
+
files=_files,
|
|
296
|
+
auth_settings=_auth_settings,
|
|
297
|
+
collection_formats=_collection_formats,
|
|
298
|
+
_host=_host,
|
|
299
|
+
_request_auth=_request_auth
|
|
300
|
+
)
|
|
301
|
+
|
|
302
|
+
|
|
303
|
+
|
|
304
|
+
|
|
42
305
|
@validate_call
|
|
43
306
|
async def get_subject(
|
|
44
307
|
self,
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
## aind-metadata-service Service to pull data from example backend.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 2.
|
|
8
|
+
The version of the OpenAPI document: 2.1.0
|
|
9
9
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
10
|
|
|
11
11
|
Do not edit the class manually.
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
## aind-metadata-service Service to pull data from example backend.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 2.
|
|
8
|
+
The version of the OpenAPI document: 2.1.0
|
|
9
9
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
10
|
|
|
11
11
|
Do not edit the class manually.
|
|
@@ -90,7 +90,7 @@ class ApiClient:
|
|
|
90
90
|
self.default_headers[header_name] = header_value
|
|
91
91
|
self.cookie = cookie
|
|
92
92
|
# Set default User-Agent.
|
|
93
|
-
self.user_agent = 'OpenAPI-Generator/2.
|
|
93
|
+
self.user_agent = 'OpenAPI-Generator/2.1.0/python'
|
|
94
94
|
self.client_side_validation = configuration.client_side_validation
|
|
95
95
|
|
|
96
96
|
async def __aenter__(self):
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
## aind-metadata-service Service to pull data from example backend.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 2.
|
|
8
|
+
The version of the OpenAPI document: 2.1.0
|
|
9
9
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
10
|
|
|
11
11
|
Do not edit the class manually.
|
|
@@ -496,8 +496,8 @@ class Configuration:
|
|
|
496
496
|
return "Python SDK Debug Report:\n"\
|
|
497
497
|
"OS: {env}\n"\
|
|
498
498
|
"Python Version: {pyversion}\n"\
|
|
499
|
-
"Version of the API: 2.
|
|
500
|
-
"SDK Package Version: 2.
|
|
499
|
+
"Version of the API: 2.1.0\n"\
|
|
500
|
+
"SDK Package Version: 2.1.0".\
|
|
501
501
|
format(env=sys.platform, pyversion=sys.version)
|
|
502
502
|
|
|
503
503
|
def get_host_settings(self) -> List[HostSetting]:
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
## aind-metadata-service Service to pull data from example backend.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 2.
|
|
8
|
+
The version of the OpenAPI document: 2.1.0
|
|
9
9
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
10
|
|
|
11
11
|
Do not edit the class manually.
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
## aind-metadata-service Service to pull data from example backend.
|
|
8
8
|
|
|
9
|
-
The version of the OpenAPI document: 2.
|
|
9
|
+
The version of the OpenAPI document: 2.1.0
|
|
10
10
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
11
11
|
|
|
12
12
|
Do not edit the class manually.
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
## aind-metadata-service Service to pull data from example backend.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 2.
|
|
8
|
+
The version of the OpenAPI document: 2.1.0
|
|
9
9
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
10
|
|
|
11
11
|
Do not edit the class manually.
|
|
@@ -27,7 +27,7 @@ class HealthCheck(BaseModel):
|
|
|
27
27
|
Response model to validate and return when performing a health check.
|
|
28
28
|
""" # noqa: E501
|
|
29
29
|
status: Optional[StrictStr] = 'OK'
|
|
30
|
-
service_version: Optional[StrictStr] = '2.
|
|
30
|
+
service_version: Optional[StrictStr] = '2.1.0'
|
|
31
31
|
__properties: ClassVar[List[str]] = ["status", "service_version"]
|
|
32
32
|
|
|
33
33
|
@field_validator('status')
|
|
@@ -92,7 +92,7 @@ class HealthCheck(BaseModel):
|
|
|
92
92
|
|
|
93
93
|
_obj = cls.model_validate({
|
|
94
94
|
"status": obj.get("status") if obj.get("status") is not None else 'OK',
|
|
95
|
-
"service_version": obj.get("service_version") if obj.get("service_version") is not None else '2.
|
|
95
|
+
"service_version": obj.get("service_version") if obj.get("service_version") is not None else '2.1.0'
|
|
96
96
|
})
|
|
97
97
|
return _obj
|
|
98
98
|
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
## aind-metadata-service Service to pull data from example backend.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 2.
|
|
8
|
+
The version of the OpenAPI document: 2.1.0
|
|
9
9
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
10
|
|
|
11
11
|
Do not edit the class manually.
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
## aind-metadata-service Service to pull data from example backend.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 2.
|
|
8
|
+
The version of the OpenAPI document: 2.1.0
|
|
9
9
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
10
|
|
|
11
11
|
Do not edit the class manually.
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
## aind-metadata-service Service to pull data from example backend.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 2.
|
|
8
|
+
The version of the OpenAPI document: 2.1.0
|
|
9
9
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
10
|
|
|
11
11
|
Do not edit the class manually.
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
## aind-metadata-service Service to pull data from example backend.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 2.
|
|
8
|
+
The version of the OpenAPI document: 2.1.0
|
|
9
9
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
10
|
|
|
11
11
|
Do not edit the class manually.
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
## aind-metadata-service Service to pull data from example backend.
|
|
7
7
|
|
|
8
|
-
The version of the OpenAPI document: 2.
|
|
8
|
+
The version of the OpenAPI document: 2.1.0
|
|
9
9
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
10
|
|
|
11
11
|
Do not edit the class manually.
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
aind_metadata_service_async_client/__init__.py,sha256=ze3OqIn-n4jPKpXB-NXH6e8nG4td9vbiCs6-pMe5Z3A,1677
|
|
2
|
+
aind_metadata_service_async_client/api_client.py,sha256=VHfWQz6DvrrRcuuWFZHwmPWecWMza-u5WFrvcnrj6oM,27680
|
|
3
|
+
aind_metadata_service_async_client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
4
|
+
aind_metadata_service_async_client/configuration.py,sha256=PKfjYjfWi0CgGtmCAHu3zP61SLlmQAszIp-PRUAQUnA,17633
|
|
5
|
+
aind_metadata_service_async_client/exceptions.py,sha256=iba5pwGUVaO88ocruH2AJ-hVwv7DX7cb3z5F_H3x5z8,6450
|
|
6
|
+
aind_metadata_service_async_client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
+
aind_metadata_service_async_client/rest.py,sha256=LZBRjXmGhdvcrGPmErBdkZpXTHmXZ6OH58JaDYo7euY,7291
|
|
8
|
+
aind_metadata_service_async_client/api/__init__.py,sha256=d96ze7sPL5kXXzyh_qEhQY8xwPQP7HlPQzA_hU2u4Ck,204
|
|
9
|
+
aind_metadata_service_async_client/api/default_api.py,sha256=xudctJYJcWQnwb6wQ0ZL5Mon2t-OkpIQCaFuHKvdQIY,165435
|
|
10
|
+
aind_metadata_service_async_client/api/healthcheck_api.py,sha256=5RkQmgnFHyK93zHZDbCY5y9RWVNjQMignL5qS5I6EuY,10649
|
|
11
|
+
aind_metadata_service_async_client/models/__init__.py,sha256=uOnzheDYdiFxwe5md6DmGS5C0ZZ1CHieTUcTGLbZCY0,797
|
|
12
|
+
aind_metadata_service_async_client/models/health_check.py,sha256=pgWhYd2ngpw4M5odvl-lWrZfXJula_EGisfB6UFMrJo,3059
|
|
13
|
+
aind_metadata_service_async_client/models/http_validation_error.py,sha256=n6jrnnRhlSxZiE2lokdl-P-rlb-0RUIyGwt-5HxgqrY,3003
|
|
14
|
+
aind_metadata_service_async_client/models/slims_workflow.py,sha256=6S0CtRUBZExL9XmiKf6qf1SqG77_l0IayEXKuH7BlaI,914
|
|
15
|
+
aind_metadata_service_async_client/models/validation_error.py,sha256=Fp0kYWwfMel-ObgAoNJVwSFfIDASi1zrW4bk4s4k8NQ,3095
|
|
16
|
+
aind_metadata_service_async_client/models/validation_error_loc_inner.py,sha256=8zgcUhND2ewzhLRXoeK3YG8GTwhBJrNS9qBH-jvbqLE,4864
|
|
17
|
+
aind_metadata_service_async_client-2.1.0.dist-info/METADATA,sha256=ClS0GbWbAXAKsXJXKZfJZFddSan7u8ZRTPaXlriGraI,732
|
|
18
|
+
aind_metadata_service_async_client-2.1.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
19
|
+
aind_metadata_service_async_client-2.1.0.dist-info/top_level.txt,sha256=qZsXHVGh-0uni82lQ-rEHhHR5xE4vTvVjd5Km-m4GJE,35
|
|
20
|
+
aind_metadata_service_async_client-2.1.0.dist-info/RECORD,,
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
aind_metadata_service_async_client/__init__.py,sha256=mBvjFH_6gKTutuFQgWnY16g_MneSik8wymLLKKZkuw0,1677
|
|
2
|
-
aind_metadata_service_async_client/api_client.py,sha256=bXOvb6TKMc4baxI21mVyaZAqXeaYVo4omIHIesAkrf8,27680
|
|
3
|
-
aind_metadata_service_async_client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
4
|
-
aind_metadata_service_async_client/configuration.py,sha256=vlWoSiSQ4GnbqP1l_gSPcKYK3HfbOeIgeucL4LTOxJY,17633
|
|
5
|
-
aind_metadata_service_async_client/exceptions.py,sha256=oXGuICvlFT83Cgb6SN9SKchj9OTfjVZR52KOl36jGz8,6450
|
|
6
|
-
aind_metadata_service_async_client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
7
|
-
aind_metadata_service_async_client/rest.py,sha256=SEFpPTriEpxZOAq22WjHU5CMp6M8F5tOyHw624mNa6g,7291
|
|
8
|
-
aind_metadata_service_async_client/api/__init__.py,sha256=d96ze7sPL5kXXzyh_qEhQY8xwPQP7HlPQzA_hU2u4Ck,204
|
|
9
|
-
aind_metadata_service_async_client/api/default_api.py,sha256=gS14yBMb6g_-hmJ6CwQ461ADBP_AQKkIf2K-gimQ8zU,155518
|
|
10
|
-
aind_metadata_service_async_client/api/healthcheck_api.py,sha256=EYoyf07ciqlXNvqHAUQ1h3LyfFMHx9PhSuSxzkAjBgY,10649
|
|
11
|
-
aind_metadata_service_async_client/models/__init__.py,sha256=5214P2kSiiQRSyuIjhRHnQFK2BHCEXNpXQXHw6ZRiKg,797
|
|
12
|
-
aind_metadata_service_async_client/models/health_check.py,sha256=aFLmc5Nvi4Saq5ejdKWzc2xlwgsO1Q2Hx0Ya654DVc8,3059
|
|
13
|
-
aind_metadata_service_async_client/models/http_validation_error.py,sha256=uM492j3jIB_13xX9x83qLOma_j_8BqgOjVspNhuruA4,3003
|
|
14
|
-
aind_metadata_service_async_client/models/slims_workflow.py,sha256=I5LnKzTyYEKdrtmr-z8f1d7_-32MMCrrz0m2FyS53-g,914
|
|
15
|
-
aind_metadata_service_async_client/models/validation_error.py,sha256=6yVLKpx_SiHaVmfjNkNTy_fBxHY4VojHtuQHqXZgxOQ,3095
|
|
16
|
-
aind_metadata_service_async_client/models/validation_error_loc_inner.py,sha256=e5aNAHIp72Acbhd3IlGf959XoDIef2C0fkm4_T0D2_c,4864
|
|
17
|
-
aind_metadata_service_async_client-2.0.0.dist-info/METADATA,sha256=N_BQnNEwOjYLid6BfqckD4WOMTGwvB7hFHTJUvc2m4g,732
|
|
18
|
-
aind_metadata_service_async_client-2.0.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
19
|
-
aind_metadata_service_async_client-2.0.0.dist-info/top_level.txt,sha256=qZsXHVGh-0uni82lQ-rEHhHR5xE4vTvVjd5Km-m4GJE,35
|
|
20
|
-
aind_metadata_service_async_client-2.0.0.dist-info/RECORD,,
|
|
File without changes
|