Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
duranb committed Feb 5, 2025
1 parent 481abaf commit b2a1149
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/types/scheduling.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import type { PartialWith } from './app';
import type { SchedulingError } from './errors';
import type { BaseDefinition, BaseMetadata } from './metadata';
import type { ArgumentsMap } from './parameter';
import type { ValueSchema } from './schema';
import type { SchedulingTagsInsertInput } from './tags';

type SchedulingDefinitionResponse<D> = Omit<D, 'tags'> & {
Expand Down Expand Up @@ -37,7 +36,6 @@ export type SchedulingConditionMetadataVersionDefinition = Pick<
export type SchedulingGoalDefinition = BaseDefinition & {
analyses?: SchedulingGoalAnalysis[];
goal_id: number;
parameter_schema?: ValueSchema;
type: SchedulingDefinitionType;
uploaded_jar_id: number | null;
};
Expand Down Expand Up @@ -115,6 +113,7 @@ export type SchedulingGoalAnalysis = {
analysis_id: number;
goal_definition: SchedulingGoalDefinition;
goal_id: number;
goal_invocation_id: number;
goal_revision: number;
request: { specification_id: number };
satisfied: boolean;
Expand Down

0 comments on commit b2a1149

Please sign in to comment.