2023-11-25 18:53:30 +00:00
|
|
|
import { GeodataAdmin2Entity } from '@app/infra/entities/geodata-admin2.entity';
|
2023-11-01 04:13:34 +01:00
|
|
|
import { ActivityEntity } from './activity.entity';
|
2023-03-30 15:38:55 -04:00
|
|
|
import { AlbumEntity } from './album.entity';
|
|
|
|
|
import { APIKeyEntity } from './api-key.entity';
|
2023-05-17 13:07:17 -04:00
|
|
|
import { AssetFaceEntity } from './asset-face.entity';
|
2023-11-09 17:55:00 -08:00
|
|
|
import { AssetJobStatusEntity } from './asset-job-status.entity';
|
2023-03-30 15:38:55 -04:00
|
|
|
import { AssetEntity } from './asset.entity';
|
2023-08-24 21:28:50 +02:00
|
|
|
import { AuditEntity } from './audit.entity';
|
2023-09-04 22:25:31 -04:00
|
|
|
import { ExifEntity } from './exif.entity';
|
2023-11-25 18:53:30 +00:00
|
|
|
import { GeodataAdmin1Entity } from './geodata-admin1.entity';
|
|
|
|
|
import { GeodataPlacesEntity } from './geodata-places.entity';
|
2023-09-20 13:16:33 +02:00
|
|
|
import { LibraryEntity } from './library.entity';
|
2023-10-11 04:14:44 +02:00
|
|
|
import { MoveEntity } from './move.entity';
|
2023-05-15 20:30:53 +03:00
|
|
|
import { PartnerEntity } from './partner.entity';
|
2023-05-17 13:07:17 -04:00
|
|
|
import { PersonEntity } from './person.entity';
|
2023-03-30 15:38:55 -04:00
|
|
|
import { SharedLinkEntity } from './shared-link.entity';
|
|
|
|
|
import { SmartInfoEntity } from './smart-info.entity';
|
|
|
|
|
import { SystemConfigEntity } from './system-config.entity';
|
2023-11-25 18:53:30 +00:00
|
|
|
import { SystemMetadataEntity } from './system-metadata.entity';
|
2023-05-31 21:51:28 -04:00
|
|
|
import { TagEntity } from './tag.entity';
|
2023-05-15 20:30:53 +03:00
|
|
|
import { UserTokenEntity } from './user-token.entity';
|
2023-05-17 13:07:17 -04:00
|
|
|
import { UserEntity } from './user.entity';
|
2023-03-30 15:38:55 -04:00
|
|
|
|
2023-11-01 04:13:34 +01:00
|
|
|
export * from './activity.entity';
|
2023-03-30 15:38:55 -04:00
|
|
|
export * from './album.entity';
|
|
|
|
|
export * from './api-key.entity';
|
2023-05-17 13:07:17 -04:00
|
|
|
export * from './asset-face.entity';
|
2023-11-09 17:55:00 -08:00
|
|
|
export * from './asset-job-status.entity';
|
2023-03-30 15:38:55 -04:00
|
|
|
export * from './asset.entity';
|
2023-08-24 21:28:50 +02:00
|
|
|
export * from './audit.entity';
|
2023-03-30 15:38:55 -04:00
|
|
|
export * from './exif.entity';
|
2023-11-25 18:53:30 +00:00
|
|
|
export * from './geodata-admin1.entity';
|
|
|
|
|
export * from './geodata-admin2.entity';
|
|
|
|
|
export * from './geodata-places.entity';
|
2023-09-20 13:16:33 +02:00
|
|
|
export * from './library.entity';
|
2023-10-11 04:14:44 +02:00
|
|
|
export * from './move.entity';
|
2023-05-15 20:30:53 +03:00
|
|
|
export * from './partner.entity';
|
2023-05-17 13:07:17 -04:00
|
|
|
export * from './person.entity';
|
2023-03-30 15:38:55 -04:00
|
|
|
export * from './shared-link.entity';
|
|
|
|
|
export * from './smart-info.entity';
|
|
|
|
|
export * from './system-config.entity';
|
2023-11-25 18:53:30 +00:00
|
|
|
export * from './system-metadata.entity';
|
2023-03-30 15:38:55 -04:00
|
|
|
export * from './tag.entity';
|
|
|
|
|
export * from './user-token.entity';
|
|
|
|
|
export * from './user.entity';
|
|
|
|
|
|
|
|
|
|
export const databaseEntities = [
|
2023-11-01 04:13:34 +01:00
|
|
|
ActivityEntity,
|
2023-03-30 15:38:55 -04:00
|
|
|
AlbumEntity,
|
|
|
|
|
APIKeyEntity,
|
2023-05-15 20:30:53 +03:00
|
|
|
AssetEntity,
|
2023-05-17 13:07:17 -04:00
|
|
|
AssetFaceEntity,
|
2023-11-09 17:55:00 -08:00
|
|
|
AssetJobStatusEntity,
|
2023-08-24 21:28:50 +02:00
|
|
|
AuditEntity,
|
2023-09-04 22:25:31 -04:00
|
|
|
ExifEntity,
|
2023-11-25 18:53:30 +00:00
|
|
|
GeodataPlacesEntity,
|
|
|
|
|
GeodataAdmin1Entity,
|
|
|
|
|
GeodataAdmin2Entity,
|
2023-10-11 04:14:44 +02:00
|
|
|
MoveEntity,
|
2023-05-15 20:30:53 +03:00
|
|
|
PartnerEntity,
|
2023-05-17 13:07:17 -04:00
|
|
|
PersonEntity,
|
2023-03-30 15:38:55 -04:00
|
|
|
SharedLinkEntity,
|
|
|
|
|
SmartInfoEntity,
|
|
|
|
|
SystemConfigEntity,
|
2023-11-25 18:53:30 +00:00
|
|
|
SystemMetadataEntity,
|
2023-05-31 21:51:28 -04:00
|
|
|
TagEntity,
|
2023-05-15 20:30:53 +03:00
|
|
|
UserEntity,
|
2023-03-30 15:38:55 -04:00
|
|
|
UserTokenEntity,
|
2023-09-20 13:16:33 +02:00
|
|
|
LibraryEntity,
|
2023-03-30 15:38:55 -04:00
|
|
|
];
|