import { Token } from '../../../../../zoo-message-ts/src/api/general/types.ts'; import { GetJobFolderNameResponse } from '../../../../../zoo-message-ts/src/api/jobs/types.ts'; import { UseQueryOptions } from '@tanstack/react-query'; import { FunctionKeyV2 } from '../../constants'; export type GetJobFolderNameInput = Token & { nodeAddress: string; jobId: string; }; export type GetJobFolderNameOutput = GetJobFolderNameResponse; export type GetJobFolderNameQueryKey = [ FunctionKeyV2.GET_JOB_FOLDER_NAME, string ]; export type Options = UseQueryOptions;