chore: Update all imports to zod/v3

Signed-off-by: Gabriel Dugny <gabriel.dugny@believe.com>
This commit is contained in:
Gabriel Dugny
2026-01-11 21:55:47 +01:00
committed by Fredrik Adelöw
parent 5d8b4cddb9
commit 49171c9de4
111 changed files with 113 additions and 114 deletions
+2 -2
View File
@@ -16,8 +16,8 @@ import { Profile } from 'passport';
import { Request as Request_2 } from 'express';
import { Response as Response_2 } from 'express';
import { Strategy } from 'passport';
import { ZodSchema } from 'zod';
import { ZodTypeDef } from 'zod';
import { ZodSchema } from 'zod/v3';
import { ZodTypeDef } from 'zod/v3';
// @public (undocumented)
export interface AuthOwnershipResolutionExtensionPoint {
@@ -14,7 +14,7 @@
* limitations under the License.
*/
import { z } from 'zod';
import { z } from 'zod/v3';
import { createSignInResolverFactory } from './createSignInResolverFactory';
import { NotAllowedError } from '@backstage/errors';
@@ -14,7 +14,7 @@
* limitations under the License.
*/
import { ZodSchema, ZodTypeDef } from 'zod';
import { ZodSchema, ZodTypeDef } from 'zod/v3';
import { SignInResolver } from '../types';
import zodToJsonSchema from 'zod-to-json-schema';
import { JsonObject } from '@backstage/types';