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

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,17 @@
1
1
  # @or-sdk/library-types
2
2
 
3
+ ## 7.0.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 1b348561: remove v8-compile-cache-0
8
+
9
+ ## 7.0.1
10
+
11
+ ### Patch Changes
12
+
13
+ - bfa84dd0: fix filter value
14
+
3
15
  ## 7.0.0
4
16
 
5
17
  ### Major Changes
@@ -1278,10 +1278,6 @@ In case this error is unexpected for you, please report it in https://pris.ly/pr
1278
1278
  error: "error",
1279
1279
  pid: "pid"
1280
1280
  };
1281
- exports.Prisma.RelationLoadStrategy = {
1282
- query: "query",
1283
- join: "join"
1284
- };
1285
1281
  exports.Prisma.CreatedByScalarFieldEnum = {
1286
1282
  id: "id",
1287
1283
  accountId: "accountId",
@@ -11427,7 +11423,7 @@ var GetPackagesQueryFilter = z.object({
11427
11423
  filter: z.object({
11428
11424
  id: z.string().optional(),
11429
11425
  schemaType: z.nativeEnum(import_library_prisma4.PackageSchemaTypeEnum).optional(),
11430
- level: z.array(z.nativeEnum(import_library_prisma4.PackageStatusDetailsLevelEnum)).optional(),
11426
+ 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
11427
  category: z.optional(ArrayOfStringsOrString)
11432
11428
  }).optional()
11433
11429
  });