@bslau/hmm_prisma_schema 1.21.1 → 1.21.3

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/prisma/seed.ts +6 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bslau/hmm_prisma_schema",
3
- "version": "1.21.1",
3
+ "version": "1.21.3",
4
4
  "main": "index.js",
5
5
  "author": "CIPA Development Team",
6
6
  "license": "ISC",
package/prisma/seed.ts CHANGED
@@ -487,6 +487,7 @@ async function main() {
487
487
  { name: "OVERRIDDEN", label: "Overridden" },
488
488
  { name: "TORPEDO_REJECTED", label: "Rejected" },
489
489
  { name: "TORPEDO_UPDATED", label: "Data Update" },
490
+ { name: "TIMER", label: "Timer" },
490
491
  ],
491
492
  });
492
493
 
@@ -529,6 +530,11 @@ async function main() {
529
530
  label: "Popup Torpedo Reject",
530
531
  description: "Appears as modal dialog, requires user acknowledgement.",
531
532
  },
533
+ {
534
+ name: "POPUP_TIMER_SWAP",
535
+ label: "Popup 6-Pit Swap Timer",
536
+ description: "Appears as modal dialog, permits user to extend Timer duration.",
537
+ },
532
538
  ],
533
539
  });
534
540