amsdal 0.0.39__cp311-cp311-macosx_10_9_universal2.whl → 0.0.41__cp311-cp311-macosx_10_9_universal2.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 amsdal might be problematic. Click here for more details.

Files changed (57) hide show
  1. amsdal/__about__.py +1 -1
  2. amsdal/cloud/__init__.cpython-311-darwin.so +0 -0
  3. amsdal/cloud/client.cpython-311-darwin.so +0 -0
  4. amsdal/cloud/constants.cpython-311-darwin.so +0 -0
  5. amsdal/cloud/enums.cpython-311-darwin.so +0 -0
  6. amsdal/cloud/models/__init__.cpython-311-darwin.so +0 -0
  7. amsdal/cloud/models/base.cpython-311-darwin.so +0 -0
  8. amsdal/cloud/services/__init__.cpython-311-darwin.so +0 -0
  9. amsdal/cloud/services/actions/__init__.cpython-311-darwin.so +0 -0
  10. amsdal/cloud/services/actions/add_dependency.cpython-311-darwin.so +0 -0
  11. amsdal/cloud/services/actions/add_secret.cpython-311-darwin.so +0 -0
  12. amsdal/cloud/services/actions/base.cpython-311-darwin.so +0 -0
  13. amsdal/cloud/services/actions/create_deploy.cpython-311-darwin.so +0 -0
  14. amsdal/cloud/services/actions/create_session.cpython-311-darwin.so +0 -0
  15. amsdal/cloud/services/actions/delete_dependency.cpython-311-darwin.so +0 -0
  16. amsdal/cloud/services/actions/delete_secret.cpython-311-darwin.so +0 -0
  17. amsdal/cloud/services/actions/destroy_deploy.cpython-311-darwin.so +0 -0
  18. amsdal/cloud/services/actions/expose_db.cpython-311-darwin.so +0 -0
  19. amsdal/cloud/services/actions/list_dependencies.cpython-311-darwin.so +0 -0
  20. amsdal/cloud/services/actions/list_deploys.cpython-311-darwin.so +0 -0
  21. amsdal/cloud/services/actions/list_secrets.cpython-311-darwin.so +0 -0
  22. amsdal/cloud/services/actions/manager.cpython-311-darwin.so +0 -0
  23. amsdal/cloud/services/actions/signup_action.cpython-311-darwin.so +0 -0
  24. amsdal/cloud/services/actions/update_deploy.cpython-311-darwin.so +0 -0
  25. amsdal/cloud/services/auth/__init__.cpython-311-darwin.so +0 -0
  26. amsdal/cloud/services/auth/base.cpython-311-darwin.so +0 -0
  27. amsdal/cloud/services/auth/credentials.cpython-311-darwin.so +0 -0
  28. amsdal/cloud/services/auth/manager.cpython-311-darwin.so +0 -0
  29. amsdal/cloud/services/auth/signup_service.cpython-311-darwin.so +0 -0
  30. amsdal/cloud/services/auth/token.cpython-311-darwin.so +0 -0
  31. amsdal/context/__init__.py +0 -0
  32. amsdal/context/__init__.pyi +0 -0
  33. amsdal/context/manager.py +30 -0
  34. amsdal/context/manager.pyi +12 -0
  35. amsdal/contrib/__init__.cpython-311-darwin.so +0 -0
  36. amsdal/contrib/auth/models/user/modifiers/display_name.py +8 -0
  37. amsdal/contrib/frontend_configs/conversion/convert.py +19 -9
  38. amsdal/contrib/frontend_configs/conversion/convert.pyi +2 -2
  39. amsdal/fixtures/__init__.cpython-311-darwin.so +0 -0
  40. amsdal/fixtures/manager.cpython-311-darwin.so +0 -0
  41. amsdal/manager.cpython-311-darwin.so +0 -0
  42. amsdal/migration/__init__.cpython-311-darwin.so +0 -0
  43. amsdal/migration/manager.cpython-311-darwin.so +0 -0
  44. amsdal/migration/utils.cpython-311-darwin.so +0 -0
  45. amsdal/mixins/__init__.cpython-311-darwin.so +0 -0
  46. amsdal/mixins/build_mixin.cpython-311-darwin.so +0 -0
  47. amsdal/mixins/class_versions_mixin.cpython-311-darwin.so +0 -0
  48. amsdal/operations/__init__.cpython-311-darwin.so +0 -0
  49. amsdal/operations/manager.cpython-311-darwin.so +0 -0
  50. amsdal/schemas/manager.cpython-311-darwin.so +0 -0
  51. amsdal/services/__init__.cpython-311-darwin.so +0 -0
  52. amsdal/services/transaction_execution.cpython-311-darwin.so +0 -0
  53. {amsdal-0.0.39.dist-info → amsdal-0.0.41.dist-info}/METADATA +1 -1
  54. {amsdal-0.0.39.dist-info → amsdal-0.0.41.dist-info}/RECORD +57 -53
  55. {amsdal-0.0.39.dist-info → amsdal-0.0.41.dist-info}/LICENSE.txt +0 -0
  56. {amsdal-0.0.39.dist-info → amsdal-0.0.41.dist-info}/WHEEL +0 -0
  57. {amsdal-0.0.39.dist-info → amsdal-0.0.41.dist-info}/top_level.txt +0 -0
amsdal/__about__.py CHANGED
@@ -1,4 +1,4 @@
1
1
  # SPDX-FileCopyrightText: 2023-present
2
2
  #
3
3
  # SPDX-License-Identifier: AMSDAL End User License Agreement
4
- __version__ = '0.0.39'
4
+ __version__ = '0.0.41'
Binary file
Binary file
Binary file
File without changes
File without changes
@@ -0,0 +1,30 @@
1
+ from contextvars import ContextVar
2
+ from typing import Any
3
+
4
+ _CONTEXT: ContextVar[dict[str, Any] | None] = ContextVar('_context', default=None)
5
+
6
+
7
+ class AmsdalContextManager:
8
+ @classmethod
9
+ def get_context(cls) -> dict[str, Any]:
10
+ _context = _CONTEXT.get()
11
+
12
+ if _context is not None:
13
+ return _context
14
+
15
+ new_context: dict[str, Any] = {}
16
+ cls.set_context(new_context)
17
+
18
+ return new_context
19
+
20
+ @classmethod
21
+ def set_context(cls, context: dict[str, Any]) -> None:
22
+ _CONTEXT.set(context)
23
+
24
+ @classmethod
25
+ def add_to_context(cls, key: str, value: Any) -> None:
26
+ context = cls.get_context()
27
+
28
+ context[key] = value
29
+
30
+ cls.set_context(context)
@@ -0,0 +1,12 @@
1
+ from contextvars import ContextVar
2
+ from typing import Any
3
+
4
+ _CONTEXT: ContextVar[dict[str, Any] | None]
5
+
6
+ class AmsdalContextManager:
7
+ @classmethod
8
+ def get_context(cls) -> dict[str, Any]: ...
9
+ @classmethod
10
+ def set_context(cls, context: dict[str, Any]) -> None: ...
11
+ @classmethod
12
+ def add_to_context(cls, key: str, value: Any) -> None: ...
@@ -1,3 +1,11 @@
1
1
  @property # type: ignore[misc]
2
2
  def display_name(self) -> str: # type: ignore[no-untyped-def]
3
3
  return self.email
4
+
5
+
6
+ def __str__(self) -> str: # type: ignore[no-untyped-def] # noqa: N807
7
+ return f'User(email={self.email})'
8
+
9
+
10
+ def __repr__(self) -> str: # type: ignore[no-untyped-def] # noqa: N807
11
+ return str(self)
@@ -9,6 +9,7 @@ from typing import ForwardRef
9
9
  from typing import Union
10
10
 
11
11
  from amsdal_models.classes.model import LegacyModel
12
+ from amsdal_models.classes.model import Model
12
13
  from amsdal_utils.models.data_models.reference import Reference
13
14
  from pydantic import BaseModel
14
15
  from pydantic_core import PydanticUndefined
@@ -24,21 +25,21 @@ default_types_map = {
24
25
  }
25
26
 
26
27
 
27
- def _process_union(value: UnionType) -> dict[str, Any]:
28
+ def _process_union(value: UnionType, *, is_transaction: bool = False) -> dict[str, Any]:
28
29
  arg_type = {'required': True}
29
30
  for arg in value.__args__:
30
31
  if arg == type(None):
31
32
  arg_type['required'] = False
32
33
  continue
33
34
 
34
- control = convert_to_frontend_config(arg)
35
+ control = convert_to_frontend_config(arg, is_transaction=is_transaction)
35
36
  if control:
36
37
  arg_type.update(control)
37
38
 
38
39
  return arg_type
39
40
 
40
41
 
41
- def convert_to_frontend_config(value: Any) -> dict[str, Any]:
42
+ def convert_to_frontend_config(value: Any, *, is_transaction: bool = False) -> dict[str, Any]:
42
43
  if hasattr(value, '__origin__'):
43
44
  origin_class = value.__origin__
44
45
 
@@ -46,7 +47,7 @@ def convert_to_frontend_config(value: Any) -> dict[str, Any]:
46
47
  return {}
47
48
 
48
49
  if origin_class is Union:
49
- return _process_union(value)
50
+ return _process_union(value, is_transaction=is_transaction)
50
51
 
51
52
  if origin_class is list:
52
53
  return {
@@ -56,7 +57,7 @@ def convert_to_frontend_config(value: Any) -> dict[str, Any]:
56
57
  'control': {
57
58
  'name': 'array_items_values',
58
59
  'label': 'array_items_values',
59
- **convert_to_frontend_config(value.__args__[0]),
60
+ **convert_to_frontend_config(value.__args__[0], is_transaction=is_transaction),
60
61
  },
61
62
  }
62
63
 
@@ -68,7 +69,7 @@ def convert_to_frontend_config(value: Any) -> dict[str, Any]:
68
69
  'control': {
69
70
  'name': 'dict_items_values',
70
71
  'label': 'dict_items_values',
71
- **convert_to_frontend_config(value.__args__[1]),
72
+ **convert_to_frontend_config(value.__args__[1], is_transaction=is_transaction),
72
73
  },
73
74
  }
74
75
 
@@ -78,7 +79,7 @@ def convert_to_frontend_config(value: Any) -> dict[str, Any]:
78
79
  }
79
80
 
80
81
  if isinstance(value, UnionType):
81
- return _process_union(value)
82
+ return _process_union(value, is_transaction=is_transaction)
82
83
 
83
84
  if value in default_types_map:
84
85
  return {
@@ -102,7 +103,10 @@ def convert_to_frontend_config(value: Any) -> dict[str, Any]:
102
103
  for arg_name in _parameters:
103
104
  if arg_name in value.__annotations__:
104
105
  arg_type = value.__annotations__[arg_name]
105
- control = convert_to_frontend_config(arg_type)
106
+ control = convert_to_frontend_config(
107
+ arg_type,
108
+ is_transaction=True,
109
+ )
106
110
 
107
111
  if not control:
108
112
  continue
@@ -136,6 +140,12 @@ def convert_to_frontend_config(value: Any) -> dict[str, Any]:
136
140
  'type': 'object_latest',
137
141
  }
138
142
 
143
+ if is_transaction and issubclass(value, Model):
144
+ return {
145
+ 'type': 'object_latest',
146
+ 'entityType': value.__name__,
147
+ }
148
+
139
149
  if issubclass(value, LegacyModel):
140
150
  return {}
141
151
 
@@ -148,7 +158,7 @@ def convert_to_frontend_config(value: Any) -> dict[str, Any]:
148
158
  schema = None
149
159
 
150
160
  for field_name, field in value.__annotations__.items():
151
- control = convert_to_frontend_config(field)
161
+ control = convert_to_frontend_config(field, is_transaction=is_transaction)
152
162
 
153
163
  if not control:
154
164
  continue
@@ -5,5 +5,5 @@ from typing import Any
5
5
 
6
6
  default_types_map: Incomplete
7
7
 
8
- def _process_union(value: UnionType) -> dict[str, Any]: ...
9
- def convert_to_frontend_config(value: Any) -> dict[str, Any]: ...
8
+ def _process_union(value: UnionType, *, is_transaction: bool = False) -> dict[str, Any]: ...
9
+ def convert_to_frontend_config(value: Any, *, is_transaction: bool = False) -> dict[str, Any]: ...
Binary file
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: amsdal
3
- Version: 0.0.39
3
+ Version: 0.0.41
4
4
  Summary: AMSDAL
5
5
  License: AMSDAL End User License Agreement
6
6
 
@@ -1,26 +1,30 @@
1
1
  amsdal/manager.pyi,sha256=jt2czWaqQtXuRwY4_6BB2HVqQeiG0rf2LC9idTfkqKI,4387
2
2
  amsdal/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
3
  amsdal/__init__.py,sha256=EQCJ5OevmkkIpIULumPNIbWk3UI7afDfRzIsZN5mfwg,73
4
- amsdal/manager.cpython-311-darwin.so,sha256=izr8rk6lPHWlL6bWngqm--WKmL1fiSpz6oCwRxiEg7U,339584
4
+ amsdal/manager.cpython-311-darwin.so,sha256=7bqcTFrzgVCS6yHg9g9abpltTlENpzVukkUFnfqAK4o,339584
5
5
  amsdal/Third-Party Materials - AMSDAL Dependencies - License Notices.md,sha256=TMs-vRDXacJ_rDtdN3rokBp8eofVTRIIUEyWABZ01H4,62596
6
- amsdal/__about__.py,sha256=UoJN9IixxemU7KyBMwn8G45mcNN1ZCLigr4blxZTYXo,125
6
+ amsdal/__about__.py,sha256=MgG6_SRrm7-iYCThnaP7A5mXYka_soxuyAESydUSjfQ,125
7
7
  amsdal/errors.pyi,sha256=mcuGsQMWaIUmC9GJDIkf99dQMMsCfBy6OI_UB3NSNmc,597
8
8
  amsdal/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
9
  amsdal/errors.py,sha256=pZZKIklaDkh8jdFSAfX81TbiylvbaE70nttRjTcTSBk,616
10
10
  amsdal/__about__.pyi,sha256=Y25n44pyE3vp92MiABKrcK3IWRyQ1JG1rZ4Ufqy2nC0,17
11
+ amsdal/context/manager.pyi,sha256=Z-c3m28Wh2-WnEF7EGZkUKO6OIFlaMO3w6RkXRnNakY,357
12
+ amsdal/context/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
13
+ amsdal/context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
+ amsdal/context/manager.py,sha256=EzwuXiF3_Q3slDCNkVcFhVXkgMtOvQOEwBNA8YRBMnc,720
11
15
  amsdal/mixins/class_versions_mixin.pyi,sha256=t9cDBRfYLH_TZAsy4dFbv3-n3e38tImhE7V0KqdA9xE,412
12
- amsdal/mixins/build_mixin.cpython-311-darwin.so,sha256=tVyW0ywDfcOHCyl8bv3IRObefE3jIp7JM6gs9hyFtO8,336584
16
+ amsdal/mixins/build_mixin.cpython-311-darwin.so,sha256=qZ3EnN7O_FIlxgJNvZAjvokAt3O9sM32561n3qKTCU8,336584
13
17
  amsdal/mixins/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
18
  amsdal/mixins/build_mixin.pyi,sha256=bli7OdqgE4K-AUs6kkG01RXkNjx_6715BgnwOZoTpl8,955
15
- amsdal/mixins/__init__.cpython-311-darwin.so,sha256=0z3WIE0E91K-vSEdRY6jkjA-SURxwhrpj8g5l6CeR-8,120656
16
- amsdal/mixins/class_versions_mixin.cpython-311-darwin.so,sha256=iaw6LVj4qgilvqNv79OAdEODGOqj2MEv_T34SZNsBW0,250272
19
+ amsdal/mixins/__init__.cpython-311-darwin.so,sha256=RsmCbKSWcqw1d-hJaZbFzzmGLYiEjajXJ8__JgqIlWA,120656
20
+ amsdal/mixins/class_versions_mixin.cpython-311-darwin.so,sha256=j-xZptL1Dpei8OC1bEu3tX0THeGkOCqxkbdN0UfoSm4,250272
17
21
  amsdal/utils/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
18
22
  amsdal/utils/contrib_paths.py,sha256=irgD76LmgjzsTUAkr6cPFOsypek7-Gbtwv2tyz3u9xo,422
19
23
  amsdal/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
20
24
  amsdal/utils/contrib_paths.pyi,sha256=eRa6C3zITVe0UsvO15oGNOXcGz8L5n4gGZR60W96SBw,132
21
25
  amsdal/contrib/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
22
26
  amsdal/contrib/app_config.pyi,sha256=j3MYfBcn9MzhTagEczGWfVH9N5jrfiKmUhxZMoakojw,149
23
- amsdal/contrib/__init__.cpython-311-darwin.so,sha256=IWh9JVhluyEFGLxSwfSmIetyzkCbUYtOiMJH_ESJtGY,120656
27
+ amsdal/contrib/__init__.cpython-311-darwin.so,sha256=QLhT2XiC72JqcdajydHAXDlHYIFkYLpGL-MiZLYjhJ4,120656
24
28
  amsdal/contrib/app_config.py,sha256=RT3RAEE49XtzuFTXYNVuaqU9V4YIl0ZWZijtXgV-SC4,131
25
29
  amsdal/contrib/auth/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
26
30
  amsdal/contrib/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -37,7 +41,7 @@ amsdal/contrib/auth/lifecycle/consumer.py,sha256=dQUuHHD5aE_P-7n0QEeHmTsPEdZYdey
37
41
  amsdal/contrib/auth/models/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
38
42
  amsdal/contrib/auth/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
39
43
  amsdal/contrib/auth/models/user/model.json,sha256=vqz0seTiXpNnuRbPfsXn_mMvlPC6roBNC37JxRF8Imc,399
40
- amsdal/contrib/auth/models/user/modifiers/display_name.py,sha256=o486mpmXvHDGs2Azf9BLYeExq_kBKd3z2uwYYltVjTw,117
44
+ amsdal/contrib/auth/models/user/modifiers/display_name.py,sha256=MUC4b1aX8cxt9FkfaAWzMwBhaK3ktcotoIIJsV511qY,326
41
45
  amsdal/contrib/auth/models/user/hooks/pre_create.py,sha256=vmobGCOvUQUb_YqasD5gh2XSygRYlWom0sWZTwF6vNI,87
42
46
  amsdal/contrib/auth/models/user/hooks/pre_init.py,sha256=VL67-z1y1htCRDY3cd8yjpV3wHap536qUF0UhEqgzr0,809
43
47
  amsdal/contrib/auth/models/permission/model.json,sha256=goewK66MqrLJHdyNALyMYRBHI4SbAmYhz3uoI7AHziU,257
@@ -74,17 +78,17 @@ amsdal/contrib/frontend_configs/models/frontend_config_slider_option/model.json,
74
78
  amsdal/contrib/frontend_configs/models/frontend_config_async_validator/model.json,sha256=ycIDZ7CcEb5qvb2pBzsTBJx2gBKV9dTOVG6QWqb0c0U,240
75
79
  amsdal/contrib/frontend_configs/models/frontend_config_option/model.json,sha256=x0Xhp1_AMCAiqeBDY8Peg29vfbhkrFkyrff6Py1bYxQ,315
76
80
  amsdal/contrib/frontend_configs/conversion/__init__.pyi,sha256=Gbz6P3jhpqK6hLcGxi6l0sI_MNrb8_JNLLD4YVOjkFY,162
77
- amsdal/contrib/frontend_configs/conversion/convert.py,sha256=A60zl_zBJoqvcsFC7yBwO72INCUKbYL0IZL94Jj3nyI,5622
78
- amsdal/contrib/frontend_configs/conversion/convert.pyi,sha256=ScSfa1aJW3yMS-5OMGHH26S3WCyaHU5IqmeI6anN3vY,308
81
+ amsdal/contrib/frontend_configs/conversion/convert.py,sha256=fhtNfhZiuuYQlPPDd9oBn0zU6SUdwEBcYluo9wjRIis,6159
82
+ amsdal/contrib/frontend_configs/conversion/convert.pyi,sha256=PfB8BT9zvDFU1f_Ob0ygX5qKhUMYYJNlrGYxKyYzjiw,374
79
83
  amsdal/contrib/frontend_configs/conversion/__init__.py,sha256=4Kkv5xgGvqky3szx08bBfbbxrc6TeFDSnosGimSoNcI,139
80
84
  amsdal/operations/manager.pyi,sha256=6jHHzRFh43Ypm02d4grFWoIVBJ_yhp7iBPFT6Dbc3qQ,1391
81
85
  amsdal/operations/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
82
- amsdal/operations/manager.cpython-311-darwin.so,sha256=yHOISFJoqtsQjdbddesHCvPZXGgZueF1IwKzLupWErE,320656
83
- amsdal/operations/__init__.cpython-311-darwin.so,sha256=-H4o2corxcQSOyvH3IOaU5N7nQqiMD9hNV5idXfazLQ,120688
86
+ amsdal/operations/manager.cpython-311-darwin.so,sha256=eVjCKrx0ytU_CK9HCv4q4hqwDzpH43z1jG1-MbM0L50,320656
87
+ amsdal/operations/__init__.cpython-311-darwin.so,sha256=BTj__J1XBBSDSHN3VDf5Z0aGzEeKK7Xf232Hby4tMvE,120688
84
88
  amsdal/schemas/manager.pyi,sha256=N_Zc22jd_SEcvKPJTNrK-8m2mElWHnJSvnJHhD0dcNc,704
85
89
  amsdal/schemas/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
86
90
  amsdal/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
87
- amsdal/schemas/manager.cpython-311-darwin.so,sha256=nrLGDtg_H-kGHBFo-t_r3X4HyC2apCzYg4dE0CSkE_E,216128
91
+ amsdal/schemas/manager.cpython-311-darwin.so,sha256=9OYYTx7fYttFAEYwmao44FoJfqtTmvT687WSQE_R5nM,216128
88
92
  amsdal/schemas/manager.py,sha256=XWMaoRtONIKPkclChRcLcdNUlnDriByjeGbHmoXznoc,2212
89
93
  amsdal/schemas/types/array/model.json,sha256=I9Z7r691yd8i-Ndy8Cf3rFGg22mnLxg_weeVU2kRtkY,117
90
94
  amsdal/schemas/types/number/model.json,sha256=sp60YPi1xPj33LVtvl2c0vTselFqesAtGZN6pyMeexY,129
@@ -113,80 +117,80 @@ amsdal/configs/constants.py,sha256=tglKWR34Fdx7tVr_CZA2Q3cNuykbr1S2s0LiQfsn0tQ,5
113
117
  amsdal/configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
114
118
  amsdal/configs/main.pyi,sha256=eBSP0Khm8t0zWULLJJmJCE9JGgWc_cVPSGv8QbQt8UA,1387
115
119
  amsdal/configs/main.py,sha256=h_4Hc1SHsXuY7K15W_hpC6iQJPjDf60YNHYlr0-B3rU,4647
116
- amsdal/cloud/client.cpython-311-darwin.so,sha256=FL99vGavchCKAt_UcmUj1tHAmpJjC9T_ks3v_DOUtOg,215872
120
+ amsdal/cloud/client.cpython-311-darwin.so,sha256=z2YdLskiZ_Iqj5h3FV7vIENcXQHsTf9hVmVWwrHYW74,215872
117
121
  amsdal/cloud/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
118
122
  amsdal/cloud/constants.pyi,sha256=0qWxDqjQkETwUtgco5kV83fPHhQ4jRdJe_YPPNTnSIY,327
119
123
  amsdal/cloud/client.pyi,sha256=uEFrKTEIxnXnCFtW6_GtfvuwHeXK5J_WjOho5FWYhdQ,593
120
- amsdal/cloud/enums.cpython-311-darwin.so,sha256=kTqyp-mS5_Y_K5duqO-2nzhEpRi4I4WD5K-2CeprSAM,157568
121
- amsdal/cloud/constants.cpython-311-darwin.so,sha256=aJ8M-B0HaeHvNZmYPD39vk_opa8xpY5bVHu0bjR2AQs,158688
122
- amsdal/cloud/__init__.cpython-311-darwin.so,sha256=_jPCCJJ8e8FRxova4v6LURj5mVmChiZWWvoNzHyL5ZM,120656
124
+ amsdal/cloud/enums.cpython-311-darwin.so,sha256=uNXISVWHKGPHqK9ZVaEN8Et60FWwmCem1XkweNf36lQ,157568
125
+ amsdal/cloud/constants.cpython-311-darwin.so,sha256=mZ9TSJO2G2FDkfkmqRl5ImJuXxk1p8yC2Ylj8MAaozM,158688
126
+ amsdal/cloud/__init__.cpython-311-darwin.so,sha256=QvgGLHXvlwe0-Zpa6l8s1MJgw48RHhtoDBH6YEqmbDY,120656
123
127
  amsdal/cloud/enums.pyi,sha256=0g3I-6nLB26kj0H8v4CJRUuARSDLTn91FzTtb9DHGIU,407
124
- amsdal/cloud/models/base.cpython-311-darwin.so,sha256=P2FMZN2PSG0lBoKeQOY3D8M6MBknGda7PnpMtUI-XzQ,159552
128
+ amsdal/cloud/models/base.cpython-311-darwin.so,sha256=TIO--OM0l3ScNOKNpgdQbQejCOG4B_4byXkHA0zZLfU,159552
125
129
  amsdal/cloud/models/base.pyi,sha256=GKl9jFUcRv4gzdqf3G_irx0TUPuD2C-GS2PuhyyvgF4,1564
126
130
  amsdal/cloud/models/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
127
- amsdal/cloud/models/__init__.cpython-311-darwin.so,sha256=DP7P6FJhN0Xs6Xbo2rS1muUPYmLFmFBzlFKergdpP5I,120688
131
+ amsdal/cloud/models/__init__.cpython-311-darwin.so,sha256=nCx5P6G-CdB60bbUaVXyL7dXPhgCFzYzh_JadwW73HA,120688
128
132
  amsdal/cloud/services/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
129
- amsdal/cloud/services/__init__.cpython-311-darwin.so,sha256=hzU1IeBn7sNbVArKiKDJOK7cdiKm1zkxKd1CMf2cBEE,120688
130
- amsdal/cloud/services/auth/base.cpython-311-darwin.so,sha256=9l-0o0Uw0_gjxjZYr_eyiUKXjMJbwKqPt5zBbe5-JgE,163104
133
+ amsdal/cloud/services/__init__.cpython-311-darwin.so,sha256=IUQbOkRj8sITneOZ5p0yGlOaLjdLaQ_lzMexzG_d3u0,120688
134
+ amsdal/cloud/services/auth/base.cpython-311-darwin.so,sha256=LJtE29f5qkD-8IlkRKrqKMAeiLA5pVkHP5D6vWksXgE,163104
131
135
  amsdal/cloud/services/auth/base.pyi,sha256=oj_tgwWhf02g-FzCLcNOEZjYDxfcrrDssING4jsUMb8,167
132
136
  amsdal/cloud/services/auth/manager.pyi,sha256=9fSm8tUKWNdUKlpV6GmvSN6Ypr8IyanAtrV6-uzdUgw,749
133
137
  amsdal/cloud/services/auth/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
134
138
  amsdal/cloud/services/auth/signup_service.pyi,sha256=uiBnaraW2tmSm6hlhRcVNJfNrtIo-Ddxzd2dZOD27mU,520
135
- amsdal/cloud/services/auth/token.cpython-311-darwin.so,sha256=IDjYKvNN8QDcna56Vy765ACgDBtlhKN_nmxCQinOFRE,250960
136
- amsdal/cloud/services/auth/manager.cpython-311-darwin.so,sha256=JBRHkgkRm2i5EFxGVr_c00knAL8_DrMTEC7u6WHM3S4,213936
139
+ amsdal/cloud/services/auth/token.cpython-311-darwin.so,sha256=y2m65jUPdvtoFXsWLYdc1PT60M5wI83zUqmEx9zY8Mo,250960
140
+ amsdal/cloud/services/auth/manager.cpython-311-darwin.so,sha256=0rCkENIBp65rzlfvUdnneZ0ov5XLPjBXEvlA1sRxe7Y,213936
137
141
  amsdal/cloud/services/auth/token.pyi,sha256=DRvKXl7DV26vcoLxEgR6UyJgIeP9z-XTX3WiR4A1ksM,633
138
- amsdal/cloud/services/auth/signup_service.cpython-311-darwin.so,sha256=2c8wf1h8YTVPytXncPxetllx9uEvHpJcOYcFM7yzxgs,216024
139
- amsdal/cloud/services/auth/__init__.cpython-311-darwin.so,sha256=-yFNfQbvPUPJA7vETLXU3TG73sAqeqxRTvD6ToXJyj8,120704
140
- amsdal/cloud/services/auth/credentials.cpython-311-darwin.so,sha256=jMKowDdyRwvv4ObQ6ShBtHXOGiAG8VmcnS5_9vTvKV0,252888
142
+ amsdal/cloud/services/auth/signup_service.cpython-311-darwin.so,sha256=POwVPY8AegEI4-4tf9ki6nlFPt5EDYV7Kog2duCc2G0,216024
143
+ amsdal/cloud/services/auth/__init__.cpython-311-darwin.so,sha256=CpTeM2sPlCtouyAGVGXq4PpUt8JEULnAZtZatW54w_c,120704
144
+ amsdal/cloud/services/auth/credentials.cpython-311-darwin.so,sha256=g9_oDDo37EUlGGR4lK4QItceuFp0ZAjT8k2OIGlGxxE,252888
141
145
  amsdal/cloud/services/auth/credentials.pyi,sha256=AMS1HUVaqM7CiypSQvYEliFW4_9g9-_6WME2tAxIw3s,1116
142
- amsdal/cloud/services/actions/base.cpython-311-darwin.so,sha256=TvQsB9gFQgRAKuuEzUWch32nN8LAXd5ayBm-0RsN6G8,304544
146
+ amsdal/cloud/services/actions/base.cpython-311-darwin.so,sha256=vSsi4ojhmplt5VfUrMFS8UcBiqKzv9twO3-ew7b81FA,304544
143
147
  amsdal/cloud/services/actions/base.pyi,sha256=RuTQwOHkHCzEw4HBkHkbba9gW_5158BT71YdOxIzlGw,1648
144
- amsdal/cloud/services/actions/signup_action.cpython-311-darwin.so,sha256=9sg45TvT4kOkItQVOx6WDE3naCUXmVc3NMt5rawmw_E,180392
148
+ amsdal/cloud/services/actions/signup_action.cpython-311-darwin.so,sha256=FCwkZnY4Yr2dIW7ogiDVblWawoCHH6pZ2uzIUQo3heo,180392
145
149
  amsdal/cloud/services/actions/manager.pyi,sha256=7oFfhd26A5raF8mOFYOLC2BZ_J9L67ddH-fYgPkjtQ4,2735
146
- amsdal/cloud/services/actions/delete_dependency.cpython-311-darwin.so,sha256=oWblDAAoxRncpVwgqye1ie9T8OlGX3lXxPVZwln-XDs,180552
147
- amsdal/cloud/services/actions/expose_db.cpython-311-darwin.so,sha256=9oQVoykA0xmFYfBEAbJTFsUtfWkJTnBbMtn36ycvsLk,180912
148
- amsdal/cloud/services/actions/add_secret.cpython-311-darwin.so,sha256=TZyFqmWXVm8oXsF97fB7eir2xFwQMSlKxExJ-evr9Tg,180456
150
+ amsdal/cloud/services/actions/delete_dependency.cpython-311-darwin.so,sha256=c6RiRiTsjsH6E_DhF9LQPoWJoYnV9TpMqmlUmvRAT3w,180552
151
+ amsdal/cloud/services/actions/expose_db.cpython-311-darwin.so,sha256=MuRRuj-7enRwbBAxGbUEZhHgiNhBWHgMjjjXrTr0pw0,180912
152
+ amsdal/cloud/services/actions/add_secret.cpython-311-darwin.so,sha256=mtL_79yOQgbyHfG_91yDd3lGldaeZngk37fkP0CBqas,180456
149
153
  amsdal/cloud/services/actions/list_secrets.pyi,sha256=B14mii5J0ktUaTLDHkqfkhwhy0bweuy6i6rc9n41EE4,355
150
- amsdal/cloud/services/actions/list_secrets.cpython-311-darwin.so,sha256=hzGf4jbiVrx_tvOQo6AL_2DKE7FsyohLHrUOyRfR6C0,181064
154
+ amsdal/cloud/services/actions/list_secrets.cpython-311-darwin.so,sha256=x33bdJQKOqiY_Pl8Pv3895Dr8DecGwfWD3eZDxmMjE4,181064
151
155
  amsdal/cloud/services/actions/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
152
- amsdal/cloud/services/actions/list_deploys.cpython-311-darwin.so,sha256=Y93kt2LXq4y_WmirGgoEjHxd3C8vSgTJT6t8K7hmKlA,180856
153
- amsdal/cloud/services/actions/list_dependencies.cpython-311-darwin.so,sha256=Or214sRzmeDDdtSC551bgWxYb2iueeOBXtS0KuKFRlc,181048
154
- amsdal/cloud/services/actions/destroy_deploy.cpython-311-darwin.so,sha256=w9F-Yov7GV4w9OK2voOy8IvoklUnj9x4gxXOoKFILpE,180344
155
- amsdal/cloud/services/actions/create_session.cpython-311-darwin.so,sha256=AC39bnjvm2VcsKC_SuG95hmUVYLWLD0yhMmMLzfsWJA,180776
156
- amsdal/cloud/services/actions/create_deploy.cpython-311-darwin.so,sha256=-GkdAAI_LB45_n_xocn-Tbv9SEYh8jvbxTUAmCQrQDo,252312
156
+ amsdal/cloud/services/actions/list_deploys.cpython-311-darwin.so,sha256=ppC0b85od-tN0KUXayaxmng6mToM7OCPMxEPBe3wZog,180856
157
+ amsdal/cloud/services/actions/list_dependencies.cpython-311-darwin.so,sha256=vMjIjce3UjjpvYTpmL1kPKOk71FIH7iMfG0BYJbtzkc,181048
158
+ amsdal/cloud/services/actions/destroy_deploy.cpython-311-darwin.so,sha256=3bwQSk9wdxTdBcgmgnFrJmBvpz_SmwxYdmprVDTnL5Q,180344
159
+ amsdal/cloud/services/actions/create_session.cpython-311-darwin.so,sha256=uQ1pOAIW2FKmmF08EAb8AJjAqIBiMhrSPufpP2LoNSU,180776
160
+ amsdal/cloud/services/actions/create_deploy.cpython-311-darwin.so,sha256=F1-vgQmue4HtDxF9n0hbegA9mj0A_2WlT03rHuET0Ho,252296
157
161
  amsdal/cloud/services/actions/delete_secret.pyi,sha256=QhIYoXQzShEUwLwoDQaNEf-mw1PQvl0l3EFIpg-dKcE,252
158
- amsdal/cloud/services/actions/manager.cpython-311-darwin.so,sha256=S-ulZS8D9k7L11SdgCN79y6abC8JBw2XcnFT9r4vOsA,249504
162
+ amsdal/cloud/services/actions/manager.cpython-311-darwin.so,sha256=ZF6od6fzG9DUZNlyjsDKFXTwFqWfLCguBH9AJnbvV3k,249504
159
163
  amsdal/cloud/services/actions/delete_dependency.pyi,sha256=2xT5Ks6KGgNMZEl--VkcpHZ3Mo7SvJpMtQCOdLkcwLE,259
160
- amsdal/cloud/services/actions/add_dependency.cpython-311-darwin.so,sha256=zi7iakEepDQddR3Y7tt-b9wvE6HFM9dVGldGFEGUdik,180504
164
+ amsdal/cloud/services/actions/add_dependency.cpython-311-darwin.so,sha256=wtKrtRee9_aUvhwVZrXOMYZ03PzpNyzHMyjlMQTRpCg,180504
161
165
  amsdal/cloud/services/actions/create_session.pyi,sha256=IxkArxMKJyRpqiWA1xDl06ZN4B44VDwn_jlCeGC6JWc,282
162
166
  amsdal/cloud/services/actions/list_deploys.pyi,sha256=jLfXCoRiocgzfNjNR6hdlF3kgWM8dq4qK_NsR25nxV4,277
163
167
  amsdal/cloud/services/actions/add_dependency.pyi,sha256=k9mJDr_rvG4tY6gK2IHRKac5jPy30IeWhzc389Rc70M,256
164
- amsdal/cloud/services/actions/update_deploy.cpython-311-darwin.so,sha256=tAj6BvNMIApZuNv186yF3M72uA1SWiyaO_NLBDww1KE,180840
168
+ amsdal/cloud/services/actions/update_deploy.cpython-311-darwin.so,sha256=YRaHVKzwyK2ls0gy6_qEDgoV9BthtZkyaW1eFzgO0T8,180840
165
169
  amsdal/cloud/services/actions/signup_action.pyi,sha256=Zobfp3iqnxWTqnZNacDR0udNQjBfh5uX32n7DISaQP8,304
166
170
  amsdal/cloud/services/actions/add_secret.pyi,sha256=-aLENIqVyk-0IE7m4f-p8KOfLmsvZ0QjWyqSyiDXzi4,268
167
- amsdal/cloud/services/actions/__init__.cpython-311-darwin.so,sha256=fp3zizQTanxWznwchj1oaY35yGiot-zZmy4_vWRmZNM,120720
171
+ amsdal/cloud/services/actions/__init__.cpython-311-darwin.so,sha256=snh_y_4ODIcnfAz-taVLqeOdRHc72rbt743-yFftCOM,120720
168
172
  amsdal/cloud/services/actions/destroy_deploy.pyi,sha256=vEPBlTq6vbYSmthr-V45WgqeTTAwnH_o3xJ_eE2TIns,181
169
173
  amsdal/cloud/services/actions/update_deploy.pyi,sha256=kqpvc8zOMZwSVFi8ZAyt4NwkiY9uDUruRHdY12uxdeo,296
170
174
  amsdal/cloud/services/actions/create_deploy.pyi,sha256=FyIJd8mS0AdeLL_VnHHvItmNFfP7-l-tQavGBtL_b0w,695
171
175
  amsdal/cloud/services/actions/list_dependencies.pyi,sha256=Dw8SY_Eh7eo_EXbd1XzMdUCg6j1LPasreA7kPBbBcJU,345
172
- amsdal/cloud/services/actions/delete_secret.cpython-311-darwin.so,sha256=kyvAJVvNw8PFZR2fj6X8obxa9IDfPoWUNwJy-JHZ5Oc,180488
176
+ amsdal/cloud/services/actions/delete_secret.cpython-311-darwin.so,sha256=Zxheb2P4Jh87DxDp8IBUTlvweN2lerBeE-0w-bHev1I,180488
173
177
  amsdal/cloud/services/actions/expose_db.pyi,sha256=vvhhSXSY8Myu9VKVmoSU-ywOzfi43u9ztmykBSE1vhM,294
174
178
  amsdal/fixtures/manager.pyi,sha256=Q0ImQbFpuGDiFnlR1dbmgxWHjf7B2sq1csPzbiNIdEg,1608
175
179
  amsdal/fixtures/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
176
- amsdal/fixtures/manager.cpython-311-darwin.so,sha256=W5rhu8Z5dxxPLqle-X5WO3ylpwMAm_dRAxngtN6wr88,390544
177
- amsdal/fixtures/__init__.cpython-311-darwin.so,sha256=fHme_GfbePW0q3ibp2m2Eg6TKnctDdWECnoguBWFnjQ,120672
180
+ amsdal/fixtures/manager.cpython-311-darwin.so,sha256=1HANVufepDw9YfTI3Yrlt5lkjQNS6UGxZhqrAXquDms,390544
181
+ amsdal/fixtures/__init__.cpython-311-darwin.so,sha256=lb00uXw5-wgfPVW-S9qKJrTDnLvuVsW5lU1K2_PYlKo,120672
178
182
  amsdal/migration/manager.pyi,sha256=lLiErmrNHxaC4_gbGvoAW9A99e4Rw3i94UcwgAlM1AY,1343
179
183
  amsdal/migration/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
180
- amsdal/migration/manager.cpython-311-darwin.so,sha256=Um_l0sIXq77DPcD0melPyv0W16J3C1fbpMIDmu7s6mY,370976
184
+ amsdal/migration/manager.cpython-311-darwin.so,sha256=WzgHM4bVOvbQHu3SlHdnEkmwHz4BSz6qotcny_sJm7A,370976
181
185
  amsdal/migration/utils.pyi,sha256=s4R1_Dn25l-2wLN86vP8PBWVYo1tdvcaShZ5mKGc7d0,1125
182
- amsdal/migration/utils.cpython-311-darwin.so,sha256=fS4-Xr5qZQD3mBXmlBb1PJFi4XAPfhpecUuJs529c9M,250992
183
- amsdal/migration/__init__.cpython-311-darwin.so,sha256=auD2TfMXkjziJBVFfEHQiZX1guUjBckMV6oasV3F-vY,120672
186
+ amsdal/migration/utils.cpython-311-darwin.so,sha256=QkzBu4-36y_lv82ihkz1yudZtI7XqeZS5PmE1Tq-I10,250992
187
+ amsdal/migration/__init__.cpython-311-darwin.so,sha256=dnRhB35ge0POzWE-W9Xykoxxyekim5mtuY2P1XkwD-8,120672
184
188
  amsdal/services/transaction_execution.pyi,sha256=bbT2h7xTzuP4SJSBfbJhvA7ryzwX8PfgRD9VAdjJJ8Q,1377
185
189
  amsdal/services/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
186
- amsdal/services/__init__.cpython-311-darwin.so,sha256=uZAQGUB4rtbxvGu8Bq0CjY3AIbKlaT4wsRmH7HQOXLo,120672
187
- amsdal/services/transaction_execution.cpython-311-darwin.so,sha256=iLmUKBxeWirodXwTsbGOeMrIHvTKELXuMGy60pjeTls,346160
188
- amsdal-0.0.39.dist-info/RECORD,,
189
- amsdal-0.0.39.dist-info/WHEEL,sha256=Jjzc6ISFgDOOsYxK3rGIIgg_gPHXRI2MDFtRxyygFgU,115
190
- amsdal-0.0.39.dist-info/top_level.txt,sha256=VPQLnOP3mf7q0JuQ_vPZYQyPNGKd_uc6ouz-hZRkhSk,7
191
- amsdal-0.0.39.dist-info/LICENSE.txt,sha256=hG-541PFYfNJi9WRZi_hno91UyqNg7YLK8LR3vLblZA,27355
192
- amsdal-0.0.39.dist-info/METADATA,sha256=5KedlKoG43z126hQf8vfNgepgo-fVJkfqYCewgEKyCQ,57291
190
+ amsdal/services/__init__.cpython-311-darwin.so,sha256=n7vnrZCBk-Qz0IbWGBF9H8EhqiBfMroC2OGojGOWBsQ,120672
191
+ amsdal/services/transaction_execution.cpython-311-darwin.so,sha256=KWLI29cTlRAQvFBbGzoyBj39bSXT0izBbShKAMp9VcY,346160
192
+ amsdal-0.0.41.dist-info/RECORD,,
193
+ amsdal-0.0.41.dist-info/WHEEL,sha256=Jjzc6ISFgDOOsYxK3rGIIgg_gPHXRI2MDFtRxyygFgU,115
194
+ amsdal-0.0.41.dist-info/top_level.txt,sha256=VPQLnOP3mf7q0JuQ_vPZYQyPNGKd_uc6ouz-hZRkhSk,7
195
+ amsdal-0.0.41.dist-info/LICENSE.txt,sha256=hG-541PFYfNJi9WRZi_hno91UyqNg7YLK8LR3vLblZA,27355
196
+ amsdal-0.0.41.dist-info/METADATA,sha256=cs0KqdnQv5v2I10OvtFXewSvS4XoOU7jKi2Ff8ZUsuo,57291