procbay-schema 1.0.44 → 1.0.45

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "procbay-schema",
3
- "version": "1.0.44",
3
+ "version": "1.0.45",
4
4
  "description": "A set of utilities for managing Prisma database schemas, seeding, and maintenance operations for the Procure-to-Pay system",
5
5
  "main": "src/prisma/index.js",
6
6
  "type": "module",
@@ -0,0 +1,5 @@
1
+ -- AlterEnum
2
+ ALTER TYPE "RequestedCatalogueDetailsStatusEnum" ADD VALUE 'AUTO_REJECTED';
3
+
4
+ -- AlterTable
5
+ ALTER TABLE "export_logs" ALTER COLUMN "expires_at" SET DEFAULT NOW() + INTERVAL '7 days';
@@ -2531,6 +2531,7 @@ enum RequestedCatalogueDetailsStatusEnum {
2531
2531
  REQUESTED
2532
2532
  QUOTED
2533
2533
  REJECTED
2534
+ AUTO_REJECTED
2534
2535
  MARK_FOR_LATER
2535
2536
  ACCEPTED
2536
2537
  DECLINED