amsdal 0.0.40__cp310-cp310-macosx_10_9_universal2.whl → 0.0.41__cp310-cp310-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-310-darwin.so +0 -0
  3. amsdal/cloud/client.cpython-310-darwin.so +0 -0
  4. amsdal/cloud/constants.cpython-310-darwin.so +0 -0
  5. amsdal/cloud/enums.cpython-310-darwin.so +0 -0
  6. amsdal/cloud/models/__init__.cpython-310-darwin.so +0 -0
  7. amsdal/cloud/models/base.cpython-310-darwin.so +0 -0
  8. amsdal/cloud/services/__init__.cpython-310-darwin.so +0 -0
  9. amsdal/cloud/services/actions/__init__.cpython-310-darwin.so +0 -0
  10. amsdal/cloud/services/actions/add_dependency.cpython-310-darwin.so +0 -0
  11. amsdal/cloud/services/actions/add_secret.cpython-310-darwin.so +0 -0
  12. amsdal/cloud/services/actions/base.cpython-310-darwin.so +0 -0
  13. amsdal/cloud/services/actions/create_deploy.cpython-310-darwin.so +0 -0
  14. amsdal/cloud/services/actions/create_session.cpython-310-darwin.so +0 -0
  15. amsdal/cloud/services/actions/delete_dependency.cpython-310-darwin.so +0 -0
  16. amsdal/cloud/services/actions/delete_secret.cpython-310-darwin.so +0 -0
  17. amsdal/cloud/services/actions/destroy_deploy.cpython-310-darwin.so +0 -0
  18. amsdal/cloud/services/actions/expose_db.cpython-310-darwin.so +0 -0
  19. amsdal/cloud/services/actions/list_dependencies.cpython-310-darwin.so +0 -0
  20. amsdal/cloud/services/actions/list_deploys.cpython-310-darwin.so +0 -0
  21. amsdal/cloud/services/actions/list_secrets.cpython-310-darwin.so +0 -0
  22. amsdal/cloud/services/actions/manager.cpython-310-darwin.so +0 -0
  23. amsdal/cloud/services/actions/signup_action.cpython-310-darwin.so +0 -0
  24. amsdal/cloud/services/actions/update_deploy.cpython-310-darwin.so +0 -0
  25. amsdal/cloud/services/auth/__init__.cpython-310-darwin.so +0 -0
  26. amsdal/cloud/services/auth/base.cpython-310-darwin.so +0 -0
  27. amsdal/cloud/services/auth/credentials.cpython-310-darwin.so +0 -0
  28. amsdal/cloud/services/auth/manager.cpython-310-darwin.so +0 -0
  29. amsdal/cloud/services/auth/signup_service.cpython-310-darwin.so +0 -0
  30. amsdal/cloud/services/auth/token.cpython-310-darwin.so +0 -0
  31. amsdal/contrib/__init__.cpython-310-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-310-darwin.so +0 -0
  36. amsdal/fixtures/manager.cpython-310-darwin.so +0 -0
  37. amsdal/manager.cpython-310-darwin.so +0 -0
  38. amsdal/migration/__init__.cpython-310-darwin.so +0 -0
  39. amsdal/migration/manager.cpython-310-darwin.so +0 -0
  40. amsdal/migration/utils.cpython-310-darwin.so +0 -0
  41. amsdal/mixins/__init__.cpython-310-darwin.so +0 -0
  42. amsdal/mixins/build_mixin.cpython-310-darwin.so +0 -0
  43. amsdal/mixins/class_versions_mixin.cpython-310-darwin.so +0 -0
  44. amsdal/operations/__init__.cpython-310-darwin.so +0 -0
  45. amsdal/operations/manager.cpython-310-darwin.so +0 -0
  46. amsdal/schemas/manager.cpython-310-darwin.so +0 -0
  47. amsdal/services/__init__.cpython-310-darwin.so +0 -0
  48. amsdal/services/transaction_execution.cpython-310-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=quc6KPsQ_p8Uswd5yj8hDZg5y2ghFxeobjm5cM_ymZ0,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
- amsdal/manager.cpython-310-darwin.so,sha256=EWcvOvmDbcupjKQB3DdZd_OkdNNE-1aBLBXS3DKeu2M,339328
3
+ amsdal/manager.cpython-310-darwin.so,sha256=BFMB5Zql0mCvr7aDoyQtjhYgLWdbXPg2F7Bes87fM7M,339328
9
4
  amsdal/__init__.py,sha256=EQCJ5OevmkkIpIULumPNIbWk3UI7afDfRzIsZN5mfwg,73
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
@@ -19,16 +14,16 @@ 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
16
  amsdal/mixins/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
22
- amsdal/mixins/build_mixin.cpython-310-darwin.so,sha256=w9-VqBTStfgtWBf8UziWIXSwd8lksvytv7SBMxksf_g,336520
17
+ amsdal/mixins/build_mixin.cpython-310-darwin.so,sha256=XskLqOdEQoDNVjzj_30PxmmjaYCdwLWmQNB-RRxLofU,336520
23
18
  amsdal/mixins/build_mixin.pyi,sha256=bli7OdqgE4K-AUs6kkG01RXkNjx_6715BgnwOZoTpl8,955
24
- amsdal/mixins/__init__.cpython-310-darwin.so,sha256=2fvGxjiEPhuP4Yw3ZcyRX7xD_k8xhSw1EcLWGQ-PSNE,120672
25
- amsdal/mixins/class_versions_mixin.cpython-310-darwin.so,sha256=TWQasmoDgjxxdD7YgJwjj5EnKg62iHn_uU1S2sDVB4s,250208
19
+ amsdal/mixins/__init__.cpython-310-darwin.so,sha256=gNtbhmiQcvsO6vC1n19vmglK5pcFp12iepG_NPkAFyw,120672
20
+ amsdal/mixins/class_versions_mixin.cpython-310-darwin.so,sha256=7i0Odrvd_C1LXn9eoqKjtYQJyi6mo3T_vNhbHwTvjKY,250208
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
- amsdal/contrib/__init__.cpython-310-darwin.so,sha256=6IdKTILYCBymg-drRGbhDmksEkIrny4DA03u3Ye-2Q8,120672
26
+ amsdal/contrib/__init__.cpython-310-darwin.so,sha256=Kt_LEEswsylBGxwdytPDpvCRp5YUG4a-waPkOoz6OeY,120672
32
27
  amsdal/contrib/app_config.pyi,sha256=j3MYfBcn9MzhTagEczGWfVH9N5jrfiKmUhxZMoakojw,149
33
28
  amsdal/contrib/app_config.py,sha256=RT3RAEE49XtzuFTXYNVuaqU9V4YIl0ZWZijtXgV-SC4,131
34
29
  amsdal/contrib/auth/__init__.pyi,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,16 +78,16 @@ 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-310-darwin.so,sha256=tI1w0QJmyFkS7Ei0SLgq2fVVQ4WK8oS4Qxyh_vMT-r4,320592
92
- amsdal/operations/__init__.cpython-310-darwin.so,sha256=3yDvgsiC_VID3dPXfuPpR8FixjkEKJDMADHjd6IpE7Q,120688
86
+ amsdal/operations/manager.cpython-310-darwin.so,sha256=ovcI03ZM_5DoXDJ3FRWOrdRqirDvAEympuAtZIuImZM,320592
87
+ amsdal/operations/__init__.cpython-310-darwin.so,sha256=A0X1vqHn7-cC8qSZLeg1wshvYMkPTV_xBy7Wxjukf8A,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
- amsdal/schemas/manager.cpython-310-darwin.so,sha256=JqwNuZSxd8QZc3K7jjBZopVdDY87a-dbAzpFzFa1_EU,216064
90
+ amsdal/schemas/manager.cpython-310-darwin.so,sha256=vNRmtQu5fFilFIx0TfxuW7gsEdFGL5mFT9uQePe-DHU,216064
96
91
  amsdal/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
97
92
  amsdal/schemas/manager.py,sha256=XWMaoRtONIKPkclChRcLcdNUlnDriByjeGbHmoXznoc,2212
98
93
  amsdal/schemas/types/array/model.json,sha256=I9Z7r691yd8i-Ndy8Cf3rFGg22mnLxg_weeVU2kRtkY,117
@@ -123,74 +118,79 @@ 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
120
  amsdal/cloud/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
126
- amsdal/cloud/enums.cpython-310-darwin.so,sha256=A1GYJ41llKcA2ZH7jWo5mlrSQv8oDtZzhXzRy_GD54c,157504
121
+ amsdal/cloud/enums.cpython-310-darwin.so,sha256=TxUZZ4j4wBD35jsF3RDJq_1iS80m-wpFL4pNa2r7rE0,157504
127
122
  amsdal/cloud/constants.pyi,sha256=0qWxDqjQkETwUtgco5kV83fPHhQ4jRdJe_YPPNTnSIY,327
128
123
  amsdal/cloud/client.pyi,sha256=uEFrKTEIxnXnCFtW6_GtfvuwHeXK5J_WjOho5FWYhdQ,593
129
- amsdal/cloud/client.cpython-310-darwin.so,sha256=LSiz0ab5bc_XoKuFmWjc-iySh9qGqr4uHjs_qjBmY9Y,215632
130
- amsdal/cloud/__init__.cpython-310-darwin.so,sha256=yA_nZFmkDKwJJc8cPRPZ8Dhb71bVFx0p6qgYWko07bg,120656
131
- amsdal/cloud/constants.cpython-310-darwin.so,sha256=Ugd8hW6fm5KX74zEpIYEyT9b77jw0Q8ngJFR_bIU-iQ,158624
124
+ amsdal/cloud/client.cpython-310-darwin.so,sha256=J3wPlF2k_s8GTALqi8BwpsUWLD9oyWUPEmmducSETu0,215632
125
+ amsdal/cloud/__init__.cpython-310-darwin.so,sha256=ZbOMSLprSWMet6YDbdgvSqtVWSdD7ysELiSYQUPPtao,120656
126
+ amsdal/cloud/constants.cpython-310-darwin.so,sha256=IkwkEWrJyJtJoBbA1KDvDVcDiJ_75xHbtbb2cH-iBCY,158624
132
127
  amsdal/cloud/enums.pyi,sha256=0g3I-6nLB26kj0H8v4CJRUuARSDLTn91FzTtb9DHGIU,407
133
128
  amsdal/cloud/models/base.pyi,sha256=GKl9jFUcRv4gzdqf3G_irx0TUPuD2C-GS2PuhyyvgF4,1564
134
129
  amsdal/cloud/models/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
135
- amsdal/cloud/models/base.cpython-310-darwin.so,sha256=R-khDeqzMfBIKQrZR24Kv_9eiXZU_FzKEkG4nBjVTmQ,159488
136
- amsdal/cloud/models/__init__.cpython-310-darwin.so,sha256=6hrUopC4WaLAQWQss_VDXyCcQ1ul4e2N_OJZ9iVlBmo,120688
130
+ amsdal/cloud/models/base.cpython-310-darwin.so,sha256=lktTBXWwZVKv98LrD4MmexAIs0qTuvZwcfdCoIvoarE,159488
131
+ amsdal/cloud/models/__init__.cpython-310-darwin.so,sha256=B_V8B26J5PQbS8OecIm38HGNKbGWNJz10RqqEu73L5M,120688
137
132
  amsdal/cloud/services/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
138
- amsdal/cloud/services/__init__.cpython-310-darwin.so,sha256=aVrtp5YN3uGq-QLs9ra4q5aEvclkj53GlZD7eguI1ig,120704
139
- amsdal/cloud/services/auth/token.cpython-310-darwin.so,sha256=uDuzl0vNIK0zInZAS7KMvfiRf0yHX_jvFws046XaP9Y,250784
133
+ amsdal/cloud/services/__init__.cpython-310-darwin.so,sha256=5dpzvUg5fvbzDwMCH_UYd6OPzgFWLM_tP396GUQgu-Q,120704
134
+ amsdal/cloud/services/auth/token.cpython-310-darwin.so,sha256=jjTlGgZC9zv4aUtTmh7C8OgnsVOIRK1n7zVHWOf3L8U,250784
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
- amsdal/cloud/services/auth/manager.cpython-310-darwin.so,sha256=SG43XQVPggxkbMaTGmmm5zoU4UsV3sbeZsx7D_yAq5s,213856
138
+ amsdal/cloud/services/auth/manager.cpython-310-darwin.so,sha256=hW3uz7pch-ss9nTxxZiSoMmBBFI0iUpmEvMdzprF-ss,213856
144
139
  amsdal/cloud/services/auth/signup_service.pyi,sha256=uiBnaraW2tmSm6hlhRcVNJfNrtIo-Ddxzd2dZOD27mU,520
145
- amsdal/cloud/services/auth/base.cpython-310-darwin.so,sha256=6TlRPn5nMp22sQH3QPAOwbZeyw-3tC_ydWtp4Yg5vE0,163040
146
- amsdal/cloud/services/auth/__init__.cpython-310-darwin.so,sha256=IBC-ABINDOaVHi2_2AMAYoB6_PUXFB4KCbLcvd2YYqo,120720
140
+ amsdal/cloud/services/auth/base.cpython-310-darwin.so,sha256=hxiyqUBHTO8pW0HUm3X26tc9BRE6yRv_UDj2EYSZ0jQ,163040
141
+ amsdal/cloud/services/auth/__init__.cpython-310-darwin.so,sha256=XXe456JES27u4OZnFmgHVzs1knyCvkuNKX7oDR0VhiY,120720
147
142
  amsdal/cloud/services/auth/token.pyi,sha256=DRvKXl7DV26vcoLxEgR6UyJgIeP9z-XTX3WiR4A1ksM,633
148
- amsdal/cloud/services/auth/credentials.cpython-310-darwin.so,sha256=-9JMaEdXmcjVyNloWjYmG7mhyj7-zQg38vVAoeehux4,252920
149
- amsdal/cloud/services/auth/signup_service.cpython-310-darwin.so,sha256=A3EMk5oZVRW6pEXGu4E6sJQpNw1XrAO_TskamP90jKg,215960
143
+ amsdal/cloud/services/auth/credentials.cpython-310-darwin.so,sha256=iWDl-xAxwXJcPfgJ8fARCd74dJLehFwS4bP7ETKSgEA,252920
144
+ amsdal/cloud/services/auth/signup_service.cpython-310-darwin.so,sha256=Fcq7qFJIZHLxNt1tKGLHd37XbD8WeU6JVZgoOhD9kdQ,215960
150
145
  amsdal/cloud/services/auth/credentials.pyi,sha256=AMS1HUVaqM7CiypSQvYEliFW4_9g9-_6WME2tAxIw3s,1116
151
- amsdal/cloud/services/actions/list_deploys.cpython-310-darwin.so,sha256=ae2Qs_u0NL8pHbaibJFhwMjxwctziMKc4x4SWDCXv-4,180808
152
- amsdal/cloud/services/actions/destroy_deploy.cpython-310-darwin.so,sha256=W9KX4s9NlX1g-gpUSVIyuawOeR4EITs0QyPh3oJYWVQ,180280
153
- amsdal/cloud/services/actions/list_dependencies.cpython-310-darwin.so,sha256=c4vz01Htj6q5xlOkWIO7JZ8JJAaIpFTI1n9VEZ7ldEg,180968
146
+ amsdal/cloud/services/actions/list_deploys.cpython-310-darwin.so,sha256=sS7f9ZEbDZu9zsf5Evp6J06eCTwYGs7aIIpcev2HydQ,180808
147
+ amsdal/cloud/services/actions/destroy_deploy.cpython-310-darwin.so,sha256=vF1B7SF0PH8ny4-IdCsAL6GDSXe4tTvb0dg85bnhuZg,180280
148
+ amsdal/cloud/services/actions/list_dependencies.cpython-310-darwin.so,sha256=JyK48p6GoJCJnWe8pM5OxH_nqi8gJeYSo3kC2wMKobo,180968
154
149
  amsdal/cloud/services/actions/base.pyi,sha256=RuTQwOHkHCzEw4HBkHkbba9gW_5158BT71YdOxIzlGw,1648
155
150
  amsdal/cloud/services/actions/manager.pyi,sha256=7oFfhd26A5raF8mOFYOLC2BZ_J9L67ddH-fYgPkjtQ4,2735
156
- amsdal/cloud/services/actions/create_deploy.cpython-310-darwin.so,sha256=MNtWAYEK0dWyih4NMgkgWT1_xcGWtxxE0HeqbHH7faA,252168
157
- amsdal/cloud/services/actions/create_session.cpython-310-darwin.so,sha256=UAdVxFw10KKTfmrSUvmCpWBNgs21KjmS6cBkxZ07hmY,180728
151
+ amsdal/cloud/services/actions/create_deploy.cpython-310-darwin.so,sha256=_Y2kmx993bCtI99ixrARHlv-3RpvMMvR6o6ZyzybIDk,252152
152
+ amsdal/cloud/services/actions/create_session.cpython-310-darwin.so,sha256=Sf1FT0jLHkDwns-eeXws_7FkuXBmDqxtDvbetVrhimg,180728
158
153
  amsdal/cloud/services/actions/list_secrets.pyi,sha256=B14mii5J0ktUaTLDHkqfkhwhy0bweuy6i6rc9n41EE4,355
159
154
  amsdal/cloud/services/actions/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
160
- amsdal/cloud/services/actions/manager.cpython-310-darwin.so,sha256=Auceo80smANgYjEd2wXd2mwxbsfdf_AjWEAxYiYgUMU,249440
161
- amsdal/cloud/services/actions/base.cpython-310-darwin.so,sha256=fhujTD9PrZOCtCLnHX2Pq17RsY6aFAkC0WMw6mEHL-g,304480
162
- amsdal/cloud/services/actions/signup_action.cpython-310-darwin.so,sha256=z8lsiblZXh6E3C2yhvqrdQkoRVCLeT4czbFCS0hQXJU,180328
163
- amsdal/cloud/services/actions/expose_db.cpython-310-darwin.so,sha256=3sWOx2e9ZmHHPTM3XxrhoLRBX-p8cug78DjSivL5meE,180848
164
- amsdal/cloud/services/actions/add_secret.cpython-310-darwin.so,sha256=O7NS5X7uWTldC33Htm8c-6XlfALBqermsfZq_Qsu3zM,180392
165
- amsdal/cloud/services/actions/delete_dependency.cpython-310-darwin.so,sha256=30RjoAZvjFu73lADwneAMuJhfUAn79CkLDtpHzN2894,180488
155
+ amsdal/cloud/services/actions/manager.cpython-310-darwin.so,sha256=H8FLIJNlfk-eFjAYP8OmGLsDczRxmE13u76TyDkPpeI,249440
156
+ amsdal/cloud/services/actions/base.cpython-310-darwin.so,sha256=SzPc4WGyCNGCENyB02ByDYHlb5T2qvkLXmGt9pYwAK4,304480
157
+ amsdal/cloud/services/actions/signup_action.cpython-310-darwin.so,sha256=hpKLsA8_hY77p_68j343qoLmb0z23O8hDByHrFK16j0,180328
158
+ amsdal/cloud/services/actions/expose_db.cpython-310-darwin.so,sha256=Ki4vToz5gmjeTfFDNFcLsXRtm7ykWlsRaWw2I6PqQA4,180848
159
+ amsdal/cloud/services/actions/add_secret.cpython-310-darwin.so,sha256=uDbYa7EhEeZNUSUTTfMqLqGcimvOc01A28VbxcSgbA4,180392
160
+ amsdal/cloud/services/actions/delete_dependency.cpython-310-darwin.so,sha256=KTEKFTV6dX3CkGx3wyZIQVjUeCqq-YxNbe1SbKuW52g,180488
166
161
  amsdal/cloud/services/actions/delete_secret.pyi,sha256=QhIYoXQzShEUwLwoDQaNEf-mw1PQvl0l3EFIpg-dKcE,252
167
- amsdal/cloud/services/actions/list_secrets.cpython-310-darwin.so,sha256=zNRxBRXfO27pJLOwooNjq_phExfzrswunlmYKFqvkPc,180968
162
+ amsdal/cloud/services/actions/list_secrets.cpython-310-darwin.so,sha256=GVT9ZRROqydcCg2vafDl4NweYTa0RQSNxuRAwsGd06Y,180968
168
163
  amsdal/cloud/services/actions/delete_dependency.pyi,sha256=2xT5Ks6KGgNMZEl--VkcpHZ3Mo7SvJpMtQCOdLkcwLE,259
169
- amsdal/cloud/services/actions/__init__.cpython-310-darwin.so,sha256=ke71MJQJGMFiFsu5CBFuPIeIRkWHYDTLf65AQMBJsSk,120736
164
+ amsdal/cloud/services/actions/__init__.cpython-310-darwin.so,sha256=S2HtWe9Hg4ywGZHizspR_gtO4Dn2JYTeDpGCvFTacM8,120736
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
168
  amsdal/cloud/services/actions/signup_action.pyi,sha256=Zobfp3iqnxWTqnZNacDR0udNQjBfh5uX32n7DISaQP8,304
174
- amsdal/cloud/services/actions/delete_secret.cpython-310-darwin.so,sha256=_kOR1_3TbA_1wwypeRTogqJwH5tDZZNiAgo0YKRKZJs,180424
169
+ amsdal/cloud/services/actions/delete_secret.cpython-310-darwin.so,sha256=e8eubZANEj1JnTo7uUQ_UxVV2ir858gFHq8g9OM2GME,180424
175
170
  amsdal/cloud/services/actions/add_secret.pyi,sha256=-aLENIqVyk-0IE7m4f-p8KOfLmsvZ0QjWyqSyiDXzi4,268
176
171
  amsdal/cloud/services/actions/destroy_deploy.pyi,sha256=vEPBlTq6vbYSmthr-V45WgqeTTAwnH_o3xJ_eE2TIns,181
177
172
  amsdal/cloud/services/actions/update_deploy.pyi,sha256=kqpvc8zOMZwSVFi8ZAyt4NwkiY9uDUruRHdY12uxdeo,296
178
- amsdal/cloud/services/actions/add_dependency.cpython-310-darwin.so,sha256=q2Ps3vBGMu5E0Zr2-BxT31xp_Uaf8MSCq5h10IWeEi8,180456
173
+ amsdal/cloud/services/actions/add_dependency.cpython-310-darwin.so,sha256=OQu6E2rdHM2gG0nZ3ipPcyaw21PGbnZ9UjI4j5Z4A5I,180456
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/update_deploy.cpython-310-darwin.so,sha256=O28zW3g-ziTiDdAUz5UTOaWEZtNTpK-jm-Df6EQnCK8,180776
176
+ amsdal/cloud/services/actions/update_deploy.cpython-310-darwin.so,sha256=JPTZOODZKQhPfDlpSS60yLQoEYhHdeR3pwKQiTjVa6M,180776
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-310-darwin.so,sha256=J5tlLMFh52vZjFUA1PzVCtXM2TWl851aiTG1NEWMzHo,390416
186
- amsdal/fixtures/__init__.cpython-310-darwin.so,sha256=tkiSX7SJBEsp0OWOnD8GRkpFdkrsNuq-bcr5htl5DTE,120672
180
+ amsdal/fixtures/manager.cpython-310-darwin.so,sha256=khLKLUHjLEQxGfamg9cT9OtW4omG3nFOCH0xQNNSAi4,390416
181
+ amsdal/fixtures/__init__.cpython-310-darwin.so,sha256=QNJ6syEd3QaSt245V6K3AecgD2MFFuRQ-8zT3jWeR9U,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-310-darwin.so,sha256=CxEo-VMlQcYKlHpN9wFl3UnYNS6M1Oi8Sbrg7LIQQYo,370832
184
+ amsdal/migration/manager.cpython-310-darwin.so,sha256=6K382ja378iAfc9Tjl-XSOXPgR91RMOIelGDJo_CoT4,370832
190
185
  amsdal/migration/utils.pyi,sha256=s4R1_Dn25l-2wLN86vP8PBWVYo1tdvcaShZ5mKGc7d0,1125
191
- amsdal/migration/__init__.cpython-310-darwin.so,sha256=0suV-ypFe3xMC_TeSHuLSmnCidYugzLfD0ZkMweEcFU,120688
192
- amsdal/migration/utils.cpython-310-darwin.so,sha256=WOVsKmDj1-6-vgYE24iT6ngXGQTVIV89COax0SFmisg,250912
186
+ amsdal/migration/__init__.cpython-310-darwin.so,sha256=52hqrAtq75BWtjuakyrKggT2u5zDEpOP3h_YWRgbJWw,120688
187
+ amsdal/migration/utils.cpython-310-darwin.so,sha256=D0vsx1oGThRVUWAKF9WcwLPNp3fwgNp8vo4WxWQABRI,250912
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-310-darwin.so,sha256=dgYyumxlkljqt2n2Gn9bh5VJKgU02Yr9W_PBO_Kso5w,120672
196
- amsdal/services/transaction_execution.cpython-310-darwin.so,sha256=NHElbjDpca2RnlrAlr7WKCoNX17fWro2IGnn3m4O0NY,345936
190
+ amsdal/services/__init__.cpython-310-darwin.so,sha256=os601ofSgnAxxZeGIauS7RewPCkulhfzeaGJTCk6Kl4,120672
191
+ amsdal/services/transaction_execution.cpython-310-darwin.so,sha256=c-IwgnjerTK6JQqQbYuI1sFxKAYes_6XAUvVRPeK2u4,345936
192
+ amsdal-0.0.41.dist-info/RECORD,,
193
+ amsdal-0.0.41.dist-info/WHEEL,sha256=quc6KPsQ_p8Uswd5yj8hDZg5y2ghFxeobjm5cM_ymZ0,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