@or-sdk/library-types-v1 7.0.0 → 7.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -11357,7 +11357,7 @@ var GetPackagesQueryFilter = z.object({
11357
11357
  filter: z.object({
11358
11358
  id: z.string().optional(),
11359
11359
  schemaType: z.nativeEnum(import_library_prisma4.PackageSchemaTypeEnum).optional(),
11360
- level: z.array(z.nativeEnum(import_library_prisma4.PackageStatusDetailsLevelEnum)).optional(),
11360
+ level: z.array(z.nativeEnum(import_library_prisma4.PackageStatusDetailsLevelEnum)).or(z.nativeEnum(import_library_prisma4.PackageStatusDetailsLevelEnum)).transform((value) => Array.isArray(value) ? value : [value]).optional(),
11361
11361
  category: z.optional(ArrayOfStringsOrString)
11362
11362
  }).optional()
11363
11363
  });