import { IExtendId } from '../autoGenerated'; import { ITaskAttributes } from '../task'; import { TaskName } from '../taskName'; export interface IData { /** * authorization code */ code: string; project?: never; /** * 2025-03-17~ */ retryOnReservationNotFound?: boolean; } export interface IAttributes extends ITaskAttributes { name: TaskName.OnAuthorizationCreated; data: IData; } /** * task on authorization created */ export type ITask = IExtendId;