@danielcok17/prisma-db 1.8.0 → 1.8.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.
@@ -477,6 +477,60 @@ exports.Prisma.CanvasDocumentVersionScalarFieldEnum = {
477
477
  parentVersionId: 'parentVersionId'
478
478
  };
479
479
 
480
+ exports.Prisma.FolderScalarFieldEnum = {
481
+ id: 'id',
482
+ name: 'name',
483
+ description: 'description',
484
+ color: 'color',
485
+ icon: 'icon',
486
+ ownerId: 'ownerId',
487
+ parentId: 'parentId',
488
+ rootFolderId: 'rootFolderId',
489
+ path: 'path',
490
+ depth: 'depth',
491
+ sortOrder: 'sortOrder',
492
+ isArchived: 'isArchived',
493
+ createdAt: 'createdAt',
494
+ updatedAt: 'updatedAt'
495
+ };
496
+
497
+ exports.Prisma.FolderItemScalarFieldEnum = {
498
+ id: 'id',
499
+ folderId: 'folderId',
500
+ entityType: 'entityType',
501
+ entityId: 'entityId',
502
+ displayName: 'displayName',
503
+ notes: 'notes',
504
+ rootFolderId: 'rootFolderId',
505
+ addedById: 'addedById',
506
+ sortOrder: 'sortOrder',
507
+ createdAt: 'createdAt',
508
+ updatedAt: 'updatedAt'
509
+ };
510
+
511
+ exports.Prisma.FolderActivityScalarFieldEnum = {
512
+ id: 'id',
513
+ folderId: 'folderId',
514
+ rootFolderId: 'rootFolderId',
515
+ activityType: 'activityType',
516
+ userId: 'userId',
517
+ content: 'content',
518
+ metadata: 'metadata',
519
+ relatedItemId: 'relatedItemId',
520
+ createdAt: 'createdAt'
521
+ };
522
+
523
+ exports.Prisma.FolderShareScalarFieldEnum = {
524
+ id: 'id',
525
+ folderId: 'folderId',
526
+ userId: 'userId',
527
+ organizationId: 'organizationId',
528
+ permission: 'permission',
529
+ sharedById: 'sharedById',
530
+ sharedAt: 'sharedAt',
531
+ expiresAt: 'expiresAt'
532
+ };
533
+
480
534
  exports.Prisma.SortOrder = {
481
535
  asc: 'asc',
482
536
  desc: 'desc'
@@ -591,6 +645,33 @@ exports.DocumentStatus = exports.$Enums.DocumentStatus = {
591
645
  ARCHIVED: 'ARCHIVED'
592
646
  };
593
647
 
648
+ exports.FolderItemType = exports.$Enums.FolderItemType = {
649
+ CONVERSATION: 'CONVERSATION',
650
+ CANVAS_DOCUMENT: 'CANVAS_DOCUMENT',
651
+ REFERENCE: 'REFERENCE',
652
+ ATTACHMENT: 'ATTACHMENT'
653
+ };
654
+
655
+ exports.FolderActivityType = exports.$Enums.FolderActivityType = {
656
+ FOLDER_CREATED: 'FOLDER_CREATED',
657
+ FOLDER_UPDATED: 'FOLDER_UPDATED',
658
+ FOLDER_MOVED: 'FOLDER_MOVED',
659
+ FOLDER_ARCHIVED: 'FOLDER_ARCHIVED',
660
+ ITEM_ADDED: 'ITEM_ADDED',
661
+ ITEM_REMOVED: 'ITEM_REMOVED',
662
+ ITEM_UPDATED: 'ITEM_UPDATED',
663
+ SHARE_ADDED: 'SHARE_ADDED',
664
+ SHARE_REMOVED: 'SHARE_REMOVED',
665
+ USER_MESSAGE: 'USER_MESSAGE',
666
+ USER_NOTE: 'USER_NOTE'
667
+ };
668
+
669
+ exports.FolderPermission = exports.$Enums.FolderPermission = {
670
+ VIEW: 'VIEW',
671
+ EDIT: 'EDIT',
672
+ ADMIN: 'ADMIN'
673
+ };
674
+
594
675
  exports.Prisma.ModelName = {
595
676
  Account: 'Account',
596
677
  User: 'User',
@@ -616,7 +697,11 @@ exports.Prisma.ModelName = {
616
697
  VerificationToken: 'VerificationToken',
617
698
  PasswordResetToken: 'PasswordResetToken',
618
699
  CanvasDocument: 'CanvasDocument',
619
- CanvasDocumentVersion: 'CanvasDocumentVersion'
700
+ CanvasDocumentVersion: 'CanvasDocumentVersion',
701
+ Folder: 'Folder',
702
+ FolderItem: 'FolderItem',
703
+ FolderActivity: 'FolderActivity',
704
+ FolderShare: 'FolderShare'
620
705
  };
621
706
 
622
707
  /**