mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-02 22:46:16 +00:00
#591 - services
This commit is contained in:
3
resources/js/types/index.d.ts
vendored
3
resources/js/types/index.d.ts
vendored
@ -53,6 +53,9 @@ export interface Configs {
|
||||
service_versions: {
|
||||
[service: string]: string[];
|
||||
};
|
||||
service_types: {
|
||||
[service: string]: string;
|
||||
};
|
||||
colors: string[];
|
||||
webservers: string[];
|
||||
databases: string[];
|
||||
|
16
resources/js/types/service.d.ts
vendored
Normal file
16
resources/js/types/service.d.ts
vendored
Normal file
@ -0,0 +1,16 @@
|
||||
export interface Service {
|
||||
id: number;
|
||||
server_id: number;
|
||||
type: string;
|
||||
type_data: unknown;
|
||||
name: string;
|
||||
version: string;
|
||||
unit: number;
|
||||
is_default: boolean;
|
||||
status: string;
|
||||
status_color: 'gray' | 'success' | 'info' | 'warning' | 'danger';
|
||||
icon: string;
|
||||
created_at: string;
|
||||
updated_at: string;
|
||||
[key: string]: unknown;
|
||||
}
|
Reference in New Issue
Block a user