@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.
@@ -1273,10 +1273,6 @@ In case this error is unexpected for you, please report it in https://pris.ly/pr
1273
1273
  error: "error",
1274
1274
  pid: "pid"
1275
1275
  };
1276
- exports.Prisma.RelationLoadStrategy = {
1277
- query: "query",
1278
- join: "join"
1279
- };
1280
1276
  exports.Prisma.CreatedByScalarFieldEnum = {
1281
1277
  id: "id",
1282
1278
  accountId: "accountId",
@@ -11357,7 +11353,7 @@ var GetPackagesQueryFilter = z.object({
11357
11353
  filter: z.object({
11358
11354
  id: z.string().optional(),
11359
11355
  schemaType: z.nativeEnum(import_library_prisma4.PackageSchemaTypeEnum).optional(),
11360
- level: z.array(z.nativeEnum(import_library_prisma4.PackageStatusDetailsLevelEnum)).optional(),
11356
+ 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
11357
  category: z.optional(ArrayOfStringsOrString)
11362
11358
  }).optional()
11363
11359
  });