@delpa/mt-prisma 0.16.0 → 0.17.0

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.
@@ -187,6 +187,8 @@ exports.Prisma.OrderScalarFieldEnum = {
187
187
  id: 'id',
188
188
  reference: 'reference',
189
189
  shipper_id: 'shipper_id',
190
+ company_id: 'company_id',
191
+ created_by: 'created_by',
190
192
  attachments: 'attachments',
191
193
  status: 'status',
192
194
  created_at: 'created_at',
@@ -522,6 +524,7 @@ exports.Prisma.VehicleEquipmentScalarFieldEnum = {
522
524
 
523
525
  exports.Prisma.TenderScalarFieldEnum = {
524
526
  id: 'id',
527
+ code: 'code',
525
528
  title: 'title',
526
529
  description: 'description',
527
530
  status: 'status',
@@ -574,6 +577,7 @@ exports.Prisma.TenderChatScalarFieldEnum = {
574
577
  user_sends_id: 'user_sends_id',
575
578
  user_receives_id: 'user_receives_id',
576
579
  message: 'message',
580
+ read_at: 'read_at',
577
581
  created_at: 'created_at'
578
582
  };
579
583
 
@@ -613,6 +617,7 @@ exports.Prisma.TenderNotificationScalarFieldEnum = {
613
617
  tender_id: 'tender_id',
614
618
  user_id: 'user_id',
615
619
  group_id: 'group_id',
620
+ supplier_company_id: 'supplier_company_id',
616
621
  whatsapp: 'whatsapp',
617
622
  email: 'email',
618
623
  push: 'push',
@@ -874,11 +879,12 @@ exports.FormStatus = exports.$Enums.FormStatus = {
874
879
  };
875
880
 
876
881
  exports.TenderStatus = exports.$Enums.TenderStatus = {
882
+ DRAFT: 'DRAFT',
877
883
  OPEN: 'OPEN',
878
884
  CLOSED: 'CLOSED',
879
885
  AWARDED: 'AWARDED',
886
+ NOT_AWARDED: 'NOT_AWARDED',
880
887
  CANCELLED: 'CANCELLED',
881
- DRAFT: 'DRAFT',
882
888
  PAUSED: 'PAUSED'
883
889
  };
884
890
 
@@ -899,8 +905,8 @@ exports.TripType = exports.$Enums.TripType = {
899
905
 
900
906
  exports.ApplicationStatus = exports.$Enums.ApplicationStatus = {
901
907
  PENDING: 'PENDING',
902
- APPROVED: 'APPROVED',
903
- REJECTED: 'REJECTED',
908
+ AWARDED: 'AWARDED',
909
+ NOT_AWARDED: 'NOT_AWARDED',
904
910
  WITHDRAWN: 'WITHDRAWN'
905
911
  };
906
912