mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-03 06:56:15 +00:00
#591 - storage-providers
This commit is contained in:
4
resources/js/types/index.d.ts
vendored
4
resources/js/types/index.d.ts
vendored
@ -37,6 +37,10 @@ export interface Configs {
|
||||
source_control_providers_custom_fields: {
|
||||
[provider: string]: string[];
|
||||
};
|
||||
storage_providers: string[];
|
||||
storage_providers_custom_fields: {
|
||||
[provider: string]: string[];
|
||||
};
|
||||
operating_systems: string[];
|
||||
service_versions: {
|
||||
[service: string]: string[];
|
||||
|
11
resources/js/types/storage-provider.d.ts
vendored
Normal file
11
resources/js/types/storage-provider.d.ts
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
export interface StorageProvider {
|
||||
id: number;
|
||||
project_id?: number;
|
||||
global: boolean;
|
||||
name: string;
|
||||
provider: string;
|
||||
created_at: string;
|
||||
updated_at: string;
|
||||
|
||||
[key: string]: unknown;
|
||||
}
|
Reference in New Issue
Block a user