1
0
Fork 0
mirror of synced 2024-06-02 02:25:17 +12:00

Fixing issue with pro import.

This commit is contained in:
mike12345567 2022-10-27 17:31:39 +01:00
parent b0f3cc7af0
commit d3ed3f34bd
2 changed files with 3 additions and 1 deletions

View file

@ -18,7 +18,7 @@ import fileSystem from "./utilities/fileSystem"
import eventEmitter from "./events"
import * as migrations from "./migrations"
import bullboard from "./automations/bullboard"
import * as pro from "../../../../budibase-pro/packages/pro"
import * as pro from "@budibase/pro"
import api from "./api"
import sdk from "./sdk"
const pino = require("koa-pino-logger")

View file

@ -34,6 +34,8 @@ export interface AppBackupMetadata {
name?: string
createdBy?: string | User
timestamp: string
finishedAt?: string
startedAt?: string
contents?: AppBackupContents
}