Some checks failed
Dev CI / Unit Tests (${{ matrix.app }}) (backend) (push) Blocked by required conditions
Dev CI / Unit Tests (${{ matrix.app }}) (frontend) (push) Blocked by required conditions
Dev CI / Notify Failure (push) Blocked by required conditions
Dev CI / Quality (${{ matrix.app }}) (backend) (push) Has been cancelled
Dev CI / Quality (${{ matrix.app }}) (frontend) (push) Has been cancelled
Aligns dev with the complete application codebase (cicd branch). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
16 lines
414 B
TypeScript
16 lines
414 B
TypeScript
/**
|
|
* Domain Entities Barrel Export
|
|
*
|
|
* All core domain entities for the Xpeditis platform
|
|
*/
|
|
|
|
export * from './organization.entity';
|
|
export * from './user.entity';
|
|
export * from './carrier.entity';
|
|
export * from './port.entity';
|
|
export * from './rate-quote.entity';
|
|
export * from './container.entity';
|
|
export * from './booking.entity';
|
|
export * from './subscription.entity';
|
|
export * from './license.entity';
|