amsdal 0.5.13__cp312-cp312-macosx_10_13_universal2.whl → 0.5.14__cp312-cp312-macosx_10_13_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-312-darwin.so +0 -0
- amsdal/cloud/client.cpython-312-darwin.so +0 -0
- amsdal/cloud/constants.cpython-312-darwin.so +0 -0
- amsdal/cloud/enums.cpython-312-darwin.so +0 -0
- amsdal/cloud/models/__init__.cpython-312-darwin.so +0 -0
- amsdal/cloud/models/base.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/__init__.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/actions/__init__.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/actions/add_allowlist_ip.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/actions/add_basic_auth.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/actions/add_dependency.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/actions/add_secret.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/actions/base.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/actions/create_deploy.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/actions/create_env.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/actions/create_session.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/actions/delete_allowlist_ip.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/actions/delete_basic_auth.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/actions/delete_dependency.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/actions/delete_env.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/actions/delete_secret.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/actions/destroy_deploy.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/actions/expose_db.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/actions/get_basic_auth_credentials.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/actions/get_monitoring_info.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/actions/list_dependencies.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/actions/list_deploys.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/actions/list_envs.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/actions/list_secrets.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/actions/manager.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/actions/signup_action.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/actions/update_deploy.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/auth/__init__.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/auth/base.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/auth/credentials.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/auth/manager.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/auth/signup_service.cpython-312-darwin.so +0 -0
- amsdal/cloud/services/auth/token.cpython-312-darwin.so +0 -0
- amsdal/contrib/__init__.cpython-312-darwin.so +0 -0
- amsdal/contrib/frontend_configs/conversion/convert.py +7 -3
- amsdal/fixtures/__init__.cpython-312-darwin.so +0 -0
- amsdal/fixtures/manager.cpython-312-darwin.so +0 -0
- amsdal/fixtures/utils.cpython-312-darwin.so +0 -0
- amsdal/manager.cpython-312-darwin.so +0 -0
- amsdal/mixins/__init__.cpython-312-darwin.so +0 -0
- amsdal/mixins/class_versions_mixin.cpython-312-darwin.so +0 -0
- amsdal/schemas/manager.cpython-312-darwin.so +0 -0
- amsdal/services/__init__.cpython-312-darwin.so +0 -0
- amsdal/services/transaction_execution.cpython-312-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,15 +1,10 @@
|
|
1
|
-
amsdal-0.5.13.dist-info/RECORD,,
|
2
|
-
amsdal-0.5.13.dist-info/WHEEL,sha256=_N1vyLgwJ10g4JxFsp-IfU42zGJgf-DUqwfdbV1YvEM,115
|
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
4
|
amsdal/Third-Party Materials - AMSDAL Dependencies - License Notices.md,sha256=3YRsqickIvSW7EmjlC-yk5h-YW_GMzAz7wsT9ZPIiaM,74780
|
10
|
-
amsdal/__about__.py,sha256=
|
5
|
+
amsdal/__about__.py,sha256=hkBivdKGX12JM7AG3MDZivuAX1mb9Tkhjyyd47yhZV4,125
|
11
6
|
amsdal/errors.pyi,sha256=mcuGsQMWaIUmC9GJDIkf99dQMMsCfBy6OI_UB3NSNmc,597
|
12
|
-
amsdal/manager.cpython-312-darwin.so,sha256=
|
7
|
+
amsdal/manager.cpython-312-darwin.so,sha256=Qe5AZdhKgVMExaPOWRJSYDlpj49avX-ESNi0185P1Hw,501968
|
13
8
|
amsdal/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
14
9
|
amsdal/errors.py,sha256=pZZKIklaDkh8jdFSAfX81TbiylvbaE70nttRjTcTSBk,616
|
15
10
|
amsdal/__about__.pyi,sha256=Y25n44pyE3vp92MiABKrcK3IWRyQ1JG1rZ4Ufqy2nC0,17
|
@@ -22,8 +17,8 @@ amsdal/context/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
22
17
|
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
|
-
amsdal/mixins/__init__.cpython-312-darwin.so,sha256=
|
26
|
-
amsdal/mixins/class_versions_mixin.cpython-312-darwin.so,sha256=
|
20
|
+
amsdal/mixins/__init__.cpython-312-darwin.so,sha256=ELTYss67sLcXfhjo5dI9KZKZ-kCAutVgH_i8kRiCWoo,120720
|
21
|
+
amsdal/mixins/class_versions_mixin.cpython-312-darwin.so,sha256=YVG6gTdP8mASZdcyvTiEhP1OZh2OIExc3ys5ZzL_MXA,180480
|
27
22
|
amsdal/mixins/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
28
23
|
amsdal/utils/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
29
24
|
amsdal/utils/contrib_paths.py,sha256=9BpNegbPofuvaQ4bE4E5cO4IV415ZZJkTqSLHUruJ3k,787
|
@@ -48,7 +43,7 @@ amsdal/models/core/storage_metadata.py,sha256=q-IOcsIpZHf_bt7v2NTtXAfV2i8fip3F_w
|
|
48
43
|
amsdal/models/core/file.py,sha256=IZIS3H_RHYYlwlgOpTROspMNHcpthofMbyzd3bD8lcY,7685
|
49
44
|
amsdal/models/core/class_property.py,sha256=HFIMb0DE8bhmRf_l45VeJJD_tE85eUZ---IPSBdld7I,1098
|
50
45
|
amsdal/models/core/class_object.py,sha256=Y5sdatrNZK1jkMImyeRFTxeUonuzJaDCKZzULZvJIHw,1487
|
51
|
-
amsdal/contrib/__init__.cpython-312-darwin.so,sha256=
|
46
|
+
amsdal/contrib/__init__.cpython-312-darwin.so,sha256=Z6AaeTlWyD1AjS8wqcwN_BVJbu1iDkOFRZdEB0439OQ,120736
|
52
47
|
amsdal/contrib/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
53
48
|
amsdal/contrib/app_config.pyi,sha256=j3MYfBcn9MzhTagEczGWfVH9N5jrfiKmUhxZMoakojw,149
|
54
49
|
amsdal/contrib/app_config.py,sha256=RT3RAEE49XtzuFTXYNVuaqU9V4YIl0ZWZijtXgV-SC4,131
|
@@ -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
|
@@ -110,7 +105,7 @@ amsdal/schemas/interfaces.pyi,sha256=jUXLEKIa_af9Qrv9a4UvfRmsUV78N921i4dDXKHPaQk
|
|
110
105
|
amsdal/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
111
106
|
amsdal/schemas/utils.pyi,sha256=UbeISOxetojP6HlzhiJWeaAVyYZUrnGAS5niTQ0m6n0,437
|
112
107
|
amsdal/schemas/utils.py,sha256=t8k7QYYR6SsCPpBhp7s585eSYKVIF895EKRMK1w1y1Q,492
|
113
|
-
amsdal/schemas/manager.cpython-312-darwin.so,sha256=
|
108
|
+
amsdal/schemas/manager.cpython-312-darwin.so,sha256=j5WZCiNRM4DZTWvQOBTSKLxJmla3_oE47Pavs7Zkmvw,120736
|
114
109
|
amsdal/schemas/repository.py,sha256=PbskgDr8JMabQm2uf8Kfj5bBSPlPkx4cDGXn-jfIsPM,3249
|
115
110
|
amsdal/schemas/manager.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
116
111
|
amsdal/schemas/types/array/model.json,sha256=I9Z7r691yd8i-Ndy8Cf3rFGg22mnLxg_weeVU2kRtkY,117
|
@@ -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/__init__.cpython-312-darwin.so,sha256=
|
157
|
+
amsdal/cloud/__init__.cpython-312-darwin.so,sha256=TlMZ-lprJNFw3zm6HprbD4fCcmwtYYD1dcazeCzcORw,120720
|
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/constants.cpython-312-darwin.so,sha256=
|
167
|
-
amsdal/cloud/enums.cpython-312-darwin.so,sha256=
|
168
|
-
amsdal/cloud/client.cpython-312-darwin.so,sha256=
|
161
|
+
amsdal/cloud/constants.cpython-312-darwin.so,sha256=G0TN0ND-IO3gHJT2GVGVpCa0Wuw4HZTHTcRtA1LsRWs,158688
|
162
|
+
amsdal/cloud/enums.cpython-312-darwin.so,sha256=PUs6cJwfg3RqUTqIeIqT-BSX4Ebj5mLypt9o7ggVGF0,158128
|
163
|
+
amsdal/cloud/client.cpython-312-darwin.so,sha256=pnWEa2fhXvkapC_Ea5b4M-QkXXqFX1HRZuEi1VAMfHk,216144
|
169
164
|
amsdal/cloud/enums.pyi,sha256=mX5O1FPc3aNnN108aOJT66Nn9KlcyrRTj9B23sFdDfw,1757
|
170
|
-
amsdal/cloud/models/__init__.cpython-312-darwin.so,sha256=
|
165
|
+
amsdal/cloud/models/__init__.cpython-312-darwin.so,sha256=7EWyJfE6QAFrSOz1xiLApR64kf_x4Klbv9Y-D1-9gf0,120752
|
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/base.cpython-312-darwin.so,sha256=
|
174
|
-
amsdal/cloud/services/__init__.cpython-312-darwin.so,sha256=
|
168
|
+
amsdal/cloud/models/base.cpython-312-darwin.so,sha256=JRSivY5dR-uen-geTytfWXzOacEQqfQAg6FlFvr4EM8,195328
|
169
|
+
amsdal/cloud/services/__init__.cpython-312-darwin.so,sha256=1mFJOVE1a-Z1AJ4R-Mfw2mwVXmB4MeA5oLVrgm31BwA,120768
|
175
170
|
amsdal/cloud/services/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
176
|
-
amsdal/cloud/services/auth/__init__.cpython-312-darwin.so,sha256=
|
171
|
+
amsdal/cloud/services/auth/__init__.cpython-312-darwin.so,sha256=RScuEIUHHX_K1otc_XaUr2DwtFDHAo_WJjPWtUEtmSI,120784
|
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
|
-
amsdal/cloud/services/auth/credentials.cpython-312-darwin.so,sha256=
|
175
|
+
amsdal/cloud/services/auth/credentials.cpython-312-darwin.so,sha256=iNCCQh2Bfeo8jx0m4TOj0hm0pXk6t1r6uTTZyHSu54U,287944
|
181
176
|
amsdal/cloud/services/auth/signup_service.pyi,sha256=SfSN1tLIwrzGi9JbMgoLuKKH1u5uoh_MOFJ4n_NHcBY,1145
|
182
|
-
amsdal/cloud/services/auth/signup_service.cpython-312-darwin.so,sha256=
|
177
|
+
amsdal/cloud/services/auth/signup_service.cpython-312-darwin.so,sha256=isKenhVQIcdw2_LUr-g7lOKpJXiRzC0GoACvx7wd0PE,216232
|
183
178
|
amsdal/cloud/services/auth/token.pyi,sha256=v9QDleIytAZGlYHHaO-W1fTr5d2OLGWsh5g6HDeuk90,1042
|
184
|
-
amsdal/cloud/services/auth/token.cpython-312-darwin.so,sha256=
|
185
|
-
amsdal/cloud/services/auth/manager.cpython-312-darwin.so,sha256=
|
186
|
-
amsdal/cloud/services/auth/base.cpython-312-darwin.so,sha256=
|
179
|
+
amsdal/cloud/services/auth/token.cpython-312-darwin.so,sha256=l-HWG1qdSCqQi3CyGAYazbY9-1UoQWEgmqnYxpHMH_c,251648
|
180
|
+
amsdal/cloud/services/auth/manager.cpython-312-darwin.so,sha256=5-vx4NlX38FyjQ4pVj0h-hdn9f0dr1ZD0hpyLTmrgy0,214144
|
181
|
+
amsdal/cloud/services/auth/base.cpython-312-darwin.so,sha256=JWGL_7oPyRLk-IToxw1y0PbW71fhk6ci8yrIqoEMSxo,163120
|
187
182
|
amsdal/cloud/services/auth/credentials.pyi,sha256=ghp3r8rDq5l5xxx7UKFkCASyQJbWChkF2PQDJrQmeW4,1417
|
188
|
-
amsdal/cloud/services/actions/delete_env.cpython-312-darwin.so,sha256=
|
189
|
-
amsdal/cloud/services/actions/__init__.cpython-312-darwin.so,sha256=
|
183
|
+
amsdal/cloud/services/actions/delete_env.cpython-312-darwin.so,sha256=n0Ba7DfWuo6TpEQJiajGqHUQBJ8RidSpGKVzehxhWnU,180840
|
184
|
+
amsdal/cloud/services/actions/__init__.cpython-312-darwin.so,sha256=fAFX9jVaZxFvebTp5nz8i8b_sTzoWyeiFrFu1_g-FzY,120800
|
190
185
|
amsdal/cloud/services/actions/list_envs.pyi,sha256=7PylFRd1Jb6nkTt8q8iy27rLj-Q5qcwfqW02_OlfDZs,878
|
191
186
|
amsdal/cloud/services/actions/base.pyi,sha256=J98igdu3E9-mled_kbxerja4DTLM0OAW8cHtsVOQ_fc,5880
|
192
187
|
amsdal/cloud/services/actions/manager.pyi,sha256=Tal5u1nMhi7MeuJ9lBIPYPLgKoIB6DUXPU2AokrusHI,15441
|
193
188
|
amsdal/cloud/services/actions/delete_allowlist_ip.pyi,sha256=W5zVq7YKL_OVigZl58bqau3rvAzsLdItAZaqDO1HGJw,933
|
194
189
|
amsdal/cloud/services/actions/add_basic_auth.pyi,sha256=4tyTci_k_xlJrkBd71sY0ivRr8alo3Bq0KCkjIfacu4,1106
|
195
190
|
amsdal/cloud/services/actions/list_secrets.pyi,sha256=vF-EikAy7WHdkvkGikD_oDFDIgE1GEr8nxAQKYAs9rY,1079
|
196
|
-
amsdal/cloud/services/actions/delete_secret.cpython-312-darwin.so,sha256=
|
191
|
+
amsdal/cloud/services/actions/delete_secret.cpython-312-darwin.so,sha256=y_-LMmhUkup_KaLOlQ0dfvZNnWoS09x6xCNqtEQUnG8,164312
|
197
192
|
amsdal/cloud/services/actions/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
198
193
|
amsdal/cloud/services/actions/get_basic_auth_credentials.pyi,sha256=1FU8BtDRaGTx8fSqdhmotQK-rR7gKr4Qav_E-T_23rc,1071
|
199
|
-
amsdal/cloud/services/actions/add_basic_auth.cpython-312-darwin.so,sha256=
|
194
|
+
amsdal/cloud/services/actions/add_basic_auth.cpython-312-darwin.so,sha256=YXsuN6r5c2QD2tD2_l7geKkYyHX1KSBpRhZ53Va_3ho,197512
|
200
195
|
amsdal/cloud/services/actions/delete_secret.pyi,sha256=gZi17MivNYBIfdPU2GjoJ2I2lWiefdvLuXTcxDss1P4,953
|
201
196
|
amsdal/cloud/services/actions/delete_env.pyi,sha256=uyBHMOp_AprbpSfv6y6QfYW5FvK1-8jb2NxK_FmuPHE,969
|
202
|
-
amsdal/cloud/services/actions/delete_allowlist_ip.cpython-312-darwin.so,sha256=
|
203
|
-
amsdal/cloud/services/actions/add_dependency.cpython-312-darwin.so,sha256=
|
204
|
-
amsdal/cloud/services/actions/create_env.cpython-312-darwin.so,sha256=
|
205
|
-
amsdal/cloud/services/actions/update_deploy.cpython-312-darwin.so,sha256=
|
206
|
-
amsdal/cloud/services/actions/get_monitoring_info.cpython-312-darwin.so,sha256=
|
197
|
+
amsdal/cloud/services/actions/delete_allowlist_ip.cpython-312-darwin.so,sha256=EvkbypZ2BS1gmPv28Nc4wxrMj1xpSfPEt6rVxDoNgWs,180848
|
198
|
+
amsdal/cloud/services/actions/add_dependency.cpython-312-darwin.so,sha256=u9KlI1R-aijavV2FXVtli-8IE4WJR_eZ3nBDmvPxXLM,164328
|
199
|
+
amsdal/cloud/services/actions/create_env.cpython-312-darwin.so,sha256=jYH1O-kAufGH0DPHY_ioNOiARsX34__8Ewi7qDRQBmM,180840
|
200
|
+
amsdal/cloud/services/actions/update_deploy.cpython-312-darwin.so,sha256=qZu66ewbmYPBXuNC4ymhWX11wC8jx8gKmC0dChE7dBE,181080
|
201
|
+
amsdal/cloud/services/actions/get_monitoring_info.cpython-312-darwin.so,sha256=oMpJP9gaM3TlybI6_FXQstaF4s_vH_DrIIZ3qKAWn5Y,197376
|
207
202
|
amsdal/cloud/services/actions/delete_dependency.pyi,sha256=VuT1w2qOpjR7I9mBi9tPXMXDPEeU8tG0vi9TXV82Frg,1021
|
208
|
-
amsdal/cloud/services/actions/destroy_deploy.cpython-312-darwin.so,sha256=
|
209
|
-
amsdal/cloud/services/actions/list_dependencies.cpython-312-darwin.so,sha256=
|
210
|
-
amsdal/cloud/services/actions/list_envs.cpython-312-darwin.so,sha256=
|
211
|
-
amsdal/cloud/services/actions/list_deploys.cpython-312-darwin.so,sha256=
|
203
|
+
amsdal/cloud/services/actions/destroy_deploy.cpython-312-darwin.so,sha256=kysPmRbrC62mZ9g4pWCvFpQG6_e6watqlvW3ysuQZyk,164168
|
204
|
+
amsdal/cloud/services/actions/list_dependencies.cpython-312-darwin.so,sha256=cj7pjZbelid9Tly0F-0HB8tkZkQxXVUNX-EZJZgFqyw,197704
|
205
|
+
amsdal/cloud/services/actions/list_envs.cpython-312-darwin.so,sha256=9MMFAXLrd8Yo_NOAJxi8sFBInZl5eCMtxDFateTrFgc,164384
|
206
|
+
amsdal/cloud/services/actions/list_deploys.cpython-312-darwin.so,sha256=q92AZnntg6RpwboyT0NaxkNYzNQRYiAjCXYRKvgoKs4,181096
|
212
207
|
amsdal/cloud/services/actions/create_session.pyi,sha256=KUvx_vkhLQfGp_DM1ZvgszyT_G8LB28KoI1XpjNR7YY,674
|
213
208
|
amsdal/cloud/services/actions/list_deploys.pyi,sha256=Q8da3PDPxICLP2V7L-A7p-9_a3qNKrARqgHhu0CA0nA,724
|
214
|
-
amsdal/cloud/services/actions/create_deploy.cpython-312-darwin.so,sha256=
|
215
|
-
amsdal/cloud/services/actions/create_session.cpython-312-darwin.so,sha256=
|
209
|
+
amsdal/cloud/services/actions/create_deploy.cpython-312-darwin.so,sha256=Va1zE5_N8F-8CZaLPgHu-W2ovpDqTP8wHa5GB-cYdBw,269176
|
210
|
+
amsdal/cloud/services/actions/create_session.cpython-312-darwin.so,sha256=tTMs45OdiGX-mXso3qmG4BQfDolBTgmw36BvWyPcZmE,181000
|
216
211
|
amsdal/cloud/services/actions/add_allowlist_ip.pyi,sha256=gB2NQVz8NcSsgXYiym2Suh1RPI8eHKIAFE13RmeTHkA,883
|
217
212
|
amsdal/cloud/services/actions/get_monitoring_info.pyi,sha256=uvtBgWvtWf-Mq4vZq_q-q8Z8hJh5voAY61KRJQPGWFk,1045
|
218
213
|
amsdal/cloud/services/actions/add_dependency.pyi,sha256=uVEIhvDa4GRS0Lg6TkcYdOwezKcxrzL7A_Lh8BxcAeU,837
|
219
|
-
amsdal/cloud/services/actions/manager.cpython-312-darwin.so,sha256
|
214
|
+
amsdal/cloud/services/actions/manager.cpython-312-darwin.so,sha256=UyyjLsVkESTV_xfv7bOmInZEeI1cWZyu4U9L60b_8lA,354848
|
220
215
|
amsdal/cloud/services/actions/signup_action.pyi,sha256=VswHjhxw2eHYqXwc---F2LpwlD7GlIuL_Ev2DmA96_4,808
|
221
216
|
amsdal/cloud/services/actions/add_secret.pyi,sha256=H6rS3PRwiktMfnoY8qwtmTplN9gG2yZgQKKCX8S8Q6c,890
|
222
|
-
amsdal/cloud/services/actions/base.cpython-312-darwin.so,sha256=
|
223
|
-
amsdal/cloud/services/actions/get_basic_auth_credentials.cpython-312-darwin.so,sha256=
|
217
|
+
amsdal/cloud/services/actions/base.cpython-312-darwin.so,sha256=Qkja9WayZfjE8UmOoastCh-AQrE4Zl4yDSJdCtMrnLU,307200
|
218
|
+
amsdal/cloud/services/actions/get_basic_auth_credentials.cpython-312-darwin.so,sha256=MN-PI1QJbZWVVH-POp8hALH9JSsswiaMB5C9UF2X-4g,197512
|
224
219
|
amsdal/cloud/services/actions/destroy_deploy.pyi,sha256=VNb0J71B3gk4SVJwxlB9XTj4vCG-37ucojcGzsvKwe8,609
|
225
220
|
amsdal/cloud/services/actions/update_deploy.pyi,sha256=alM1nquQZ5O8PYlDIqDdSuiyuc_aj9fkd01bL9KANEI,766
|
226
|
-
amsdal/cloud/services/actions/add_secret.cpython-312-darwin.so,sha256=
|
227
|
-
amsdal/cloud/services/actions/expose_db.cpython-312-darwin.so,sha256=
|
228
|
-
amsdal/cloud/services/actions/delete_dependency.cpython-312-darwin.so,sha256=
|
229
|
-
amsdal/cloud/services/actions/add_allowlist_ip.cpython-312-darwin.so,sha256=
|
230
|
-
amsdal/cloud/services/actions/signup_action.cpython-312-darwin.so,sha256=
|
231
|
-
amsdal/cloud/services/actions/delete_basic_auth.cpython-312-darwin.so,sha256=
|
232
|
-
amsdal/cloud/services/actions/list_secrets.cpython-312-darwin.so,sha256=
|
221
|
+
amsdal/cloud/services/actions/add_secret.cpython-312-darwin.so,sha256=vcabrv973jaEFDa37YmJHgRcAIIy3Bk1hmTwUilanrc,164264
|
222
|
+
amsdal/cloud/services/actions/expose_db.cpython-312-darwin.so,sha256=K7ru-jsmdcompwJpnWqFcIfbfRtlCksMlbcQjDygmCU,197568
|
223
|
+
amsdal/cloud/services/actions/delete_dependency.cpython-312-darwin.so,sha256=WSakBqIRpTf0GQmQyTRxwTEsqeLRz0Cbj5Iw6iJPi7k,164376
|
224
|
+
amsdal/cloud/services/actions/add_allowlist_ip.cpython-312-darwin.so,sha256=a8XnqWR26jpK09B5BUNRIT48U5d4P_-oFsu8Vbw2xKs,180792
|
225
|
+
amsdal/cloud/services/actions/signup_action.cpython-312-darwin.so,sha256=WhSrMTHMxXPvy7ZGRlWyXf4xW1Xm4G5wU-goOQ4pDrc,164216
|
226
|
+
amsdal/cloud/services/actions/delete_basic_auth.cpython-312-darwin.so,sha256=nigOy5KO1fPUGkTyK6QTfPd84sE-1xBcCDaDZdF990M,164376
|
227
|
+
amsdal/cloud/services/actions/list_secrets.cpython-312-darwin.so,sha256=gfmDGrhr3CaJupbcfWUZPLW7WySju38kXK2CbYHU11U,197688
|
233
228
|
amsdal/cloud/services/actions/create_deploy.pyi,sha256=VmVMYJQmjPZce6Cm8sMQ27HomhfdzZc_0X57ZWZmCt0,1988
|
234
229
|
amsdal/cloud/services/actions/delete_basic_auth.pyi,sha256=-I1YoOMFi0LaRsZL2JBGH_sg18PZoUL1PP9YetboDJA,915
|
235
230
|
amsdal/cloud/services/actions/list_dependencies.pyi,sha256=C37VamSyRT-uNLuwQJ0OrHKavs8Jt0bfPbAsE5BQEvE,1035
|
236
231
|
amsdal/cloud/services/actions/create_env.pyi,sha256=ITvyLrvwt6H36JNYURHZ_PbmGZquc5Fm07dVo7H6ll0,910
|
237
232
|
amsdal/cloud/services/actions/expose_db.pyi,sha256=uk2zuz1SiXwjDFxtKF-yyWGNEONOgfm7EcrEyVT0cMM,1049
|
238
|
-
amsdal/fixtures/__init__.cpython-312-darwin.so,sha256=
|
233
|
+
amsdal/fixtures/__init__.cpython-312-darwin.so,sha256=6n8CDEAfQ76nIR0z5VtFMv8o5YL6vD3eBIpquPa4hPk,120736
|
239
234
|
amsdal/fixtures/manager.pyi,sha256=fMl3nNa2A9jiZanZ_7tnUGaPigk_03KMmdcUGPoX9kI,7077
|
240
235
|
amsdal/fixtures/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
241
|
-
amsdal/fixtures/utils.cpython-312-darwin.so,sha256=
|
236
|
+
amsdal/fixtures/utils.cpython-312-darwin.so,sha256=A7vx2FqF4XWSQpHh2IjnjMmwEaV5Rj8wU0yCdPtKCRg,290128
|
242
237
|
amsdal/fixtures/utils.pyi,sha256=OnFn7opJscOydj-rlcXQIdDodlIKGCt79TRy5zAUkqg,457
|
243
|
-
amsdal/fixtures/manager.cpython-312-darwin.so,sha256=
|
244
|
-
amsdal/services/__init__.cpython-312-darwin.so,sha256=
|
238
|
+
amsdal/fixtures/manager.cpython-312-darwin.so,sha256=6lTnGBtYaRJ704B_otg84AwqtD295GuXlJSBdPbncU4,655648
|
239
|
+
amsdal/services/__init__.cpython-312-darwin.so,sha256=_uFE6PLk_yZ_TyZ1EWe8_OQ_DIcSvZzJLcHHn-WU7H4,120736
|
245
240
|
amsdal/services/transaction_execution.pyi,sha256=TwCuurOoqSHgNu9GCYYZPSpGjxXssF2eNygQ5KVwAZM,4374
|
246
|
-
amsdal/services/transaction_execution.cpython-312-darwin.so,sha256
|
241
|
+
amsdal/services/transaction_execution.cpython-312-darwin.so,sha256=XsbmsMDaDVhJC7nN6ObGjls-LzqfvgNPAvH709qFERQ,435648
|
247
242
|
amsdal/services/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
243
|
+
amsdal-0.5.14.dist-info/RECORD,,
|
244
|
+
amsdal-0.5.14.dist-info/WHEEL,sha256=_N1vyLgwJ10g4JxFsp-IfU42zGJgf-DUqwfdbV1YvEM,115
|
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
|