diff --git a/README.md b/README.md index 884f41cf..0c97ceb3 100644 --- a/README.md +++ b/README.md @@ -1,41 +1,34 @@ -# 📁 Mavluda Beauty Repository +# 🏷️ App -[Root](/.) +[🏠 Home](./README.md) -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **Mavluda Beauty Repository** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the app domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 Mavluda Beauty Repository"] - Root --> backend["📁 backend"] - Root --> frontend["📁 frontend"] - Root --> scripts["📁 scripts"] - Root --> _env["📄 .env"] - Root --> _gitignore["📄 .gitignore"] - Root --> _gitignore_append["📄 .gitignore_append"] - Root --> GEMINI_md["📄 GEMINI.md"] - Root --> generate_readmes_py["📄 generate_readmes.py"] + f_app["📁 app"] + f_app --> f_GEMINI_md["📄 GEMINI.md"] + f_app --> f_SECURITY_md["📄 SECURITY.md"] + f_app --> f_backend["📁 backend"] + f_app --> f_frontend["📁 frontend"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `.env` | File | Provides core logic and orchestration for .env. | N/A | -| `.gitignore` | File | Provides core logic and orchestration for .gitignore. | N/A | -| `.gitignore_append` | File | Provides core logic and utilities for this domain. | N/A | -| `GEMINI.md` | Markdown | Provides core logic and orchestration for GEMINI.md. | N/A | -| `generate_readmes.py` | File | Provides core logic and orchestration for generate_readmes.py. | N/A | - -## 🔗 Dependencies -- No external dependencies. - -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './core'; - -// Integrate into the application architecture -relevantMember.execute(); -``` +| `📁 backend` | Directory | Contains child logic and structural domains | None | +| `📁 frontend` | Directory | Contains child logic and structural domains | None | +| `📄 GEMINI.md` | Asset | Structural or configuration definitions. | None | +| `📄 SECURITY.md` | Asset | Structural or configuration definitions. | None | + + +## 🔗 DEPENDENCIES +- No internal path aliases detected. + +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/README.md b/backend/README.md index 709a19b2..ec9d5145 100644 --- a/backend/README.md +++ b/backend/README.md @@ -1,44 +1,42 @@ -# 📁 backend +# 🏷️ Backend -[Root](/.) > [backend](/backend) +[🏠 Home](../README.md) ❯ **backend** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **backend** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the backend domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 backend"] - Root --> src["📁 src"] - Root --> test["📁 test"] - Root --> _prettierrc["📄 .prettierrc"] - Root --> eslint_config_mjs["📄 eslint.config.mjs"] - Root --> nest_cli_json["📄 nest-cli.json"] - Root --> package_lock_json["📄 package-lock.json"] - Root --> package_json["📄 package.json"] - Root --> tsconfig_build_json["📄 tsconfig.build.json"] - Root --> tsconfig_json["📄 tsconfig.json"] + f_backend["📁 backend"] + f_backend --> f_package_lock_json["📄 package-lock.json"] + f_backend --> f_nest_cli_json["📄 nest-cli.json"] + f_backend --> f_eslint_config_mjs["📄 eslint.config.mjs"] + f_backend --> f_tsconfig_json["📄 tsconfig.json"] + f_backend --> f_package_json["📄 package.json"] + f_backend --> f_tsconfig_build_json["📄 tsconfig.build.json"] + f_backend --> f_test["📁 test"] + f_backend --> f_src["📁 src"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `.prettierrc` | File | Provides core logic and orchestration for .prettierrc. | N/A | -| `eslint.config.mjs` | JavaScript | Provides core logic and orchestration for eslint.config.mjs. | N/A | -| `nest-cli.json` | JSON Configuration | Provides core logic and orchestration for nest-cli.json. | N/A | -| `package-lock.json` | JSON Configuration | Provides core logic and orchestration for package-lock.json. | N/A | -| `package.json` | JSON Configuration | Provides core logic and orchestration for package.json. | N/A | -| `tsconfig.build.json` | JSON Configuration | Provides core logic and orchestration for tsconfig.build.json. | N/A | -| `tsconfig.json` | JSON Configuration | Provides core logic and orchestration for tsconfig.json. | N/A | - -## 🔗 Dependencies -- No external dependencies. - -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './backend'; - -// Integrate into the application architecture -relevantMember.execute(); -``` +| `📁 test` | Directory | Contains child logic and structural domains | None | +| `📁 src` | Directory | Contains child logic and structural domains | None | +| `📄 package-lock.json` | Configuration | Structural or configuration definitions. | None | +| `📄 nest-cli.json` | Configuration | Structural or configuration definitions. | None | +| `📄 eslint.config.mjs` | Asset | Structural or configuration definitions. | @eslint/js | +| `📄 tsconfig.json` | Configuration | Structural or configuration definitions. | None | +| `📄 package.json` | Configuration | Structural or configuration definitions. | None | +| `📄 tsconfig.build.json` | Configuration | Structural or configuration definitions. | None | + + +## 🔗 DEPENDENCIES +- `@eslint/js` + +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/README.md b/backend/src/README.md index 50e1e1c3..19ef1c5d 100644 --- a/backend/src/README.md +++ b/backend/src/README.md @@ -1,61 +1,54 @@ -# 📁 src +# 🏷️ Src -[Root](/.) > [backend](/backend) > [src](/backend/src) +[🏠 Home](../../README.md) ❯ [backend](../README.md) ❯ **src** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **src** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the src domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 src"] - Root --> common["📁 common"] - Root --> modules["📁 modules"] - Root --> app_controller_spec_ts["📄 app.controller.spec.ts"] - Root --> app_controller_ts["📄 app.controller.ts"] - Root --> app_module_ts["📄 app.module.ts"] - Root --> app_service_ts["📄 app.service.ts"] - Root --> main_ts["📄 main.ts"] + f_src["📁 src"] + f_src --> f_app_controller_spec_ts["📄 app.controller.spec.ts"] + f_src --> f_main_ts["📄 main.ts"] + f_src --> f_app_module_ts["📄 app.module.ts"] + f_src --> f_app_controller_ts["📄 app.controller.ts"] + f_src --> f_app_service_ts["📄 app.service.ts"] + f_src --> f_common["📁 common"] + f_src --> f_modules["📁 modules"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `app.controller.spec.ts` | TypeScript | Unit testing and quality assurance for app.controller.spec.ts. | @nestjs | -| `app.controller.ts` | TypeScript | Handles incoming HTTP requests and routing for app.controller.ts. | @nestjs | -| `app.module.ts` | TypeScript | Defines the architectural module boundaries for app.module.ts. | @modules, @nestjs | -| `app.service.ts` | TypeScript | Encapsulates business logic and data access for app.service.ts. | @nestjs | -| `main.ts` | TypeScript | Provides core logic and orchestration for main.ts. | @nestjs | - -## 🔗 Dependencies -- `./app.controller` -- `./app.module` -- `./app.service` -- `./common/config/app-config.module` -- `./common/database/database.module` -- `./common/filters/i18n-exception.filter` +| `📁 common` | Directory | Contains child logic and structural domains | None | +| `📁 modules` | Directory | Contains child logic and structural domains | None | +| `📄 app.controller.spec.ts` | Logic/Utility | Structural or configuration definitions. | @nestjs/testing | +| `📄 main.ts` | Logic/Utility | Functions: bootstrap | @nestjs/core, @nestjs/common, @nestjs/config | +| `📄 app.module.ts` | Module | Classes: AppModule | @modules/admin-settings, @nestjs/common, @nestjs/core, @modules/user, @modules/veil, @nestjs/serve-static, @modules/inventory, @modules/treatments, @modules/booking, @modules/partnership, @modules/payment, @modules/auth, @modules/gallery | +| `📄 app.controller.ts` | Controller | Classes: AppController | @nestjs/common | +| `📄 app.service.ts` | Service | Classes: AppService | @nestjs/common | + + +## 🔗 DEPENDENCIES +- `@nestjs/core` +- `@nestjs/common` - `@modules/admin-settings` -- `@modules/auth` -- `@modules/booking` -- `@modules/gallery` -- `@modules/inventory` -- `@modules/partnership` -- `@modules/payment` -- `@modules/treatments` - `@modules/user` +- `@nestjs/testing` - `@modules/veil` -- `@nestjs/common` -- `@nestjs/config` -- `@nestjs/core` - `@nestjs/serve-static` -- `@nestjs/testing` -- `path` - -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './src'; +- `@modules/inventory` +- `@modules/gallery` +- `@nestjs/config` +- `@modules/treatments` +- `@modules/partnership` +- `@modules/payment` +- `@modules/auth` +- `@modules/booking` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/common/README.md b/backend/src/common/README.md index 8fa98efe..4a9cb19e 100644 --- a/backend/src/common/README.md +++ b/backend/src/common/README.md @@ -1,35 +1,44 @@ -# 📁 common +# 🏷️ Common -[Root](/.) > [backend](/backend) > [src](/backend/src) > [common](/backend/src/common) +[🏠 Home](../../../README.md) ❯ [backend](../../README.md) ❯ [src](../README.md) ❯ **common** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **common** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the common domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 common"] - Root --> config["📁 config"] - Root --> constants["📁 constants"] - Root --> database["📁 database"] - Root --> decorators["📁 decorators"] - Root --> filters["📁 filters"] - Root --> guards["📁 guards"] - Root --> interfaces["📁 interfaces"] - Root --> utils["📁 utils"] + f_common["📁 common"] + f_common --> f_database["📁 database"] + f_common --> f_config["📁 config"] + f_common --> f_utils["📁 utils"] + f_common --> f_filters["📁 filters"] + f_common --> f_interfaces["📁 interfaces"] + f_common --> f_seed["📁 seed"] + f_common --> f_guards["📁 guards"] + f_common --> f_decorators["📁 decorators"] + f_common --> f_constants["📁 constants"] ``` -## 📄 File Registry -*No relevant files in this directory.* -## 🔗 Dependencies -- No external dependencies. +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | +|---|---|---|---| +| `📁 database` | Directory | Contains child logic and structural domains | None | +| `📁 config` | Directory | Contains child logic and structural domains | None | +| `📁 utils` | Directory | Contains child logic and structural domains | None | +| `📁 filters` | Directory | Contains child logic and structural domains | None | +| `📁 interfaces` | Directory | Contains child logic and structural domains | None | +| `📁 seed` | Directory | Contains child logic and structural domains | None | +| `📁 guards` | Directory | Contains child logic and structural domains | None | +| `📁 decorators` | Directory | Contains child logic and structural domains | None | +| `📁 constants` | Directory | Contains child logic and structural domains | None | -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './common'; -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🔗 DEPENDENCIES +- No internal path aliases detected. + +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/common/config/README.md b/backend/src/common/config/README.md index f4bdd1f7..2536e9dd 100644 --- a/backend/src/common/config/README.md +++ b/backend/src/common/config/README.md @@ -1,41 +1,35 @@ -# 📁 config +# 🏷️ Config -[Root](/.) > [backend](/backend) > [src](/backend/src) > [common](/backend/src/common) > [config](/backend/src/common/config) +[🏠 Home](../../../../README.md) ❯ [backend](../../../README.md) ❯ [src](../../README.md) ❯ [common](../README.md) ❯ **config** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **config** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the config domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 config"] - Root --> app_config_module_ts["📄 app-config.module.ts"] - Root --> app_config_service_ts["📄 app-config.service.ts"] - Root --> configuration_ts["📄 configuration.ts"] - Root --> env_validation_ts["📄 env.validation.ts"] + f_config["📁 config"] + f_config --> f_app_config_service_ts["📄 app-config.service.ts"] + f_config --> f_env_validation_ts["📄 env.validation.ts"] + f_config --> f_configuration_ts["📄 configuration.ts"] + f_config --> f_app_config_module_ts["📄 app-config.module.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `app-config.module.ts` | TypeScript | Defines the architectural module boundaries for app-config.module.ts. | @nestjs | -| `app-config.service.ts` | TypeScript | Encapsulates business logic and data access for app-config.service.ts. | @nestjs | -| `configuration.ts` | TypeScript | Provides core logic and orchestration for configuration.ts. | N/A | -| `env.validation.ts` | TypeScript | Provides core logic and orchestration for env.validation.ts. | N/A | - -## 🔗 Dependencies -- `./app-config.service` -- `./configuration` -- `./env.validation` +| `📄 app-config.service.ts` | Service | Classes: AppConfigService | @nestjs/common, @nestjs/config | +| `📄 env.validation.ts` | Logic/Utility | Classes: EnvironmentVariables | Functions: validate | None | +| `📄 configuration.ts` | Logic/Utility | Structural or configuration definitions. | None | +| `📄 app-config.module.ts` | Module | Classes: AppConfigModule | @nestjs/common, @nestjs/config | + + +## 🔗 DEPENDENCIES - `@nestjs/common` - `@nestjs/config` -- `class-transformer` - -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './config'; -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/common/constants/README.md b/backend/src/common/constants/README.md index 5d4061b0..40c06ba5 100644 --- a/backend/src/common/constants/README.md +++ b/backend/src/common/constants/README.md @@ -1,30 +1,28 @@ -# 📁 constants +# 🏷️ Constants -[Root](/.) > [backend](/backend) > [src](/backend/src) > [common](/backend/src/common) > [constants](/backend/src/common/constants) +[🏠 Home](../../../../README.md) ❯ [backend](../../../README.md) ❯ [src](../../README.md) ❯ [common](../README.md) ❯ **constants** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **constants** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the constants domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 constants"] - Root --> error_messages_constant_ts["📄 error-messages.constant.ts"] + f_constants["📁 constants"] + f_constants --> f_error_messages_constant_ts["📄 error-messages.constant.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `error-messages.constant.ts` | TypeScript | Provides core logic and orchestration for error-messages.constant.ts. | N/A | +| `📄 error-messages.constant.ts` | Logic/Utility | Structural or configuration definitions. | None | -## 🔗 Dependencies -- No external dependencies. -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './constants'; +## 🔗 DEPENDENCIES +- No internal path aliases detected. -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/common/database/README.md b/backend/src/common/database/README.md index f4b9cc00..2a5421a1 100644 --- a/backend/src/common/database/README.md +++ b/backend/src/common/database/README.md @@ -1,32 +1,30 @@ -# 📁 database +# 🏷️ Database -[Root](/.) > [backend](/backend) > [src](/backend/src) > [common](/backend/src/common) > [database](/backend/src/common/database) +[🏠 Home](../../../../README.md) ❯ [backend](../../../README.md) ❯ [src](../../README.md) ❯ [common](../README.md) ❯ **database** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **database** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the database domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 database"] - Root --> database_module_ts["📄 database.module.ts"] + f_database["📁 database"] + f_database --> f_database_module_ts["📄 database.module.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `database.module.ts` | TypeScript | Defines the architectural module boundaries for database.module.ts. | @nestjs | +| `📄 database.module.ts` | Module | Classes: DatabaseModule | @nestjs/common, @nestjs/mongoose, @nestjs/config | -## 🔗 Dependencies + +## 🔗 DEPENDENCIES - `@nestjs/common` -- `@nestjs/config` - `@nestjs/mongoose` +- `@nestjs/config` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './database'; - -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/common/decorators/README.md b/backend/src/common/decorators/README.md index b6ce6194..debbbfca 100644 --- a/backend/src/common/decorators/README.md +++ b/backend/src/common/decorators/README.md @@ -1,32 +1,30 @@ -# 📁 decorators +# 🏷️ Decorators -[Root](/.) > [backend](/backend) > [src](/backend/src) > [common](/backend/src/common) > [decorators](/backend/src/common/decorators) +[🏠 Home](../../../../README.md) ❯ [backend](../../../README.md) ❯ [src](../../README.md) ❯ [common](../README.md) ❯ **decorators** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **decorators** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the decorators domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 decorators"] - Root --> public_decorator_ts["📄 public.decorator.ts"] - Root --> roles_decorator_ts["📄 roles.decorator.ts"] + f_decorators["📁 decorators"] + f_decorators --> f_public_decorator_ts["📄 public.decorator.ts"] + f_decorators --> f_roles_decorator_ts["📄 roles.decorator.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `public.decorator.ts` | TypeScript | Provides core logic and orchestration for public.decorator.ts. | @nestjs | -| `roles.decorator.ts` | TypeScript | Provides core logic and orchestration for roles.decorator.ts. | @nestjs | +| `📄 public.decorator.ts` | Logic/Utility | Structural or configuration definitions. | @nestjs/common | +| `📄 roles.decorator.ts` | Logic/Utility | Structural or configuration definitions. | @nestjs/common | -## 🔗 Dependencies -- `@nestjs/common` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './decorators'; +## 🔗 DEPENDENCIES +- `@nestjs/common` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/common/filters/README.md b/backend/src/common/filters/README.md index e7b58835..e45fe8ef 100644 --- a/backend/src/common/filters/README.md +++ b/backend/src/common/filters/README.md @@ -1,31 +1,28 @@ -# 📁 filters +# 🏷️ Filters -[Root](/.) > [backend](/backend) > [src](/backend/src) > [common](/backend/src/common) > [filters](/backend/src/common/filters) +[🏠 Home](../../../../README.md) ❯ [backend](../../../README.md) ❯ [src](../../README.md) ❯ [common](../README.md) ❯ **filters** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **filters** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the filters domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 filters"] - Root --> i18n_exception_filter_ts["📄 i18n-exception.filter.ts"] + f_filters["📁 filters"] + f_filters --> f_i18n_exception_filter_ts["📄 i18n-exception.filter.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `i18n-exception.filter.ts` | TypeScript | Provides core logic and orchestration for i18n-exception.filter.ts. | N/A | +| `📄 i18n-exception.filter.ts` | Logic/Utility | Classes: I18nExceptionFilter | @nestjs/common | -## 🔗 Dependencies -- `../constants/error-messages.constant` -- `express` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './filters'; +## 🔗 DEPENDENCIES +- `@nestjs/common` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/common/guards/README.md b/backend/src/common/guards/README.md index 75d32eec..7c0bf109 100644 --- a/backend/src/common/guards/README.md +++ b/backend/src/common/guards/README.md @@ -1,36 +1,32 @@ -# 📁 guards +# 🏷️ Guards -[Root](/.) > [backend](/backend) > [src](/backend/src) > [common](/backend/src/common) > [guards](/backend/src/common/guards) +[🏠 Home](../../../../README.md) ❯ [backend](../../../README.md) ❯ [src](../../README.md) ❯ [common](../README.md) ❯ **guards** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **guards** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the guards domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 guards"] - Root --> jwt_auth_guard_ts["📄 jwt-auth.guard.ts"] - Root --> roles_guard_ts["📄 roles.guard.ts"] + f_guards["📁 guards"] + f_guards --> f_roles_guard_ts["📄 roles.guard.ts"] + f_guards --> f_jwt_auth_guard_ts["📄 jwt-auth.guard.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `jwt-auth.guard.ts` | TypeScript | Provides core logic and orchestration for jwt-auth.guard.ts. | @nestjs | -| `roles.guard.ts` | TypeScript | Provides core logic and orchestration for roles.guard.ts. | @nestjs | +| `📄 roles.guard.ts` | Service | Classes: RolesGuard | @nestjs/core, @nestjs/common | +| `📄 jwt-auth.guard.ts` | Service | Classes: JwtAuthGuard | @nestjs/core, @nestjs/common, @nestjs/passport | -## 🔗 Dependencies -- `../decorators/public.decorator` -- `../decorators/roles.decorator` -- `@nestjs/common` + +## 🔗 DEPENDENCIES - `@nestjs/core` +- `@nestjs/common` - `@nestjs/passport` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './guards'; - -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/common/interfaces/README.md b/backend/src/common/interfaces/README.md index 6995df09..747dab86 100644 --- a/backend/src/common/interfaces/README.md +++ b/backend/src/common/interfaces/README.md @@ -1,30 +1,28 @@ -# 📁 interfaces +# 🏷️ Interfaces -[Root](/.) > [backend](/backend) > [src](/backend/src) > [common](/backend/src/common) > [interfaces](/backend/src/common/interfaces) +[🏠 Home](../../../../README.md) ❯ [backend](../../../README.md) ❯ [src](../../README.md) ❯ [common](../README.md) ❯ **interfaces** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **interfaces** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the interfaces domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 interfaces"] - Root --> authenticated_request_interface_ts["📄 authenticated-request.interface.ts"] + f_interfaces["📁 interfaces"] + f_interfaces --> f_authenticated_request_interface_ts["📄 authenticated-request.interface.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `authenticated-request.interface.ts` | TypeScript | Provides core logic and orchestration for authenticated-request.interface.ts. | N/A | +| `📄 authenticated-request.interface.ts` | Logic/Utility | Structural or configuration definitions. | None | -## 🔗 Dependencies -- `express` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './interfaces'; +## 🔗 DEPENDENCIES +- No internal path aliases detected. -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/common/seed/README.md b/backend/src/common/seed/README.md new file mode 100644 index 00000000..3361bf0c --- /dev/null +++ b/backend/src/common/seed/README.md @@ -0,0 +1,34 @@ +# 🏷️ Seed + +[🏠 Home](../../../../README.md) ❯ [backend](../../../README.md) ❯ [src](../../README.md) ❯ [common](../README.md) ❯ **seed** + +**FSD Layer:** `App` + +## 🎯 PURPOSE +Core implementation for the seed domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE +```mermaid +graph TD + f_seed["📁 seed"] + f_seed --> f_seed_module_ts["📄 seed.module.ts"] + f_seed --> f_seed_service_ts["📄 seed.service.ts"] +``` + + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | +|---|---|---|---| +| `📄 seed.module.ts` | Module | Classes: SeedModule | @nestjs/common, @common/config/app-config.module, @modules/user | +| `📄 seed.service.ts` | Service | Classes: SeedService | @nestjs/common, @modules/user/domain/user.entity, @modules/user, @common/config/app-config.service | + + +## 🔗 DEPENDENCIES +- `@nestjs/common` +- `@common/config/app-config.module` +- `@modules/user` +- `@modules/user/domain/user.entity` +- `@common/config/app-config.service` + +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/common/utils/README.md b/backend/src/common/utils/README.md index 21591410..af2a5e34 100644 --- a/backend/src/common/utils/README.md +++ b/backend/src/common/utils/README.md @@ -1,36 +1,32 @@ -# 📁 utils +# 🏷️ Utils -[Root](/.) > [backend](/backend) > [src](/backend/src) > [common](/backend/src/common) > [utils](/backend/src/common/utils) +[🏠 Home](../../../../README.md) ❯ [backend](../../../README.md) ❯ [src](../../README.md) ❯ [common](../README.md) ❯ **utils** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **utils** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the utils domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 utils"] - Root --> file_system_ts["📄 file-system.ts"] - Root --> index_ts["📄 index.ts"] - Root --> object_ts["📄 object.ts"] + f_utils["📁 utils"] + f_utils --> f_object_ts["📄 object.ts"] + f_utils --> f_index_ts["📄 index.ts"] + f_utils --> f_file_system_ts["📄 file-system.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `file-system.ts` | TypeScript | Provides core logic and orchestration for file-system.ts. | N/A | -| `index.ts` | TypeScript | Provides core logic and orchestration for index.ts. | N/A | -| `object.ts` | TypeScript | Provides core logic and orchestration for object.ts. | N/A | - -## 🔗 Dependencies -- `fs` -- `path` -- `util` - -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './utils'; - -// Integrate into the application architecture -relevantMember.execute(); -``` +| `📄 object.ts` | Logic/Utility | Functions: deleteProperties | None | +| `📄 index.ts` | Logic/Utility | Structural or configuration definitions. | None | +| `📄 file-system.ts` | Logic/Utility | Functions: fileDelete, deleteFileSafe | None | + + +## 🔗 DEPENDENCIES +- No internal path aliases detected. + +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/README.md b/backend/src/modules/README.md index 91538132..6b251a55 100644 --- a/backend/src/modules/README.md +++ b/backend/src/modules/README.md @@ -1,37 +1,46 @@ -# 📁 modules +# 🏷️ Modules -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) +[🏠 Home](../../../README.md) ❯ [backend](../../README.md) ❯ [src](../README.md) ❯ **modules** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **modules** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the modules domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 modules"] - Root --> admin-settings["📁 admin-settings"] - Root --> auth["📁 auth"] - Root --> booking["📁 booking"] - Root --> gallery["📁 gallery"] - Root --> inventory["📁 inventory"] - Root --> partnership["📁 partnership"] - Root --> payment["📁 payment"] - Root --> treatments["📁 treatments"] - Root --> user["📁 user"] - Root --> veil["📁 veil"] + f_modules["📁 modules"] + f_modules --> f_gallery["📁 gallery"] + f_modules --> f_user["📁 user"] + f_modules --> f_treatments["📁 treatments"] + f_modules --> f_admin_settings["📁 admin-settings"] + f_modules --> f_veil["📁 veil"] + f_modules --> f_payment["📁 payment"] + f_modules --> f_booking["📁 booking"] + f_modules --> f_inventory["📁 inventory"] + f_modules --> f_partnership["📁 partnership"] + f_modules --> f_auth["📁 auth"] ``` -## 📄 File Registry -*No relevant files in this directory.* -## 🔗 Dependencies -- No external dependencies. +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | +|---|---|---|---| +| `📁 gallery` | Directory | Contains child logic and structural domains | None | +| `📁 user` | Directory | Contains child logic and structural domains | None | +| `📁 treatments` | Directory | Contains child logic and structural domains | None | +| `📁 admin-settings` | Directory | Contains child logic and structural domains | None | +| `📁 veil` | Directory | Contains child logic and structural domains | None | +| `📁 payment` | Directory | Contains child logic and structural domains | None | +| `📁 booking` | Directory | Contains child logic and structural domains | None | +| `📁 inventory` | Directory | Contains child logic and structural domains | None | +| `📁 partnership` | Directory | Contains child logic and structural domains | None | +| `📁 auth` | Directory | Contains child logic and structural domains | None | -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './modules'; -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🔗 DEPENDENCIES +- No internal path aliases detected. + +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/admin-settings/README.md b/backend/src/modules/admin-settings/README.md index 4c0e03d6..8f3c766f 100644 --- a/backend/src/modules/admin-settings/README.md +++ b/backend/src/modules/admin-settings/README.md @@ -1,40 +1,39 @@ -# 📁 admin-settings +# 🏷️ Admin-settings -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [admin-settings](/backend/src/modules/admin-settings) +[🏠 Home](../../../../README.md) ❯ [backend](../../../README.md) ❯ [src](../../README.md) ❯ [modules](../README.md) ❯ **admin-settings** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **admin-settings** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the admin-settings domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 admin-settings"] - Root --> application["📁 application"] - Root --> domain["📁 domain"] - Root --> infrastructure["📁 infrastructure"] - Root --> presentation["📁 presentation"] - Root --> admin_settings_module_ts["📄 admin-settings.module.ts"] - Root --> index_ts["📄 index.ts"] + f_admin_settings["📁 admin-settings"] + f_admin_settings --> f_index_ts["📄 index.ts"] + f_admin_settings --> f_admin_settings_module_ts["📄 admin-settings.module.ts"] + f_admin_settings --> f_infrastructure["📁 infrastructure"] + f_admin_settings --> f_presentation["📁 presentation"] + f_admin_settings --> f_domain["📁 domain"] + f_admin_settings --> f_application["📁 application"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `admin-settings.module.ts` | TypeScript | Defines the architectural module boundaries for admin-settings.module.ts. | @nestjs | -| `index.ts` | TypeScript | Provides core logic and orchestration for index.ts. | N/A | +| `📁 infrastructure` | Directory | Contains child logic and structural domains | None | +| `📁 presentation` | Directory | Contains child logic and structural domains | None | +| `📁 domain` | Directory | Contains child logic and structural domains | None | +| `📁 application` | Directory | Contains child logic and structural domains | None | +| `📄 index.ts` | Logic/Utility | Structural or configuration definitions. | None | +| `📄 admin-settings.module.ts` | Module | Classes: AdminSettingsModule | @nestjs/common, @nestjs/mongoose | + -## 🔗 Dependencies -- `./application/admin-settings.service` -- `./infrastructure/repositories/admin-settings.repository` -- `./presentation/admin-settings.controller` +## 🔗 DEPENDENCIES - `@nestjs/common` - `@nestjs/mongoose` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './admin-settings'; - -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/admin-settings/application/README.md b/backend/src/modules/admin-settings/application/README.md index 44cd7b31..8e877b2b 100644 --- a/backend/src/modules/admin-settings/application/README.md +++ b/backend/src/modules/admin-settings/application/README.md @@ -1,32 +1,28 @@ -# 📁 application +# 🏷️ Application -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [admin-settings](/backend/src/modules/admin-settings) > [application](/backend/src/modules/admin-settings/application) +[🏠 Home](../../../../../README.md) ❯ [backend](../../../../README.md) ❯ [src](../../../README.md) ❯ [modules](../../README.md) ❯ [admin-settings](../README.md) ❯ **application** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **application** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the application domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 application"] - Root --> admin_settings_service_ts["📄 admin-settings.service.ts"] + f_application["📁 application"] + f_application --> f_admin_settings_service_ts["📄 admin-settings.service.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `admin-settings.service.ts` | TypeScript | Encapsulates business logic and data access for admin-settings.service.ts. | @nestjs | +| `📄 admin-settings.service.ts` | Service | Classes: AdminSettingsService | @nestjs/common | -## 🔗 Dependencies -- `../domain/admin-settings.entity` -- `../infrastructure/repositories/admin-settings.repository` -- `@nestjs/common` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './application'; +## 🔗 DEPENDENCIES +- `@nestjs/common` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/admin-settings/domain/README.md b/backend/src/modules/admin-settings/domain/README.md index b7b40f4b..fde6de67 100644 --- a/backend/src/modules/admin-settings/domain/README.md +++ b/backend/src/modules/admin-settings/domain/README.md @@ -1,31 +1,30 @@ -# 📁 domain +# 🏷️ Domain -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [admin-settings](/backend/src/modules/admin-settings) > [domain](/backend/src/modules/admin-settings/domain) +[🏠 Home](../../../../../README.md) ❯ [backend](../../../../README.md) ❯ [src](../../../README.md) ❯ [modules](../../README.md) ❯ [admin-settings](../README.md) ❯ **domain** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **domain** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the domain domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 domain"] - Root --> interfaces["📁 interfaces"] - Root --> admin_settings_entity_ts["📄 admin-settings.entity.ts"] + f_domain["📁 domain"] + f_domain --> f_admin_settings_entity_ts["📄 admin-settings.entity.ts"] + f_domain --> f_interfaces["📁 interfaces"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `admin-settings.entity.ts` | TypeScript | Provides core logic and orchestration for admin-settings.entity.ts. | N/A | +| `📁 interfaces` | Directory | Contains child logic and structural domains | None | +| `📄 admin-settings.entity.ts` | Logic/Utility | Classes: AdminSettings | None | -## 🔗 Dependencies -- No external dependencies. -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './domain'; +## 🔗 DEPENDENCIES +- No internal path aliases detected. -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/admin-settings/domain/interfaces/README.md b/backend/src/modules/admin-settings/domain/interfaces/README.md index 7248dcc5..44864b1b 100644 --- a/backend/src/modules/admin-settings/domain/interfaces/README.md +++ b/backend/src/modules/admin-settings/domain/interfaces/README.md @@ -1,30 +1,28 @@ -# 📁 interfaces +# 🏷️ Interfaces -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [admin-settings](/backend/src/modules/admin-settings) > [domain](/backend/src/modules/admin-settings/domain) > [interfaces](/backend/src/modules/admin-settings/domain/interfaces) +[🏠 Home](../../../../../../README.md) ❯ [backend](../../../../../README.md) ❯ [src](../../../../README.md) ❯ [modules](../../../README.md) ❯ [admin-settings](../../README.md) ❯ [domain](../README.md) ❯ **interfaces** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **interfaces** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the interfaces domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 interfaces"] - Root --> admin_settings_interface_ts["📄 admin-settings.interface.ts"] + f_interfaces["📁 interfaces"] + f_interfaces --> f_admin_settings_interface_ts["📄 admin-settings.interface.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `admin-settings.interface.ts` | TypeScript | Provides core logic and orchestration for admin-settings.interface.ts. | N/A | +| `📄 admin-settings.interface.ts` | Logic/Utility | Structural or configuration definitions. | None | -## 🔗 Dependencies -- No external dependencies. -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './interfaces'; +## 🔗 DEPENDENCIES +- No internal path aliases detected. -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/admin-settings/infrastructure/README.md b/backend/src/modules/admin-settings/infrastructure/README.md index e1c84866..759bc5af 100644 --- a/backend/src/modules/admin-settings/infrastructure/README.md +++ b/backend/src/modules/admin-settings/infrastructure/README.md @@ -1,29 +1,30 @@ -# 📁 infrastructure +# 🏷️ Infrastructure -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [admin-settings](/backend/src/modules/admin-settings) > [infrastructure](/backend/src/modules/admin-settings/infrastructure) +[🏠 Home](../../../../../README.md) ❯ [backend](../../../../README.md) ❯ [src](../../../README.md) ❯ [modules](../../README.md) ❯ [admin-settings](../README.md) ❯ **infrastructure** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **infrastructure** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the infrastructure domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 infrastructure"] - Root --> repositories["📁 repositories"] - Root --> schemas["📁 schemas"] + f_infrastructure["📁 infrastructure"] + f_infrastructure --> f_repositories["📁 repositories"] + f_infrastructure --> f_schemas["📁 schemas"] ``` -## 📄 File Registry -*No relevant files in this directory.* -## 🔗 Dependencies -- No external dependencies. +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | +|---|---|---|---| +| `📁 repositories` | Directory | Contains child logic and structural domains | None | +| `📁 schemas` | Directory | Contains child logic and structural domains | None | -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './infrastructure'; -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🔗 DEPENDENCIES +- No internal path aliases detected. + +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/admin-settings/infrastructure/repositories/README.md b/backend/src/modules/admin-settings/infrastructure/repositories/README.md index ad6004a7..fc1de40f 100644 --- a/backend/src/modules/admin-settings/infrastructure/repositories/README.md +++ b/backend/src/modules/admin-settings/infrastructure/repositories/README.md @@ -1,33 +1,29 @@ -# 📁 repositories +# 🏷️ Repositories -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [admin-settings](/backend/src/modules/admin-settings) > [infrastructure](/backend/src/modules/admin-settings/infrastructure) > [repositories](/backend/src/modules/admin-settings/infrastructure/repositories) +[🏠 Home](../../../../../../README.md) ❯ [backend](../../../../../README.md) ❯ [src](../../../../README.md) ❯ [modules](../../../README.md) ❯ [admin-settings](../../README.md) ❯ [infrastructure](../README.md) ❯ **repositories** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **repositories** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the repositories domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 repositories"] - Root --> admin_settings_repository_ts["📄 admin-settings.repository.ts"] + f_repositories["📁 repositories"] + f_repositories --> f_admin_settings_repository_ts["📄 admin-settings.repository.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `admin-settings.repository.ts` | TypeScript | Provides core logic and orchestration for admin-settings.repository.ts. | @nestjs | +| `📄 admin-settings.repository.ts` | Service | Classes: AdminSettingsRepository | @nestjs/common, @nestjs/mongoose | + -## 🔗 Dependencies -- `../../domain/admin-settings.entity` +## 🔗 DEPENDENCIES - `@nestjs/common` - `@nestjs/mongoose` -- `mongoose` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './repositories'; - -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/admin-settings/infrastructure/schemas/README.md b/backend/src/modules/admin-settings/infrastructure/schemas/README.md index f461acff..506577c8 100644 --- a/backend/src/modules/admin-settings/infrastructure/schemas/README.md +++ b/backend/src/modules/admin-settings/infrastructure/schemas/README.md @@ -1,31 +1,28 @@ -# 📁 schemas +# 🏷️ Schemas -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [admin-settings](/backend/src/modules/admin-settings) > [infrastructure](/backend/src/modules/admin-settings/infrastructure) > [schemas](/backend/src/modules/admin-settings/infrastructure/schemas) +[🏠 Home](../../../../../../README.md) ❯ [backend](../../../../../README.md) ❯ [src](../../../../README.md) ❯ [modules](../../../README.md) ❯ [admin-settings](../../README.md) ❯ [infrastructure](../README.md) ❯ **schemas** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **schemas** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the schemas domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 schemas"] - Root --> admin_settings_schema_ts["📄 admin-settings.schema.ts"] + f_schemas["📁 schemas"] + f_schemas --> f_admin_settings_schema_ts["📄 admin-settings.schema.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `admin-settings.schema.ts` | TypeScript | Provides core logic and orchestration for admin-settings.schema.ts. | @nestjs | +| `📄 admin-settings.schema.ts` | Logic/Utility | Classes: AdminSettingsSchemaEntity | @nestjs/mongoose | -## 🔗 Dependencies -- `@nestjs/mongoose` -- `mongoose` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './schemas'; +## 🔗 DEPENDENCIES +- `@nestjs/mongoose` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/admin-settings/presentation/README.md b/backend/src/modules/admin-settings/presentation/README.md index e5c24bc2..b53f63ff 100644 --- a/backend/src/modules/admin-settings/presentation/README.md +++ b/backend/src/modules/admin-settings/presentation/README.md @@ -1,34 +1,30 @@ -# 📁 presentation +# 🏷️ Presentation -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [admin-settings](/backend/src/modules/admin-settings) > [presentation](/backend/src/modules/admin-settings/presentation) +[🏠 Home](../../../../../README.md) ❯ [backend](../../../../README.md) ❯ [src](../../../README.md) ❯ [modules](../../README.md) ❯ [admin-settings](../README.md) ❯ **presentation** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **presentation** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the presentation domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 presentation"] - Root --> dto["📁 dto"] - Root --> admin_settings_controller_ts["📄 admin-settings.controller.ts"] + f_presentation["📁 presentation"] + f_presentation --> f_admin_settings_controller_ts["📄 admin-settings.controller.ts"] + f_presentation --> f_dto["📁 dto"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `admin-settings.controller.ts` | TypeScript | Handles incoming HTTP requests and routing for admin-settings.controller.ts. | N/A | +| `📁 dto` | Directory | Contains child logic and structural domains | None | +| `📄 admin-settings.controller.ts` | Controller | Classes: AdminSettingsController | @nestjs/common | -## 🔗 Dependencies -- `../application/admin-settings.service` -- `../domain/admin-settings.entity` -- `./dto/create-admin-settings.dto` -- `./dto/update-admin-settings.dto` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './presentation'; +## 🔗 DEPENDENCIES +- `@nestjs/common` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/admin-settings/presentation/dto/README.md b/backend/src/modules/admin-settings/presentation/dto/README.md index 8e396cf8..67f54f5b 100644 --- a/backend/src/modules/admin-settings/presentation/dto/README.md +++ b/backend/src/modules/admin-settings/presentation/dto/README.md @@ -1,34 +1,30 @@ -# 📁 dto +# 🏷️ Dto -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [admin-settings](/backend/src/modules/admin-settings) > [presentation](/backend/src/modules/admin-settings/presentation) > [dto](/backend/src/modules/admin-settings/presentation/dto) +[🏠 Home](../../../../../../README.md) ❯ [backend](../../../../../README.md) ❯ [src](../../../../README.md) ❯ [modules](../../../README.md) ❯ [admin-settings](../../README.md) ❯ [presentation](../README.md) ❯ **dto** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **dto** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the dto domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 dto"] - Root --> create_admin_settings_dto_ts["📄 create-admin-settings.dto.ts"] - Root --> update_admin_settings_dto_ts["📄 update-admin-settings.dto.ts"] + f_dto["📁 dto"] + f_dto --> f_create_admin_settings_dto_ts["📄 create-admin-settings.dto.ts"] + f_dto --> f_update_admin_settings_dto_ts["📄 update-admin-settings.dto.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `create-admin-settings.dto.ts` | TypeScript | Provides core logic and orchestration for create-admin-settings.dto.ts. | N/A | -| `update-admin-settings.dto.ts` | TypeScript | Provides core logic and orchestration for update-admin-settings.dto.ts. | @nestjs | +| `📄 create-admin-settings.dto.ts` | Logic/Utility | Classes: LocationDto, OwnerInfoDto, CreateAdminSettingsDto | None | +| `📄 update-admin-settings.dto.ts` | Logic/Utility | Classes: UpdateAdminSettingsDto | @nestjs/mapped-types | -## 🔗 Dependencies -- `./create-admin-settings.dto` -- `@nestjs/mapped-types` -- `class-transformer` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './dto'; +## 🔗 DEPENDENCIES +- `@nestjs/mapped-types` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/auth/README.md b/backend/src/modules/auth/README.md index 6e5d3d54..4b3dee5f 100644 --- a/backend/src/modules/auth/README.md +++ b/backend/src/modules/auth/README.md @@ -1,56 +1,48 @@ -# 📁 auth +# 🏷️ Auth -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [auth](/backend/src/modules/auth) +[🏠 Home](../../../../README.md) ❯ [backend](../../../README.md) ❯ [src](../../README.md) ❯ [modules](../README.md) ❯ **auth** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **auth** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the auth domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 auth"] - Root --> dto["📁 dto"] - Root --> infrastructure["📁 infrastructure"] - Root --> interfaces["📁 interfaces"] - Root --> auth_controller_ts["📄 auth.controller.ts"] - Root --> auth_module_ts["📄 auth.module.ts"] - Root --> auth_service_ts["📄 auth.service.ts"] - Root --> index_ts["📄 index.ts"] - Root --> telegram_auth_service_ts["📄 telegram-auth.service.ts"] + f_auth["📁 auth"] + f_auth --> f_auth_module_ts["📄 auth.module.ts"] + f_auth --> f_auth_service_ts["📄 auth.service.ts"] + f_auth --> f_telegram_auth_service_ts["📄 telegram-auth.service.ts"] + f_auth --> f_index_ts["📄 index.ts"] + f_auth --> f_auth_controller_ts["📄 auth.controller.ts"] + f_auth --> f_infrastructure["📁 infrastructure"] + f_auth --> f_dto["📁 dto"] + f_auth --> f_interfaces["📁 interfaces"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `auth.controller.ts` | TypeScript | Handles incoming HTTP requests and routing for auth.controller.ts. | @common | -| `auth.module.ts` | TypeScript | Defines the architectural module boundaries for auth.module.ts. | @common, @modules, @nestjs | -| `auth.service.ts` | TypeScript | Encapsulates business logic and data access for auth.service.ts. | @modules, @nestjs | -| `index.ts` | TypeScript | Provides core logic and orchestration for index.ts. | N/A | -| `telegram-auth.service.ts` | TypeScript | Encapsulates business logic and data access for telegram-auth.service.ts. | @common, @modules, @nestjs | - -## 🔗 Dependencies -- `./auth.controller` -- `./auth.service` -- `./dto/login.dto` -- `./dto/register.dto` -- `./infrastructure/jwt.strategy` -- `./interfaces/auth-response.interface` -- `./telegram-auth.service` +| `📁 infrastructure` | Directory | Contains child logic and structural domains | None | +| `📁 dto` | Directory | Contains child logic and structural domains | None | +| `📁 interfaces` | Directory | Contains child logic and structural domains | None | +| `📄 auth.module.ts` | Module | Classes: AuthModule | @nestjs/common, @common/config/app-config.module, @modules/user, @nestjs/passport, @nestjs/jwt, @common/config/app-config.service | +| `📄 auth.service.ts` | Service | Classes: AuthService | @nestjs/common, @nestjs/jwt, @modules/user, @common/config/app-config.service | +| `📄 telegram-auth.service.ts` | Service | Classes: TelegramAuthService | @nestjs/common, @common/config/app-config.service, @modules/user | +| `📄 index.ts` | Logic/Utility | Structural or configuration definitions. | None | +| `📄 auth.controller.ts` | Controller | Classes: AuthController | @nestjs/common, @common/decorators/public.decorator | + + +## 🔗 DEPENDENCIES +- `@nestjs/common` - `@common/config/app-config.module` -- `@common/config/app-config.service` -- `@common/decorators/public.decorator` - `@modules/user` -- `@nestjs/common` -- `@nestjs/jwt` +- `@common/decorators/public.decorator` - `@nestjs/passport` -- `bcrypt` -- `crypto` - -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './auth'; +- `@nestjs/jwt` +- `@common/config/app-config.service` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/auth/dto/README.md b/backend/src/modules/auth/dto/README.md index 61523a1b..674214bb 100644 --- a/backend/src/modules/auth/dto/README.md +++ b/backend/src/modules/auth/dto/README.md @@ -1,32 +1,30 @@ -# 📁 dto +# 🏷️ Dto -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [auth](/backend/src/modules/auth) > [dto](/backend/src/modules/auth/dto) +[🏠 Home](../../../../../README.md) ❯ [backend](../../../../README.md) ❯ [src](../../../README.md) ❯ [modules](../../README.md) ❯ [auth](../README.md) ❯ **dto** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **dto** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the dto domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 dto"] - Root --> login_dto_ts["📄 login.dto.ts"] - Root --> register_dto_ts["📄 register.dto.ts"] + f_dto["📁 dto"] + f_dto --> f_register_dto_ts["📄 register.dto.ts"] + f_dto --> f_login_dto_ts["📄 login.dto.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `login.dto.ts` | TypeScript | Provides core logic and orchestration for login.dto.ts. | N/A | -| `register.dto.ts` | TypeScript | Provides core logic and orchestration for register.dto.ts. | N/A | +| `📄 register.dto.ts` | Logic/Utility | Classes: RegisterDto | None | +| `📄 login.dto.ts` | Logic/Utility | Classes: LoginDto | None | -## 🔗 Dependencies -- `class-validator` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './dto'; +## 🔗 DEPENDENCIES +- No internal path aliases detected. -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/auth/infrastructure/README.md b/backend/src/modules/auth/infrastructure/README.md index ccea957b..60e752ce 100644 --- a/backend/src/modules/auth/infrastructure/README.md +++ b/backend/src/modules/auth/infrastructure/README.md @@ -1,34 +1,30 @@ -# 📁 infrastructure +# 🏷️ Infrastructure -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [auth](/backend/src/modules/auth) > [infrastructure](/backend/src/modules/auth/infrastructure) +[🏠 Home](../../../../../README.md) ❯ [backend](../../../../README.md) ❯ [src](../../../README.md) ❯ [modules](../../README.md) ❯ [auth](../README.md) ❯ **infrastructure** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **infrastructure** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the infrastructure domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 infrastructure"] - Root --> jwt_strategy_ts["📄 jwt.strategy.ts"] + f_infrastructure["📁 infrastructure"] + f_infrastructure --> f_jwt_strategy_ts["📄 jwt.strategy.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `jwt.strategy.ts` | TypeScript | Provides core logic and orchestration for jwt.strategy.ts. | @common, @nestjs | +| `📄 jwt.strategy.ts` | Service | Classes: JwtStrategy | @nestjs/common, @nestjs/passport, @common/config/app-config.service | -## 🔗 Dependencies -- `../interfaces/jwt-payload.interface` -- `@common/config/app-config.service` + +## 🔗 DEPENDENCIES - `@nestjs/common` - `@nestjs/passport` -- `passport-jwt` - -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './infrastructure'; +- `@common/config/app-config.service` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/auth/interfaces/README.md b/backend/src/modules/auth/interfaces/README.md index 522e7e26..9fb67717 100644 --- a/backend/src/modules/auth/interfaces/README.md +++ b/backend/src/modules/auth/interfaces/README.md @@ -1,32 +1,30 @@ -# 📁 interfaces +# 🏷️ Interfaces -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [auth](/backend/src/modules/auth) > [interfaces](/backend/src/modules/auth/interfaces) +[🏠 Home](../../../../../README.md) ❯ [backend](../../../../README.md) ❯ [src](../../../README.md) ❯ [modules](../../README.md) ❯ [auth](../README.md) ❯ **interfaces** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **interfaces** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the interfaces domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 interfaces"] - Root --> auth_response_interface_ts["📄 auth-response.interface.ts"] - Root --> jwt_payload_interface_ts["📄 jwt-payload.interface.ts"] + f_interfaces["📁 interfaces"] + f_interfaces --> f_auth_response_interface_ts["📄 auth-response.interface.ts"] + f_interfaces --> f_jwt_payload_interface_ts["📄 jwt-payload.interface.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `auth-response.interface.ts` | TypeScript | Provides core logic and orchestration for auth-response.interface.ts. | @modules | -| `jwt-payload.interface.ts` | TypeScript | Provides core logic and orchestration for jwt-payload.interface.ts. | N/A | +| `📄 auth-response.interface.ts` | Logic/Utility | Structural or configuration definitions. | @modules/user | +| `📄 jwt-payload.interface.ts` | Logic/Utility | Structural or configuration definitions. | None | -## 🔗 Dependencies -- `@modules/user` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './interfaces'; +## 🔗 DEPENDENCIES +- `@modules/user` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/booking/README.md b/backend/src/modules/booking/README.md index 32d05106..f0d23b3f 100644 --- a/backend/src/modules/booking/README.md +++ b/backend/src/modules/booking/README.md @@ -1,40 +1,39 @@ -# 📁 booking +# 🏷️ Booking -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [booking](/backend/src/modules/booking) +[🏠 Home](../../../../README.md) ❯ [backend](../../../README.md) ❯ [src](../../README.md) ❯ [modules](../README.md) ❯ **booking** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **booking** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the booking domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 booking"] - Root --> application["📁 application"] - Root --> domain["📁 domain"] - Root --> infrastructure["📁 infrastructure"] - Root --> presentation["📁 presentation"] - Root --> booking_module_ts["📄 booking.module.ts"] - Root --> index_ts["📄 index.ts"] + f_booking["📁 booking"] + f_booking --> f_booking_module_ts["📄 booking.module.ts"] + f_booking --> f_index_ts["📄 index.ts"] + f_booking --> f_infrastructure["📁 infrastructure"] + f_booking --> f_presentation["📁 presentation"] + f_booking --> f_domain["📁 domain"] + f_booking --> f_application["📁 application"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `booking.module.ts` | TypeScript | Defines the architectural module boundaries for booking.module.ts. | @nestjs | -| `index.ts` | TypeScript | Provides core logic and orchestration for index.ts. | N/A | +| `📁 infrastructure` | Directory | Contains child logic and structural domains | None | +| `📁 presentation` | Directory | Contains child logic and structural domains | None | +| `📁 domain` | Directory | Contains child logic and structural domains | None | +| `📁 application` | Directory | Contains child logic and structural domains | None | +| `📄 booking.module.ts` | Module | Classes: BookingModule | @nestjs/common, @nestjs/mongoose | +| `📄 index.ts` | Logic/Utility | Structural or configuration definitions. | None | + -## 🔗 Dependencies -- `./application/booking.service` -- `./infrastructure/repositories/booking.repository` -- `./presentation/booking.controller` +## 🔗 DEPENDENCIES - `@nestjs/common` - `@nestjs/mongoose` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './booking'; - -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/booking/application/README.md b/backend/src/modules/booking/application/README.md index f0a95a23..fe564d90 100644 --- a/backend/src/modules/booking/application/README.md +++ b/backend/src/modules/booking/application/README.md @@ -1,34 +1,28 @@ -# 📁 application +# 🏷️ Application -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [booking](/backend/src/modules/booking) > [application](/backend/src/modules/booking/application) +[🏠 Home](../../../../../README.md) ❯ [backend](../../../../README.md) ❯ [src](../../../README.md) ❯ [modules](../../README.md) ❯ [booking](../README.md) ❯ **application** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **application** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the application domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 application"] - Root --> booking_service_ts["📄 booking.service.ts"] + f_application["📁 application"] + f_application --> f_booking_service_ts["📄 booking.service.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `booking.service.ts` | TypeScript | Encapsulates business logic and data access for booking.service.ts. | @nestjs | +| `📄 booking.service.ts` | Service | Classes: BookingService | @nestjs/common | -## 🔗 Dependencies -- `../domain/booking.entity` -- `../infrastructure/repositories/booking.repository` -- `../presentation/dto/create-booking.dto` -- `../presentation/dto/update-booking.dto` -- `@nestjs/common` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './application'; +## 🔗 DEPENDENCIES +- `@nestjs/common` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/booking/domain/README.md b/backend/src/modules/booking/domain/README.md index 5eb08be6..0f58a249 100644 --- a/backend/src/modules/booking/domain/README.md +++ b/backend/src/modules/booking/domain/README.md @@ -1,30 +1,28 @@ -# 📁 domain +# 🏷️ Domain -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [booking](/backend/src/modules/booking) > [domain](/backend/src/modules/booking/domain) +[🏠 Home](../../../../../README.md) ❯ [backend](../../../../README.md) ❯ [src](../../../README.md) ❯ [modules](../../README.md) ❯ [booking](../README.md) ❯ **domain** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **domain** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the domain domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 domain"] - Root --> booking_entity_ts["📄 booking.entity.ts"] + f_domain["📁 domain"] + f_domain --> f_booking_entity_ts["📄 booking.entity.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `booking.entity.ts` | TypeScript | Provides core logic and orchestration for booking.entity.ts. | N/A | +| `📄 booking.entity.ts` | Logic/Utility | Classes: Booking | None | -## 🔗 Dependencies -- No external dependencies. -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './domain'; +## 🔗 DEPENDENCIES +- No internal path aliases detected. -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/booking/infrastructure/README.md b/backend/src/modules/booking/infrastructure/README.md index a4d30890..391316e7 100644 --- a/backend/src/modules/booking/infrastructure/README.md +++ b/backend/src/modules/booking/infrastructure/README.md @@ -1,29 +1,30 @@ -# 📁 infrastructure +# 🏷️ Infrastructure -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [booking](/backend/src/modules/booking) > [infrastructure](/backend/src/modules/booking/infrastructure) +[🏠 Home](../../../../../README.md) ❯ [backend](../../../../README.md) ❯ [src](../../../README.md) ❯ [modules](../../README.md) ❯ [booking](../README.md) ❯ **infrastructure** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **infrastructure** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the infrastructure domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 infrastructure"] - Root --> repositories["📁 repositories"] - Root --> schemas["📁 schemas"] + f_infrastructure["📁 infrastructure"] + f_infrastructure --> f_repositories["📁 repositories"] + f_infrastructure --> f_schemas["📁 schemas"] ``` -## 📄 File Registry -*No relevant files in this directory.* -## 🔗 Dependencies -- No external dependencies. +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | +|---|---|---|---| +| `📁 repositories` | Directory | Contains child logic and structural domains | None | +| `📁 schemas` | Directory | Contains child logic and structural domains | None | -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './infrastructure'; -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🔗 DEPENDENCIES +- No internal path aliases detected. + +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/booking/infrastructure/repositories/README.md b/backend/src/modules/booking/infrastructure/repositories/README.md index 9722ad3a..f758a2e7 100644 --- a/backend/src/modules/booking/infrastructure/repositories/README.md +++ b/backend/src/modules/booking/infrastructure/repositories/README.md @@ -1,33 +1,29 @@ -# 📁 repositories +# 🏷️ Repositories -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [booking](/backend/src/modules/booking) > [infrastructure](/backend/src/modules/booking/infrastructure) > [repositories](/backend/src/modules/booking/infrastructure/repositories) +[🏠 Home](../../../../../../README.md) ❯ [backend](../../../../../README.md) ❯ [src](../../../../README.md) ❯ [modules](../../../README.md) ❯ [booking](../../README.md) ❯ [infrastructure](../README.md) ❯ **repositories** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **repositories** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the repositories domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 repositories"] - Root --> booking_repository_ts["📄 booking.repository.ts"] + f_repositories["📁 repositories"] + f_repositories --> f_booking_repository_ts["📄 booking.repository.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `booking.repository.ts` | TypeScript | Provides core logic and orchestration for booking.repository.ts. | @nestjs | +| `📄 booking.repository.ts` | Service | Classes: BookingRepository | @nestjs/common, @nestjs/mongoose | + -## 🔗 Dependencies -- `../../domain/booking.entity` +## 🔗 DEPENDENCIES - `@nestjs/common` - `@nestjs/mongoose` -- `mongoose` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './repositories'; - -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/booking/infrastructure/schemas/README.md b/backend/src/modules/booking/infrastructure/schemas/README.md index 5656002f..33dfbff4 100644 --- a/backend/src/modules/booking/infrastructure/schemas/README.md +++ b/backend/src/modules/booking/infrastructure/schemas/README.md @@ -1,31 +1,28 @@ -# 📁 schemas +# 🏷️ Schemas -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [booking](/backend/src/modules/booking) > [infrastructure](/backend/src/modules/booking/infrastructure) > [schemas](/backend/src/modules/booking/infrastructure/schemas) +[🏠 Home](../../../../../../README.md) ❯ [backend](../../../../../README.md) ❯ [src](../../../../README.md) ❯ [modules](../../../README.md) ❯ [booking](../../README.md) ❯ [infrastructure](../README.md) ❯ **schemas** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **schemas** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the schemas domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 schemas"] - Root --> booking_schema_ts["📄 booking.schema.ts"] + f_schemas["📁 schemas"] + f_schemas --> f_booking_schema_ts["📄 booking.schema.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `booking.schema.ts` | TypeScript | Provides core logic and orchestration for booking.schema.ts. | @nestjs | +| `📄 booking.schema.ts` | Logic/Utility | Classes: BookingSchemaEntity | @nestjs/mongoose | -## 🔗 Dependencies -- `@nestjs/mongoose` -- `mongoose` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './schemas'; +## 🔗 DEPENDENCIES +- `@nestjs/mongoose` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/booking/presentation/README.md b/backend/src/modules/booking/presentation/README.md index 7beddead..5d622347 100644 --- a/backend/src/modules/booking/presentation/README.md +++ b/backend/src/modules/booking/presentation/README.md @@ -1,33 +1,30 @@ -# 📁 presentation +# 🏷️ Presentation -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [booking](/backend/src/modules/booking) > [presentation](/backend/src/modules/booking/presentation) +[🏠 Home](../../../../../README.md) ❯ [backend](../../../../README.md) ❯ [src](../../../README.md) ❯ [modules](../../README.md) ❯ [booking](../README.md) ❯ **presentation** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **presentation** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the presentation domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 presentation"] - Root --> dto["📁 dto"] - Root --> booking_controller_ts["📄 booking.controller.ts"] + f_presentation["📁 presentation"] + f_presentation --> f_booking_controller_ts["📄 booking.controller.ts"] + f_presentation --> f_dto["📁 dto"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `booking.controller.ts` | TypeScript | Handles incoming HTTP requests and routing for booking.controller.ts. | N/A | +| `📁 dto` | Directory | Contains child logic and structural domains | None | +| `📄 booking.controller.ts` | Controller | Classes: BookingController | @nestjs/common | -## 🔗 Dependencies -- `../application/booking.service` -- `./dto/create-booking.dto` -- `./dto/update-booking.dto` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './presentation'; +## 🔗 DEPENDENCIES +- `@nestjs/common` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/booking/presentation/dto/README.md b/backend/src/modules/booking/presentation/dto/README.md index 3ae9fbaf..6bea97c5 100644 --- a/backend/src/modules/booking/presentation/dto/README.md +++ b/backend/src/modules/booking/presentation/dto/README.md @@ -1,33 +1,30 @@ -# 📁 dto +# 🏷️ Dto -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [booking](/backend/src/modules/booking) > [presentation](/backend/src/modules/booking/presentation) > [dto](/backend/src/modules/booking/presentation/dto) +[🏠 Home](../../../../../../README.md) ❯ [backend](../../../../../README.md) ❯ [src](../../../../README.md) ❯ [modules](../../../README.md) ❯ [booking](../../README.md) ❯ [presentation](../README.md) ❯ **dto** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **dto** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the dto domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 dto"] - Root --> create_booking_dto_ts["📄 create-booking.dto.ts"] - Root --> update_booking_dto_ts["📄 update-booking.dto.ts"] + f_dto["📁 dto"] + f_dto --> f_create_booking_dto_ts["📄 create-booking.dto.ts"] + f_dto --> f_update_booking_dto_ts["📄 update-booking.dto.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `create-booking.dto.ts` | TypeScript | Provides core logic and orchestration for create-booking.dto.ts. | N/A | -| `update-booking.dto.ts` | TypeScript | Provides core logic and orchestration for update-booking.dto.ts. | @nestjs | +| `📄 create-booking.dto.ts` | Logic/Utility | Classes: CreateBookingDto | None | +| `📄 update-booking.dto.ts` | Logic/Utility | Classes: UpdateBookingDto | @nestjs/mapped-types | -## 🔗 Dependencies -- `./create-booking.dto` -- `@nestjs/mapped-types` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './dto'; +## 🔗 DEPENDENCIES +- `@nestjs/mapped-types` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/gallery/README.md b/backend/src/modules/gallery/README.md index 6eb97b3a..500a4ac0 100644 --- a/backend/src/modules/gallery/README.md +++ b/backend/src/modules/gallery/README.md @@ -1,40 +1,39 @@ -# 📁 gallery +# 🏷️ Gallery -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [gallery](/backend/src/modules/gallery) +[🏠 Home](../../../../README.md) ❯ [backend](../../../README.md) ❯ [src](../../README.md) ❯ [modules](../README.md) ❯ **gallery** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **gallery** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the gallery domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 gallery"] - Root --> application["📁 application"] - Root --> domain["📁 domain"] - Root --> infrastructure["📁 infrastructure"] - Root --> presentation["📁 presentation"] - Root --> gallery_module_ts["📄 gallery.module.ts"] - Root --> index_ts["📄 index.ts"] + f_gallery["📁 gallery"] + f_gallery --> f_index_ts["📄 index.ts"] + f_gallery --> f_gallery_module_ts["📄 gallery.module.ts"] + f_gallery --> f_infrastructure["📁 infrastructure"] + f_gallery --> f_presentation["📁 presentation"] + f_gallery --> f_domain["📁 domain"] + f_gallery --> f_application["📁 application"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `gallery.module.ts` | TypeScript | Defines the architectural module boundaries for gallery.module.ts. | @nestjs | -| `index.ts` | TypeScript | Provides core logic and orchestration for index.ts. | N/A | +| `📁 infrastructure` | Directory | Contains child logic and structural domains | None | +| `📁 presentation` | Directory | Contains child logic and structural domains | None | +| `📁 domain` | Directory | Contains child logic and structural domains | None | +| `📁 application` | Directory | Contains child logic and structural domains | None | +| `📄 index.ts` | Logic/Utility | Structural or configuration definitions. | None | +| `📄 gallery.module.ts` | Module | Classes: GalleryModule | @nestjs/common, @nestjs/mongoose | + -## 🔗 Dependencies -- `./application/gallery.service` -- `./infrastructure/repositories/gallery.repository` -- `./presentation/gallery.controller` +## 🔗 DEPENDENCIES - `@nestjs/common` - `@nestjs/mongoose` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './gallery'; - -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/gallery/application/README.md b/backend/src/modules/gallery/application/README.md index 40cb46b7..66e67423 100644 --- a/backend/src/modules/gallery/application/README.md +++ b/backend/src/modules/gallery/application/README.md @@ -1,32 +1,28 @@ -# 📁 application +# 🏷️ Application -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [gallery](/backend/src/modules/gallery) > [application](/backend/src/modules/gallery/application) +[🏠 Home](../../../../../README.md) ❯ [backend](../../../../README.md) ❯ [src](../../../README.md) ❯ [modules](../../README.md) ❯ [gallery](../README.md) ❯ **application** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **application** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the application domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 application"] - Root --> gallery_service_ts["📄 gallery.service.ts"] + f_application["📁 application"] + f_application --> f_gallery_service_ts["📄 gallery.service.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `gallery.service.ts` | TypeScript | Encapsulates business logic and data access for gallery.service.ts. | @nestjs | +| `📄 gallery.service.ts` | Service | Classes: GalleryService | @nestjs/common | -## 🔗 Dependencies -- `../domain/gallery.entity` -- `../infrastructure/repositories/gallery.repository` -- `@nestjs/common` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './application'; +## 🔗 DEPENDENCIES +- `@nestjs/common` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/gallery/domain/README.md b/backend/src/modules/gallery/domain/README.md index bc230be3..111fd09b 100644 --- a/backend/src/modules/gallery/domain/README.md +++ b/backend/src/modules/gallery/domain/README.md @@ -1,30 +1,28 @@ -# 📁 domain +# 🏷️ Domain -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [gallery](/backend/src/modules/gallery) > [domain](/backend/src/modules/gallery/domain) +[🏠 Home](../../../../../README.md) ❯ [backend](../../../../README.md) ❯ [src](../../../README.md) ❯ [modules](../../README.md) ❯ [gallery](../README.md) ❯ **domain** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **domain** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the domain domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 domain"] - Root --> gallery_entity_ts["📄 gallery.entity.ts"] + f_domain["📁 domain"] + f_domain --> f_gallery_entity_ts["📄 gallery.entity.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `gallery.entity.ts` | TypeScript | Provides core logic and orchestration for gallery.entity.ts. | N/A | +| `📄 gallery.entity.ts` | Logic/Utility | Classes: Gallery | None | -## 🔗 Dependencies -- No external dependencies. -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './domain'; +## 🔗 DEPENDENCIES +- No internal path aliases detected. -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/gallery/infrastructure/README.md b/backend/src/modules/gallery/infrastructure/README.md index 5fe31df0..39c36081 100644 --- a/backend/src/modules/gallery/infrastructure/README.md +++ b/backend/src/modules/gallery/infrastructure/README.md @@ -1,29 +1,30 @@ -# 📁 infrastructure +# 🏷️ Infrastructure -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [gallery](/backend/src/modules/gallery) > [infrastructure](/backend/src/modules/gallery/infrastructure) +[🏠 Home](../../../../../README.md) ❯ [backend](../../../../README.md) ❯ [src](../../../README.md) ❯ [modules](../../README.md) ❯ [gallery](../README.md) ❯ **infrastructure** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **infrastructure** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the infrastructure domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 infrastructure"] - Root --> repositories["📁 repositories"] - Root --> schemas["📁 schemas"] + f_infrastructure["📁 infrastructure"] + f_infrastructure --> f_repositories["📁 repositories"] + f_infrastructure --> f_schemas["📁 schemas"] ``` -## 📄 File Registry -*No relevant files in this directory.* -## 🔗 Dependencies -- No external dependencies. +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | +|---|---|---|---| +| `📁 repositories` | Directory | Contains child logic and structural domains | None | +| `📁 schemas` | Directory | Contains child logic and structural domains | None | -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './infrastructure'; -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🔗 DEPENDENCIES +- No internal path aliases detected. + +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/gallery/infrastructure/repositories/README.md b/backend/src/modules/gallery/infrastructure/repositories/README.md index 36be22d2..645e7dc7 100644 --- a/backend/src/modules/gallery/infrastructure/repositories/README.md +++ b/backend/src/modules/gallery/infrastructure/repositories/README.md @@ -1,33 +1,29 @@ -# 📁 repositories +# 🏷️ Repositories -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [gallery](/backend/src/modules/gallery) > [infrastructure](/backend/src/modules/gallery/infrastructure) > [repositories](/backend/src/modules/gallery/infrastructure/repositories) +[🏠 Home](../../../../../../README.md) ❯ [backend](../../../../../README.md) ❯ [src](../../../../README.md) ❯ [modules](../../../README.md) ❯ [gallery](../../README.md) ❯ [infrastructure](../README.md) ❯ **repositories** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **repositories** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the repositories domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 repositories"] - Root --> gallery_repository_ts["📄 gallery.repository.ts"] + f_repositories["📁 repositories"] + f_repositories --> f_gallery_repository_ts["📄 gallery.repository.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `gallery.repository.ts` | TypeScript | Provides core logic and orchestration for gallery.repository.ts. | @nestjs | +| `📄 gallery.repository.ts` | Service | Classes: GalleryRepository | @nestjs/common, @nestjs/mongoose | + -## 🔗 Dependencies -- `../../domain/gallery.entity` +## 🔗 DEPENDENCIES - `@nestjs/common` - `@nestjs/mongoose` -- `mongoose` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './repositories'; - -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/gallery/infrastructure/schemas/README.md b/backend/src/modules/gallery/infrastructure/schemas/README.md index 17c7ad83..cf5ea9ad 100644 --- a/backend/src/modules/gallery/infrastructure/schemas/README.md +++ b/backend/src/modules/gallery/infrastructure/schemas/README.md @@ -1,31 +1,28 @@ -# 📁 schemas +# 🏷️ Schemas -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [gallery](/backend/src/modules/gallery) > [infrastructure](/backend/src/modules/gallery/infrastructure) > [schemas](/backend/src/modules/gallery/infrastructure/schemas) +[🏠 Home](../../../../../../README.md) ❯ [backend](../../../../../README.md) ❯ [src](../../../../README.md) ❯ [modules](../../../README.md) ❯ [gallery](../../README.md) ❯ [infrastructure](../README.md) ❯ **schemas** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **schemas** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the schemas domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 schemas"] - Root --> gallery_schema_ts["📄 gallery.schema.ts"] + f_schemas["📁 schemas"] + f_schemas --> f_gallery_schema_ts["📄 gallery.schema.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `gallery.schema.ts` | TypeScript | Provides core logic and orchestration for gallery.schema.ts. | @nestjs | +| `📄 gallery.schema.ts` | Logic/Utility | Classes: GallerySchemaEntity | @nestjs/mongoose | -## 🔗 Dependencies -- `@nestjs/mongoose` -- `mongoose` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './schemas'; +## 🔗 DEPENDENCIES +- `@nestjs/mongoose` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/gallery/presentation/README.md b/backend/src/modules/gallery/presentation/README.md index cf1a6713..0cb338d4 100644 --- a/backend/src/modules/gallery/presentation/README.md +++ b/backend/src/modules/gallery/presentation/README.md @@ -1,37 +1,31 @@ -# 📁 presentation +# 🏷️ Presentation -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [gallery](/backend/src/modules/gallery) > [presentation](/backend/src/modules/gallery/presentation) +[🏠 Home](../../../../../README.md) ❯ [backend](../../../../README.md) ❯ [src](../../../README.md) ❯ [modules](../../README.md) ❯ [gallery](../README.md) ❯ **presentation** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **presentation** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the presentation domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 presentation"] - Root --> dto["📁 dto"] - Root --> gallery_controller_ts["📄 gallery.controller.ts"] + f_presentation["📁 presentation"] + f_presentation --> f_gallery_controller_ts["📄 gallery.controller.ts"] + f_presentation --> f_dto["📁 dto"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `gallery.controller.ts` | TypeScript | Handles incoming HTTP requests and routing for gallery.controller.ts. | @nestjs | +| `📁 dto` | Directory | Contains child logic and structural domains | None | +| `📄 gallery.controller.ts` | Controller | Classes: GalleryController | @nestjs/common, @nestjs/platform-express | -## 🔗 Dependencies -- `../application/gallery.service` -- `../domain/gallery.entity` -- `./dto/create-gallery.dto` -- `./dto/update-gallery.dto` -- `@nestjs/platform-express` -- `multer` -- `path` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './presentation'; +## 🔗 DEPENDENCIES +- `@nestjs/common` +- `@nestjs/platform-express` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/gallery/presentation/dto/README.md b/backend/src/modules/gallery/presentation/dto/README.md index 82ba0717..7c8976eb 100644 --- a/backend/src/modules/gallery/presentation/dto/README.md +++ b/backend/src/modules/gallery/presentation/dto/README.md @@ -1,34 +1,30 @@ -# 📁 dto +# 🏷️ Dto -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [gallery](/backend/src/modules/gallery) > [presentation](/backend/src/modules/gallery/presentation) > [dto](/backend/src/modules/gallery/presentation/dto) +[🏠 Home](../../../../../../README.md) ❯ [backend](../../../../../README.md) ❯ [src](../../../../README.md) ❯ [modules](../../../README.md) ❯ [gallery](../../README.md) ❯ [presentation](../README.md) ❯ **dto** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **dto** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the dto domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 dto"] - Root --> create_gallery_dto_ts["📄 create-gallery.dto.ts"] - Root --> update_gallery_dto_ts["📄 update-gallery.dto.ts"] + f_dto["📁 dto"] + f_dto --> f_update_gallery_dto_ts["📄 update-gallery.dto.ts"] + f_dto --> f_create_gallery_dto_ts["📄 create-gallery.dto.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `create-gallery.dto.ts` | TypeScript | Provides core logic and orchestration for create-gallery.dto.ts. | N/A | -| `update-gallery.dto.ts` | TypeScript | Provides core logic and orchestration for update-gallery.dto.ts. | @nestjs | +| `📄 update-gallery.dto.ts` | Logic/Utility | Classes: UpdateGalleryDto | @nestjs/mapped-types | +| `📄 create-gallery.dto.ts` | Logic/Utility | Classes: CreateGalleryDto | None | -## 🔗 Dependencies -- `./create-gallery.dto` -- `@nestjs/mapped-types` -- `class-validator` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './dto'; +## 🔗 DEPENDENCIES +- `@nestjs/mapped-types` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/inventory/README.md b/backend/src/modules/inventory/README.md index 80349cad..a44077e0 100644 --- a/backend/src/modules/inventory/README.md +++ b/backend/src/modules/inventory/README.md @@ -1,40 +1,39 @@ -# 📁 inventory +# 🏷️ Inventory -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [inventory](/backend/src/modules/inventory) +[🏠 Home](../../../../README.md) ❯ [backend](../../../README.md) ❯ [src](../../README.md) ❯ [modules](../README.md) ❯ **inventory** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **inventory** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the inventory domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 inventory"] - Root --> application["📁 application"] - Root --> domain["📁 domain"] - Root --> infrastructure["📁 infrastructure"] - Root --> presentation["📁 presentation"] - Root --> index_ts["📄 index.ts"] - Root --> inventory_module_ts["📄 inventory.module.ts"] + f_inventory["📁 inventory"] + f_inventory --> f_index_ts["📄 index.ts"] + f_inventory --> f_inventory_module_ts["📄 inventory.module.ts"] + f_inventory --> f_infrastructure["📁 infrastructure"] + f_inventory --> f_presentation["📁 presentation"] + f_inventory --> f_domain["📁 domain"] + f_inventory --> f_application["📁 application"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `index.ts` | TypeScript | Provides core logic and orchestration for index.ts. | N/A | -| `inventory.module.ts` | TypeScript | Defines the architectural module boundaries for inventory.module.ts. | @nestjs | +| `📁 infrastructure` | Directory | Contains child logic and structural domains | None | +| `📁 presentation` | Directory | Contains child logic and structural domains | None | +| `📁 domain` | Directory | Contains child logic and structural domains | None | +| `📁 application` | Directory | Contains child logic and structural domains | None | +| `📄 index.ts` | Logic/Utility | Structural or configuration definitions. | None | +| `📄 inventory.module.ts` | Module | Classes: InventoryModule | @nestjs/common, @nestjs/mongoose | + -## 🔗 Dependencies -- `./application/inventory.service` -- `./infrastructure/repositories/inventory.repository` -- `./presentation/inventory.controller` +## 🔗 DEPENDENCIES - `@nestjs/common` - `@nestjs/mongoose` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './inventory'; - -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/inventory/application/README.md b/backend/src/modules/inventory/application/README.md index 4f041822..d19aef3b 100644 --- a/backend/src/modules/inventory/application/README.md +++ b/backend/src/modules/inventory/application/README.md @@ -1,34 +1,28 @@ -# 📁 application +# 🏷️ Application -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [inventory](/backend/src/modules/inventory) > [application](/backend/src/modules/inventory/application) +[🏠 Home](../../../../../README.md) ❯ [backend](../../../../README.md) ❯ [src](../../../README.md) ❯ [modules](../../README.md) ❯ [inventory](../README.md) ❯ **application** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **application** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the application domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 application"] - Root --> inventory_service_ts["📄 inventory.service.ts"] + f_application["📁 application"] + f_application --> f_inventory_service_ts["📄 inventory.service.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `inventory.service.ts` | TypeScript | Encapsulates business logic and data access for inventory.service.ts. | @nestjs | +| `📄 inventory.service.ts` | Service | Classes: InventoryService | @nestjs/common | -## 🔗 Dependencies -- `../domain/inventory.entity` -- `../infrastructure/repositories/inventory.repository` -- `../presentation/dto/create-inventory.dto` -- `../presentation/dto/update-inventory.dto` -- `@nestjs/common` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './application'; +## 🔗 DEPENDENCIES +- `@nestjs/common` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/inventory/domain/README.md b/backend/src/modules/inventory/domain/README.md index b764ea22..31a7255a 100644 --- a/backend/src/modules/inventory/domain/README.md +++ b/backend/src/modules/inventory/domain/README.md @@ -1,30 +1,28 @@ -# 📁 domain +# 🏷️ Domain -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [inventory](/backend/src/modules/inventory) > [domain](/backend/src/modules/inventory/domain) +[🏠 Home](../../../../../README.md) ❯ [backend](../../../../README.md) ❯ [src](../../../README.md) ❯ [modules](../../README.md) ❯ [inventory](../README.md) ❯ **domain** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **domain** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the domain domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 domain"] - Root --> inventory_entity_ts["📄 inventory.entity.ts"] + f_domain["📁 domain"] + f_domain --> f_inventory_entity_ts["📄 inventory.entity.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `inventory.entity.ts` | TypeScript | Provides core logic and orchestration for inventory.entity.ts. | N/A | +| `📄 inventory.entity.ts` | Logic/Utility | Classes: Inventory | None | -## 🔗 Dependencies -- No external dependencies. -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './domain'; +## 🔗 DEPENDENCIES +- No internal path aliases detected. -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/inventory/infrastructure/README.md b/backend/src/modules/inventory/infrastructure/README.md index e14623ba..8dea53eb 100644 --- a/backend/src/modules/inventory/infrastructure/README.md +++ b/backend/src/modules/inventory/infrastructure/README.md @@ -1,29 +1,30 @@ -# 📁 infrastructure +# 🏷️ Infrastructure -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [inventory](/backend/src/modules/inventory) > [infrastructure](/backend/src/modules/inventory/infrastructure) +[🏠 Home](../../../../../README.md) ❯ [backend](../../../../README.md) ❯ [src](../../../README.md) ❯ [modules](../../README.md) ❯ [inventory](../README.md) ❯ **infrastructure** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **infrastructure** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the infrastructure domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 infrastructure"] - Root --> repositories["📁 repositories"] - Root --> schemas["📁 schemas"] + f_infrastructure["📁 infrastructure"] + f_infrastructure --> f_repositories["📁 repositories"] + f_infrastructure --> f_schemas["📁 schemas"] ``` -## 📄 File Registry -*No relevant files in this directory.* -## 🔗 Dependencies -- No external dependencies. +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | +|---|---|---|---| +| `📁 repositories` | Directory | Contains child logic and structural domains | None | +| `📁 schemas` | Directory | Contains child logic and structural domains | None | -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './infrastructure'; -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🔗 DEPENDENCIES +- No internal path aliases detected. + +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/inventory/infrastructure/repositories/README.md b/backend/src/modules/inventory/infrastructure/repositories/README.md index f231860b..91b8819d 100644 --- a/backend/src/modules/inventory/infrastructure/repositories/README.md +++ b/backend/src/modules/inventory/infrastructure/repositories/README.md @@ -1,33 +1,29 @@ -# 📁 repositories +# 🏷️ Repositories -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [inventory](/backend/src/modules/inventory) > [infrastructure](/backend/src/modules/inventory/infrastructure) > [repositories](/backend/src/modules/inventory/infrastructure/repositories) +[🏠 Home](../../../../../../README.md) ❯ [backend](../../../../../README.md) ❯ [src](../../../../README.md) ❯ [modules](../../../README.md) ❯ [inventory](../../README.md) ❯ [infrastructure](../README.md) ❯ **repositories** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **repositories** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the repositories domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 repositories"] - Root --> inventory_repository_ts["📄 inventory.repository.ts"] + f_repositories["📁 repositories"] + f_repositories --> f_inventory_repository_ts["📄 inventory.repository.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `inventory.repository.ts` | TypeScript | Provides core logic and orchestration for inventory.repository.ts. | @nestjs | +| `📄 inventory.repository.ts` | Service | Classes: InventoryRepository | @nestjs/common, @nestjs/mongoose | + -## 🔗 Dependencies -- `../../domain/inventory.entity` +## 🔗 DEPENDENCIES - `@nestjs/common` - `@nestjs/mongoose` -- `mongoose` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './repositories'; - -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/inventory/infrastructure/schemas/README.md b/backend/src/modules/inventory/infrastructure/schemas/README.md index 938de0ce..9772ee4e 100644 --- a/backend/src/modules/inventory/infrastructure/schemas/README.md +++ b/backend/src/modules/inventory/infrastructure/schemas/README.md @@ -1,31 +1,28 @@ -# 📁 schemas +# 🏷️ Schemas -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [inventory](/backend/src/modules/inventory) > [infrastructure](/backend/src/modules/inventory/infrastructure) > [schemas](/backend/src/modules/inventory/infrastructure/schemas) +[🏠 Home](../../../../../../README.md) ❯ [backend](../../../../../README.md) ❯ [src](../../../../README.md) ❯ [modules](../../../README.md) ❯ [inventory](../../README.md) ❯ [infrastructure](../README.md) ❯ **schemas** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **schemas** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the schemas domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 schemas"] - Root --> inventory_schema_ts["📄 inventory.schema.ts"] + f_schemas["📁 schemas"] + f_schemas --> f_inventory_schema_ts["📄 inventory.schema.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `inventory.schema.ts` | TypeScript | Provides core logic and orchestration for inventory.schema.ts. | @nestjs | +| `📄 inventory.schema.ts` | Logic/Utility | Classes: InventorySchemaEntity | @nestjs/mongoose | -## 🔗 Dependencies -- `@nestjs/mongoose` -- `mongoose` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './schemas'; +## 🔗 DEPENDENCIES +- `@nestjs/mongoose` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/inventory/presentation/README.md b/backend/src/modules/inventory/presentation/README.md index e1df25cb..e4f2d496 100644 --- a/backend/src/modules/inventory/presentation/README.md +++ b/backend/src/modules/inventory/presentation/README.md @@ -1,33 +1,30 @@ -# 📁 presentation +# 🏷️ Presentation -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [inventory](/backend/src/modules/inventory) > [presentation](/backend/src/modules/inventory/presentation) +[🏠 Home](../../../../../README.md) ❯ [backend](../../../../README.md) ❯ [src](../../../README.md) ❯ [modules](../../README.md) ❯ [inventory](../README.md) ❯ **presentation** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **presentation** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the presentation domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 presentation"] - Root --> dto["📁 dto"] - Root --> inventory_controller_ts["📄 inventory.controller.ts"] + f_presentation["📁 presentation"] + f_presentation --> f_inventory_controller_ts["📄 inventory.controller.ts"] + f_presentation --> f_dto["📁 dto"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `inventory.controller.ts` | TypeScript | Handles incoming HTTP requests and routing for inventory.controller.ts. | N/A | +| `📁 dto` | Directory | Contains child logic and structural domains | None | +| `📄 inventory.controller.ts` | Controller | Classes: InventoryController | @nestjs/common | -## 🔗 Dependencies -- `../application/inventory.service` -- `./dto/create-inventory.dto` -- `./dto/update-inventory.dto` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './presentation'; +## 🔗 DEPENDENCIES +- `@nestjs/common` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/inventory/presentation/dto/README.md b/backend/src/modules/inventory/presentation/dto/README.md index e34e4d22..46e1860e 100644 --- a/backend/src/modules/inventory/presentation/dto/README.md +++ b/backend/src/modules/inventory/presentation/dto/README.md @@ -1,33 +1,30 @@ -# 📁 dto +# 🏷️ Dto -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [inventory](/backend/src/modules/inventory) > [presentation](/backend/src/modules/inventory/presentation) > [dto](/backend/src/modules/inventory/presentation/dto) +[🏠 Home](../../../../../../README.md) ❯ [backend](../../../../../README.md) ❯ [src](../../../../README.md) ❯ [modules](../../../README.md) ❯ [inventory](../../README.md) ❯ [presentation](../README.md) ❯ **dto** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **dto** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the dto domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 dto"] - Root --> create_inventory_dto_ts["📄 create-inventory.dto.ts"] - Root --> update_inventory_dto_ts["📄 update-inventory.dto.ts"] + f_dto["📁 dto"] + f_dto --> f_create_inventory_dto_ts["📄 create-inventory.dto.ts"] + f_dto --> f_update_inventory_dto_ts["📄 update-inventory.dto.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `create-inventory.dto.ts` | TypeScript | Provides core logic and orchestration for create-inventory.dto.ts. | N/A | -| `update-inventory.dto.ts` | TypeScript | Provides core logic and orchestration for update-inventory.dto.ts. | @nestjs | +| `📄 create-inventory.dto.ts` | Logic/Utility | Classes: CreateInventoryDto | None | +| `📄 update-inventory.dto.ts` | Logic/Utility | Classes: UpdateInventoryDto | @nestjs/mapped-types | -## 🔗 Dependencies -- `./create-inventory.dto` -- `@nestjs/mapped-types` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './dto'; +## 🔗 DEPENDENCIES +- `@nestjs/mapped-types` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/partnership/README.md b/backend/src/modules/partnership/README.md index 5c48c655..e090c22b 100644 --- a/backend/src/modules/partnership/README.md +++ b/backend/src/modules/partnership/README.md @@ -1,40 +1,39 @@ -# 📁 partnership +# 🏷️ Partnership -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [partnership](/backend/src/modules/partnership) +[🏠 Home](../../../../README.md) ❯ [backend](../../../README.md) ❯ [src](../../README.md) ❯ [modules](../README.md) ❯ **partnership** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **partnership** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the partnership domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 partnership"] - Root --> application["📁 application"] - Root --> domain["📁 domain"] - Root --> infrastructure["📁 infrastructure"] - Root --> presentation["📁 presentation"] - Root --> index_ts["📄 index.ts"] - Root --> partnership_module_ts["📄 partnership.module.ts"] + f_partnership["📁 partnership"] + f_partnership --> f_partnership_module_ts["📄 partnership.module.ts"] + f_partnership --> f_index_ts["📄 index.ts"] + f_partnership --> f_infrastructure["📁 infrastructure"] + f_partnership --> f_presentation["📁 presentation"] + f_partnership --> f_domain["📁 domain"] + f_partnership --> f_application["📁 application"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `index.ts` | TypeScript | Provides core logic and orchestration for index.ts. | N/A | -| `partnership.module.ts` | TypeScript | Defines the architectural module boundaries for partnership.module.ts. | @nestjs | +| `📁 infrastructure` | Directory | Contains child logic and structural domains | None | +| `📁 presentation` | Directory | Contains child logic and structural domains | None | +| `📁 domain` | Directory | Contains child logic and structural domains | None | +| `📁 application` | Directory | Contains child logic and structural domains | None | +| `📄 partnership.module.ts` | Module | Classes: PartnershipModule | @nestjs/common, @nestjs/mongoose | +| `📄 index.ts` | Logic/Utility | Structural or configuration definitions. | None | + -## 🔗 Dependencies -- `./application/partnership.service` -- `./infrastructure/repositories/partnership.repository` -- `./presentation/partnership.controller` +## 🔗 DEPENDENCIES - `@nestjs/common` - `@nestjs/mongoose` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './partnership'; - -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/partnership/application/README.md b/backend/src/modules/partnership/application/README.md index 08c4fb0a..3b46531a 100644 --- a/backend/src/modules/partnership/application/README.md +++ b/backend/src/modules/partnership/application/README.md @@ -1,34 +1,28 @@ -# 📁 application +# 🏷️ Application -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [partnership](/backend/src/modules/partnership) > [application](/backend/src/modules/partnership/application) +[🏠 Home](../../../../../README.md) ❯ [backend](../../../../README.md) ❯ [src](../../../README.md) ❯ [modules](../../README.md) ❯ [partnership](../README.md) ❯ **application** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **application** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the application domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 application"] - Root --> partnership_service_ts["📄 partnership.service.ts"] + f_application["📁 application"] + f_application --> f_partnership_service_ts["📄 partnership.service.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `partnership.service.ts` | TypeScript | Encapsulates business logic and data access for partnership.service.ts. | @nestjs | +| `📄 partnership.service.ts` | Service | Classes: PartnershipService | @nestjs/common | -## 🔗 Dependencies -- `../domain/partnership.entity` -- `../infrastructure/repositories/partnership.repository` -- `../presentation/dto/create-partnership.dto` -- `../presentation/dto/update-partnership.dto` -- `@nestjs/common` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './application'; +## 🔗 DEPENDENCIES +- `@nestjs/common` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/partnership/domain/README.md b/backend/src/modules/partnership/domain/README.md index 036785ca..6e715e8a 100644 --- a/backend/src/modules/partnership/domain/README.md +++ b/backend/src/modules/partnership/domain/README.md @@ -1,30 +1,28 @@ -# 📁 domain +# 🏷️ Domain -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [partnership](/backend/src/modules/partnership) > [domain](/backend/src/modules/partnership/domain) +[🏠 Home](../../../../../README.md) ❯ [backend](../../../../README.md) ❯ [src](../../../README.md) ❯ [modules](../../README.md) ❯ [partnership](../README.md) ❯ **domain** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **domain** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the domain domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 domain"] - Root --> partnership_entity_ts["📄 partnership.entity.ts"] + f_domain["📁 domain"] + f_domain --> f_partnership_entity_ts["📄 partnership.entity.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `partnership.entity.ts` | TypeScript | Provides core logic and orchestration for partnership.entity.ts. | N/A | +| `📄 partnership.entity.ts` | Logic/Utility | Classes: Partnership | None | -## 🔗 Dependencies -- No external dependencies. -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './domain'; +## 🔗 DEPENDENCIES +- No internal path aliases detected. -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/partnership/infrastructure/README.md b/backend/src/modules/partnership/infrastructure/README.md index e5b96009..c8de36e4 100644 --- a/backend/src/modules/partnership/infrastructure/README.md +++ b/backend/src/modules/partnership/infrastructure/README.md @@ -1,29 +1,30 @@ -# 📁 infrastructure +# 🏷️ Infrastructure -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [partnership](/backend/src/modules/partnership) > [infrastructure](/backend/src/modules/partnership/infrastructure) +[🏠 Home](../../../../../README.md) ❯ [backend](../../../../README.md) ❯ [src](../../../README.md) ❯ [modules](../../README.md) ❯ [partnership](../README.md) ❯ **infrastructure** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **infrastructure** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the infrastructure domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 infrastructure"] - Root --> repositories["📁 repositories"] - Root --> schemas["📁 schemas"] + f_infrastructure["📁 infrastructure"] + f_infrastructure --> f_repositories["📁 repositories"] + f_infrastructure --> f_schemas["📁 schemas"] ``` -## 📄 File Registry -*No relevant files in this directory.* -## 🔗 Dependencies -- No external dependencies. +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | +|---|---|---|---| +| `📁 repositories` | Directory | Contains child logic and structural domains | None | +| `📁 schemas` | Directory | Contains child logic and structural domains | None | -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './infrastructure'; -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🔗 DEPENDENCIES +- No internal path aliases detected. + +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/partnership/infrastructure/repositories/README.md b/backend/src/modules/partnership/infrastructure/repositories/README.md index 7a2a9c80..44d05418 100644 --- a/backend/src/modules/partnership/infrastructure/repositories/README.md +++ b/backend/src/modules/partnership/infrastructure/repositories/README.md @@ -1,33 +1,29 @@ -# 📁 repositories +# 🏷️ Repositories -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [partnership](/backend/src/modules/partnership) > [infrastructure](/backend/src/modules/partnership/infrastructure) > [repositories](/backend/src/modules/partnership/infrastructure/repositories) +[🏠 Home](../../../../../../README.md) ❯ [backend](../../../../../README.md) ❯ [src](../../../../README.md) ❯ [modules](../../../README.md) ❯ [partnership](../../README.md) ❯ [infrastructure](../README.md) ❯ **repositories** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **repositories** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the repositories domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 repositories"] - Root --> partnership_repository_ts["📄 partnership.repository.ts"] + f_repositories["📁 repositories"] + f_repositories --> f_partnership_repository_ts["📄 partnership.repository.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `partnership.repository.ts` | TypeScript | Provides core logic and orchestration for partnership.repository.ts. | @nestjs | +| `📄 partnership.repository.ts` | Service | Classes: PartnershipRepository | @nestjs/common, @nestjs/mongoose | + -## 🔗 Dependencies -- `../../domain/partnership.entity` +## 🔗 DEPENDENCIES - `@nestjs/common` - `@nestjs/mongoose` -- `mongoose` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './repositories'; - -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/partnership/infrastructure/schemas/README.md b/backend/src/modules/partnership/infrastructure/schemas/README.md index f54ea0d3..2e402772 100644 --- a/backend/src/modules/partnership/infrastructure/schemas/README.md +++ b/backend/src/modules/partnership/infrastructure/schemas/README.md @@ -1,31 +1,28 @@ -# 📁 schemas +# 🏷️ Schemas -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [partnership](/backend/src/modules/partnership) > [infrastructure](/backend/src/modules/partnership/infrastructure) > [schemas](/backend/src/modules/partnership/infrastructure/schemas) +[🏠 Home](../../../../../../README.md) ❯ [backend](../../../../../README.md) ❯ [src](../../../../README.md) ❯ [modules](../../../README.md) ❯ [partnership](../../README.md) ❯ [infrastructure](../README.md) ❯ **schemas** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **schemas** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the schemas domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 schemas"] - Root --> partnership_schema_ts["📄 partnership.schema.ts"] + f_schemas["📁 schemas"] + f_schemas --> f_partnership_schema_ts["📄 partnership.schema.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `partnership.schema.ts` | TypeScript | Provides core logic and orchestration for partnership.schema.ts. | @nestjs | +| `📄 partnership.schema.ts` | Logic/Utility | Classes: PartnershipSchemaEntity | @nestjs/mongoose | -## 🔗 Dependencies -- `@nestjs/mongoose` -- `mongoose` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './schemas'; +## 🔗 DEPENDENCIES +- `@nestjs/mongoose` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/partnership/presentation/README.md b/backend/src/modules/partnership/presentation/README.md index 0cdfd4fd..53c0add6 100644 --- a/backend/src/modules/partnership/presentation/README.md +++ b/backend/src/modules/partnership/presentation/README.md @@ -1,33 +1,30 @@ -# 📁 presentation +# 🏷️ Presentation -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [partnership](/backend/src/modules/partnership) > [presentation](/backend/src/modules/partnership/presentation) +[🏠 Home](../../../../../README.md) ❯ [backend](../../../../README.md) ❯ [src](../../../README.md) ❯ [modules](../../README.md) ❯ [partnership](../README.md) ❯ **presentation** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **presentation** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the presentation domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 presentation"] - Root --> dto["📁 dto"] - Root --> partnership_controller_ts["📄 partnership.controller.ts"] + f_presentation["📁 presentation"] + f_presentation --> f_partnership_controller_ts["📄 partnership.controller.ts"] + f_presentation --> f_dto["📁 dto"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `partnership.controller.ts` | TypeScript | Handles incoming HTTP requests and routing for partnership.controller.ts. | N/A | +| `📁 dto` | Directory | Contains child logic and structural domains | None | +| `📄 partnership.controller.ts` | Controller | Classes: PartnershipController | @nestjs/common | -## 🔗 Dependencies -- `../application/partnership.service` -- `./dto/create-partnership.dto` -- `./dto/update-partnership.dto` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './presentation'; +## 🔗 DEPENDENCIES +- `@nestjs/common` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/partnership/presentation/dto/README.md b/backend/src/modules/partnership/presentation/dto/README.md index eca44cdd..96668b41 100644 --- a/backend/src/modules/partnership/presentation/dto/README.md +++ b/backend/src/modules/partnership/presentation/dto/README.md @@ -1,33 +1,30 @@ -# 📁 dto +# 🏷️ Dto -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [partnership](/backend/src/modules/partnership) > [presentation](/backend/src/modules/partnership/presentation) > [dto](/backend/src/modules/partnership/presentation/dto) +[🏠 Home](../../../../../../README.md) ❯ [backend](../../../../../README.md) ❯ [src](../../../../README.md) ❯ [modules](../../../README.md) ❯ [partnership](../../README.md) ❯ [presentation](../README.md) ❯ **dto** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **dto** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the dto domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 dto"] - Root --> create_partnership_dto_ts["📄 create-partnership.dto.ts"] - Root --> update_partnership_dto_ts["📄 update-partnership.dto.ts"] + f_dto["📁 dto"] + f_dto --> f_create_partnership_dto_ts["📄 create-partnership.dto.ts"] + f_dto --> f_update_partnership_dto_ts["📄 update-partnership.dto.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `create-partnership.dto.ts` | TypeScript | Provides core logic and orchestration for create-partnership.dto.ts. | N/A | -| `update-partnership.dto.ts` | TypeScript | Provides core logic and orchestration for update-partnership.dto.ts. | @nestjs | +| `📄 create-partnership.dto.ts` | Logic/Utility | Classes: CreatePartnershipDto | None | +| `📄 update-partnership.dto.ts` | Logic/Utility | Classes: UpdatePartnershipDto | @nestjs/mapped-types | -## 🔗 Dependencies -- `./create-partnership.dto` -- `@nestjs/mapped-types` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './dto'; +## 🔗 DEPENDENCIES +- `@nestjs/mapped-types` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/payment/README.md b/backend/src/modules/payment/README.md index 616722ed..b8f94bbf 100644 --- a/backend/src/modules/payment/README.md +++ b/backend/src/modules/payment/README.md @@ -1,42 +1,36 @@ -# 📁 payment +# 🏷️ Payment -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [payment](/backend/src/modules/payment) +[🏠 Home](../../../../README.md) ❯ [backend](../../../README.md) ❯ [src](../../README.md) ❯ [modules](../README.md) ❯ **payment** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **payment** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the payment domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 payment"] - Root --> strategies["📁 strategies"] - Root --> index_ts["📄 index.ts"] - Root --> payment_controller_ts["📄 payment.controller.ts"] - Root --> payment_module_ts["📄 payment.module.ts"] - Root --> payment_service_ts["📄 payment.service.ts"] + f_payment["📁 payment"] + f_payment --> f_payment_module_ts["📄 payment.module.ts"] + f_payment --> f_index_ts["📄 index.ts"] + f_payment --> f_payment_service_ts["📄 payment.service.ts"] + f_payment --> f_payment_controller_ts["📄 payment.controller.ts"] + f_payment --> f_strategies["📁 strategies"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `index.ts` | TypeScript | Provides core logic and orchestration for index.ts. | N/A | -| `payment.controller.ts` | TypeScript | Handles incoming HTTP requests and routing for payment.controller.ts. | N/A | -| `payment.module.ts` | TypeScript | Defines the architectural module boundaries for payment.module.ts. | @nestjs | -| `payment.service.ts` | TypeScript | Encapsulates business logic and data access for payment.service.ts. | @nestjs | - -## 🔗 Dependencies -- `./payment.controller` -- `./payment.service` -- `./strategies/alif-pay.strategy` -- `./strategies/mock-card.strategy` -- `./strategies/payment.strategy` -- `@nestjs/common` +| `📁 strategies` | Directory | Contains child logic and structural domains | None | +| `📄 payment.module.ts` | Module | Classes: PaymentModule | @nestjs/common | +| `📄 index.ts` | Logic/Utility | Structural or configuration definitions. | None | +| `📄 payment.service.ts` | Service | Classes: PaymentService | @nestjs/common | +| `📄 payment.controller.ts` | Controller | Classes: PaymentController | @nestjs/common | -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './payment'; -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🔗 DEPENDENCIES +- `@nestjs/common` + +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/payment/strategies/README.md b/backend/src/modules/payment/strategies/README.md index 1007b878..cfd1db86 100644 --- a/backend/src/modules/payment/strategies/README.md +++ b/backend/src/modules/payment/strategies/README.md @@ -1,34 +1,32 @@ -# 📁 strategies +# 🏷️ Strategies -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [payment](/backend/src/modules/payment) > [strategies](/backend/src/modules/payment/strategies) +[🏠 Home](../../../../../README.md) ❯ [backend](../../../../README.md) ❯ [src](../../../README.md) ❯ [modules](../../README.md) ❯ [payment](../README.md) ❯ **strategies** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **strategies** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the strategies domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 strategies"] - Root --> alif_pay_strategy_ts["📄 alif-pay.strategy.ts"] - Root --> mock_card_strategy_ts["📄 mock-card.strategy.ts"] - Root --> payment_strategy_ts["📄 payment.strategy.ts"] + f_strategies["📁 strategies"] + f_strategies --> f_mock_card_strategy_ts["📄 mock-card.strategy.ts"] + f_strategies --> f_alif_pay_strategy_ts["📄 alif-pay.strategy.ts"] + f_strategies --> f_payment_strategy_ts["📄 payment.strategy.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `alif-pay.strategy.ts` | TypeScript | Provides core logic and orchestration for alif-pay.strategy.ts. | @nestjs | -| `mock-card.strategy.ts` | TypeScript | Provides core logic and orchestration for mock-card.strategy.ts. | @nestjs | -| `payment.strategy.ts` | TypeScript | Provides core logic and orchestration for payment.strategy.ts. | N/A | +| `📄 mock-card.strategy.ts` | Service | Classes: MockCardStrategy | @nestjs/common | +| `📄 alif-pay.strategy.ts` | Service | Classes: AlifPayStrategy | @nestjs/common | +| `📄 payment.strategy.ts` | Logic/Utility | Structural or configuration definitions. | None | -## 🔗 Dependencies -- `@nestjs/common` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './strategies'; +## 🔗 DEPENDENCIES +- `@nestjs/common` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/treatments/README.md b/backend/src/modules/treatments/README.md index 47ea8252..4cfb29b7 100644 --- a/backend/src/modules/treatments/README.md +++ b/backend/src/modules/treatments/README.md @@ -1,40 +1,43 @@ -# 📁 treatments +# 🏷️ Treatments -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [treatments](/backend/src/modules/treatments) +[🏠 Home](../../../../README.md) ❯ [backend](../../../README.md) ❯ [src](../../README.md) ❯ [modules](../README.md) ❯ **treatments** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **treatments** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the treatments domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 treatments"] - Root --> application["📁 application"] - Root --> domain["📁 domain"] - Root --> infrastructure["📁 infrastructure"] - Root --> presentation["📁 presentation"] - Root --> index_ts["📄 index.ts"] - Root --> treatments_module_ts["📄 treatments.module.ts"] + f_treatments["📁 treatments"] + f_treatments --> f_index_ts["📄 index.ts"] + f_treatments --> f_treatments_module_ts["📄 treatments.module.ts"] + f_treatments --> f_infrastructure["📁 infrastructure"] + f_treatments --> f_presentation["📁 presentation"] + f_treatments --> f_domain["📁 domain"] + f_treatments --> f_application["📁 application"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `index.ts` | TypeScript | Provides core logic and orchestration for index.ts. | N/A | -| `treatments.module.ts` | TypeScript | Defines the architectural module boundaries for treatments.module.ts. | @modules, @nestjs | +| `📁 infrastructure` | Directory | Contains child logic and structural domains | None | +| `📁 presentation` | Directory | Contains child logic and structural domains | None | +| `📁 domain` | Directory | Contains child logic and structural domains | None | +| `📁 application` | Directory | Contains child logic and structural domains | None | +| `📄 index.ts` | Logic/Utility | Structural or configuration definitions. | None | +| `📄 treatments.module.ts` | Module | Classes: TreatmentsModule | @nestjs/common, @modules/treatments/infrastructure/repositories/treatments.repository, @nestjs/mongoose, @modules/treatments/application/treatments.service, @modules/treatments/infrastructure/schemas/treatments.schema, @modules/treatments/presentation/treatments.controller | -## 🔗 Dependencies -- `@modules/treatments/application/treatments.service` -- `@modules/treatments/infrastructure/repositories/treatments.repository` -- `@modules/treatments/presentation/treatments.controller` + +## 🔗 DEPENDENCIES - `@nestjs/common` +- `@modules/treatments/infrastructure/repositories/treatments.repository` - `@nestjs/mongoose` +- `@modules/treatments/application/treatments.service` +- `@modules/treatments/infrastructure/schemas/treatments.schema` +- `@modules/treatments/presentation/treatments.controller` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './treatments'; - -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/treatments/application/README.md b/backend/src/modules/treatments/application/README.md index 7cb6487d..f6d39417 100644 --- a/backend/src/modules/treatments/application/README.md +++ b/backend/src/modules/treatments/application/README.md @@ -1,33 +1,29 @@ -# 📁 application +# 🏷️ Application -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [treatments](/backend/src/modules/treatments) > [application](/backend/src/modules/treatments/application) +[🏠 Home](../../../../../README.md) ❯ [backend](../../../../README.md) ❯ [src](../../../README.md) ❯ [modules](../../README.md) ❯ [treatments](../README.md) ❯ **application** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **application** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the application domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 application"] - Root --> treatments_service_ts["📄 treatments.service.ts"] + f_application["📁 application"] + f_application --> f_treatments_service_ts["📄 treatments.service.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `treatments.service.ts` | TypeScript | Encapsulates business logic and data access for treatments.service.ts. | @common, @nestjs | +| `📄 treatments.service.ts` | Service | Classes: TreatmentsService | @nestjs/common, @common/utils | -## 🔗 Dependencies -- `../domain/treatments.entity` -- `../infrastructure/repositories/treatments.repository` -- `@common/utils` -- `@nestjs/common` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './application'; +## 🔗 DEPENDENCIES +- `@nestjs/common` +- `@common/utils` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/treatments/domain/README.md b/backend/src/modules/treatments/domain/README.md index 1da9154f..c6ee2871 100644 --- a/backend/src/modules/treatments/domain/README.md +++ b/backend/src/modules/treatments/domain/README.md @@ -1,30 +1,28 @@ -# 📁 domain +# 🏷️ Domain -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [treatments](/backend/src/modules/treatments) > [domain](/backend/src/modules/treatments/domain) +[🏠 Home](../../../../../README.md) ❯ [backend](../../../../README.md) ❯ [src](../../../README.md) ❯ [modules](../../README.md) ❯ [treatments](../README.md) ❯ **domain** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **domain** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the domain domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 domain"] - Root --> treatments_entity_ts["📄 treatments.entity.ts"] + f_domain["📁 domain"] + f_domain --> f_treatments_entity_ts["📄 treatments.entity.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `treatments.entity.ts` | TypeScript | Provides core logic and orchestration for treatments.entity.ts. | N/A | +| `📄 treatments.entity.ts` | Logic/Utility | Classes: Treatments | None | -## 🔗 Dependencies -- No external dependencies. -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './domain'; +## 🔗 DEPENDENCIES +- No internal path aliases detected. -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/treatments/infrastructure/README.md b/backend/src/modules/treatments/infrastructure/README.md index 1f3c64af..425dba75 100644 --- a/backend/src/modules/treatments/infrastructure/README.md +++ b/backend/src/modules/treatments/infrastructure/README.md @@ -1,29 +1,30 @@ -# 📁 infrastructure +# 🏷️ Infrastructure -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [treatments](/backend/src/modules/treatments) > [infrastructure](/backend/src/modules/treatments/infrastructure) +[🏠 Home](../../../../../README.md) ❯ [backend](../../../../README.md) ❯ [src](../../../README.md) ❯ [modules](../../README.md) ❯ [treatments](../README.md) ❯ **infrastructure** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **infrastructure** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the infrastructure domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 infrastructure"] - Root --> repositories["📁 repositories"] - Root --> schemas["📁 schemas"] + f_infrastructure["📁 infrastructure"] + f_infrastructure --> f_repositories["📁 repositories"] + f_infrastructure --> f_schemas["📁 schemas"] ``` -## 📄 File Registry -*No relevant files in this directory.* -## 🔗 Dependencies -- No external dependencies. +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | +|---|---|---|---| +| `📁 repositories` | Directory | Contains child logic and structural domains | None | +| `📁 schemas` | Directory | Contains child logic and structural domains | None | -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './infrastructure'; -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🔗 DEPENDENCIES +- No internal path aliases detected. + +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/treatments/infrastructure/repositories/README.md b/backend/src/modules/treatments/infrastructure/repositories/README.md index b76c4329..179d4b02 100644 --- a/backend/src/modules/treatments/infrastructure/repositories/README.md +++ b/backend/src/modules/treatments/infrastructure/repositories/README.md @@ -1,33 +1,29 @@ -# 📁 repositories +# 🏷️ Repositories -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [treatments](/backend/src/modules/treatments) > [infrastructure](/backend/src/modules/treatments/infrastructure) > [repositories](/backend/src/modules/treatments/infrastructure/repositories) +[🏠 Home](../../../../../../README.md) ❯ [backend](../../../../../README.md) ❯ [src](../../../../README.md) ❯ [modules](../../../README.md) ❯ [treatments](../../README.md) ❯ [infrastructure](../README.md) ❯ **repositories** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **repositories** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the repositories domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 repositories"] - Root --> treatments_repository_ts["📄 treatments.repository.ts"] + f_repositories["📁 repositories"] + f_repositories --> f_treatments_repository_ts["📄 treatments.repository.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `treatments.repository.ts` | TypeScript | Provides core logic and orchestration for treatments.repository.ts. | @nestjs | +| `📄 treatments.repository.ts` | Service | Classes: TreatmentsRepository | @nestjs/common, @nestjs/mongoose | + -## 🔗 Dependencies -- `../../domain/treatments.entity` +## 🔗 DEPENDENCIES - `@nestjs/common` - `@nestjs/mongoose` -- `mongoose` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './repositories'; - -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/treatments/infrastructure/schemas/README.md b/backend/src/modules/treatments/infrastructure/schemas/README.md index 9a88d55e..94ff7edc 100644 --- a/backend/src/modules/treatments/infrastructure/schemas/README.md +++ b/backend/src/modules/treatments/infrastructure/schemas/README.md @@ -1,31 +1,28 @@ -# 📁 schemas +# 🏷️ Schemas -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [treatments](/backend/src/modules/treatments) > [infrastructure](/backend/src/modules/treatments/infrastructure) > [schemas](/backend/src/modules/treatments/infrastructure/schemas) +[🏠 Home](../../../../../../README.md) ❯ [backend](../../../../../README.md) ❯ [src](../../../../README.md) ❯ [modules](../../../README.md) ❯ [treatments](../../README.md) ❯ [infrastructure](../README.md) ❯ **schemas** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **schemas** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the schemas domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 schemas"] - Root --> treatments_schema_ts["📄 treatments.schema.ts"] + f_schemas["📁 schemas"] + f_schemas --> f_treatments_schema_ts["📄 treatments.schema.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `treatments.schema.ts` | TypeScript | Provides core logic and orchestration for treatments.schema.ts. | @nestjs | +| `📄 treatments.schema.ts` | Logic/Utility | Classes: TreatmentsSchemaEntity | @nestjs/mongoose | -## 🔗 Dependencies -- `@nestjs/mongoose` -- `mongoose` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './schemas'; +## 🔗 DEPENDENCIES +- `@nestjs/mongoose` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/treatments/presentation/README.md b/backend/src/modules/treatments/presentation/README.md index 7a6948d7..a766cdf9 100644 --- a/backend/src/modules/treatments/presentation/README.md +++ b/backend/src/modules/treatments/presentation/README.md @@ -1,33 +1,32 @@ -# 📁 presentation +# 🏷️ Presentation -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [treatments](/backend/src/modules/treatments) > [presentation](/backend/src/modules/treatments/presentation) +[🏠 Home](../../../../../README.md) ❯ [backend](../../../../README.md) ❯ [src](../../../README.md) ❯ [modules](../../README.md) ❯ [treatments](../README.md) ❯ **presentation** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **presentation** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the presentation domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 presentation"] - Root --> dto["📁 dto"] - Root --> treatments_controller_ts["📄 treatments.controller.ts"] + f_presentation["📁 presentation"] + f_presentation --> f_treatments_controller_ts["📄 treatments.controller.ts"] + f_presentation --> f_dto["📁 dto"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `treatments.controller.ts` | TypeScript | Handles incoming HTTP requests and routing for treatments.controller.ts. | @nestjs | +| `📁 dto` | Directory | Contains child logic and structural domains | None | +| `📄 treatments.controller.ts` | Controller | Classes: TreatmentsController | @nestjs/common, @nestjs/platform-express, @modules/treatments | -## 🔗 Dependencies -- `@nestjs/platform-express` -- `multer` -- `path` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './presentation'; +## 🔗 DEPENDENCIES +- `@nestjs/common` +- `@nestjs/platform-express` +- `@modules/treatments` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/treatments/presentation/dto/README.md b/backend/src/modules/treatments/presentation/dto/README.md index 0321e55b..b083d33f 100644 --- a/backend/src/modules/treatments/presentation/dto/README.md +++ b/backend/src/modules/treatments/presentation/dto/README.md @@ -1,34 +1,30 @@ -# 📁 dto +# 🏷️ Dto -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [treatments](/backend/src/modules/treatments) > [presentation](/backend/src/modules/treatments/presentation) > [dto](/backend/src/modules/treatments/presentation/dto) +[🏠 Home](../../../../../../README.md) ❯ [backend](../../../../../README.md) ❯ [src](../../../../README.md) ❯ [modules](../../../README.md) ❯ [treatments](../../README.md) ❯ [presentation](../README.md) ❯ **dto** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **dto** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the dto domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 dto"] - Root --> create_treatments_dto_ts["📄 create-treatments.dto.ts"] - Root --> update_treatments_dto_ts["📄 update-treatments.dto.ts"] + f_dto["📁 dto"] + f_dto --> f_create_treatments_dto_ts["📄 create-treatments.dto.ts"] + f_dto --> f_update_treatments_dto_ts["📄 update-treatments.dto.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `create-treatments.dto.ts` | TypeScript | Provides core logic and orchestration for create-treatments.dto.ts. | N/A | -| `update-treatments.dto.ts` | TypeScript | Provides core logic and orchestration for update-treatments.dto.ts. | @nestjs | +| `📄 create-treatments.dto.ts` | Logic/Utility | Classes: CreateServiceDto | None | +| `📄 update-treatments.dto.ts` | Logic/Utility | Classes: UpdateServiceDto | @nestjs/mapped-types | -## 🔗 Dependencies -- `./create-treatments.dto` -- `@nestjs/mapped-types` -- `class-transformer` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './dto'; +## 🔗 DEPENDENCIES +- `@nestjs/mapped-types` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/user/README.md b/backend/src/modules/user/README.md index 4d80484e..ef0ce9d2 100644 --- a/backend/src/modules/user/README.md +++ b/backend/src/modules/user/README.md @@ -1,40 +1,39 @@ -# 📁 user +# 🏷️ User -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [user](/backend/src/modules/user) +[🏠 Home](../../../../README.md) ❯ [backend](../../../README.md) ❯ [src](../../README.md) ❯ [modules](../README.md) ❯ **user** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **user** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the user domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 user"] - Root --> application["📁 application"] - Root --> domain["📁 domain"] - Root --> infrastructure["📁 infrastructure"] - Root --> presentation["📁 presentation"] - Root --> index_ts["📄 index.ts"] - Root --> user_module_ts["📄 user.module.ts"] + f_user["📁 user"] + f_user --> f_user_module_ts["📄 user.module.ts"] + f_user --> f_index_ts["📄 index.ts"] + f_user --> f_infrastructure["📁 infrastructure"] + f_user --> f_presentation["📁 presentation"] + f_user --> f_domain["📁 domain"] + f_user --> f_application["📁 application"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `index.ts` | TypeScript | Provides core logic and orchestration for index.ts. | N/A | -| `user.module.ts` | TypeScript | Defines the architectural module boundaries for user.module.ts. | @nestjs | +| `📁 infrastructure` | Directory | Contains child logic and structural domains | None | +| `📁 presentation` | Directory | Contains child logic and structural domains | None | +| `📁 domain` | Directory | Contains child logic and structural domains | None | +| `📁 application` | Directory | Contains child logic and structural domains | None | +| `📄 user.module.ts` | Module | Classes: UserModule | @nestjs/common, @nestjs/mongoose | +| `📄 index.ts` | Logic/Utility | Structural or configuration definitions. | None | + -## 🔗 Dependencies -- `./application/user.service` -- `./infrastructure/repositories/user.repository` -- `./presentation/user.controller` +## 🔗 DEPENDENCIES - `@nestjs/common` - `@nestjs/mongoose` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './user'; - -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/user/application/README.md b/backend/src/modules/user/application/README.md index 49d3c42d..317b26d0 100644 --- a/backend/src/modules/user/application/README.md +++ b/backend/src/modules/user/application/README.md @@ -1,33 +1,28 @@ -# 📁 application +# 🏷️ Application -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [user](/backend/src/modules/user) > [application](/backend/src/modules/user/application) +[🏠 Home](../../../../../README.md) ❯ [backend](../../../../README.md) ❯ [src](../../../README.md) ❯ [modules](../../README.md) ❯ [user](../README.md) ❯ **application** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **application** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the application domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 application"] - Root --> user_service_ts["📄 user.service.ts"] + f_application["📁 application"] + f_application --> f_user_service_ts["📄 user.service.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `user.service.ts` | TypeScript | Encapsulates business logic and data access for user.service.ts. | @nestjs | +| `📄 user.service.ts` | Service | Classes: UserService | @nestjs/common | -## 🔗 Dependencies -- `../domain/user.entity` -- `../infrastructure/repositories/user.repository` -- `@nestjs/common` -- `bcrypt` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './application'; +## 🔗 DEPENDENCIES +- `@nestjs/common` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/user/domain/README.md b/backend/src/modules/user/domain/README.md index b30d4a9f..2384e8ac 100644 --- a/backend/src/modules/user/domain/README.md +++ b/backend/src/modules/user/domain/README.md @@ -1,30 +1,28 @@ -# 📁 domain +# 🏷️ Domain -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [user](/backend/src/modules/user) > [domain](/backend/src/modules/user/domain) +[🏠 Home](../../../../../README.md) ❯ [backend](../../../../README.md) ❯ [src](../../../README.md) ❯ [modules](../../README.md) ❯ [user](../README.md) ❯ **domain** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **domain** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the domain domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 domain"] - Root --> user_entity_ts["📄 user.entity.ts"] + f_domain["📁 domain"] + f_domain --> f_user_entity_ts["📄 user.entity.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `user.entity.ts` | TypeScript | Provides core logic and orchestration for user.entity.ts. | N/A | +| `📄 user.entity.ts` | Logic/Utility | Classes: User | None | -## 🔗 Dependencies -- No external dependencies. -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './domain'; +## 🔗 DEPENDENCIES +- No internal path aliases detected. -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/user/infrastructure/README.md b/backend/src/modules/user/infrastructure/README.md index 0c8fe858..3eed359b 100644 --- a/backend/src/modules/user/infrastructure/README.md +++ b/backend/src/modules/user/infrastructure/README.md @@ -1,29 +1,30 @@ -# 📁 infrastructure +# 🏷️ Infrastructure -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [user](/backend/src/modules/user) > [infrastructure](/backend/src/modules/user/infrastructure) +[🏠 Home](../../../../../README.md) ❯ [backend](../../../../README.md) ❯ [src](../../../README.md) ❯ [modules](../../README.md) ❯ [user](../README.md) ❯ **infrastructure** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **infrastructure** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the infrastructure domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 infrastructure"] - Root --> repositories["📁 repositories"] - Root --> schemas["📁 schemas"] + f_infrastructure["📁 infrastructure"] + f_infrastructure --> f_repositories["📁 repositories"] + f_infrastructure --> f_schemas["📁 schemas"] ``` -## 📄 File Registry -*No relevant files in this directory.* -## 🔗 Dependencies -- No external dependencies. +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | +|---|---|---|---| +| `📁 repositories` | Directory | Contains child logic and structural domains | None | +| `📁 schemas` | Directory | Contains child logic and structural domains | None | -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './infrastructure'; -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🔗 DEPENDENCIES +- No internal path aliases detected. + +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/user/infrastructure/repositories/README.md b/backend/src/modules/user/infrastructure/repositories/README.md index 0d1e6fb3..6475f03d 100644 --- a/backend/src/modules/user/infrastructure/repositories/README.md +++ b/backend/src/modules/user/infrastructure/repositories/README.md @@ -1,34 +1,29 @@ -# 📁 repositories +# 🏷️ Repositories -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [user](/backend/src/modules/user) > [infrastructure](/backend/src/modules/user/infrastructure) > [repositories](/backend/src/modules/user/infrastructure/repositories) +[🏠 Home](../../../../../../README.md) ❯ [backend](../../../../../README.md) ❯ [src](../../../../README.md) ❯ [modules](../../../README.md) ❯ [user](../../README.md) ❯ [infrastructure](../README.md) ❯ **repositories** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **repositories** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the repositories domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 repositories"] - Root --> user_repository_ts["📄 user.repository.ts"] + f_repositories["📁 repositories"] + f_repositories --> f_user_repository_ts["📄 user.repository.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `user.repository.ts` | TypeScript | Provides core logic and orchestration for user.repository.ts. | @nestjs | +| `📄 user.repository.ts` | Service | Classes: UserRepository | @nestjs/common, @nestjs/mongoose | + -## 🔗 Dependencies -- `../../domain/user.entity` -- `../schemas/user.schema` +## 🔗 DEPENDENCIES - `@nestjs/common` - `@nestjs/mongoose` -- `mongoose` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './repositories'; - -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/user/infrastructure/schemas/README.md b/backend/src/modules/user/infrastructure/schemas/README.md index 2e531db3..13d8b820 100644 --- a/backend/src/modules/user/infrastructure/schemas/README.md +++ b/backend/src/modules/user/infrastructure/schemas/README.md @@ -1,31 +1,28 @@ -# 📁 schemas +# 🏷️ Schemas -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [user](/backend/src/modules/user) > [infrastructure](/backend/src/modules/user/infrastructure) > [schemas](/backend/src/modules/user/infrastructure/schemas) +[🏠 Home](../../../../../../README.md) ❯ [backend](../../../../../README.md) ❯ [src](../../../../README.md) ❯ [modules](../../../README.md) ❯ [user](../../README.md) ❯ [infrastructure](../README.md) ❯ **schemas** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **schemas** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the schemas domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 schemas"] - Root --> user_schema_ts["📄 user.schema.ts"] + f_schemas["📁 schemas"] + f_schemas --> f_user_schema_ts["📄 user.schema.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `user.schema.ts` | TypeScript | Provides core logic and orchestration for user.schema.ts. | @nestjs | +| `📄 user.schema.ts` | Logic/Utility | Classes: UserSchemaEntity | @nestjs/mongoose | -## 🔗 Dependencies -- `@nestjs/mongoose` -- `mongoose` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './schemas'; +## 🔗 DEPENDENCIES +- `@nestjs/mongoose` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/user/presentation/README.md b/backend/src/modules/user/presentation/README.md index 3c548cff..ba1406f5 100644 --- a/backend/src/modules/user/presentation/README.md +++ b/backend/src/modules/user/presentation/README.md @@ -1,38 +1,33 @@ -# 📁 presentation +# 🏷️ Presentation -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [user](/backend/src/modules/user) > [presentation](/backend/src/modules/user/presentation) +[🏠 Home](../../../../../README.md) ❯ [backend](../../../../README.md) ❯ [src](../../../README.md) ❯ [modules](../../README.md) ❯ [user](../README.md) ❯ **presentation** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **presentation** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the presentation domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 presentation"] - Root --> dto["📁 dto"] - Root --> user_controller_ts["📄 user.controller.ts"] + f_presentation["📁 presentation"] + f_presentation --> f_user_controller_ts["📄 user.controller.ts"] + f_presentation --> f_dto["📁 dto"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `user.controller.ts` | TypeScript | Handles incoming HTTP requests and routing for user.controller.ts. | @common, @modules, @nestjs | +| `📁 dto` | Directory | Contains child logic and structural domains | None | +| `📄 user.controller.ts` | Controller | Classes: UserController | @nestjs/common, @modules/user, @nestjs/platform-express, @common/interfaces/authenticated-request.interface | -## 🔗 Dependencies -- `../application/user.service` -- `./dto/create-user.dto` -- `./dto/update-user.dto` -- `@common/interfaces/authenticated-request.interface` + +## 🔗 DEPENDENCIES +- `@nestjs/common` - `@modules/user` - `@nestjs/platform-express` -- `multer` -- `path` - -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './presentation'; +- `@common/interfaces/authenticated-request.interface` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/user/presentation/dto/README.md b/backend/src/modules/user/presentation/dto/README.md index 2d6f70ec..e4e22a97 100644 --- a/backend/src/modules/user/presentation/dto/README.md +++ b/backend/src/modules/user/presentation/dto/README.md @@ -1,33 +1,30 @@ -# 📁 dto +# 🏷️ Dto -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [user](/backend/src/modules/user) > [presentation](/backend/src/modules/user/presentation) > [dto](/backend/src/modules/user/presentation/dto) +[🏠 Home](../../../../../../README.md) ❯ [backend](../../../../../README.md) ❯ [src](../../../../README.md) ❯ [modules](../../../README.md) ❯ [user](../../README.md) ❯ [presentation](../README.md) ❯ **dto** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **dto** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the dto domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 dto"] - Root --> create_user_dto_ts["📄 create-user.dto.ts"] - Root --> update_user_dto_ts["📄 update-user.dto.ts"] + f_dto["📁 dto"] + f_dto --> f_update_user_dto_ts["📄 update-user.dto.ts"] + f_dto --> f_create_user_dto_ts["📄 create-user.dto.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `create-user.dto.ts` | TypeScript | Provides core logic and orchestration for create-user.dto.ts. | N/A | -| `update-user.dto.ts` | TypeScript | Provides core logic and orchestration for update-user.dto.ts. | @nestjs | +| `📄 update-user.dto.ts` | Logic/Utility | Classes: UpdateUserDto | @nestjs/mapped-types | +| `📄 create-user.dto.ts` | Logic/Utility | Classes: CreateUserDto | None | -## 🔗 Dependencies -- `./create-user.dto` -- `@nestjs/mapped-types` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './dto'; +## 🔗 DEPENDENCIES +- `@nestjs/mapped-types` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/veil/README.md b/backend/src/modules/veil/README.md index 17f02552..43dea3ef 100644 --- a/backend/src/modules/veil/README.md +++ b/backend/src/modules/veil/README.md @@ -1,40 +1,39 @@ -# 📁 veil +# 🏷️ Veil -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [veil](/backend/src/modules/veil) +[🏠 Home](../../../../README.md) ❯ [backend](../../../README.md) ❯ [src](../../README.md) ❯ [modules](../README.md) ❯ **veil** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **veil** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the veil domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 veil"] - Root --> application["📁 application"] - Root --> domain["📁 domain"] - Root --> infrastructure["📁 infrastructure"] - Root --> presentation["📁 presentation"] - Root --> index_ts["📄 index.ts"] - Root --> veil_module_ts["📄 veil.module.ts"] + f_veil["📁 veil"] + f_veil --> f_index_ts["📄 index.ts"] + f_veil --> f_veil_module_ts["📄 veil.module.ts"] + f_veil --> f_infrastructure["📁 infrastructure"] + f_veil --> f_presentation["📁 presentation"] + f_veil --> f_domain["📁 domain"] + f_veil --> f_application["📁 application"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `index.ts` | TypeScript | Provides core logic and orchestration for index.ts. | N/A | -| `veil.module.ts` | TypeScript | Defines the architectural module boundaries for veil.module.ts. | @nestjs | +| `📁 infrastructure` | Directory | Contains child logic and structural domains | None | +| `📁 presentation` | Directory | Contains child logic and structural domains | None | +| `📁 domain` | Directory | Contains child logic and structural domains | None | +| `📁 application` | Directory | Contains child logic and structural domains | None | +| `📄 index.ts` | Logic/Utility | Structural or configuration definitions. | None | +| `📄 veil.module.ts` | Module | Classes: VeilModule | @nestjs/common, @nestjs/mongoose | + -## 🔗 Dependencies -- `./application/veil.service` -- `./infrastructure/repositories/veil.repository` -- `./presentation/veil.controller` +## 🔗 DEPENDENCIES - `@nestjs/common` - `@nestjs/mongoose` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './veil'; - -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/veil/application/README.md b/backend/src/modules/veil/application/README.md index 87cb6374..a2203225 100644 --- a/backend/src/modules/veil/application/README.md +++ b/backend/src/modules/veil/application/README.md @@ -1,32 +1,28 @@ -# 📁 application +# 🏷️ Application -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [veil](/backend/src/modules/veil) > [application](/backend/src/modules/veil/application) +[🏠 Home](../../../../../README.md) ❯ [backend](../../../../README.md) ❯ [src](../../../README.md) ❯ [modules](../../README.md) ❯ [veil](../README.md) ❯ **application** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **application** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the application domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 application"] - Root --> veil_service_ts["📄 veil.service.ts"] + f_application["📁 application"] + f_application --> f_veil_service_ts["📄 veil.service.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `veil.service.ts` | TypeScript | Encapsulates business logic and data access for veil.service.ts. | @nestjs | +| `📄 veil.service.ts` | Service | Classes: VeilService | @nestjs/common | -## 🔗 Dependencies -- `../domain/veil.entity` -- `../infrastructure/repositories/veil.repository` -- `@nestjs/common` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './application'; +## 🔗 DEPENDENCIES +- `@nestjs/common` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/veil/domain/README.md b/backend/src/modules/veil/domain/README.md index 0bea95ff..f1bd3bc5 100644 --- a/backend/src/modules/veil/domain/README.md +++ b/backend/src/modules/veil/domain/README.md @@ -1,30 +1,28 @@ -# 📁 domain +# 🏷️ Domain -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [veil](/backend/src/modules/veil) > [domain](/backend/src/modules/veil/domain) +[🏠 Home](../../../../../README.md) ❯ [backend](../../../../README.md) ❯ [src](../../../README.md) ❯ [modules](../../README.md) ❯ [veil](../README.md) ❯ **domain** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **domain** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the domain domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 domain"] - Root --> veil_entity_ts["📄 veil.entity.ts"] + f_domain["📁 domain"] + f_domain --> f_veil_entity_ts["📄 veil.entity.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `veil.entity.ts` | TypeScript | Provides core logic and orchestration for veil.entity.ts. | N/A | +| `📄 veil.entity.ts` | Logic/Utility | Classes: Veil | None | -## 🔗 Dependencies -- No external dependencies. -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './domain'; +## 🔗 DEPENDENCIES +- No internal path aliases detected. -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/veil/infrastructure/README.md b/backend/src/modules/veil/infrastructure/README.md index c53314ee..e63bd8bc 100644 --- a/backend/src/modules/veil/infrastructure/README.md +++ b/backend/src/modules/veil/infrastructure/README.md @@ -1,29 +1,30 @@ -# 📁 infrastructure +# 🏷️ Infrastructure -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [veil](/backend/src/modules/veil) > [infrastructure](/backend/src/modules/veil/infrastructure) +[🏠 Home](../../../../../README.md) ❯ [backend](../../../../README.md) ❯ [src](../../../README.md) ❯ [modules](../../README.md) ❯ [veil](../README.md) ❯ **infrastructure** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **infrastructure** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the infrastructure domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 infrastructure"] - Root --> repositories["📁 repositories"] - Root --> schemas["📁 schemas"] + f_infrastructure["📁 infrastructure"] + f_infrastructure --> f_repositories["📁 repositories"] + f_infrastructure --> f_schemas["📁 schemas"] ``` -## 📄 File Registry -*No relevant files in this directory.* -## 🔗 Dependencies -- No external dependencies. +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | +|---|---|---|---| +| `📁 repositories` | Directory | Contains child logic and structural domains | None | +| `📁 schemas` | Directory | Contains child logic and structural domains | None | -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './infrastructure'; -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🔗 DEPENDENCIES +- No internal path aliases detected. + +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/veil/infrastructure/repositories/README.md b/backend/src/modules/veil/infrastructure/repositories/README.md index abebe092..1d3dc043 100644 --- a/backend/src/modules/veil/infrastructure/repositories/README.md +++ b/backend/src/modules/veil/infrastructure/repositories/README.md @@ -1,35 +1,30 @@ -# 📁 repositories +# 🏷️ Repositories -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [veil](/backend/src/modules/veil) > [infrastructure](/backend/src/modules/veil/infrastructure) > [repositories](/backend/src/modules/veil/infrastructure/repositories) +[🏠 Home](../../../../../../README.md) ❯ [backend](../../../../../README.md) ❯ [src](../../../../README.md) ❯ [modules](../../../README.md) ❯ [veil](../../README.md) ❯ [infrastructure](../README.md) ❯ **repositories** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **repositories** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the repositories domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 repositories"] - Root --> veil_repository_ts["📄 veil.repository.ts"] + f_repositories["📁 repositories"] + f_repositories --> f_veil_repository_ts["📄 veil.repository.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `veil.repository.ts` | TypeScript | Provides core logic and orchestration for veil.repository.ts. | @common, @nestjs | +| `📄 veil.repository.ts` | Service | Classes: VeilRepository | @nestjs/common, @nestjs/mongoose, @common/utils/file-system | -## 🔗 Dependencies -- `../../domain/veil.entity` -- `../schemas/veil.schema` -- `@common/utils/file-system` + +## 🔗 DEPENDENCIES - `@nestjs/common` - `@nestjs/mongoose` -- `mongoose` - -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './repositories'; +- `@common/utils/file-system` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/veil/infrastructure/schemas/README.md b/backend/src/modules/veil/infrastructure/schemas/README.md index a129ab0b..3753649f 100644 --- a/backend/src/modules/veil/infrastructure/schemas/README.md +++ b/backend/src/modules/veil/infrastructure/schemas/README.md @@ -1,31 +1,28 @@ -# 📁 schemas +# 🏷️ Schemas -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [veil](/backend/src/modules/veil) > [infrastructure](/backend/src/modules/veil/infrastructure) > [schemas](/backend/src/modules/veil/infrastructure/schemas) +[🏠 Home](../../../../../../README.md) ❯ [backend](../../../../../README.md) ❯ [src](../../../../README.md) ❯ [modules](../../../README.md) ❯ [veil](../../README.md) ❯ [infrastructure](../README.md) ❯ **schemas** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **schemas** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the schemas domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 schemas"] - Root --> veil_schema_ts["📄 veil.schema.ts"] + f_schemas["📁 schemas"] + f_schemas --> f_veil_schema_ts["📄 veil.schema.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `veil.schema.ts` | TypeScript | Provides core logic and orchestration for veil.schema.ts. | @nestjs | +| `📄 veil.schema.ts` | Logic/Utility | Classes: VeilSchemaEntity | @nestjs/mongoose | -## 🔗 Dependencies -- `@nestjs/mongoose` -- `mongoose` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './schemas'; +## 🔗 DEPENDENCIES +- `@nestjs/mongoose` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/veil/presentation/README.md b/backend/src/modules/veil/presentation/README.md index cceea6fe..3b4ebd9a 100644 --- a/backend/src/modules/veil/presentation/README.md +++ b/backend/src/modules/veil/presentation/README.md @@ -1,37 +1,31 @@ -# 📁 presentation +# 🏷️ Presentation -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [veil](/backend/src/modules/veil) > [presentation](/backend/src/modules/veil/presentation) +[🏠 Home](../../../../../README.md) ❯ [backend](../../../../README.md) ❯ [src](../../../README.md) ❯ [modules](../../README.md) ❯ [veil](../README.md) ❯ **presentation** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **presentation** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the presentation domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 presentation"] - Root --> dto["📁 dto"] - Root --> veil_controller_ts["📄 veil.controller.ts"] + f_presentation["📁 presentation"] + f_presentation --> f_veil_controller_ts["📄 veil.controller.ts"] + f_presentation --> f_dto["📁 dto"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `veil.controller.ts` | TypeScript | Handles incoming HTTP requests and routing for veil.controller.ts. | @nestjs | +| `📁 dto` | Directory | Contains child logic and structural domains | None | +| `📄 veil.controller.ts` | Controller | Classes: VeilController | @nestjs/common, @nestjs/platform-express | -## 🔗 Dependencies -- `../application/veil.service` -- `../domain/veil.entity` -- `./dto/create-veil.dto` -- `./dto/update-veil.dto` -- `@nestjs/platform-express` -- `multer` -- `path` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './presentation'; +## 🔗 DEPENDENCIES +- `@nestjs/common` +- `@nestjs/platform-express` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/src/modules/veil/presentation/dto/README.md b/backend/src/modules/veil/presentation/dto/README.md index 6cbbe5cd..fca68138 100644 --- a/backend/src/modules/veil/presentation/dto/README.md +++ b/backend/src/modules/veil/presentation/dto/README.md @@ -1,34 +1,30 @@ -# 📁 dto +# 🏷️ Dto -[Root](/.) > [backend](/backend) > [src](/backend/src) > [modules](/backend/src/modules) > [veil](/backend/src/modules/veil) > [presentation](/backend/src/modules/veil/presentation) > [dto](/backend/src/modules/veil/presentation/dto) +[🏠 Home](../../../../../../README.md) ❯ [backend](../../../../../README.md) ❯ [src](../../../../README.md) ❯ [modules](../../../README.md) ❯ [veil](../../README.md) ❯ [presentation](../README.md) ❯ **dto** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **dto** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the dto domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 dto"] - Root --> create_veil_dto_ts["📄 create-veil.dto.ts"] - Root --> update_veil_dto_ts["📄 update-veil.dto.ts"] + f_dto["📁 dto"] + f_dto --> f_update_veil_dto_ts["📄 update-veil.dto.ts"] + f_dto --> f_create_veil_dto_ts["📄 create-veil.dto.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `create-veil.dto.ts` | TypeScript | Provides core logic and orchestration for create-veil.dto.ts. | N/A | -| `update-veil.dto.ts` | TypeScript | Provides core logic and orchestration for update-veil.dto.ts. | @nestjs | +| `📄 update-veil.dto.ts` | Logic/Utility | Classes: UpdateVeilDto | @nestjs/mapped-types | +| `📄 create-veil.dto.ts` | Logic/Utility | Classes: CreateVeilDto | None | -## 🔗 Dependencies -- `./create-veil.dto` -- `@nestjs/mapped-types` -- `class-transformer` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './dto'; +## 🔗 DEPENDENCIES +- `@nestjs/mapped-types` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/backend/test/README.md b/backend/test/README.md index 7ca1bad5..122df45f 100644 --- a/backend/test/README.md +++ b/backend/test/README.md @@ -1,36 +1,31 @@ -# 📁 test +# 🏷️ Test -[Root](/.) > [backend](/backend) > [test](/backend/test) +[🏠 Home](../../README.md) ❯ [backend](../README.md) ❯ **test** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **test** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the test domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 test"] - Root --> app_e2e_spec_ts["📄 app.e2e-spec.ts"] - Root --> jest_e2e_json["📄 jest-e2e.json"] + f_test["📁 test"] + f_test --> f_jest_e2e_json["📄 jest-e2e.json"] + f_test --> f_app_e2e_spec_ts["📄 app.e2e-spec.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `app.e2e-spec.ts` | TypeScript | Unit testing and quality assurance for app.e2e-spec.ts. | @nestjs | -| `jest-e2e.json` | JSON Configuration | Provides core logic and orchestration for jest-e2e.json. | N/A | +| `📄 jest-e2e.json` | Configuration | Structural or configuration definitions. | None | +| `📄 app.e2e-spec.ts` | Logic/Utility | Structural or configuration definitions. | @nestjs/common, @nestjs/testing | + -## 🔗 Dependencies -- `./../src/app.module` +## 🔗 DEPENDENCIES - `@nestjs/common` - `@nestjs/testing` -- `supertest` -- `supertest/types` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './test'; - -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/README.md b/frontend/README.md index 6282bdff..009b52d1 100644 --- a/frontend/README.md +++ b/frontend/README.md @@ -1,49 +1,48 @@ -# 📁 frontend +# 🏷️ Frontend -[Root](/.) > [frontend](/frontend) +[🏠 Home](../README.md) ❯ **frontend** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **frontend** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the frontend domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 frontend"] - Root --> public["📁 public"] - Root --> src["📁 src"] - Root --> angular_json["📄 angular.json"] - Root --> index_html["📄 index.html"] - Root --> index_tsx["📄 index.tsx"] - Root --> leaflet_css["📄 leaflet.css"] - Root --> metadata_json["📄 metadata.json"] - Root --> package_lock_json["📄 package-lock.json"] - Root --> package_json["📄 package.json"] - Root --> tsconfig_json["📄 tsconfig.json"] + f_frontend["📁 frontend"] + f_frontend --> f_package_lock_json["📄 package-lock.json"] + f_frontend --> f_angular_json["📄 angular.json"] + f_frontend --> f_metadata_json["📄 metadata.json"] + f_frontend --> f_index_tsx["📄 index.tsx"] + f_frontend --> f_leaflet_css["📄 leaflet.css"] + f_frontend --> f_tsconfig_json["📄 tsconfig.json"] + f_frontend --> f_index_html["📄 index.html"] + f_frontend --> f_package_json["📄 package.json"] + f_frontend --> f_public["📁 public"] + f_frontend --> f_environments["📁 environments"] + f_frontend --> f_src["📁 src"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `angular.json` | JSON Configuration | Provides core logic and orchestration for angular.json. | N/A | -| `index.html` | Template | Provides core logic and orchestration for index.html. | N/A | -| `index.tsx` | File | Provides core logic and orchestration for index.tsx. | @angular | -| `leaflet.css` | Stylesheet | Provides core logic and orchestration for leaflet.css. | N/A | -| `metadata.json` | JSON Configuration | Provides core logic and orchestration for metadata.json. | N/A | -| `package-lock.json` | JSON Configuration | Provides core logic and orchestration for package-lock.json. | N/A | -| `package.json` | JSON Configuration | Provides core logic and orchestration for package.json. | N/A | -| `tsconfig.json` | JSON Configuration | Provides core logic and orchestration for tsconfig.json. | N/A | - -## 🔗 Dependencies -- `./src/app.component` -- `./src/app/app.config` -- `@angular/platform-browser` -- `leaflet/dist/leaflet.css` +| `📁 public` | Directory | Contains child logic and structural domains | None | +| `📁 environments` | Directory | Contains child logic and structural domains | None | +| `📁 src` | Directory | Contains child logic and structural domains | None | +| `📄 package-lock.json` | Configuration | Structural or configuration definitions. | None | +| `📄 angular.json` | Configuration | Structural or configuration definitions. | None | +| `📄 metadata.json` | Configuration | Structural or configuration definitions. | None | +| `📄 index.tsx` | Logic/Utility | Structural or configuration definitions. | @angular/platform-browser | +| `📄 leaflet.css` | Style | Structural or configuration definitions. | None | +| `📄 tsconfig.json` | Configuration | Structural or configuration definitions. | None | +| `📄 index.html` | Template | Structural or configuration definitions. | None | +| `📄 package.json` | Configuration | Structural or configuration definitions. | None | -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './frontend'; -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🔗 DEPENDENCIES +- `@angular/platform-browser` + +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/environments/README.md b/frontend/environments/README.md new file mode 100644 index 00000000..f9f30bdd --- /dev/null +++ b/frontend/environments/README.md @@ -0,0 +1,36 @@ +# 🏷️ Environments + +[🏠 Home](../../README.md) ❯ [frontend](../README.md) ❯ **environments** + +**FSD Layer:** `App` + +## 🎯 PURPOSE +Core implementation for the environments domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE +```mermaid +graph TD + f_environments["📁 environments"] + f_environments --> f_environment_development_ts["📄 environment.development.ts"] + f_environments --> f_environment_tg_ts["📄 environment.tg.ts"] + f_environments --> f_environment_ts["📄 environment.ts"] + f_environments --> f_environment_ru_ts["📄 environment.ru.ts"] + f_environments --> f_environment_en_ts["📄 environment.en.ts"] +``` + + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | +|---|---|---|---| +| `📄 environment.development.ts` | Logic/Utility | Structural or configuration definitions. | None | +| `📄 environment.tg.ts` | Logic/Utility | Structural or configuration definitions. | None | +| `📄 environment.ts` | Logic/Utility | Structural or configuration definitions. | None | +| `📄 environment.ru.ts` | Logic/Utility | Structural or configuration definitions. | None | +| `📄 environment.en.ts` | Logic/Utility | Structural or configuration definitions. | None | + + +## 🔗 DEPENDENCIES +- No internal path aliases detected. + +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/public/README.md b/frontend/public/README.md index 397a92c4..7cd05833 100644 --- a/frontend/public/README.md +++ b/frontend/public/README.md @@ -1,28 +1,28 @@ -# 📁 public +# 🏷️ Public -[Root](/.) > [frontend](/frontend) > [public](/frontend/public) +[🏠 Home](../../README.md) ❯ [frontend](../README.md) ❯ **public** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **public** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the public domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 public"] - Root --> images["📁 images"] + f_public["📁 public"] + f_public --> f_images["📁 images"] ``` -## 📄 File Registry -*No relevant files in this directory.* -## 🔗 Dependencies -- No external dependencies. +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | +|---|---|---|---| +| `📁 images` | Directory | Contains child logic and structural domains | None | -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './public'; -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🔗 DEPENDENCIES +- No internal path aliases detected. + +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/public/images/README.md b/frontend/public/images/README.md index e1f84cbf..ab7fdfad 100644 --- a/frontend/public/images/README.md +++ b/frontend/public/images/README.md @@ -1,32 +1,30 @@ -# 📁 images +# 🏷️ Images -[Root](/.) > [frontend](/frontend) > [public](/frontend/public) > [images](/frontend/public/images) +[🏠 Home](../../../README.md) ❯ [frontend](../../README.md) ❯ [public](../README.md) ❯ **images** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **images** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the images domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 images"] - Root --> treatments_add_img_png["📄 treatments-add-img.png"] - Root --> treatments_no_img_png["📄 treatments-no-img.png"] + f_images["📁 images"] + f_images --> f_treatments_no_img_png["📄 treatments-no-img.png"] + f_images --> f_treatments_add_img_png["📄 treatments-add-img.png"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `treatments-add-img.png` | File | Provides core logic and orchestration for treatments-add-img.png. | N/A | -| `treatments-no-img.png` | File | Provides core logic and orchestration for treatments-no-img.png. | N/A | +| `📄 treatments-no-img.png` | Unknown | Binary or unreadable file | | +| `📄 treatments-add-img.png` | Unknown | Binary or unreadable file | | -## 🔗 Dependencies -- No external dependencies. -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './images'; +## 🔗 DEPENDENCIES +- `` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/README.md b/frontend/src/README.md index 95d1aabe..1ab855f3 100644 --- a/frontend/src/README.md +++ b/frontend/src/README.md @@ -1,57 +1,62 @@ -# 📁 src +# 🏷️ Src -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) +[🏠 Home](../../README.md) ❯ [frontend](../README.md) ❯ **src** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **src** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the src domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 src"] - Root --> app["📁 app"] - Root --> backend["📁 backend"] - Root --> core["📁 core"] - Root --> entities["📁 entities"] - Root --> environments["📁 environments"] - Root --> features["📁 features"] - Root --> locale["📁 locale"] - Root --> pages["📁 pages"] - Root --> shared["📁 shared"] - Root --> types["📁 types"] - Root --> widgets["📁 widgets"] - Root --> app_component_html["📄 app.component.html"] - Root --> app_component_scss["📄 app.component.scss"] - Root --> app_component_ts["📄 app.component.ts"] - Root --> app_routes_ts["📄 app.routes.ts"] - Root --> main_ts["📄 main.ts"] + f_src["📁 src"] + f_src --> f_app_component_html["📄 app.component.html"] + f_src --> f_main_ts["📄 main.ts"] + f_src --> f_app_routes_ts["📄 app.routes.ts"] + f_src --> f_app_component_scss["📄 app.component.scss"] + f_src --> f_app_component_ts["📄 app.component.ts"] + f_src --> f_backend["📁 backend"] + f_src --> f_entities["📁 entities"] + f_src --> f_app["📁 app"] + f_src --> f_locale["📁 locale"] + f_src --> f_core["📁 core"] + f_src --> f_shared["📁 shared"] + f_src --> f_widgets["📁 widgets"] + f_src --> f_pages["📁 pages"] + f_src --> f_features["📁 features"] + f_src --> f_types["📁 types"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `app.component.html` | Template | Structural template and layout for app.component.html. | N/A | -| `app.component.scss` | Stylesheet | Luxury styling and visual presentation for app.component.scss. | N/A | -| `app.component.ts` | TypeScript | UI component logic and state management for app.component.ts. | @angular, @shared | -| `app.routes.ts` | TypeScript | Provides core logic and orchestration for app.routes.ts. | @angular, @pages, @widgets | -| `main.ts` | TypeScript | Provides core logic and orchestration for main.ts. | @angular | - -## 🔗 Dependencies -- `./app.component` -- `./app/app.config` +| `📁 backend` | Directory | Contains child logic and structural domains | None | +| `📁 entities` | Directory | Contains child logic and structural domains | None | +| `📁 app` | Directory | Contains child logic and structural domains | None | +| `📁 locale` | Directory | Contains child logic and structural domains | None | +| `📁 core` | Directory | Contains child logic and structural domains | None | +| `📁 shared` | Directory | Contains child logic and structural domains | None | +| `📁 widgets` | Directory | Contains child logic and structural domains | None | +| `📁 pages` | Directory | Contains child logic and structural domains | None | +| `📁 features` | Directory | Contains child logic and structural domains | None | +| `📁 types` | Directory | Contains child logic and structural domains | None | +| `📄 app.component.html` | Template | Structural or configuration definitions. | None | +| `📄 main.ts` | Logic/Utility | Structural or configuration definitions. | @angular/platform-browser | +| `📄 app.routes.ts` | Logic/Utility | Structural or configuration definitions. | @core/guards, @angular/router | +| `📄 app.component.scss` | Style | Structural or configuration definitions. | None | +| `📄 app.component.ts` | Component | Classes: AppComponent | @shared/services, @angular/common, @shared/ui, @angular/core, @angular/router | + + +## 🔗 DEPENDENCIES +- `@shared/services` - `@angular/common` - `@angular/platform-browser` -- `@angular/router` -- `@pages/auth` -- `@shared/services` +- `@core/guards` - `@shared/ui` -- `@widgets/layouts` - -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './src'; +- `@angular/core` +- `@angular/router` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/app/README.md b/frontend/src/app/README.md index 4f0fecb2..a9dd0997 100644 --- a/frontend/src/app/README.md +++ b/frontend/src/app/README.md @@ -1,35 +1,33 @@ -# 📁 app +# 🏷️ App -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [app](/frontend/src/app) +[🏠 Home](../../../README.md) ❯ [frontend](../../README.md) ❯ [src](../README.md) ❯ **app** -**FSD Layer:** App +**FSD Layer:** `App` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **app** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the app domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 app"] - Root --> app_config_ts["📄 app.config.ts"] + f_app["📁 app"] + f_app --> f_app_config_ts["📄 app.config.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `app.config.ts` | TypeScript | Provides core logic and orchestration for app.config.ts. | @angular, @core, @src | +| `📄 app.config.ts` | Logic/Utility | Structural or configuration definitions. | @angular/platform-browser/animations, @src/app.routes, @angular/common/http, @core/interceptors, @angular/core, @angular/router | + -## 🔗 Dependencies +## 🔗 DEPENDENCIES - `@angular/platform-browser/animations` -- `@angular/router` -- `@core/interceptors` - `@src/app.routes` +- `@angular/common/http` +- `@core/interceptors` +- `@angular/core` +- `@angular/router` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './app'; - -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/backend/README.md b/frontend/src/backend/README.md index 4e5fc67d..f32473ee 100644 --- a/frontend/src/backend/README.md +++ b/frontend/src/backend/README.md @@ -1,34 +1,30 @@ -# 📁 backend +# 🏷️ Backend -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [backend](/frontend/src/backend) +[🏠 Home](../../../README.md) ❯ [frontend](../../README.md) ❯ [src](../README.md) ❯ **backend** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **backend** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the backend domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 backend"] - Root --> index_ts["📄 index.ts"] - Root --> telegram_auth_guard_ts["📄 telegram-auth.guard.ts"] + f_backend["📁 backend"] + f_backend --> f_index_ts["📄 index.ts"] + f_backend --> f_telegram_auth_guard_ts["📄 telegram-auth.guard.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `index.ts` | TypeScript | Provides core logic and orchestration for index.ts. | N/A | -| `telegram-auth.guard.ts` | TypeScript | Provides core logic and orchestration for telegram-auth.guard.ts. | @nestjs | +| `📄 index.ts` | Logic/Utility | Structural or configuration definitions. | None | +| `📄 telegram-auth.guard.ts` | Service | Classes: TelegramAuthGuard | @nestjs/common | -## 🔗 Dependencies -- `@nestjs/common` -- `crypto` -- `express` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './backend'; +## 🔗 DEPENDENCIES +- `@nestjs/common` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/core/README.md b/frontend/src/core/README.md index b0fbfd4b..5c3187ba 100644 --- a/frontend/src/core/README.md +++ b/frontend/src/core/README.md @@ -1,30 +1,32 @@ -# 📁 core +# 🏷️ Core -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [core](/frontend/src/core) +[🏠 Home](../../../README.md) ❯ [frontend](../../README.md) ❯ [src](../README.md) ❯ **core** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **core** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the core domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 core"] - Root --> constants["📁 constants"] - Root --> guards["📁 guards"] - Root --> interceptors["📁 interceptors"] + f_core["📁 core"] + f_core --> f_guards["📁 guards"] + f_core --> f_constants["📁 constants"] + f_core --> f_interceptors["📁 interceptors"] ``` -## 📄 File Registry -*No relevant files in this directory.* -## 🔗 Dependencies -- No external dependencies. +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | +|---|---|---|---| +| `📁 guards` | Directory | Contains child logic and structural domains | None | +| `📁 constants` | Directory | Contains child logic and structural domains | None | +| `📁 interceptors` | Directory | Contains child logic and structural domains | None | -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './core'; -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🔗 DEPENDENCIES +- No internal path aliases detected. + +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/core/constants/README.md b/frontend/src/core/constants/README.md index 460c4195..a31a94c3 100644 --- a/frontend/src/core/constants/README.md +++ b/frontend/src/core/constants/README.md @@ -1,32 +1,30 @@ -# 📁 constants +# 🏷️ Constants -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [core](/frontend/src/core) > [constants](/frontend/src/core/constants) +[🏠 Home](../../../../README.md) ❯ [frontend](../../../README.md) ❯ [src](../../README.md) ❯ [core](../README.md) ❯ **constants** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **constants** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the constants domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 constants"] - Root --> api_endpoints_ts["📄 api-endpoints.ts"] - Root --> index_ts["📄 index.ts"] + f_constants["📁 constants"] + f_constants --> f_api_endpoints_ts["📄 api-endpoints.ts"] + f_constants --> f_index_ts["📄 index.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `api-endpoints.ts` | TypeScript | Provides core logic and orchestration for api-endpoints.ts. | @shared | -| `index.ts` | TypeScript | Provides core logic and orchestration for index.ts. | N/A | +| `📄 api-endpoints.ts` | Logic/Utility | Structural or configuration definitions. | @shared/lib | +| `📄 index.ts` | Logic/Utility | Structural or configuration definitions. | None | -## 🔗 Dependencies -- `@shared/lib` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './constants'; +## 🔗 DEPENDENCIES +- `@shared/lib` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/core/guards/README.md b/frontend/src/core/guards/README.md index 98b37c99..63b13c5c 100644 --- a/frontend/src/core/guards/README.md +++ b/frontend/src/core/guards/README.md @@ -1,36 +1,34 @@ -# 📁 guards +# 🏷️ Guards -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [core](/frontend/src/core) > [guards](/frontend/src/core/guards) +[🏠 Home](../../../../README.md) ❯ [frontend](../../../README.md) ❯ [src](../../README.md) ❯ [core](../README.md) ❯ **guards** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **guards** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the guards domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 guards"] - Root --> admin_guard_ts["📄 admin.guard.ts"] - Root --> auth_guard_ts["📄 auth.guard.ts"] - Root --> index_ts["📄 index.ts"] + f_guards["📁 guards"] + f_guards --> f_index_ts["📄 index.ts"] + f_guards --> f_admin_guard_ts["📄 admin.guard.ts"] + f_guards --> f_auth_guard_ts["📄 auth.guard.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `admin.guard.ts` | TypeScript | Provides core logic and orchestration for admin.guard.ts. | @angular, @entities | -| `auth.guard.ts` | TypeScript | Provides core logic and orchestration for auth.guard.ts. | @angular, @entities | -| `index.ts` | TypeScript | Provides core logic and orchestration for index.ts. | N/A | +| `📄 index.ts` | Logic/Utility | Structural or configuration definitions. | None | +| `📄 admin.guard.ts` | Logic/Utility | Structural or configuration definitions. | @angular/core, @entities/user, @angular/router | +| `📄 auth.guard.ts` | Logic/Utility | Structural or configuration definitions. | @angular/core, @entities/user, @angular/router | -## 🔗 Dependencies + +## 🔗 DEPENDENCIES - `@angular/core` -- `@angular/router` - `@entities/user` +- `@angular/router` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './guards'; - -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/core/interceptors/README.md b/frontend/src/core/interceptors/README.md index e3d36af2..de8bd214 100644 --- a/frontend/src/core/interceptors/README.md +++ b/frontend/src/core/interceptors/README.md @@ -1,38 +1,35 @@ -# 📁 interceptors +# 🏷️ Interceptors -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [core](/frontend/src/core) > [interceptors](/frontend/src/core/interceptors) +[🏠 Home](../../../../README.md) ❯ [frontend](../../../README.md) ❯ [src](../../README.md) ❯ [core](../README.md) ❯ **interceptors** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **interceptors** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the interceptors domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 interceptors"] - Root --> api_interceptor_ts["📄 api.interceptor.ts"] - Root --> error_interceptor_ts["📄 error.interceptor.ts"] - Root --> index_ts["📄 index.ts"] + f_interceptors["📁 interceptors"] + f_interceptors --> f_error_interceptor_ts["📄 error.interceptor.ts"] + f_interceptors --> f_index_ts["📄 index.ts"] + f_interceptors --> f_api_interceptor_ts["📄 api.interceptor.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `api.interceptor.ts` | TypeScript | Provides core logic and orchestration for api.interceptor.ts. | @angular, @shared | -| `error.interceptor.ts` | TypeScript | Provides core logic and orchestration for error.interceptor.ts. | @angular, @shared | -| `index.ts` | TypeScript | Provides core logic and orchestration for index.ts. | N/A | +| `📄 error.interceptor.ts` | Logic/Utility | Structural or configuration definitions. | @angular/core, @angular/common/http, @shared/services | +| `📄 index.ts` | Logic/Utility | Structural or configuration definitions. | None | +| `📄 api.interceptor.ts` | Logic/Utility | Structural or configuration definitions. | @angular/common/http, @shared/lib | -## 🔗 Dependencies -- `@angular/common/http` + +## 🔗 DEPENDENCIES - `@angular/core` +- `@angular/common/http` - `@shared/lib` - `@shared/services` -- `rxjs` - -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './interceptors'; -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/entities/README.md b/frontend/src/entities/README.md index 26b108cd..61c8d78f 100644 --- a/frontend/src/entities/README.md +++ b/frontend/src/entities/README.md @@ -1,34 +1,36 @@ -# 📁 entities +# 🏷️ Entities -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [entities](/frontend/src/entities) +[🏠 Home](../../../README.md) ❯ [frontend](../../README.md) ❯ [src](../README.md) ❯ **entities** -**FSD Layer:** Entity +**FSD Layer:** `Entities` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **entities** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the entities domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 entities"] - Root --> admin-settings["📁 admin-settings"] - Root --> gallery["📁 gallery"] - Root --> treatments["📁 treatments"] - Root --> user["📁 user"] - Root --> veil["📁 veil"] + f_entities["📁 entities"] + f_entities --> f_gallery["📁 gallery"] + f_entities --> f_user["📁 user"] + f_entities --> f_treatments["📁 treatments"] + f_entities --> f_admin_settings["📁 admin-settings"] + f_entities --> f_veil["📁 veil"] ``` -## 📄 File Registry -*No relevant files in this directory.* -## 🔗 Dependencies -- No external dependencies. +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | +|---|---|---|---| +| `📁 gallery` | Directory | Contains child logic and structural domains | None | +| `📁 user` | Directory | Contains child logic and structural domains | None | +| `📁 treatments` | Directory | Contains child logic and structural domains | None | +| `📁 admin-settings` | Directory | Contains child logic and structural domains | None | +| `📁 veil` | Directory | Contains child logic and structural domains | None | -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './entities'; -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🔗 DEPENDENCIES +- No internal path aliases detected. + +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/entities/admin-settings/README.md b/frontend/src/entities/admin-settings/README.md index 6c36646b..fd0fc9e3 100644 --- a/frontend/src/entities/admin-settings/README.md +++ b/frontend/src/entities/admin-settings/README.md @@ -1,38 +1,33 @@ -# 📁 admin-settings +# 🏷️ Admin-settings -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [entities](/frontend/src/entities) > [admin-settings](/frontend/src/entities/admin-settings) +[🏠 Home](../../../../README.md) ❯ [frontend](../../../README.md) ❯ [src](../../README.md) ❯ [entities](../README.md) ❯ **admin-settings** -**FSD Layer:** Entity +**FSD Layer:** `Entities` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **admin-settings** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the admin-settings domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 admin-settings"] - Root --> admin_settings_service_ts["📄 admin-settings.service.ts"] - Root --> index_ts["📄 index.ts"] + f_admin_settings["📁 admin-settings"] + f_admin_settings --> f_admin_settings_service_ts["📄 admin-settings.service.ts"] + f_admin_settings --> f_index_ts["📄 index.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `admin-settings.service.ts` | TypeScript | Encapsulates business logic and data access for admin-settings.service.ts. | @angular, @core, @shared | -| `index.ts` | TypeScript | Provides core logic and orchestration for index.ts. | N/A | +| `📄 admin-settings.service.ts` | Service | Classes: AdminSettingsService | @angular/core, @shared/models/admin-settings.model, @angular/common/http, @core/constants/api-endpoints | +| `📄 index.ts` | Logic/Utility | Structural or configuration definitions. | None | -## 🔗 Dependencies -- `@angular/common/http` + +## 🔗 DEPENDENCIES - `@angular/core` -- `@core/constants/api-endpoints` - `@shared/models/admin-settings.model` -- `rxjs` - -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './admin-settings'; +- `@angular/common/http` +- `@core/constants/api-endpoints` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/entities/gallery/README.md b/frontend/src/entities/gallery/README.md index 26b0bbf2..a5255c6d 100644 --- a/frontend/src/entities/gallery/README.md +++ b/frontend/src/entities/gallery/README.md @@ -1,38 +1,34 @@ -# 📁 gallery +# 🏷️ Gallery -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [entities](/frontend/src/entities) > [gallery](/frontend/src/entities/gallery) +[🏠 Home](../../../../README.md) ❯ [frontend](../../../README.md) ❯ [src](../../README.md) ❯ [entities](../README.md) ❯ **gallery** -**FSD Layer:** Entity +**FSD Layer:** `Entities` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **gallery** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the gallery domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 gallery"] - Root --> constants["📁 constants"] - Root --> gallery_service_ts["📄 gallery.service.ts"] - Root --> index_ts["📄 index.ts"] + f_gallery["📁 gallery"] + f_gallery --> f_gallery_service_ts["📄 gallery.service.ts"] + f_gallery --> f_index_ts["📄 index.ts"] + f_gallery --> f_constants["📁 constants"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `gallery.service.ts` | TypeScript | Encapsulates business logic and data access for gallery.service.ts. | @angular, @shared | -| `index.ts` | TypeScript | Provides core logic and orchestration for index.ts. | N/A | +| `📁 constants` | Directory | Contains child logic and structural domains | None | +| `📄 gallery.service.ts` | Service | Classes: GalleryService | @angular/core, @angular/common/http, @shared/models | +| `📄 index.ts` | Logic/Utility | Structural or configuration definitions. | None | -## 🔗 Dependencies -- `@angular/common/http` + +## 🔗 DEPENDENCIES - `@angular/core` +- `@angular/common/http` - `@shared/models` -- `rxjs` - -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './gallery'; -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/entities/gallery/constants/README.md b/frontend/src/entities/gallery/constants/README.md index 9806c978..f02b6de0 100644 --- a/frontend/src/entities/gallery/constants/README.md +++ b/frontend/src/entities/gallery/constants/README.md @@ -1,32 +1,28 @@ -# 📁 constants +# 🏷️ Constants -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [entities](/frontend/src/entities) > [gallery](/frontend/src/entities/gallery) > [constants](/frontend/src/entities/gallery/constants) +[🏠 Home](../../../../../README.md) ❯ [frontend](../../../../README.md) ❯ [src](../../../README.md) ❯ [entities](../../README.md) ❯ [gallery](../README.md) ❯ **constants** -**FSD Layer:** Entity +**FSD Layer:** `Entities` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **constants** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the constants domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 constants"] - Root --> gallery_constants_ts["📄 gallery.constants.ts"] + f_constants["📁 constants"] + f_constants --> f_gallery_constants_ts["📄 gallery.constants.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `gallery.constants.ts` | TypeScript | Provides core logic and orchestration for gallery.constants.ts. | N/A | +| `📄 gallery.constants.ts` | Logic/Utility | Structural or configuration definitions. | None | -## 🔗 Dependencies -- No external dependencies. -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './constants'; +## 🔗 DEPENDENCIES +- No internal path aliases detected. -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/entities/treatments/README.md b/frontend/src/entities/treatments/README.md index 5bce2c27..0e1f72b2 100644 --- a/frontend/src/entities/treatments/README.md +++ b/frontend/src/entities/treatments/README.md @@ -1,40 +1,36 @@ -# 📁 treatments +# 🏷️ Treatments -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [entities](/frontend/src/entities) > [treatments](/frontend/src/entities/treatments) +[🏠 Home](../../../../README.md) ❯ [frontend](../../../README.md) ❯ [src](../../README.md) ❯ [entities](../README.md) ❯ **treatments** -**FSD Layer:** Entity +**FSD Layer:** `Entities` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **treatments** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the treatments domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 treatments"] - Root --> constants["📁 constants"] - Root --> index_ts["📄 index.ts"] - Root --> treatments_service_ts["📄 treatments.service.ts"] + f_treatments["📁 treatments"] + f_treatments --> f_index_ts["📄 index.ts"] + f_treatments --> f_treatments_service_ts["📄 treatments.service.ts"] + f_treatments --> f_constants["📁 constants"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `index.ts` | TypeScript | Provides core logic and orchestration for index.ts. | N/A | -| `treatments.service.ts` | TypeScript | Encapsulates business logic and data access for treatments.service.ts. | @angular, @core, @features, @shared | +| `📁 constants` | Directory | Contains child logic and structural domains | None | +| `📄 index.ts` | Logic/Utility | Structural or configuration definitions. | None | +| `📄 treatments.service.ts` | Service | Classes: TreatmentsService | @features/treatments, @shared/lib, @core/constants, @angular/common/http, @angular/core | -## 🔗 Dependencies -- `@angular/common/http` -- `@angular/core` -- `@core/constants` + +## 🔗 DEPENDENCIES - `@features/treatments` - `@shared/lib` -- `rxjs` - -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './treatments'; +- `@core/constants` +- `@angular/common/http` +- `@angular/core` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/entities/treatments/constants/README.md b/frontend/src/entities/treatments/constants/README.md index e5eaca65..ba2eca66 100644 --- a/frontend/src/entities/treatments/constants/README.md +++ b/frontend/src/entities/treatments/constants/README.md @@ -1,32 +1,28 @@ -# 📁 constants +# 🏷️ Constants -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [entities](/frontend/src/entities) > [treatments](/frontend/src/entities/treatments) > [constants](/frontend/src/entities/treatments/constants) +[🏠 Home](../../../../../README.md) ❯ [frontend](../../../../README.md) ❯ [src](../../../README.md) ❯ [entities](../../README.md) ❯ [treatments](../README.md) ❯ **constants** -**FSD Layer:** Entity +**FSD Layer:** `Entities` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **constants** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the constants domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 constants"] - Root --> treatments_constants_ts["📄 treatments.constants.ts"] + f_constants["📁 constants"] + f_constants --> f_treatments_constants_ts["📄 treatments.constants.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `treatments.constants.ts` | TypeScript | Provides core logic and orchestration for treatments.constants.ts. | N/A | +| `📄 treatments.constants.ts` | Logic/Utility | Structural or configuration definitions. | None | -## 🔗 Dependencies -- No external dependencies. -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './constants'; +## 🔗 DEPENDENCIES +- No internal path aliases detected. -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/entities/user/README.md b/frontend/src/entities/user/README.md index 8cc8e2b6..d327d30c 100644 --- a/frontend/src/entities/user/README.md +++ b/frontend/src/entities/user/README.md @@ -1,44 +1,38 @@ -# 📁 user +# 🏷️ User -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [entities](/frontend/src/entities) > [user](/frontend/src/entities/user) +[🏠 Home](../../../../README.md) ❯ [frontend](../../../README.md) ❯ [src](../../README.md) ❯ [entities](../README.md) ❯ **user** -**FSD Layer:** Entity +**FSD Layer:** `Entities` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **user** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the user domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 user"] - Root --> constants["📁 constants"] - Root --> model["📁 model"] - Root --> auth_service_ts["📄 auth.service.ts"] - Root --> index_ts["📄 index.ts"] - Root --> user_service_ts["📄 user.service.ts"] + f_user["📁 user"] + f_user --> f_auth_service_ts["📄 auth.service.ts"] + f_user --> f_index_ts["📄 index.ts"] + f_user --> f_user_service_ts["📄 user.service.ts"] + f_user --> f_model["📁 model"] + f_user --> f_constants["📁 constants"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `auth.service.ts` | TypeScript | Encapsulates business logic and data access for auth.service.ts. | @angular | -| `index.ts` | TypeScript | Provides core logic and orchestration for index.ts. | N/A | -| `user.service.ts` | TypeScript | Encapsulates business logic and data access for user.service.ts. | @angular | +| `📁 model` | Directory | Contains child logic and structural domains | None | +| `📁 constants` | Directory | Contains child logic and structural domains | None | +| `📄 auth.service.ts` | Service | Classes: AuthService | @angular/core, @angular/common/http, @angular/router | +| `📄 index.ts` | Logic/Utility | Structural or configuration definitions. | None | +| `📄 user.service.ts` | Service | Classes: UserService | @angular/core, @angular/common/http | -## 🔗 Dependencies -- `./model/user.model` -- `@angular/common/http` + +## 🔗 DEPENDENCIES - `@angular/core` +- `@angular/common/http` - `@angular/router` -- `jwt-decode` -- `rxjs` -- `rxjs/operators` - -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './user'; -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/entities/user/constants/README.md b/frontend/src/entities/user/constants/README.md index eef76311..8777814e 100644 --- a/frontend/src/entities/user/constants/README.md +++ b/frontend/src/entities/user/constants/README.md @@ -1,32 +1,28 @@ -# 📁 constants +# 🏷️ Constants -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [entities](/frontend/src/entities) > [user](/frontend/src/entities/user) > [constants](/frontend/src/entities/user/constants) +[🏠 Home](../../../../../README.md) ❯ [frontend](../../../../README.md) ❯ [src](../../../README.md) ❯ [entities](../../README.md) ❯ [user](../README.md) ❯ **constants** -**FSD Layer:** Entity +**FSD Layer:** `Entities` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **constants** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the constants domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 constants"] - Root --> user_constants_ts["📄 user.constants.ts"] + f_constants["📁 constants"] + f_constants --> f_user_constants_ts["📄 user.constants.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `user.constants.ts` | TypeScript | Provides core logic and orchestration for user.constants.ts. | N/A | +| `📄 user.constants.ts` | Logic/Utility | Structural or configuration definitions. | None | -## 🔗 Dependencies -- No external dependencies. -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './constants'; +## 🔗 DEPENDENCIES +- No internal path aliases detected. -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/entities/user/model/README.md b/frontend/src/entities/user/model/README.md index 9ae9f0c9..d123fb01 100644 --- a/frontend/src/entities/user/model/README.md +++ b/frontend/src/entities/user/model/README.md @@ -1,32 +1,28 @@ -# 📁 model +# 🏷️ Model -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [entities](/frontend/src/entities) > [user](/frontend/src/entities/user) > [model](/frontend/src/entities/user/model) +[🏠 Home](../../../../../README.md) ❯ [frontend](../../../../README.md) ❯ [src](../../../README.md) ❯ [entities](../../README.md) ❯ [user](../README.md) ❯ **model** -**FSD Layer:** Entity +**FSD Layer:** `Entities` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **model** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the model domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 model"] - Root --> user_model_ts["📄 user.model.ts"] + f_model["📁 model"] + f_model --> f_user_model_ts["📄 user.model.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `user.model.ts` | TypeScript | Provides core logic and orchestration for user.model.ts. | N/A | +| `📄 user.model.ts` | Logic/Utility | Structural or configuration definitions. | None | -## 🔗 Dependencies -- No external dependencies. -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './model'; +## 🔗 DEPENDENCIES +- No internal path aliases detected. -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/entities/veil/README.md b/frontend/src/entities/veil/README.md index 600f9ffb..ad68da72 100644 --- a/frontend/src/entities/veil/README.md +++ b/frontend/src/entities/veil/README.md @@ -1,40 +1,36 @@ -# 📁 veil +# 🏷️ Veil -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [entities](/frontend/src/entities) > [veil](/frontend/src/entities/veil) +[🏠 Home](../../../../README.md) ❯ [frontend](../../../README.md) ❯ [src](../../README.md) ❯ [entities](../README.md) ❯ **veil** -**FSD Layer:** Entity +**FSD Layer:** `Entities` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **veil** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the veil domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 veil"] - Root --> constants["📁 constants"] - Root --> index_ts["📄 index.ts"] - Root --> veil_service_ts["📄 veil.service.ts"] + f_veil["📁 veil"] + f_veil --> f_veil_service_ts["📄 veil.service.ts"] + f_veil --> f_index_ts["📄 index.ts"] + f_veil --> f_constants["📁 constants"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `index.ts` | TypeScript | Provides core logic and orchestration for index.ts. | N/A | -| `veil.service.ts` | TypeScript | Encapsulates business logic and data access for veil.service.ts. | @angular, @core, @features, @shared | +| `📁 constants` | Directory | Contains child logic and structural domains | None | +| `📄 veil.service.ts` | Service | Classes: VeilService | @shared/lib, @core/constants, @angular/common/http, @features/veil, @angular/core | +| `📄 index.ts` | Logic/Utility | Structural or configuration definitions. | None | -## 🔗 Dependencies -- `@angular/common/http` -- `@angular/core` + +## 🔗 DEPENDENCIES +- `@shared/lib` - `@core/constants` +- `@angular/common/http` - `@features/veil` -- `@shared/lib` -- `rxjs` - -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './veil'; +- `@angular/core` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/entities/veil/constants/README.md b/frontend/src/entities/veil/constants/README.md index b92501c2..0b613b55 100644 --- a/frontend/src/entities/veil/constants/README.md +++ b/frontend/src/entities/veil/constants/README.md @@ -1,32 +1,28 @@ -# 📁 constants +# 🏷️ Constants -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [entities](/frontend/src/entities) > [veil](/frontend/src/entities/veil) > [constants](/frontend/src/entities/veil/constants) +[🏠 Home](../../../../../README.md) ❯ [frontend](../../../../README.md) ❯ [src](../../../README.md) ❯ [entities](../../README.md) ❯ [veil](../README.md) ❯ **constants** -**FSD Layer:** Entity +**FSD Layer:** `Entities` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **constants** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the constants domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 constants"] - Root --> veil_constants_ts["📄 veil.constants.ts"] + f_constants["📁 constants"] + f_constants --> f_veil_constants_ts["📄 veil.constants.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `veil.constants.ts` | TypeScript | Provides core logic and orchestration for veil.constants.ts. | N/A | +| `📄 veil.constants.ts` | Logic/Utility | Structural or configuration definitions. | None | -## 🔗 Dependencies -- No external dependencies. -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './constants'; +## 🔗 DEPENDENCIES +- No internal path aliases detected. -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/features/README.md b/frontend/src/features/README.md index 9cfa039d..da6e4dcf 100644 --- a/frontend/src/features/README.md +++ b/frontend/src/features/README.md @@ -1,34 +1,40 @@ -# 📁 features +# 🏷️ Features -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [features](/frontend/src/features) +[🏠 Home](../../../README.md) ❯ [frontend](../../README.md) ❯ [src](../README.md) ❯ **features** -**FSD Layer:** Feature +**FSD Layer:** `Features` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **features** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the features domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 features"] - Root --> client-form["📁 client-form"] - Root --> gallery["📁 gallery"] - Root --> language-selection["📁 language-selection"] - Root --> treatments["📁 treatments"] - Root --> veil["📁 veil"] + f_features["📁 features"] + f_features --> f_gallery["📁 gallery"] + f_features --> f_language_selection["📁 language-selection"] + f_features --> f_user["📁 user"] + f_features --> f_treatments["📁 treatments"] + f_features --> f_veil["📁 veil"] + f_features --> f_client_form["📁 client-form"] + f_features --> f_auth["📁 auth"] ``` -## 📄 File Registry -*No relevant files in this directory.* -## 🔗 Dependencies -- No external dependencies. +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | +|---|---|---|---| +| `📁 gallery` | Directory | Contains child logic and structural domains | None | +| `📁 language-selection` | Directory | Contains child logic and structural domains | None | +| `📁 user` | Directory | Contains child logic and structural domains | None | +| `📁 treatments` | Directory | Contains child logic and structural domains | None | +| `📁 veil` | Directory | Contains child logic and structural domains | None | +| `📁 client-form` | Directory | Contains child logic and structural domains | None | +| `📁 auth` | Directory | Contains child logic and structural domains | None | -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './features'; -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🔗 DEPENDENCIES +- No internal path aliases detected. + +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/features/auth/README.md b/frontend/src/features/auth/README.md new file mode 100644 index 00000000..b8cbfd01 --- /dev/null +++ b/frontend/src/features/auth/README.md @@ -0,0 +1,32 @@ +# 🏷️ Auth + +[🏠 Home](../../../../README.md) ❯ [frontend](../../../README.md) ❯ [src](../../README.md) ❯ [features](../README.md) ❯ **auth** + +**FSD Layer:** `Features` + +## 🎯 PURPOSE +Core implementation for the auth domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE +```mermaid +graph TD + f_auth["📁 auth"] + f_auth --> f_index_ts["📄 index.ts"] + f_auth --> f_model["📁 model"] + f_auth --> f_ui["📁 ui"] +``` + + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | +|---|---|---|---| +| `📁 model` | Directory | Contains child logic and structural domains | None | +| `📁 ui` | Directory | Contains child logic and structural domains | None | +| `📄 index.ts` | Logic/Utility | Structural or configuration definitions. | None | + + +## 🔗 DEPENDENCIES +- No internal path aliases detected. + +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/features/auth/model/README.md b/frontend/src/features/auth/model/README.md new file mode 100644 index 00000000..31b7c8cc --- /dev/null +++ b/frontend/src/features/auth/model/README.md @@ -0,0 +1,28 @@ +# 🏷️ Model + +[🏠 Home](../../../../../README.md) ❯ [frontend](../../../../README.md) ❯ [src](../../../README.md) ❯ [features](../../README.md) ❯ [auth](../README.md) ❯ **model** + +**FSD Layer:** `Features` + +## 🎯 PURPOSE +Core implementation for the model domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE +```mermaid +graph TD + f_model["📁 model"] + f_model --> f_auth_model_ts["📄 auth.model.ts"] +``` + + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | +|---|---|---|---| +| `📄 auth.model.ts` | Logic/Utility | Functions: signinFormSchema, signupFormSchema | @angular/forms/signals | + + +## 🔗 DEPENDENCIES +- `@angular/forms/signals` + +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/features/auth/ui/README.md b/frontend/src/features/auth/ui/README.md new file mode 100644 index 00000000..deeb0658 --- /dev/null +++ b/frontend/src/features/auth/ui/README.md @@ -0,0 +1,30 @@ +# 🏷️ Ui + +[🏠 Home](../../../../../README.md) ❯ [frontend](../../../../README.md) ❯ [src](../../../README.md) ❯ [features](../../README.md) ❯ [auth](../README.md) ❯ **ui** + +**FSD Layer:** `Features` + +## 🎯 PURPOSE +Core implementation for the ui domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE +```mermaid +graph TD + f_ui["📁 ui"] + f_ui --> f_signup_form["📁 signup-form"] + f_ui --> f_signin_form["📁 signin-form"] +``` + + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | +|---|---|---|---| +| `📁 signup-form` | Directory | Contains child logic and structural domains | None | +| `📁 signin-form` | Directory | Contains child logic and structural domains | None | + + +## 🔗 DEPENDENCIES +- No internal path aliases detected. + +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/features/auth/ui/signin-form/README.md b/frontend/src/features/auth/ui/signin-form/README.md new file mode 100644 index 00000000..5e6a28c3 --- /dev/null +++ b/frontend/src/features/auth/ui/signin-form/README.md @@ -0,0 +1,35 @@ +# 🏷️ Signin-form + +[🏠 Home](../../../../../../README.md) ❯ [frontend](../../../../../README.md) ❯ [src](../../../../README.md) ❯ [features](../../../README.md) ❯ [auth](../../README.md) ❯ [ui](../README.md) ❯ **signin-form** + +**FSD Layer:** `Features` + +## 🎯 PURPOSE +Core implementation for the signin-form domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE +```mermaid +graph TD + f_signin_form["📁 signin-form"] + f_signin_form --> f_signin_form_component_scss["📄 signin-form.component.scss"] + f_signin_form --> f_signin_form_component_ts["📄 signin-form.component.ts"] + f_signin_form --> f_signin_form_component_html["📄 signin-form.component.html"] +``` + + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | +|---|---|---|---| +| `📄 signin-form.component.scss` | Style | Structural or configuration definitions. | None | +| `📄 signin-form.component.ts` | Component | Classes: SigninFormComponent | @angular/core, @features/auth/model/auth.model, @angular/forms/signals, @shared/services | +| `📄 signin-form.component.html` | Template | Structural or configuration definitions. | None | + + +## 🔗 DEPENDENCIES +- `@angular/core` +- `@features/auth/model/auth.model` +- `@angular/forms/signals` +- `@shared/services` + +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/features/auth/ui/signup-form/README.md b/frontend/src/features/auth/ui/signup-form/README.md new file mode 100644 index 00000000..deb68d78 --- /dev/null +++ b/frontend/src/features/auth/ui/signup-form/README.md @@ -0,0 +1,34 @@ +# 🏷️ Signup-form + +[🏠 Home](../../../../../../README.md) ❯ [frontend](../../../../../README.md) ❯ [src](../../../../README.md) ❯ [features](../../../README.md) ❯ [auth](../../README.md) ❯ [ui](../README.md) ❯ **signup-form** + +**FSD Layer:** `Features` + +## 🎯 PURPOSE +Core implementation for the signup-form domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE +```mermaid +graph TD + f_signup_form["📁 signup-form"] + f_signup_form --> f_signup_form_component_ts["📄 signup-form.component.ts"] + f_signup_form --> f_signup_form_component_html["📄 signup-form.component.html"] + f_signup_form --> f_signup_form_component_scss["📄 signup-form.component.scss"] +``` + + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | +|---|---|---|---| +| `📄 signup-form.component.ts` | Component | Classes: SignupFormComponent | @angular/core, @features/auth/model/auth.model, @angular/forms/signals | +| `📄 signup-form.component.html` | Template | Structural or configuration definitions. | None | +| `📄 signup-form.component.scss` | Style | Structural or configuration definitions. | None | + + +## 🔗 DEPENDENCIES +- `@angular/core` +- `@features/auth/model/auth.model` +- `@angular/forms/signals` + +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/features/client-form/README.md b/frontend/src/features/client-form/README.md index e2993639..b655a41b 100644 --- a/frontend/src/features/client-form/README.md +++ b/frontend/src/features/client-form/README.md @@ -1,40 +1,36 @@ -# 📁 client-form +# 🏷️ Client-form -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [features](/frontend/src/features) > [client-form](/frontend/src/features/client-form) +[🏠 Home](../../../../README.md) ❯ [frontend](../../../README.md) ❯ [src](../../README.md) ❯ [features](../README.md) ❯ **client-form** -**FSD Layer:** Feature +**FSD Layer:** `Features` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **client-form** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the client-form domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 client-form"] - Root --> client_form_component_html["📄 client-form.component.html"] - Root --> client_form_component_ts["📄 client-form.component.ts"] - Root --> index_ts["📄 index.ts"] + f_client_form["📁 client-form"] + f_client_form --> f_client_form_component_ts["📄 client-form.component.ts"] + f_client_form --> f_client_form_component_html["📄 client-form.component.html"] + f_client_form --> f_index_ts["📄 index.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `client-form.component.html` | Template | Structural template and layout for client-form.component.html. | N/A | -| `client-form.component.ts` | TypeScript | UI component logic and state management for client-form.component.ts. | @angular, @entities, @shared | -| `index.ts` | TypeScript | Provides core logic and orchestration for index.ts. | N/A | +| `📄 client-form.component.ts` | Component | Classes: ClientFormComponent | @shared/lib, @entities/user, @angular/common, @angular/core, @angular/forms | +| `📄 client-form.component.html` | Template | Structural or configuration definitions. | None | +| `📄 index.ts` | Logic/Utility | Structural or configuration definitions. | None | + -## 🔗 Dependencies +## 🔗 DEPENDENCIES +- `@shared/lib` +- `@entities/user` - `@angular/common` - `@angular/core` - `@angular/forms` -- `@entities/user` -- `@shared/lib` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './client-form'; - -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/features/gallery/README.md b/frontend/src/features/gallery/README.md index 50ba5965..e0a88e40 100644 --- a/frontend/src/features/gallery/README.md +++ b/frontend/src/features/gallery/README.md @@ -1,33 +1,30 @@ -# 📁 gallery +# 🏷️ Gallery -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [features](/frontend/src/features) > [gallery](/frontend/src/features/gallery) +[🏠 Home](../../../../README.md) ❯ [frontend](../../../README.md) ❯ [src](../../README.md) ❯ [features](../README.md) ❯ **gallery** -**FSD Layer:** Feature +**FSD Layer:** `Features` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **gallery** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the gallery domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 gallery"] - Root --> model["📁 model"] - Root --> index_ts["📄 index.ts"] + f_gallery["📁 gallery"] + f_gallery --> f_index_ts["📄 index.ts"] + f_gallery --> f_model["📁 model"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `index.ts` | TypeScript | Provides core logic and orchestration for index.ts. | N/A | +| `📁 model` | Directory | Contains child logic and structural domains | None | +| `📄 index.ts` | Logic/Utility | Structural or configuration definitions. | None | -## 🔗 Dependencies -- No external dependencies. -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './gallery'; +## 🔗 DEPENDENCIES +- No internal path aliases detected. -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/features/gallery/model/README.md b/frontend/src/features/gallery/model/README.md index d98350dc..ad15988f 100644 --- a/frontend/src/features/gallery/model/README.md +++ b/frontend/src/features/gallery/model/README.md @@ -1,33 +1,29 @@ -# 📁 model +# 🏷️ Model -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [features](/frontend/src/features) > [gallery](/frontend/src/features/gallery) > [model](/frontend/src/features/gallery/model) +[🏠 Home](../../../../../README.md) ❯ [frontend](../../../../README.md) ❯ [src](../../../README.md) ❯ [features](../../README.md) ❯ [gallery](../README.md) ❯ **model** -**FSD Layer:** Feature +**FSD Layer:** `Features` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **model** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the model domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 model"] - Root --> gallery_data_ts["📄 gallery.data.ts"] + f_model["📁 model"] + f_model --> f_gallery_data_ts["📄 gallery.data.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `gallery.data.ts` | TypeScript | Provides core logic and orchestration for gallery.data.ts. | @angular, @shared | +| `📄 gallery.data.ts` | Logic/Utility | Functions: galleryValidationSchema | @shared/models, @angular/forms/signals | -## 🔗 Dependencies -- `@angular/forms/signals` -- `@shared/models` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './model'; +## 🔗 DEPENDENCIES +- `@shared/models` +- `@angular/forms/signals` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/features/language-selection/README.md b/frontend/src/features/language-selection/README.md index e69753a7..1e404bab 100644 --- a/frontend/src/features/language-selection/README.md +++ b/frontend/src/features/language-selection/README.md @@ -1,39 +1,35 @@ -# 📁 language-selection +# 🏷️ Language-selection -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [features](/frontend/src/features) > [language-selection](/frontend/src/features/language-selection) +[🏠 Home](../../../../README.md) ❯ [frontend](../../../README.md) ❯ [src](../../README.md) ❯ [features](../README.md) ❯ **language-selection** -**FSD Layer:** Feature +**FSD Layer:** `Features` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **language-selection** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the language-selection domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 language-selection"] - Root --> index_ts["📄 index.ts"] - Root --> language_switcher_component_html["📄 language-switcher.component.html"] - Root --> language_switcher_component_scss["📄 language-switcher.component.scss"] - Root --> language_switcher_component_ts["📄 language-switcher.component.ts"] + f_language_selection["📁 language-selection"] + f_language_selection --> f_language_switcher_component_html["📄 language-switcher.component.html"] + f_language_selection --> f_index_ts["📄 index.ts"] + f_language_selection --> f_language_switcher_component_scss["📄 language-switcher.component.scss"] + f_language_selection --> f_language_switcher_component_ts["📄 language-switcher.component.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `index.ts` | TypeScript | Provides core logic and orchestration for index.ts. | N/A | -| `language-switcher.component.html` | Template | Structural template and layout for language-switcher.component.html. | N/A | -| `language-switcher.component.scss` | Stylesheet | Luxury styling and visual presentation for language-switcher.component.scss. | N/A | -| `language-switcher.component.ts` | TypeScript | UI component logic and state management for language-switcher.component.ts. | @angular | +| `📄 language-switcher.component.html` | Template | Structural or configuration definitions. | None | +| `📄 index.ts` | Logic/Utility | Structural or configuration definitions. | None | +| `📄 language-switcher.component.scss` | Style | Structural or configuration definitions. | None | +| `📄 language-switcher.component.ts` | Component | Classes: LanguageSwitcherComponent | @angular/core, @angular/common | -## 🔗 Dependencies -- `@angular/common` -- `@angular/core` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './language-selection'; +## 🔗 DEPENDENCIES +- `@angular/core` +- `@angular/common` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/features/treatments/README.md b/frontend/src/features/treatments/README.md index 80d0f363..927993d1 100644 --- a/frontend/src/features/treatments/README.md +++ b/frontend/src/features/treatments/README.md @@ -1,33 +1,30 @@ -# 📁 treatments +# 🏷️ Treatments -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [features](/frontend/src/features) > [treatments](/frontend/src/features/treatments) +[🏠 Home](../../../../README.md) ❯ [frontend](../../../README.md) ❯ [src](../../README.md) ❯ [features](../README.md) ❯ **treatments** -**FSD Layer:** Feature +**FSD Layer:** `Features` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **treatments** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the treatments domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 treatments"] - Root --> model["📁 model"] - Root --> index_ts["📄 index.ts"] + f_treatments["📁 treatments"] + f_treatments --> f_index_ts["📄 index.ts"] + f_treatments --> f_model["📁 model"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `index.ts` | TypeScript | Provides core logic and orchestration for index.ts. | N/A | +| `📁 model` | Directory | Contains child logic and structural domains | None | +| `📄 index.ts` | Logic/Utility | Structural or configuration definitions. | None | -## 🔗 Dependencies -- No external dependencies. -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './treatments'; +## 🔗 DEPENDENCIES +- No internal path aliases detected. -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/features/treatments/model/README.md b/frontend/src/features/treatments/model/README.md index 43ea1b6b..a11ecc83 100644 --- a/frontend/src/features/treatments/model/README.md +++ b/frontend/src/features/treatments/model/README.md @@ -1,32 +1,28 @@ -# 📁 model +# 🏷️ Model -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [features](/frontend/src/features) > [treatments](/frontend/src/features/treatments) > [model](/frontend/src/features/treatments/model) +[🏠 Home](../../../../../README.md) ❯ [frontend](../../../../README.md) ❯ [src](../../../README.md) ❯ [features](../../README.md) ❯ [treatments](../README.md) ❯ **model** -**FSD Layer:** Feature +**FSD Layer:** `Features` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **model** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the model domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 model"] - Root --> treatments_data_ts["📄 treatments.data.ts"] + f_model["📁 model"] + f_model --> f_treatments_data_ts["📄 treatments.data.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `treatments.data.ts` | TypeScript | Provides core logic and orchestration for treatments.data.ts. | @angular | +| `📄 treatments.data.ts` | Logic/Utility | Functions: treatmentsValidationSchema | @angular/forms/signals | -## 🔗 Dependencies -- `@angular/forms/signals` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './model'; +## 🔗 DEPENDENCIES +- `@angular/forms/signals` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/features/user/README.md b/frontend/src/features/user/README.md new file mode 100644 index 00000000..d7b44929 --- /dev/null +++ b/frontend/src/features/user/README.md @@ -0,0 +1,30 @@ +# 🏷️ User + +[🏠 Home](../../../../README.md) ❯ [frontend](../../../README.md) ❯ [src](../../README.md) ❯ [features](../README.md) ❯ **user** + +**FSD Layer:** `Features` + +## 🎯 PURPOSE +Core implementation for the user domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE +```mermaid +graph TD + f_user["📁 user"] + f_user --> f_index_ts["📄 index.ts"] + f_user --> f_model["📁 model"] +``` + + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | +|---|---|---|---| +| `📁 model` | Directory | Contains child logic and structural domains | None | +| `📄 index.ts` | Logic/Utility | Structural or configuration definitions. | None | + + +## 🔗 DEPENDENCIES +- No internal path aliases detected. + +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/features/user/model/README.md b/frontend/src/features/user/model/README.md new file mode 100644 index 00000000..d3aaae21 --- /dev/null +++ b/frontend/src/features/user/model/README.md @@ -0,0 +1,28 @@ +# 🏷️ Model + +[🏠 Home](../../../../../README.md) ❯ [frontend](../../../../README.md) ❯ [src](../../../README.md) ❯ [features](../../README.md) ❯ [user](../README.md) ❯ **model** + +**FSD Layer:** `Features` + +## 🎯 PURPOSE +Core implementation for the model domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE +```mermaid +graph TD + f_model["📁 model"] + f_model --> f_users_data_ts["📄 users.data.ts"] +``` + + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | +|---|---|---|---| +| `📄 users.data.ts` | Logic/Utility | Structural or configuration definitions. | None | + + +## 🔗 DEPENDENCIES +- No internal path aliases detected. + +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/features/veil/README.md b/frontend/src/features/veil/README.md index e472b4a9..50af1b5a 100644 --- a/frontend/src/features/veil/README.md +++ b/frontend/src/features/veil/README.md @@ -1,33 +1,30 @@ -# 📁 veil +# 🏷️ Veil -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [features](/frontend/src/features) > [veil](/frontend/src/features/veil) +[🏠 Home](../../../../README.md) ❯ [frontend](../../../README.md) ❯ [src](../../README.md) ❯ [features](../README.md) ❯ **veil** -**FSD Layer:** Feature +**FSD Layer:** `Features` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **veil** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the veil domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 veil"] - Root --> model["📁 model"] - Root --> index_ts["📄 index.ts"] + f_veil["📁 veil"] + f_veil --> f_index_ts["📄 index.ts"] + f_veil --> f_model["📁 model"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `index.ts` | TypeScript | Provides core logic and orchestration for index.ts. | N/A | +| `📁 model` | Directory | Contains child logic and structural domains | None | +| `📄 index.ts` | Logic/Utility | Structural or configuration definitions. | None | -## 🔗 Dependencies -- No external dependencies. -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './veil'; +## 🔗 DEPENDENCIES +- No internal path aliases detected. -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/features/veil/model/README.md b/frontend/src/features/veil/model/README.md index 93c92979..819e1ee9 100644 --- a/frontend/src/features/veil/model/README.md +++ b/frontend/src/features/veil/model/README.md @@ -1,32 +1,28 @@ -# 📁 model +# 🏷️ Model -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [features](/frontend/src/features) > [veil](/frontend/src/features/veil) > [model](/frontend/src/features/veil/model) +[🏠 Home](../../../../../README.md) ❯ [frontend](../../../../README.md) ❯ [src](../../../README.md) ❯ [features](../../README.md) ❯ [veil](../README.md) ❯ **model** -**FSD Layer:** Feature +**FSD Layer:** `Features` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **model** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the model domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 model"] - Root --> veil_data_ts["📄 veil.data.ts"] + f_model["📁 model"] + f_model --> f_veil_data_ts["📄 veil.data.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `veil.data.ts` | TypeScript | Provides core logic and orchestration for veil.data.ts. | @angular | +| `📄 veil.data.ts` | Logic/Utility | Functions: veilValidationSchema | @angular/forms/signals | -## 🔗 Dependencies -- `@angular/forms/signals` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './model'; +## 🔗 DEPENDENCIES +- `@angular/forms/signals` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/locale/README.md b/frontend/src/locale/README.md index 098ab331..4daf7048 100644 --- a/frontend/src/locale/README.md +++ b/frontend/src/locale/README.md @@ -1,34 +1,32 @@ -# 📁 locale +# 🏷️ Locale -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [locale](/frontend/src/locale) +[🏠 Home](../../../README.md) ❯ [frontend](../../README.md) ❯ [src](../README.md) ❯ **locale** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **locale** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the locale domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 locale"] - Root --> messages_ru_xlf["📄 messages.ru.xlf"] - Root --> messages_tj_xlf["📄 messages.tj.xlf"] - Root --> messages_xlf["📄 messages.xlf"] + f_locale["📁 locale"] + f_locale --> f_messages_tj_xlf["📄 messages.tj.xlf"] + f_locale --> f_messages_xlf["📄 messages.xlf"] + f_locale --> f_messages_ru_xlf["📄 messages.ru.xlf"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `messages.ru.xlf` | File | Provides core logic and orchestration for messages.ru.xlf. | N/A | -| `messages.tj.xlf` | File | Provides core logic and orchestration for messages.tj.xlf. | N/A | -| `messages.xlf` | File | Provides core logic and orchestration for messages.xlf. | N/A | +| `📄 messages.tj.xlf` | Asset | Structural or configuration definitions. | None | +| `📄 messages.xlf` | Asset | Structural or configuration definitions. | None | +| `📄 messages.ru.xlf` | Asset | Structural or configuration definitions. | None | -## 🔗 Dependencies -- No external dependencies. -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './locale'; +## 🔗 DEPENDENCIES +- No internal path aliases detected. -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/pages/README.md b/frontend/src/pages/README.md index a9c9c4f1..077c21b9 100644 --- a/frontend/src/pages/README.md +++ b/frontend/src/pages/README.md @@ -1,43 +1,54 @@ -# 📁 pages +# 🏷️ Pages -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [pages](/frontend/src/pages) +[🏠 Home](../../../README.md) ❯ [frontend](../../README.md) ❯ [src](../README.md) ❯ **pages** -**FSD Layer:** Page +**FSD Layer:** `Pages` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **pages** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the pages domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 pages"] - Root --> about["📁 about"] - Root --> auth["📁 auth"] - Root --> clients["📁 clients"] - Root --> dashboard["📁 dashboard"] - Root --> gallery["📁 gallery"] - Root --> inventory["📁 inventory"] - Root --> portfolio["📁 portfolio"] - Root --> settings["📁 settings"] - Root --> treatments["📁 treatments"] - Root --> treatments-catalog["📁 treatments-catalog"] - Root --> user-home["📁 user-home"] - Root --> user-profile["📁 user-profile"] - Root --> veil["📁 veil"] - Root --> veils-catalog["📁 veils-catalog"] + f_pages["📁 pages"] + f_pages --> f_portfolio["📁 portfolio"] + f_pages --> f_settings["📁 settings"] + f_pages --> f_dashboard["📁 dashboard"] + f_pages --> f_gallery["📁 gallery"] + f_pages --> f_user_profile["📁 user-profile"] + f_pages --> f_treatments["📁 treatments"] + f_pages --> f_about["📁 about"] + f_pages --> f_veil["📁 veil"] + f_pages --> f_veils_catalog["📁 veils-catalog"] + f_pages --> f_inventory["📁 inventory"] + f_pages --> f_clients["📁 clients"] + f_pages --> f_treatments_catalog["📁 treatments-catalog"] + f_pages --> f_auth["📁 auth"] + f_pages --> f_user_home["📁 user-home"] ``` -## 📄 File Registry -*No relevant files in this directory.* -## 🔗 Dependencies -- No external dependencies. - -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './pages'; - -// Integrate into the application architecture -relevantMember.execute(); -``` +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | +|---|---|---|---| +| `📁 portfolio` | Directory | Contains child logic and structural domains | None | +| `📁 settings` | Directory | Contains child logic and structural domains | None | +| `📁 dashboard` | Directory | Contains child logic and structural domains | None | +| `📁 gallery` | Directory | Contains child logic and structural domains | None | +| `📁 user-profile` | Directory | Contains child logic and structural domains | None | +| `📁 treatments` | Directory | Contains child logic and structural domains | None | +| `📁 about` | Directory | Contains child logic and structural domains | None | +| `📁 veil` | Directory | Contains child logic and structural domains | None | +| `📁 veils-catalog` | Directory | Contains child logic and structural domains | None | +| `📁 inventory` | Directory | Contains child logic and structural domains | None | +| `📁 clients` | Directory | Contains child logic and structural domains | None | +| `📁 treatments-catalog` | Directory | Contains child logic and structural domains | None | +| `📁 auth` | Directory | Contains child logic and structural domains | None | +| `📁 user-home` | Directory | Contains child logic and structural domains | None | + + +## 🔗 DEPENDENCIES +- No internal path aliases detected. + +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/pages/about/README.md b/frontend/src/pages/about/README.md index 63c1cb5c..5c1fe3de 100644 --- a/frontend/src/pages/about/README.md +++ b/frontend/src/pages/about/README.md @@ -1,42 +1,38 @@ -# 📁 about +# 🏷️ About -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [pages](/frontend/src/pages) > [about](/frontend/src/pages/about) +[🏠 Home](../../../../README.md) ❯ [frontend](../../../README.md) ❯ [src](../../README.md) ❯ [pages](../README.md) ❯ **about** -**FSD Layer:** Page +**FSD Layer:** `Pages` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **about** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the about domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 about"] - Root --> about_component_html["📄 about.component.html"] - Root --> about_component_scss["📄 about.component.scss"] - Root --> about_component_ts["📄 about.component.ts"] - Root --> index_ts["📄 index.ts"] + f_about["📁 about"] + f_about --> f_index_ts["📄 index.ts"] + f_about --> f_about_component_scss["📄 about.component.scss"] + f_about --> f_about_component_html["📄 about.component.html"] + f_about --> f_about_component_ts["📄 about.component.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `about.component.html` | Template | Structural template and layout for about.component.html. | N/A | -| `about.component.scss` | Stylesheet | Luxury styling and visual presentation for about.component.scss. | N/A | -| `about.component.ts` | TypeScript | UI component logic and state management for about.component.ts. | @angular, @entities | -| `index.ts` | TypeScript | Provides core logic and orchestration for index.ts. | N/A | +| `📄 index.ts` | Logic/Utility | Structural or configuration definitions. | None | +| `📄 about.component.scss` | Style | Structural or configuration definitions. | None | +| `📄 about.component.html` | Template | Structural or configuration definitions. | None | +| `📄 about.component.ts` | Component | Classes: AboutComponent | @entities/admin-settings, @angular/forms/signals, @angular/common, @angular/platform-browser, @angular/core | -## 🔗 Dependencies -- `@angular/common` -- `@angular/core` + +## 🔗 DEPENDENCIES +- `@entities/admin-settings` - `@angular/forms/signals` +- `@angular/common` - `@angular/platform-browser` -- `@entities/admin-settings` - -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './about'; +- `@angular/core` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/pages/auth/README.md b/frontend/src/pages/auth/README.md index 6bc3927a..f6e194b0 100644 --- a/frontend/src/pages/auth/README.md +++ b/frontend/src/pages/auth/README.md @@ -1,41 +1,40 @@ -# 📁 auth +# 🏷️ Auth -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [pages](/frontend/src/pages) > [auth](/frontend/src/pages/auth) +[🏠 Home](../../../../README.md) ❯ [frontend](../../../README.md) ❯ [src](../../README.md) ❯ [pages](../README.md) ❯ **auth** -**FSD Layer:** Page +**FSD Layer:** `Pages` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **auth** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the auth domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 auth"] - Root --> auth_component_html["📄 auth.component.html"] - Root --> auth_component_scss["📄 auth.component.scss"] - Root --> auth_component_ts["📄 auth.component.ts"] - Root --> index_ts["📄 index.ts"] + f_auth["📁 auth"] + f_auth --> f_index_ts["📄 index.ts"] + f_auth --> f_auth_component_scss["📄 auth.component.scss"] + f_auth --> f_auth_component_ts["📄 auth.component.ts"] + f_auth --> f_auth_component_html["📄 auth.component.html"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `auth.component.html` | Template | Structural template and layout for auth.component.html. | N/A | -| `auth.component.scss` | Stylesheet | Luxury styling and visual presentation for auth.component.scss. | N/A | -| `auth.component.ts` | TypeScript | UI component logic and state management for auth.component.ts. | @angular, @entities, @features | -| `index.ts` | TypeScript | Provides core logic and orchestration for index.ts. | N/A | +| `📄 index.ts` | Logic/Utility | Structural or configuration definitions. | None | +| `📄 auth.component.scss` | Style | Structural or configuration definitions. | None | +| `📄 auth.component.ts` | Component | Classes: AuthComponent | @entities/user, @angular/common, @features/auth/model/auth.model, @features/language-selection, @features/auth, @angular/core, @angular/router | +| `📄 auth.component.html` | Template | Structural or configuration definitions. | None | + -## 🔗 Dependencies +## 🔗 DEPENDENCIES +- `@entities/user` - `@angular/common` +- `@features/auth/model/auth.model` - `@angular/router` -- `@entities/user` +- `@features/auth` +- `@angular/core` - `@features/language-selection` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './auth'; - -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/pages/clients/README.md b/frontend/src/pages/clients/README.md index 3038a625..6ce18f2d 100644 --- a/frontend/src/pages/clients/README.md +++ b/frontend/src/pages/clients/README.md @@ -1,41 +1,37 @@ -# 📁 clients +# 🏷️ Clients -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [pages](/frontend/src/pages) > [clients](/frontend/src/pages/clients) +[🏠 Home](../../../../README.md) ❯ [frontend](../../../README.md) ❯ [src](../../README.md) ❯ [pages](../README.md) ❯ **clients** -**FSD Layer:** Page +**FSD Layer:** `Pages` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **clients** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the clients domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 clients"] - Root --> clients_component_html["📄 clients.component.html"] - Root --> clients_component_ts["📄 clients.component.ts"] - Root --> index_ts["📄 index.ts"] + f_clients["📁 clients"] + f_clients --> f_clients_component_ts["📄 clients.component.ts"] + f_clients --> f_index_ts["📄 index.ts"] + f_clients --> f_clients_component_html["📄 clients.component.html"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `clients.component.html` | Template | Structural template and layout for clients.component.html. | N/A | -| `clients.component.ts` | TypeScript | UI component logic and state management for clients.component.ts. | @angular, @entities, @features, @shared | -| `index.ts` | TypeScript | Provides core logic and orchestration for index.ts. | N/A | +| `📄 clients.component.ts` | Component | Classes: ClientsPageComponent | @entities/user, @angular/common, @angular/forms, @shared/ui, @angular/core, @features/client-form | +| `📄 index.ts` | Logic/Utility | Structural or configuration definitions. | None | +| `📄 clients.component.html` | Template | Structural or configuration definitions. | None | + -## 🔗 Dependencies +## 🔗 DEPENDENCIES +- `@entities/user` - `@angular/common` +- `@shared/ui` - `@angular/core` -- `@angular/forms` -- `@entities/user` - `@features/client-form` -- `@shared/ui` - -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './clients'; +- `@angular/forms` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/pages/dashboard/README.md b/frontend/src/pages/dashboard/README.md index 277fbea9..2a790c4d 100644 --- a/frontend/src/pages/dashboard/README.md +++ b/frontend/src/pages/dashboard/README.md @@ -1,44 +1,39 @@ -# 📁 dashboard +# 🏷️ Dashboard -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [pages](/frontend/src/pages) > [dashboard](/frontend/src/pages/dashboard) +[🏠 Home](../../../../README.md) ❯ [frontend](../../../README.md) ❯ [src](../../README.md) ❯ [pages](../README.md) ❯ **dashboard** -**FSD Layer:** Page +**FSD Layer:** `Pages` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **dashboard** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the dashboard domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 dashboard"] - Root --> dashboard_component_html["📄 dashboard.component.html"] - Root --> dashboard_component_scss["📄 dashboard.component.scss"] - Root --> dashboard_component_ts["📄 dashboard.component.ts"] - Root --> index_ts["📄 index.ts"] + f_dashboard["📁 dashboard"] + f_dashboard --> f_index_ts["📄 index.ts"] + f_dashboard --> f_dashboard_component_scss["📄 dashboard.component.scss"] + f_dashboard --> f_dashboard_component_html["📄 dashboard.component.html"] + f_dashboard --> f_dashboard_component_ts["📄 dashboard.component.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `dashboard.component.html` | Template | Structural template and layout for dashboard.component.html. | N/A | -| `dashboard.component.scss` | Stylesheet | Luxury styling and visual presentation for dashboard.component.scss. | N/A | -| `dashboard.component.ts` | TypeScript | UI component logic and state management for dashboard.component.ts. | @angular, @entities | -| `index.ts` | TypeScript | Provides core logic and orchestration for index.ts. | N/A | +| `📄 index.ts` | Logic/Utility | Structural or configuration definitions. | None | +| `📄 dashboard.component.scss` | Style | Structural or configuration definitions. | None | +| `📄 dashboard.component.html` | Template | Structural or configuration definitions. | None | +| `📄 dashboard.component.ts` | Component | Classes: DashboardComponent | @angular/common, @entities/gallery/gallery.service, @entities/veil/veil.service, @angular/core, @entities/treatments/treatments.service, @entities/user/user.service | + -## 🔗 Dependencies +## 🔗 DEPENDENCIES - `@angular/common` -- `@angular/core` - `@entities/gallery/gallery.service` +- `@entities/veil/veil.service` +- `@angular/core` - `@entities/treatments/treatments.service` - `@entities/user/user.service` -- `@entities/veil/veil.service` -- `rxjs` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './dashboard'; - -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/pages/gallery/README.md b/frontend/src/pages/gallery/README.md index 44dabd42..51be29db 100644 --- a/frontend/src/pages/gallery/README.md +++ b/frontend/src/pages/gallery/README.md @@ -1,48 +1,45 @@ -# 📁 gallery +# 🏷️ Gallery -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [pages](/frontend/src/pages) > [gallery](/frontend/src/pages/gallery) +[🏠 Home](../../../../README.md) ❯ [frontend](../../../README.md) ❯ [src](../../README.md) ❯ [pages](../README.md) ❯ **gallery** -**FSD Layer:** Page +**FSD Layer:** `Pages` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **gallery** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the gallery domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 gallery"] - Root --> ui["📁 ui"] - Root --> gallery_component_html["📄 gallery.component.html"] - Root --> gallery_component_scss["📄 gallery.component.scss"] - Root --> gallery_component_ts["📄 gallery.component.ts"] - Root --> index_ts["📄 index.ts"] + f_gallery["📁 gallery"] + f_gallery --> f_index_ts["📄 index.ts"] + f_gallery --> f_gallery_component_scss["📄 gallery.component.scss"] + f_gallery --> f_gallery_component_ts["📄 gallery.component.ts"] + f_gallery --> f_gallery_component_html["📄 gallery.component.html"] + f_gallery --> f_ui["📁 ui"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `gallery.component.html` | Template | Structural template and layout for gallery.component.html. | N/A | -| `gallery.component.scss` | Stylesheet | Luxury styling and visual presentation for gallery.component.scss. | N/A | -| `gallery.component.ts` | TypeScript | UI component logic and state management for gallery.component.ts. | @angular, @entities, @environments, @shared | -| `index.ts` | TypeScript | Provides core logic and orchestration for index.ts. | N/A | +| `📁 ui` | Directory | Contains child logic and structural domains | None | +| `📄 index.ts` | Logic/Utility | Structural or configuration definitions. | None | +| `📄 gallery.component.scss` | Style | Structural or configuration definitions. | None | +| `📄 gallery.component.ts` | Component | Classes: GalleryComponent | @entities/admin-settings, @shared/lib, @environments/environment, @angular/common, @shared/models, @shared/lib/object, @entities/gallery, @shared/ui, @angular/core, @angular/forms | +| `📄 gallery.component.html` | Template | Structural or configuration definitions. | None | -## 🔗 Dependencies -- `./ui/gallery-form/gallery-form.component` -- `@angular/common` -- `@angular/forms` + +## 🔗 DEPENDENCIES - `@entities/admin-settings` -- `@entities/gallery` -- `@environments/environment` - `@shared/lib` -- `@shared/lib/object` +- `@environments/environment` +- `@angular/common` - `@shared/models` +- `@shared/lib/object` +- `@entities/gallery` - `@shared/ui` +- `@angular/core` +- `@angular/forms` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './gallery'; - -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/pages/gallery/ui/README.md b/frontend/src/pages/gallery/ui/README.md index 665c6d7c..92897477 100644 --- a/frontend/src/pages/gallery/ui/README.md +++ b/frontend/src/pages/gallery/ui/README.md @@ -1,30 +1,28 @@ -# 📁 ui +# 🏷️ Ui -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [pages](/frontend/src/pages) > [gallery](/frontend/src/pages/gallery) > [ui](/frontend/src/pages/gallery/ui) +[🏠 Home](../../../../../README.md) ❯ [frontend](../../../../README.md) ❯ [src](../../../README.md) ❯ [pages](../../README.md) ❯ [gallery](../README.md) ❯ **ui** -**FSD Layer:** Page +**FSD Layer:** `Pages` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **ui** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the ui domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 ui"] - Root --> gallery-form["📁 gallery-form"] + f_ui["📁 ui"] + f_ui --> f_gallery_form["📁 gallery-form"] ``` -## 📄 File Registry -*No relevant files in this directory.* -## 🔗 Dependencies -- No external dependencies. +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | +|---|---|---|---| +| `📁 gallery-form` | Directory | Contains child logic and structural domains | None | -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './ui'; -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🔗 DEPENDENCIES +- No internal path aliases detected. + +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/pages/gallery/ui/gallery-form/README.md b/frontend/src/pages/gallery/ui/gallery-form/README.md index 3e458d0d..f413c247 100644 --- a/frontend/src/pages/gallery/ui/gallery-form/README.md +++ b/frontend/src/pages/gallery/ui/gallery-form/README.md @@ -1,40 +1,37 @@ -# 📁 gallery-form +# 🏷️ Gallery-form -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [pages](/frontend/src/pages) > [gallery](/frontend/src/pages/gallery) > [ui](/frontend/src/pages/gallery/ui) > [gallery-form](/frontend/src/pages/gallery/ui/gallery-form) +[🏠 Home](../../../../../../README.md) ❯ [frontend](../../../../../README.md) ❯ [src](../../../../README.md) ❯ [pages](../../../README.md) ❯ [gallery](../../README.md) ❯ [ui](../README.md) ❯ **gallery-form** -**FSD Layer:** Page +**FSD Layer:** `Pages` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **gallery-form** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the gallery-form domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 gallery-form"] - Root --> gallery_form_component_html["📄 gallery-form.component.html"] - Root --> gallery_form_component_ts["📄 gallery-form.component.ts"] + f_gallery_form["📁 gallery-form"] + f_gallery_form --> f_gallery_form_component_ts["📄 gallery-form.component.ts"] + f_gallery_form --> f_gallery_form_component_html["📄 gallery-form.component.html"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `gallery-form.component.html` | Template | Structural template and layout for gallery-form.component.html. | N/A | -| `gallery-form.component.ts` | TypeScript | UI component logic and state management for gallery-form.component.ts. | @angular, @environments, @features, @shared | +| `📄 gallery-form.component.ts` | Component | Classes: GalleryFormComponent | @angular/forms/signals, @shared/lib, @environments/environment, @angular/common, @shared/models, @features/gallery, @shared/ui, @angular/core | +| `📄 gallery-form.component.html` | Template | Structural or configuration definitions. | None | -## 🔗 Dependencies -- `@angular/common` + +## 🔗 DEPENDENCIES - `@angular/forms/signals` -- `@environments/environment` -- `@features/gallery` - `@shared/lib` +- `@environments/environment` +- `@angular/common` - `@shared/models` +- `@features/gallery` - `@shared/ui` +- `@angular/core` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './gallery-form'; - -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/pages/inventory/README.md b/frontend/src/pages/inventory/README.md index c1350af1..339d9448 100644 --- a/frontend/src/pages/inventory/README.md +++ b/frontend/src/pages/inventory/README.md @@ -1,39 +1,35 @@ -# 📁 inventory +# 🏷️ Inventory -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [pages](/frontend/src/pages) > [inventory](/frontend/src/pages/inventory) +[🏠 Home](../../../../README.md) ❯ [frontend](../../../README.md) ❯ [src](../../README.md) ❯ [pages](../README.md) ❯ **inventory** -**FSD Layer:** Page +**FSD Layer:** `Pages` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **inventory** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the inventory domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 inventory"] - Root --> index_ts["📄 index.ts"] - Root --> inventory_component_html["📄 inventory.component.html"] - Root --> inventory_component_scss["📄 inventory.component.scss"] - Root --> inventory_component_ts["📄 inventory.component.ts"] + f_inventory["📁 inventory"] + f_inventory --> f_index_ts["📄 index.ts"] + f_inventory --> f_inventory_component_ts["📄 inventory.component.ts"] + f_inventory --> f_inventory_component_scss["📄 inventory.component.scss"] + f_inventory --> f_inventory_component_html["📄 inventory.component.html"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `index.ts` | TypeScript | Provides core logic and orchestration for index.ts. | N/A | -| `inventory.component.html` | Template | Structural template and layout for inventory.component.html. | N/A | -| `inventory.component.scss` | Stylesheet | Luxury styling and visual presentation for inventory.component.scss. | N/A | -| `inventory.component.ts` | TypeScript | UI component logic and state management for inventory.component.ts. | @angular | +| `📄 index.ts` | Logic/Utility | Structural or configuration definitions. | None | +| `📄 inventory.component.ts` | Component | Classes: InventoryPageComponent | @angular/core, @angular/common | +| `📄 inventory.component.scss` | Style | Structural or configuration definitions. | None | +| `📄 inventory.component.html` | Template | Structural or configuration definitions. | None | -## 🔗 Dependencies -- `@angular/common` -- `@angular/core` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './inventory'; +## 🔗 DEPENDENCIES +- `@angular/core` +- `@angular/common` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/pages/portfolio/README.md b/frontend/src/pages/portfolio/README.md index fd4f029f..d33a0479 100644 --- a/frontend/src/pages/portfolio/README.md +++ b/frontend/src/pages/portfolio/README.md @@ -1,42 +1,39 @@ -# 📁 portfolio +# 🏷️ Portfolio -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [pages](/frontend/src/pages) > [portfolio](/frontend/src/pages/portfolio) +[🏠 Home](../../../../README.md) ❯ [frontend](../../../README.md) ❯ [src](../../README.md) ❯ [pages](../README.md) ❯ **portfolio** -**FSD Layer:** Page +**FSD Layer:** `Pages` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **portfolio** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the portfolio domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 portfolio"] - Root --> index_ts["📄 index.ts"] - Root --> portfolio_component_html["📄 portfolio.component.html"] - Root --> portfolio_component_scss["📄 portfolio.component.scss"] - Root --> portfolio_component_ts["📄 portfolio.component.ts"] + f_portfolio["📁 portfolio"] + f_portfolio --> f_portfolio_component_ts["📄 portfolio.component.ts"] + f_portfolio --> f_index_ts["📄 index.ts"] + f_portfolio --> f_portfolio_component_html["📄 portfolio.component.html"] + f_portfolio --> f_portfolio_component_scss["📄 portfolio.component.scss"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `index.ts` | TypeScript | Provides core logic and orchestration for index.ts. | N/A | -| `portfolio.component.html` | Template | Structural template and layout for portfolio.component.html. | N/A | -| `portfolio.component.scss` | Stylesheet | Luxury styling and visual presentation for portfolio.component.scss. | N/A | -| `portfolio.component.ts` | TypeScript | UI component logic and state management for portfolio.component.ts. | @angular, @entities, @environments, @shared | +| `📄 portfolio.component.ts` | Component | Classes: PortfolioPageComponent | @entities/admin-settings, @shared/lib, @environments/environment, @angular/common, @entities/gallery, @angular/core | +| `📄 index.ts` | Logic/Utility | Structural or configuration definitions. | None | +| `📄 portfolio.component.html` | Template | Structural or configuration definitions. | None | +| `📄 portfolio.component.scss` | Style | Structural or configuration definitions. | None | -## 🔗 Dependencies -- `@angular/common` + +## 🔗 DEPENDENCIES - `@entities/admin-settings` -- `@entities/gallery` -- `@environments/environment` - `@shared/lib` +- `@environments/environment` +- `@angular/common` +- `@entities/gallery` +- `@angular/core` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './portfolio'; - -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/pages/settings/README.md b/frontend/src/pages/settings/README.md index a4d992e4..29e11acc 100644 --- a/frontend/src/pages/settings/README.md +++ b/frontend/src/pages/settings/README.md @@ -1,50 +1,41 @@ -# 📁 settings +# 🏷️ Settings -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [pages](/frontend/src/pages) > [settings](/frontend/src/pages/settings) +[🏠 Home](../../../../README.md) ❯ [frontend](../../../README.md) ❯ [src](../../README.md) ❯ [pages](../README.md) ❯ **settings** -**FSD Layer:** Page +**FSD Layer:** `Pages` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **settings** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the settings domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 settings"] - Root --> ui["📁 ui"] - Root --> index_ts["📄 index.ts"] - Root --> settings_component_html["📄 settings.component.html"] - Root --> settings_component_scss["📄 settings.component.scss"] - Root --> settings_component_ts["📄 settings.component.ts"] + f_settings["📁 settings"] + f_settings --> f_index_ts["📄 index.ts"] + f_settings --> f_settings_component_html["📄 settings.component.html"] + f_settings --> f_settings_component_ts["📄 settings.component.ts"] + f_settings --> f_settings_component_scss["📄 settings.component.scss"] + f_settings --> f_ui["📁 ui"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `index.ts` | TypeScript | Provides core logic and orchestration for index.ts. | N/A | -| `settings.component.html` | Template | Structural template and layout for settings.component.html. | N/A | -| `settings.component.scss` | Stylesheet | Luxury styling and visual presentation for settings.component.scss. | N/A | -| `settings.component.ts` | TypeScript | UI component logic and state management for settings.component.ts. | @angular, @entities, @shared | - -## 🔗 Dependencies -- `./ui/additional-links.component` -- `./ui/business-profile.component` -- `./ui/general-info.component` -- `./ui/selects-settings.component` -- `./ui/social-matrix.component` +| `📁 ui` | Directory | Contains child logic and structural domains | None | +| `📄 index.ts` | Logic/Utility | Structural or configuration definitions. | None | +| `📄 settings.component.html` | Template | Structural or configuration definitions. | None | +| `📄 settings.component.ts` | Component | Classes: SettingsComponent | @entities/admin-settings, @angular/common, @shared/models/admin-settings.model, @angular/forms, @angular/core, @angular/core/rxjs-interop | +| `📄 settings.component.scss` | Style | Structural or configuration definitions. | None | + + +## 🔗 DEPENDENCIES +- `@entities/admin-settings` - `@angular/common` -- `@angular/core` +- `@shared/models/admin-settings.model` - `@angular/core/rxjs-interop` +- `@angular/core` - `@angular/forms` -- `@entities/admin-settings` -- `@shared/models/admin-settings.model` -- `rxjs` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './settings'; - -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/pages/settings/ui/README.md b/frontend/src/pages/settings/ui/README.md index 195bd7d1..ff788233 100644 --- a/frontend/src/pages/settings/ui/README.md +++ b/frontend/src/pages/settings/ui/README.md @@ -1,44 +1,39 @@ -# 📁 ui +# 🏷️ Ui -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [pages](/frontend/src/pages) > [settings](/frontend/src/pages/settings) > [ui](/frontend/src/pages/settings/ui) +[🏠 Home](../../../../../README.md) ❯ [frontend](../../../../README.md) ❯ [src](../../../README.md) ❯ [pages](../../README.md) ❯ [settings](../README.md) ❯ **ui** -**FSD Layer:** Page +**FSD Layer:** `Pages` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **ui** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the ui domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 ui"] - Root --> additional_links_component_ts["📄 additional-links.component.ts"] - Root --> business_profile_component_ts["📄 business-profile.component.ts"] - Root --> general_info_component_ts["📄 general-info.component.ts"] - Root --> selects_settings_component_ts["📄 selects-settings.component.ts"] - Root --> social_matrix_component_ts["📄 social-matrix.component.ts"] + f_ui["📁 ui"] + f_ui --> f_additional_links_component_ts["📄 additional-links.component.ts"] + f_ui --> f_social_matrix_component_ts["📄 social-matrix.component.ts"] + f_ui --> f_selects_settings_component_ts["📄 selects-settings.component.ts"] + f_ui --> f_general_info_component_ts["📄 general-info.component.ts"] + f_ui --> f_business_profile_component_ts["📄 business-profile.component.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `additional-links.component.ts` | TypeScript | UI component logic and state management for additional-links.component.ts. | @angular | -| `business-profile.component.ts` | TypeScript | UI component logic and state management for business-profile.component.ts. | @angular, @shared | -| `general-info.component.ts` | TypeScript | UI component logic and state management for general-info.component.ts. | @angular | -| `selects-settings.component.ts` | TypeScript | UI component logic and state management for selects-settings.component.ts. | @angular | -| `social-matrix.component.ts` | TypeScript | UI component logic and state management for social-matrix.component.ts. | @angular | +| `📄 additional-links.component.ts` | Component | Classes: AdditionalLinksComponent | @angular/core, @angular/forms, @angular/common | +| `📄 social-matrix.component.ts` | Component | Classes: SocialMatrixComponent | @angular/core, @angular/forms, @angular/common | +| `📄 selects-settings.component.ts` | Component | Classes: SelectsSettingsComponent | @angular/core, @angular/forms, @angular/common | +| `📄 general-info.component.ts` | Component | Classes: GeneralInfoComponent | @angular/core, @angular/forms, @angular/common | +| `📄 business-profile.component.ts` | Component | Classes: BusinessProfileComponent | @angular/core, @shared/models, @angular/forms, @angular/common | -## 🔗 Dependencies -- `@angular/common` + +## 🔗 DEPENDENCIES - `@angular/core` -- `@angular/forms` - `@shared/models` -- `leaflet` - -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './ui'; +- `@angular/forms` +- `@angular/common` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/pages/treatments-catalog/README.md b/frontend/src/pages/treatments-catalog/README.md index ba6ec0be..a46491cc 100644 --- a/frontend/src/pages/treatments-catalog/README.md +++ b/frontend/src/pages/treatments-catalog/README.md @@ -1,42 +1,39 @@ -# 📁 treatments-catalog +# 🏷️ Treatments-catalog -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [pages](/frontend/src/pages) > [treatments-catalog](/frontend/src/pages/treatments-catalog) +[🏠 Home](../../../../README.md) ❯ [frontend](../../../README.md) ❯ [src](../../README.md) ❯ [pages](../README.md) ❯ **treatments-catalog** -**FSD Layer:** Page +**FSD Layer:** `Pages` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **treatments-catalog** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the treatments-catalog domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 treatments-catalog"] - Root --> index_ts["📄 index.ts"] - Root --> treatments_catalog_component_html["📄 treatments-catalog.component.html"] - Root --> treatments_catalog_component_scss["📄 treatments-catalog.component.scss"] - Root --> treatments_catalog_component_ts["📄 treatments-catalog.component.ts"] + f_treatments_catalog["📁 treatments-catalog"] + f_treatments_catalog --> f_treatments_catalog_component_scss["📄 treatments-catalog.component.scss"] + f_treatments_catalog --> f_index_ts["📄 index.ts"] + f_treatments_catalog --> f_treatments_catalog_component_html["📄 treatments-catalog.component.html"] + f_treatments_catalog --> f_treatments_catalog_component_ts["📄 treatments-catalog.component.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `index.ts` | TypeScript | Provides core logic and orchestration for index.ts. | N/A | -| `treatments-catalog.component.html` | Template | Structural template and layout for treatments-catalog.component.html. | N/A | -| `treatments-catalog.component.scss` | Stylesheet | Luxury styling and visual presentation for treatments-catalog.component.scss. | N/A | -| `treatments-catalog.component.ts` | TypeScript | UI component logic and state management for treatments-catalog.component.ts. | @angular, @entities, @environments, @shared | +| `📄 treatments-catalog.component.scss` | Style | Structural or configuration definitions. | None | +| `📄 index.ts` | Logic/Utility | Structural or configuration definitions. | None | +| `📄 treatments-catalog.component.html` | Template | Structural or configuration definitions. | None | +| `📄 treatments-catalog.component.ts` | Component | Classes: ServicesCatalogComponent | @entities/admin-settings, @shared/lib, @environments/environment, @angular/common, @entities/treatments, @angular/core | -## 🔗 Dependencies -- `@angular/common` + +## 🔗 DEPENDENCIES - `@entities/admin-settings` -- `@entities/treatments` -- `@environments/environment` - `@shared/lib` +- `@environments/environment` +- `@angular/common` +- `@entities/treatments` +- `@angular/core` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './treatments-catalog'; - -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/pages/treatments/README.md b/frontend/src/pages/treatments/README.md index 74519555..83eb5ef0 100644 --- a/frontend/src/pages/treatments/README.md +++ b/frontend/src/pages/treatments/README.md @@ -1,47 +1,44 @@ -# 📁 treatments +# 🏷️ Treatments -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [pages](/frontend/src/pages) > [treatments](/frontend/src/pages/treatments) +[🏠 Home](../../../../README.md) ❯ [frontend](../../../README.md) ❯ [src](../../README.md) ❯ [pages](../README.md) ❯ **treatments** -**FSD Layer:** Page +**FSD Layer:** `Pages` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **treatments** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the treatments domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 treatments"] - Root --> components["📁 components"] - Root --> index_ts["📄 index.ts"] - Root --> treatments_component_html["📄 treatments.component.html"] - Root --> treatments_component_scss["📄 treatments.component.scss"] - Root --> treatments_component_ts["📄 treatments.component.ts"] + f_treatments["📁 treatments"] + f_treatments --> f_treatments_component_scss["📄 treatments.component.scss"] + f_treatments --> f_treatments_component_html["📄 treatments.component.html"] + f_treatments --> f_index_ts["📄 index.ts"] + f_treatments --> f_treatments_component_ts["📄 treatments.component.ts"] + f_treatments --> f_components["📁 components"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `index.ts` | TypeScript | Provides core logic and orchestration for index.ts. | N/A | -| `treatments.component.html` | Template | Structural template and layout for treatments.component.html. | N/A | -| `treatments.component.scss` | Stylesheet | Luxury styling and visual presentation for treatments.component.scss. | N/A | -| `treatments.component.ts` | TypeScript | UI component logic and state management for treatments.component.ts. | @angular, @entities, @environments, @features, @shared | +| `📁 components` | Directory | Contains child logic and structural domains | None | +| `📄 treatments.component.scss` | Style | Structural or configuration definitions. | None | +| `📄 treatments.component.html` | Template | Structural or configuration definitions. | None | +| `📄 index.ts` | Logic/Utility | Structural or configuration definitions. | None | +| `📄 treatments.component.ts` | Component | Classes: TreatmentsPageComponent | @features/treatments, @entities/admin-settings, @shared/lib, @environments/environment, @angular/common, @entities/treatments, @shared/ui, @angular/core, @angular/forms | -## 🔗 Dependencies -- `./components/treatment-form/treatment-form.component` -- `@angular/common` -- `@angular/forms` -- `@entities/admin-settings` -- `@entities/treatments` -- `@environments/environment` + +## 🔗 DEPENDENCIES - `@features/treatments` +- `@entities/admin-settings` - `@shared/lib` +- `@environments/environment` +- `@angular/common` +- `@entities/treatments` - `@shared/ui` +- `@angular/core` +- `@angular/forms` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './treatments'; - -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/pages/treatments/components/README.md b/frontend/src/pages/treatments/components/README.md index 543e0482..3292cf7e 100644 --- a/frontend/src/pages/treatments/components/README.md +++ b/frontend/src/pages/treatments/components/README.md @@ -1,30 +1,28 @@ -# 📁 components +# 🏷️ Components -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [pages](/frontend/src/pages) > [treatments](/frontend/src/pages/treatments) > [components](/frontend/src/pages/treatments/components) +[🏠 Home](../../../../../README.md) ❯ [frontend](../../../../README.md) ❯ [src](../../../README.md) ❯ [pages](../../README.md) ❯ [treatments](../README.md) ❯ **components** -**FSD Layer:** Page +**FSD Layer:** `Pages` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **components** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the components domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 components"] - Root --> treatment-form["📁 treatment-form"] + f_components["📁 components"] + f_components --> f_treatment_form["📁 treatment-form"] ``` -## 📄 File Registry -*No relevant files in this directory.* -## 🔗 Dependencies -- No external dependencies. +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | +|---|---|---|---| +| `📁 treatment-form` | Directory | Contains child logic and structural domains | None | -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './components'; -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🔗 DEPENDENCIES +- No internal path aliases detected. + +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/pages/treatments/components/treatment-form/README.md b/frontend/src/pages/treatments/components/treatment-form/README.md index 4fed94ae..a96f341a 100644 --- a/frontend/src/pages/treatments/components/treatment-form/README.md +++ b/frontend/src/pages/treatments/components/treatment-form/README.md @@ -1,37 +1,34 @@ -# 📁 treatment-form +# 🏷️ Treatment-form -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [pages](/frontend/src/pages) > [treatments](/frontend/src/pages/treatments) > [components](/frontend/src/pages/treatments/components) > [treatment-form](/frontend/src/pages/treatments/components/treatment-form) +[🏠 Home](../../../../../../README.md) ❯ [frontend](../../../../../README.md) ❯ [src](../../../../README.md) ❯ [pages](../../../README.md) ❯ [treatments](../../README.md) ❯ [components](../README.md) ❯ **treatment-form** -**FSD Layer:** Page +**FSD Layer:** `Pages` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **treatment-form** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the treatment-form domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 treatment-form"] - Root --> treatment_form_component_html["📄 treatment-form.component.html"] - Root --> treatment_form_component_ts["📄 treatment-form.component.ts"] + f_treatment_form["📁 treatment-form"] + f_treatment_form --> f_treatment_form_component_html["📄 treatment-form.component.html"] + f_treatment_form --> f_treatment_form_component_ts["📄 treatment-form.component.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `treatment-form.component.html` | Template | Structural template and layout for treatment-form.component.html. | N/A | -| `treatment-form.component.ts` | TypeScript | UI component logic and state management for treatment-form.component.ts. | @angular, @features, @shared | +| `📄 treatment-form.component.html` | Template | Structural or configuration definitions. | None | +| `📄 treatment-form.component.ts` | Component | Classes: TreatmentFormComponent | @features/treatments, @shared/lib, @angular/common, @angular/core, @angular/forms | -## 🔗 Dependencies -- `@angular/common` -- `@angular/forms` + +## 🔗 DEPENDENCIES - `@features/treatments` - `@shared/lib` +- `@angular/common` +- `@angular/core` +- `@angular/forms` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './treatment-form'; - -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/pages/user-home/README.md b/frontend/src/pages/user-home/README.md index f3cb5f90..1358184d 100644 --- a/frontend/src/pages/user-home/README.md +++ b/frontend/src/pages/user-home/README.md @@ -1,41 +1,38 @@ -# 📁 user-home +# 🏷️ User-home -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [pages](/frontend/src/pages) > [user-home](/frontend/src/pages/user-home) +[🏠 Home](../../../../README.md) ❯ [frontend](../../../README.md) ❯ [src](../../README.md) ❯ [pages](../README.md) ❯ **user-home** -**FSD Layer:** Page +**FSD Layer:** `Pages` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **user-home** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the user-home domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 user-home"] - Root --> index_ts["📄 index.ts"] - Root --> user_home_component_html["📄 user-home.component.html"] - Root --> user_home_component_scss["📄 user-home.component.scss"] - Root --> user_home_component_ts["📄 user-home.component.ts"] + f_user_home["📁 user-home"] + f_user_home --> f_user_home_component_scss["📄 user-home.component.scss"] + f_user_home --> f_user_home_component_ts["📄 user-home.component.ts"] + f_user_home --> f_index_ts["📄 index.ts"] + f_user_home --> f_user_home_component_html["📄 user-home.component.html"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `index.ts` | TypeScript | Provides core logic and orchestration for index.ts. | N/A | -| `user-home.component.html` | Template | Structural template and layout for user-home.component.html. | N/A | -| `user-home.component.scss` | Stylesheet | Luxury styling and visual presentation for user-home.component.scss. | N/A | -| `user-home.component.ts` | TypeScript | UI component logic and state management for user-home.component.ts. | @angular, @core | +| `📄 user-home.component.scss` | Style | Structural or configuration definitions. | None | +| `📄 user-home.component.ts` | Component | Classes: UserHomeComponent | @angular/common, @core/constants, @angular/common/http, @angular/core, @angular/router | +| `📄 index.ts` | Logic/Utility | Structural or configuration definitions. | None | +| `📄 user-home.component.html` | Template | Structural or configuration definitions. | None | + -## 🔗 Dependencies +## 🔗 DEPENDENCIES - `@angular/common` +- `@core/constants` - `@angular/common/http` +- `@angular/core` - `@angular/router` -- `@core/constants` - -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './user-home'; -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/pages/user-profile/README.md b/frontend/src/pages/user-profile/README.md index 20b0edd2..a047106e 100644 --- a/frontend/src/pages/user-profile/README.md +++ b/frontend/src/pages/user-profile/README.md @@ -1,40 +1,37 @@ -# 📁 user-profile +# 🏷️ User-profile -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [pages](/frontend/src/pages) > [user-profile](/frontend/src/pages/user-profile) +[🏠 Home](../../../../README.md) ❯ [frontend](../../../README.md) ❯ [src](../../README.md) ❯ [pages](../README.md) ❯ **user-profile** -**FSD Layer:** Page +**FSD Layer:** `Pages` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **user-profile** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the user-profile domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 user-profile"] - Root --> index_ts["📄 index.ts"] - Root --> user_profile_component_html["📄 user-profile.component.html"] - Root --> user_profile_component_scss["📄 user-profile.component.scss"] - Root --> user_profile_component_ts["📄 user-profile.component.ts"] + f_user_profile["📁 user-profile"] + f_user_profile --> f_user_profile_component_ts["📄 user-profile.component.ts"] + f_user_profile --> f_index_ts["📄 index.ts"] + f_user_profile --> f_user_profile_component_html["📄 user-profile.component.html"] + f_user_profile --> f_user_profile_component_scss["📄 user-profile.component.scss"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `index.ts` | TypeScript | Provides core logic and orchestration for index.ts. | N/A | -| `user-profile.component.html` | Template | Structural template and layout for user-profile.component.html. | N/A | -| `user-profile.component.scss` | Stylesheet | Luxury styling and visual presentation for user-profile.component.scss. | N/A | -| `user-profile.component.ts` | TypeScript | UI component logic and state management for user-profile.component.ts. | @angular, @entities | +| `📄 user-profile.component.ts` | Component | Classes: UserProfileComponent | @angular/core, @entities/user, @angular/forms, @angular/common | +| `📄 index.ts` | Logic/Utility | Structural or configuration definitions. | None | +| `📄 user-profile.component.html` | Template | Structural or configuration definitions. | None | +| `📄 user-profile.component.scss` | Style | Structural or configuration definitions. | None | -## 🔗 Dependencies -- `@angular/common` -- `@angular/forms` -- `@entities/user` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './user-profile'; +## 🔗 DEPENDENCIES +- `@angular/core` +- `@entities/user` +- `@angular/forms` +- `@angular/common` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/pages/veil/README.md b/frontend/src/pages/veil/README.md index 4dac92c5..9c084197 100644 --- a/frontend/src/pages/veil/README.md +++ b/frontend/src/pages/veil/README.md @@ -1,47 +1,43 @@ -# 📁 veil +# 🏷️ Veil -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [pages](/frontend/src/pages) > [veil](/frontend/src/pages/veil) +[🏠 Home](../../../../README.md) ❯ [frontend](../../../README.md) ❯ [src](../../README.md) ❯ [pages](../README.md) ❯ **veil** -**FSD Layer:** Page +**FSD Layer:** `Pages` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **veil** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the veil domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 veil"] - Root --> ui["📁 ui"] - Root --> index_ts["📄 index.ts"] - Root --> veil_component_html["📄 veil.component.html"] - Root --> veil_component_scss["📄 veil.component.scss"] - Root --> veil_component_ts["📄 veil.component.ts"] + f_veil["📁 veil"] + f_veil --> f_veil_component_ts["📄 veil.component.ts"] + f_veil --> f_veil_component_html["📄 veil.component.html"] + f_veil --> f_index_ts["📄 index.ts"] + f_veil --> f_veil_component_scss["📄 veil.component.scss"] + f_veil --> f_ui["📁 ui"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `index.ts` | TypeScript | Provides core logic and orchestration for index.ts. | N/A | -| `veil.component.html` | Template | Structural template and layout for veil.component.html. | N/A | -| `veil.component.scss` | Stylesheet | Luxury styling and visual presentation for veil.component.scss. | N/A | -| `veil.component.ts` | TypeScript | UI component logic and state management for veil.component.ts. | @angular, @entities, @environments, @features, @shared | +| `📁 ui` | Directory | Contains child logic and structural domains | None | +| `📄 veil.component.ts` | Component | Classes: VeilPageComponent | @entities/admin-settings, @shared/lib, @environments/environment, @angular/common, @entities/veil, @features/veil, @shared/ui, @angular/core | +| `📄 veil.component.html` | Template | Structural or configuration definitions. | None | +| `📄 index.ts` | Logic/Utility | Structural or configuration definitions. | None | +| `📄 veil.component.scss` | Style | Structural or configuration definitions. | None | -## 🔗 Dependencies -- `./ui/veil-form/veil-form.component` -- `@angular/common` + +## 🔗 DEPENDENCIES - `@entities/admin-settings` -- `@entities/veil` +- `@shared/lib` - `@environments/environment` +- `@angular/common` +- `@entities/veil` - `@features/veil` -- `@shared/lib` - `@shared/ui` -- `rxjs` +- `@angular/core` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './veil'; - -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/pages/veil/ui/README.md b/frontend/src/pages/veil/ui/README.md index 38679f35..a7206dbc 100644 --- a/frontend/src/pages/veil/ui/README.md +++ b/frontend/src/pages/veil/ui/README.md @@ -1,32 +1,32 @@ -# 📁 ui +# 🏷️ Ui -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [pages](/frontend/src/pages) > [veil](/frontend/src/pages/veil) > [ui](/frontend/src/pages/veil/ui) +[🏠 Home](../../../../../README.md) ❯ [frontend](../../../../README.md) ❯ [src](../../../README.md) ❯ [pages](../../README.md) ❯ [veil](../README.md) ❯ **ui** -**FSD Layer:** Page +**FSD Layer:** `Pages` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **ui** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the ui domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 ui"] - Root --> veil-form["📁 veil-form"] - Root --> veil-item["📁 veil-item"] - Root --> veil-modal["📁 veil-modal"] + f_ui["📁 ui"] + f_ui --> f_veil_item["📁 veil-item"] + f_ui --> f_veil_modal["📁 veil-modal"] + f_ui --> f_veil_form["📁 veil-form"] ``` -## 📄 File Registry -*No relevant files in this directory.* -## 🔗 Dependencies -- No external dependencies. +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | +|---|---|---|---| +| `📁 veil-item` | Directory | Contains child logic and structural domains | None | +| `📁 veil-modal` | Directory | Contains child logic and structural domains | None | +| `📁 veil-form` | Directory | Contains child logic and structural domains | None | -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './ui'; -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🔗 DEPENDENCIES +- No internal path aliases detected. + +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/pages/veil/ui/veil-form/README.md b/frontend/src/pages/veil/ui/veil-form/README.md index 4d0cba1a..76d8627f 100644 --- a/frontend/src/pages/veil/ui/veil-form/README.md +++ b/frontend/src/pages/veil/ui/veil-form/README.md @@ -1,36 +1,34 @@ -# 📁 veil-form +# 🏷️ Veil-form -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [pages](/frontend/src/pages) > [veil](/frontend/src/pages/veil) > [ui](/frontend/src/pages/veil/ui) > [veil-form](/frontend/src/pages/veil/ui/veil-form) +[🏠 Home](../../../../../../README.md) ❯ [frontend](../../../../../README.md) ❯ [src](../../../../README.md) ❯ [pages](../../../README.md) ❯ [veil](../../README.md) ❯ [ui](../README.md) ❯ **veil-form** -**FSD Layer:** Page +**FSD Layer:** `Pages` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **veil-form** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the veil-form domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 veil-form"] - Root --> veil_form_component_html["📄 veil-form.component.html"] - Root --> veil_form_component_ts["📄 veil-form.component.ts"] + f_veil_form["📁 veil-form"] + f_veil_form --> f_veil_form_component_html["📄 veil-form.component.html"] + f_veil_form --> f_veil_form_component_ts["📄 veil-form.component.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `veil-form.component.html` | Template | Structural template and layout for veil-form.component.html. | N/A | -| `veil-form.component.ts` | TypeScript | UI component logic and state management for veil-form.component.ts. | @angular, @shared | +| `📄 veil-form.component.html` | Template | Structural or configuration definitions. | None | +| `📄 veil-form.component.ts` | Component | Classes: VeilFormComponent | @angular/forms/signals, @shared/lib, @angular/common, @features/veil, @angular/core | -## 🔗 Dependencies -- `@angular/common` + +## 🔗 DEPENDENCIES - `@angular/forms/signals` - `@shared/lib` +- `@angular/common` +- `@features/veil` +- `@angular/core` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './veil-form'; - -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/pages/veil/ui/veil-item/README.md b/frontend/src/pages/veil/ui/veil-item/README.md index 6114151a..60750125 100644 --- a/frontend/src/pages/veil/ui/veil-item/README.md +++ b/frontend/src/pages/veil/ui/veil-item/README.md @@ -1,36 +1,32 @@ -# 📁 veil-item +# 🏷️ Veil-item -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [pages](/frontend/src/pages) > [veil](/frontend/src/pages/veil) > [ui](/frontend/src/pages/veil/ui) > [veil-item](/frontend/src/pages/veil/ui/veil-item) +[🏠 Home](../../../../../../README.md) ❯ [frontend](../../../../../README.md) ❯ [src](../../../../README.md) ❯ [pages](../../../README.md) ❯ [veil](../../README.md) ❯ [ui](../README.md) ❯ **veil-item** -**FSD Layer:** Page +**FSD Layer:** `Pages` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **veil-item** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the veil-item domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 veil-item"] - Root --> veil_item_component_html["📄 veil-item.component.html"] - Root --> veil_item_component_ts["📄 veil-item.component.ts"] + f_veil_item["📁 veil-item"] + f_veil_item --> f_veil_item_component_html["📄 veil-item.component.html"] + f_veil_item --> f_veil_item_component_ts["📄 veil-item.component.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `veil-item.component.html` | Template | Structural template and layout for veil-item.component.html. | N/A | -| `veil-item.component.ts` | TypeScript | UI component logic and state management for veil-item.component.ts. | @angular, @features | +| `📄 veil-item.component.html` | Template | Structural or configuration definitions. | None | +| `📄 veil-item.component.ts` | Component | Classes: VeilItemComponent | @angular/core, @features/veil, @angular/common | -## 🔗 Dependencies -- `@angular/common` + +## 🔗 DEPENDENCIES - `@angular/core` - `@features/veil` +- `@angular/common` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './veil-item'; - -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/pages/veil/ui/veil-modal/README.md b/frontend/src/pages/veil/ui/veil-modal/README.md index 088241a2..0f2736a6 100644 --- a/frontend/src/pages/veil/ui/veil-modal/README.md +++ b/frontend/src/pages/veil/ui/veil-modal/README.md @@ -1,36 +1,33 @@ -# 📁 veil-modal +# 🏷️ Veil-modal -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [pages](/frontend/src/pages) > [veil](/frontend/src/pages/veil) > [ui](/frontend/src/pages/veil/ui) > [veil-modal](/frontend/src/pages/veil/ui/veil-modal) +[🏠 Home](../../../../../../README.md) ❯ [frontend](../../../../../README.md) ❯ [src](../../../../README.md) ❯ [pages](../../../README.md) ❯ [veil](../../README.md) ❯ [ui](../README.md) ❯ **veil-modal** -**FSD Layer:** Page +**FSD Layer:** `Pages` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **veil-modal** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the veil-modal domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 veil-modal"] - Root --> veil_modal_component_html["📄 veil-modal.component.html"] - Root --> veil_modal_component_ts["📄 veil-modal.component.ts"] + f_veil_modal["📁 veil-modal"] + f_veil_modal --> f_veil_modal_component_ts["📄 veil-modal.component.ts"] + f_veil_modal --> f_veil_modal_component_html["📄 veil-modal.component.html"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `veil-modal.component.html` | Template | Structural template and layout for veil-modal.component.html. | N/A | -| `veil-modal.component.ts` | TypeScript | UI component logic and state management for veil-modal.component.ts. | @angular, @features | +| `📄 veil-modal.component.ts` | Component | Classes: VeilModalComponent | @angular/core, @features/veil, @angular/forms, @angular/common | +| `📄 veil-modal.component.html` | Template | Structural or configuration definitions. | None | -## 🔗 Dependencies -- `@angular/common` -- `@angular/forms` -- `@features/veil` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './veil-modal'; +## 🔗 DEPENDENCIES +- `@angular/core` +- `@features/veil` +- `@angular/forms` +- `@angular/common` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/pages/veils-catalog/README.md b/frontend/src/pages/veils-catalog/README.md index 9f84378f..c7e337bb 100644 --- a/frontend/src/pages/veils-catalog/README.md +++ b/frontend/src/pages/veils-catalog/README.md @@ -1,44 +1,40 @@ -# 📁 veils-catalog +# 🏷️ Veils-catalog -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [pages](/frontend/src/pages) > [veils-catalog](/frontend/src/pages/veils-catalog) +[🏠 Home](../../../../README.md) ❯ [frontend](../../../README.md) ❯ [src](../../README.md) ❯ [pages](../README.md) ❯ **veils-catalog** -**FSD Layer:** Page +**FSD Layer:** `Pages` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **veils-catalog** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the veils-catalog domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 veils-catalog"] - Root --> index_ts["📄 index.ts"] - Root --> veils_catalog_component_html["📄 veils-catalog.component.html"] - Root --> veils_catalog_component_scss["📄 veils-catalog.component.scss"] - Root --> veils_catalog_component_ts["📄 veils-catalog.component.ts"] + f_veils_catalog["📁 veils-catalog"] + f_veils_catalog --> f_veils_catalog_component_ts["📄 veils-catalog.component.ts"] + f_veils_catalog --> f_index_ts["📄 index.ts"] + f_veils_catalog --> f_veils_catalog_component_html["📄 veils-catalog.component.html"] + f_veils_catalog --> f_veils_catalog_component_scss["📄 veils-catalog.component.scss"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `index.ts` | TypeScript | Provides core logic and orchestration for index.ts. | N/A | -| `veils-catalog.component.html` | Template | Structural template and layout for veils-catalog.component.html. | N/A | -| `veils-catalog.component.scss` | Stylesheet | Luxury styling and visual presentation for veils-catalog.component.scss. | N/A | -| `veils-catalog.component.ts` | TypeScript | UI component logic and state management for veils-catalog.component.ts. | @angular, @entities, @environments, @shared | +| `📄 veils-catalog.component.ts` | Component | Classes: VeilsCatalogComponent | @entities/admin-settings, @shared/lib, @environments/environment, @angular/common, @entities/veil, @shared/ui, @angular/core | +| `📄 index.ts` | Logic/Utility | Structural or configuration definitions. | None | +| `📄 veils-catalog.component.html` | Template | Structural or configuration definitions. | None | +| `📄 veils-catalog.component.scss` | Style | Structural or configuration definitions. | None | -## 🔗 Dependencies -- `@angular/common` -- `@angular/core` + +## 🔗 DEPENDENCIES - `@entities/admin-settings` -- `@entities/veil` -- `@environments/environment` - `@shared/lib` +- `@environments/environment` +- `@angular/common` +- `@entities/veil` - `@shared/ui` +- `@angular/core` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './veils-catalog'; - -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/shared/README.md b/frontend/src/shared/README.md index f974556a..fd81d662 100644 --- a/frontend/src/shared/README.md +++ b/frontend/src/shared/README.md @@ -1,35 +1,38 @@ -# 📁 shared +# 🏷️ Shared -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [shared](/frontend/src/shared) +[🏠 Home](../../../README.md) ❯ [frontend](../../README.md) ❯ [src](../README.md) ❯ **shared** -**FSD Layer:** Shared +**FSD Layer:** `Shared` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **shared** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the shared domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 shared"] - Root --> lib["📁 lib"] - Root --> models["📁 models"] - Root --> pipes["📁 pipes"] - Root --> services["📁 services"] - Root --> store["📁 store"] - Root --> ui["📁 ui"] + f_shared["📁 shared"] + f_shared --> f_services["📁 services"] + f_shared --> f_models["📁 models"] + f_shared --> f_store["📁 store"] + f_shared --> f_ui["📁 ui"] + f_shared --> f_pipes["📁 pipes"] + f_shared --> f_lib["📁 lib"] ``` -## 📄 File Registry -*No relevant files in this directory.* -## 🔗 Dependencies -- No external dependencies. +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | +|---|---|---|---| +| `📁 services` | Directory | Contains child logic and structural domains | None | +| `📁 models` | Directory | Contains child logic and structural domains | None | +| `📁 store` | Directory | Contains child logic and structural domains | None | +| `📁 ui` | Directory | Contains child logic and structural domains | None | +| `📁 pipes` | Directory | Contains child logic and structural domains | None | +| `📁 lib` | Directory | Contains child logic and structural domains | None | -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './shared'; -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🔗 DEPENDENCIES +- No internal path aliases detected. + +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/shared/lib/README.md b/frontend/src/shared/lib/README.md index 6bc0bd8b..d8c9b384 100644 --- a/frontend/src/shared/lib/README.md +++ b/frontend/src/shared/lib/README.md @@ -1,38 +1,34 @@ -# 📁 lib +# 🏷️ Lib -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [shared](/frontend/src/shared) > [lib](/frontend/src/shared/lib) +[🏠 Home](../../../../README.md) ❯ [frontend](../../../README.md) ❯ [src](../../README.md) ❯ [shared](../README.md) ❯ **lib** -**FSD Layer:** Shared +**FSD Layer:** `Shared` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **lib** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the lib domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 lib"] - Root --> array_ts["📄 array.ts"] - Root --> index_ts["📄 index.ts"] - Root --> link_ts["📄 link.ts"] - Root --> object_ts["📄 object.ts"] + f_lib["📁 lib"] + f_lib --> f_object_ts["📄 object.ts"] + f_lib --> f_index_ts["📄 index.ts"] + f_lib --> f_array_ts["📄 array.ts"] + f_lib --> f_link_ts["📄 link.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `array.ts` | TypeScript | Provides core logic and orchestration for array.ts. | N/A | -| `index.ts` | TypeScript | Provides core logic and orchestration for index.ts. | N/A | -| `link.ts` | TypeScript | Provides core logic and orchestration for link.ts. | @environments | -| `object.ts` | TypeScript | Provides core logic and orchestration for object.ts. | N/A | +| `📄 object.ts` | Logic/Utility | Functions: objectExcludePropety, formDataExcludeProperty, convertFormData | None | +| `📄 index.ts` | Logic/Utility | Structural or configuration definitions. | None | +| `📄 array.ts` | Logic/Utility | Functions: deleteArrayItemById | None | +| `📄 link.ts` | Logic/Utility | Functions: linkCombine, linkServerConvert | @environments/environment | -## 🔗 Dependencies -- `@environments/environment` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './lib'; +## 🔗 DEPENDENCIES +- `@environments/environment` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/shared/models/README.md b/frontend/src/shared/models/README.md index 564b3e89..64104295 100644 --- a/frontend/src/shared/models/README.md +++ b/frontend/src/shared/models/README.md @@ -1,42 +1,38 @@ -# 📁 models +# 🏷️ Models -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [shared](/frontend/src/shared) > [models](/frontend/src/shared/models) +[🏠 Home](../../../../README.md) ❯ [frontend](../../../README.md) ❯ [src](../../README.md) ❯ [shared](../README.md) ❯ **models** -**FSD Layer:** Shared +**FSD Layer:** `Shared` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **models** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the models domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 models"] - Root --> admin_settings_model_ts["📄 admin-settings.model.ts"] - Root --> api_response_model_ts["📄 api-response.model.ts"] - Root --> gallery_model_ts["📄 gallery.model.ts"] - Root --> index_ts["📄 index.ts"] - Root --> service_model_ts["📄 service.model.ts"] - Root --> user_model_ts["📄 user.model.ts"] + f_models["📁 models"] + f_models --> f_index_ts["📄 index.ts"] + f_models --> f_api_response_model_ts["📄 api-response.model.ts"] + f_models --> f_user_model_ts["📄 user.model.ts"] + f_models --> f_service_model_ts["📄 service.model.ts"] + f_models --> f_admin_settings_model_ts["📄 admin-settings.model.ts"] + f_models --> f_gallery_model_ts["📄 gallery.model.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `admin-settings.model.ts` | TypeScript | Provides core logic and orchestration for admin-settings.model.ts. | N/A | -| `api-response.model.ts` | TypeScript | Provides core logic and orchestration for api-response.model.ts. | N/A | -| `gallery.model.ts` | TypeScript | Provides core logic and orchestration for gallery.model.ts. | N/A | -| `index.ts` | TypeScript | Provides core logic and orchestration for index.ts. | N/A | -| `service.model.ts` | TypeScript | Encapsulates business logic and data access for service.model.ts. | N/A | -| `user.model.ts` | TypeScript | Provides core logic and orchestration for user.model.ts. | N/A | - -## 🔗 Dependencies -- No external dependencies. - -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './models'; - -// Integrate into the application architecture -relevantMember.execute(); -``` +| `📄 index.ts` | Logic/Utility | Structural or configuration definitions. | None | +| `📄 api-response.model.ts` | Logic/Utility | Structural or configuration definitions. | None | +| `📄 user.model.ts` | Logic/Utility | Structural or configuration definitions. | None | +| `📄 service.model.ts` | Logic/Utility | Structural or configuration definitions. | None | +| `📄 admin-settings.model.ts` | Logic/Utility | Structural or configuration definitions. | None | +| `📄 gallery.model.ts` | Logic/Utility | Structural or configuration definitions. | None | + + +## 🔗 DEPENDENCIES +- No internal path aliases detected. + +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/shared/pipes/README.md b/frontend/src/shared/pipes/README.md index b2137988..d7917542 100644 --- a/frontend/src/shared/pipes/README.md +++ b/frontend/src/shared/pipes/README.md @@ -1,35 +1,31 @@ -# 📁 pipes +# 🏷️ Pipes -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [shared](/frontend/src/shared) > [pipes](/frontend/src/shared/pipes) +[🏠 Home](../../../../README.md) ❯ [frontend](../../../README.md) ❯ [src](../../README.md) ❯ [shared](../README.md) ❯ **pipes** -**FSD Layer:** Shared +**FSD Layer:** `Shared` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **pipes** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the pipes domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 pipes"] - Root --> index_ts["📄 index.ts"] - Root --> safe_html_pipe_ts["📄 safe-html.pipe.ts"] + f_pipes["📁 pipes"] + f_pipes --> f_index_ts["📄 index.ts"] + f_pipes --> f_safe_html_pipe_ts["📄 safe-html.pipe.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `index.ts` | TypeScript | Provides core logic and orchestration for index.ts. | N/A | -| `safe-html.pipe.ts` | TypeScript | Provides core logic and orchestration for safe-html.pipe.ts. | @angular | +| `📄 index.ts` | Logic/Utility | Structural or configuration definitions. | None | +| `📄 safe-html.pipe.ts` | Logic/Utility | Classes: SafeHtmlPipe | @angular/core, @angular/platform-browser | + -## 🔗 Dependencies +## 🔗 DEPENDENCIES - `@angular/core` - `@angular/platform-browser` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './pipes'; - -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/shared/services/README.md b/frontend/src/shared/services/README.md index 485da328..00be0bb3 100644 --- a/frontend/src/shared/services/README.md +++ b/frontend/src/shared/services/README.md @@ -1,47 +1,41 @@ -# 📁 services +# 🏷️ Services -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [shared](/frontend/src/shared) > [services](/frontend/src/shared/services) +[🏠 Home](../../../../README.md) ❯ [frontend](../../../README.md) ❯ [src](../../README.md) ❯ [shared](../README.md) ❯ **services** -**FSD Layer:** Shared +**FSD Layer:** `Shared` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **services** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the services domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 services"] - Root --> auth_service_ts["📄 auth.service.ts"] - Root --> error_service_ts["📄 error.service.ts"] - Root --> image_service_ts["📄 image.service.ts"] - Root --> index_ts["📄 index.ts"] - Root --> telegram_service_ts["📄 telegram.service.ts"] + f_services["📁 services"] + f_services --> f_auth_service_ts["📄 auth.service.ts"] + f_services --> f_telegram_service_ts["📄 telegram.service.ts"] + f_services --> f_index_ts["📄 index.ts"] + f_services --> f_error_service_ts["📄 error.service.ts"] + f_services --> f_image_service_ts["📄 image.service.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `auth.service.ts` | TypeScript | Encapsulates business logic and data access for auth.service.ts. | @angular, @core, @shared | -| `error.service.ts` | TypeScript | Encapsulates business logic and data access for error.service.ts. | @angular | -| `image.service.ts` | TypeScript | Encapsulates business logic and data access for image.service.ts. | @angular | -| `index.ts` | TypeScript | Provides core logic and orchestration for index.ts. | N/A | -| `telegram.service.ts` | TypeScript | Encapsulates business logic and data access for telegram.service.ts. | @angular, @src | - -## 🔗 Dependencies -- `./telegram.service` +| `📄 auth.service.ts` | Service | Classes: AuthService | @shared/models, @core/constants, @angular/common/http, @angular/core, @angular/router | +| `📄 telegram.service.ts` | Service | Classes: TelegramService | @angular/core, @src/types/telegram | +| `📄 index.ts` | Logic/Utility | Structural or configuration definitions. | None | +| `📄 error.service.ts` | Service | Classes: ErrorService | @angular/core | +| `📄 image.service.ts` | Service | Classes: ImageService | @angular/core | + + +## 🔗 DEPENDENCIES +- `@src/types/telegram` +- `@shared/models` +- `@core/constants` - `@angular/common/http` - `@angular/core` - `@angular/router` -- `@core/constants` -- `@shared/models` -- `@src/types/telegram` -- `rxjs` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './services'; - -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/shared/store/README.md b/frontend/src/shared/store/README.md index 05106078..2cb856c5 100644 --- a/frontend/src/shared/store/README.md +++ b/frontend/src/shared/store/README.md @@ -1,34 +1,30 @@ -# 📁 store +# 🏷️ Store -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [shared](/frontend/src/shared) > [store](/frontend/src/shared/store) +[🏠 Home](../../../../README.md) ❯ [frontend](../../../README.md) ❯ [src](../../README.md) ❯ [shared](../README.md) ❯ **store** -**FSD Layer:** Shared +**FSD Layer:** `Shared` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **store** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the store domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 store"] - Root --> index_ts["📄 index.ts"] - Root --> signal_store_base_ts["📄 signal-store.base.ts"] + f_store["📁 store"] + f_store --> f_signal_store_base_ts["📄 signal-store.base.ts"] + f_store --> f_index_ts["📄 index.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `index.ts` | TypeScript | Provides core logic and orchestration for index.ts. | N/A | -| `signal-store.base.ts` | TypeScript | Provides core logic and orchestration for signal-store.base.ts. | @angular | +| `📄 signal-store.base.ts` | Logic/Utility | Classes: SignalStore | @angular/core | +| `📄 index.ts` | Logic/Utility | Structural or configuration definitions. | None | -## 🔗 Dependencies -- `@angular/core` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './store'; +## 🔗 DEPENDENCIES +- `@angular/core` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/shared/ui/README.md b/frontend/src/shared/ui/README.md index c9b9dab1..e47e73f6 100644 --- a/frontend/src/shared/ui/README.md +++ b/frontend/src/shared/ui/README.md @@ -1,36 +1,36 @@ -# 📁 ui +# 🏷️ Ui -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [shared](/frontend/src/shared) > [ui](/frontend/src/shared/ui) +[🏠 Home](../../../../README.md) ❯ [frontend](../../../README.md) ❯ [src](../../README.md) ❯ [shared](../README.md) ❯ **ui** -**FSD Layer:** Shared +**FSD Layer:** `Shared` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **ui** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the ui domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 ui"] - Root --> card-view["📁 card-view"] - Root --> global-error["📁 global-error"] - Root --> image-popup["📁 image-popup"] - Root --> list-view["📁 list-view"] - Root --> index_ts["📄 index.ts"] + f_ui["📁 ui"] + f_ui --> f_index_ts["📄 index.ts"] + f_ui --> f_list_view["📁 list-view"] + f_ui --> f_global_error["📁 global-error"] + f_ui --> f_card_view["📁 card-view"] + f_ui --> f_image_popup["📁 image-popup"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `index.ts` | TypeScript | Provides core logic and orchestration for index.ts. | N/A | +| `📁 list-view` | Directory | Contains child logic and structural domains | None | +| `📁 global-error` | Directory | Contains child logic and structural domains | None | +| `📁 card-view` | Directory | Contains child logic and structural domains | None | +| `📁 image-popup` | Directory | Contains child logic and structural domains | None | +| `📄 index.ts` | Logic/Utility | Structural or configuration definitions. | None | -## 🔗 Dependencies -- No external dependencies. -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './ui'; +## 🔗 DEPENDENCIES +- No internal path aliases detected. -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/shared/ui/card-view/README.md b/frontend/src/shared/ui/card-view/README.md index 96582616..dc7673c7 100644 --- a/frontend/src/shared/ui/card-view/README.md +++ b/frontend/src/shared/ui/card-view/README.md @@ -1,40 +1,37 @@ -# 📁 card-view +# 🏷️ Card-view -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [shared](/frontend/src/shared) > [ui](/frontend/src/shared/ui) > [card-view](/frontend/src/shared/ui/card-view) +[🏠 Home](../../../../../README.md) ❯ [frontend](../../../../README.md) ❯ [src](../../../README.md) ❯ [shared](../../README.md) ❯ [ui](../README.md) ❯ **card-view** -**FSD Layer:** Shared +**FSD Layer:** `Shared` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **card-view** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the card-view domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 card-view"] - Root --> card_view_component_html["📄 card-view.component.html"] - Root --> card_view_component_scss["📄 card-view.component.scss"] - Root --> card_view_component_ts["📄 card-view.component.ts"] - Root --> index_ts["📄 index.ts"] + f_card_view["📁 card-view"] + f_card_view --> f_card_view_component_html["📄 card-view.component.html"] + f_card_view --> f_index_ts["📄 index.ts"] + f_card_view --> f_card_view_component_scss["📄 card-view.component.scss"] + f_card_view --> f_card_view_component_ts["📄 card-view.component.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `card-view.component.html` | Template | Structural template and layout for card-view.component.html. | N/A | -| `card-view.component.scss` | Stylesheet | Luxury styling and visual presentation for card-view.component.scss. | N/A | -| `card-view.component.ts` | TypeScript | UI component logic and state management for card-view.component.ts. | @angular, @environments, @shared | -| `index.ts` | TypeScript | Provides core logic and orchestration for index.ts. | N/A | +| `📄 card-view.component.html` | Template | Structural or configuration definitions. | None | +| `📄 index.ts` | Logic/Utility | Structural or configuration definitions. | None | +| `📄 card-view.component.scss` | Style | Structural or configuration definitions. | None | +| `📄 card-view.component.ts` | Component | Classes: CardViewComponent | @angular/core, @shared/lib, @environments/environment, @angular/common | -## 🔗 Dependencies -- `@angular/common` -- `@environments/environment` -- `@shared/lib` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './card-view'; +## 🔗 DEPENDENCIES +- `@angular/core` +- `@shared/lib` +- `@environments/environment` +- `@angular/common` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/shared/ui/global-error/README.md b/frontend/src/shared/ui/global-error/README.md index 7c7d72f3..11d94aa8 100644 --- a/frontend/src/shared/ui/global-error/README.md +++ b/frontend/src/shared/ui/global-error/README.md @@ -1,35 +1,31 @@ -# 📁 global-error +# 🏷️ Global-error -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [shared](/frontend/src/shared) > [ui](/frontend/src/shared/ui) > [global-error](/frontend/src/shared/ui/global-error) +[🏠 Home](../../../../../README.md) ❯ [frontend](../../../../README.md) ❯ [src](../../../README.md) ❯ [shared](../../README.md) ❯ [ui](../README.md) ❯ **global-error** -**FSD Layer:** Shared +**FSD Layer:** `Shared` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **global-error** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the global-error domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 global-error"] - Root --> global_error_component_ts["📄 global-error.component.ts"] + f_global_error["📁 global-error"] + f_global_error --> f_global_error_component_ts["📄 global-error.component.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `global-error.component.ts` | TypeScript | UI component logic and state management for global-error.component.ts. | @angular, @shared | +| `📄 global-error.component.ts` | Component | Classes: GlobalErrorComponent | @angular/core, @shared/services, @angular/animations, @angular/common | -## 🔗 Dependencies -- `@angular/animations` -- `@angular/common` + +## 🔗 DEPENDENCIES - `@angular/core` - `@shared/services` +- `@angular/animations` +- `@angular/common` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './global-error'; - -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/shared/ui/image-popup/README.md b/frontend/src/shared/ui/image-popup/README.md index 37a267d9..18697f0a 100644 --- a/frontend/src/shared/ui/image-popup/README.md +++ b/frontend/src/shared/ui/image-popup/README.md @@ -1,35 +1,31 @@ -# 📁 image-popup +# 🏷️ Image-popup -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [shared](/frontend/src/shared) > [ui](/frontend/src/shared/ui) > [image-popup](/frontend/src/shared/ui/image-popup) +[🏠 Home](../../../../../README.md) ❯ [frontend](../../../../README.md) ❯ [src](../../../README.md) ❯ [shared](../../README.md) ❯ [ui](../README.md) ❯ **image-popup** -**FSD Layer:** Shared +**FSD Layer:** `Shared` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **image-popup** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the image-popup domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 image-popup"] - Root --> image_popup_component_html["📄 image-popup.component.html"] - Root --> image_popup_component_ts["📄 image-popup.component.ts"] + f_image_popup["📁 image-popup"] + f_image_popup --> f_image_popup_component_ts["📄 image-popup.component.ts"] + f_image_popup --> f_image_popup_component_html["📄 image-popup.component.html"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `image-popup.component.html` | Template | Structural template and layout for image-popup.component.html. | N/A | -| `image-popup.component.ts` | TypeScript | UI component logic and state management for image-popup.component.ts. | @angular | +| `📄 image-popup.component.ts` | Component | Classes: ImagePopupComponent | @angular/core, @angular/common | +| `📄 image-popup.component.html` | Template | Structural or configuration definitions. | None | -## 🔗 Dependencies -- `@angular/common` -- `@angular/core` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './image-popup'; +## 🔗 DEPENDENCIES +- `@angular/core` +- `@angular/common` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/shared/ui/list-view/README.md b/frontend/src/shared/ui/list-view/README.md index fc1f4b1f..c35e79a6 100644 --- a/frontend/src/shared/ui/list-view/README.md +++ b/frontend/src/shared/ui/list-view/README.md @@ -1,38 +1,34 @@ -# 📁 list-view +# 🏷️ List-view -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [shared](/frontend/src/shared) > [ui](/frontend/src/shared/ui) > [list-view](/frontend/src/shared/ui/list-view) +[🏠 Home](../../../../../README.md) ❯ [frontend](../../../../README.md) ❯ [src](../../../README.md) ❯ [shared](../../README.md) ❯ [ui](../README.md) ❯ **list-view** -**FSD Layer:** Shared +**FSD Layer:** `Shared` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **list-view** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the list-view domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 list-view"] - Root --> list_view_component_html["📄 list-view.component.html"] - Root --> list_view_component_scss["📄 list-view.component.scss"] - Root --> list_view_component_ts["📄 list-view.component.ts"] + f_list_view["📁 list-view"] + f_list_view --> f_list_view_component_scss["📄 list-view.component.scss"] + f_list_view --> f_list_view_component_html["📄 list-view.component.html"] + f_list_view --> f_list_view_component_ts["📄 list-view.component.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `list-view.component.html` | Template | Structural template and layout for list-view.component.html. | N/A | -| `list-view.component.scss` | Stylesheet | Luxury styling and visual presentation for list-view.component.scss. | N/A | -| `list-view.component.ts` | TypeScript | UI component logic and state management for list-view.component.ts. | @angular, @shared | +| `📄 list-view.component.scss` | Style | Structural or configuration definitions. | None | +| `📄 list-view.component.html` | Template | Structural or configuration definitions. | None | +| `📄 list-view.component.ts` | Component | Classes: ListViewComponent | @angular/core, @shared/lib, @angular/common | -## 🔗 Dependencies -- `@angular/common` + +## 🔗 DEPENDENCIES - `@angular/core` - `@shared/lib` +- `@angular/common` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './list-view'; - -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/types/README.md b/frontend/src/types/README.md index 80785dfe..54593a8f 100644 --- a/frontend/src/types/README.md +++ b/frontend/src/types/README.md @@ -1,30 +1,28 @@ -# 📁 types +# 🏷️ Types -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [types](/frontend/src/types) +[🏠 Home](../../../README.md) ❯ [frontend](../../README.md) ❯ [src](../README.md) ❯ **types** -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **types** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +**FSD Layer:** `App` -## 🏗️ Architecture +## 🎯 PURPOSE +Core implementation for the types domain within the luxury Mavluda Beauty ecosystem. + +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 types"] - Root --> telegram_ts["📄 telegram.ts"] + f_types["📁 types"] + f_types --> f_telegram_ts["📄 telegram.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `telegram.ts` | TypeScript | Provides core logic and orchestration for telegram.ts. | N/A | +| `📄 telegram.ts` | Logic/Utility | Structural or configuration definitions. | None | -## 🔗 Dependencies -- No external dependencies. -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './types'; +## 🔗 DEPENDENCIES +- No internal path aliases detected. -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/widgets/README.md b/frontend/src/widgets/README.md index 21c51ce9..2e975f39 100644 --- a/frontend/src/widgets/README.md +++ b/frontend/src/widgets/README.md @@ -1,32 +1,32 @@ -# 📁 widgets +# 🏷️ Widgets -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [widgets](/frontend/src/widgets) +[🏠 Home](../../../README.md) ❯ [frontend](../../README.md) ❯ [src](../README.md) ❯ **widgets** -**FSD Layer:** Widget +**FSD Layer:** `Widgets` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **widgets** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the widgets domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 widgets"] - Root --> header["📁 header"] - Root --> layouts["📁 layouts"] - Root --> sidebar["📁 sidebar"] + f_widgets["📁 widgets"] + f_widgets --> f_header["📁 header"] + f_widgets --> f_sidebar["📁 sidebar"] + f_widgets --> f_layouts["📁 layouts"] ``` -## 📄 File Registry -*No relevant files in this directory.* -## 🔗 Dependencies -- No external dependencies. +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | +|---|---|---|---| +| `📁 header` | Directory | Contains child logic and structural domains | None | +| `📁 sidebar` | Directory | Contains child logic and structural domains | None | +| `📁 layouts` | Directory | Contains child logic and structural domains | None | -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './widgets'; -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🔗 DEPENDENCIES +- No internal path aliases detected. + +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/widgets/header/README.md b/frontend/src/widgets/header/README.md index eaff395b..6e3be2fb 100644 --- a/frontend/src/widgets/header/README.md +++ b/frontend/src/widgets/header/README.md @@ -1,41 +1,37 @@ -# 📁 header +# 🏷️ Header -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [widgets](/frontend/src/widgets) > [header](/frontend/src/widgets/header) +[🏠 Home](../../../../README.md) ❯ [frontend](../../../README.md) ❯ [src](../../README.md) ❯ [widgets](../README.md) ❯ **header** -**FSD Layer:** Widget +**FSD Layer:** `Widgets` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **header** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the header domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 header"] - Root --> header_component_html["📄 header.component.html"] - Root --> header_component_scss["📄 header.component.scss"] - Root --> header_component_ts["📄 header.component.ts"] - Root --> index_ts["📄 index.ts"] + f_header["📁 header"] + f_header --> f_header_component_scss["📄 header.component.scss"] + f_header --> f_header_component_html["📄 header.component.html"] + f_header --> f_index_ts["📄 index.ts"] + f_header --> f_header_component_ts["📄 header.component.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `header.component.html` | Template | Structural template and layout for header.component.html. | N/A | -| `header.component.scss` | Stylesheet | Luxury styling and visual presentation for header.component.scss. | N/A | -| `header.component.ts` | TypeScript | UI component logic and state management for header.component.ts. | @angular, @features | -| `index.ts` | TypeScript | Provides core logic and orchestration for index.ts. | N/A | +| `📄 header.component.scss` | Style | Structural or configuration definitions. | None | +| `📄 header.component.html` | Template | Structural or configuration definitions. | None | +| `📄 index.ts` | Logic/Utility | Structural or configuration definitions. | None | +| `📄 header.component.ts` | Component | Classes: HeaderComponent | @angular/core, @angular/router, @features/language-selection, @angular/common | -## 🔗 Dependencies -- `@angular/common` + +## 🔗 DEPENDENCIES - `@angular/core` - `@angular/router` - `@features/language-selection` +- `@angular/common` -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './header'; - -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/widgets/layouts/README.md b/frontend/src/widgets/layouts/README.md index fe1b67bc..603e5bf9 100644 --- a/frontend/src/widgets/layouts/README.md +++ b/frontend/src/widgets/layouts/README.md @@ -1,48 +1,44 @@ -# 📁 layouts +# 🏷️ Layouts -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [widgets](/frontend/src/widgets) > [layouts](/frontend/src/widgets/layouts) +[🏠 Home](../../../../README.md) ❯ [frontend](../../../README.md) ❯ [src](../../README.md) ❯ [widgets](../README.md) ❯ **layouts** -**FSD Layer:** Widget +**FSD Layer:** `Widgets` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **layouts** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the layouts domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 layouts"] - Root --> admin_layout_component_html["📄 admin-layout.component.html"] - Root --> admin_layout_component_scss["📄 admin-layout.component.scss"] - Root --> admin_layout_component_ts["📄 admin-layout.component.ts"] - Root --> index_ts["📄 index.ts"] - Root --> user_layout_component_html["📄 user-layout.component.html"] - Root --> user_layout_component_scss["📄 user-layout.component.scss"] - Root --> user_layout_component_ts["📄 user-layout.component.ts"] + f_layouts["📁 layouts"] + f_layouts --> f_admin_layout_component_ts["📄 admin-layout.component.ts"] + f_layouts --> f_index_ts["📄 index.ts"] + f_layouts --> f_user_layout_component_ts["📄 user-layout.component.ts"] + f_layouts --> f_admin_layout_component_scss["📄 admin-layout.component.scss"] + f_layouts --> f_admin_layout_component_html["📄 admin-layout.component.html"] + f_layouts --> f_user_layout_component_scss["📄 user-layout.component.scss"] + f_layouts --> f_user_layout_component_html["📄 user-layout.component.html"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `admin-layout.component.html` | Template | Structural template and layout for admin-layout.component.html. | N/A | -| `admin-layout.component.scss` | Stylesheet | Luxury styling and visual presentation for admin-layout.component.scss. | N/A | -| `admin-layout.component.ts` | TypeScript | UI component logic and state management for admin-layout.component.ts. | @angular, @widgets | -| `index.ts` | TypeScript | Provides core logic and orchestration for index.ts. | N/A | -| `user-layout.component.html` | Template | Structural template and layout for user-layout.component.html. | N/A | -| `user-layout.component.scss` | Stylesheet | Luxury styling and visual presentation for user-layout.component.scss. | N/A | -| `user-layout.component.ts` | TypeScript | UI component logic and state management for user-layout.component.ts. | @angular | - -## 🔗 Dependencies +| `📄 admin-layout.component.ts` | Component | Classes: AdminLayoutComponent | @angular/core, @widgets/header, @widgets/sidebar, @angular/router | +| `📄 index.ts` | Logic/Utility | Structural or configuration definitions. | None | +| `📄 user-layout.component.ts` | Component | Classes: UserLayoutComponent | @angular/core, @angular/router, @angular/common | +| `📄 admin-layout.component.scss` | Style | Structural or configuration definitions. | None | +| `📄 admin-layout.component.html` | Template | Structural or configuration definitions. | None | +| `📄 user-layout.component.scss` | Style | Structural or configuration definitions. | None | +| `📄 user-layout.component.html` | Template | Structural or configuration definitions. | None | + + +## 🔗 DEPENDENCIES - `@angular/common` +- `@widgets/sidebar` - `@angular/core` -- `@angular/router` - `@widgets/header` -- `@widgets/sidebar` - -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './layouts'; +- `@angular/router` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details. diff --git a/frontend/src/widgets/sidebar/README.md b/frontend/src/widgets/sidebar/README.md index b54cf7a5..fadfe176 100644 --- a/frontend/src/widgets/sidebar/README.md +++ b/frontend/src/widgets/sidebar/README.md @@ -1,40 +1,35 @@ -# 📁 sidebar +# 🏷️ Sidebar -[Root](/.) > [frontend](/frontend) > [src](/frontend/src) > [widgets](/frontend/src/widgets) > [sidebar](/frontend/src/widgets/sidebar) +[🏠 Home](../../../../README.md) ❯ [frontend](../../../README.md) ❯ [src](../../README.md) ❯ [widgets](../README.md) ❯ **sidebar** -**FSD Layer:** Widget +**FSD Layer:** `Widgets` -## 🎯 Purpose -Delivering luxury-tier architectural components and high-performance logic for the **sidebar** domain. This directory is a crucial part of the Mavluda Beauty full-stack ecosystem, ensuring seamless scalability, robust performance, and an elite digital experience. +## 🎯 PURPOSE +Core implementation for the sidebar domain within the luxury Mavluda Beauty ecosystem. -## 🏗️ Architecture +## 🏗️ ARCHITECTURE ```mermaid graph TD - Root["📁 sidebar"] - Root --> index_ts["📄 index.ts"] - Root --> sidebar_component_html["📄 sidebar.component.html"] - Root --> sidebar_component_ts["📄 sidebar.component.ts"] + f_sidebar["📁 sidebar"] + f_sidebar --> f_index_ts["📄 index.ts"] + f_sidebar --> f_sidebar_component_html["📄 sidebar.component.html"] + f_sidebar --> f_sidebar_component_ts["📄 sidebar.component.ts"] ``` -## 📄 File Registry -| File Name | Type | Responsibility | Key Aliases Used | + +## 📄 FILE REGISTRY +| Entry Name | Type | Responsibility | Key Aliases Used | |---|---|---|---| -| `index.ts` | TypeScript | Provides core logic and orchestration for index.ts. | N/A | -| `sidebar.component.html` | Template | Structural template and layout for sidebar.component.html. | N/A | -| `sidebar.component.ts` | TypeScript | UI component logic and state management for sidebar.component.ts. | @angular, @shared | +| `📄 index.ts` | Logic/Utility | Structural or configuration definitions. | None | +| `📄 sidebar.component.html` | Template | Structural or configuration definitions. | None | +| `📄 sidebar.component.ts` | Component | Classes: SidebarComponent | @angular/core, @shared/pipes, @angular/router, @angular/common | -## 🔗 Dependencies -- `@angular/common` + +## 🔗 DEPENDENCIES - `@angular/core` -- `@angular/router` - `@shared/pipes` -- `rxjs` - -## 🛠️ Usage -```typescript -// Example usage within the Mavluda Beauty ecosystem -import { relevantMember } from './sidebar'; +- `@angular/router` +- `@angular/common` -// Integrate into the application architecture -relevantMember.execute(); -``` +## 🛠️ USAGE +Explore the files and directories within this path to understand the refined logic that powers the Mavluda Beauty experience. Refer to the specific classes and functions outlined in the registry for implementation details.