Fixed compilation issue

pull/911/head
Tzahi12345 3 years ago
parent d4fa640f0f
commit 3ca296f195

@ -2742,7 +2742,7 @@ components:
error: error:
type: string type: string
schedule: schedule:
type: object $ref: '#/components/schemas/Schedule'
options: options:
type: object type: object
Schedule: Schedule:

@ -2,6 +2,8 @@
/* tslint:disable */ /* tslint:disable */
/* eslint-disable */ /* eslint-disable */
import type { Schedule } from './Schedule';
export type Task = { export type Task = {
key: string; key: string;
title?: string; title?: string;
@ -11,6 +13,6 @@ export type Task = {
confirming: boolean; confirming: boolean;
data: Record<string, any>; data: Record<string, any>;
error: string; error: string;
schedule: Record<string, any>; schedule: Schedule;
options?: Record<string, any>; options?: Record<string, any>;
}; };

Loading…
Cancel
Save