@bslau/hmm_prisma_schema 1.11.0 → 1.11.1
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/seed.ts +7 -0
package/package.json
CHANGED
package/prisma/seed.ts
CHANGED
|
@@ -493,6 +493,8 @@ async function main() {
|
|
|
493
493
|
{ name: "POT", label: "Pot" },
|
|
494
494
|
{ name: "CONDITION", label: "Condition" },
|
|
495
495
|
{ name: "OVERRIDDEN", label: "Overridden" },
|
|
496
|
+
{ name: "TORPEDO_REJECTED", label: "Rejected" },
|
|
497
|
+
{ name: "TORPEDO_UPDATED", label: "Data Update" },
|
|
496
498
|
],
|
|
497
499
|
});
|
|
498
500
|
|
|
@@ -530,6 +532,11 @@ async function main() {
|
|
|
530
532
|
label: "Snackbar",
|
|
531
533
|
description: "Appears as snackbar, visible for 5 seconds.",
|
|
532
534
|
},
|
|
535
|
+
{
|
|
536
|
+
name: "POPUP_TORPEDO_REJECT",
|
|
537
|
+
label: "Popup Torpedo Reject",
|
|
538
|
+
description: "Appears as modal dialog, requires user acknowledgement.",
|
|
539
|
+
},
|
|
533
540
|
],
|
|
534
541
|
});
|
|
535
542
|
|