| 1 | import { ChannelAccountDataSnapshotRepository } from './channel-account-data-snapshot.repository' |
| 2 | import { ChannelAuthIdentityRepository } from './channel-auth-identity.repository' |
| 3 | import { ChannelWorkDataSnapshotRepository } from './channel-work-data-snapshot.repository' |
| 4 | import { EngagementSubTaskRepository } from './engagement-sub-task.repository' |
| 5 | import { EngagementTaskRepository } from './engagement-task.repository' |
| 6 | import { InteractionRecordRepository } from './interaction-record.repository' |
| 7 | import { OAuth2CredentialRepository } from './oauth2-credential.repository' |
| 8 | import { ReplyCommentRecordRepository } from './reply-comment-record.repository' |
| 9 | |
| 10 | export * from './base.repository' |
| 11 | export * from './channel-account-data-snapshot.repository' |
| 12 | export * from './channel-auth-identity.repository' |
| 13 | export * from './channel-work-data-snapshot.repository' |
| 14 | export * from './engagement-sub-task.repository' |
| 15 | export * from './engagement-task.repository' |
| 16 | export * from './interaction-record.repository' |
| 17 | export * from './oauth2-credential.repository' |
| 18 | export * from './reply-comment-record.repository' |
| 19 | |
| 20 | export const repositories = [ |
| 21 | ChannelAccountDataSnapshotRepository, |
| 22 | ChannelAuthIdentityRepository, |
| 23 | ChannelWorkDataSnapshotRepository, |
| 24 | EngagementTaskRepository, |
| 25 | EngagementSubTaskRepository, |
| 26 | InteractionRecordRepository, |
| 27 | ReplyCommentRecordRepository, |
| 28 | OAuth2CredentialRepository, |
| 29 | ] as const |
| 30 |