amsdal 0.4.10__cp311-cp311-macosx_10_9_universal2.whl → 0.4.12__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/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/schemas/mixins/check_dependencies_mixin.py +15 -5
- amsdal/schemas/mixins/check_dependencies_mixin.pyi +5 -2
- amsdal/services/__init__.cpython-311-darwin.so +0 -0
- amsdal/services/transaction_execution.cpython-311-darwin.so +0 -0
- amsdal/services/transaction_execution.pyi +1 -0
- {amsdal-0.4.10.dist-info → amsdal-0.4.12.dist-info}/METADATA +1 -1
- {amsdal-0.4.10.dist-info → amsdal-0.4.12.dist-info}/RECORD +57 -57
- {amsdal-0.4.10.dist-info → amsdal-0.4.12.dist-info}/WHEEL +1 -1
- {amsdal-0.4.10.dist-info → amsdal-0.4.12.dist-info}/licenses/LICENSE.txt +0 -0
- {amsdal-0.4.10.dist-info → amsdal-0.4.12.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
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -78,8 +78,8 @@ class CheckDependenciesMixin:
|
|
78
78
|
exc_msg = f'Class {_dependency} ({source}) is undefined! This class is set as dependency for {_schema.title}' # noqa: E501
|
79
79
|
raise AmsdalValidationError(exc_msg)
|
80
80
|
|
81
|
-
@
|
82
|
-
def get_dependency_type_names(schema: ObjectSchema) -> set[str]:
|
81
|
+
@classmethod
|
82
|
+
def get_dependency_type_names(cls, schema: ObjectSchema) -> set[str]:
|
83
83
|
"""
|
84
84
|
Returns a set of dependency type names for the given schema.
|
85
85
|
|
@@ -97,19 +97,29 @@ class CheckDependenciesMixin:
|
|
97
97
|
}
|
98
98
|
|
99
99
|
for _property in schema.properties.values() if schema.properties else []:
|
100
|
+
if cls._is_enum(_property):
|
101
|
+
continue
|
102
|
+
|
100
103
|
_dependencies.add(_property.type)
|
101
104
|
|
102
105
|
if _property.type == CoreTypes.ARRAY and isinstance(_property.items, TypeData):
|
103
|
-
|
106
|
+
if not cls._is_enum(_property.items):
|
107
|
+
_dependencies.add(_property.items.type)
|
104
108
|
elif _property.type == CoreTypes.DICTIONARY:
|
105
109
|
if isinstance(_property.items, LegacyDictSchema):
|
106
110
|
_dependencies.add(_property.items.key_type)
|
107
111
|
_dependencies.add(_property.items.value_type)
|
108
112
|
elif isinstance(_property.items, DictSchema):
|
109
|
-
|
110
|
-
|
113
|
+
if not cls._is_enum(_property.items.key):
|
114
|
+
_dependencies.add(_property.items.key.type)
|
115
|
+
if not cls._is_enum(_property.items.value):
|
116
|
+
_dependencies.add(_property.items.value.type)
|
111
117
|
|
112
118
|
# remove self reference
|
113
119
|
_dependencies.discard(schema.title)
|
114
120
|
|
115
121
|
return _dependencies
|
122
|
+
|
123
|
+
@classmethod
|
124
|
+
def _is_enum(cls, _type: TypeData) -> bool:
|
125
|
+
return bool(hasattr(_type, 'enum') and _type.enum and _type.options)
|
@@ -1,3 +1,4 @@
|
|
1
|
+
from amsdal_utils.models.data_models.core import TypeData
|
1
2
|
from amsdal_utils.schemas.schema import ObjectSchema as ObjectSchema
|
2
3
|
|
3
4
|
class CheckDependenciesMixin:
|
@@ -26,8 +27,8 @@ class CheckDependenciesMixin:
|
|
26
27
|
Returns:
|
27
28
|
None
|
28
29
|
"""
|
29
|
-
@
|
30
|
-
def get_dependency_type_names(schema: ObjectSchema) -> set[str]:
|
30
|
+
@classmethod
|
31
|
+
def get_dependency_type_names(cls, schema: ObjectSchema) -> set[str]:
|
31
32
|
"""
|
32
33
|
Returns a set of dependency type names for the given schema.
|
33
34
|
|
@@ -40,3 +41,5 @@ class CheckDependenciesMixin:
|
|
40
41
|
Returns:
|
41
42
|
set[str]: A set of dependency type names for the given schema.
|
42
43
|
"""
|
44
|
+
@classmethod
|
45
|
+
def _is_enum(cls, _type: TypeData) -> bool: ...
|
Binary file
|
Binary file
|
@@ -22,6 +22,7 @@ def is_transaction(statement: ast.AST) -> bool:
|
|
22
22
|
Returns:
|
23
23
|
bool: True if the statement is a transaction function, False otherwise.
|
24
24
|
"""
|
25
|
+
def annotation_is_model(annotation: Any) -> bool: ...
|
25
26
|
|
26
27
|
class TransactionExecutionService(metaclass=Singleton):
|
27
28
|
"""
|
@@ -1,9 +1,9 @@
|
|
1
1
|
amsdal/manager.pyi,sha256=AtMObu3V45-TXD21yFqANVRVDvQ3uyTXz-e2CsaDEJg,9307
|
2
2
|
amsdal/__init__.pyi,sha256=4FIq7rQKQXoDNIzrDxtklKrbPcE2qqKU8W0jp8Mld6Q,741
|
3
3
|
amsdal/__init__.py,sha256=eg_kMNcJSTvb8Q32AstCARJURBhrlIVmE12Dgq0nOUk,742
|
4
|
-
amsdal/manager.cpython-311-darwin.so,sha256=
|
4
|
+
amsdal/manager.cpython-311-darwin.so,sha256=JBI41Ag7GtctsY9UBAoSkTi0qaGRqNHUztK-lih2jZU,518288
|
5
5
|
amsdal/Third-Party Materials - AMSDAL Dependencies - License Notices.md,sha256=3YRsqickIvSW7EmjlC-yk5h-YW_GMzAz7wsT9ZPIiaM,74780
|
6
|
-
amsdal/__about__.py,sha256=
|
6
|
+
amsdal/__about__.py,sha256=gYTrUkWirZpWE2ZgeVQtuizy8s0aSITCM0NkS3m3Xdw,125
|
7
7
|
amsdal/errors.pyi,sha256=mcuGsQMWaIUmC9GJDIkf99dQMMsCfBy6OI_UB3NSNmc,597
|
8
8
|
amsdal/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
9
9
|
amsdal/errors.py,sha256=pZZKIklaDkh8jdFSAfX81TbiylvbaE70nttRjTcTSBk,616
|
@@ -14,8 +14,8 @@ amsdal/context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
14
|
amsdal/context/manager.py,sha256=CKGY75P2y-TCnZvK5p9NJsDgHo8KXHSE0Eg5AGRjnfk,1850
|
15
15
|
amsdal/mixins/class_versions_mixin.pyi,sha256=oSXjkTsN35d-3YgCckclhk7xRkljKHLYtN8a8gJgj2o,548
|
16
16
|
amsdal/mixins/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
17
|
-
amsdal/mixins/__init__.cpython-311-darwin.so,sha256=
|
18
|
-
amsdal/mixins/class_versions_mixin.cpython-311-darwin.so,sha256=
|
17
|
+
amsdal/mixins/__init__.cpython-311-darwin.so,sha256=8wmON-KS4k8zvDBE4Mw4A06v5EYCogkLazLvaooScdI,120656
|
18
|
+
amsdal/mixins/class_versions_mixin.cpython-311-darwin.so,sha256=CM-lnsw331dgt-mZtew009n3SKDKX0XlW6tvDj2Geu4,180576
|
19
19
|
amsdal/utils/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
20
20
|
amsdal/utils/contrib_paths.py,sha256=9BpNegbPofuvaQ4bE4E5cO4IV415ZZJkTqSLHUruJ3k,787
|
21
21
|
amsdal/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -52,7 +52,7 @@ amsdal/models/core/class_object.py,sha256=H9os4vZaVAcIQiXyates9PC4BKpXQKtg13sDzG
|
|
52
52
|
amsdal/models/core/file.pyi,sha256=RZTKCfjQ4fXtwz3E1xtgDsViaB_IwGtX2icDQtw-_kk,3460
|
53
53
|
amsdal/contrib/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
54
54
|
amsdal/contrib/app_config.pyi,sha256=j3MYfBcn9MzhTagEczGWfVH9N5jrfiKmUhxZMoakojw,149
|
55
|
-
amsdal/contrib/__init__.cpython-311-darwin.so,sha256=
|
55
|
+
amsdal/contrib/__init__.cpython-311-darwin.so,sha256=hR2YBoPJZIEjpAnxKcsrlsOepon6LZXIuzRJd7le4GM,120656
|
56
56
|
amsdal/contrib/app_config.py,sha256=RT3RAEE49XtzuFTXYNVuaqU9V4YIl0ZWZijtXgV-SC4,131
|
57
57
|
amsdal/contrib/auth/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
58
58
|
amsdal/contrib/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -125,7 +125,7 @@ amsdal/schemas/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
125
125
|
amsdal/schemas/repository.pyi,sha256=e6YUXO248WmhWkkXWt828JrFzIJ9alTPqjXqbktjeWw,1443
|
126
126
|
amsdal/schemas/interfaces.pyi,sha256=CSYdZsjj6j7m8YvnQ-iFlBV4CYrGTs_Yvan1VMpm_Ag,719
|
127
127
|
amsdal/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
128
|
-
amsdal/schemas/manager.cpython-311-darwin.so,sha256=
|
128
|
+
amsdal/schemas/manager.cpython-311-darwin.so,sha256=pBz-cZQ2lNZDbWldzIZbZ27ALKbo-I6ppkK1jWu5JO4,120656
|
129
129
|
amsdal/schemas/utils.pyi,sha256=ajyhB6MMxiiRDeCbVjp6wsbLr8s5a0d_rbXMVX4D50Y,425
|
130
130
|
amsdal/schemas/utils.py,sha256=t8k7QYYR6SsCPpBhp7s585eSYKVIF895EKRMK1w1y1Q,492
|
131
131
|
amsdal/schemas/repository.py,sha256=PbskgDr8JMabQm2uf8Kfj5bBSPlPkx4cDGXn-jfIsPM,3249
|
@@ -159,9 +159,9 @@ amsdal/schemas/core/class_object/properties/display_name.py,sha256=F2Ox-MJa8EndM
|
|
159
159
|
amsdal/schemas/mixins/verify_schemas_mixin.py,sha256=K-LMXgtNqNi7G79_qZ-GrmVnhqofvBrqda9UxsVBX34,4055
|
160
160
|
amsdal/schemas/mixins/verify_schemas_mixin.pyi,sha256=j51Nn8xTek3gQYIvUsezjVBBgVs54AkQb2gy1JFTW_A,1871
|
161
161
|
amsdal/schemas/mixins/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
162
|
-
amsdal/schemas/mixins/check_dependencies_mixin.pyi,sha256=
|
162
|
+
amsdal/schemas/mixins/check_dependencies_mixin.pyi,sha256=xbuov90jhPqYe1iRQEkWC4GIoMhlFdPp0Tis5X69mzY,2018
|
163
163
|
amsdal/schemas/mixins/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
164
|
-
amsdal/schemas/mixins/check_dependencies_mixin.py,sha256=
|
164
|
+
amsdal/schemas/mixins/check_dependencies_mixin.py,sha256=M3Wi1g4F9pbEEpOUlXUhCnvh5CyObhRlij0AecTTbJc,5082
|
165
165
|
amsdal/queryset/__init__.pyi,sha256=U8YdXkB_drnE4aX54kg7B8my9fyPg-pwsVct6QfM5Bc,545
|
166
166
|
amsdal/queryset/__init__.py,sha256=CzNaFx6yHvePtd3JY1ZGF3QLfE-e_ll5iSnaCVWdKHI,676
|
167
167
|
amsdal/__migrations__/0001_datetime_type.py,sha256=4nBz3CkcOEB_TX7TdlFKVgvzH4UrD3yOXwoAGsUq9YY,601
|
@@ -176,94 +176,94 @@ amsdal/configs/constants.py,sha256=faghdS6r3on1WKrp782WmgONd1fMf4X73LJzAwMO1po,9
|
|
176
176
|
amsdal/configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
177
177
|
amsdal/configs/main.pyi,sha256=JjjrXf4ZPMG--f9Lw9pKdQr7NoOF9qrF_oUGDDNt8QA,6836
|
178
178
|
amsdal/configs/main.py,sha256=lRO_iTMlmlosTAHZrVg3iXZVuKj45lEb5LrPln3wixM,9567
|
179
|
-
amsdal/cloud/client.cpython-311-darwin.so,sha256=
|
179
|
+
amsdal/cloud/client.cpython-311-darwin.so,sha256=pTvv4bIXh-PLW5RhRNaJ4v52EoQpR1PhAhpOKRbrrSg,216208
|
180
180
|
amsdal/cloud/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
181
181
|
amsdal/cloud/constants.pyi,sha256=0qWxDqjQkETwUtgco5kV83fPHhQ4jRdJe_YPPNTnSIY,327
|
182
182
|
amsdal/cloud/client.pyi,sha256=3VjPRtJrbUU29u_wswETrMorN0iUb4GFAXmMc73bUf4,2247
|
183
|
-
amsdal/cloud/enums.cpython-311-darwin.so,sha256=
|
184
|
-
amsdal/cloud/constants.cpython-311-darwin.so,sha256=
|
185
|
-
amsdal/cloud/__init__.cpython-311-darwin.so,sha256=
|
183
|
+
amsdal/cloud/enums.cpython-311-darwin.so,sha256=TaxP6pPGHzMgG_AHiVOZMbuu5LCAAdGEJ4utkySMVQc,158064
|
184
|
+
amsdal/cloud/constants.cpython-311-darwin.so,sha256=5l69H4uhf1Nyck8k77D7bVVOBdjnwFt6Gxh7PHG3-0E,158688
|
185
|
+
amsdal/cloud/__init__.cpython-311-darwin.so,sha256=b25k0BNfFvF-EeFcUo_REG1g4Otn70DnDHzPE7NjPyk,120656
|
186
186
|
amsdal/cloud/enums.pyi,sha256=mX5O1FPc3aNnN108aOJT66Nn9KlcyrRTj9B23sFdDfw,1757
|
187
|
-
amsdal/cloud/models/base.cpython-311-darwin.so,sha256=
|
187
|
+
amsdal/cloud/models/base.cpython-311-darwin.so,sha256=ZcsCgv0BoBgSGY6GH2_TCTZ1chgei_V9ZAogy_xVCnM,211632
|
188
188
|
amsdal/cloud/models/base.pyi,sha256=avwAj4uS4NHrXvmSKBxokFKFWSaBPXtJPl1Ig1CD6sg,7727
|
189
189
|
amsdal/cloud/models/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
190
|
-
amsdal/cloud/models/__init__.cpython-311-darwin.so,sha256=
|
190
|
+
amsdal/cloud/models/__init__.cpython-311-darwin.so,sha256=jb98Hv26H1u44rvleUpeQ7WrwkxVQQtsoMOnB7iQ4A4,120688
|
191
191
|
amsdal/cloud/services/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
192
|
-
amsdal/cloud/services/__init__.cpython-311-darwin.so,sha256=
|
193
|
-
amsdal/cloud/services/auth/base.cpython-311-darwin.so,sha256=
|
192
|
+
amsdal/cloud/services/__init__.cpython-311-darwin.so,sha256=pKD2VY9VrA3OzylI6m39qzxz46gongmPmW09lnY4SO4,120688
|
193
|
+
amsdal/cloud/services/auth/base.cpython-311-darwin.so,sha256=svSQOVYK_e9ihHznxiioxUs_j_EAMETmvz9f-duaID8,163104
|
194
194
|
amsdal/cloud/services/auth/base.pyi,sha256=oj_tgwWhf02g-FzCLcNOEZjYDxfcrrDssING4jsUMb8,167
|
195
195
|
amsdal/cloud/services/auth/manager.pyi,sha256=AhKllHgraztP3JSKta9MmQjTNRAbQbwqZg2EpQZSwhI,1243
|
196
196
|
amsdal/cloud/services/auth/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
197
197
|
amsdal/cloud/services/auth/signup_service.pyi,sha256=SfSN1tLIwrzGi9JbMgoLuKKH1u5uoh_MOFJ4n_NHcBY,1145
|
198
|
-
amsdal/cloud/services/auth/token.cpython-311-darwin.so,sha256=
|
199
|
-
amsdal/cloud/services/auth/manager.cpython-311-darwin.so,sha256=
|
198
|
+
amsdal/cloud/services/auth/token.cpython-311-darwin.so,sha256=ZDSGP6gpQW17oQGl6oByLPKWql4Vq9lCRtlrPRogiCs,251536
|
199
|
+
amsdal/cloud/services/auth/manager.cpython-311-darwin.so,sha256=1yfRL0n-xhwWHwru0LqlIa5CsQgd5yaCmVxDLBF6_W4,214128
|
200
200
|
amsdal/cloud/services/auth/token.pyi,sha256=v9QDleIytAZGlYHHaO-W1fTr5d2OLGWsh5g6HDeuk90,1042
|
201
|
-
amsdal/cloud/services/auth/signup_service.cpython-311-darwin.so,sha256=
|
202
|
-
amsdal/cloud/services/auth/__init__.cpython-311-darwin.so,sha256=
|
203
|
-
amsdal/cloud/services/auth/credentials.cpython-311-darwin.so,sha256=
|
201
|
+
amsdal/cloud/services/auth/signup_service.cpython-311-darwin.so,sha256=FMqjuubE2ztl8KWupXmhQldnC8ocOifSVYWeSvF0DCU,216216
|
202
|
+
amsdal/cloud/services/auth/__init__.cpython-311-darwin.so,sha256=C3JbBWAe6WNnhSYaOxi07ScR_kD36CVjT1QZnxKfVA0,120704
|
203
|
+
amsdal/cloud/services/auth/credentials.cpython-311-darwin.so,sha256=gFwGdzH_dk5wbAzMbhRVh-DZ8sm55lAOL3e6Hh1fv9Y,253224
|
204
204
|
amsdal/cloud/services/auth/credentials.pyi,sha256=ghp3r8rDq5l5xxx7UKFkCASyQJbWChkF2PQDJrQmeW4,1417
|
205
|
-
amsdal/cloud/services/actions/get_basic_auth_credentials.cpython-311-darwin.so,sha256=
|
206
|
-
amsdal/cloud/services/actions/base.cpython-311-darwin.so,sha256=
|
205
|
+
amsdal/cloud/services/actions/get_basic_auth_credentials.cpython-311-darwin.so,sha256=HjwODBa0CgEA1Mn69PIlu_VdnJX4kROcLeaXk14vvao,181112
|
206
|
+
amsdal/cloud/services/actions/base.cpython-311-darwin.so,sha256=eMLZ3MjOvLTXlzAp7l4VtA5L6zBn8HL-ovXzX9pDWn8,323552
|
207
207
|
amsdal/cloud/services/actions/list_envs.pyi,sha256=7PylFRd1Jb6nkTt8q8iy27rLj-Q5qcwfqW02_OlfDZs,878
|
208
|
-
amsdal/cloud/services/actions/delete_basic_auth.cpython-311-darwin.so,sha256=
|
208
|
+
amsdal/cloud/services/actions/delete_basic_auth.cpython-311-darwin.so,sha256=IpWigsMh9Nwr-9n3UYgHLp37lGip557pgrU7zv3MFcY,180744
|
209
209
|
amsdal/cloud/services/actions/base.pyi,sha256=J98igdu3E9-mled_kbxerja4DTLM0OAW8cHtsVOQ_fc,5880
|
210
|
-
amsdal/cloud/services/actions/add_allowlist_ip.cpython-311-darwin.so,sha256=
|
211
|
-
amsdal/cloud/services/actions/signup_action.cpython-311-darwin.so,sha256=
|
210
|
+
amsdal/cloud/services/actions/add_allowlist_ip.cpython-311-darwin.so,sha256=x9ip-q0bI9UiIyhAzJVEjD5Z0W7Q6DvkhiffmN2KEP8,180776
|
211
|
+
amsdal/cloud/services/actions/signup_action.cpython-311-darwin.so,sha256=H25ZcME_feebjUeuTJAl6ubFGrBMpIZVtCqy-BghHeA,180584
|
212
212
|
amsdal/cloud/services/actions/manager.pyi,sha256=Tal5u1nMhi7MeuJ9lBIPYPLgKoIB6DUXPU2AokrusHI,15441
|
213
|
-
amsdal/cloud/services/actions/delete_dependency.cpython-311-darwin.so,sha256=
|
214
|
-
amsdal/cloud/services/actions/expose_db.cpython-311-darwin.so,sha256=
|
213
|
+
amsdal/cloud/services/actions/delete_dependency.cpython-311-darwin.so,sha256=ZG0QCDN_fxv8tYelR0gwoueNnbVuXEeKeuJyTyP3J20,180760
|
214
|
+
amsdal/cloud/services/actions/expose_db.cpython-311-darwin.so,sha256=sRA9EPOGoBPQ5x_g7PL0mt9e_ch2kq9sLRfYkF60rTA,181184
|
215
215
|
amsdal/cloud/services/actions/delete_allowlist_ip.pyi,sha256=W5zVq7YKL_OVigZl58bqau3rvAzsLdItAZaqDO1HGJw,933
|
216
|
-
amsdal/cloud/services/actions/add_secret.cpython-311-darwin.so,sha256=
|
216
|
+
amsdal/cloud/services/actions/add_secret.cpython-311-darwin.so,sha256=CTxgK8KsIfPjwvZOzqxF5QEdlBdRETzjyn17oRJVxeQ,180632
|
217
217
|
amsdal/cloud/services/actions/add_basic_auth.pyi,sha256=4tyTci_k_xlJrkBd71sY0ivRr8alo3Bq0KCkjIfacu4,1106
|
218
218
|
amsdal/cloud/services/actions/list_secrets.pyi,sha256=vF-EikAy7WHdkvkGikD_oDFDIgE1GEr8nxAQKYAs9rY,1079
|
219
|
-
amsdal/cloud/services/actions/list_secrets.cpython-311-darwin.so,sha256=
|
219
|
+
amsdal/cloud/services/actions/list_secrets.cpython-311-darwin.so,sha256=yNMycRLpdGvr50giJlXDf1zOwBRksostRoV1hK6_Kxs,181304
|
220
220
|
amsdal/cloud/services/actions/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
221
221
|
amsdal/cloud/services/actions/get_basic_auth_credentials.pyi,sha256=1FU8BtDRaGTx8fSqdhmotQK-rR7gKr4Qav_E-T_23rc,1071
|
222
|
-
amsdal/cloud/services/actions/list_deploys.cpython-311-darwin.so,sha256=
|
223
|
-
amsdal/cloud/services/actions/list_envs.cpython-311-darwin.so,sha256=
|
224
|
-
amsdal/cloud/services/actions/list_dependencies.cpython-311-darwin.so,sha256=
|
225
|
-
amsdal/cloud/services/actions/destroy_deploy.cpython-311-darwin.so,sha256=
|
226
|
-
amsdal/cloud/services/actions/create_session.cpython-311-darwin.so,sha256=
|
227
|
-
amsdal/cloud/services/actions/create_deploy.cpython-311-darwin.so,sha256=
|
222
|
+
amsdal/cloud/services/actions/list_deploys.cpython-311-darwin.so,sha256=XoOO2xvi6Kk4oYNc5W1j40znyV58u7eOs4fY5p6QmSg,181080
|
223
|
+
amsdal/cloud/services/actions/list_envs.cpython-311-darwin.so,sha256=qaqjcDe8KnzjmlkpI2e7kS3Mw__Y_gLDbLehKyt9_zM,180752
|
224
|
+
amsdal/cloud/services/actions/list_dependencies.cpython-311-darwin.so,sha256=3OP7OIgkA77r4SByHeZslkWHNwwYpa3oxMd7XfoY1i4,181304
|
225
|
+
amsdal/cloud/services/actions/destroy_deploy.cpython-311-darwin.so,sha256=r2qV6AsydgR4v-z509PjUGdOM7nl2xvMHlndOSsiH5Q,180536
|
226
|
+
amsdal/cloud/services/actions/create_session.cpython-311-darwin.so,sha256=9nNfVWhkMcXm8BZlQstw4PHTruAYEQWYPxYrrcgJRk8,180984
|
227
|
+
amsdal/cloud/services/actions/create_deploy.cpython-311-darwin.so,sha256=8VQLhBkXFKeXTAqxS8-SkTEpo3bxWaxgaVOPIXGUzBw,269240
|
228
228
|
amsdal/cloud/services/actions/delete_secret.pyi,sha256=gZi17MivNYBIfdPU2GjoJ2I2lWiefdvLuXTcxDss1P4,953
|
229
229
|
amsdal/cloud/services/actions/delete_env.pyi,sha256=uyBHMOp_AprbpSfv6y6QfYW5FvK1-8jb2NxK_FmuPHE,969
|
230
|
-
amsdal/cloud/services/actions/manager.cpython-311-darwin.so,sha256
|
230
|
+
amsdal/cloud/services/actions/manager.cpython-311-darwin.so,sha256=Du_wE1l_lRfBwm0I0fHF-dnv_sFeuVk_K3Y26IlVBnw,371312
|
231
231
|
amsdal/cloud/services/actions/delete_dependency.pyi,sha256=VuT1w2qOpjR7I9mBi9tPXMXDPEeU8tG0vi9TXV82Frg,1021
|
232
|
-
amsdal/cloud/services/actions/add_dependency.cpython-311-darwin.so,sha256=
|
232
|
+
amsdal/cloud/services/actions/add_dependency.cpython-311-darwin.so,sha256=DIdI6HoqlInXEhvsSmOv7mHvh1bYm2csrleZtjwR48Q,180712
|
233
233
|
amsdal/cloud/services/actions/create_session.pyi,sha256=KUvx_vkhLQfGp_DM1ZvgszyT_G8LB28KoI1XpjNR7YY,674
|
234
|
-
amsdal/cloud/services/actions/delete_allowlist_ip.cpython-311-darwin.so,sha256=
|
234
|
+
amsdal/cloud/services/actions/delete_allowlist_ip.cpython-311-darwin.so,sha256=upO-FuTSh8TjKdbwefPI6-kvrWZMctlSLhv7tX3uSzA,180832
|
235
235
|
amsdal/cloud/services/actions/list_deploys.pyi,sha256=Q8da3PDPxICLP2V7L-A7p-9_a3qNKrARqgHhu0CA0nA,724
|
236
|
-
amsdal/cloud/services/actions/add_basic_auth.cpython-311-darwin.so,sha256=
|
236
|
+
amsdal/cloud/services/actions/add_basic_auth.cpython-311-darwin.so,sha256=gfzn4gnlZyOdrkY0vTTdHK_HzOcCTRpF-if3B8z7R6I,181112
|
237
237
|
amsdal/cloud/services/actions/add_allowlist_ip.pyi,sha256=gB2NQVz8NcSsgXYiym2Suh1RPI8eHKIAFE13RmeTHkA,883
|
238
238
|
amsdal/cloud/services/actions/get_monitoring_info.pyi,sha256=uvtBgWvtWf-Mq4vZq_q-q8Z8hJh5voAY61KRJQPGWFk,1045
|
239
239
|
amsdal/cloud/services/actions/add_dependency.pyi,sha256=uVEIhvDa4GRS0Lg6TkcYdOwezKcxrzL7A_Lh8BxcAeU,837
|
240
|
-
amsdal/cloud/services/actions/get_monitoring_info.cpython-311-darwin.so,sha256
|
241
|
-
amsdal/cloud/services/actions/update_deploy.cpython-311-darwin.so,sha256=
|
240
|
+
amsdal/cloud/services/actions/get_monitoring_info.cpython-311-darwin.so,sha256=-VuXyMVkqakzDaiC_YQr9g_LUgRl50LQQVvLdYmy4AA,180976
|
241
|
+
amsdal/cloud/services/actions/update_deploy.cpython-311-darwin.so,sha256=8u3OXO3XW2zTByBzTkpFHyyT2zgM-gyvmxIxpfVYo8o,181064
|
242
242
|
amsdal/cloud/services/actions/signup_action.pyi,sha256=VswHjhxw2eHYqXwc---F2LpwlD7GlIuL_Ev2DmA96_4,808
|
243
|
-
amsdal/cloud/services/actions/create_env.cpython-311-darwin.so,sha256=
|
243
|
+
amsdal/cloud/services/actions/create_env.cpython-311-darwin.so,sha256=9yfpazALnK5ni-lo3v2tP1-0pUVJISMXQdRQXAKwUzU,180824
|
244
244
|
amsdal/cloud/services/actions/add_secret.pyi,sha256=H6rS3PRwiktMfnoY8qwtmTplN9gG2yZgQKKCX8S8Q6c,890
|
245
|
-
amsdal/cloud/services/actions/delete_env.cpython-311-darwin.so,sha256=
|
246
|
-
amsdal/cloud/services/actions/__init__.cpython-311-darwin.so,sha256=
|
245
|
+
amsdal/cloud/services/actions/delete_env.cpython-311-darwin.so,sha256=PV7aQMgxhrtUBZPUsmD86b89WHtJg7eXqm73OKeGGfE,180824
|
246
|
+
amsdal/cloud/services/actions/__init__.cpython-311-darwin.so,sha256=KliNkxYY1AAq31FKP6qjN6zjExuYG8zn4Rm99dXmeIo,120720
|
247
247
|
amsdal/cloud/services/actions/destroy_deploy.pyi,sha256=VNb0J71B3gk4SVJwxlB9XTj4vCG-37ucojcGzsvKwe8,609
|
248
248
|
amsdal/cloud/services/actions/update_deploy.pyi,sha256=alM1nquQZ5O8PYlDIqDdSuiyuc_aj9fkd01bL9KANEI,766
|
249
249
|
amsdal/cloud/services/actions/create_deploy.pyi,sha256=VmVMYJQmjPZce6Cm8sMQ27HomhfdzZc_0X57ZWZmCt0,1988
|
250
250
|
amsdal/cloud/services/actions/delete_basic_auth.pyi,sha256=-I1YoOMFi0LaRsZL2JBGH_sg18PZoUL1PP9YetboDJA,915
|
251
251
|
amsdal/cloud/services/actions/list_dependencies.pyi,sha256=C37VamSyRT-uNLuwQJ0OrHKavs8Jt0bfPbAsE5BQEvE,1035
|
252
252
|
amsdal/cloud/services/actions/create_env.pyi,sha256=ITvyLrvwt6H36JNYURHZ_PbmGZquc5Fm07dVo7H6ll0,910
|
253
|
-
amsdal/cloud/services/actions/delete_secret.cpython-311-darwin.so,sha256=
|
253
|
+
amsdal/cloud/services/actions/delete_secret.cpython-311-darwin.so,sha256=DddAeUxUGFGbSz75KY1-FVZ94RTIpVdBLnPAsWfqMOc,180680
|
254
254
|
amsdal/cloud/services/actions/expose_db.pyi,sha256=uk2zuz1SiXwjDFxtKF-yyWGNEONOgfm7EcrEyVT0cMM,1049
|
255
255
|
amsdal/fixtures/manager.pyi,sha256=fMl3nNa2A9jiZanZ_7tnUGaPigk_03KMmdcUGPoX9kI,7077
|
256
256
|
amsdal/fixtures/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
257
|
-
amsdal/fixtures/manager.cpython-311-darwin.so,sha256=
|
257
|
+
amsdal/fixtures/manager.cpython-311-darwin.so,sha256=B9DfYbYiaRHmF9w_xwrJbDSkzdQ38xplIIqDqDgGpdo,622944
|
258
258
|
amsdal/fixtures/utils.pyi,sha256=OnFn7opJscOydj-rlcXQIdDodlIKGCt79TRy5zAUkqg,457
|
259
|
-
amsdal/fixtures/utils.cpython-311-darwin.so,sha256=
|
260
|
-
amsdal/fixtures/__init__.cpython-311-darwin.so,sha256=
|
261
|
-
amsdal/services/transaction_execution.pyi,sha256=
|
259
|
+
amsdal/fixtures/utils.cpython-311-darwin.so,sha256=sAihggHoTuWboTDqpkETeNt93XaW9H_CoaFU0OfFvQ0,306720
|
260
|
+
amsdal/fixtures/__init__.cpython-311-darwin.so,sha256=SUbEUGVEPegTA5KrG7JNNTcxR2Ng0cL5Wb0m1BoJacQ,120672
|
261
|
+
amsdal/services/transaction_execution.pyi,sha256=TwCuurOoqSHgNu9GCYYZPSpGjxXssF2eNygQ5KVwAZM,4374
|
262
262
|
amsdal/services/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
263
|
-
amsdal/services/__init__.cpython-311-darwin.so,sha256=
|
264
|
-
amsdal/services/transaction_execution.cpython-311-darwin.so,sha256=
|
265
|
-
amsdal-0.4.
|
266
|
-
amsdal-0.4.
|
267
|
-
amsdal-0.4.
|
268
|
-
amsdal-0.4.
|
269
|
-
amsdal-0.4.
|
263
|
+
amsdal/services/__init__.cpython-311-darwin.so,sha256=2qzL2YwjVaTnUcR-XcbXBlCBQ3i6x5Gsr4BpZCt2fwE,120672
|
264
|
+
amsdal/services/transaction_execution.cpython-311-darwin.so,sha256=OoqUYnNwxf4Z8SW23Em81qFNGlWOi11sjcLY97f65ss,435472
|
265
|
+
amsdal-0.4.12.dist-info/RECORD,,
|
266
|
+
amsdal-0.4.12.dist-info/WHEEL,sha256=K35cO9veJgM7rcbvmUlNI0Barc1JY1wlKyFrMAjmMKc,114
|
267
|
+
amsdal-0.4.12.dist-info/top_level.txt,sha256=VPQLnOP3mf7q0JuQ_vPZYQyPNGKd_uc6ouz-hZRkhSk,7
|
268
|
+
amsdal-0.4.12.dist-info/METADATA,sha256=sMkuhF9jQ8xDWq82LAmBzJTPBw0hN3jLEVZg4lS_xu4,57438
|
269
|
+
amsdal-0.4.12.dist-info/licenses/LICENSE.txt,sha256=hG-541PFYfNJi9WRZi_hno91UyqNg7YLK8LR3vLblZA,27355
|
File without changes
|
File without changes
|