amsdal 0.5.13__cp311-cp311-macosx_10_9_universal2.whl → 0.5.14__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.
- amsdal/__about__.py +1 -1
- amsdal/cloud/__init__.cpython-311-darwin.so +0 -0
- amsdal/cloud/client.cpython-311-darwin.so +0 -0
- amsdal/cloud/constants.cpython-311-darwin.so +0 -0
- amsdal/cloud/enums.cpython-311-darwin.so +0 -0
- amsdal/cloud/models/__init__.cpython-311-darwin.so +0 -0
- amsdal/cloud/models/base.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/__init__.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/__init__.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/add_allowlist_ip.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/add_basic_auth.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/add_dependency.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/add_secret.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/base.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/create_deploy.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/create_env.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/create_session.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/delete_allowlist_ip.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/delete_basic_auth.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/delete_dependency.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/delete_env.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/delete_secret.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/destroy_deploy.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/expose_db.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/get_basic_auth_credentials.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/get_monitoring_info.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/list_dependencies.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/list_deploys.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/list_envs.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/list_secrets.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/manager.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/signup_action.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/update_deploy.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/auth/__init__.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/auth/base.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/auth/credentials.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/auth/manager.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/auth/signup_service.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/auth/token.cpython-311-darwin.so +0 -0
- amsdal/contrib/__init__.cpython-311-darwin.so +0 -0
- amsdal/contrib/frontend_configs/conversion/convert.py +7 -3
- amsdal/fixtures/__init__.cpython-311-darwin.so +0 -0
- amsdal/fixtures/manager.cpython-311-darwin.so +0 -0
- amsdal/fixtures/utils.cpython-311-darwin.so +0 -0
- amsdal/manager.cpython-311-darwin.so +0 -0
- amsdal/mixins/__init__.cpython-311-darwin.so +0 -0
- amsdal/mixins/class_versions_mixin.cpython-311-darwin.so +0 -0
- amsdal/schemas/manager.cpython-311-darwin.so +0 -0
- amsdal/services/__init__.cpython-311-darwin.so +0 -0
- amsdal/services/transaction_execution.cpython-311-darwin.so +0 -0
- {amsdal-0.5.13.dist-info → amsdal-0.5.14.dist-info}/METADATA +1 -1
- {amsdal-0.5.13.dist-info → amsdal-0.5.14.dist-info}/RECORD +55 -55
- {amsdal-0.5.13.dist-info → amsdal-0.5.14.dist-info}/WHEEL +0 -0
- {amsdal-0.5.13.dist-info → amsdal-0.5.14.dist-info}/licenses/LICENSE.txt +0 -0
- {amsdal-0.5.13.dist-info → amsdal-0.5.14.dist-info}/top_level.txt +0 -0
amsdal/__about__.py
CHANGED
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -207,6 +207,7 @@ def convert_to_frontend_config(value: Any, *, is_transaction: bool = False) -> d
|
|
207
207
|
if issubclass(value, LegacyModel):
|
208
208
|
return {}
|
209
209
|
|
210
|
+
is_timestamp_mixin = False
|
210
211
|
if issubclass(value, BaseModel):
|
211
212
|
model_controls = []
|
212
213
|
|
@@ -215,10 +216,10 @@ def convert_to_frontend_config(value: Any, *, is_transaction: bool = False) -> d
|
|
215
216
|
schema = model_to_object_schema(value)
|
216
217
|
|
217
218
|
_mro = value.mro()
|
219
|
+
|
218
220
|
# remove updated_at and created_at fields
|
219
|
-
if any(cls.__name__ == 'TimestampMixin' for cls in _mro)
|
220
|
-
|
221
|
-
schema.properties.pop('created_at', None)
|
221
|
+
if any(cls.__name__ == 'TimestampMixin' for cls in _mro):
|
222
|
+
is_timestamp_mixin = True
|
222
223
|
|
223
224
|
except FileNotFoundError:
|
224
225
|
schema = None
|
@@ -274,6 +275,9 @@ def convert_to_frontend_config(value: Any, *, is_transaction: bool = False) -> d
|
|
274
275
|
control['required'] = False
|
275
276
|
model_controls.append(control)
|
276
277
|
|
278
|
+
if is_timestamp_mixin:
|
279
|
+
model_controls = [c for c in model_controls if c['name'] not in ('created_at', 'updated_at')]
|
280
|
+
|
277
281
|
return {
|
278
282
|
'type': 'group',
|
279
283
|
'name': value.__name__,
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -1,14 +1,9 @@
|
|
1
|
-
amsdal-0.5.13.dist-info/RECORD,,
|
2
|
-
amsdal-0.5.13.dist-info/WHEEL,sha256=EOGtw-LpzLQPCSF3QP-yT4xdfA0v97p09Et-l29cEBs,114
|
3
|
-
amsdal-0.5.13.dist-info/top_level.txt,sha256=VPQLnOP3mf7q0JuQ_vPZYQyPNGKd_uc6ouz-hZRkhSk,7
|
4
|
-
amsdal-0.5.13.dist-info/METADATA,sha256=JoxbxjsxIt-amBaZGBOW9-p-1CpOin8_HgzRcXLzs5o,57623
|
5
|
-
amsdal-0.5.13.dist-info/licenses/LICENSE.txt,sha256=hG-541PFYfNJi9WRZi_hno91UyqNg7YLK8LR3vLblZA,27355
|
6
1
|
amsdal/manager.pyi,sha256=aRX-FO3KIozgaoJg3_pAVJjPAW9PL8hMiYvaTJ_kp5E,9466
|
7
2
|
amsdal/__init__.pyi,sha256=4FIq7rQKQXoDNIzrDxtklKrbPcE2qqKU8W0jp8Mld6Q,741
|
8
3
|
amsdal/__init__.py,sha256=eg_kMNcJSTvb8Q32AstCARJURBhrlIVmE12Dgq0nOUk,742
|
9
|
-
amsdal/manager.cpython-311-darwin.so,sha256=
|
4
|
+
amsdal/manager.cpython-311-darwin.so,sha256=ORUfGCZym6VOE4PL2amrvQv-ifIFYbGxoWGZybJauik,518288
|
10
5
|
amsdal/Third-Party Materials - AMSDAL Dependencies - License Notices.md,sha256=3YRsqickIvSW7EmjlC-yk5h-YW_GMzAz7wsT9ZPIiaM,74780
|
11
|
-
amsdal/__about__.py,sha256=
|
6
|
+
amsdal/__about__.py,sha256=hkBivdKGX12JM7AG3MDZivuAX1mb9Tkhjyyd47yhZV4,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
|
@@ -23,8 +18,8 @@ amsdal/context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
23
18
|
amsdal/context/manager.py,sha256=CKGY75P2y-TCnZvK5p9NJsDgHo8KXHSE0Eg5AGRjnfk,1850
|
24
19
|
amsdal/mixins/class_versions_mixin.pyi,sha256=oSXjkTsN35d-3YgCckclhk7xRkljKHLYtN8a8gJgj2o,548
|
25
20
|
amsdal/mixins/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
26
|
-
amsdal/mixins/__init__.cpython-311-darwin.so,sha256=
|
27
|
-
amsdal/mixins/class_versions_mixin.cpython-311-darwin.so,sha256=
|
21
|
+
amsdal/mixins/__init__.cpython-311-darwin.so,sha256=8ZRsDcImYME16WI26Ro0trWcs5LzqsVHj1Pbzi1jdfk,120656
|
22
|
+
amsdal/mixins/class_versions_mixin.cpython-311-darwin.so,sha256=fvF0yRdmn9Hw9zd8yad_jmG3EudVUq5wS8PxxMv953k,180576
|
28
23
|
amsdal/utils/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
29
24
|
amsdal/utils/contrib_paths.py,sha256=9BpNegbPofuvaQ4bE4E5cO4IV415ZZJkTqSLHUruJ3k,787
|
30
25
|
amsdal/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -50,7 +45,7 @@ amsdal/models/core/class_property.py,sha256=HFIMb0DE8bhmRf_l45VeJJD_tE85eUZ---IP
|
|
50
45
|
amsdal/models/core/class_object.py,sha256=Y5sdatrNZK1jkMImyeRFTxeUonuzJaDCKZzULZvJIHw,1487
|
51
46
|
amsdal/contrib/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
52
47
|
amsdal/contrib/app_config.pyi,sha256=j3MYfBcn9MzhTagEczGWfVH9N5jrfiKmUhxZMoakojw,149
|
53
|
-
amsdal/contrib/__init__.cpython-311-darwin.so,sha256=
|
48
|
+
amsdal/contrib/__init__.cpython-311-darwin.so,sha256=kZZEhGgVxH4MtHB5eAPMWPQ_K13f9aNlWjnIqjYjHAc,120656
|
54
49
|
amsdal/contrib/app_config.py,sha256=RT3RAEE49XtzuFTXYNVuaqU9V4YIl0ZWZijtXgV-SC4,131
|
55
50
|
amsdal/contrib/auth/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
56
51
|
amsdal/contrib/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -99,7 +94,7 @@ amsdal/contrib/frontend_configs/models/frontend_config_skip_none_base.py,sha256=
|
|
99
94
|
amsdal/contrib/frontend_configs/models/frontend_activator_config.py,sha256=40mXb53uk4Rg4F5uMgCFHuDJTjQA9b_qO5zUtJHTPKk,1023
|
100
95
|
amsdal/contrib/frontend_configs/models/frontend_config_validator.py,sha256=TckgaoRn3hU04rihXQMTAt8wNFoZo8dzHTR0RVyPytY,1317
|
101
96
|
amsdal/contrib/frontend_configs/conversion/__init__.pyi,sha256=Gbz6P3jhpqK6hLcGxi6l0sI_MNrb8_JNLLD4YVOjkFY,162
|
102
|
-
amsdal/contrib/frontend_configs/conversion/convert.py,sha256=
|
97
|
+
amsdal/contrib/frontend_configs/conversion/convert.py,sha256=QuSfsfxGpBO5yKKyFrRPmMS7TfNo4Mo6fwwGkKPrmvs,9839
|
103
98
|
amsdal/contrib/frontend_configs/conversion/convert.pyi,sha256=cmJVdWBIobg3a5QEZUN1itITb5vPX9DoWqPzZCPN28M,913
|
104
99
|
amsdal/contrib/frontend_configs/conversion/__init__.py,sha256=4Kkv5xgGvqky3szx08bBfbbxrc6TeFDSnosGimSoNcI,139
|
105
100
|
amsdal/schemas/interfaces.py,sha256=ECDbWTljhGXYVbbSLjH0ko-rIWgp4LttuIr-Amte2bA,672
|
@@ -108,7 +103,7 @@ amsdal/schemas/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
108
103
|
amsdal/schemas/repository.pyi,sha256=e6YUXO248WmhWkkXWt828JrFzIJ9alTPqjXqbktjeWw,1443
|
109
104
|
amsdal/schemas/interfaces.pyi,sha256=jUXLEKIa_af9Qrv9a4UvfRmsUV78N921i4dDXKHPaQk,725
|
110
105
|
amsdal/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
111
|
-
amsdal/schemas/manager.cpython-311-darwin.so,sha256=
|
106
|
+
amsdal/schemas/manager.cpython-311-darwin.so,sha256=sRo81TbbOVVNableQfJvMZTkJDQXjyVgqM_p7yd76TM,120656
|
112
107
|
amsdal/schemas/utils.pyi,sha256=UbeISOxetojP6HlzhiJWeaAVyYZUrnGAS5niTQ0m6n0,437
|
113
108
|
amsdal/schemas/utils.py,sha256=t8k7QYYR6SsCPpBhp7s585eSYKVIF895EKRMK1w1y1Q,492
|
114
109
|
amsdal/schemas/repository.py,sha256=PbskgDr8JMabQm2uf8Kfj5bBSPlPkx4cDGXn-jfIsPM,3249
|
@@ -159,89 +154,94 @@ amsdal/configs/constants.py,sha256=faghdS6r3on1WKrp782WmgONd1fMf4X73LJzAwMO1po,9
|
|
159
154
|
amsdal/configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
160
155
|
amsdal/configs/main.pyi,sha256=RbhsgUVCibVhUMXlBVtM5EvUJdLV4FcDZFigNaLkWAI,6916
|
161
156
|
amsdal/configs/main.py,sha256=dpTtw6SCv8yu4sGqe5OOT2CTNvxcmOuXtbGXIKBjsvU,9735
|
162
|
-
amsdal/cloud/client.cpython-311-darwin.so,sha256=
|
157
|
+
amsdal/cloud/client.cpython-311-darwin.so,sha256=KRLmaHVBC0HH42b7ginjgZQQbyyR2G55IGu8dt2nGuE,216208
|
163
158
|
amsdal/cloud/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
164
159
|
amsdal/cloud/constants.pyi,sha256=0qWxDqjQkETwUtgco5kV83fPHhQ4jRdJe_YPPNTnSIY,327
|
165
160
|
amsdal/cloud/client.pyi,sha256=3VjPRtJrbUU29u_wswETrMorN0iUb4GFAXmMc73bUf4,2247
|
166
|
-
amsdal/cloud/enums.cpython-311-darwin.so,sha256=
|
167
|
-
amsdal/cloud/constants.cpython-311-darwin.so,sha256=
|
168
|
-
amsdal/cloud/__init__.cpython-311-darwin.so,sha256=
|
161
|
+
amsdal/cloud/enums.cpython-311-darwin.so,sha256=JV1NfLZRo0OPh81lXZOkpI7PfyfoaILMkLEsSx-BeiU,158064
|
162
|
+
amsdal/cloud/constants.cpython-311-darwin.so,sha256=Vl710NqDoVIMGE4WmV-78oVg-n6M6eqwnfrJ-NQP3KU,158688
|
163
|
+
amsdal/cloud/__init__.cpython-311-darwin.so,sha256=RxWOqp1oABWIpL8mbK_nxie1g3sVLj3n1dDf2qIRuto,120656
|
169
164
|
amsdal/cloud/enums.pyi,sha256=mX5O1FPc3aNnN108aOJT66Nn9KlcyrRTj9B23sFdDfw,1757
|
170
|
-
amsdal/cloud/models/base.cpython-311-darwin.so,sha256=
|
165
|
+
amsdal/cloud/models/base.cpython-311-darwin.so,sha256=h6e5hB8vDODGAwpacmUqKJqhYGjVfzzh2hM5iALsNEU,211632
|
171
166
|
amsdal/cloud/models/base.pyi,sha256=avwAj4uS4NHrXvmSKBxokFKFWSaBPXtJPl1Ig1CD6sg,7727
|
172
167
|
amsdal/cloud/models/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
173
|
-
amsdal/cloud/models/__init__.cpython-311-darwin.so,sha256=
|
168
|
+
amsdal/cloud/models/__init__.cpython-311-darwin.so,sha256=x5HgvR4-JP2wHaKtnS4T0jsWUh76RKduJhgGLuxbs70,120688
|
174
169
|
amsdal/cloud/services/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
175
|
-
amsdal/cloud/services/__init__.cpython-311-darwin.so,sha256=
|
176
|
-
amsdal/cloud/services/auth/base.cpython-311-darwin.so,sha256
|
170
|
+
amsdal/cloud/services/__init__.cpython-311-darwin.so,sha256=X9m6gIicHhtBx2z4MUhgJV1WnbXlFD34Ebhiv3q2kT4,120688
|
171
|
+
amsdal/cloud/services/auth/base.cpython-311-darwin.so,sha256=-F9KJqjze3SqjMhOADdaz5ReMq4sP_awmKSX73gU7nU,163104
|
177
172
|
amsdal/cloud/services/auth/base.pyi,sha256=oj_tgwWhf02g-FzCLcNOEZjYDxfcrrDssING4jsUMb8,167
|
178
173
|
amsdal/cloud/services/auth/manager.pyi,sha256=AhKllHgraztP3JSKta9MmQjTNRAbQbwqZg2EpQZSwhI,1243
|
179
174
|
amsdal/cloud/services/auth/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
180
175
|
amsdal/cloud/services/auth/signup_service.pyi,sha256=SfSN1tLIwrzGi9JbMgoLuKKH1u5uoh_MOFJ4n_NHcBY,1145
|
181
|
-
amsdal/cloud/services/auth/token.cpython-311-darwin.so,sha256=
|
182
|
-
amsdal/cloud/services/auth/manager.cpython-311-darwin.so,sha256=
|
176
|
+
amsdal/cloud/services/auth/token.cpython-311-darwin.so,sha256=8IQO1JV6ECjy5wqLa_TuihobKcqeYYCoiKl1bw_GX1E,251536
|
177
|
+
amsdal/cloud/services/auth/manager.cpython-311-darwin.so,sha256=1s4Gl4IYq2pHer4tMDjcQ5WlI6zw9D9T9_nzEUGoK00,214128
|
183
178
|
amsdal/cloud/services/auth/token.pyi,sha256=v9QDleIytAZGlYHHaO-W1fTr5d2OLGWsh5g6HDeuk90,1042
|
184
|
-
amsdal/cloud/services/auth/signup_service.cpython-311-darwin.so,sha256=
|
185
|
-
amsdal/cloud/services/auth/__init__.cpython-311-darwin.so,sha256=
|
186
|
-
amsdal/cloud/services/auth/credentials.cpython-311-darwin.so,sha256=
|
179
|
+
amsdal/cloud/services/auth/signup_service.cpython-311-darwin.so,sha256=xQhz3BNwShTspY6bJkKmLEW7BTJD1gFgAQkFhfWtqOU,216216
|
180
|
+
amsdal/cloud/services/auth/__init__.cpython-311-darwin.so,sha256=qqaSkP8Eh71r44NLkx_8DH8s9l_JP1lYwfe_g_Mjd6A,120704
|
181
|
+
amsdal/cloud/services/auth/credentials.cpython-311-darwin.so,sha256=I942Dx7Kp3STn_b2V6RJ_oX8v2hfSxDgVSXuiOUWyOo,304408
|
187
182
|
amsdal/cloud/services/auth/credentials.pyi,sha256=ghp3r8rDq5l5xxx7UKFkCASyQJbWChkF2PQDJrQmeW4,1417
|
188
|
-
amsdal/cloud/services/actions/get_basic_auth_credentials.cpython-311-darwin.so,sha256=
|
189
|
-
amsdal/cloud/services/actions/base.cpython-311-darwin.so,sha256=
|
183
|
+
amsdal/cloud/services/actions/get_basic_auth_credentials.cpython-311-darwin.so,sha256=v5hsroqMRp6PdwvDhWi8v_KZL0-e1kosnCKGOg18p5I,181112
|
184
|
+
amsdal/cloud/services/actions/base.cpython-311-darwin.so,sha256=Q0fAaoUXPzw73BVf4FisRQ3Fb1vo6um20wYgmRIBXMk,323552
|
190
185
|
amsdal/cloud/services/actions/list_envs.pyi,sha256=7PylFRd1Jb6nkTt8q8iy27rLj-Q5qcwfqW02_OlfDZs,878
|
191
|
-
amsdal/cloud/services/actions/delete_basic_auth.cpython-311-darwin.so,sha256
|
186
|
+
amsdal/cloud/services/actions/delete_basic_auth.cpython-311-darwin.so,sha256=-HCqqYqh0IEHcO-GdBFlAu-QhvM1-479qdLE5MJI2BI,180744
|
192
187
|
amsdal/cloud/services/actions/base.pyi,sha256=J98igdu3E9-mled_kbxerja4DTLM0OAW8cHtsVOQ_fc,5880
|
193
|
-
amsdal/cloud/services/actions/add_allowlist_ip.cpython-311-darwin.so,sha256=
|
194
|
-
amsdal/cloud/services/actions/signup_action.cpython-311-darwin.so,sha256=
|
188
|
+
amsdal/cloud/services/actions/add_allowlist_ip.cpython-311-darwin.so,sha256=AZk5Cp1qSYIUVg-TUOBU_jwooGWdKsjv1I7HHCyrVtc,180776
|
189
|
+
amsdal/cloud/services/actions/signup_action.cpython-311-darwin.so,sha256=ShKoiRDgsFRsZNOKfJVrnXc2VPAGZfNn10jINTHZoWw,180584
|
195
190
|
amsdal/cloud/services/actions/manager.pyi,sha256=Tal5u1nMhi7MeuJ9lBIPYPLgKoIB6DUXPU2AokrusHI,15441
|
196
|
-
amsdal/cloud/services/actions/delete_dependency.cpython-311-darwin.so,sha256=
|
197
|
-
amsdal/cloud/services/actions/expose_db.cpython-311-darwin.so,sha256=
|
191
|
+
amsdal/cloud/services/actions/delete_dependency.cpython-311-darwin.so,sha256=FvH4pTjnC7J3kCzMt6qJD5yacx_CHRosMNiuGW97avY,180760
|
192
|
+
amsdal/cloud/services/actions/expose_db.cpython-311-darwin.so,sha256=xM9tY5zRsOY2FsqLaS3whhUWpr4SowKEfktaxAQcjh4,181184
|
198
193
|
amsdal/cloud/services/actions/delete_allowlist_ip.pyi,sha256=W5zVq7YKL_OVigZl58bqau3rvAzsLdItAZaqDO1HGJw,933
|
199
|
-
amsdal/cloud/services/actions/add_secret.cpython-311-darwin.so,sha256=
|
194
|
+
amsdal/cloud/services/actions/add_secret.cpython-311-darwin.so,sha256=I8oYthFzg9ZApea35tCGN1FDhEpVrXdX_asf70EdxEo,180632
|
200
195
|
amsdal/cloud/services/actions/add_basic_auth.pyi,sha256=4tyTci_k_xlJrkBd71sY0ivRr8alo3Bq0KCkjIfacu4,1106
|
201
196
|
amsdal/cloud/services/actions/list_secrets.pyi,sha256=vF-EikAy7WHdkvkGikD_oDFDIgE1GEr8nxAQKYAs9rY,1079
|
202
|
-
amsdal/cloud/services/actions/list_secrets.cpython-311-darwin.so,sha256=
|
197
|
+
amsdal/cloud/services/actions/list_secrets.cpython-311-darwin.so,sha256=pzta3rHJTq3k_otHUmfu0FORDxXBTxCbMOlqANs6LZI,181304
|
203
198
|
amsdal/cloud/services/actions/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
204
199
|
amsdal/cloud/services/actions/get_basic_auth_credentials.pyi,sha256=1FU8BtDRaGTx8fSqdhmotQK-rR7gKr4Qav_E-T_23rc,1071
|
205
|
-
amsdal/cloud/services/actions/list_deploys.cpython-311-darwin.so,sha256=
|
206
|
-
amsdal/cloud/services/actions/list_envs.cpython-311-darwin.so,sha256=
|
207
|
-
amsdal/cloud/services/actions/list_dependencies.cpython-311-darwin.so,sha256
|
208
|
-
amsdal/cloud/services/actions/destroy_deploy.cpython-311-darwin.so,sha256=
|
209
|
-
amsdal/cloud/services/actions/create_session.cpython-311-darwin.so,sha256=
|
210
|
-
amsdal/cloud/services/actions/create_deploy.cpython-311-darwin.so,sha256=
|
200
|
+
amsdal/cloud/services/actions/list_deploys.cpython-311-darwin.so,sha256=Hiais-pjmWyps6CEm6gXGPC5gwUYyBIm8LrOZ9ekDOA,181080
|
201
|
+
amsdal/cloud/services/actions/list_envs.cpython-311-darwin.so,sha256=fmAtnR88M_vmB38j7KIKdSK64N_1FO38lsk_ClRXEnU,180752
|
202
|
+
amsdal/cloud/services/actions/list_dependencies.cpython-311-darwin.so,sha256=--oEngSGasNNkpDgyDavAXwQaumtfu9sJ5YzplKxhgg,181304
|
203
|
+
amsdal/cloud/services/actions/destroy_deploy.cpython-311-darwin.so,sha256=RrYwnENo5QL25cS3KFvsqXokYnovPzIztpnIazGFbt0,180536
|
204
|
+
amsdal/cloud/services/actions/create_session.cpython-311-darwin.so,sha256=yx3R_tfLphMevfqE8KcL_Ez3K4cmX8l6of0F0Fo_zac,180984
|
205
|
+
amsdal/cloud/services/actions/create_deploy.cpython-311-darwin.so,sha256=NUk4npWVAoazonVZExOQm8Se20s0ZmMf4tLRkDzYglI,269240
|
211
206
|
amsdal/cloud/services/actions/delete_secret.pyi,sha256=gZi17MivNYBIfdPU2GjoJ2I2lWiefdvLuXTcxDss1P4,953
|
212
207
|
amsdal/cloud/services/actions/delete_env.pyi,sha256=uyBHMOp_AprbpSfv6y6QfYW5FvK1-8jb2NxK_FmuPHE,969
|
213
|
-
amsdal/cloud/services/actions/manager.cpython-311-darwin.so,sha256=
|
208
|
+
amsdal/cloud/services/actions/manager.cpython-311-darwin.so,sha256=qn5oZ2-y3ZcdbpnnqgVipglRfaS9_MG9VIn-fSbLYl4,371312
|
214
209
|
amsdal/cloud/services/actions/delete_dependency.pyi,sha256=VuT1w2qOpjR7I9mBi9tPXMXDPEeU8tG0vi9TXV82Frg,1021
|
215
|
-
amsdal/cloud/services/actions/add_dependency.cpython-311-darwin.so,sha256
|
210
|
+
amsdal/cloud/services/actions/add_dependency.cpython-311-darwin.so,sha256=-eExikjHT7bujqT166Ixu-zBOxro3Q2VcLFQnSdiJFw,180712
|
216
211
|
amsdal/cloud/services/actions/create_session.pyi,sha256=KUvx_vkhLQfGp_DM1ZvgszyT_G8LB28KoI1XpjNR7YY,674
|
217
|
-
amsdal/cloud/services/actions/delete_allowlist_ip.cpython-311-darwin.so,sha256=
|
212
|
+
amsdal/cloud/services/actions/delete_allowlist_ip.cpython-311-darwin.so,sha256=jepGxJCKHRyilRl7v_r8r709-FEc5AZmKUxHwJjzkto,180832
|
218
213
|
amsdal/cloud/services/actions/list_deploys.pyi,sha256=Q8da3PDPxICLP2V7L-A7p-9_a3qNKrARqgHhu0CA0nA,724
|
219
|
-
amsdal/cloud/services/actions/add_basic_auth.cpython-311-darwin.so,sha256=
|
214
|
+
amsdal/cloud/services/actions/add_basic_auth.cpython-311-darwin.so,sha256=tXC0o6LHtUSIp52EN17_Q29IDr4mT-hHaF4oy3vTQc8,181112
|
220
215
|
amsdal/cloud/services/actions/add_allowlist_ip.pyi,sha256=gB2NQVz8NcSsgXYiym2Suh1RPI8eHKIAFE13RmeTHkA,883
|
221
216
|
amsdal/cloud/services/actions/get_monitoring_info.pyi,sha256=uvtBgWvtWf-Mq4vZq_q-q8Z8hJh5voAY61KRJQPGWFk,1045
|
222
217
|
amsdal/cloud/services/actions/add_dependency.pyi,sha256=uVEIhvDa4GRS0Lg6TkcYdOwezKcxrzL7A_Lh8BxcAeU,837
|
223
|
-
amsdal/cloud/services/actions/get_monitoring_info.cpython-311-darwin.so,sha256=
|
224
|
-
amsdal/cloud/services/actions/update_deploy.cpython-311-darwin.so,sha256=
|
218
|
+
amsdal/cloud/services/actions/get_monitoring_info.cpython-311-darwin.so,sha256=URA4D13WQbW3KzYa8jNxOwPYnkCiJ-C6Ey6Qgq3RQYo,180976
|
219
|
+
amsdal/cloud/services/actions/update_deploy.cpython-311-darwin.so,sha256=kYV_CqkGq6RGBa9JruAFFHLDkbOEqFiaz_OiY3S_Xwg,181064
|
225
220
|
amsdal/cloud/services/actions/signup_action.pyi,sha256=VswHjhxw2eHYqXwc---F2LpwlD7GlIuL_Ev2DmA96_4,808
|
226
|
-
amsdal/cloud/services/actions/create_env.cpython-311-darwin.so,sha256=
|
221
|
+
amsdal/cloud/services/actions/create_env.cpython-311-darwin.so,sha256=To7ySsHLWWoK85nMv_C1h_4g12FimiTT5qZU-7hKT6c,180824
|
227
222
|
amsdal/cloud/services/actions/add_secret.pyi,sha256=H6rS3PRwiktMfnoY8qwtmTplN9gG2yZgQKKCX8S8Q6c,890
|
228
|
-
amsdal/cloud/services/actions/delete_env.cpython-311-darwin.so,sha256=
|
229
|
-
amsdal/cloud/services/actions/__init__.cpython-311-darwin.so,sha256=
|
223
|
+
amsdal/cloud/services/actions/delete_env.cpython-311-darwin.so,sha256=YspGqIQIw-PhGoTtyJawq2jj-83wT57837bxdU486MI,180824
|
224
|
+
amsdal/cloud/services/actions/__init__.cpython-311-darwin.so,sha256=YK32XXByALTTMUXSvOHiXksJwOeoSmTNvIJ9vH_fpog,120720
|
230
225
|
amsdal/cloud/services/actions/destroy_deploy.pyi,sha256=VNb0J71B3gk4SVJwxlB9XTj4vCG-37ucojcGzsvKwe8,609
|
231
226
|
amsdal/cloud/services/actions/update_deploy.pyi,sha256=alM1nquQZ5O8PYlDIqDdSuiyuc_aj9fkd01bL9KANEI,766
|
232
227
|
amsdal/cloud/services/actions/create_deploy.pyi,sha256=VmVMYJQmjPZce6Cm8sMQ27HomhfdzZc_0X57ZWZmCt0,1988
|
233
228
|
amsdal/cloud/services/actions/delete_basic_auth.pyi,sha256=-I1YoOMFi0LaRsZL2JBGH_sg18PZoUL1PP9YetboDJA,915
|
234
229
|
amsdal/cloud/services/actions/list_dependencies.pyi,sha256=C37VamSyRT-uNLuwQJ0OrHKavs8Jt0bfPbAsE5BQEvE,1035
|
235
230
|
amsdal/cloud/services/actions/create_env.pyi,sha256=ITvyLrvwt6H36JNYURHZ_PbmGZquc5Fm07dVo7H6ll0,910
|
236
|
-
amsdal/cloud/services/actions/delete_secret.cpython-311-darwin.so,sha256=
|
231
|
+
amsdal/cloud/services/actions/delete_secret.cpython-311-darwin.so,sha256=BUTUh9rC1HDQyzT1mR7grLY5xucAC0qO_zRkZw0Oj3Y,180680
|
237
232
|
amsdal/cloud/services/actions/expose_db.pyi,sha256=uk2zuz1SiXwjDFxtKF-yyWGNEONOgfm7EcrEyVT0cMM,1049
|
238
233
|
amsdal/fixtures/manager.pyi,sha256=fMl3nNa2A9jiZanZ_7tnUGaPigk_03KMmdcUGPoX9kI,7077
|
239
234
|
amsdal/fixtures/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
240
|
-
amsdal/fixtures/manager.cpython-311-darwin.so,sha256=
|
235
|
+
amsdal/fixtures/manager.cpython-311-darwin.so,sha256=qRGY-mF4snhejHpLBVBzZWJ35EE4YZcyH77vqPmjFh0,622896
|
241
236
|
amsdal/fixtures/utils.pyi,sha256=OnFn7opJscOydj-rlcXQIdDodlIKGCt79TRy5zAUkqg,457
|
242
|
-
amsdal/fixtures/utils.cpython-311-darwin.so,sha256=
|
243
|
-
amsdal/fixtures/__init__.cpython-311-darwin.so,sha256=
|
237
|
+
amsdal/fixtures/utils.cpython-311-darwin.so,sha256=IF1lCWNSSP1zeGIxqAGeXZU-WgC1XiJLf2TFlrpvRi0,306720
|
238
|
+
amsdal/fixtures/__init__.cpython-311-darwin.so,sha256=PKheE6n0Q4-OcpB1WAGao92LlgVDbUbUTXHNQrh4RUQ,120672
|
244
239
|
amsdal/services/transaction_execution.pyi,sha256=TwCuurOoqSHgNu9GCYYZPSpGjxXssF2eNygQ5KVwAZM,4374
|
245
240
|
amsdal/services/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
246
|
-
amsdal/services/__init__.cpython-311-darwin.so,sha256=
|
247
|
-
amsdal/services/transaction_execution.cpython-311-darwin.so,sha256=
|
241
|
+
amsdal/services/__init__.cpython-311-darwin.so,sha256=tMVFy2-r7ObF8Ur9GsgmbWrvkPWMSrxJ61g_ukcbQfw,120672
|
242
|
+
amsdal/services/transaction_execution.cpython-311-darwin.so,sha256=PgJASKzIjLikUR5vfT1GGbNF5grn54N-3UbISVODh3k,452176
|
243
|
+
amsdal-0.5.14.dist-info/RECORD,,
|
244
|
+
amsdal-0.5.14.dist-info/WHEEL,sha256=EOGtw-LpzLQPCSF3QP-yT4xdfA0v97p09Et-l29cEBs,114
|
245
|
+
amsdal-0.5.14.dist-info/top_level.txt,sha256=VPQLnOP3mf7q0JuQ_vPZYQyPNGKd_uc6ouz-hZRkhSk,7
|
246
|
+
amsdal-0.5.14.dist-info/METADATA,sha256=n0vMDeNk8laAtJhxqzXSJNg-yHQUAls8SzJEP1rBeZI,57623
|
247
|
+
amsdal-0.5.14.dist-info/licenses/LICENSE.txt,sha256=hG-541PFYfNJi9WRZi_hno91UyqNg7YLK8LR3vLblZA,27355
|
File without changes
|
File without changes
|
File without changes
|