@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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @or-sdk/library-types
2
2
 
3
+ ## 7.0.1
4
+
5
+ ### Patch Changes
6
+
7
+ - bfa84dd0: fix filter value
8
+
3
9
  ## 7.0.0
4
10
 
5
11
  ### Major Changes
@@ -11427,7 +11427,7 @@ var GetPackagesQueryFilter = z.object({
11427
11427
  filter: z.object({
11428
11428
  id: z.string().optional(),
11429
11429
  schemaType: z.nativeEnum(import_library_prisma4.PackageSchemaTypeEnum).optional(),
11430
- level: z.array(z.nativeEnum(import_library_prisma4.PackageStatusDetailsLevelEnum)).optional(),
11430
+ level: z.array(z.nativeEnum(import_library_prisma4.PackageStatusDetailsLevelEnum)).or(z.nativeEnum(import_library_prisma4.PackageStatusDetailsLevelEnum)).transform((value) => Array.isArray(value) ? value : [value]).optional(),
11431
11431
  category: z.optional(ArrayOfStringsOrString)
11432
11432
  }).optional()
11433
11433
  });