@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.
- package/dist/client/edge.js +4 -4
- package/dist/client/index.d.ts +436 -82
- 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 +29 -6
- package/package.json +4 -2
|
Binary file
|
package/dist/client/package.json
CHANGED
|
@@ -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
|
|
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
|
|
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?
|
|
485
|
-
createdAt DateTime?
|
|
486
|
-
updatedAt DateTime?
|
|
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")
|