amsdal 0.1.26__cp311-cp311-macosx_10_9_universal2.whl → 0.1.27__cp311-cp311-macosx_10_9_universal2.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of amsdal might be problematic. Click here for more details.
- 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/client.pyi +46 -2
- amsdal/cloud/constants.cpython-311-darwin.so +0 -0
- amsdal/cloud/enums.cpython-311-darwin.so +0 -0
- amsdal/cloud/enums.pyi +46 -0
- amsdal/cloud/models/__init__.cpython-311-darwin.so +0 -0
- amsdal/cloud/models/base.cpython-311-darwin.so +0 -0
- amsdal/cloud/models/base.pyi +156 -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_allowlist_ip.pyi +16 -1
- amsdal/cloud/services/actions/add_basic_auth.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/add_basic_auth.pyi +17 -1
- amsdal/cloud/services/actions/add_dependency.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/add_dependency.pyi +16 -1
- amsdal/cloud/services/actions/add_secret.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/add_secret.pyi +17 -1
- amsdal/cloud/services/actions/base.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/base.pyi +71 -3
- amsdal/cloud/services/actions/create_deploy.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/create_deploy.pyi +33 -3
- amsdal/cloud/services/actions/create_env.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/create_env.pyi +15 -1
- amsdal/cloud/services/actions/create_session.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/create_session.pyi +13 -1
- amsdal/cloud/services/actions/delete_allowlist_ip.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/delete_allowlist_ip.pyi +16 -1
- amsdal/cloud/services/actions/delete_basic_auth.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/delete_basic_auth.pyi +17 -1
- amsdal/cloud/services/actions/delete_dependency.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/delete_dependency.pyi +18 -1
- amsdal/cloud/services/actions/delete_env.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/delete_env.pyi +17 -1
- amsdal/cloud/services/actions/delete_secret.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/delete_secret.pyi +18 -1
- amsdal/cloud/services/actions/destroy_deploy.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/destroy_deploy.pyi +15 -1
- amsdal/cloud/services/actions/expose_db.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/expose_db.pyi +18 -1
- amsdal/cloud/services/actions/get_basic_auth_credentials.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/get_basic_auth_credentials.pyi +17 -1
- amsdal/cloud/services/actions/get_monitoring_info.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/get_monitoring_info.pyi +17 -1
- amsdal/cloud/services/actions/list_dependencies.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/list_dependencies.pyi +17 -1
- amsdal/cloud/services/actions/list_deploys.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/list_deploys.pyi +15 -1
- amsdal/cloud/services/actions/list_envs.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/list_envs.pyi +16 -1
- amsdal/cloud/services/actions/list_secrets.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/list_secrets.pyi +18 -1
- amsdal/cloud/services/actions/manager.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/manager.pyi +254 -20
- amsdal/cloud/services/actions/signup_action.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/signup_action.pyi +16 -1
- amsdal/cloud/services/actions/update_deploy.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/actions/update_deploy.pyi +15 -1
- 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/credentials.pyi +12 -1
- amsdal/cloud/services/auth/manager.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/auth/manager.pyi +15 -1
- amsdal/cloud/services/auth/signup_service.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/auth/signup_service.pyi +16 -1
- amsdal/cloud/services/auth/token.cpython-311-darwin.so +0 -0
- amsdal/cloud/services/auth/token.pyi +15 -1
- amsdal/configs/constants.py +10 -0
- amsdal/configs/constants.pyi +11 -1
- amsdal/configs/main.py +132 -19
- amsdal/configs/main.pyi +140 -10
- amsdal/context/manager.py +39 -0
- amsdal/context/manager.pyi +41 -3
- amsdal/contrib/__init__.cpython-311-darwin.so +0 -0
- amsdal/contrib/auth/app.py +12 -0
- amsdal/contrib/auth/app.pyi +12 -1
- amsdal/contrib/auth/lifecycle/consumer.py +53 -0
- amsdal/contrib/auth/lifecycle/consumer.pyi +53 -3
- amsdal/contrib/auth/models/login_session/hooks/pre_init.py +13 -0
- amsdal/contrib/auth/models/login_session/modifiers/display_name.py +8 -0
- amsdal/contrib/auth/models/permission/modifiers/display_name.py +8 -0
- amsdal/contrib/auth/models/user/hooks/post_init.py +13 -0
- amsdal/contrib/auth/models/user/hooks/pre_create.py +6 -0
- amsdal/contrib/auth/models/user/modifiers/display_name.py +8 -0
- amsdal/contrib/auth/settings.py +15 -0
- amsdal/contrib/auth/settings.pyi +14 -0
- amsdal/contrib/frontend_configs/app.py +14 -0
- amsdal/contrib/frontend_configs/app.pyi +14 -1
- amsdal/contrib/frontend_configs/conversion/convert.py +14 -0
- amsdal/contrib/frontend_configs/conversion/convert.pyi +15 -1
- amsdal/contrib/frontend_configs/lifecycle/consumer.py +72 -0
- amsdal/contrib/frontend_configs/lifecycle/consumer.pyi +76 -5
- amsdal/contrib/frontend_configs/models/frontent_config_control_action/properties/action_validate.py +16 -0
- amsdal/contrib/frontend_configs/utils.py +12 -1
- amsdal/contrib/frontend_configs/utils.pyi +12 -1
- amsdal/fixtures/__init__.cpython-311-darwin.so +0 -0
- amsdal/fixtures/manager.cpython-311-darwin.so +0 -0
- amsdal/fixtures/manager.pyi +88 -6
- amsdal/manager.cpython-311-darwin.so +0 -0
- amsdal/manager.pyi +113 -17
- amsdal/migration/__init__.cpython-311-darwin.so +0 -0
- amsdal/migration/base_migration_schemas.cpython-311-darwin.so +0 -0
- amsdal/migration/base_migration_schemas.pyi +81 -5
- amsdal/migration/data_classes.cpython-311-darwin.so +0 -0
- amsdal/migration/data_classes.pyi +95 -1
- amsdal/migration/executors/__init__.cpython-311-darwin.so +0 -0
- amsdal/migration/executors/base.cpython-311-darwin.so +0 -0
- amsdal/migration/executors/base.pyi +74 -4
- amsdal/migration/executors/default_executor.cpython-311-darwin.so +0 -0
- amsdal/migration/executors/default_executor.pyi +75 -5
- amsdal/migration/executors/state_executor.cpython-311-darwin.so +0 -0
- amsdal/migration/executors/state_executor.pyi +68 -4
- amsdal/migration/file_migration_executor.cpython-311-darwin.so +0 -0
- amsdal/migration/file_migration_executor.pyi +34 -2
- amsdal/migration/file_migration_generator.cpython-311-darwin.so +0 -0
- amsdal/migration/file_migration_generator.pyi +100 -8
- amsdal/migration/file_migration_store.cpython-311-darwin.so +0 -0
- amsdal/migration/file_migration_store.pyi +33 -3
- amsdal/migration/file_migration_writer.cpython-311-darwin.so +0 -0
- amsdal/migration/file_migration_writer.pyi +60 -5
- amsdal/migration/migrations.cpython-311-darwin.so +0 -0
- amsdal/migration/migrations.pyi +111 -6
- amsdal/migration/migrations_loader.cpython-311-darwin.so +0 -0
- amsdal/migration/migrations_loader.pyi +17 -2
- amsdal/migration/schemas_loaders.cpython-311-darwin.so +0 -0
- amsdal/migration/schemas_loaders.pyi +14 -1
- amsdal/migration/utils.cpython-311-darwin.so +0 -0
- amsdal/migration/utils.pyi +44 -4
- amsdal/mixins/__init__.cpython-311-darwin.so +0 -0
- amsdal/mixins/build_mixin.cpython-311-darwin.so +0 -0
- amsdal/mixins/build_mixin.pyi +60 -8
- amsdal/mixins/class_versions_mixin.cpython-311-darwin.so +0 -0
- amsdal/mixins/class_versions_mixin.pyi +20 -2
- amsdal/operations/__init__.cpython-311-darwin.so +0 -0
- amsdal/operations/manager.cpython-311-darwin.so +0 -0
- amsdal/operations/manager.pyi +31 -3
- amsdal/schemas/core/class_object/properties/display_name.py +6 -0
- amsdal/schemas/core/file/hooks/pre_create.py +9 -0
- amsdal/schemas/core/file/hooks/pre_update.py +9 -0
- amsdal/schemas/core/file/properties/from_file.py +12 -0
- amsdal/schemas/core/file/properties/mimetype.py +8 -0
- amsdal/schemas/core/file/properties/to_file.py +12 -0
- amsdal/schemas/core/file/properties/validate_data.py +13 -0
- amsdal/schemas/manager.cpython-311-darwin.so +0 -0
- amsdal/schemas/manager.py +51 -0
- amsdal/schemas/manager.pyi +54 -4
- amsdal/services/__init__.cpython-311-darwin.so +0 -0
- amsdal/services/transaction_execution.cpython-311-darwin.so +0 -0
- amsdal/services/transaction_execution.pyi +52 -3
- amsdal/utils/contrib_paths.py +10 -0
- amsdal/utils/contrib_paths.pyi +11 -1
- {amsdal-0.1.26.dist-info → amsdal-0.1.27.dist-info}/METADATA +1 -1
- amsdal-0.1.27.dist-info/RECORD +257 -0
- amsdal-0.1.26.dist-info/RECORD +0 -257
- {amsdal-0.1.26.dist-info → amsdal-0.1.27.dist-info}/LICENSE.txt +0 -0
- {amsdal-0.1.26.dist-info → amsdal-0.1.27.dist-info}/WHEEL +0 -0
- {amsdal-0.1.26.dist-info → amsdal-0.1.27.dist-info}/top_level.txt +0 -0
amsdal/schemas/manager.pyi
CHANGED
|
@@ -5,11 +5,61 @@ from amsdal_utils.models.enums import SchemaTypes
|
|
|
5
5
|
from amsdal_utils.utils.singleton import Singleton
|
|
6
6
|
|
|
7
7
|
class SchemaManager(metaclass=Singleton):
|
|
8
|
+
"""
|
|
9
|
+
Manages schema operations including retrieval, invalidation, and sorting.
|
|
10
|
+
|
|
11
|
+
This class handles various schema-related operations such as invalidating user schemas,
|
|
12
|
+
retrieving schemas by name or type, and sorting schemas based on predefined rules.
|
|
13
|
+
"""
|
|
8
14
|
_schema_manager_handler: Incomplete
|
|
9
15
|
def __init__(self) -> None: ...
|
|
10
|
-
def invalidate_user_schemas(self) -> None:
|
|
11
|
-
|
|
16
|
+
def invalidate_user_schemas(self) -> None:
|
|
17
|
+
"""
|
|
18
|
+
Invalidates user schemas.
|
|
19
|
+
|
|
20
|
+
This method calls the handler to invalidate all user schemas, ensuring that any cached or outdated schemas
|
|
21
|
+
are refreshed.
|
|
22
|
+
|
|
23
|
+
Returns:
|
|
24
|
+
None
|
|
25
|
+
"""
|
|
26
|
+
def class_schemas(self) -> list[tuple[ObjectSchema, SchemaTypes]]:
|
|
27
|
+
"""
|
|
28
|
+
Returns a list of tuples containing object schemas and their types.
|
|
29
|
+
|
|
30
|
+
This method retrieves and sorts various schemas managed by the schema manager handler.
|
|
31
|
+
The schemas are categorized into types, core, user, and contrib schemas.
|
|
32
|
+
|
|
33
|
+
Returns:
|
|
34
|
+
list[tuple[ObjectSchema, SchemaTypes]]: A list of tuples where each tuple contains an object schema
|
|
35
|
+
and its corresponding type.
|
|
36
|
+
"""
|
|
12
37
|
@staticmethod
|
|
13
38
|
def _sort_key_for_schema(schema: ObjectSchema) -> int: ...
|
|
14
|
-
def get_schema_by_name(self, title: str, schema_type: SchemaTypes | None = None) -> ObjectSchema | None:
|
|
15
|
-
|
|
39
|
+
def get_schema_by_name(self, title: str, schema_type: SchemaTypes | None = None) -> ObjectSchema | None:
|
|
40
|
+
"""
|
|
41
|
+
Retrieves a schema by its title and optional type.
|
|
42
|
+
|
|
43
|
+
This method searches for a schema with the specified title and optional type
|
|
44
|
+
among the schemas managed by the schema manager handler.
|
|
45
|
+
|
|
46
|
+
Args:
|
|
47
|
+
title (str): The title of the schema to be retrieved.
|
|
48
|
+
schema_type (SchemaTypes | None, optional): The type of the schema to be retrieved. Defaults to None.
|
|
49
|
+
|
|
50
|
+
Returns:
|
|
51
|
+
ObjectSchema | None: The schema with the specified title and type, or None if not found.
|
|
52
|
+
"""
|
|
53
|
+
def get_schemas(self, schema_type: SchemaTypes | None = None) -> list[ObjectSchema]:
|
|
54
|
+
"""
|
|
55
|
+
Retrieves schemas based on the provided type.
|
|
56
|
+
|
|
57
|
+
This method returns a list of schemas filtered by the specified type. If no type is provided,
|
|
58
|
+
it returns all schemas managed by the schema manager handler.
|
|
59
|
+
|
|
60
|
+
Args:
|
|
61
|
+
schema_type (SchemaTypes | None, optional): The type of schemas to retrieve. Defaults to None.
|
|
62
|
+
|
|
63
|
+
Returns:
|
|
64
|
+
list[ObjectSchema]: A list of schemas filtered by the specified type, or all schemas if no type is provided.
|
|
65
|
+
"""
|
|
Binary file
|
|
Binary file
|
|
@@ -9,13 +9,62 @@ from typing import Any
|
|
|
9
9
|
|
|
10
10
|
logger: Incomplete
|
|
11
11
|
|
|
12
|
-
def is_transaction(statement: ast.AST) -> bool:
|
|
12
|
+
def is_transaction(statement: ast.AST) -> bool:
|
|
13
|
+
"""
|
|
14
|
+
Determines if a given AST statement is a transaction function.
|
|
15
|
+
|
|
16
|
+
This function checks if the provided AST statement is an asynchronous or synchronous function
|
|
17
|
+
definition that is decorated with the `transaction` decorator.
|
|
18
|
+
|
|
19
|
+
Args:
|
|
20
|
+
statement (ast.AST): The AST statement to check.
|
|
21
|
+
|
|
22
|
+
Returns:
|
|
23
|
+
bool: True if the statement is a transaction function, False otherwise.
|
|
24
|
+
"""
|
|
13
25
|
|
|
14
26
|
class TransactionExecutionService(metaclass=Singleton):
|
|
27
|
+
"""
|
|
28
|
+
Service for executing transactions.
|
|
29
|
+
|
|
30
|
+
This class provides methods to execute transactions, load transaction functions,
|
|
31
|
+
and handle asynchronous transactions. It ensures that transactions are executed
|
|
32
|
+
with the correct arguments and handles any necessary preprocessing of arguments.
|
|
33
|
+
"""
|
|
15
34
|
_transactions: Incomplete
|
|
16
35
|
def __init__(self) -> None: ...
|
|
17
|
-
def execute_transaction(self, transaction_name: str, args: dict[str, Any], *, load_references: bool = True) -> Any:
|
|
18
|
-
|
|
36
|
+
def execute_transaction(self, transaction_name: str, args: dict[str, Any], *, load_references: bool = True) -> Any:
|
|
37
|
+
"""
|
|
38
|
+
Executes a transaction with the given name and arguments.
|
|
39
|
+
|
|
40
|
+
This method retrieves the transaction function by its name, processes the arguments,
|
|
41
|
+
and executes the transaction. It handles both synchronous and asynchronous transactions
|
|
42
|
+
and performs necessary preprocessing of arguments, such as loading references.
|
|
43
|
+
|
|
44
|
+
Args:
|
|
45
|
+
transaction_name (str): The name of the transaction to execute.
|
|
46
|
+
args (dict[str, Any]): The arguments to pass to the transaction function.
|
|
47
|
+
load_references (bool, optional): Whether to load references in the arguments. Defaults to True.
|
|
48
|
+
|
|
49
|
+
Returns:
|
|
50
|
+
Any: The result of the transaction execution.
|
|
51
|
+
"""
|
|
52
|
+
def get_transaction_func(self, transaction_name: str) -> Callable[..., Any]:
|
|
53
|
+
"""
|
|
54
|
+
Retrieves the transaction function by its name.
|
|
55
|
+
|
|
56
|
+
This method checks if the transaction function is already loaded in the `_transactions` dictionary.
|
|
57
|
+
If not, it attempts to load the transaction function from the available transaction definitions.
|
|
58
|
+
|
|
59
|
+
Args:
|
|
60
|
+
transaction_name (str): The name of the transaction function to retrieve.
|
|
61
|
+
|
|
62
|
+
Returns:
|
|
63
|
+
Callable[..., Any]: The transaction function corresponding to the given name.
|
|
64
|
+
|
|
65
|
+
Raises:
|
|
66
|
+
TransactionNotFoundError: If the transaction function with the specified name is not found.
|
|
67
|
+
"""
|
|
19
68
|
@staticmethod
|
|
20
69
|
def _run_async_transaction(transaction_func: Callable[..., Any], args: dict[str, Any]) -> Any: ...
|
|
21
70
|
def _load_transaction(self, transaction_name: str) -> Callable[..., Any]: ...
|
amsdal/utils/contrib_paths.py
CHANGED
|
@@ -4,6 +4,16 @@ from pathlib import Path
|
|
|
4
4
|
|
|
5
5
|
|
|
6
6
|
def get_contrib_schemas_paths() -> Generator[Path, None, None]:
|
|
7
|
+
"""
|
|
8
|
+
Retrieves paths to contribution schemas.
|
|
9
|
+
|
|
10
|
+
This function iterates over the configured contributions in the settings and yields
|
|
11
|
+
the paths to the 'models' directories for each contribution.
|
|
12
|
+
|
|
13
|
+
Returns:
|
|
14
|
+
Generator[Path, None, None]: A generator that yields paths to the 'models' directories
|
|
15
|
+
of the configured contributions.
|
|
16
|
+
"""
|
|
7
17
|
from amsdal.configs.main import settings
|
|
8
18
|
|
|
9
19
|
for contrib in settings.CONTRIB:
|
amsdal/utils/contrib_paths.pyi
CHANGED
|
@@ -1,4 +1,14 @@
|
|
|
1
1
|
from collections.abc import Generator
|
|
2
2
|
from pathlib import Path
|
|
3
3
|
|
|
4
|
-
def get_contrib_schemas_paths() -> Generator[Path, None, None]:
|
|
4
|
+
def get_contrib_schemas_paths() -> Generator[Path, None, None]:
|
|
5
|
+
"""
|
|
6
|
+
Retrieves paths to contribution schemas.
|
|
7
|
+
|
|
8
|
+
This function iterates over the configured contributions in the settings and yields
|
|
9
|
+
the paths to the 'models' directories for each contribution.
|
|
10
|
+
|
|
11
|
+
Returns:
|
|
12
|
+
Generator[Path, None, None]: A generator that yields paths to the 'models' directories
|
|
13
|
+
of the configured contributions.
|
|
14
|
+
"""
|
|
@@ -0,0 +1,257 @@
|
|
|
1
|
+
amsdal/manager.pyi,sha256=DJwbQm59hx_N7e-AnBT1vWT6S4v1Ais4tccuKiRB3GU,7981
|
|
2
|
+
amsdal/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
+
amsdal/__init__.py,sha256=EQCJ5OevmkkIpIULumPNIbWk3UI7afDfRzIsZN5mfwg,73
|
|
4
|
+
amsdal/manager.cpython-311-darwin.so,sha256=RB5Rr-Madya-Xi-hsc8pzebOz4ubUVwG3CBawMyHCs0,357136
|
|
5
|
+
amsdal/Third-Party Materials - AMSDAL Dependencies - License Notices.md,sha256=VcPLiGSghykwD290sS5A3hSNtPcz5hoBRgNaUTKdEnY,73573
|
|
6
|
+
amsdal/__about__.py,sha256=isAMw_3mY_eMvJYxXq7BG01igGX--ibQjFt92ffyRlw,125
|
|
7
|
+
amsdal/errors.pyi,sha256=mcuGsQMWaIUmC9GJDIkf99dQMMsCfBy6OI_UB3NSNmc,597
|
|
8
|
+
amsdal/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
+
amsdal/errors.py,sha256=pZZKIklaDkh8jdFSAfX81TbiylvbaE70nttRjTcTSBk,616
|
|
10
|
+
amsdal/__about__.pyi,sha256=Y25n44pyE3vp92MiABKrcK3IWRyQ1JG1rZ4Ufqy2nC0,17
|
|
11
|
+
amsdal/context/manager.pyi,sha256=9oqHjtub9qqPdIuD2y09IMmRbwSbRBk1T-dXGsWGmMI,1474
|
|
12
|
+
amsdal/context/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
|
+
amsdal/context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
|
+
amsdal/context/manager.py,sha256=CKGY75P2y-TCnZvK5p9NJsDgHo8KXHSE0Eg5AGRjnfk,1850
|
|
15
|
+
amsdal/mixins/class_versions_mixin.pyi,sha256=g9-R_1OFzHujGNx_lOKCfZggUovYSiNPSmzw2FCxBvs,876
|
|
16
|
+
amsdal/mixins/build_mixin.cpython-311-darwin.so,sha256=tW9oobpbzE3W07c8yl5vITjt1f5vDujm94L4NifM2Q4,337528
|
|
17
|
+
amsdal/mixins/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
18
|
+
amsdal/mixins/build_mixin.pyi,sha256=gNub1Eu4CtnW6qbOLvkxP8mE-WhM2k8Ru4R4th5905s,2395
|
|
19
|
+
amsdal/mixins/__init__.cpython-311-darwin.so,sha256=l2MhHXy47R4LxLGQJ_SQN7SdI5rnpwNj5h9K6lbo9bE,120656
|
|
20
|
+
amsdal/mixins/class_versions_mixin.cpython-311-darwin.so,sha256=QYyme_dfcr54W4p_spj__agJFlmZWdmWpcvLGgUM9sU,286256
|
|
21
|
+
amsdal/utils/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
22
|
+
amsdal/utils/contrib_paths.py,sha256=9BpNegbPofuvaQ4bE4E5cO4IV415ZZJkTqSLHUruJ3k,787
|
|
23
|
+
amsdal/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
24
|
+
amsdal/utils/contrib_paths.pyi,sha256=Ngb_2wCTCPJ9NSIqKiP254Ww9xrQzAV1-AiqUkVmiuQ,493
|
|
25
|
+
amsdal/utils/tests/enums.py,sha256=DoVtMzvfePjfLiAVctPDehdTTHawDbWrQP3yg46Bx6k,390
|
|
26
|
+
amsdal/utils/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
27
|
+
amsdal/utils/tests/factories.py,sha256=SAnMjkDHg2dXgnDfxQGTvZX5MLuRmdskq7Cjbf6swVk,1926
|
|
28
|
+
amsdal/utils/tests/helpers.py,sha256=cEcJkpPsfOZx2wR7lfWn-f5xdGLJf-accMbMWoE4g7s,10827
|
|
29
|
+
amsdal/contrib/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
30
|
+
amsdal/contrib/app_config.pyi,sha256=j3MYfBcn9MzhTagEczGWfVH9N5jrfiKmUhxZMoakojw,149
|
|
31
|
+
amsdal/contrib/__init__.cpython-311-darwin.so,sha256=NSdc-E0dsJrARbFJRE_4OAz2AfLEUxe0KN2XNebodoM,120656
|
|
32
|
+
amsdal/contrib/app_config.py,sha256=RT3RAEE49XtzuFTXYNVuaqU9V4YIl0ZWZijtXgV-SC4,131
|
|
33
|
+
amsdal/contrib/auth/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
34
|
+
amsdal/contrib/auth/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
35
|
+
amsdal/contrib/auth/settings.pyi,sha256=mf0ysPZbmin-Dvk8ZdoohqIpRUZrgmPeryL3HXk9F1M,1011
|
|
36
|
+
amsdal/contrib/auth/app.pyi,sha256=CD5sdl5zu6it5RbF4YGHgLS5Q3aArOS16RY4HZq43_g,512
|
|
37
|
+
amsdal/contrib/auth/errors.pyi,sha256=LXEfxHkbEZuES7PNzBwmS7yP5yqaZGDftscI10SeCx0,131
|
|
38
|
+
amsdal/contrib/auth/settings.py,sha256=4HneHyXD01s5_kAmhnA-13ryi-PfxejbE45YvC_xHHI,1227
|
|
39
|
+
amsdal/contrib/auth/app.py,sha256=MY_MwhI6d1J8IRi232SbBPp-wrcleRc5BIHNW0--ji4,1181
|
|
40
|
+
amsdal/contrib/auth/errors.py,sha256=nXuMLbicP_ScrPuZaSdwkPr7fN66Ox_v6UzknVRy9Jk,134
|
|
41
|
+
amsdal/contrib/auth/migrations/0000_initial.py,sha256=KUlzsBZtBApi4aMC5BEt5Gj2veELdF0Aw9YMIhVjt0Q,4830
|
|
42
|
+
amsdal/contrib/auth/decorators/__init__.pyi,sha256=1DKnpx3dKyeuHyKcnXn0TzVqQxT8qrjQnYYASNSA7fM,305
|
|
43
|
+
amsdal/contrib/auth/decorators/__init__.py,sha256=wdyw0PRO6y1Fx4JnksgLmZbxw2lz1peVItq8fj9zODw,621
|
|
44
|
+
amsdal/contrib/auth/lifecycle/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
45
|
+
amsdal/contrib/auth/lifecycle/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
46
|
+
amsdal/contrib/auth/lifecycle/consumer.pyi,sha256=LijoSGUqj9qQeK-qTJHPRnRaVbhpS9VWXkTnnZC_pxY,3218
|
|
47
|
+
amsdal/contrib/auth/lifecycle/consumer.py,sha256=x9d0uZXg7NpGnpMKMVKujiFddmHMCBYLVOr13xtruzo,9170
|
|
48
|
+
amsdal/contrib/auth/models/user/model.json,sha256=vqz0seTiXpNnuRbPfsXn_mMvlPC6roBNC37JxRF8Imc,399
|
|
49
|
+
amsdal/contrib/auth/models/user/modifiers/display_name.py,sha256=tD0bj1JRBbGVGVWE7RVXV5v-FAKhuNPWrMgtkPz3OHg,504
|
|
50
|
+
amsdal/contrib/auth/models/user/hooks/post_init.py,sha256=4Bm-OG2L0kMXo4VffBtWQQ5Vk-Fnh17wHgqzdZUXRe8,1692
|
|
51
|
+
amsdal/contrib/auth/models/user/hooks/pre_create.py,sha256=MV67oB2tLvoizEF4w1Hit6I5Tm23QIO2Kb_mnXQoHUI,242
|
|
52
|
+
amsdal/contrib/auth/models/permission/model.json,sha256=goewK66MqrLJHdyNALyMYRBHI4SbAmYhz3uoI7AHziU,257
|
|
53
|
+
amsdal/contrib/auth/models/permission/modifiers/display_name.py,sha256=IEb_zuuk5NLG-LNux4gHiXopDZwaf7ZJK3FXqYJwyBs,366
|
|
54
|
+
amsdal/contrib/auth/models/permission/fixtures/basic_permissions.json,sha256=iQN1KUjNQr4k0EzIzEXONMKWK4i44fTJBUlFF1v0UwY,1329
|
|
55
|
+
amsdal/contrib/auth/models/login_session/model.json,sha256=da5KThOLpXICf0IaA0bOKqVBb46vaZh57bvTaTf65zY,374
|
|
56
|
+
amsdal/contrib/auth/models/login_session/modifiers/display_name.py,sha256=qvI_ppZ0Jl7KWhR8fWiMebXk-ak-jkFyBkinw6ESgZU,295
|
|
57
|
+
amsdal/contrib/auth/models/login_session/hooks/pre_init.py,sha256=neIrT7ENqZzh-PNVbhy9fPrJ8zZTy6mDIVSQOh1H3MA,2196
|
|
58
|
+
amsdal/contrib/frontend_configs/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
59
|
+
amsdal/contrib/frontend_configs/constants.pyi,sha256=OvhkkbIgS18ICtfwbProbE43vW_-LRZW9b6ehg048Xo,23
|
|
60
|
+
amsdal/contrib/frontend_configs/constants.py,sha256=frfgRZBAp3MgxD17D05XrCwV222wdwxc1a-8pRKMRKk,34
|
|
61
|
+
amsdal/contrib/frontend_configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
62
|
+
amsdal/contrib/frontend_configs/utils.pyi,sha256=0LuzznNZ4NjuYYXsApfubjUpkG8EVwq-vcd-oHvJtvs,730
|
|
63
|
+
amsdal/contrib/frontend_configs/app.pyi,sha256=Bxdz0kmOF-Poaf2wmoJdgWYmHaStFyOFYTko3b3GpTY,723
|
|
64
|
+
amsdal/contrib/frontend_configs/utils.py,sha256=IruaUNl4xkOr2IIFzlvrmi06vEu3CWx49GzLBsrCFU0,1103
|
|
65
|
+
amsdal/contrib/frontend_configs/app.py,sha256=fY4GukBM6GKSZExT0EgddTamLfUJHwQZS8tOwVQyeSY,836
|
|
66
|
+
amsdal/contrib/frontend_configs/migrations/0000_initial.py,sha256=sx1aIIwciX9qRmU8znjuUVMIx6dEwVjvlyo1TKS1KM8,13513
|
|
67
|
+
amsdal/contrib/frontend_configs/lifecycle/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
68
|
+
amsdal/contrib/frontend_configs/lifecycle/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
69
|
+
amsdal/contrib/frontend_configs/lifecycle/consumer.pyi,sha256=8_hbUE_5LejyKDHDxDwfLbbVtbOJdqf_c0LK7evbsoc,3700
|
|
70
|
+
amsdal/contrib/frontend_configs/lifecycle/consumer.py,sha256=FzlWiduCOR8BJ23MLhhXLaf-NG8rR2usB4G5Dra1uwc,9152
|
|
71
|
+
amsdal/contrib/frontend_configs/models/frontend_control_config/model.json,sha256=U_AB2OMdSbhsM7OksOexmettKlxoGcPfJedhMur2mMw,6791
|
|
72
|
+
amsdal/contrib/frontend_configs/models/frontend_config_skip_none_base/model.json,sha256=Mkk3rsx9UwG9EnUOnCxN-xMChEKjEJh4ql3HmBLH5FM,119
|
|
73
|
+
amsdal/contrib/frontend_configs/models/frontend_config_skip_none_base/properties/model_dump.py,sha256=009_69Jc2zKmJ4bQWbVG7HeT2QWvXc2g8D1jyZ6aoL0,426
|
|
74
|
+
amsdal/contrib/frontend_configs/models/frontend_config_validator/model.json,sha256=o1F7R3RQecv7bT4NxGvgDSK93Z6eQCvtgDtr2gHdS6g,1061
|
|
75
|
+
amsdal/contrib/frontend_configs/models/frontend_activator_config/model.json,sha256=5fnGtWrxK_nzedI60umO7b3TDQkRGnGV9HOgoqmrV9Q,233
|
|
76
|
+
amsdal/contrib/frontend_configs/models/frontent_config_control_action/model.json,sha256=NgC8M1O4ciDF7S3kUz5dwaNATKbKH0JwD1-qB9h5qWo,1387
|
|
77
|
+
amsdal/contrib/frontend_configs/models/frontent_config_control_action/properties/action_validate.py,sha256=SfDvyKtP7r2MOFe1pQMfmNpuo_fgyj5HFGT0RUynJ_I,1034
|
|
78
|
+
amsdal/contrib/frontend_configs/models/frontend_config_group_validator/model.json,sha256=aNcoBkQCWFQao0Nbjw0tfKRl25nE2tt4AgM0myc07Sc,1366
|
|
79
|
+
amsdal/contrib/frontend_configs/models/frontend_model_config/model.json,sha256=IF_jrqlsaTowlyb3MMkNoLh6t5fTaDX8LPYA9ptmPKI,339
|
|
80
|
+
amsdal/contrib/frontend_configs/models/frontend_model_config/fixtures/permissions.json,sha256=enVlQVTn32_hSevxFkCtnaNzSuz__VvlZHBMVSQNucw,644
|
|
81
|
+
amsdal/contrib/frontend_configs/models/frontend_config_text_mask/model.json,sha256=lxCWq0FEkFG8BA9qjg7TXWsFUwlGeBzhlBaKe_M0swk,586
|
|
82
|
+
amsdal/contrib/frontend_configs/models/frontend_config_slider_option/model.json,sha256=rVLe1pEQyCuuO0OOwQO5-cdEyEF1mE6nlnkq8_E-UwE,411
|
|
83
|
+
amsdal/contrib/frontend_configs/models/frontend_config_async_validator/model.json,sha256=ycIDZ7CcEb5qvb2pBzsTBJx2gBKV9dTOVG6QWqb0c0U,240
|
|
84
|
+
amsdal/contrib/frontend_configs/models/frontend_config_option/model.json,sha256=x0Xhp1_AMCAiqeBDY8Peg29vfbhkrFkyrff6Py1bYxQ,315
|
|
85
|
+
amsdal/contrib/frontend_configs/conversion/__init__.pyi,sha256=Gbz6P3jhpqK6hLcGxi6l0sI_MNrb8_JNLLD4YVOjkFY,162
|
|
86
|
+
amsdal/contrib/frontend_configs/conversion/convert.py,sha256=4wkE8-oswApNbTzFTQ9azEwLGQqAToaHcHcDTTg2EFk,7604
|
|
87
|
+
amsdal/contrib/frontend_configs/conversion/convert.pyi,sha256=zl-M_yK9n3LvbOjs6GDpOfWBO10rsPrqA06zusICNew,979
|
|
88
|
+
amsdal/contrib/frontend_configs/conversion/__init__.py,sha256=4Kkv5xgGvqky3szx08bBfbbxrc6TeFDSnosGimSoNcI,139
|
|
89
|
+
amsdal/operations/manager.pyi,sha256=p_xwopohimXL3tm1b2v4YRkbXItCLw1iW9t0SmdaOLo,2878
|
|
90
|
+
amsdal/operations/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
91
|
+
amsdal/operations/manager.cpython-311-darwin.so,sha256=XSopxaHZY0qr2L7bNiHshaaKaj25SGqBz16IfowrqqI,405696
|
|
92
|
+
amsdal/operations/__init__.cpython-311-darwin.so,sha256=GBGNyYzku6tKxA3QodjLmXJZozNjSwecELxZUJTl0zo,120688
|
|
93
|
+
amsdal/schemas/manager.pyi,sha256=2E8flU_4jrg_BpLgGuoZF9tOb5foTrceS8hE0i50v1k,2790
|
|
94
|
+
amsdal/schemas/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
95
|
+
amsdal/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
96
|
+
amsdal/schemas/manager.cpython-311-darwin.so,sha256=NLC5lHDsl5rp6ggeFMVPy-L3vGgvmg26TZ_Zq1vwosg,249456
|
|
97
|
+
amsdal/schemas/manager.py,sha256=Zws4F666-AxqiXube-NMLCuTFr8BWU4WzqmhwOSWH0U,4623
|
|
98
|
+
amsdal/schemas/types/array/model.json,sha256=I9Z7r691yd8i-Ndy8Cf3rFGg22mnLxg_weeVU2kRtkY,117
|
|
99
|
+
amsdal/schemas/types/datetime/model.json,sha256=DROVOPm0uQXy4qUj4mQUnhvfT_67psrQJj8psVRYjrA,120
|
|
100
|
+
amsdal/schemas/types/date/model.json,sha256=_siNphlfvq-bZ29Z3tloQlxh1_zRsEkXuO5HJsXmDSE,116
|
|
101
|
+
amsdal/schemas/types/number/model.json,sha256=sp60YPi1xPj33LVtvl2c0vTselFqesAtGZN6pyMeexY,129
|
|
102
|
+
amsdal/schemas/types/object/model.json,sha256=Pfas7ElCmAHJpOrVbmHm2goIoeErop816AIXdFsJGes,965
|
|
103
|
+
amsdal/schemas/types/anything/model.json,sha256=detUw-DW5nEl7Syy_J6eyPfi_yj5HQQ_X_GE5Fo1Zqs,120
|
|
104
|
+
amsdal/schemas/types/dictionary/model.json,sha256=Q1__6DIdJ81mrakmrN3c17PMoW05ri6Pz7cb_G0PeuM,133
|
|
105
|
+
amsdal/schemas/types/boolean/model.json,sha256=FBBjA6YdkkgkhpMIZd294862S3_mAjb8wxMqunKrGcE,240
|
|
106
|
+
amsdal/schemas/types/binary/model.json,sha256=pbmucBgX_BhD37k0KD_j7Nt5N_R-xorrezIg37n3Tz0,118
|
|
107
|
+
amsdal/schemas/types/string/model.json,sha256=aC4VIBC2Si6CJNhRh-_7R24CbNy_-rRbFKiTUayT3aI,127
|
|
108
|
+
amsdal/schemas/core/validator/model.json,sha256=JN62rw_UOPk6iiKWtKRNG1OmFQeiX7EEIVbRFnCkj7o,297
|
|
109
|
+
amsdal/schemas/core/file/model.json,sha256=s_sQpToj5zeSYgkR9AFPvdm5dz2YiFH9Lm9EwzGcM1E,340
|
|
110
|
+
amsdal/schemas/core/file/properties/str.py,sha256=r2RAz6uBxEFJjRJGBYk4yWXzmLyZ_zR6DmnsubPY4Fs,245
|
|
111
|
+
amsdal/schemas/core/file/properties/mimetype.py,sha256=Y2hTq82Da8KeuRsIV4RK3E1F7sbsu12dWqD99kD3Inw,433
|
|
112
|
+
amsdal/schemas/core/file/properties/to_file.py,sha256=qzlfo4YHBtsf11S2Hy30AjvA7Lyi8ezsGEXqxGBOPVg,720
|
|
113
|
+
amsdal/schemas/core/file/properties/validate_data.py,sha256=1LsIAdijogQa6uJp6O2wQ7shAJMgWPvYps02HRVzttA,919
|
|
114
|
+
amsdal/schemas/core/file/properties/from_file.py,sha256=fdIuz40QctfTtLTkkaGO7ut61AO3geYxSASirE14GRc,926
|
|
115
|
+
amsdal/schemas/core/file/hooks/pre_create.py,sha256=kF5BMWo_W_pEhPhO0RQqgyPeWt0LTCCkbpvyVOqS7g0,366
|
|
116
|
+
amsdal/schemas/core/file/hooks/pre_update.py,sha256=0dJakQjL3x94TyRgyGobAiPTfRrLUSHOL21mTL361pw,356
|
|
117
|
+
amsdal/schemas/core/fixture/model.json,sha256=m2v-zkH-MsUlH8cc459-gtNCGHAozHSkGAgSVj9kQb8,568
|
|
118
|
+
amsdal/schemas/core/option/model.json,sha256=bD1WHbnAnU6Ws_U10BZ8oeHaQbVgE1lBWYFcjANeHNI,277
|
|
119
|
+
amsdal/schemas/core/class_property_meta/model.json,sha256=X5i5FLlq-BhP8MDFPki7nu_FSdcpsAWXOe3u-mULKUA,390
|
|
120
|
+
amsdal/schemas/core/class_object_meta/model.json,sha256=Rye9cqv_HyZKaCl_UECqYx8eCd3CFta4YbpZJ8QvrdQ,950
|
|
121
|
+
amsdal/schemas/core/class_property/model.json,sha256=qWdOvU_Ks9c3utQIkbRzsK67UwhD4qBGfofzNzYmt98,372
|
|
122
|
+
amsdal/schemas/core/class_object/model.json,sha256=K-S51xTxqU0W3OJYmnXW7Y8gRfttcgOsy2qN5k0A0Wc,552
|
|
123
|
+
amsdal/schemas/core/class_object/properties/display_name.py,sha256=F2Ox-MJa8EndMq7Ox10VaismKe44w2zxnYhsVhBHPOI,256
|
|
124
|
+
amsdal/__migrations__/0001_datetime_type.py,sha256=yHTgWi1XxeJ5hWQFtro2XzEinlKoIau1S7jYlj0UXtE,597
|
|
125
|
+
amsdal/__migrations__/0000_initial.py,sha256=kPSE-aFasdi6jLMO5vIbpMK7hLiaR2TAqMdX2lGTf_s,10318
|
|
126
|
+
amsdal/__migrations__/0002_fixture_order.py,sha256=NbRffgnyP2_JCnH-OGbXs0NjVbS3cotPnuvSgpcn0Tw,1598
|
|
127
|
+
amsdal/configs/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
128
|
+
amsdal/configs/constants.pyi,sha256=ZoWj8V0YkrPaY0zBsXCenwuWMQIQ0K6hnzr4We9CRl0,683
|
|
129
|
+
amsdal/configs/constants.py,sha256=faghdS6r3on1WKrp782WmgONd1fMf4X73LJzAwMO1po,969
|
|
130
|
+
amsdal/configs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
131
|
+
amsdal/configs/main.pyi,sha256=mVr27fnB05XsRoFk_o0LMB4Ug-dNaPJlDHKdrUZPrLw,6881
|
|
132
|
+
amsdal/configs/main.py,sha256=GWunT_7daFf6t5Jre16zvOyQIRyA7LWjuz8BzTgVztw,9169
|
|
133
|
+
amsdal/cloud/client.cpython-311-darwin.so,sha256=qxR3UBC-9MZn47wGcuxViqjZvx0bVRpVQFHw40vy_cI,216208
|
|
134
|
+
amsdal/cloud/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
135
|
+
amsdal/cloud/constants.pyi,sha256=0qWxDqjQkETwUtgco5kV83fPHhQ4jRdJe_YPPNTnSIY,327
|
|
136
|
+
amsdal/cloud/client.pyi,sha256=3VjPRtJrbUU29u_wswETrMorN0iUb4GFAXmMc73bUf4,2247
|
|
137
|
+
amsdal/cloud/enums.cpython-311-darwin.so,sha256=Aqdriqn8A2u-3HNOp3qhaLPZ1NVaqmmZvIIUUQqjhms,158064
|
|
138
|
+
amsdal/cloud/constants.cpython-311-darwin.so,sha256=mGf_K1W-qCFBkQH50FJVRMyijkkJD8Mbh6vcBJzFx-Q,158688
|
|
139
|
+
amsdal/cloud/__init__.cpython-311-darwin.so,sha256=vKY8CfP8Jh3H6Jf-YDw9l5izuGTRbqrRMRzkuEVmNnk,120656
|
|
140
|
+
amsdal/cloud/enums.pyi,sha256=mX5O1FPc3aNnN108aOJT66Nn9KlcyrRTj9B23sFdDfw,1757
|
|
141
|
+
amsdal/cloud/models/base.cpython-311-darwin.so,sha256=SrMNExfsojcNowXrkevgBbbfKVZ9_2qR5kX3Plxlhp8,211632
|
|
142
|
+
amsdal/cloud/models/base.pyi,sha256=avwAj4uS4NHrXvmSKBxokFKFWSaBPXtJPl1Ig1CD6sg,7727
|
|
143
|
+
amsdal/cloud/models/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
144
|
+
amsdal/cloud/models/__init__.cpython-311-darwin.so,sha256=W1bCQ4zRUBmunwxGS8TtWidn7C4SBkw_nT_ED8AZ2Cw,120688
|
|
145
|
+
amsdal/cloud/services/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
146
|
+
amsdal/cloud/services/__init__.cpython-311-darwin.so,sha256=NGnc5q6BzeqGk22d00RkLJsTudW18FgS1OrgpPe-dZs,120688
|
|
147
|
+
amsdal/cloud/services/auth/base.cpython-311-darwin.so,sha256=TlDqtkkZ1WpveVKEs64pIcEEca9Wtg8lqx9A549XA1M,163104
|
|
148
|
+
amsdal/cloud/services/auth/base.pyi,sha256=oj_tgwWhf02g-FzCLcNOEZjYDxfcrrDssING4jsUMb8,167
|
|
149
|
+
amsdal/cloud/services/auth/manager.pyi,sha256=AhKllHgraztP3JSKta9MmQjTNRAbQbwqZg2EpQZSwhI,1243
|
|
150
|
+
amsdal/cloud/services/auth/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
151
|
+
amsdal/cloud/services/auth/signup_service.pyi,sha256=SfSN1tLIwrzGi9JbMgoLuKKH1u5uoh_MOFJ4n_NHcBY,1145
|
|
152
|
+
amsdal/cloud/services/auth/token.cpython-311-darwin.so,sha256=Q40DDqWqCldVnUK2d2Tg6RK35b-g3gmU7Po8eGIHLPY,251152
|
|
153
|
+
amsdal/cloud/services/auth/manager.cpython-311-darwin.so,sha256=iM1gc-ATIYqZzpiH9_2EMW_WLHuOqF_6Zk8H20bI24g,214128
|
|
154
|
+
amsdal/cloud/services/auth/token.pyi,sha256=-SCK3mrIYpQgQUBc4roijltOZfKzZl0EqI5yCIDNVCI,1108
|
|
155
|
+
amsdal/cloud/services/auth/signup_service.cpython-311-darwin.so,sha256=cqzx7N8w6DXEgT47UO6sy5RcalOvno-zyK_2dgclvcw,216216
|
|
156
|
+
amsdal/cloud/services/auth/__init__.cpython-311-darwin.so,sha256=qt072XOn01UTzvHYYEqSZiANF6sf-XY-WK81JcBsD5E,120704
|
|
157
|
+
amsdal/cloud/services/auth/credentials.cpython-311-darwin.so,sha256=xiMohl76s5gaLU-IPm8gN-VELCjvUrDJs-VfIUCZ4iA,253096
|
|
158
|
+
amsdal/cloud/services/auth/credentials.pyi,sha256=94MbGuKwVw7T_JJjpsHBkXpjI0BedVY2KSrOjzSP97E,1483
|
|
159
|
+
amsdal/cloud/services/actions/get_basic_auth_credentials.cpython-311-darwin.so,sha256=p4lXPfwOkVxPvQPXs6dSvFLNdG-DXG0_650cB8nvKbo,181112
|
|
160
|
+
amsdal/cloud/services/actions/base.cpython-311-darwin.so,sha256=XFZE40eeg9Q3CCB68X-WCD6wcvNH36T-gfPSmHAKe5A,323552
|
|
161
|
+
amsdal/cloud/services/actions/list_envs.pyi,sha256=7PylFRd1Jb6nkTt8q8iy27rLj-Q5qcwfqW02_OlfDZs,878
|
|
162
|
+
amsdal/cloud/services/actions/delete_basic_auth.cpython-311-darwin.so,sha256=EsDFvYHb1DcIPo0xqBUELeRvFN53OuBfTNvMJR8LkeA,180744
|
|
163
|
+
amsdal/cloud/services/actions/base.pyi,sha256=J98igdu3E9-mled_kbxerja4DTLM0OAW8cHtsVOQ_fc,5880
|
|
164
|
+
amsdal/cloud/services/actions/add_allowlist_ip.cpython-311-darwin.so,sha256=dVdUhe_CksExWWiGzGQj0MvZ0qukYYfFWCKBFJPcUHE,180776
|
|
165
|
+
amsdal/cloud/services/actions/signup_action.cpython-311-darwin.so,sha256=4YSyawb9raNkWVmxefodjRkoqOzTCtLjNbxkgjIGnoA,180584
|
|
166
|
+
amsdal/cloud/services/actions/manager.pyi,sha256=Tal5u1nMhi7MeuJ9lBIPYPLgKoIB6DUXPU2AokrusHI,15441
|
|
167
|
+
amsdal/cloud/services/actions/delete_dependency.cpython-311-darwin.so,sha256=hho6vuxrkhH-zkKrMPy4lWODKxNhVn3g-JkpgaRojA4,180760
|
|
168
|
+
amsdal/cloud/services/actions/expose_db.cpython-311-darwin.so,sha256=nhUnAxZn0KRhiMyZExq7O8nrT9ii5UxChbJ62aKYevA,181184
|
|
169
|
+
amsdal/cloud/services/actions/delete_allowlist_ip.pyi,sha256=W5zVq7YKL_OVigZl58bqau3rvAzsLdItAZaqDO1HGJw,933
|
|
170
|
+
amsdal/cloud/services/actions/add_secret.cpython-311-darwin.so,sha256=YntPIeZM8j9bzjHBvvz7KVaOlrCo4FN2ExO2uk4BEQY,180632
|
|
171
|
+
amsdal/cloud/services/actions/add_basic_auth.pyi,sha256=4tyTci_k_xlJrkBd71sY0ivRr8alo3Bq0KCkjIfacu4,1106
|
|
172
|
+
amsdal/cloud/services/actions/list_secrets.pyi,sha256=vF-EikAy7WHdkvkGikD_oDFDIgE1GEr8nxAQKYAs9rY,1079
|
|
173
|
+
amsdal/cloud/services/actions/list_secrets.cpython-311-darwin.so,sha256=WkT87YhTwKO7vPnxmfcS3gD-Llw0nf92CFO5grgiPyU,181304
|
|
174
|
+
amsdal/cloud/services/actions/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
175
|
+
amsdal/cloud/services/actions/get_basic_auth_credentials.pyi,sha256=1FU8BtDRaGTx8fSqdhmotQK-rR7gKr4Qav_E-T_23rc,1071
|
|
176
|
+
amsdal/cloud/services/actions/list_deploys.cpython-311-darwin.so,sha256=hiSmQJXmkz9GD1Apu1GsalitcrbOTdxJx-g42H1xDDQ,181080
|
|
177
|
+
amsdal/cloud/services/actions/list_envs.cpython-311-darwin.so,sha256=75WYV5jWDovfTu6ELff87tz0WdSHwYeej7okBp6cTF0,180752
|
|
178
|
+
amsdal/cloud/services/actions/list_dependencies.cpython-311-darwin.so,sha256=sIrkKI1iDvx2V_ckzEoYwddxsW3bf6lJltQ91W0E72o,181304
|
|
179
|
+
amsdal/cloud/services/actions/destroy_deploy.cpython-311-darwin.so,sha256=Fdx30rgMgMIxisQnzP2ye7UEyXip2vfn4lr99n4Vllc,180536
|
|
180
|
+
amsdal/cloud/services/actions/create_session.cpython-311-darwin.so,sha256=cMiQOz6n9P7LGZOdhgCBigFwoqgZXtU-rHgH8_oc8aI,180984
|
|
181
|
+
amsdal/cloud/services/actions/create_deploy.cpython-311-darwin.so,sha256=dCGMs9pv4DhwDj-XzuqHap1-N6-IX8DQ6AWC-2cCMlc,252744
|
|
182
|
+
amsdal/cloud/services/actions/delete_secret.pyi,sha256=gZi17MivNYBIfdPU2GjoJ2I2lWiefdvLuXTcxDss1P4,953
|
|
183
|
+
amsdal/cloud/services/actions/delete_env.pyi,sha256=uyBHMOp_AprbpSfv6y6QfYW5FvK1-8jb2NxK_FmuPHE,969
|
|
184
|
+
amsdal/cloud/services/actions/manager.cpython-311-darwin.so,sha256=o1oGiPbPupy-CvBh3GnXBG5BQT1wjUesWLfYOfv8kFE,371312
|
|
185
|
+
amsdal/cloud/services/actions/delete_dependency.pyi,sha256=VuT1w2qOpjR7I9mBi9tPXMXDPEeU8tG0vi9TXV82Frg,1021
|
|
186
|
+
amsdal/cloud/services/actions/add_dependency.cpython-311-darwin.so,sha256=-HLsv0MbRemVBTrtqetjEbP8xlf6b29HYyWGnxyruAM,180712
|
|
187
|
+
amsdal/cloud/services/actions/create_session.pyi,sha256=KUvx_vkhLQfGp_DM1ZvgszyT_G8LB28KoI1XpjNR7YY,674
|
|
188
|
+
amsdal/cloud/services/actions/delete_allowlist_ip.cpython-311-darwin.so,sha256=27XksjZcui11u1BSKAR2HTj2M7svyAI6jSQoq-J7kzA,180832
|
|
189
|
+
amsdal/cloud/services/actions/list_deploys.pyi,sha256=Q8da3PDPxICLP2V7L-A7p-9_a3qNKrARqgHhu0CA0nA,724
|
|
190
|
+
amsdal/cloud/services/actions/add_basic_auth.cpython-311-darwin.so,sha256=75XiC61I8q8D-oChHZqXGrix2lrJWDBA4bfEhqL4FUc,181112
|
|
191
|
+
amsdal/cloud/services/actions/add_allowlist_ip.pyi,sha256=gB2NQVz8NcSsgXYiym2Suh1RPI8eHKIAFE13RmeTHkA,883
|
|
192
|
+
amsdal/cloud/services/actions/get_monitoring_info.pyi,sha256=uvtBgWvtWf-Mq4vZq_q-q8Z8hJh5voAY61KRJQPGWFk,1045
|
|
193
|
+
amsdal/cloud/services/actions/add_dependency.pyi,sha256=uVEIhvDa4GRS0Lg6TkcYdOwezKcxrzL7A_Lh8BxcAeU,837
|
|
194
|
+
amsdal/cloud/services/actions/get_monitoring_info.cpython-311-darwin.so,sha256=ayEks3vGHzotKeMTcvWH46--x2OKVqftE0WfEFe_ukQ,180976
|
|
195
|
+
amsdal/cloud/services/actions/update_deploy.cpython-311-darwin.so,sha256=lj2J8g6_8Ubzl97qPT3Kbu2BrppSp6wnnxQwNFM9xgE,181064
|
|
196
|
+
amsdal/cloud/services/actions/signup_action.pyi,sha256=VswHjhxw2eHYqXwc---F2LpwlD7GlIuL_Ev2DmA96_4,808
|
|
197
|
+
amsdal/cloud/services/actions/create_env.cpython-311-darwin.so,sha256=UeiIWJPVqo_DHeGbKkgGjb1vuNT2kcZ_0ilLm_X7hqc,180824
|
|
198
|
+
amsdal/cloud/services/actions/add_secret.pyi,sha256=H6rS3PRwiktMfnoY8qwtmTplN9gG2yZgQKKCX8S8Q6c,890
|
|
199
|
+
amsdal/cloud/services/actions/delete_env.cpython-311-darwin.so,sha256=Q4LTjBPIQE8-tW5q3rpUfMoSRfM9eGANxnZNbfrxLk4,180824
|
|
200
|
+
amsdal/cloud/services/actions/__init__.cpython-311-darwin.so,sha256=-3d4BG2M-7ftkxfz_o_EEhgvnvNiSansucVb7ulp9J8,120720
|
|
201
|
+
amsdal/cloud/services/actions/destroy_deploy.pyi,sha256=VNb0J71B3gk4SVJwxlB9XTj4vCG-37ucojcGzsvKwe8,609
|
|
202
|
+
amsdal/cloud/services/actions/update_deploy.pyi,sha256=alM1nquQZ5O8PYlDIqDdSuiyuc_aj9fkd01bL9KANEI,766
|
|
203
|
+
amsdal/cloud/services/actions/create_deploy.pyi,sha256=VmVMYJQmjPZce6Cm8sMQ27HomhfdzZc_0X57ZWZmCt0,1988
|
|
204
|
+
amsdal/cloud/services/actions/delete_basic_auth.pyi,sha256=-I1YoOMFi0LaRsZL2JBGH_sg18PZoUL1PP9YetboDJA,915
|
|
205
|
+
amsdal/cloud/services/actions/list_dependencies.pyi,sha256=C37VamSyRT-uNLuwQJ0OrHKavs8Jt0bfPbAsE5BQEvE,1035
|
|
206
|
+
amsdal/cloud/services/actions/create_env.pyi,sha256=ITvyLrvwt6H36JNYURHZ_PbmGZquc5Fm07dVo7H6ll0,910
|
|
207
|
+
amsdal/cloud/services/actions/delete_secret.cpython-311-darwin.so,sha256=HjnK7tz5PQl1g4EorYoLdnxMge-u9fmEAqpD_M_wJVU,180680
|
|
208
|
+
amsdal/cloud/services/actions/expose_db.pyi,sha256=uk2zuz1SiXwjDFxtKF-yyWGNEONOgfm7EcrEyVT0cMM,1049
|
|
209
|
+
amsdal/fixtures/manager.pyi,sha256=ZrLhzvbsxzBRYiw-SnCxpgiiwT6tzX6YRhnfIb8OLck,4924
|
|
210
|
+
amsdal/fixtures/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
211
|
+
amsdal/fixtures/manager.cpython-311-darwin.so,sha256=8M5jrFIojQU56uMi6GeO1HaZfGTVHpT8rTfhwazggzA,409200
|
|
212
|
+
amsdal/fixtures/__init__.cpython-311-darwin.so,sha256=GbzsxKDvCgWvAXP6QOUEFz8ia0ef1mGLJAfxfRp3e2w,120672
|
|
213
|
+
amsdal/migration/file_migration_store.pyi,sha256=WuG8r8nQw2oOLXlsEmnKjiSH4HDkYa6pY80rEZSyZNQ,2364
|
|
214
|
+
amsdal/migration/file_migration_executor.pyi,sha256=pxhk5mxoXTkz8NX5gMMv_WC2sUdxpuMSXNjv9sNJCBk,3982
|
|
215
|
+
amsdal/migration/migrations_loader.pyi,sha256=i1TsBHT52piM-gAGJGjYplbZHJJtZvJ83b_-gYSN2xU,1129
|
|
216
|
+
amsdal/migration/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
217
|
+
amsdal/migration/file_migration_writer.pyi,sha256=yIWvdLciu6Dnr0ZwplvZdMKxN4rl8BazotFrOxfCLh0,2275
|
|
218
|
+
amsdal/migration/base_migration_schemas.cpython-311-darwin.so,sha256=N2Li9Whsej8ONwMF3Pg_v_8wwMxlAK7vseegNuJrDOo,445808
|
|
219
|
+
amsdal/migration/base_migration_schemas.pyi,sha256=zVjup5Be172xdxlMHkW1KqiOnXpPMdaBp70M4_F8Jt8,5086
|
|
220
|
+
amsdal/migration/data_classes.pyi,sha256=Lp65FtmgnYv12CBZHSQ_MydK_Eu78DqT3OZd5rbMhU8,5662
|
|
221
|
+
amsdal/migration/utils.pyi,sha256=7j_5tfnva0XCz2GreMcqdsFS4mTpTmaGsUFrXYQUPxs,2395
|
|
222
|
+
amsdal/migration/file_migration_generator.cpython-311-darwin.so,sha256=Pl2gZrg2uTHp_srpivOIKgiQnsQo5vV9z5D2Iny_fqo,376880
|
|
223
|
+
amsdal/migration/utils.cpython-311-darwin.so,sha256=AbKxuie-ZqsOJpVEmliteGjCb_jtZXOel9a4sfohWho,303312
|
|
224
|
+
amsdal/migration/schemas_loaders.pyi,sha256=7ftMPXWdB4e1XyZ2kZXNUYI9cbOAhRp33Rrv-yM0uQw,1593
|
|
225
|
+
amsdal/migration/file_migration_writer.cpython-311-darwin.so,sha256=U3KA1nhwRZDHj750qwKCqd5LYd5bIsY6OQmlOqI0OsI,252400
|
|
226
|
+
amsdal/migration/file_migration_generator.pyi,sha256=JI8Q4K0EWS0PiTmT77RwmAkcDd9rp8XOpmVRBATp8bo,5754
|
|
227
|
+
amsdal/migration/__init__.cpython-311-darwin.so,sha256=qrgYw7CsYqbvI4Kjbr4TIPryEuGL4k3z-UNb6B3ZypE,120672
|
|
228
|
+
amsdal/migration/migrations.cpython-311-darwin.so,sha256=wsK3zGo9mJCSU7m-cnMUGstdPmHC-roOrsfPwVnd9i4,267960
|
|
229
|
+
amsdal/migration/file_migration_store.cpython-311-darwin.so,sha256=BqOjYB2BPtIwtpyXC2Gn4GmLLovlLUI5bL_9xztE1iE,372000
|
|
230
|
+
amsdal/migration/data_classes.cpython-311-darwin.so,sha256=VHfXBQ299mP35-BoSKleGPm66P0YSGXrrY03ROGJU5s,216888
|
|
231
|
+
amsdal/migration/migrations_loader.cpython-311-darwin.so,sha256=X8QRfM0QeE0EEYkyzuL7T6o3b0fm3kv1BRApWwv50YM,217704
|
|
232
|
+
amsdal/migration/schemas_loaders.cpython-311-darwin.so,sha256=NXZ33IDGVfUX37vIVohhqQIhKJJoN8WlS5RvD30vMyw,257000
|
|
233
|
+
amsdal/migration/migrations.pyi,sha256=lvQ29dMRu3EfaiyiSn9U1GhFlBE6l94Yh5AeJcWpcHw,6079
|
|
234
|
+
amsdal/migration/file_migration_executor.cpython-311-darwin.so,sha256=kIOLJAS8LrLZCUTWtw9FIAgvTOybQAtk_jFfH-cRx3U,354800
|
|
235
|
+
amsdal/migration/executors/base.cpython-311-darwin.so,sha256=DGRpdIbrRxOW5HSHGn9M2sF7o03SSH1_GrpjMMCM_-s,303792
|
|
236
|
+
amsdal/migration/executors/base.pyi,sha256=_Gc4EI42WRR4-qt2imOisv4u3XqOxbxlnHxtsb5uwkc,4869
|
|
237
|
+
amsdal/migration/executors/state_executor.pyi,sha256=-uhjvGffAMw-JU2qOdJQVEHhnaU6zEkKM3JfSMPIUWM,3383
|
|
238
|
+
amsdal/migration/executors/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
239
|
+
amsdal/migration/executors/default_executor.cpython-311-darwin.so,sha256=0zfm6LacFMRVk21PXYO8Mz8G1_RGez5TjqS2HB2prY8,458760
|
|
240
|
+
amsdal/migration/executors/state_executor.cpython-311-darwin.so,sha256=GmFgljdSQ0yjc4q80ZRXZACu5iaDMZqNchFWD-FNOKo,250552
|
|
241
|
+
amsdal/migration/executors/default_executor.pyi,sha256=GEYKQ1icRWeYiV-W34hKkRP_X_YqTm_edcg12Lt9fpk,4686
|
|
242
|
+
amsdal/migration/executors/__init__.cpython-311-darwin.so,sha256=y7fltLaQwqARszply0QFhK2GkfybqH6EPvuaR_3IgsY,120720
|
|
243
|
+
amsdal/migration/templates/model_class_layout.tmpl,sha256=ttbq0xgimvHn-ffM4ZSj2_DMH5srCmUtkwGd38pyDXY,766
|
|
244
|
+
amsdal/migration/templates/options_validator.tmpl,sha256=gF_uiYONVad4OEILZeIdrepcHOFhwPq3nu0NJX8I1EA,205
|
|
245
|
+
amsdal/migration/templates/model_class.tmpl,sha256=t0y_OlxVmJe5RRg8pxO0XyUM3q1sAuv458q8wmDvh-8,225
|
|
246
|
+
amsdal/migration/templates/data_migration.tmpl,sha256=MzDSiNqH006F1cs-dskpboInBja5LZ8ErtoEmRzDsIQ,436
|
|
247
|
+
amsdal/migration/templates/migration.tmpl,sha256=WZe7A1lchoiqZZhGL2YUKVzafMPRiW9l7jYPmQoSOtU,193
|
|
248
|
+
amsdal/migration/templates/dict_validator.tmpl,sha256=5lRGN9hNBVRqVcbeNQuU4v5koRzS6tJAibzOqjCUXSI,173
|
|
249
|
+
amsdal/services/transaction_execution.pyi,sha256=xYxfnCO7oNy1tWRrHvBQp4k2uk33emwHHMt_uk4oi1A,3440
|
|
250
|
+
amsdal/services/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
251
|
+
amsdal/services/__init__.cpython-311-darwin.so,sha256=VI8aspRi-gxVWVL6Ce1gBT46T9qllKIl_KUj9sLzfZA,120672
|
|
252
|
+
amsdal/services/transaction_execution.cpython-311-darwin.so,sha256=VxdMvu0EJYRFfoNFmeUaQvJDNkREOY5RBi0Jd0pOKew,380144
|
|
253
|
+
amsdal-0.1.27.dist-info/RECORD,,
|
|
254
|
+
amsdal-0.1.27.dist-info/WHEEL,sha256=UDBB_KFYXAT_a6Q3uGzMOBYEG2sfuzNdKs9Nu_rq9v4,114
|
|
255
|
+
amsdal-0.1.27.dist-info/top_level.txt,sha256=VPQLnOP3mf7q0JuQ_vPZYQyPNGKd_uc6ouz-hZRkhSk,7
|
|
256
|
+
amsdal-0.1.27.dist-info/LICENSE.txt,sha256=hG-541PFYfNJi9WRZi_hno91UyqNg7YLK8LR3vLblZA,27355
|
|
257
|
+
amsdal-0.1.27.dist-info/METADATA,sha256=HwOx48_WIPbrAPnbzRPfb2zaZ9_o8sF-6kvxIPeSPB0,57412
|