From f50f82b2c77b63b2732c322d9031875e6c13a32c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Burkard?= <22095555+JeromeBu@users.noreply.github.com> Date: Fri, 26 Jul 2024 13:35:07 +0200 Subject: [PATCH] try to fix ci --- api/package.json | 2 +- api/src/lib/index.ts | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/api/package.json b/api/package.json index 839a739f..097fc4d9 100644 --- a/api/package.json +++ b/api/package.json @@ -4,7 +4,7 @@ "description": "The backend of code.gouv.fr/sill", "repository": { "type": "git", - "url": "git://github.com/codegouvfr/sill-api.git" + "url": "git://github.com/codegouvfr/sill.git" }, "main": "dist/lib/index.js", "types": "dist/lib/index.d.ts", diff --git a/api/src/lib/index.ts b/api/src/lib/index.ts index edebceed..a5d192ff 100644 --- a/api/src/lib/index.ts +++ b/api/src/lib/index.ts @@ -5,8 +5,10 @@ import type { inferRouterInputs, inferRouterOutputs } from "@trpc/server"; export type TrpcRouterInput = inferRouterInputs; export type TrpcRouterOutput = inferRouterOutputs; -export type * as ApiTypes from "./ApiTypes"; - export { type User, createAccessTokenToUser } from "../rpc/user"; export { type Language, type LocalizedString, languages } from "../core/ports/GetSoftwareExternalData"; export type { ExternalDataOrigin } from "../core/ports/GetSoftwareExternalData"; + +import type * as ApiTypes from "./ApiTypes"; + +export type { ApiTypes };