@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
|
@@ -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',
|