mirror of
https://github.com/balena-os/balena-supervisor.git
synced 2024-12-19 13:47:54 +00:00
Define the database type of the application
Change-type: patch Signed-off-by: Cameron Diver <cameron@balena.io>
This commit is contained in:
parent
09a8231fde
commit
053e111626
@ -59,3 +59,14 @@ export type TargetApplication = LocalTargetState['apps'][0];
|
||||
export type AppsJsonFormat = Omit<TargetState['local'], 'name'> & {
|
||||
pinDevice?: boolean;
|
||||
};
|
||||
|
||||
export type ApplicationDatabaseFormat = Array<{
|
||||
appId: number;
|
||||
commit: string;
|
||||
name: string;
|
||||
source: string;
|
||||
releaseId: number;
|
||||
services: string;
|
||||
networks: string;
|
||||
volumes: string;
|
||||
}>;
|
||||
|
Loading…
Reference in New Issue
Block a user