amsdal 0.0.40__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 (53) 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/contrib/__init__.cpython-311-darwin.so +0 -0
  32. amsdal/contrib/auth/models/user/modifiers/display_name.py +8 -0
  33. amsdal/contrib/frontend_configs/conversion/convert.py +19 -9
  34. amsdal/contrib/frontend_configs/conversion/convert.pyi +2 -2
  35. amsdal/fixtures/__init__.cpython-311-darwin.so +0 -0
  36. amsdal/fixtures/manager.cpython-311-darwin.so +0 -0
  37. amsdal/manager.cpython-311-darwin.so +0 -0
  38. amsdal/migration/__init__.cpython-311-darwin.so +0 -0
  39. amsdal/migration/manager.cpython-311-darwin.so +0 -0
  40. amsdal/migration/utils.cpython-311-darwin.so +0 -0
  41. amsdal/mixins/__init__.cpython-311-darwin.so +0 -0
  42. amsdal/mixins/build_mixin.cpython-311-darwin.so +0 -0
  43. amsdal/mixins/class_versions_mixin.cpython-311-darwin.so +0 -0
  44. amsdal/operations/__init__.cpython-311-darwin.so +0 -0
  45. amsdal/operations/manager.cpython-311-darwin.so +0 -0
  46. amsdal/schemas/manager.cpython-311-darwin.so +0 -0
  47. amsdal/services/__init__.cpython-311-darwin.so +0 -0
  48. amsdal/services/transaction_execution.cpython-311-darwin.so +0 -0
  49. {amsdal-0.0.40.dist-info → amsdal-0.0.41.dist-info}/METADATA +1 -1
  50. {amsdal-0.0.40.dist-info → amsdal-0.0.41.dist-info}/RECORD +53 -53
  51. {amsdal-0.0.40.dist-info → amsdal-0.0.41.dist-info}/LICENSE.txt +0 -0
  52. {amsdal-0.0.40.dist-info → amsdal-0.0.41.dist-info}/WHEEL +0 -0
  53. {amsdal-0.0.40.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.40'
4
+ __version__ = '0.0.41'
Binary file
Binary file
Binary file
@@ -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.40
3
+ Version: 0.0.41
4
4
  Summary: AMSDAL
5
5
  License: AMSDAL End User License Agreement
6
6
 
@@ -1,14 +1,9 @@
1
- amsdal-0.0.40.dist-info/RECORD,,
2
- amsdal-0.0.40.dist-info/WHEEL,sha256=Jjzc6ISFgDOOsYxK3rGIIgg_gPHXRI2MDFtRxyygFgU,115
3
- amsdal-0.0.40.dist-info/top_level.txt,sha256=VPQLnOP3mf7q0JuQ_vPZYQyPNGKd_uc6ouz-hZRkhSk,7
4
- amsdal-0.0.40.dist-info/LICENSE.txt,sha256=hG-541PFYfNJi9WRZi_hno91UyqNg7YLK8LR3vLblZA,27355
5
- amsdal-0.0.40.dist-info/METADATA,sha256=eZFnXcjkoMI6cVC-j3Hn39ZOMgabbYemcRbsXrf51MU,57291
6
1
  amsdal/manager.pyi,sha256=jt2czWaqQtXuRwY4_6BB2HVqQeiG0rf2LC9idTfkqKI,4387
7
2
  amsdal/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
3
  amsdal/__init__.py,sha256=EQCJ5OevmkkIpIULumPNIbWk3UI7afDfRzIsZN5mfwg,73
9
- amsdal/manager.cpython-311-darwin.so,sha256=9UiiYfjEHhA_tNY0DfFhDKVl-1Cfv4ruT28hlLgkQRQ,339584
4
+ amsdal/manager.cpython-311-darwin.so,sha256=7bqcTFrzgVCS6yHg9g9abpltTlENpzVukkUFnfqAK4o,339584
10
5
  amsdal/Third-Party Materials - AMSDAL Dependencies - License Notices.md,sha256=TMs-vRDXacJ_rDtdN3rokBp8eofVTRIIUEyWABZ01H4,62596
11
- amsdal/__about__.py,sha256=3wgoPaisSkHl7xbn-FQbkSC98SFHoLe7eAFgK-qVO3s,125
6
+ amsdal/__about__.py,sha256=MgG6_SRrm7-iYCThnaP7A5mXYka_soxuyAESydUSjfQ,125
12
7
  amsdal/errors.pyi,sha256=mcuGsQMWaIUmC9GJDIkf99dQMMsCfBy6OI_UB3NSNmc,597
13
8
  amsdal/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
9
  amsdal/errors.py,sha256=pZZKIklaDkh8jdFSAfX81TbiylvbaE70nttRjTcTSBk,616
@@ -18,18 +13,18 @@ amsdal/context/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
18
13
  amsdal/context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
19
14
  amsdal/context/manager.py,sha256=EzwuXiF3_Q3slDCNkVcFhVXkgMtOvQOEwBNA8YRBMnc,720
20
15
  amsdal/mixins/class_versions_mixin.pyi,sha256=t9cDBRfYLH_TZAsy4dFbv3-n3e38tImhE7V0KqdA9xE,412
21
- amsdal/mixins/build_mixin.cpython-311-darwin.so,sha256=6xVxsywiEyyCTyF0CFRQazIeFOFwS_U_Jnb5UK5MkGE,336584
16
+ amsdal/mixins/build_mixin.cpython-311-darwin.so,sha256=qZ3EnN7O_FIlxgJNvZAjvokAt3O9sM32561n3qKTCU8,336584
22
17
  amsdal/mixins/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
23
18
  amsdal/mixins/build_mixin.pyi,sha256=bli7OdqgE4K-AUs6kkG01RXkNjx_6715BgnwOZoTpl8,955
24
- amsdal/mixins/__init__.cpython-311-darwin.so,sha256=QOUB1-1Cf8mFmz2UIDqg-mqsYdnYEZ7HVo7Ak8Nl69A,120656
25
- amsdal/mixins/class_versions_mixin.cpython-311-darwin.so,sha256=jgobOk2ooFyWI_dhw8bKWVlDdAyKW4r8GrJgZiPAzmc,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
26
21
  amsdal/utils/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
27
22
  amsdal/utils/contrib_paths.py,sha256=irgD76LmgjzsTUAkr6cPFOsypek7-Gbtwv2tyz3u9xo,422
28
23
  amsdal/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
29
24
  amsdal/utils/contrib_paths.pyi,sha256=eRa6C3zITVe0UsvO15oGNOXcGz8L5n4gGZR60W96SBw,132
30
25
  amsdal/contrib/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
31
26
  amsdal/contrib/app_config.pyi,sha256=j3MYfBcn9MzhTagEczGWfVH9N5jrfiKmUhxZMoakojw,149
32
- amsdal/contrib/__init__.cpython-311-darwin.so,sha256=DcYKfJk0ns5F2Y231cslSfZFKw0-avO7n8pGgTUCEDg,120656
27
+ amsdal/contrib/__init__.cpython-311-darwin.so,sha256=QLhT2XiC72JqcdajydHAXDlHYIFkYLpGL-MiZLYjhJ4,120656
33
28
  amsdal/contrib/app_config.py,sha256=RT3RAEE49XtzuFTXYNVuaqU9V4YIl0ZWZijtXgV-SC4,131
34
29
  amsdal/contrib/auth/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
35
30
  amsdal/contrib/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -46,7 +41,7 @@ amsdal/contrib/auth/lifecycle/consumer.py,sha256=dQUuHHD5aE_P-7n0QEeHmTsPEdZYdey
46
41
  amsdal/contrib/auth/models/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
47
42
  amsdal/contrib/auth/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
48
43
  amsdal/contrib/auth/models/user/model.json,sha256=vqz0seTiXpNnuRbPfsXn_mMvlPC6roBNC37JxRF8Imc,399
49
- 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
50
45
  amsdal/contrib/auth/models/user/hooks/pre_create.py,sha256=vmobGCOvUQUb_YqasD5gh2XSygRYlWom0sWZTwF6vNI,87
51
46
  amsdal/contrib/auth/models/user/hooks/pre_init.py,sha256=VL67-z1y1htCRDY3cd8yjpV3wHap536qUF0UhEqgzr0,809
52
47
  amsdal/contrib/auth/models/permission/model.json,sha256=goewK66MqrLJHdyNALyMYRBHI4SbAmYhz3uoI7AHziU,257
@@ -83,17 +78,17 @@ amsdal/contrib/frontend_configs/models/frontend_config_slider_option/model.json,
83
78
  amsdal/contrib/frontend_configs/models/frontend_config_async_validator/model.json,sha256=ycIDZ7CcEb5qvb2pBzsTBJx2gBKV9dTOVG6QWqb0c0U,240
84
79
  amsdal/contrib/frontend_configs/models/frontend_config_option/model.json,sha256=x0Xhp1_AMCAiqeBDY8Peg29vfbhkrFkyrff6Py1bYxQ,315
85
80
  amsdal/contrib/frontend_configs/conversion/__init__.pyi,sha256=Gbz6P3jhpqK6hLcGxi6l0sI_MNrb8_JNLLD4YVOjkFY,162
86
- amsdal/contrib/frontend_configs/conversion/convert.py,sha256=A60zl_zBJoqvcsFC7yBwO72INCUKbYL0IZL94Jj3nyI,5622
87
- 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
88
83
  amsdal/contrib/frontend_configs/conversion/__init__.py,sha256=4Kkv5xgGvqky3szx08bBfbbxrc6TeFDSnosGimSoNcI,139
89
84
  amsdal/operations/manager.pyi,sha256=6jHHzRFh43Ypm02d4grFWoIVBJ_yhp7iBPFT6Dbc3qQ,1391
90
85
  amsdal/operations/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
91
- amsdal/operations/manager.cpython-311-darwin.so,sha256=ANqwYsv1T7_gx9CNAwbrOY9oitCOOlZEkByJGHlK5k4,320656
92
- amsdal/operations/__init__.cpython-311-darwin.so,sha256=dPs3jbYLM--oQPnu2UVlZ-h9l2-a_Nwaytwg_hEeoVc,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
93
88
  amsdal/schemas/manager.pyi,sha256=N_Zc22jd_SEcvKPJTNrK-8m2mElWHnJSvnJHhD0dcNc,704
94
89
  amsdal/schemas/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
95
90
  amsdal/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
96
- amsdal/schemas/manager.cpython-311-darwin.so,sha256=DSgHKhIah_xd3RRHRztJJXuPrJNYRgKEMdIYVW6_fN8,216128
91
+ amsdal/schemas/manager.cpython-311-darwin.so,sha256=9OYYTx7fYttFAEYwmao44FoJfqtTmvT687WSQE_R5nM,216128
97
92
  amsdal/schemas/manager.py,sha256=XWMaoRtONIKPkclChRcLcdNUlnDriByjeGbHmoXznoc,2212
98
93
  amsdal/schemas/types/array/model.json,sha256=I9Z7r691yd8i-Ndy8Cf3rFGg22mnLxg_weeVU2kRtkY,117
99
94
  amsdal/schemas/types/number/model.json,sha256=sp60YPi1xPj33LVtvl2c0vTselFqesAtGZN6pyMeexY,129
@@ -122,75 +117,80 @@ amsdal/configs/constants.py,sha256=tglKWR34Fdx7tVr_CZA2Q3cNuykbr1S2s0LiQfsn0tQ,5
122
117
  amsdal/configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
123
118
  amsdal/configs/main.pyi,sha256=eBSP0Khm8t0zWULLJJmJCE9JGgWc_cVPSGv8QbQt8UA,1387
124
119
  amsdal/configs/main.py,sha256=h_4Hc1SHsXuY7K15W_hpC6iQJPjDf60YNHYlr0-B3rU,4647
125
- amsdal/cloud/client.cpython-311-darwin.so,sha256=eqmj-sglTreQ6RcetytlS_gmyF3CsquRk_bMSIj4qdw,215872
120
+ amsdal/cloud/client.cpython-311-darwin.so,sha256=z2YdLskiZ_Iqj5h3FV7vIENcXQHsTf9hVmVWwrHYW74,215872
126
121
  amsdal/cloud/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
127
122
  amsdal/cloud/constants.pyi,sha256=0qWxDqjQkETwUtgco5kV83fPHhQ4jRdJe_YPPNTnSIY,327
128
123
  amsdal/cloud/client.pyi,sha256=uEFrKTEIxnXnCFtW6_GtfvuwHeXK5J_WjOho5FWYhdQ,593
129
- amsdal/cloud/enums.cpython-311-darwin.so,sha256=bXazKEoAZM1H--RYHoeCb8Hp0x8E7E7A9AOKg0sF28E,157568
130
- amsdal/cloud/constants.cpython-311-darwin.so,sha256=XUc6OXsztlLx3rjLXPessNCGINJPnTTELDSQLxQ12wo,158688
131
- amsdal/cloud/__init__.cpython-311-darwin.so,sha256=wEKXzDt5DXPfq5F_-R_xq5NC2RH0Yia7r-gOZXeO4CY,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
132
127
  amsdal/cloud/enums.pyi,sha256=0g3I-6nLB26kj0H8v4CJRUuARSDLTn91FzTtb9DHGIU,407
133
- amsdal/cloud/models/base.cpython-311-darwin.so,sha256=mxxP5lf6qDK3XGbE_DMPNtCMNWRc7DwacV5Azf2-18I,159552
128
+ amsdal/cloud/models/base.cpython-311-darwin.so,sha256=TIO--OM0l3ScNOKNpgdQbQejCOG4B_4byXkHA0zZLfU,159552
134
129
  amsdal/cloud/models/base.pyi,sha256=GKl9jFUcRv4gzdqf3G_irx0TUPuD2C-GS2PuhyyvgF4,1564
135
130
  amsdal/cloud/models/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
136
- amsdal/cloud/models/__init__.cpython-311-darwin.so,sha256=T4MC6A8ZCpiVjWfY1liyvCjcR5n6vFx3qNVil_OqiiQ,120688
131
+ amsdal/cloud/models/__init__.cpython-311-darwin.so,sha256=nCx5P6G-CdB60bbUaVXyL7dXPhgCFzYzh_JadwW73HA,120688
137
132
  amsdal/cloud/services/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
138
- amsdal/cloud/services/__init__.cpython-311-darwin.so,sha256=SB3dM_IPPA8FkfEw4fEXHl5FZ19jKlbogFVvENVQMEo,120688
139
- amsdal/cloud/services/auth/base.cpython-311-darwin.so,sha256=i80PaMj3GIhur3Rwm3NJegR57phRoceBjQ9AESQbp50,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
140
135
  amsdal/cloud/services/auth/base.pyi,sha256=oj_tgwWhf02g-FzCLcNOEZjYDxfcrrDssING4jsUMb8,167
141
136
  amsdal/cloud/services/auth/manager.pyi,sha256=9fSm8tUKWNdUKlpV6GmvSN6Ypr8IyanAtrV6-uzdUgw,749
142
137
  amsdal/cloud/services/auth/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
143
138
  amsdal/cloud/services/auth/signup_service.pyi,sha256=uiBnaraW2tmSm6hlhRcVNJfNrtIo-Ddxzd2dZOD27mU,520
144
- amsdal/cloud/services/auth/token.cpython-311-darwin.so,sha256=mu0Qx6KGkaYLgHPqK5nDCVoH8dESnBscfPQIwraoh48,250960
145
- amsdal/cloud/services/auth/manager.cpython-311-darwin.so,sha256=pJVZ8UKnoT2BMMIcItqRGS5LZ_d3tYsu9xcTv2Sp9L8,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
146
141
  amsdal/cloud/services/auth/token.pyi,sha256=DRvKXl7DV26vcoLxEgR6UyJgIeP9z-XTX3WiR4A1ksM,633
147
- amsdal/cloud/services/auth/signup_service.cpython-311-darwin.so,sha256=nxzvaFeSBSu0J_m0v8hpKMj99FPDtm_ZFXzZL_IogWQ,216024
148
- amsdal/cloud/services/auth/__init__.cpython-311-darwin.so,sha256=R2ipT2AT2NftgizWGv1xPfsk5PRpE-Bi4MbN-DpWRqc,120704
149
- amsdal/cloud/services/auth/credentials.cpython-311-darwin.so,sha256=XLG2Ts5Kp2rMcOfmjmcxXMVIceJh34UmC4PdOJdOfb0,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
150
145
  amsdal/cloud/services/auth/credentials.pyi,sha256=AMS1HUVaqM7CiypSQvYEliFW4_9g9-_6WME2tAxIw3s,1116
151
- amsdal/cloud/services/actions/base.cpython-311-darwin.so,sha256=lToLUAYBFDAZseXuz1euVVfmNNshoMS1uAR01Pyrw48,304544
146
+ amsdal/cloud/services/actions/base.cpython-311-darwin.so,sha256=vSsi4ojhmplt5VfUrMFS8UcBiqKzv9twO3-ew7b81FA,304544
152
147
  amsdal/cloud/services/actions/base.pyi,sha256=RuTQwOHkHCzEw4HBkHkbba9gW_5158BT71YdOxIzlGw,1648
153
- amsdal/cloud/services/actions/signup_action.cpython-311-darwin.so,sha256=1QpTGb5UWJ0YbudiVraCoFa4_MB2pJVhut2JdsdKRXQ,180392
148
+ amsdal/cloud/services/actions/signup_action.cpython-311-darwin.so,sha256=FCwkZnY4Yr2dIW7ogiDVblWawoCHH6pZ2uzIUQo3heo,180392
154
149
  amsdal/cloud/services/actions/manager.pyi,sha256=7oFfhd26A5raF8mOFYOLC2BZ_J9L67ddH-fYgPkjtQ4,2735
155
- amsdal/cloud/services/actions/delete_dependency.cpython-311-darwin.so,sha256=2-rxVzLP_y3iOXfq3nuAxDHvDvlUbSfU__VAbxwbnbQ,180552
156
- amsdal/cloud/services/actions/expose_db.cpython-311-darwin.so,sha256=IObAP-xRCfmELekj7R6rIrgnQTT7-F8PEBqjaEOTK_0,180912
157
- amsdal/cloud/services/actions/add_secret.cpython-311-darwin.so,sha256=aJLISZ3ygDMqxl2EaEC0Z_9k4j3Vi3iytvoo3avb6Tc,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
158
153
  amsdal/cloud/services/actions/list_secrets.pyi,sha256=B14mii5J0ktUaTLDHkqfkhwhy0bweuy6i6rc9n41EE4,355
159
- amsdal/cloud/services/actions/list_secrets.cpython-311-darwin.so,sha256=TpaAbE9HqEvRF7-KrmGB2SZy8UAqiL5ISk7auOeAUDA,181064
154
+ amsdal/cloud/services/actions/list_secrets.cpython-311-darwin.so,sha256=x33bdJQKOqiY_Pl8Pv3895Dr8DecGwfWD3eZDxmMjE4,181064
160
155
  amsdal/cloud/services/actions/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
161
- amsdal/cloud/services/actions/list_deploys.cpython-311-darwin.so,sha256=PQ2HzEqW37qdnNW8mBHkNaFMU5L3qhE5eeRyt9f0AZg,180856
162
- amsdal/cloud/services/actions/list_dependencies.cpython-311-darwin.so,sha256=YF2PfD7voKoWh54hPsNhb7a0NDqKGtTtIp_plxQN-dI,181048
163
- amsdal/cloud/services/actions/destroy_deploy.cpython-311-darwin.so,sha256=CK6s5YpxkJW_k-8DXL_6QvGexbt-y7tjM-3PJMlE1Gk,180344
164
- amsdal/cloud/services/actions/create_session.cpython-311-darwin.so,sha256=nswbqZAl8bC9fFji2XrioiCbQJ629LfQigCmA3yUY4g,180776
165
- amsdal/cloud/services/actions/create_deploy.cpython-311-darwin.so,sha256=Q3PTEFyZWbIS3fzhmRI9ItiX9F97-oy6-MVNo9D93yA,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
166
161
  amsdal/cloud/services/actions/delete_secret.pyi,sha256=QhIYoXQzShEUwLwoDQaNEf-mw1PQvl0l3EFIpg-dKcE,252
167
- amsdal/cloud/services/actions/manager.cpython-311-darwin.so,sha256=iUPEvyV_eUaKunERbweWANv5EaJw11sZTqQgNo3_X7A,249504
162
+ amsdal/cloud/services/actions/manager.cpython-311-darwin.so,sha256=ZF6od6fzG9DUZNlyjsDKFXTwFqWfLCguBH9AJnbvV3k,249504
168
163
  amsdal/cloud/services/actions/delete_dependency.pyi,sha256=2xT5Ks6KGgNMZEl--VkcpHZ3Mo7SvJpMtQCOdLkcwLE,259
169
- amsdal/cloud/services/actions/add_dependency.cpython-311-darwin.so,sha256=JfwtWWFXorKf3E4ec_u9drWs4s_Z8ZBvnD5osNidO8g,180504
164
+ amsdal/cloud/services/actions/add_dependency.cpython-311-darwin.so,sha256=wtKrtRee9_aUvhwVZrXOMYZ03PzpNyzHMyjlMQTRpCg,180504
170
165
  amsdal/cloud/services/actions/create_session.pyi,sha256=IxkArxMKJyRpqiWA1xDl06ZN4B44VDwn_jlCeGC6JWc,282
171
166
  amsdal/cloud/services/actions/list_deploys.pyi,sha256=jLfXCoRiocgzfNjNR6hdlF3kgWM8dq4qK_NsR25nxV4,277
172
167
  amsdal/cloud/services/actions/add_dependency.pyi,sha256=k9mJDr_rvG4tY6gK2IHRKac5jPy30IeWhzc389Rc70M,256
173
- amsdal/cloud/services/actions/update_deploy.cpython-311-darwin.so,sha256=EHXIsLgjmspd43oQu7rKw0CYBhaqEXb3y5V5Lgy2CkE,180840
168
+ amsdal/cloud/services/actions/update_deploy.cpython-311-darwin.so,sha256=YRaHVKzwyK2ls0gy6_qEDgoV9BthtZkyaW1eFzgO0T8,180840
174
169
  amsdal/cloud/services/actions/signup_action.pyi,sha256=Zobfp3iqnxWTqnZNacDR0udNQjBfh5uX32n7DISaQP8,304
175
170
  amsdal/cloud/services/actions/add_secret.pyi,sha256=-aLENIqVyk-0IE7m4f-p8KOfLmsvZ0QjWyqSyiDXzi4,268
176
- amsdal/cloud/services/actions/__init__.cpython-311-darwin.so,sha256=SSgDQ7MIR67Ys-50c4ag9U9485gqVsAOlOYiYTuOon4,120720
171
+ amsdal/cloud/services/actions/__init__.cpython-311-darwin.so,sha256=snh_y_4ODIcnfAz-taVLqeOdRHc72rbt743-yFftCOM,120720
177
172
  amsdal/cloud/services/actions/destroy_deploy.pyi,sha256=vEPBlTq6vbYSmthr-V45WgqeTTAwnH_o3xJ_eE2TIns,181
178
173
  amsdal/cloud/services/actions/update_deploy.pyi,sha256=kqpvc8zOMZwSVFi8ZAyt4NwkiY9uDUruRHdY12uxdeo,296
179
174
  amsdal/cloud/services/actions/create_deploy.pyi,sha256=FyIJd8mS0AdeLL_VnHHvItmNFfP7-l-tQavGBtL_b0w,695
180
175
  amsdal/cloud/services/actions/list_dependencies.pyi,sha256=Dw8SY_Eh7eo_EXbd1XzMdUCg6j1LPasreA7kPBbBcJU,345
181
- amsdal/cloud/services/actions/delete_secret.cpython-311-darwin.so,sha256=1cvFTyPlATtPW02OWaaN0b6NenhT7Pp5Ynjp7qHdCE0,180488
176
+ amsdal/cloud/services/actions/delete_secret.cpython-311-darwin.so,sha256=Zxheb2P4Jh87DxDp8IBUTlvweN2lerBeE-0w-bHev1I,180488
182
177
  amsdal/cloud/services/actions/expose_db.pyi,sha256=vvhhSXSY8Myu9VKVmoSU-ywOzfi43u9ztmykBSE1vhM,294
183
178
  amsdal/fixtures/manager.pyi,sha256=Q0ImQbFpuGDiFnlR1dbmgxWHjf7B2sq1csPzbiNIdEg,1608
184
179
  amsdal/fixtures/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
185
- amsdal/fixtures/manager.cpython-311-darwin.so,sha256=fCvz8E-SIwpVv7b5_JT7hDD6ZEsWJgBCoMvT0p2SosU,390544
186
- amsdal/fixtures/__init__.cpython-311-darwin.so,sha256=zFwQdfenzyte2rZ4RGrKp9Lbaz12HsOYpP1pA_tUJuk,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
187
182
  amsdal/migration/manager.pyi,sha256=lLiErmrNHxaC4_gbGvoAW9A99e4Rw3i94UcwgAlM1AY,1343
188
183
  amsdal/migration/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
189
- amsdal/migration/manager.cpython-311-darwin.so,sha256=1wIQeOdgBrSpRvgnFWFZcHgj6-xyz2dHOliCKtawztI,370976
184
+ amsdal/migration/manager.cpython-311-darwin.so,sha256=WzgHM4bVOvbQHu3SlHdnEkmwHz4BSz6qotcny_sJm7A,370976
190
185
  amsdal/migration/utils.pyi,sha256=s4R1_Dn25l-2wLN86vP8PBWVYo1tdvcaShZ5mKGc7d0,1125
191
- amsdal/migration/utils.cpython-311-darwin.so,sha256=kvbFUP72YkL8YL43OEK7HymfrfozPdgOkc0Hpn3btSY,250992
192
- amsdal/migration/__init__.cpython-311-darwin.so,sha256=G9L83fjyUXJgiN4mh-m5yDNl60N-8kUXTkRTfqMPjo0,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
193
188
  amsdal/services/transaction_execution.pyi,sha256=bbT2h7xTzuP4SJSBfbJhvA7ryzwX8PfgRD9VAdjJJ8Q,1377
194
189
  amsdal/services/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
195
- amsdal/services/__init__.cpython-311-darwin.so,sha256=y1Fo7yiISOi6auAn1wyQ4hNOoszc8EJaHY-hnYUmOm0,120672
196
- amsdal/services/transaction_execution.cpython-311-darwin.so,sha256=CS_AsFviWrrvKEX2U1JARED4wKgD4uTYptBaBrV5ZAg,346160
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