diff --git a/backend/src/services/app-connection/northflank/index.ts b/backend/src/services/app-connection/northflank/index.ts index eb9a13bf4..94aee2a74 100644 --- a/backend/src/services/app-connection/northflank/index.ts +++ b/backend/src/services/app-connection/northflank/index.ts @@ -3,4 +3,3 @@ export * from "./northflank-connection-fns"; export * from "./northflank-connection-schemas"; export * from "./northflank-connection-service"; export * from "./northflank-connection-types"; - diff --git a/backend/src/services/app-connection/northflank/northflank-connection-enums.ts b/backend/src/services/app-connection/northflank/northflank-connection-enums.ts index 1f1118ab7..0f4f1bd06 100644 --- a/backend/src/services/app-connection/northflank/northflank-connection-enums.ts +++ b/backend/src/services/app-connection/northflank/northflank-connection-enums.ts @@ -1,4 +1,3 @@ export enum NorthflankConnectionMethod { ApiToken = "api-token" } - diff --git a/backend/src/services/app-connection/northflank/northflank-connection-types.ts b/backend/src/services/app-connection/northflank/northflank-connection-types.ts index 4d29d48ed..90ee579ef 100644 --- a/backend/src/services/app-connection/northflank/northflank-connection-types.ts +++ b/backend/src/services/app-connection/northflank/northflank-connection-types.ts @@ -28,4 +28,3 @@ export type TNorthflankProject = { id: string; name: string; }; - diff --git a/backend/src/services/secret-sync/northflank/northflank-sync-fns.ts b/backend/src/services/secret-sync/northflank/northflank-sync-fns.ts index f8fa2ef0b..07a5e2f8c 100644 --- a/backend/src/services/secret-sync/northflank/northflank-sync-fns.ts +++ b/backend/src/services/secret-sync/northflank/northflank-sync-fns.ts @@ -1,18 +1,22 @@ +import { logger } from "@app/lib/logger"; import { TSecretMap, TSecretSyncWithCredentials } from "@app/services/secret-sync/secret-sync-types"; export const NorthflankSyncFns = { syncSecrets: async (secretSync: TSecretSyncWithCredentials, secretMap: TSecretMap): Promise => { // TODO: Will be implemented in the follow up PR + logger.error({ secretSync, secretMap }, "Northflank secret sync not yet implemented"); throw new Error("Northflank secret sync not yet implemented"); }, getSecrets: async (secretSync: TSecretSyncWithCredentials): Promise => { // TODO: Will be implemented in the follow up PR + logger.error({ secretSync }, "Northflank secret retrieval not yet implemented"); throw new Error("Northflank secret retrieval not yet implemented"); }, removeSecrets: async (secretSync: TSecretSyncWithCredentials, secretMap: TSecretMap): Promise => { // TODO: Will be implemented in the follow up PR + logger.error({ secretSync, secretMap }, "Northflank secret removal not yet implemented"); throw new Error("Northflank secret removal not yet implemented"); } }; diff --git a/backend/src/services/secret-sync/northflank/northflank-sync-schemas.ts b/backend/src/services/secret-sync/northflank/northflank-sync-schemas.ts index a9e7fe21d..f88dac34a 100644 --- a/backend/src/services/secret-sync/northflank/northflank-sync-schemas.ts +++ b/backend/src/services/secret-sync/northflank/northflank-sync-schemas.ts @@ -1,6 +1,5 @@ import { z } from "zod"; -import { SecretSyncs } from "@app/lib/api-docs"; import { AppConnection } from "@app/services/app-connection/app-connection-enums"; import { SecretSync } from "@app/services/secret-sync/secret-sync-enums"; import { diff --git a/backend/src/services/secret-sync/northflank/northflank-sync-types.ts b/backend/src/services/secret-sync/northflank/northflank-sync-types.ts index 19c778012..019ae2843 100644 --- a/backend/src/services/secret-sync/northflank/northflank-sync-types.ts +++ b/backend/src/services/secret-sync/northflank/northflank-sync-types.ts @@ -2,7 +2,11 @@ import { z } from "zod"; import { TNorthflankConnection } from "@app/services/app-connection/northflank"; -import { CreateNorthflankSyncSchema, NorthflankSyncListItemSchema, NorthflankSyncSchema } from "./northflank-sync-schemas"; +import { + CreateNorthflankSyncSchema, + NorthflankSyncListItemSchema, + NorthflankSyncSchema +} from "./northflank-sync-schemas"; export type TNorthflankSyncListItem = z.infer; diff --git a/frontend/src/hooks/api/appConnections/types/northflank-connection.ts b/frontend/src/hooks/api/appConnections/types/northflank-connection.ts index 402159117..9e29693e4 100644 --- a/frontend/src/hooks/api/appConnections/types/northflank-connection.ts +++ b/frontend/src/hooks/api/appConnections/types/northflank-connection.ts @@ -11,4 +11,3 @@ export type TNorthflankConnection = TRootAppConnection & { app: AppConnection.No apiToken: string; }; }; -