chore: gen api client

This commit is contained in:
Nicolas Meienberger 2026-01-29 21:11:58 +01:00
parent 6f07f0e204
commit dd56443ac5
2 changed files with 9 additions and 1 deletions

View file

@ -2988,6 +2988,7 @@ export type GetScheduleNotificationsResponses = {
to: Array<string>;
type: "email";
useTLS: boolean;
fromName?: string;
password?: string;
username?: string;
}
@ -3099,6 +3100,7 @@ export type UpdateScheduleNotificationsResponses = {
to: Array<string>;
type: "email";
useTLS: boolean;
fromName?: string;
password?: string;
username?: string;
}
@ -3675,6 +3677,7 @@ export type ListNotificationDestinationsResponses = {
to: Array<string>;
type: "email";
useTLS: boolean;
fromName?: string;
password?: string;
username?: string;
}
@ -3757,6 +3760,7 @@ export type CreateNotificationDestinationData = {
to: Array<string>;
type: "email";
useTLS: boolean;
fromName?: string;
password?: string;
username?: string;
}
@ -3837,6 +3841,7 @@ export type CreateNotificationDestinationResponses = {
to: Array<string>;
type: "email";
useTLS: boolean;
fromName?: string;
password?: string;
username?: string;
}
@ -3966,6 +3971,7 @@ export type GetNotificationDestinationResponses = {
to: Array<string>;
type: "email";
useTLS: boolean;
fromName?: string;
password?: string;
username?: string;
}
@ -4048,6 +4054,7 @@ export type UpdateNotificationDestinationData = {
to: Array<string>;
type: "email";
useTLS: boolean;
fromName?: string;
password?: string;
username?: string;
}
@ -4138,6 +4145,7 @@ export type UpdateNotificationDestinationResponses = {
to: Array<string>;
type: "email";
useTLS: boolean;
fromName?: string;
password?: string;
username?: string;
}

View file

@ -2,7 +2,7 @@ import { defaultPlugins, defineConfig } from "@hey-api/openapi-ts";
import { config } from "./app/server/core/config.js";
export default defineConfig({
input: `http://${config.serverIp}:4096/api/v1/openapi.json`,
input: `http://${config.serverIp}:3000/api/v1/openapi.json`,
output: {
path: "./app/client/api-client",
postProcess: ["oxfmt"],