@juliobrim/prisma-shared 1.0.28 → 1.0.30

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.
@@ -0,0 +1,2 @@
1
+ -- AlterTable
2
+ ALTER TABLE "public"."operator" ADD COLUMN "pin" TEXT;
@@ -0,0 +1,2 @@
1
+ -- AlterEnum
2
+ ALTER TYPE "public"."MachineType" ADD VALUE 'continuous';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juliobrim/prisma-shared",
3
- "version": "1.0.28",
3
+ "version": "1.0.30",
4
4
  "description": "Schema Prisma compartilhado entre projetos Sabcon",
5
5
  "main": "schema.prisma",
6
6
  "files": [
package/schema.prisma CHANGED
@@ -448,6 +448,7 @@ model Operator {
448
448
  profileImgUrl String?
449
449
  stringfiedProfileImgUrl String?
450
450
  operatorRoleId String?
451
+ pin String?
451
452
  isDeleted Boolean @default(false)
452
453
  tenantId String?
453
454
  deviceOperators DeviceOperator[]
@@ -909,6 +910,7 @@ enum NodeType {
909
910
  enum MachineType {
910
911
  sew
911
912
  discrete
913
+ continuous
912
914
  }
913
915
 
914
916
  enum Colors {