@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
|
@@ -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
|
});
|