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

@@ -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.2.2
8
+ The version of the OpenAPI document: 2.3.3
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.2.2
8
+ The version of the OpenAPI document: 2.3.3
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.2.2/python'
93
+ self.user_agent = 'OpenAPI-Generator/2.3.3/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.2.2
8
+ The version of the OpenAPI document: 2.3.3
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.2.2\n"\
500
- "SDK Package Version: 2.2.2".\
499
+ "Version of the API: 2.3.3\n"\
500
+ "SDK Package Version: 2.3.3".\
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.2.2
8
+ The version of the OpenAPI document: 2.3.3
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.2.2
9
+ The version of the OpenAPI document: 2.3.3
10
10
  Generated by OpenAPI Generator (https://openapi-generator.tech)
11
11
 
12
12
  Do not edit the class manually.
@@ -14,8 +14,8 @@
14
14
 
15
15
 
16
16
  # import models into model package
17
+ from aind_metadata_service_async_client.models.aind_metadata_service_server_routes_slims_slims_workflow import AindMetadataServiceServerRoutesSlimsSlimsWorkflow
17
18
  from aind_metadata_service_async_client.models.http_validation_error import HTTPValidationError
18
19
  from aind_metadata_service_async_client.models.health_check import HealthCheck
19
- from aind_metadata_service_async_client.models.slims_workflow import SlimsWorkflow
20
20
  from aind_metadata_service_async_client.models.validation_error import ValidationError
21
21
  from aind_metadata_service_async_client.models.validation_error_loc_inner import ValidationErrorLocInner
@@ -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.2.2
8
+ The version of the OpenAPI document: 2.3.3
9
9
  Generated by OpenAPI Generator (https://openapi-generator.tech)
10
10
 
11
11
  Do not edit the class manually.
@@ -18,7 +18,7 @@ from enum import Enum
18
18
  from typing_extensions import Self
19
19
 
20
20
 
21
- class SlimsWorkflow(str, Enum):
21
+ class AindMetadataServiceServerRoutesSlimsSlimsWorkflow(str, Enum):
22
22
  """
23
23
  Available workflows that can be queried.
24
24
  """
@@ -34,7 +34,7 @@ class SlimsWorkflow(str, Enum):
34
34
 
35
35
  @classmethod
36
36
  def from_json(cls, json_str: str) -> Self:
37
- """Create an instance of SlimsWorkflow from a JSON string"""
37
+ """Create an instance of AindMetadataServiceServerRoutesSlimsSlimsWorkflow from a JSON string"""
38
38
  return cls(json.loads(json_str))
39
39
 
40
40
 
@@ -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.2.2
8
+ The version of the OpenAPI document: 2.3.3
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.2.2'
30
+ service_version: Optional[StrictStr] = '2.3.3'
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.2.2'
95
+ "service_version": obj.get("service_version") if obj.get("service_version") is not None else '2.3.3'
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.2.2
8
+ The version of the OpenAPI document: 2.3.3
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.2.2
8
+ The version of the OpenAPI document: 2.3.3
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.2.2
8
+ The version of the OpenAPI document: 2.3.3
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.2.2
8
+ The version of the OpenAPI document: 2.3.3
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: 2.2.2
3
+ Version: 2.3.3
4
4
  Summary: aind-metadata-service
5
5
  Home-page:
6
6
  Author: OpenAPI Generator community
@@ -0,0 +1,20 @@
1
+ aind_metadata_service_async_client/__init__.py,sha256=kA_ymmncX9yIpkRNEr8OQIIHpYAodoeV_iAE-n-W23w,1755
2
+ aind_metadata_service_async_client/api_client.py,sha256=OCfD4K8o4KxgjPWI3TO7eD67ocUOUj1uCR748i-pibM,27680
3
+ aind_metadata_service_async_client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
+ aind_metadata_service_async_client/configuration.py,sha256=hWvi_Ju6W5FMEqqeFgdLB6EgBMJ9nAir5ixs-GFxUdQ,17633
5
+ aind_metadata_service_async_client/exceptions.py,sha256=QeMgky3U1K4iy0BWBYrJNHrtPgmbyKPRcAsXXVMFuIk,6450
6
+ aind_metadata_service_async_client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ aind_metadata_service_async_client/rest.py,sha256=3WJ9vqHNoEtozYw-F5XTABkwCBMvdtRDjajcxDtRMpQ,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=mFwxEBcT_-q5kXCg5aAtlizoA-K92kvODSB-5D4UvG8,270315
10
+ aind_metadata_service_async_client/api/healthcheck_api.py,sha256=CyrxNAlmgnUQI3cUjWX1PxQhWdoitWd8IuPFA3q-Bys,10649
11
+ aind_metadata_service_async_client/models/__init__.py,sha256=6ENy0KusIsLs2mBmet3nhEWF-TR7RFSv0utw8l4HH-k,875
12
+ aind_metadata_service_async_client/models/aind_metadata_service_server_routes_slims_slims_workflow.py,sha256=MR1U05-Szw1carLJ8M5IY8t-NC8A_sU1vdlFpTJUs-Q,986
13
+ aind_metadata_service_async_client/models/health_check.py,sha256=C9vOnEKKoWYIlWn18nAk36wIYmExFfz9HERQsXbZiQk,3059
14
+ aind_metadata_service_async_client/models/http_validation_error.py,sha256=QLvVrxGDXIMLArcHQC82cElwrWSbUbDP9_-Jf1-8084,3003
15
+ aind_metadata_service_async_client/models/validation_error.py,sha256=o8Em-yi5gIRffRl3MS5Za_MTVHIspjdlxziGDIw8j38,3095
16
+ aind_metadata_service_async_client/models/validation_error_loc_inner.py,sha256=hps5rhnQlxmYjz5NqzJlzEfIb8s-khHyPIUoggz5OlM,4864
17
+ aind_metadata_service_async_client-2.3.3.dist-info/METADATA,sha256=vJv08KfzpSvLGUS94sdWY7Pv5_f2H7jtK6Dt5Raj-uI,732
18
+ aind_metadata_service_async_client-2.3.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
19
+ aind_metadata_service_async_client-2.3.3.dist-info/top_level.txt,sha256=qZsXHVGh-0uni82lQ-rEHhHR5xE4vTvVjd5Km-m4GJE,35
20
+ aind_metadata_service_async_client-2.3.3.dist-info/RECORD,,
@@ -1,20 +0,0 @@
1
- aind_metadata_service_async_client/__init__.py,sha256=8aQ8D2bCHkQAwCbCC9C-zdnNE0E9Qkh_ra-fdzWp2Zk,1677
2
- aind_metadata_service_async_client/api_client.py,sha256=-H1Ob-mqhELqIYdMotuO8txLznpS7x1n9lYVq57gPiA,27680
3
- aind_metadata_service_async_client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
4
- aind_metadata_service_async_client/configuration.py,sha256=zXJ1ngoEMxYafeLt4m9OijEsojHcWGkSd6VWtMwRof4,17633
5
- aind_metadata_service_async_client/exceptions.py,sha256=bFwGBvPFRTGVaigTWgFp6anBomicZTxK4UccGyqTSeo,6450
6
- aind_metadata_service_async_client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
- aind_metadata_service_async_client/rest.py,sha256=LE6sLNOSpkfMjCv1pdWPE0ef68_xu6b946kbdSLxqSg,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=fyI-JdecQSXXofpnB_lwC65DLTFLMOC_XQfnPUrad0s,184685
10
- aind_metadata_service_async_client/api/healthcheck_api.py,sha256=T0gAQiMleAvU-0TwEb3meXW5q3KDRNc62B19Isma_dg,10649
11
- aind_metadata_service_async_client/models/__init__.py,sha256=MVKaFEFvFGoyrhOsuWLyGYlMQltSq79l31Y00G8Jd30,797
12
- aind_metadata_service_async_client/models/health_check.py,sha256=5TBWg-N913YgEuTTjMcKjGFqUQMvJzB0U6e9KX2m66A,3059
13
- aind_metadata_service_async_client/models/http_validation_error.py,sha256=VIB-9egHGkCb787WIJKZUkY6OYCAmF6w-nNMaP5TpcI,3003
14
- aind_metadata_service_async_client/models/slims_workflow.py,sha256=0eUVsmyz6gxfC3o8NBJ3_cHppeIPQ8va-SY6-KuXzw0,914
15
- aind_metadata_service_async_client/models/validation_error.py,sha256=oqdeWN-B-tMZyyNs6ghB6v7iVSHum9hq0G1hDmr4_js,3095
16
- aind_metadata_service_async_client/models/validation_error_loc_inner.py,sha256=g_VRbFl21apslo3gb3GKR416FkjnNfRtBTxFruSn1QY,4864
17
- aind_metadata_service_async_client-2.2.2.dist-info/METADATA,sha256=brDdQAYhZ3D7wjMkR_tGECmhvc9CDJCz_Z6MuXeibRE,732
18
- aind_metadata_service_async_client-2.2.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
19
- aind_metadata_service_async_client-2.2.2.dist-info/top_level.txt,sha256=qZsXHVGh-0uni82lQ-rEHhHR5xE4vTvVjd5Km-m4GJE,35
20
- aind_metadata_service_async_client-2.2.2.dist-info/RECORD,,