@a_team/prisma 3.20.2-macos-docker-linux → 3.20.3-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.
@@ -1,5 +1,5 @@
1
1
  {
2
- "name": "prisma-client-e1928f651b717bef62916c73f2d5d76244ac2bf4f3f81017c71d1977f1512558",
2
+ "name": "prisma-client-df04df23e177a05608bd74a93152d5b138de30b3905b6538610cf06459b875c0",
3
3
  "main": "index.js",
4
4
  "types": "index.d.ts",
5
5
  "browser": "index-browser.js",
@@ -465,8 +465,31 @@ type ClearbitEnrichment {
465
465
  data Json?
466
466
  }
467
467
 
468
+ type ApolloEnrichmentCompanyData {
469
+ referenceId String?
470
+ companyName String?
471
+ totalMoneyRaisedAmount Int?
472
+ totalMoneyRaisedCurrency String?
473
+ numberOfEmployees Int?
474
+ yearFounded Int?
475
+ hqLocationCountry String?
476
+ enriched Boolean?
477
+ website String?
478
+ source String?
479
+ industry String?
480
+ description String?
481
+ seoDescription String?
482
+ logoUrl String?
483
+ linkedinUrl String?
484
+ linkedinId String?
485
+ }
486
+
487
+ type ApolloEnrichmentData {
488
+ company ApolloEnrichmentCompanyData?
489
+ }
490
+
468
491
  type ApolloEnrichment {
469
- data Json?
492
+ data ApolloEnrichmentData?
470
493
  }
471
494
 
472
495
  type CompanyEnrichment {
@@ -476,14 +499,14 @@ type CompanyEnrichment {
476
499
  }
477
500
 
478
501
  model Company {
479
- id String @id @default(auto()) @map("_id") @db.ObjectId
502
+ id String @id @default(auto()) @map("_id") @db.ObjectId
480
503
  accounts Account[]
481
504
  name String
482
505
  url String
483
- enrichment CompanyEnrichment
484
- createdBy String? @db.ObjectId
485
- createdAt DateTime? @default(now()) @db.Date
486
- updatedAt DateTime? @updatedAt @db.Date
506
+ enrichment CompanyEnrichment?
507
+ createdBy String? @db.ObjectId
508
+ createdAt DateTime? @default(now()) @db.Date
509
+ updatedAt DateTime? @updatedAt @db.Date
487
510
  requiresDeepEnrichment Boolean?
488
511
 
489
512
  @@index([name, createdAt], map: "name_1_createdAt_-1")
package/package.json CHANGED
@@ -1,7 +1,9 @@
1
1
  {
2
2
  "name": "@a_team/prisma",
3
- "version": "3.20.2-macos-docker-linux",
4
- "os": [],
3
+ "version": "3.20.3-linux",
4
+ "os": [
5
+ "linux"
6
+ ],
5
7
  "cpu": [],
6
8
  "keywords": [],
7
9
  "prisma": {