UNPKG

dots-wrapper

Version:

Digital Ocean v2 api wrapper - javascript - typescript - nodejs

11 lines (10 loc) 600 B
import { IContext, IResponse } from '../../types'; import { IGenAiIndexedDataSource } from '..'; export interface IListIndexingJobDataSourcesApiResponse { indexed_data_sources: IGenAiIndexedDataSource[]; } export interface IListIndexingJobDataSourcesApiRequest { indexing_job_uuid: string; } export type ListIndexingJobDataSourcesResponse = IResponse<IListIndexingJobDataSourcesApiResponse>; export declare const listIndexingJobDataSources: ({ httpClient }: IContext) => ({ indexing_job_uuid }: IListIndexingJobDataSourcesApiRequest) => Promise<Readonly<ListIndexingJobDataSourcesResponse>>;