2026-07-03 01:29:04 +04:00
|
|
|
export * from './api-endpoints.model';
|
|
|
|
|
export * from './bootstrap-config.model';
|
|
|
|
|
export * from './branding.model';
|
2026-07-09 00:55:50 +04:00
|
|
|
export * from './catalog-config.model';
|
2026-07-03 01:29:04 +04:00
|
|
|
export * from './company.model';
|
2026-08-22 22:02:42 +04:00
|
|
|
export * from './default-bootstrap.const';
|
2026-07-03 01:29:04 +04:00
|
|
|
export * from './feature-flags.model';
|
2026-07-10 15:55:38 +04:00
|
|
|
export * from './features-config.model';
|
2026-07-05 04:17:31 +04:00
|
|
|
export * from './footer-config.model';
|
2026-07-10 13:43:53 +04:00
|
|
|
export * from './header-config.model';
|
2026-07-05 04:17:31 +04:00
|
|
|
export * from './layout.model';
|
2026-07-03 01:29:04 +04:00
|
|
|
export * from './localization.model';
|
|
|
|
|
export * from './navigation.model';
|
|
|
|
|
export * from './page.model';
|
|
|
|
|
export * from './permissions.model';
|
feat(platform): add typed contracts for optional Seller Management module
Architectural foundation only - no UI, no backend, no business logic.
Per ADR-001 (Platform -> Marketplace -> Seller hierarchy) and ADR-009
(feature flags / capability guards): Seller is an optional child scope
beneath a marketplace, not another tenant.
New:
- PlatformModulesConfig / SellerManagementModuleConfig
(shared/models/config/platform-modules.model.ts) - the
modules.sellerManagement.enabled contract, defaults to disabled
(DEFAULT_PLATFORM_MODULES_CONFIG).
- SellerConfig (shared/models/config/seller.model.ts) - typed shape for
the resolved seller scope, mirroring TenantConfig's fields at the
subset a seller needs. Frontend never resolves this itself; it only
reads what the backend already decided (same convention as tenant
resolution, ADR-001).
Changed:
- BootstrapConfig gained two optional fields: modules?, seller?. Both
absent by default - every existing marketplace's bootstrap response
is untouched, TypeScript-checked backward compatible (all new fields
optional, no existing field types changed).
tsc --noEmit clean. No component, facade, service, or route touched -
this commit is pure type contracts.
2026-07-26 20:13:56 +04:00
|
|
|
export * from './platform-modules.model';
|
2026-07-09 00:45:36 +04:00
|
|
|
export * from './product-page-config.model';
|
2026-07-03 01:29:04 +04:00
|
|
|
export * from './section.model';
|
feat(platform): add typed contracts for optional Seller Management module
Architectural foundation only - no UI, no backend, no business logic.
Per ADR-001 (Platform -> Marketplace -> Seller hierarchy) and ADR-009
(feature flags / capability guards): Seller is an optional child scope
beneath a marketplace, not another tenant.
New:
- PlatformModulesConfig / SellerManagementModuleConfig
(shared/models/config/platform-modules.model.ts) - the
modules.sellerManagement.enabled contract, defaults to disabled
(DEFAULT_PLATFORM_MODULES_CONFIG).
- SellerConfig (shared/models/config/seller.model.ts) - typed shape for
the resolved seller scope, mirroring TenantConfig's fields at the
subset a seller needs. Frontend never resolves this itself; it only
reads what the backend already decided (same convention as tenant
resolution, ADR-001).
Changed:
- BootstrapConfig gained two optional fields: modules?, seller?. Both
absent by default - every existing marketplace's bootstrap response
is untouched, TypeScript-checked backward compatible (all new fields
optional, no existing field types changed).
tsc --noEmit clean. No component, facade, service, or route touched -
this commit is pure type contracts.
2026-07-26 20:13:56 +04:00
|
|
|
export * from './seller.model';
|
2026-07-03 01:29:04 +04:00
|
|
|
export * from './seo.model';
|
2026-07-05 03:37:35 +04:00
|
|
|
export * from './static-page.model';
|
2026-07-03 01:29:04 +04:00
|
|
|
export * from './tenant.model';
|
|
|
|
|
export * from './theme.model';
|
2026-07-09 01:13:54 +04:00
|
|
|
export * from './user-experience-config.model';
|
2026-07-03 01:29:04 +04:00
|
|
|
export * from './widget.model';
|
2026-07-05 04:17:31 +04:00
|
|
|
export * from './widget-registry.model';
|