Release v1.12 (#61)

Co-authored-by: shallegro <shay@allego.ai>
This commit is contained in:
shyallegro
2023-08-02 15:35:38 +03:00
committed by GitHub
parent 37ee7b5c7e
commit aa038f4f82
482 changed files with 8743 additions and 6056 deletions

View File

@@ -51,6 +51,7 @@ import {Overlay} from '@angular/cdk/overlay';
import {ExperimentsComponent} from '@common/experiments/experiments.component';
import {RouterTabNavBarComponent} from '@common/shared/components/router-tab-nav-bar/router-tab-nav-bar.component';
import {MatTabsModule} from '@angular/material/tabs';
import {LabeledFormFieldDirective} from '@common/shared/directive/labeled-form-field.directive';
@NgModule({
@@ -84,6 +85,7 @@ import {MatTabsModule} from '@angular/material/tabs';
RouterTabNavBarComponent,
MatTabsModule,
RouterTabNavBarComponent,
LabeledFormFieldDirective,
],
declarations: [
ExperimentsComponent,

View File

@@ -16,6 +16,7 @@ export interface IExecutionForm {
branch?: string;
entry_point: string;
working_dir: string;
binary: string;
scriptType: sourceTypesEnum;
};
docker_cmd?: string;
@@ -23,7 +24,7 @@ export interface IExecutionForm {
diff: string;
output: {
destination: string;
logLevel?: 'basic' | 'details'; // TODO: should be enum from gencode.
logLevel?: 'INFO' | 'DEBUG' | 'ERROR'; // TODO: should be enum from gencode.
};
queue: Queue;
container?: Container;