aind-metadata-service-async-client 1.0.9__py3-none-any.whl → 1.0.11__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.

Potentially problematic release.


This version of aind-metadata-service-async-client might be problematic. Click here for more details.

Files changed (31) hide show
  1. aind_metadata_service_async_client/__init__.py +2 -2
  2. aind_metadata_service_async_client/api/default_api.py +1 -18
  3. aind_metadata_service_async_client/api/healthcheck_api.py +1 -1
  4. aind_metadata_service_async_client/api_client.py +2 -2
  5. aind_metadata_service_async_client/configuration.py +3 -3
  6. aind_metadata_service_async_client/exceptions.py +1 -1
  7. aind_metadata_service_async_client/models/__init__.py +1 -1
  8. aind_metadata_service_async_client/models/anyof_schema1_validator.py +1 -1
  9. aind_metadata_service_async_client/models/average_hit_rate.py +1 -1
  10. aind_metadata_service_async_client/models/fov_coordinate_ap.py +1 -1
  11. aind_metadata_service_async_client/models/fov_coordinate_ml.py +1 -1
  12. aind_metadata_service_async_client/models/health_check.py +3 -3
  13. aind_metadata_service_async_client/models/hit_rate_trials010.py +1 -1
  14. aind_metadata_service_async_client/models/hit_rate_trials2040.py +1 -1
  15. aind_metadata_service_async_client/models/http_validation_error.py +1 -1
  16. aind_metadata_service_async_client/models/input_source.py +1 -1
  17. aind_metadata_service_async_client/models/job_settings.py +1 -1
  18. aind_metadata_service_async_client/models/job_settings_starting_lickport_position_inner.py +1 -1
  19. aind_metadata_service_async_client/models/output_directory.py +1 -1
  20. aind_metadata_service_async_client/models/slims_workflow.py +1 -1
  21. aind_metadata_service_async_client/models/total_hits.py +1 -1
  22. aind_metadata_service_async_client/models/trial_num.py +1 -1
  23. aind_metadata_service_async_client/models/user_settings_config_file.py +1 -1
  24. aind_metadata_service_async_client/models/validation_error.py +1 -1
  25. aind_metadata_service_async_client/models/validation_error_loc_inner.py +1 -1
  26. aind_metadata_service_async_client/rest.py +1 -1
  27. {aind_metadata_service_async_client-1.0.9.dist-info → aind_metadata_service_async_client-1.0.11.dist-info}/METADATA +1 -1
  28. aind_metadata_service_async_client-1.0.11.dist-info/RECORD +33 -0
  29. aind_metadata_service_async_client-1.0.9.dist-info/RECORD +0 -33
  30. {aind_metadata_service_async_client-1.0.9.dist-info → aind_metadata_service_async_client-1.0.11.dist-info}/WHEEL +0 -0
  31. {aind_metadata_service_async_client-1.0.9.dist-info → aind_metadata_service_async_client-1.0.11.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: 1.0.9
10
+ The version of the OpenAPI document: 1.0.11
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__ = "1.0.9"
17
+ __version__ = "1.0.11"
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: 1.0.9
8
+ The version of the OpenAPI document: 1.0.11
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
11
  Do not edit the class manually.
@@ -320,7 +320,6 @@ class DefaultApi:
320
320
  async def get_funding(
321
321
  self,
322
322
  project_name: StrictStr,
323
- subproject: Optional[StrictStr] = None,
324
323
  _request_timeout: Union[
325
324
  None,
326
325
  Annotated[StrictFloat, Field(gt=0)],
@@ -340,8 +339,6 @@ class DefaultApi:
340
339
 
341
340
  :param project_name: (required)
342
341
  :type project_name: str
343
- :param subproject:
344
- :type subproject: str
345
342
  :param _request_timeout: timeout setting for this request. If one
346
343
  number provided, it will be total request
347
344
  timeout. It can also be a pair (tuple) of
@@ -366,7 +363,6 @@ class DefaultApi:
366
363
 
367
364
  _param = self._get_funding_serialize(
368
365
  project_name=project_name,
369
- subproject=subproject,
370
366
  _request_auth=_request_auth,
371
367
  _content_type=_content_type,
372
368
  _headers=_headers,
@@ -392,7 +388,6 @@ class DefaultApi:
392
388
  async def get_funding_with_http_info(
393
389
  self,
394
390
  project_name: StrictStr,
395
- subproject: Optional[StrictStr] = None,
396
391
  _request_timeout: Union[
397
392
  None,
398
393
  Annotated[StrictFloat, Field(gt=0)],
@@ -412,8 +407,6 @@ class DefaultApi:
412
407
 
413
408
  :param project_name: (required)
414
409
  :type project_name: str
415
- :param subproject:
416
- :type subproject: str
417
410
  :param _request_timeout: timeout setting for this request. If one
418
411
  number provided, it will be total request
419
412
  timeout. It can also be a pair (tuple) of
@@ -438,7 +431,6 @@ class DefaultApi:
438
431
 
439
432
  _param = self._get_funding_serialize(
440
433
  project_name=project_name,
441
- subproject=subproject,
442
434
  _request_auth=_request_auth,
443
435
  _content_type=_content_type,
444
436
  _headers=_headers,
@@ -464,7 +456,6 @@ class DefaultApi:
464
456
  async def get_funding_without_preload_content(
465
457
  self,
466
458
  project_name: StrictStr,
467
- subproject: Optional[StrictStr] = None,
468
459
  _request_timeout: Union[
469
460
  None,
470
461
  Annotated[StrictFloat, Field(gt=0)],
@@ -484,8 +475,6 @@ class DefaultApi:
484
475
 
485
476
  :param project_name: (required)
486
477
  :type project_name: str
487
- :param subproject:
488
- :type subproject: str
489
478
  :param _request_timeout: timeout setting for this request. If one
490
479
  number provided, it will be total request
491
480
  timeout. It can also be a pair (tuple) of
@@ -510,7 +499,6 @@ class DefaultApi:
510
499
 
511
500
  _param = self._get_funding_serialize(
512
501
  project_name=project_name,
513
- subproject=subproject,
514
502
  _request_auth=_request_auth,
515
503
  _content_type=_content_type,
516
504
  _headers=_headers,
@@ -531,7 +519,6 @@ class DefaultApi:
531
519
  def _get_funding_serialize(
532
520
  self,
533
521
  project_name,
534
- subproject,
535
522
  _request_auth,
536
523
  _content_type,
537
524
  _headers,
@@ -556,10 +543,6 @@ class DefaultApi:
556
543
  if project_name is not None:
557
544
  _path_params['project_name'] = project_name
558
545
  # process the query parameters
559
- if subproject is not None:
560
-
561
- _query_params.append(('subproject', subproject))
562
-
563
546
  # process the header parameters
564
547
  # process the form parameters
565
548
  # process the body parameter
@@ -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: 1.0.9
8
+ The version of the OpenAPI document: 1.0.11
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: 1.0.9
8
+ The version of the OpenAPI document: 1.0.11
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/1.0.9/python'
93
+ self.user_agent = 'OpenAPI-Generator/1.0.11/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: 1.0.9
8
+ The version of the OpenAPI document: 1.0.11
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: 1.0.9\n"\
500
- "SDK Package Version: 1.0.9".\
499
+ "Version of the API: 1.0.11\n"\
500
+ "SDK Package Version: 1.0.11".\
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: 1.0.9
8
+ The version of the OpenAPI document: 1.0.11
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: 1.0.9
9
+ The version of the OpenAPI document: 1.0.11
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: 1.0.9
8
+ The version of the OpenAPI document: 1.0.11
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: 1.0.9
8
+ The version of the OpenAPI document: 1.0.11
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: 1.0.9
8
+ The version of the OpenAPI document: 1.0.11
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: 1.0.9
8
+ The version of the OpenAPI document: 1.0.11
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: 1.0.9
8
+ The version of the OpenAPI document: 1.0.11
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] = '1.0.9'
30
+ service_version: Optional[StrictStr] = '1.0.11'
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 '1.0.9'
95
+ "service_version": obj.get("service_version") if obj.get("service_version") is not None else '1.0.11'
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: 1.0.9
8
+ The version of the OpenAPI document: 1.0.11
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: 1.0.9
8
+ The version of the OpenAPI document: 1.0.11
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: 1.0.9
8
+ The version of the OpenAPI document: 1.0.11
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: 1.0.9
8
+ The version of the OpenAPI document: 1.0.11
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: 1.0.9
8
+ The version of the OpenAPI document: 1.0.11
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: 1.0.9
8
+ The version of the OpenAPI document: 1.0.11
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: 1.0.9
8
+ The version of the OpenAPI document: 1.0.11
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: 1.0.9
8
+ The version of the OpenAPI document: 1.0.11
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: 1.0.9
8
+ The version of the OpenAPI document: 1.0.11
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: 1.0.9
8
+ The version of the OpenAPI document: 1.0.11
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: 1.0.9
8
+ The version of the OpenAPI document: 1.0.11
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: 1.0.9
8
+ The version of the OpenAPI document: 1.0.11
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: 1.0.9
8
+ The version of the OpenAPI document: 1.0.11
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: 1.0.9
8
+ The version of the OpenAPI document: 1.0.11
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
11
  Do not edit the class manually.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: aind-metadata-service-async-client
3
- Version: 1.0.9
3
+ Version: 1.0.11
4
4
  Summary: aind-metadata-service
5
5
  Home-page:
6
6
  Author: OpenAPI Generator community
@@ -0,0 +1,33 @@
1
+ aind_metadata_service_async_client/__init__.py,sha256=u6kVc20lFmj8Fahq2byCgDXNBhQ8gNpDCohdi1PC10g,2860
2
+ aind_metadata_service_async_client/api_client.py,sha256=G9OZyzvQZYXVs5pOB3kzccSOJ4aK23oOr56Zk9tgS_Y,27682
3
+ aind_metadata_service_async_client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
+ aind_metadata_service_async_client/configuration.py,sha256=valJzFeqI8_9hCSYFGstydsBESKJ1FOBqI6rr_F1JqY,17636
5
+ aind_metadata_service_async_client/exceptions.py,sha256=jkeEQmxUkpthTgnWmYCip6fuZeJt8ec0vMtfvg9mH9A,6451
6
+ aind_metadata_service_async_client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ aind_metadata_service_async_client/rest.py,sha256=bZohUWHomysXjhRM6MppjbswClh6YQ8cXTbMJQMBGUI,7292
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=Iju8T8TDL2YZhz57lun6bG7csAb1_OtmwAtf6RpZEpo,145210
10
+ aind_metadata_service_async_client/api/healthcheck_api.py,sha256=rd9KZTxS7Uv_FKfnBRpPqkdF_yWFWrKwl1G0R5mChro,10643
11
+ aind_metadata_service_async_client/models/__init__.py,sha256=jF6H_Qp3OE0S-J8WSzal5lTUOooJc-S2igpkpdmElME,1979
12
+ aind_metadata_service_async_client/models/anyof_schema1_validator.py,sha256=r93Wkxqhm1JhofO89NoXcKKLPUA5Psx7EdkrEQABMHM,5013
13
+ aind_metadata_service_async_client/models/average_hit_rate.py,sha256=aoFQs_ksi0RWGf9Fvl1KeMXgZscHRrfz-DJ5Rnjb6Og,4971
14
+ aind_metadata_service_async_client/models/fov_coordinate_ap.py,sha256=m5vFHQfjW_CumWNA8I2L1CL7XqNP61YKiJIi2Fj_U8A,4977
15
+ aind_metadata_service_async_client/models/fov_coordinate_ml.py,sha256=E3_OhSkT1whQb1RpRwNbb-4pasAl4tYUYIvpr2Aorh0,4209
16
+ aind_metadata_service_async_client/models/health_check.py,sha256=88_YIAxjSd70v_Vfkip-frC0OLHVDPtI6HnOMggyPX8,3062
17
+ aind_metadata_service_async_client/models/hit_rate_trials010.py,sha256=w8BMTPaLsLRpyGO5F0-nExRHbxLo1P7pNzMJFmyLvFE,4983
18
+ aind_metadata_service_async_client/models/hit_rate_trials2040.py,sha256=uBHT20ZDEvAvf9_dIp1M9T1dEFIZH3CXio5VexripeM,4989
19
+ aind_metadata_service_async_client/models/http_validation_error.py,sha256=5MB48_dcHwRQ4iWzRqpUMAqiizF1F-beLEiHC2HBD9Q,3004
20
+ aind_metadata_service_async_client/models/input_source.py,sha256=JWAv-eGDRmUnSHXI0xph76Qyosfnmi6ZqaL9Qr48Ftg,4701
21
+ aind_metadata_service_async_client/models/job_settings.py,sha256=MMeNBNBDxDbL6LJ1JYxny6QbG5MehwDXYKtHI3PxZ7k,19878
22
+ aind_metadata_service_async_client/models/job_settings_starting_lickport_position_inner.py,sha256=H6ben50me2jxkqROyMRJsy7zqGJ_LSJZyrE45ZYDfHw,5025
23
+ aind_metadata_service_async_client/models/output_directory.py,sha256=NwbVGJqgkAjlCntU4ULAHOJ9C5S4p8G32AYdcbY7Obc,3816
24
+ aind_metadata_service_async_client/models/slims_workflow.py,sha256=iZOFgxm9Tncsexfwk-6ek57IJIdcHrBdBMBlRyJLjgg,915
25
+ aind_metadata_service_async_client/models/total_hits.py,sha256=ZLyD1bLc0Ea8y2eMzoomn_FX6nrxcV5ENcMekOQuqaU,4941
26
+ aind_metadata_service_async_client/models/trial_num.py,sha256=xOqEgQO6Js3NmbJb_9N1H_sNEbfa6TlkOMti1l5caFE,4935
27
+ aind_metadata_service_async_client/models/user_settings_config_file.py,sha256=LL2heQlspFL7jU9Du7E27suPVRosexobCvlBUMkctRI,3830
28
+ aind_metadata_service_async_client/models/validation_error.py,sha256=g8uqNg4QUXZ6s7YY2EYSvzQYBpDAemQ4e7pFuvxwYYU,3096
29
+ aind_metadata_service_async_client/models/validation_error_loc_inner.py,sha256=ZzM8LpmRCP3DBkQlUF0FkSRafLvLKICL271lPP6ZFRI,4865
30
+ aind_metadata_service_async_client-1.0.11.dist-info/METADATA,sha256=RodnvvmaPp32Zsc-rZa-UE8Xq5ugpn8oQZtRIQUjVlg,733
31
+ aind_metadata_service_async_client-1.0.11.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
32
+ aind_metadata_service_async_client-1.0.11.dist-info/top_level.txt,sha256=qZsXHVGh-0uni82lQ-rEHhHR5xE4vTvVjd5Km-m4GJE,35
33
+ aind_metadata_service_async_client-1.0.11.dist-info/RECORD,,
@@ -1,33 +0,0 @@
1
- aind_metadata_service_async_client/__init__.py,sha256=eVsVh39Bw4k5VbfPa-ACxfjpplXHcaLs6WO-LEgArhs,2858
2
- aind_metadata_service_async_client/api_client.py,sha256=IUj7jseEv93KWJUhydJFnAMu1fuV70E2lwvKskqRbfM,27680
3
- aind_metadata_service_async_client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
- aind_metadata_service_async_client/configuration.py,sha256=I4RjkzME-6H8uXDtUJW-6sLm5BxckhkTVExN1TXA1Js,17633
5
- aind_metadata_service_async_client/exceptions.py,sha256=DkQomPD_9gJkdU1M_gOvbYpZs6nIUf7FTQiezWbBMuo,6450
6
- aind_metadata_service_async_client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
- aind_metadata_service_async_client/rest.py,sha256=fUrx35AYFIExlnTyHYuvaIgsEz5KE6vb3yJ0x3HpLhw,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=ssCg0kLeDi1VhMAp-3UBoWssbbP23iXE0AahI0aSEVk,145771
10
- aind_metadata_service_async_client/api/healthcheck_api.py,sha256=LOMXyO8YwiqhTp0ykDT7UOl3cGiEYXgOCaUNtCINezg,10642
11
- aind_metadata_service_async_client/models/__init__.py,sha256=F-hPgWmYkVK9M9nnXeHrmr7MQZMd44VfNmbBEuK2JUg,1978
12
- aind_metadata_service_async_client/models/anyof_schema1_validator.py,sha256=8yEjp-SE_Ib7xe-Fs6tjse1KpvLGNSczaz7x03Af58E,5012
13
- aind_metadata_service_async_client/models/average_hit_rate.py,sha256=1DShiGekA1rsPrFBcKpv2Iq_fcH7elk32UcUrHZslMI,4970
14
- aind_metadata_service_async_client/models/fov_coordinate_ap.py,sha256=1XjR10PYENkF-O7diSgqAFPA__TDFAI2Stw7Zl14k6w,4976
15
- aind_metadata_service_async_client/models/fov_coordinate_ml.py,sha256=ARG61TNmYH4eXgMyikLSxL1ADB4zVh_L6Tujbf3tLws,4208
16
- aind_metadata_service_async_client/models/health_check.py,sha256=8Z7y7kuLC5oU0lAu8G0GCtU75LGVRd7TFaUzoByx99k,3059
17
- aind_metadata_service_async_client/models/hit_rate_trials010.py,sha256=bGFMXdmB_jBMp-EGdtQ5TChNcpiUIZN-5fu7XOKJM0Q,4982
18
- aind_metadata_service_async_client/models/hit_rate_trials2040.py,sha256=DoML9bhsDjnsbn1s85rXRwg9LNlTJaFALyHYrZZ1nPE,4988
19
- aind_metadata_service_async_client/models/http_validation_error.py,sha256=bq2LQ9sOb2b7qOwjMaQk1_phKqz8fZIybKCYNCtd-wE,3003
20
- aind_metadata_service_async_client/models/input_source.py,sha256=a8liYc1uURmxsd1pdZBFD3k-eE3yt0cC2y5Yv8JHBrw,4700
21
- aind_metadata_service_async_client/models/job_settings.py,sha256=rBTrrIbzCt_i16Guwq_x8o1rgVPckaUXaPXUFqwRW2k,19877
22
- aind_metadata_service_async_client/models/job_settings_starting_lickport_position_inner.py,sha256=JChvZsz1rLrfE-uUcsytgdizXVW8UUcFqgMvC84bcUk,5024
23
- aind_metadata_service_async_client/models/output_directory.py,sha256=eRR6cySA2icxS2bmrdxQ3unLYKNa4V0Xo5YtNxAK26k,3815
24
- aind_metadata_service_async_client/models/slims_workflow.py,sha256=D8z_qiZMC92sJtB7k-yygLlt0KyVpUv2R5_MDBPicDk,914
25
- aind_metadata_service_async_client/models/total_hits.py,sha256=d2U8McJNRFFTGa3uCHqjXSSTcayYyAeVnYbIDJan6sg,4940
26
- aind_metadata_service_async_client/models/trial_num.py,sha256=OkStXzMK_ampatbyZ0tvO1AX25MweA6gz4zskhDTTHg,4934
27
- aind_metadata_service_async_client/models/user_settings_config_file.py,sha256=NvP25hMJFK3OE-Rq3t5zHxu6eamUof13pR5_t79sl1g,3829
28
- aind_metadata_service_async_client/models/validation_error.py,sha256=_A1VYDrASVC5cmVBUzu9Q85XWqwNU9_Oc3EI6GFJwmc,3095
29
- aind_metadata_service_async_client/models/validation_error_loc_inner.py,sha256=m10VV5sJjmFKynkG4ugCGtkbXDQm3opKbW_v669vGnU,4864
30
- aind_metadata_service_async_client-1.0.9.dist-info/METADATA,sha256=RW4xO1W64lQPRYHuOEWuf7x7BPrCtwwhjSkLjQKzo48,732
31
- aind_metadata_service_async_client-1.0.9.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
32
- aind_metadata_service_async_client-1.0.9.dist-info/top_level.txt,sha256=qZsXHVGh-0uni82lQ-rEHhHR5xE4vTvVjd5Km-m4GJE,35
33
- aind_metadata_service_async_client-1.0.9.dist-info/RECORD,,