@a_team/prisma 3.19.0-macos-docker-linux → 3.20.0-linux
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/dist/client/edge.js +4 -4
- package/dist/client/index.d.ts +177 -0
- package/dist/client/index.js +6 -6
- package/dist/client/{libquery_engine-linux-arm64-openssl-3.0.x.so.node → libquery_engine-linux-musl-openssl-3.0.x.so.node} +0 -0
- package/dist/client/package.json +1 -1
- package/dist/client/schema.prisma +16 -0
- package/package.json +4 -2
|
Binary file
|
package/dist/client/package.json
CHANGED
|
@@ -756,6 +756,21 @@ type MissionRoleRemovalRequest {
|
|
|
756
756
|
createdAt DateTime @default(now()) @db.Date
|
|
757
757
|
}
|
|
758
758
|
|
|
759
|
+
// Used to sync data to Hubspot about the role where
|
|
760
|
+
// our platform / DB is the source of truth
|
|
761
|
+
type MissionRoleCrmData {
|
|
762
|
+
mission_posted_by_tfs_date String?
|
|
763
|
+
role___closed_lost_from_stage String?
|
|
764
|
+
role___closed_lost_reason String?
|
|
765
|
+
role___closed_lost_reason_details String?
|
|
766
|
+
role___closed_won_reason String?
|
|
767
|
+
role___closed_won_reason_details String?
|
|
768
|
+
estimated_engagement_end__churn__date String?
|
|
769
|
+
engagement_ended__churned__date String?
|
|
770
|
+
engagement_ended_reason String?
|
|
771
|
+
engagement_ended__churned__reason_details String?
|
|
772
|
+
}
|
|
773
|
+
|
|
759
774
|
type MissionRole {
|
|
760
775
|
id String @map("_id") @db.ObjectId
|
|
761
776
|
availability MissionRoleAvailability?
|
|
@@ -799,6 +814,7 @@ type MissionRole {
|
|
|
799
814
|
isExpansion Boolean? @default(false)
|
|
800
815
|
hiddenFromUserIds String[] @db.ObjectId
|
|
801
816
|
hubspotDealId String?
|
|
817
|
+
crm MissionRoleCrmData?
|
|
802
818
|
}
|
|
803
819
|
|
|
804
820
|
type MissionsManager {
|