procbay-schema 1.0.45 → 1.0.47
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 +1 -1
- package/prisma/migrations/20251014130148_alter_requested_catalgue_details_table_added_auto_rejected_status/migration.sql +0 -0
- package/prisma/migrations/20251015115406_alter_approval_journey_table_added_cancelled_status/migration.sql +5 -0
- package/prisma/migrations/20251016113917_alter_purchase_order_table_added_revoked_status/migration.sql +5 -0
- package/prisma/schema.prisma +2 -0
- package/src/prisma/edge.js +7 -5
- package/src/prisma/index-browser.js +4 -2
- package/src/prisma/index.d.ts +4 -2
- package/src/prisma/index.js +7 -5
- package/src/prisma/package.json +1 -1
- package/src/prisma/schema.prisma +2 -0
- package/src/prisma/wasm.js +4 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "procbay-schema",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.47",
|
|
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",
|
|
File without changes
|
package/prisma/schema.prisma
CHANGED
|
@@ -811,6 +811,7 @@ enum ApprovalJourneyStatusEnum {
|
|
|
811
811
|
AutoRejected
|
|
812
812
|
Escalated
|
|
813
813
|
NA
|
|
814
|
+
Cancelled
|
|
814
815
|
}
|
|
815
816
|
|
|
816
817
|
model ApprovalJourney {
|
|
@@ -1975,6 +1976,7 @@ enum PurchaseOrderStatus {
|
|
|
1975
1976
|
REQUESTED
|
|
1976
1977
|
REJECTED
|
|
1977
1978
|
COMPLETED
|
|
1979
|
+
REVOKED
|
|
1978
1980
|
}
|
|
1979
1981
|
|
|
1980
1982
|
enum PurchaseOrderTypeEnum {
|