mirror of
https://github.com/aliasvault/aliasvault.git
synced 2026-03-25 01:52:12 -04:00
Bumps the npm_and_yarn group with 1 update in the /apps/browser-extension directory: [flatted](https://github.com/WebReflection/flatted). Bumps the npm_and_yarn group with 1 update in the /apps/mobile-app directory: [flatted](https://github.com/WebReflection/flatted). Bumps the npm_and_yarn group with 1 update in the /core/models directory: [flatted](https://github.com/WebReflection/flatted). Bumps the npm_and_yarn group with 1 update in the /core/typescript/identity-generator directory: [flatted](https://github.com/WebReflection/flatted). Bumps the npm_and_yarn group with 1 update in the /core/typescript/password-generator directory: [flatted](https://github.com/WebReflection/flatted). Bumps the npm_and_yarn group with 1 update in the /core/vault directory: [flatted](https://github.com/WebReflection/flatted). Updates `flatted` from 3.3.3 to 3.4.2 - [Commits](https://github.com/WebReflection/flatted/compare/v3.3.3...v3.4.2) Updates `flatted` from 3.3.3 to 3.4.2 - [Commits](https://github.com/WebReflection/flatted/compare/v3.3.3...v3.4.2) Updates `flatted` from 3.3.3 to 3.4.2 - [Commits](https://github.com/WebReflection/flatted/compare/v3.3.3...v3.4.2) Updates `flatted` from 3.3.3 to 3.4.2 - [Commits](https://github.com/WebReflection/flatted/compare/v3.3.3...v3.4.2) Updates `flatted` from 3.3.3 to 3.4.2 - [Commits](https://github.com/WebReflection/flatted/compare/v3.3.3...v3.4.2) Updates `flatted` from 3.3.3 to 3.4.2 - [Commits](https://github.com/WebReflection/flatted/compare/v3.3.3...v3.4.2) --- updated-dependencies: - dependency-name: flatted dependency-version: 3.4.2 dependency-type: indirect dependency-group: npm_and_yarn - dependency-name: flatted dependency-version: 3.4.2 dependency-type: indirect dependency-group: npm_and_yarn - dependency-name: flatted dependency-version: 3.4.2 dependency-type: indirect dependency-group: npm_and_yarn - dependency-name: flatted dependency-version: 3.4.2 dependency-type: indirect dependency-group: npm_and_yarn - dependency-name: flatted dependency-version: 3.4.2 dependency-type: indirect dependency-group: npm_and_yarn - dependency-name: flatted dependency-version: 3.4.2 dependency-type: indirect dependency-group: npm_and_yarn ... Signed-off-by: dependabot[bot] <support@github.com>
Core Models
This package serves as the single source of truth for data models across all AliasVault platforms.
What This Does
This package performs two key functions:
1. TypeScript Distribution (As-Is)
Builds and copies TypeScript models directly to:
- Browser Extension:
apps/browser-extension/src/utils/dist/core/models - Mobile App:
apps/mobile-app/utils/dist/core/models
These apps consume the TypeScript models as-is, enabling type-safe development with no manual synchronization needed.
2. Native Code Generation (Transformed)
Automatically generates platform-specific models from TypeScript sources:
| Source | Generated Output | Language |
|---|---|---|
src/vault/FieldKey.ts |
apps/server/Databases/AliasClientDb/Models/FieldKey.cs |
C# |
src/vault/FieldKey.ts |
apps/mobile-app/ios/AliasVault/VaultModels/FieldKey.swift |
Swift |
src/vault/FieldKey.ts |
apps/mobile-app/android/.../vaultstore/models/FieldKey.kt |
Kotlin |