@a_team/prisma 3.14.8-macos-docker-linux → 3.15.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 +24 -4
- package/dist/client/index-browser.js +20 -0
- package/dist/client/index.d.ts +1708 -191
- package/dist/client/index.js +26 -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 +27 -0
- package/dist/client/wasm.js +20 -0
- package/package.json +4 -2
|
Binary file
|
package/dist/client/package.json
CHANGED
|
@@ -1308,6 +1308,33 @@ type ProposalTfsPitch {
|
|
|
1308
1308
|
website String?
|
|
1309
1309
|
}
|
|
1310
1310
|
|
|
1311
|
+
enum PlatformRecordedOn {
|
|
1312
|
+
Fathom
|
|
1313
|
+
Gong
|
|
1314
|
+
}
|
|
1315
|
+
|
|
1316
|
+
type CallParticipant {
|
|
1317
|
+
name String
|
|
1318
|
+
email String
|
|
1319
|
+
}
|
|
1320
|
+
|
|
1321
|
+
model RecordedCall {
|
|
1322
|
+
id String @id @default(auto()) @map("_id") @db.ObjectId
|
|
1323
|
+
callMeetingTitle String
|
|
1324
|
+
callUrl String
|
|
1325
|
+
startTime DateTime @db.Date
|
|
1326
|
+
endTime DateTime @db.Date
|
|
1327
|
+
transcriptUrl String
|
|
1328
|
+
participants CallParticipant[]
|
|
1329
|
+
recordedByName String
|
|
1330
|
+
recordedByUrl String
|
|
1331
|
+
platformRecordedOn PlatformRecordedOn
|
|
1332
|
+
createdAt DateTime @default(now()) @db.Date
|
|
1333
|
+
updatedAt DateTime @updatedAt @db.Date
|
|
1334
|
+
|
|
1335
|
+
@@map("recordedCalls")
|
|
1336
|
+
}
|
|
1337
|
+
|
|
1311
1338
|
model RoleCategory {
|
|
1312
1339
|
id String @id @default(auto()) @map("_id") @db.ObjectId
|
|
1313
1340
|
anchors String[]
|
package/dist/client/wasm.js
CHANGED
|
@@ -449,6 +449,20 @@ exports.Prisma.ProposalScalarFieldEnum = {
|
|
|
449
449
|
teamAdvisorId: 'teamAdvisorId'
|
|
450
450
|
};
|
|
451
451
|
|
|
452
|
+
exports.Prisma.RecordedCallScalarFieldEnum = {
|
|
453
|
+
id: 'id',
|
|
454
|
+
callMeetingTitle: 'callMeetingTitle',
|
|
455
|
+
callUrl: 'callUrl',
|
|
456
|
+
startTime: 'startTime',
|
|
457
|
+
endTime: 'endTime',
|
|
458
|
+
transcriptUrl: 'transcriptUrl',
|
|
459
|
+
recordedByName: 'recordedByName',
|
|
460
|
+
recordedByUrl: 'recordedByUrl',
|
|
461
|
+
platformRecordedOn: 'platformRecordedOn',
|
|
462
|
+
createdAt: 'createdAt',
|
|
463
|
+
updatedAt: 'updatedAt'
|
|
464
|
+
};
|
|
465
|
+
|
|
452
466
|
exports.Prisma.RoleCategoryScalarFieldEnum = {
|
|
453
467
|
id: 'id',
|
|
454
468
|
anchors: 'anchors',
|
|
@@ -667,6 +681,11 @@ exports.ProposalTemplate = exports.$Enums.ProposalTemplate = {
|
|
|
667
681
|
sampleV3: 'sampleV3'
|
|
668
682
|
};
|
|
669
683
|
|
|
684
|
+
exports.PlatformRecordedOn = exports.$Enums.PlatformRecordedOn = {
|
|
685
|
+
Fathom: 'Fathom',
|
|
686
|
+
Gong: 'Gong'
|
|
687
|
+
};
|
|
688
|
+
|
|
670
689
|
exports.PresetID = exports.$Enums.PresetID = {
|
|
671
690
|
custom_team: 'custom_team',
|
|
672
691
|
web_platform: 'web_platform',
|
|
@@ -861,6 +880,7 @@ exports.Prisma.ModelName = {
|
|
|
861
880
|
MissionSpec: 'MissionSpec',
|
|
862
881
|
PaymentCycle: 'PaymentCycle',
|
|
863
882
|
Proposal: 'Proposal',
|
|
883
|
+
RecordedCall: 'RecordedCall',
|
|
864
884
|
RoleCategory: 'RoleCategory',
|
|
865
885
|
Solution: 'Solution',
|
|
866
886
|
TalentCategory: 'TalentCategory',
|