2023-09-08 17:42:54 +02:00
|
|
|
import { populateExternalTableSchemas } from "./validation"
|
2023-10-18 19:58:19 +02:00
|
|
|
import * as getters from "./getters"
|
2024-10-09 12:58:10 +02:00
|
|
|
import * as create from "./create"
|
2023-10-18 19:58:19 +02:00
|
|
|
import * as updates from "./update"
|
|
|
|
import * as utils from "./utils"
|
2023-10-23 10:49:57 +02:00
|
|
|
import { migrate } from "./migration"
|
2024-04-09 11:43:26 +02:00
|
|
|
import * as sqs from "./internal/sqs"
|
2023-09-08 17:42:54 +02:00
|
|
|
|
2022-10-12 18:02:23 +02:00
|
|
|
export default {
|
2023-06-27 13:24:50 +02:00
|
|
|
populateExternalTableSchemas,
|
2024-10-09 12:58:10 +02:00
|
|
|
...create,
|
2023-10-18 19:58:19 +02:00
|
|
|
...updates,
|
|
|
|
...getters,
|
|
|
|
...utils,
|
2023-10-23 10:49:57 +02:00
|
|
|
migrate,
|
2024-04-09 11:43:26 +02:00
|
|
|
sqs,
|
2022-10-12 18:02:23 +02:00
|
|
|
}
|