2022-10-12 18:02:23 +02:00
|
|
|
import { default as backups } from "./app/backups"
|
|
|
|
import { default as tables } from "./app/tables"
|
2022-10-25 19:19:18 +02:00
|
|
|
import { default as automations } from "./app/automations"
|
2022-12-05 19:24:25 +01:00
|
|
|
import { default as applications } from "./app/applications"
|
2023-01-11 18:57:51 +01:00
|
|
|
import { default as datasources } from "./app/datasources"
|
2023-01-13 20:53:46 +01:00
|
|
|
import { default as queries } from "./app/queries"
|
2023-01-06 13:47:12 +01:00
|
|
|
import { default as rows } from "./app/rows"
|
2023-10-18 17:56:55 +02:00
|
|
|
import { default as links } from "./app/links"
|
2022-12-06 13:22:41 +01:00
|
|
|
import { default as users } from "./users"
|
2023-04-11 17:37:26 +02:00
|
|
|
import { default as plugins } from "./plugins"
|
2023-07-12 16:13:00 +02:00
|
|
|
import * as views from "./app/views"
|
2023-08-21 16:56:40 +02:00
|
|
|
import * as permissions from "./app/permissions"
|
2024-07-11 10:04:25 +02:00
|
|
|
import * as rowActions from "./app/rowActions"
|
2022-10-06 20:10:45 +02:00
|
|
|
|
2022-10-24 11:04:14 +02:00
|
|
|
const sdk = {
|
2022-10-12 18:02:23 +02:00
|
|
|
backups,
|
|
|
|
tables,
|
2022-10-25 19:19:18 +02:00
|
|
|
automations,
|
2022-12-05 19:24:25 +01:00
|
|
|
applications,
|
2023-01-06 13:47:12 +01:00
|
|
|
rows,
|
2022-12-06 13:22:41 +01:00
|
|
|
users,
|
2023-01-11 18:57:51 +01:00
|
|
|
datasources,
|
2023-01-13 20:53:46 +01:00
|
|
|
queries,
|
2023-04-11 17:37:26 +02:00
|
|
|
plugins,
|
2023-07-12 12:48:16 +02:00
|
|
|
views,
|
2023-08-21 16:56:40 +02:00
|
|
|
permissions,
|
2023-10-18 17:56:55 +02:00
|
|
|
links,
|
2024-07-11 10:04:25 +02:00
|
|
|
rowActions,
|
2022-10-06 20:10:45 +02:00
|
|
|
}
|
2022-10-12 18:57:31 +02:00
|
|
|
|
|
|
|
// default export for TS
|
2022-10-24 11:04:14 +02:00
|
|
|
export default sdk
|