mirror of
https://github.com/grafana/grafana.git
synced 2024-11-21 16:38:03 -06:00
e2a1d59a96
Co-authored-by: Gilles De Mey <gilles.de.mey@gmail.com>
52 lines
1.6 KiB
TypeScript
52 lines
1.6 KiB
TypeScript
/**
|
|
* To generate alerting k8s APIs, run:
|
|
* `npx rtk-query-codegen-openapi ./scripts/generate-alerting-rtk-apis.ts`
|
|
*/
|
|
|
|
import { ConfigFile } from '@rtk-query/codegen-openapi';
|
|
import { accessSync } from 'fs';
|
|
|
|
const schemaFile = '../data/alerting/openapi.json';
|
|
|
|
try {
|
|
// Check we have the OpenAPI before generating alerting RTK APIs,
|
|
// as this is currently a manual process
|
|
accessSync(schemaFile);
|
|
} catch (e) {
|
|
console.error('\nCould not find OpenAPI definition.\n');
|
|
console.error(
|
|
'Please visit /openapi/v3/apis/notifications.alerting.grafana.app/v0alpha1 and save the OpenAPI definition to data/alerting/openapi.json\n'
|
|
);
|
|
throw e;
|
|
}
|
|
|
|
const config: ConfigFile = {
|
|
schemaFile,
|
|
apiFile: '',
|
|
tag: true,
|
|
outputFiles: {
|
|
'../public/app/features/alerting/unified/openapi/timeIntervalsApi.gen.ts': {
|
|
apiFile: '../public/app/features/alerting/unified/api/alertingApi.ts',
|
|
apiImport: 'alertingApi',
|
|
filterEndpoints: [
|
|
'listNamespacedTimeInterval',
|
|
'createNamespacedTimeInterval',
|
|
'deleteNamespacedTimeInterval',
|
|
'patchNamespacedTimeInterval',
|
|
'replaceNamespacedTimeInterval',
|
|
],
|
|
exportName: 'generatedTimeIntervalsApi',
|
|
flattenArg: false,
|
|
},
|
|
'../public/app/features/alerting/unified/openapi/receiversApi.gen.ts': {
|
|
apiFile: '../public/app/features/alerting/unified/api/alertingApi.ts',
|
|
apiImport: 'alertingApi',
|
|
filterEndpoints: ['listNamespacedReceiver'],
|
|
exportName: 'generatedReceiversApi',
|
|
flattenArg: false,
|
|
},
|
|
},
|
|
};
|
|
|
|
export default config;
|