mirror of https://github.com/grafana/grafana.git
42 lines
1.1 KiB
TypeScript
42 lines
1.1 KiB
TypeScript
|
import {
|
||
|
generatedAPI,
|
||
|
JobSpec,
|
||
|
JobStatus,
|
||
|
RepositorySpec,
|
||
|
RepositoryStatus,
|
||
|
Job,
|
||
|
JobList,
|
||
|
Repository,
|
||
|
RepositoryList,
|
||
|
} from './endpoints.gen';
|
||
|
import { createOnCacheEntryAdded } from './utils/createOnCacheEntryAdded';
|
||
|
|
||
|
export const provisioningAPI = generatedAPI.enhanceEndpoints({
|
||
|
endpoints: {
|
||
|
listJob(endpoint) {
|
||
|
// Do not include 'watch' in the first query, so we can get the initial list of jobs
|
||
|
// and then start watching for changes
|
||
|
endpoint.query = ({ watch, ...queryArg }) => ({
|
||
|
url: `/jobs`,
|
||
|
params: queryArg,
|
||
|
});
|
||
|
endpoint.onCacheEntryAdded = createOnCacheEntryAdded<JobSpec, JobStatus, Job, JobList>('jobs');
|
||
|
},
|
||
|
listRepository(endpoint) {
|
||
|
endpoint.query = ({ watch, ...queryArg }) => ({
|
||
|
url: `/repositories`,
|
||
|
params: queryArg,
|
||
|
});
|
||
|
endpoint.onCacheEntryAdded = createOnCacheEntryAdded<
|
||
|
RepositorySpec,
|
||
|
RepositoryStatus,
|
||
|
Repository,
|
||
|
RepositoryList
|
||
|
>('repositories');
|
||
|
},
|
||
|
},
|
||
|
});
|
||
|
|
||
|
// eslint-disable-next-line no-barrel-files/no-barrel-files
|
||
|
export * from './endpoints.gen';
|