diff --git a/backend/src/models/connection.ts b/backend/src/models/connection.ts index 2cf917fb..dcbb0d67 100644 --- a/backend/src/models/connection.ts +++ b/backend/src/models/connection.ts @@ -23,12 +23,12 @@ import { DL_Cpe, DL_Cve, DL_Domain, + DL_Organization, HostScan, Host, Ip, Kev, Location, - DL_Organization, PortScan, PrecertScan, Report, diff --git a/backend/src/models/index.ts b/backend/src/models/index.ts index 3e9a3cad..9e1e2145 100644 --- a/backend/src/models/index.ts +++ b/backend/src/models/index.ts @@ -13,19 +13,19 @@ export * from './webpage'; export * from './api-key'; export * from './saved-search'; export * from './organization-tag'; - +// Mini data lake models export * from './mini_data_lake/cert_scans'; export * from './mini_data_lake/cidrs'; export * from './mini_data_lake/contacts'; export { Cpe as DL_Cpe } from './mini_data_lake/cpes'; export { Cve as DL_Cve } from './mini_data_lake/cves'; export { Domain as DL_Domain } from './mini_data_lake/domains'; +export { Organization as DL_Organization } from './mini_data_lake/organizations'; export * from './mini_data_lake/host_scans'; export * from './mini_data_lake/hosts'; export * from './mini_data_lake/ips'; export * from './mini_data_lake/kevs'; export * from './mini_data_lake/locations'; -export { Organization as DL_Organization } from './mini_data_lake/organizations'; export * from './mini_data_lake/port_scans'; export * from './mini_data_lake/precert_scans'; export * from './mini_data_lake/reports';