From 15279c8be1b1d6c515f35517536b92ccb7d6c5f7 Mon Sep 17 00:00:00 2001 From: Marc Mintel Date: Tue, 3 Mar 2026 12:54:45 +0100 Subject: [PATCH] fix(ci): use explicit registry token instead of GITHUB_TOKEN for docker login --- payload-types.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/payload-types.ts b/payload-types.ts index a4ea02b4..c7704603 100644 --- a/payload-types.ts +++ b/payload-types.ts @@ -87,9 +87,7 @@ export interface Config { products: ProductsSelect | ProductsSelect; pages: PagesSelect | PagesSelect; 'payload-kv': PayloadKvSelect | PayloadKvSelect; - 'payload-locked-documents': - | PayloadLockedDocumentsSelect - | PayloadLockedDocumentsSelect; + 'payload-locked-documents': PayloadLockedDocumentsSelect | PayloadLockedDocumentsSelect; 'payload-preferences': PayloadPreferencesSelect | PayloadPreferencesSelect; 'payload-migrations': PayloadMigrationsSelect | PayloadMigrationsSelect; }; @@ -959,6 +957,7 @@ export interface Auth { [k: string]: unknown; } + declare module 'payload' { export interface GeneratedTypes extends Config {} -} +} \ No newline at end of file