@optimatech88/titomeet-shared-lib 1.0.33 → 1.0.34
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
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
-- AlterEnum
|
|
2
|
+
-- This migration adds more than one value to an enum.
|
|
3
|
+
-- With PostgreSQL versions 11 and earlier, this is not possible
|
|
4
|
+
-- in a single migration. This can be worked around by creating
|
|
5
|
+
-- multiple migrations, each migration adding only one value to
|
|
6
|
+
-- the enum.
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
ALTER TYPE "NotificationType" ADD VALUE 'EVENT_VALIDATION';
|
|
10
|
+
ALTER TYPE "NotificationType" ADD VALUE 'EVENT_REJECTION';
|
|
11
|
+
ALTER TYPE "NotificationType" ADD VALUE 'EVENT_ASSIGNMENT';
|
|
12
|
+
ALTER TYPE "NotificationType" ADD VALUE 'EVENT_ASSIGNMENT_APPROVAL';
|
|
13
|
+
ALTER TYPE "NotificationType" ADD VALUE 'EVENT_ASSIGNMENT_REJECTION';
|
package/prisma/schema.prisma
CHANGED
|
@@ -301,6 +301,11 @@ enum NotificationType {
|
|
|
301
301
|
NEW_MESSAGE
|
|
302
302
|
EVENT_REMINDER
|
|
303
303
|
EVENT_PARTICIPATION_CONFIRMATION
|
|
304
|
+
EVENT_VALIDATION
|
|
305
|
+
EVENT_REJECTION
|
|
306
|
+
EVENT_ASSIGNMENT
|
|
307
|
+
EVENT_ASSIGNMENT_APPROVAL
|
|
308
|
+
EVENT_ASSIGNMENT_REJECTION
|
|
304
309
|
}
|
|
305
310
|
|
|
306
311
|
enum ProviderStatus {
|