@adaptware/eagles-db 0.1.66 → 0.1.67
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/client/edge.js +16 -3
- package/client/index-browser.js +13 -0
- package/client/index.d.ts +2092 -213
- package/client/index.js +16 -3
- package/client/package.json +1 -1
- package/client/schema.prisma +32 -17
- package/client/wasm.js +13 -0
- package/package.json +1 -1
- package/prisma/schema/assignment.prisma +1 -0
- package/prisma/schema/interview.prisma +2 -1
- package/prisma/schema/liveAnalysis.prisma +17 -0
package/client/index.d.ts
CHANGED
|
@@ -153,6 +153,11 @@ export type JobDescriptionData = $Result.DefaultSelection<Prisma.$JobDescription
|
|
|
153
153
|
*
|
|
154
154
|
*/
|
|
155
155
|
export type JobProfile = $Result.DefaultSelection<Prisma.$JobProfilePayload>
|
|
156
|
+
/**
|
|
157
|
+
* Model LiveAnalysis
|
|
158
|
+
*
|
|
159
|
+
*/
|
|
160
|
+
export type LiveAnalysis = $Result.DefaultSelection<Prisma.$LiveAnalysisPayload>
|
|
156
161
|
/**
|
|
157
162
|
* Model Message
|
|
158
163
|
*
|
|
@@ -1033,6 +1038,16 @@ export class PrismaClient<
|
|
|
1033
1038
|
*/
|
|
1034
1039
|
get jobProfile(): Prisma.JobProfileDelegate<ExtArgs, ClientOptions>;
|
|
1035
1040
|
|
|
1041
|
+
/**
|
|
1042
|
+
* `prisma.liveAnalysis`: Exposes CRUD operations for the **LiveAnalysis** model.
|
|
1043
|
+
* Example usage:
|
|
1044
|
+
* ```ts
|
|
1045
|
+
* // Fetch zero or more LiveAnalyses
|
|
1046
|
+
* const liveAnalyses = await prisma.liveAnalysis.findMany()
|
|
1047
|
+
* ```
|
|
1048
|
+
*/
|
|
1049
|
+
get liveAnalysis(): Prisma.LiveAnalysisDelegate<ExtArgs, ClientOptions>;
|
|
1050
|
+
|
|
1036
1051
|
/**
|
|
1037
1052
|
* `prisma.message`: Exposes CRUD operations for the **Message** model.
|
|
1038
1053
|
* Example usage:
|
|
@@ -1619,6 +1634,7 @@ export namespace Prisma {
|
|
|
1619
1634
|
JobDescription: 'JobDescription',
|
|
1620
1635
|
JobDescriptionData: 'JobDescriptionData',
|
|
1621
1636
|
JobProfile: 'JobProfile',
|
|
1637
|
+
LiveAnalysis: 'LiveAnalysis',
|
|
1622
1638
|
Message: 'Message',
|
|
1623
1639
|
OngoingEvaluation: 'OngoingEvaluation',
|
|
1624
1640
|
Organisation: 'Organisation',
|
|
@@ -1649,7 +1665,7 @@ export namespace Prisma {
|
|
|
1649
1665
|
omit: GlobalOmitOptions
|
|
1650
1666
|
}
|
|
1651
1667
|
meta: {
|
|
1652
|
-
modelProps: "candidateQuestionResponse" | "userRole" | "action" | "activityLog" | "application" | "approval" | "assessment" | "assessmentLibrary" | "assessmentQuestion" | "assignment" | "assignmentLibrary" | "budget" | "calendly" | "candidateProfile" | "contactUs" | "evaluationPlan" | "feedback" | "fitCheck" | "google" | "integrationCredential" | "integrationJobSync" | "zohoSyncMapping" | "interview" | "interviewNotes" | "jobDescription" | "jobDescriptionData" | "jobProfile" | "message" | "ongoingEvaluation" | "organisation" | "permission" | "asyncOperation" | "question" | "resume" | "resumeData" | "suggestion" | "transcript" | "user" | "userProfile"
|
|
1668
|
+
modelProps: "candidateQuestionResponse" | "userRole" | "action" | "activityLog" | "application" | "approval" | "assessment" | "assessmentLibrary" | "assessmentQuestion" | "assignment" | "assignmentLibrary" | "budget" | "calendly" | "candidateProfile" | "contactUs" | "evaluationPlan" | "feedback" | "fitCheck" | "google" | "integrationCredential" | "integrationJobSync" | "zohoSyncMapping" | "interview" | "interviewNotes" | "jobDescription" | "jobDescriptionData" | "jobProfile" | "liveAnalysis" | "message" | "ongoingEvaluation" | "organisation" | "permission" | "asyncOperation" | "question" | "resume" | "resumeData" | "suggestion" | "transcript" | "user" | "userProfile"
|
|
1653
1669
|
txIsolationLevel: Prisma.TransactionIsolationLevel
|
|
1654
1670
|
}
|
|
1655
1671
|
model: {
|
|
@@ -3651,6 +3667,80 @@ export namespace Prisma {
|
|
|
3651
3667
|
}
|
|
3652
3668
|
}
|
|
3653
3669
|
}
|
|
3670
|
+
LiveAnalysis: {
|
|
3671
|
+
payload: Prisma.$LiveAnalysisPayload<ExtArgs>
|
|
3672
|
+
fields: Prisma.LiveAnalysisFieldRefs
|
|
3673
|
+
operations: {
|
|
3674
|
+
findUnique: {
|
|
3675
|
+
args: Prisma.LiveAnalysisFindUniqueArgs<ExtArgs>
|
|
3676
|
+
result: $Utils.PayloadToResult<Prisma.$LiveAnalysisPayload> | null
|
|
3677
|
+
}
|
|
3678
|
+
findUniqueOrThrow: {
|
|
3679
|
+
args: Prisma.LiveAnalysisFindUniqueOrThrowArgs<ExtArgs>
|
|
3680
|
+
result: $Utils.PayloadToResult<Prisma.$LiveAnalysisPayload>
|
|
3681
|
+
}
|
|
3682
|
+
findFirst: {
|
|
3683
|
+
args: Prisma.LiveAnalysisFindFirstArgs<ExtArgs>
|
|
3684
|
+
result: $Utils.PayloadToResult<Prisma.$LiveAnalysisPayload> | null
|
|
3685
|
+
}
|
|
3686
|
+
findFirstOrThrow: {
|
|
3687
|
+
args: Prisma.LiveAnalysisFindFirstOrThrowArgs<ExtArgs>
|
|
3688
|
+
result: $Utils.PayloadToResult<Prisma.$LiveAnalysisPayload>
|
|
3689
|
+
}
|
|
3690
|
+
findMany: {
|
|
3691
|
+
args: Prisma.LiveAnalysisFindManyArgs<ExtArgs>
|
|
3692
|
+
result: $Utils.PayloadToResult<Prisma.$LiveAnalysisPayload>[]
|
|
3693
|
+
}
|
|
3694
|
+
create: {
|
|
3695
|
+
args: Prisma.LiveAnalysisCreateArgs<ExtArgs>
|
|
3696
|
+
result: $Utils.PayloadToResult<Prisma.$LiveAnalysisPayload>
|
|
3697
|
+
}
|
|
3698
|
+
createMany: {
|
|
3699
|
+
args: Prisma.LiveAnalysisCreateManyArgs<ExtArgs>
|
|
3700
|
+
result: BatchPayload
|
|
3701
|
+
}
|
|
3702
|
+
createManyAndReturn: {
|
|
3703
|
+
args: Prisma.LiveAnalysisCreateManyAndReturnArgs<ExtArgs>
|
|
3704
|
+
result: $Utils.PayloadToResult<Prisma.$LiveAnalysisPayload>[]
|
|
3705
|
+
}
|
|
3706
|
+
delete: {
|
|
3707
|
+
args: Prisma.LiveAnalysisDeleteArgs<ExtArgs>
|
|
3708
|
+
result: $Utils.PayloadToResult<Prisma.$LiveAnalysisPayload>
|
|
3709
|
+
}
|
|
3710
|
+
update: {
|
|
3711
|
+
args: Prisma.LiveAnalysisUpdateArgs<ExtArgs>
|
|
3712
|
+
result: $Utils.PayloadToResult<Prisma.$LiveAnalysisPayload>
|
|
3713
|
+
}
|
|
3714
|
+
deleteMany: {
|
|
3715
|
+
args: Prisma.LiveAnalysisDeleteManyArgs<ExtArgs>
|
|
3716
|
+
result: BatchPayload
|
|
3717
|
+
}
|
|
3718
|
+
updateMany: {
|
|
3719
|
+
args: Prisma.LiveAnalysisUpdateManyArgs<ExtArgs>
|
|
3720
|
+
result: BatchPayload
|
|
3721
|
+
}
|
|
3722
|
+
updateManyAndReturn: {
|
|
3723
|
+
args: Prisma.LiveAnalysisUpdateManyAndReturnArgs<ExtArgs>
|
|
3724
|
+
result: $Utils.PayloadToResult<Prisma.$LiveAnalysisPayload>[]
|
|
3725
|
+
}
|
|
3726
|
+
upsert: {
|
|
3727
|
+
args: Prisma.LiveAnalysisUpsertArgs<ExtArgs>
|
|
3728
|
+
result: $Utils.PayloadToResult<Prisma.$LiveAnalysisPayload>
|
|
3729
|
+
}
|
|
3730
|
+
aggregate: {
|
|
3731
|
+
args: Prisma.LiveAnalysisAggregateArgs<ExtArgs>
|
|
3732
|
+
result: $Utils.Optional<AggregateLiveAnalysis>
|
|
3733
|
+
}
|
|
3734
|
+
groupBy: {
|
|
3735
|
+
args: Prisma.LiveAnalysisGroupByArgs<ExtArgs>
|
|
3736
|
+
result: $Utils.Optional<LiveAnalysisGroupByOutputType>[]
|
|
3737
|
+
}
|
|
3738
|
+
count: {
|
|
3739
|
+
args: Prisma.LiveAnalysisCountArgs<ExtArgs>
|
|
3740
|
+
result: $Utils.Optional<LiveAnalysisCountAggregateOutputType> | number
|
|
3741
|
+
}
|
|
3742
|
+
}
|
|
3743
|
+
}
|
|
3654
3744
|
Message: {
|
|
3655
3745
|
payload: Prisma.$MessagePayload<ExtArgs>
|
|
3656
3746
|
fields: Prisma.MessageFieldRefs
|
|
@@ -4658,6 +4748,7 @@ export namespace Prisma {
|
|
|
4658
4748
|
jobDescription?: JobDescriptionOmit
|
|
4659
4749
|
jobDescriptionData?: JobDescriptionDataOmit
|
|
4660
4750
|
jobProfile?: JobProfileOmit
|
|
4751
|
+
liveAnalysis?: LiveAnalysisOmit
|
|
4661
4752
|
message?: MessageOmit
|
|
4662
4753
|
ongoingEvaluation?: OngoingEvaluationOmit
|
|
4663
4754
|
organisation?: OrganisationOmit
|
|
@@ -5030,6 +5121,7 @@ export namespace Prisma {
|
|
|
5030
5121
|
suggestions: number
|
|
5031
5122
|
feedback: number
|
|
5032
5123
|
interviewNotes: number
|
|
5124
|
+
liveAnalysis: number
|
|
5033
5125
|
}
|
|
5034
5126
|
|
|
5035
5127
|
export type InterviewCountOutputTypeSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -5037,6 +5129,7 @@ export namespace Prisma {
|
|
|
5037
5129
|
suggestions?: boolean | InterviewCountOutputTypeCountSuggestionsArgs
|
|
5038
5130
|
feedback?: boolean | InterviewCountOutputTypeCountFeedbackArgs
|
|
5039
5131
|
interviewNotes?: boolean | InterviewCountOutputTypeCountInterviewNotesArgs
|
|
5132
|
+
liveAnalysis?: boolean | InterviewCountOutputTypeCountLiveAnalysisArgs
|
|
5040
5133
|
}
|
|
5041
5134
|
|
|
5042
5135
|
// Custom InputTypes
|
|
@@ -5078,6 +5171,13 @@ export namespace Prisma {
|
|
|
5078
5171
|
where?: InterviewNotesWhereInput
|
|
5079
5172
|
}
|
|
5080
5173
|
|
|
5174
|
+
/**
|
|
5175
|
+
* InterviewCountOutputType without action
|
|
5176
|
+
*/
|
|
5177
|
+
export type InterviewCountOutputTypeCountLiveAnalysisArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
5178
|
+
where?: LiveAnalysisWhereInput
|
|
5179
|
+
}
|
|
5180
|
+
|
|
5081
5181
|
|
|
5082
5182
|
/**
|
|
5083
5183
|
* Count Type JobDescriptionCountOutputType
|
|
@@ -16875,6 +16975,7 @@ export namespace Prisma {
|
|
|
16875
16975
|
status: $Enums.AssignmentStatus | null
|
|
16876
16976
|
cancel_reason: string | null
|
|
16877
16977
|
solution_url: string | null
|
|
16978
|
+
zip_url: string | null
|
|
16878
16979
|
scheduled_start_time: Date | null
|
|
16879
16980
|
scheduled_end_time: Date | null
|
|
16880
16981
|
created_at: Date | null
|
|
@@ -16897,6 +16998,7 @@ export namespace Prisma {
|
|
|
16897
16998
|
status: $Enums.AssignmentStatus | null
|
|
16898
16999
|
cancel_reason: string | null
|
|
16899
17000
|
solution_url: string | null
|
|
17001
|
+
zip_url: string | null
|
|
16900
17002
|
scheduled_start_time: Date | null
|
|
16901
17003
|
scheduled_end_time: Date | null
|
|
16902
17004
|
created_at: Date | null
|
|
@@ -16920,6 +17022,7 @@ export namespace Prisma {
|
|
|
16920
17022
|
status: number
|
|
16921
17023
|
cancel_reason: number
|
|
16922
17024
|
solution_url: number
|
|
17025
|
+
zip_url: number
|
|
16923
17026
|
scheduled_start_time: number
|
|
16924
17027
|
scheduled_end_time: number
|
|
16925
17028
|
created_at: number
|
|
@@ -16952,6 +17055,7 @@ export namespace Prisma {
|
|
|
16952
17055
|
status?: true
|
|
16953
17056
|
cancel_reason?: true
|
|
16954
17057
|
solution_url?: true
|
|
17058
|
+
zip_url?: true
|
|
16955
17059
|
scheduled_start_time?: true
|
|
16956
17060
|
scheduled_end_time?: true
|
|
16957
17061
|
created_at?: true
|
|
@@ -16974,6 +17078,7 @@ export namespace Prisma {
|
|
|
16974
17078
|
status?: true
|
|
16975
17079
|
cancel_reason?: true
|
|
16976
17080
|
solution_url?: true
|
|
17081
|
+
zip_url?: true
|
|
16977
17082
|
scheduled_start_time?: true
|
|
16978
17083
|
scheduled_end_time?: true
|
|
16979
17084
|
created_at?: true
|
|
@@ -16997,6 +17102,7 @@ export namespace Prisma {
|
|
|
16997
17102
|
status?: true
|
|
16998
17103
|
cancel_reason?: true
|
|
16999
17104
|
solution_url?: true
|
|
17105
|
+
zip_url?: true
|
|
17000
17106
|
scheduled_start_time?: true
|
|
17001
17107
|
scheduled_end_time?: true
|
|
17002
17108
|
created_at?: true
|
|
@@ -17107,6 +17213,7 @@ export namespace Prisma {
|
|
|
17107
17213
|
status: $Enums.AssignmentStatus
|
|
17108
17214
|
cancel_reason: string | null
|
|
17109
17215
|
solution_url: string | null
|
|
17216
|
+
zip_url: string | null
|
|
17110
17217
|
scheduled_start_time: Date | null
|
|
17111
17218
|
scheduled_end_time: Date | null
|
|
17112
17219
|
created_at: Date
|
|
@@ -17149,6 +17256,7 @@ export namespace Prisma {
|
|
|
17149
17256
|
status?: boolean
|
|
17150
17257
|
cancel_reason?: boolean
|
|
17151
17258
|
solution_url?: boolean
|
|
17259
|
+
zip_url?: boolean
|
|
17152
17260
|
scheduled_start_time?: boolean
|
|
17153
17261
|
scheduled_end_time?: boolean
|
|
17154
17262
|
created_at?: boolean
|
|
@@ -17179,6 +17287,7 @@ export namespace Prisma {
|
|
|
17179
17287
|
status?: boolean
|
|
17180
17288
|
cancel_reason?: boolean
|
|
17181
17289
|
solution_url?: boolean
|
|
17290
|
+
zip_url?: boolean
|
|
17182
17291
|
scheduled_start_time?: boolean
|
|
17183
17292
|
scheduled_end_time?: boolean
|
|
17184
17293
|
created_at?: boolean
|
|
@@ -17209,6 +17318,7 @@ export namespace Prisma {
|
|
|
17209
17318
|
status?: boolean
|
|
17210
17319
|
cancel_reason?: boolean
|
|
17211
17320
|
solution_url?: boolean
|
|
17321
|
+
zip_url?: boolean
|
|
17212
17322
|
scheduled_start_time?: boolean
|
|
17213
17323
|
scheduled_end_time?: boolean
|
|
17214
17324
|
created_at?: boolean
|
|
@@ -17239,6 +17349,7 @@ export namespace Prisma {
|
|
|
17239
17349
|
status?: boolean
|
|
17240
17350
|
cancel_reason?: boolean
|
|
17241
17351
|
solution_url?: boolean
|
|
17352
|
+
zip_url?: boolean
|
|
17242
17353
|
scheduled_start_time?: boolean
|
|
17243
17354
|
scheduled_end_time?: boolean
|
|
17244
17355
|
created_at?: boolean
|
|
@@ -17248,7 +17359,7 @@ export namespace Prisma {
|
|
|
17248
17359
|
is_active?: boolean
|
|
17249
17360
|
}
|
|
17250
17361
|
|
|
17251
|
-
export type AssignmentOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "candidate_id" | "assignment_library_id" | "reviewer_id" | "application_id" | "job_description_id" | "organisation_id" | "ongoing_evaluation_id" | "overallScore" | "feedback" | "status" | "cancel_reason" | "solution_url" | "scheduled_start_time" | "scheduled_end_time" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active", ExtArgs["result"]["assignment"]>
|
|
17362
|
+
export type AssignmentOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "candidate_id" | "assignment_library_id" | "reviewer_id" | "application_id" | "job_description_id" | "organisation_id" | "ongoing_evaluation_id" | "overallScore" | "feedback" | "status" | "cancel_reason" | "solution_url" | "zip_url" | "scheduled_start_time" | "scheduled_end_time" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active", ExtArgs["result"]["assignment"]>
|
|
17252
17363
|
export type AssignmentInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
17253
17364
|
candidate?: boolean | Assignment$candidateArgs<ExtArgs>
|
|
17254
17365
|
assignment_library?: boolean | AssignmentLibraryDefaultArgs<ExtArgs>
|
|
@@ -17302,6 +17413,7 @@ export namespace Prisma {
|
|
|
17302
17413
|
status: $Enums.AssignmentStatus
|
|
17303
17414
|
cancel_reason: string | null
|
|
17304
17415
|
solution_url: string | null
|
|
17416
|
+
zip_url: string | null
|
|
17305
17417
|
scheduled_start_time: Date | null
|
|
17306
17418
|
scheduled_end_time: Date | null
|
|
17307
17419
|
created_at: Date
|
|
@@ -17752,6 +17864,7 @@ export namespace Prisma {
|
|
|
17752
17864
|
readonly status: FieldRef<"Assignment", 'AssignmentStatus'>
|
|
17753
17865
|
readonly cancel_reason: FieldRef<"Assignment", 'String'>
|
|
17754
17866
|
readonly solution_url: FieldRef<"Assignment", 'String'>
|
|
17867
|
+
readonly zip_url: FieldRef<"Assignment", 'String'>
|
|
17755
17868
|
readonly scheduled_start_time: FieldRef<"Assignment", 'DateTime'>
|
|
17756
17869
|
readonly scheduled_end_time: FieldRef<"Assignment", 'DateTime'>
|
|
17757
17870
|
readonly created_at: FieldRef<"Assignment", 'DateTime'>
|
|
@@ -33337,6 +33450,7 @@ export namespace Prisma {
|
|
|
33337
33450
|
suggestions?: boolean | Interview$suggestionsArgs<ExtArgs>
|
|
33338
33451
|
feedback?: boolean | Interview$feedbackArgs<ExtArgs>
|
|
33339
33452
|
interviewNotes?: boolean | Interview$interviewNotesArgs<ExtArgs>
|
|
33453
|
+
liveAnalysis?: boolean | Interview$liveAnalysisArgs<ExtArgs>
|
|
33340
33454
|
_count?: boolean | InterviewCountOutputTypeDefaultArgs<ExtArgs>
|
|
33341
33455
|
}, ExtArgs["result"]["interview"]>
|
|
33342
33456
|
|
|
@@ -33473,6 +33587,7 @@ export namespace Prisma {
|
|
|
33473
33587
|
suggestions?: boolean | Interview$suggestionsArgs<ExtArgs>
|
|
33474
33588
|
feedback?: boolean | Interview$feedbackArgs<ExtArgs>
|
|
33475
33589
|
interviewNotes?: boolean | Interview$interviewNotesArgs<ExtArgs>
|
|
33590
|
+
liveAnalysis?: boolean | Interview$liveAnalysisArgs<ExtArgs>
|
|
33476
33591
|
_count?: boolean | InterviewCountOutputTypeDefaultArgs<ExtArgs>
|
|
33477
33592
|
}
|
|
33478
33593
|
export type InterviewIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -33509,6 +33624,7 @@ export namespace Prisma {
|
|
|
33509
33624
|
suggestions: Prisma.$SuggestionPayload<ExtArgs>[]
|
|
33510
33625
|
feedback: Prisma.$FeedbackPayload<ExtArgs>[]
|
|
33511
33626
|
interviewNotes: Prisma.$InterviewNotesPayload<ExtArgs>[]
|
|
33627
|
+
liveAnalysis: Prisma.$LiveAnalysisPayload<ExtArgs>[]
|
|
33512
33628
|
}
|
|
33513
33629
|
scalars: $Extensions.GetPayloadResult<{
|
|
33514
33630
|
id: string
|
|
@@ -33964,6 +34080,7 @@ export namespace Prisma {
|
|
|
33964
34080
|
suggestions<T extends Interview$suggestionsArgs<ExtArgs> = {}>(args?: Subset<T, Interview$suggestionsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$SuggestionPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
33965
34081
|
feedback<T extends Interview$feedbackArgs<ExtArgs> = {}>(args?: Subset<T, Interview$feedbackArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$FeedbackPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
33966
34082
|
interviewNotes<T extends Interview$interviewNotesArgs<ExtArgs> = {}>(args?: Subset<T, Interview$interviewNotesArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$InterviewNotesPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
34083
|
+
liveAnalysis<T extends Interview$liveAnalysisArgs<ExtArgs> = {}>(args?: Subset<T, Interview$liveAnalysisArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$LiveAnalysisPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
33967
34084
|
/**
|
|
33968
34085
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
33969
34086
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -34611,6 +34728,30 @@ export namespace Prisma {
|
|
|
34611
34728
|
distinct?: InterviewNotesScalarFieldEnum | InterviewNotesScalarFieldEnum[]
|
|
34612
34729
|
}
|
|
34613
34730
|
|
|
34731
|
+
/**
|
|
34732
|
+
* Interview.liveAnalysis
|
|
34733
|
+
*/
|
|
34734
|
+
export type Interview$liveAnalysisArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
34735
|
+
/**
|
|
34736
|
+
* Select specific fields to fetch from the LiveAnalysis
|
|
34737
|
+
*/
|
|
34738
|
+
select?: LiveAnalysisSelect<ExtArgs> | null
|
|
34739
|
+
/**
|
|
34740
|
+
* Omit specific fields from the LiveAnalysis
|
|
34741
|
+
*/
|
|
34742
|
+
omit?: LiveAnalysisOmit<ExtArgs> | null
|
|
34743
|
+
/**
|
|
34744
|
+
* Choose, which related nodes to fetch as well
|
|
34745
|
+
*/
|
|
34746
|
+
include?: LiveAnalysisInclude<ExtArgs> | null
|
|
34747
|
+
where?: LiveAnalysisWhereInput
|
|
34748
|
+
orderBy?: LiveAnalysisOrderByWithRelationInput | LiveAnalysisOrderByWithRelationInput[]
|
|
34749
|
+
cursor?: LiveAnalysisWhereUniqueInput
|
|
34750
|
+
take?: number
|
|
34751
|
+
skip?: number
|
|
34752
|
+
distinct?: LiveAnalysisScalarFieldEnum | LiveAnalysisScalarFieldEnum[]
|
|
34753
|
+
}
|
|
34754
|
+
|
|
34614
34755
|
/**
|
|
34615
34756
|
* Interview without action
|
|
34616
34757
|
*/
|
|
@@ -39921,20 +40062,18 @@ export namespace Prisma {
|
|
|
39921
40062
|
|
|
39922
40063
|
|
|
39923
40064
|
/**
|
|
39924
|
-
* Model
|
|
40065
|
+
* Model LiveAnalysis
|
|
39925
40066
|
*/
|
|
39926
40067
|
|
|
39927
|
-
export type
|
|
39928
|
-
_count:
|
|
39929
|
-
_min:
|
|
39930
|
-
_max:
|
|
40068
|
+
export type AggregateLiveAnalysis = {
|
|
40069
|
+
_count: LiveAnalysisCountAggregateOutputType | null
|
|
40070
|
+
_min: LiveAnalysisMinAggregateOutputType | null
|
|
40071
|
+
_max: LiveAnalysisMaxAggregateOutputType | null
|
|
39931
40072
|
}
|
|
39932
40073
|
|
|
39933
|
-
export type
|
|
40074
|
+
export type LiveAnalysisMinAggregateOutputType = {
|
|
39934
40075
|
id: string | null
|
|
39935
|
-
|
|
39936
|
-
receiver_id: string | null
|
|
39937
|
-
message: string | null
|
|
40076
|
+
interview_id: string | null
|
|
39938
40077
|
created_at: Date | null
|
|
39939
40078
|
updated_at: Date | null
|
|
39940
40079
|
created_by: string | null
|
|
@@ -39942,11 +40081,9 @@ export namespace Prisma {
|
|
|
39942
40081
|
is_active: boolean | null
|
|
39943
40082
|
}
|
|
39944
40083
|
|
|
39945
|
-
export type
|
|
40084
|
+
export type LiveAnalysisMaxAggregateOutputType = {
|
|
39946
40085
|
id: string | null
|
|
39947
|
-
|
|
39948
|
-
receiver_id: string | null
|
|
39949
|
-
message: string | null
|
|
40086
|
+
interview_id: string | null
|
|
39950
40087
|
created_at: Date | null
|
|
39951
40088
|
updated_at: Date | null
|
|
39952
40089
|
created_by: string | null
|
|
@@ -39954,11 +40091,10 @@ export namespace Prisma {
|
|
|
39954
40091
|
is_active: boolean | null
|
|
39955
40092
|
}
|
|
39956
40093
|
|
|
39957
|
-
export type
|
|
40094
|
+
export type LiveAnalysisCountAggregateOutputType = {
|
|
39958
40095
|
id: number
|
|
39959
|
-
|
|
39960
|
-
|
|
39961
|
-
message: number
|
|
40096
|
+
interview_id: number
|
|
40097
|
+
analysis: number
|
|
39962
40098
|
created_at: number
|
|
39963
40099
|
updated_at: number
|
|
39964
40100
|
created_by: number
|
|
@@ -39968,11 +40104,9 @@ export namespace Prisma {
|
|
|
39968
40104
|
}
|
|
39969
40105
|
|
|
39970
40106
|
|
|
39971
|
-
export type
|
|
40107
|
+
export type LiveAnalysisMinAggregateInputType = {
|
|
39972
40108
|
id?: true
|
|
39973
|
-
|
|
39974
|
-
receiver_id?: true
|
|
39975
|
-
message?: true
|
|
40109
|
+
interview_id?: true
|
|
39976
40110
|
created_at?: true
|
|
39977
40111
|
updated_at?: true
|
|
39978
40112
|
created_by?: true
|
|
@@ -39980,11 +40114,9 @@ export namespace Prisma {
|
|
|
39980
40114
|
is_active?: true
|
|
39981
40115
|
}
|
|
39982
40116
|
|
|
39983
|
-
export type
|
|
40117
|
+
export type LiveAnalysisMaxAggregateInputType = {
|
|
39984
40118
|
id?: true
|
|
39985
|
-
|
|
39986
|
-
receiver_id?: true
|
|
39987
|
-
message?: true
|
|
40119
|
+
interview_id?: true
|
|
39988
40120
|
created_at?: true
|
|
39989
40121
|
updated_at?: true
|
|
39990
40122
|
created_by?: true
|
|
@@ -39992,11 +40124,10 @@ export namespace Prisma {
|
|
|
39992
40124
|
is_active?: true
|
|
39993
40125
|
}
|
|
39994
40126
|
|
|
39995
|
-
export type
|
|
40127
|
+
export type LiveAnalysisCountAggregateInputType = {
|
|
39996
40128
|
id?: true
|
|
39997
|
-
|
|
39998
|
-
|
|
39999
|
-
message?: true
|
|
40129
|
+
interview_id?: true
|
|
40130
|
+
analysis?: true
|
|
40000
40131
|
created_at?: true
|
|
40001
40132
|
updated_at?: true
|
|
40002
40133
|
created_by?: true
|
|
@@ -40005,154 +40136,146 @@ export namespace Prisma {
|
|
|
40005
40136
|
_all?: true
|
|
40006
40137
|
}
|
|
40007
40138
|
|
|
40008
|
-
export type
|
|
40139
|
+
export type LiveAnalysisAggregateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
40009
40140
|
/**
|
|
40010
|
-
* Filter which
|
|
40141
|
+
* Filter which LiveAnalysis to aggregate.
|
|
40011
40142
|
*/
|
|
40012
|
-
where?:
|
|
40143
|
+
where?: LiveAnalysisWhereInput
|
|
40013
40144
|
/**
|
|
40014
40145
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
40015
40146
|
*
|
|
40016
|
-
* Determine the order of
|
|
40147
|
+
* Determine the order of LiveAnalyses to fetch.
|
|
40017
40148
|
*/
|
|
40018
|
-
orderBy?:
|
|
40149
|
+
orderBy?: LiveAnalysisOrderByWithRelationInput | LiveAnalysisOrderByWithRelationInput[]
|
|
40019
40150
|
/**
|
|
40020
40151
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
40021
40152
|
*
|
|
40022
40153
|
* Sets the start position
|
|
40023
40154
|
*/
|
|
40024
|
-
cursor?:
|
|
40155
|
+
cursor?: LiveAnalysisWhereUniqueInput
|
|
40025
40156
|
/**
|
|
40026
40157
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
40027
40158
|
*
|
|
40028
|
-
* Take `±n`
|
|
40159
|
+
* Take `±n` LiveAnalyses from the position of the cursor.
|
|
40029
40160
|
*/
|
|
40030
40161
|
take?: number
|
|
40031
40162
|
/**
|
|
40032
40163
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
40033
40164
|
*
|
|
40034
|
-
* Skip the first `n`
|
|
40165
|
+
* Skip the first `n` LiveAnalyses.
|
|
40035
40166
|
*/
|
|
40036
40167
|
skip?: number
|
|
40037
40168
|
/**
|
|
40038
40169
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
40039
40170
|
*
|
|
40040
|
-
* Count returned
|
|
40171
|
+
* Count returned LiveAnalyses
|
|
40041
40172
|
**/
|
|
40042
|
-
_count?: true |
|
|
40173
|
+
_count?: true | LiveAnalysisCountAggregateInputType
|
|
40043
40174
|
/**
|
|
40044
40175
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
40045
40176
|
*
|
|
40046
40177
|
* Select which fields to find the minimum value
|
|
40047
40178
|
**/
|
|
40048
|
-
_min?:
|
|
40179
|
+
_min?: LiveAnalysisMinAggregateInputType
|
|
40049
40180
|
/**
|
|
40050
40181
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
40051
40182
|
*
|
|
40052
40183
|
* Select which fields to find the maximum value
|
|
40053
40184
|
**/
|
|
40054
|
-
_max?:
|
|
40185
|
+
_max?: LiveAnalysisMaxAggregateInputType
|
|
40055
40186
|
}
|
|
40056
40187
|
|
|
40057
|
-
export type
|
|
40058
|
-
[P in keyof T & keyof
|
|
40188
|
+
export type GetLiveAnalysisAggregateType<T extends LiveAnalysisAggregateArgs> = {
|
|
40189
|
+
[P in keyof T & keyof AggregateLiveAnalysis]: P extends '_count' | 'count'
|
|
40059
40190
|
? T[P] extends true
|
|
40060
40191
|
? number
|
|
40061
|
-
: GetScalarType<T[P],
|
|
40062
|
-
: GetScalarType<T[P],
|
|
40192
|
+
: GetScalarType<T[P], AggregateLiveAnalysis[P]>
|
|
40193
|
+
: GetScalarType<T[P], AggregateLiveAnalysis[P]>
|
|
40063
40194
|
}
|
|
40064
40195
|
|
|
40065
40196
|
|
|
40066
40197
|
|
|
40067
40198
|
|
|
40068
|
-
export type
|
|
40069
|
-
where?:
|
|
40070
|
-
orderBy?:
|
|
40071
|
-
by:
|
|
40072
|
-
having?:
|
|
40199
|
+
export type LiveAnalysisGroupByArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
40200
|
+
where?: LiveAnalysisWhereInput
|
|
40201
|
+
orderBy?: LiveAnalysisOrderByWithAggregationInput | LiveAnalysisOrderByWithAggregationInput[]
|
|
40202
|
+
by: LiveAnalysisScalarFieldEnum[] | LiveAnalysisScalarFieldEnum
|
|
40203
|
+
having?: LiveAnalysisScalarWhereWithAggregatesInput
|
|
40073
40204
|
take?: number
|
|
40074
40205
|
skip?: number
|
|
40075
|
-
_count?:
|
|
40076
|
-
_min?:
|
|
40077
|
-
_max?:
|
|
40206
|
+
_count?: LiveAnalysisCountAggregateInputType | true
|
|
40207
|
+
_min?: LiveAnalysisMinAggregateInputType
|
|
40208
|
+
_max?: LiveAnalysisMaxAggregateInputType
|
|
40078
40209
|
}
|
|
40079
40210
|
|
|
40080
|
-
export type
|
|
40211
|
+
export type LiveAnalysisGroupByOutputType = {
|
|
40081
40212
|
id: string
|
|
40082
|
-
|
|
40083
|
-
|
|
40084
|
-
message: string
|
|
40213
|
+
interview_id: string
|
|
40214
|
+
analysis: JsonValue
|
|
40085
40215
|
created_at: Date
|
|
40086
40216
|
updated_at: Date
|
|
40087
40217
|
created_by: string
|
|
40088
40218
|
updated_by: string
|
|
40089
40219
|
is_active: boolean
|
|
40090
|
-
_count:
|
|
40091
|
-
_min:
|
|
40092
|
-
_max:
|
|
40220
|
+
_count: LiveAnalysisCountAggregateOutputType | null
|
|
40221
|
+
_min: LiveAnalysisMinAggregateOutputType | null
|
|
40222
|
+
_max: LiveAnalysisMaxAggregateOutputType | null
|
|
40093
40223
|
}
|
|
40094
40224
|
|
|
40095
|
-
type
|
|
40225
|
+
type GetLiveAnalysisGroupByPayload<T extends LiveAnalysisGroupByArgs> = Prisma.PrismaPromise<
|
|
40096
40226
|
Array<
|
|
40097
|
-
PickEnumerable<
|
|
40227
|
+
PickEnumerable<LiveAnalysisGroupByOutputType, T['by']> &
|
|
40098
40228
|
{
|
|
40099
|
-
[P in ((keyof T) & (keyof
|
|
40229
|
+
[P in ((keyof T) & (keyof LiveAnalysisGroupByOutputType))]: P extends '_count'
|
|
40100
40230
|
? T[P] extends boolean
|
|
40101
40231
|
? number
|
|
40102
|
-
: GetScalarType<T[P],
|
|
40103
|
-
: GetScalarType<T[P],
|
|
40232
|
+
: GetScalarType<T[P], LiveAnalysisGroupByOutputType[P]>
|
|
40233
|
+
: GetScalarType<T[P], LiveAnalysisGroupByOutputType[P]>
|
|
40104
40234
|
}
|
|
40105
40235
|
>
|
|
40106
40236
|
>
|
|
40107
40237
|
|
|
40108
40238
|
|
|
40109
|
-
export type
|
|
40239
|
+
export type LiveAnalysisSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
40110
40240
|
id?: boolean
|
|
40111
|
-
|
|
40112
|
-
|
|
40113
|
-
message?: boolean
|
|
40241
|
+
interview_id?: boolean
|
|
40242
|
+
analysis?: boolean
|
|
40114
40243
|
created_at?: boolean
|
|
40115
40244
|
updated_at?: boolean
|
|
40116
40245
|
created_by?: boolean
|
|
40117
40246
|
updated_by?: boolean
|
|
40118
40247
|
is_active?: boolean
|
|
40119
|
-
|
|
40120
|
-
|
|
40121
|
-
}, ExtArgs["result"]["message"]>
|
|
40248
|
+
interview?: boolean | InterviewDefaultArgs<ExtArgs>
|
|
40249
|
+
}, ExtArgs["result"]["liveAnalysis"]>
|
|
40122
40250
|
|
|
40123
|
-
export type
|
|
40251
|
+
export type LiveAnalysisSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
40124
40252
|
id?: boolean
|
|
40125
|
-
|
|
40126
|
-
|
|
40127
|
-
message?: boolean
|
|
40253
|
+
interview_id?: boolean
|
|
40254
|
+
analysis?: boolean
|
|
40128
40255
|
created_at?: boolean
|
|
40129
40256
|
updated_at?: boolean
|
|
40130
40257
|
created_by?: boolean
|
|
40131
40258
|
updated_by?: boolean
|
|
40132
40259
|
is_active?: boolean
|
|
40133
|
-
|
|
40134
|
-
|
|
40135
|
-
}, ExtArgs["result"]["message"]>
|
|
40260
|
+
interview?: boolean | InterviewDefaultArgs<ExtArgs>
|
|
40261
|
+
}, ExtArgs["result"]["liveAnalysis"]>
|
|
40136
40262
|
|
|
40137
|
-
export type
|
|
40263
|
+
export type LiveAnalysisSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
40138
40264
|
id?: boolean
|
|
40139
|
-
|
|
40140
|
-
|
|
40141
|
-
message?: boolean
|
|
40265
|
+
interview_id?: boolean
|
|
40266
|
+
analysis?: boolean
|
|
40142
40267
|
created_at?: boolean
|
|
40143
40268
|
updated_at?: boolean
|
|
40144
40269
|
created_by?: boolean
|
|
40145
40270
|
updated_by?: boolean
|
|
40146
40271
|
is_active?: boolean
|
|
40147
|
-
|
|
40148
|
-
|
|
40149
|
-
}, ExtArgs["result"]["message"]>
|
|
40272
|
+
interview?: boolean | InterviewDefaultArgs<ExtArgs>
|
|
40273
|
+
}, ExtArgs["result"]["liveAnalysis"]>
|
|
40150
40274
|
|
|
40151
|
-
export type
|
|
40275
|
+
export type LiveAnalysisSelectScalar = {
|
|
40152
40276
|
id?: boolean
|
|
40153
|
-
|
|
40154
|
-
|
|
40155
|
-
message?: boolean
|
|
40277
|
+
interview_id?: boolean
|
|
40278
|
+
analysis?: boolean
|
|
40156
40279
|
created_at?: boolean
|
|
40157
40280
|
updated_at?: boolean
|
|
40158
40281
|
created_by?: boolean
|
|
@@ -40160,166 +40283,161 @@ export namespace Prisma {
|
|
|
40160
40283
|
is_active?: boolean
|
|
40161
40284
|
}
|
|
40162
40285
|
|
|
40163
|
-
export type
|
|
40164
|
-
export type
|
|
40165
|
-
|
|
40166
|
-
receiver?: boolean | UserDefaultArgs<ExtArgs>
|
|
40286
|
+
export type LiveAnalysisOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "interview_id" | "analysis" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active", ExtArgs["result"]["liveAnalysis"]>
|
|
40287
|
+
export type LiveAnalysisInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
40288
|
+
interview?: boolean | InterviewDefaultArgs<ExtArgs>
|
|
40167
40289
|
}
|
|
40168
|
-
export type
|
|
40169
|
-
|
|
40170
|
-
receiver?: boolean | UserDefaultArgs<ExtArgs>
|
|
40290
|
+
export type LiveAnalysisIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
40291
|
+
interview?: boolean | InterviewDefaultArgs<ExtArgs>
|
|
40171
40292
|
}
|
|
40172
|
-
export type
|
|
40173
|
-
|
|
40174
|
-
receiver?: boolean | UserDefaultArgs<ExtArgs>
|
|
40293
|
+
export type LiveAnalysisIncludeUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
40294
|
+
interview?: boolean | InterviewDefaultArgs<ExtArgs>
|
|
40175
40295
|
}
|
|
40176
40296
|
|
|
40177
|
-
export type $
|
|
40178
|
-
name: "
|
|
40297
|
+
export type $LiveAnalysisPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
40298
|
+
name: "LiveAnalysis"
|
|
40179
40299
|
objects: {
|
|
40180
|
-
|
|
40181
|
-
receiver: Prisma.$UserPayload<ExtArgs>
|
|
40300
|
+
interview: Prisma.$InterviewPayload<ExtArgs>
|
|
40182
40301
|
}
|
|
40183
40302
|
scalars: $Extensions.GetPayloadResult<{
|
|
40184
40303
|
id: string
|
|
40185
|
-
|
|
40186
|
-
|
|
40187
|
-
message: string
|
|
40304
|
+
interview_id: string
|
|
40305
|
+
analysis: Prisma.JsonValue
|
|
40188
40306
|
created_at: Date
|
|
40189
40307
|
updated_at: Date
|
|
40190
40308
|
created_by: string
|
|
40191
40309
|
updated_by: string
|
|
40192
40310
|
is_active: boolean
|
|
40193
|
-
}, ExtArgs["result"]["
|
|
40311
|
+
}, ExtArgs["result"]["liveAnalysis"]>
|
|
40194
40312
|
composites: {}
|
|
40195
40313
|
}
|
|
40196
40314
|
|
|
40197
|
-
type
|
|
40315
|
+
type LiveAnalysisGetPayload<S extends boolean | null | undefined | LiveAnalysisDefaultArgs> = $Result.GetResult<Prisma.$LiveAnalysisPayload, S>
|
|
40198
40316
|
|
|
40199
|
-
type
|
|
40200
|
-
Omit<
|
|
40201
|
-
select?:
|
|
40317
|
+
type LiveAnalysisCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
40318
|
+
Omit<LiveAnalysisFindManyArgs, 'select' | 'include' | 'distinct' | 'omit'> & {
|
|
40319
|
+
select?: LiveAnalysisCountAggregateInputType | true
|
|
40202
40320
|
}
|
|
40203
40321
|
|
|
40204
|
-
export interface
|
|
40205
|
-
[K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['
|
|
40322
|
+
export interface LiveAnalysisDelegate<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs, GlobalOmitOptions = {}> {
|
|
40323
|
+
[K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['LiveAnalysis'], meta: { name: 'LiveAnalysis' } }
|
|
40206
40324
|
/**
|
|
40207
|
-
* Find zero or one
|
|
40208
|
-
* @param {
|
|
40325
|
+
* Find zero or one LiveAnalysis that matches the filter.
|
|
40326
|
+
* @param {LiveAnalysisFindUniqueArgs} args - Arguments to find a LiveAnalysis
|
|
40209
40327
|
* @example
|
|
40210
|
-
* // Get one
|
|
40211
|
-
* const
|
|
40328
|
+
* // Get one LiveAnalysis
|
|
40329
|
+
* const liveAnalysis = await prisma.liveAnalysis.findUnique({
|
|
40212
40330
|
* where: {
|
|
40213
40331
|
* // ... provide filter here
|
|
40214
40332
|
* }
|
|
40215
40333
|
* })
|
|
40216
40334
|
*/
|
|
40217
|
-
findUnique<T extends
|
|
40335
|
+
findUnique<T extends LiveAnalysisFindUniqueArgs>(args: SelectSubset<T, LiveAnalysisFindUniqueArgs<ExtArgs>>): Prisma__LiveAnalysisClient<$Result.GetResult<Prisma.$LiveAnalysisPayload<ExtArgs>, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
|
40218
40336
|
|
|
40219
40337
|
/**
|
|
40220
|
-
* Find one
|
|
40338
|
+
* Find one LiveAnalysis that matches the filter or throw an error with `error.code='P2025'`
|
|
40221
40339
|
* if no matches were found.
|
|
40222
|
-
* @param {
|
|
40340
|
+
* @param {LiveAnalysisFindUniqueOrThrowArgs} args - Arguments to find a LiveAnalysis
|
|
40223
40341
|
* @example
|
|
40224
|
-
* // Get one
|
|
40225
|
-
* const
|
|
40342
|
+
* // Get one LiveAnalysis
|
|
40343
|
+
* const liveAnalysis = await prisma.liveAnalysis.findUniqueOrThrow({
|
|
40226
40344
|
* where: {
|
|
40227
40345
|
* // ... provide filter here
|
|
40228
40346
|
* }
|
|
40229
40347
|
* })
|
|
40230
40348
|
*/
|
|
40231
|
-
findUniqueOrThrow<T extends
|
|
40349
|
+
findUniqueOrThrow<T extends LiveAnalysisFindUniqueOrThrowArgs>(args: SelectSubset<T, LiveAnalysisFindUniqueOrThrowArgs<ExtArgs>>): Prisma__LiveAnalysisClient<$Result.GetResult<Prisma.$LiveAnalysisPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
|
|
40232
40350
|
|
|
40233
40351
|
/**
|
|
40234
|
-
* Find the first
|
|
40352
|
+
* Find the first LiveAnalysis that matches the filter.
|
|
40235
40353
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
40236
40354
|
* Read more here: https://pris.ly/d/null-undefined
|
|
40237
|
-
* @param {
|
|
40355
|
+
* @param {LiveAnalysisFindFirstArgs} args - Arguments to find a LiveAnalysis
|
|
40238
40356
|
* @example
|
|
40239
|
-
* // Get one
|
|
40240
|
-
* const
|
|
40357
|
+
* // Get one LiveAnalysis
|
|
40358
|
+
* const liveAnalysis = await prisma.liveAnalysis.findFirst({
|
|
40241
40359
|
* where: {
|
|
40242
40360
|
* // ... provide filter here
|
|
40243
40361
|
* }
|
|
40244
40362
|
* })
|
|
40245
40363
|
*/
|
|
40246
|
-
findFirst<T extends
|
|
40364
|
+
findFirst<T extends LiveAnalysisFindFirstArgs>(args?: SelectSubset<T, LiveAnalysisFindFirstArgs<ExtArgs>>): Prisma__LiveAnalysisClient<$Result.GetResult<Prisma.$LiveAnalysisPayload<ExtArgs>, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
|
40247
40365
|
|
|
40248
40366
|
/**
|
|
40249
|
-
* Find the first
|
|
40367
|
+
* Find the first LiveAnalysis that matches the filter or
|
|
40250
40368
|
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
40251
40369
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
40252
40370
|
* Read more here: https://pris.ly/d/null-undefined
|
|
40253
|
-
* @param {
|
|
40371
|
+
* @param {LiveAnalysisFindFirstOrThrowArgs} args - Arguments to find a LiveAnalysis
|
|
40254
40372
|
* @example
|
|
40255
|
-
* // Get one
|
|
40256
|
-
* const
|
|
40373
|
+
* // Get one LiveAnalysis
|
|
40374
|
+
* const liveAnalysis = await prisma.liveAnalysis.findFirstOrThrow({
|
|
40257
40375
|
* where: {
|
|
40258
40376
|
* // ... provide filter here
|
|
40259
40377
|
* }
|
|
40260
40378
|
* })
|
|
40261
40379
|
*/
|
|
40262
|
-
findFirstOrThrow<T extends
|
|
40380
|
+
findFirstOrThrow<T extends LiveAnalysisFindFirstOrThrowArgs>(args?: SelectSubset<T, LiveAnalysisFindFirstOrThrowArgs<ExtArgs>>): Prisma__LiveAnalysisClient<$Result.GetResult<Prisma.$LiveAnalysisPayload<ExtArgs>, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
|
|
40263
40381
|
|
|
40264
40382
|
/**
|
|
40265
|
-
* Find zero or more
|
|
40383
|
+
* Find zero or more LiveAnalyses that matches the filter.
|
|
40266
40384
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
40267
40385
|
* Read more here: https://pris.ly/d/null-undefined
|
|
40268
|
-
* @param {
|
|
40386
|
+
* @param {LiveAnalysisFindManyArgs} args - Arguments to filter and select certain fields only.
|
|
40269
40387
|
* @example
|
|
40270
|
-
* // Get all
|
|
40271
|
-
* const
|
|
40388
|
+
* // Get all LiveAnalyses
|
|
40389
|
+
* const liveAnalyses = await prisma.liveAnalysis.findMany()
|
|
40272
40390
|
*
|
|
40273
|
-
* // Get first 10
|
|
40274
|
-
* const
|
|
40391
|
+
* // Get first 10 LiveAnalyses
|
|
40392
|
+
* const liveAnalyses = await prisma.liveAnalysis.findMany({ take: 10 })
|
|
40275
40393
|
*
|
|
40276
40394
|
* // Only select the `id`
|
|
40277
|
-
* const
|
|
40395
|
+
* const liveAnalysisWithIdOnly = await prisma.liveAnalysis.findMany({ select: { id: true } })
|
|
40278
40396
|
*
|
|
40279
40397
|
*/
|
|
40280
|
-
findMany<T extends
|
|
40398
|
+
findMany<T extends LiveAnalysisFindManyArgs>(args?: SelectSubset<T, LiveAnalysisFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$LiveAnalysisPayload<ExtArgs>, T, "findMany", GlobalOmitOptions>>
|
|
40281
40399
|
|
|
40282
40400
|
/**
|
|
40283
|
-
* Create a
|
|
40284
|
-
* @param {
|
|
40401
|
+
* Create a LiveAnalysis.
|
|
40402
|
+
* @param {LiveAnalysisCreateArgs} args - Arguments to create a LiveAnalysis.
|
|
40285
40403
|
* @example
|
|
40286
|
-
* // Create one
|
|
40287
|
-
* const
|
|
40404
|
+
* // Create one LiveAnalysis
|
|
40405
|
+
* const LiveAnalysis = await prisma.liveAnalysis.create({
|
|
40288
40406
|
* data: {
|
|
40289
|
-
* // ... data to create a
|
|
40407
|
+
* // ... data to create a LiveAnalysis
|
|
40290
40408
|
* }
|
|
40291
40409
|
* })
|
|
40292
40410
|
*
|
|
40293
40411
|
*/
|
|
40294
|
-
create<T extends
|
|
40412
|
+
create<T extends LiveAnalysisCreateArgs>(args: SelectSubset<T, LiveAnalysisCreateArgs<ExtArgs>>): Prisma__LiveAnalysisClient<$Result.GetResult<Prisma.$LiveAnalysisPayload<ExtArgs>, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
|
|
40295
40413
|
|
|
40296
40414
|
/**
|
|
40297
|
-
* Create many
|
|
40298
|
-
* @param {
|
|
40415
|
+
* Create many LiveAnalyses.
|
|
40416
|
+
* @param {LiveAnalysisCreateManyArgs} args - Arguments to create many LiveAnalyses.
|
|
40299
40417
|
* @example
|
|
40300
|
-
* // Create many
|
|
40301
|
-
* const
|
|
40418
|
+
* // Create many LiveAnalyses
|
|
40419
|
+
* const liveAnalysis = await prisma.liveAnalysis.createMany({
|
|
40302
40420
|
* data: [
|
|
40303
40421
|
* // ... provide data here
|
|
40304
40422
|
* ]
|
|
40305
40423
|
* })
|
|
40306
40424
|
*
|
|
40307
40425
|
*/
|
|
40308
|
-
createMany<T extends
|
|
40426
|
+
createMany<T extends LiveAnalysisCreateManyArgs>(args?: SelectSubset<T, LiveAnalysisCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
40309
40427
|
|
|
40310
40428
|
/**
|
|
40311
|
-
* Create many
|
|
40312
|
-
* @param {
|
|
40429
|
+
* Create many LiveAnalyses and returns the data saved in the database.
|
|
40430
|
+
* @param {LiveAnalysisCreateManyAndReturnArgs} args - Arguments to create many LiveAnalyses.
|
|
40313
40431
|
* @example
|
|
40314
|
-
* // Create many
|
|
40315
|
-
* const
|
|
40432
|
+
* // Create many LiveAnalyses
|
|
40433
|
+
* const liveAnalysis = await prisma.liveAnalysis.createManyAndReturn({
|
|
40316
40434
|
* data: [
|
|
40317
40435
|
* // ... provide data here
|
|
40318
40436
|
* ]
|
|
40319
40437
|
* })
|
|
40320
40438
|
*
|
|
40321
|
-
* // Create many
|
|
40322
|
-
* const
|
|
40439
|
+
* // Create many LiveAnalyses and only return the `id`
|
|
40440
|
+
* const liveAnalysisWithIdOnly = await prisma.liveAnalysis.createManyAndReturn({
|
|
40323
40441
|
* select: { id: true },
|
|
40324
40442
|
* data: [
|
|
40325
40443
|
* // ... provide data here
|
|
@@ -40329,28 +40447,28 @@ export namespace Prisma {
|
|
|
40329
40447
|
* Read more here: https://pris.ly/d/null-undefined
|
|
40330
40448
|
*
|
|
40331
40449
|
*/
|
|
40332
|
-
createManyAndReturn<T extends
|
|
40450
|
+
createManyAndReturn<T extends LiveAnalysisCreateManyAndReturnArgs>(args?: SelectSubset<T, LiveAnalysisCreateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$LiveAnalysisPayload<ExtArgs>, T, "createManyAndReturn", GlobalOmitOptions>>
|
|
40333
40451
|
|
|
40334
40452
|
/**
|
|
40335
|
-
* Delete a
|
|
40336
|
-
* @param {
|
|
40453
|
+
* Delete a LiveAnalysis.
|
|
40454
|
+
* @param {LiveAnalysisDeleteArgs} args - Arguments to delete one LiveAnalysis.
|
|
40337
40455
|
* @example
|
|
40338
|
-
* // Delete one
|
|
40339
|
-
* const
|
|
40456
|
+
* // Delete one LiveAnalysis
|
|
40457
|
+
* const LiveAnalysis = await prisma.liveAnalysis.delete({
|
|
40340
40458
|
* where: {
|
|
40341
|
-
* // ... filter to delete one
|
|
40459
|
+
* // ... filter to delete one LiveAnalysis
|
|
40342
40460
|
* }
|
|
40343
40461
|
* })
|
|
40344
40462
|
*
|
|
40345
40463
|
*/
|
|
40346
|
-
delete<T extends
|
|
40464
|
+
delete<T extends LiveAnalysisDeleteArgs>(args: SelectSubset<T, LiveAnalysisDeleteArgs<ExtArgs>>): Prisma__LiveAnalysisClient<$Result.GetResult<Prisma.$LiveAnalysisPayload<ExtArgs>, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
|
|
40347
40465
|
|
|
40348
40466
|
/**
|
|
40349
|
-
* Update one
|
|
40350
|
-
* @param {
|
|
40467
|
+
* Update one LiveAnalysis.
|
|
40468
|
+
* @param {LiveAnalysisUpdateArgs} args - Arguments to update one LiveAnalysis.
|
|
40351
40469
|
* @example
|
|
40352
|
-
* // Update one
|
|
40353
|
-
* const
|
|
40470
|
+
* // Update one LiveAnalysis
|
|
40471
|
+
* const liveAnalysis = await prisma.liveAnalysis.update({
|
|
40354
40472
|
* where: {
|
|
40355
40473
|
* // ... provide filter here
|
|
40356
40474
|
* },
|
|
@@ -40360,30 +40478,30 @@ export namespace Prisma {
|
|
|
40360
40478
|
* })
|
|
40361
40479
|
*
|
|
40362
40480
|
*/
|
|
40363
|
-
update<T extends
|
|
40481
|
+
update<T extends LiveAnalysisUpdateArgs>(args: SelectSubset<T, LiveAnalysisUpdateArgs<ExtArgs>>): Prisma__LiveAnalysisClient<$Result.GetResult<Prisma.$LiveAnalysisPayload<ExtArgs>, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
|
|
40364
40482
|
|
|
40365
40483
|
/**
|
|
40366
|
-
* Delete zero or more
|
|
40367
|
-
* @param {
|
|
40484
|
+
* Delete zero or more LiveAnalyses.
|
|
40485
|
+
* @param {LiveAnalysisDeleteManyArgs} args - Arguments to filter LiveAnalyses to delete.
|
|
40368
40486
|
* @example
|
|
40369
|
-
* // Delete a few
|
|
40370
|
-
* const { count } = await prisma.
|
|
40487
|
+
* // Delete a few LiveAnalyses
|
|
40488
|
+
* const { count } = await prisma.liveAnalysis.deleteMany({
|
|
40371
40489
|
* where: {
|
|
40372
40490
|
* // ... provide filter here
|
|
40373
40491
|
* }
|
|
40374
40492
|
* })
|
|
40375
40493
|
*
|
|
40376
40494
|
*/
|
|
40377
|
-
deleteMany<T extends
|
|
40495
|
+
deleteMany<T extends LiveAnalysisDeleteManyArgs>(args?: SelectSubset<T, LiveAnalysisDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
40378
40496
|
|
|
40379
40497
|
/**
|
|
40380
|
-
* Update zero or more
|
|
40498
|
+
* Update zero or more LiveAnalyses.
|
|
40381
40499
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
40382
40500
|
* Read more here: https://pris.ly/d/null-undefined
|
|
40383
|
-
* @param {
|
|
40501
|
+
* @param {LiveAnalysisUpdateManyArgs} args - Arguments to update one or more rows.
|
|
40384
40502
|
* @example
|
|
40385
|
-
* // Update many
|
|
40386
|
-
* const
|
|
40503
|
+
* // Update many LiveAnalyses
|
|
40504
|
+
* const liveAnalysis = await prisma.liveAnalysis.updateMany({
|
|
40387
40505
|
* where: {
|
|
40388
40506
|
* // ... provide filter here
|
|
40389
40507
|
* },
|
|
@@ -40393,14 +40511,14 @@ export namespace Prisma {
|
|
|
40393
40511
|
* })
|
|
40394
40512
|
*
|
|
40395
40513
|
*/
|
|
40396
|
-
updateMany<T extends
|
|
40514
|
+
updateMany<T extends LiveAnalysisUpdateManyArgs>(args: SelectSubset<T, LiveAnalysisUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
40397
40515
|
|
|
40398
40516
|
/**
|
|
40399
|
-
* Update zero or more
|
|
40400
|
-
* @param {
|
|
40517
|
+
* Update zero or more LiveAnalyses and returns the data updated in the database.
|
|
40518
|
+
* @param {LiveAnalysisUpdateManyAndReturnArgs} args - Arguments to update many LiveAnalyses.
|
|
40401
40519
|
* @example
|
|
40402
|
-
* // Update many
|
|
40403
|
-
* const
|
|
40520
|
+
* // Update many LiveAnalyses
|
|
40521
|
+
* const liveAnalysis = await prisma.liveAnalysis.updateManyAndReturn({
|
|
40404
40522
|
* where: {
|
|
40405
40523
|
* // ... provide filter here
|
|
40406
40524
|
* },
|
|
@@ -40409,8 +40527,8 @@ export namespace Prisma {
|
|
|
40409
40527
|
* ]
|
|
40410
40528
|
* })
|
|
40411
40529
|
*
|
|
40412
|
-
* // Update zero or more
|
|
40413
|
-
* const
|
|
40530
|
+
* // Update zero or more LiveAnalyses and only return the `id`
|
|
40531
|
+
* const liveAnalysisWithIdOnly = await prisma.liveAnalysis.updateManyAndReturn({
|
|
40414
40532
|
* select: { id: true },
|
|
40415
40533
|
* where: {
|
|
40416
40534
|
* // ... provide filter here
|
|
@@ -40423,56 +40541,56 @@ export namespace Prisma {
|
|
|
40423
40541
|
* Read more here: https://pris.ly/d/null-undefined
|
|
40424
40542
|
*
|
|
40425
40543
|
*/
|
|
40426
|
-
updateManyAndReturn<T extends
|
|
40544
|
+
updateManyAndReturn<T extends LiveAnalysisUpdateManyAndReturnArgs>(args: SelectSubset<T, LiveAnalysisUpdateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$LiveAnalysisPayload<ExtArgs>, T, "updateManyAndReturn", GlobalOmitOptions>>
|
|
40427
40545
|
|
|
40428
40546
|
/**
|
|
40429
|
-
* Create or update one
|
|
40430
|
-
* @param {
|
|
40547
|
+
* Create or update one LiveAnalysis.
|
|
40548
|
+
* @param {LiveAnalysisUpsertArgs} args - Arguments to update or create a LiveAnalysis.
|
|
40431
40549
|
* @example
|
|
40432
|
-
* // Update or create a
|
|
40433
|
-
* const
|
|
40550
|
+
* // Update or create a LiveAnalysis
|
|
40551
|
+
* const liveAnalysis = await prisma.liveAnalysis.upsert({
|
|
40434
40552
|
* create: {
|
|
40435
|
-
* // ... data to create a
|
|
40553
|
+
* // ... data to create a LiveAnalysis
|
|
40436
40554
|
* },
|
|
40437
40555
|
* update: {
|
|
40438
40556
|
* // ... in case it already exists, update
|
|
40439
40557
|
* },
|
|
40440
40558
|
* where: {
|
|
40441
|
-
* // ... the filter for the
|
|
40559
|
+
* // ... the filter for the LiveAnalysis we want to update
|
|
40442
40560
|
* }
|
|
40443
40561
|
* })
|
|
40444
40562
|
*/
|
|
40445
|
-
upsert<T extends
|
|
40563
|
+
upsert<T extends LiveAnalysisUpsertArgs>(args: SelectSubset<T, LiveAnalysisUpsertArgs<ExtArgs>>): Prisma__LiveAnalysisClient<$Result.GetResult<Prisma.$LiveAnalysisPayload<ExtArgs>, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
|
|
40446
40564
|
|
|
40447
40565
|
|
|
40448
40566
|
/**
|
|
40449
|
-
* Count the number of
|
|
40567
|
+
* Count the number of LiveAnalyses.
|
|
40450
40568
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
40451
40569
|
* Read more here: https://pris.ly/d/null-undefined
|
|
40452
|
-
* @param {
|
|
40570
|
+
* @param {LiveAnalysisCountArgs} args - Arguments to filter LiveAnalyses to count.
|
|
40453
40571
|
* @example
|
|
40454
|
-
* // Count the number of
|
|
40455
|
-
* const count = await prisma.
|
|
40572
|
+
* // Count the number of LiveAnalyses
|
|
40573
|
+
* const count = await prisma.liveAnalysis.count({
|
|
40456
40574
|
* where: {
|
|
40457
|
-
* // ... the filter for the
|
|
40575
|
+
* // ... the filter for the LiveAnalyses we want to count
|
|
40458
40576
|
* }
|
|
40459
40577
|
* })
|
|
40460
40578
|
**/
|
|
40461
|
-
count<T extends
|
|
40462
|
-
args?: Subset<T,
|
|
40579
|
+
count<T extends LiveAnalysisCountArgs>(
|
|
40580
|
+
args?: Subset<T, LiveAnalysisCountArgs>,
|
|
40463
40581
|
): Prisma.PrismaPromise<
|
|
40464
40582
|
T extends $Utils.Record<'select', any>
|
|
40465
40583
|
? T['select'] extends true
|
|
40466
40584
|
? number
|
|
40467
|
-
: GetScalarType<T['select'],
|
|
40585
|
+
: GetScalarType<T['select'], LiveAnalysisCountAggregateOutputType>
|
|
40468
40586
|
: number
|
|
40469
40587
|
>
|
|
40470
40588
|
|
|
40471
40589
|
/**
|
|
40472
|
-
* Allows you to perform aggregations operations on a
|
|
40590
|
+
* Allows you to perform aggregations operations on a LiveAnalysis.
|
|
40473
40591
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
40474
40592
|
* Read more here: https://pris.ly/d/null-undefined
|
|
40475
|
-
* @param {
|
|
40593
|
+
* @param {LiveAnalysisAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
|
|
40476
40594
|
* @example
|
|
40477
40595
|
* // Ordered by age ascending
|
|
40478
40596
|
* // Where email contains prisma.io
|
|
@@ -40492,13 +40610,13 @@ export namespace Prisma {
|
|
|
40492
40610
|
* take: 10,
|
|
40493
40611
|
* })
|
|
40494
40612
|
**/
|
|
40495
|
-
aggregate<T extends
|
|
40613
|
+
aggregate<T extends LiveAnalysisAggregateArgs>(args: Subset<T, LiveAnalysisAggregateArgs>): Prisma.PrismaPromise<GetLiveAnalysisAggregateType<T>>
|
|
40496
40614
|
|
|
40497
40615
|
/**
|
|
40498
|
-
* Group by
|
|
40616
|
+
* Group by LiveAnalysis.
|
|
40499
40617
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
40500
40618
|
* Read more here: https://pris.ly/d/null-undefined
|
|
40501
|
-
* @param {
|
|
40619
|
+
* @param {LiveAnalysisGroupByArgs} args - Group by arguments.
|
|
40502
40620
|
* @example
|
|
40503
40621
|
* // Group by city, order by createdAt, get count
|
|
40504
40622
|
* const result = await prisma.user.groupBy({
|
|
@@ -40513,14 +40631,1130 @@ export namespace Prisma {
|
|
|
40513
40631
|
*
|
|
40514
40632
|
**/
|
|
40515
40633
|
groupBy<
|
|
40516
|
-
T extends
|
|
40634
|
+
T extends LiveAnalysisGroupByArgs,
|
|
40517
40635
|
HasSelectOrTake extends Or<
|
|
40518
40636
|
Extends<'skip', Keys<T>>,
|
|
40519
40637
|
Extends<'take', Keys<T>>
|
|
40520
40638
|
>,
|
|
40521
40639
|
OrderByArg extends True extends HasSelectOrTake
|
|
40522
|
-
? { orderBy:
|
|
40523
|
-
: { orderBy?:
|
|
40640
|
+
? { orderBy: LiveAnalysisGroupByArgs['orderBy'] }
|
|
40641
|
+
: { orderBy?: LiveAnalysisGroupByArgs['orderBy'] },
|
|
40642
|
+
OrderFields extends ExcludeUnderscoreKeys<Keys<MaybeTupleToUnion<T['orderBy']>>>,
|
|
40643
|
+
ByFields extends MaybeTupleToUnion<T['by']>,
|
|
40644
|
+
ByValid extends Has<ByFields, OrderFields>,
|
|
40645
|
+
HavingFields extends GetHavingFields<T['having']>,
|
|
40646
|
+
HavingValid extends Has<ByFields, HavingFields>,
|
|
40647
|
+
ByEmpty extends T['by'] extends never[] ? True : False,
|
|
40648
|
+
InputErrors extends ByEmpty extends True
|
|
40649
|
+
? `Error: "by" must not be empty.`
|
|
40650
|
+
: HavingValid extends False
|
|
40651
|
+
? {
|
|
40652
|
+
[P in HavingFields]: P extends ByFields
|
|
40653
|
+
? never
|
|
40654
|
+
: P extends string
|
|
40655
|
+
? `Error: Field "${P}" used in "having" needs to be provided in "by".`
|
|
40656
|
+
: [
|
|
40657
|
+
Error,
|
|
40658
|
+
'Field ',
|
|
40659
|
+
P,
|
|
40660
|
+
` in "having" needs to be provided in "by"`,
|
|
40661
|
+
]
|
|
40662
|
+
}[HavingFields]
|
|
40663
|
+
: 'take' extends Keys<T>
|
|
40664
|
+
? 'orderBy' extends Keys<T>
|
|
40665
|
+
? ByValid extends True
|
|
40666
|
+
? {}
|
|
40667
|
+
: {
|
|
40668
|
+
[P in OrderFields]: P extends ByFields
|
|
40669
|
+
? never
|
|
40670
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
40671
|
+
}[OrderFields]
|
|
40672
|
+
: 'Error: If you provide "take", you also need to provide "orderBy"'
|
|
40673
|
+
: 'skip' extends Keys<T>
|
|
40674
|
+
? 'orderBy' extends Keys<T>
|
|
40675
|
+
? ByValid extends True
|
|
40676
|
+
? {}
|
|
40677
|
+
: {
|
|
40678
|
+
[P in OrderFields]: P extends ByFields
|
|
40679
|
+
? never
|
|
40680
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
40681
|
+
}[OrderFields]
|
|
40682
|
+
: 'Error: If you provide "skip", you also need to provide "orderBy"'
|
|
40683
|
+
: ByValid extends True
|
|
40684
|
+
? {}
|
|
40685
|
+
: {
|
|
40686
|
+
[P in OrderFields]: P extends ByFields
|
|
40687
|
+
? never
|
|
40688
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
40689
|
+
}[OrderFields]
|
|
40690
|
+
>(args: SubsetIntersection<T, LiveAnalysisGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetLiveAnalysisGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>
|
|
40691
|
+
/**
|
|
40692
|
+
* Fields of the LiveAnalysis model
|
|
40693
|
+
*/
|
|
40694
|
+
readonly fields: LiveAnalysisFieldRefs;
|
|
40695
|
+
}
|
|
40696
|
+
|
|
40697
|
+
/**
|
|
40698
|
+
* The delegate class that acts as a "Promise-like" for LiveAnalysis.
|
|
40699
|
+
* Why is this prefixed with `Prisma__`?
|
|
40700
|
+
* Because we want to prevent naming conflicts as mentioned in
|
|
40701
|
+
* https://github.com/prisma/prisma-client-js/issues/707
|
|
40702
|
+
*/
|
|
40703
|
+
export interface Prisma__LiveAnalysisClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs, GlobalOmitOptions = {}> extends Prisma.PrismaPromise<T> {
|
|
40704
|
+
readonly [Symbol.toStringTag]: "PrismaPromise"
|
|
40705
|
+
interview<T extends InterviewDefaultArgs<ExtArgs> = {}>(args?: Subset<T, InterviewDefaultArgs<ExtArgs>>): Prisma__InterviewClient<$Result.GetResult<Prisma.$InterviewPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions>
|
|
40706
|
+
/**
|
|
40707
|
+
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
40708
|
+
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
40709
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
40710
|
+
* @returns A Promise for the completion of which ever callback is executed.
|
|
40711
|
+
*/
|
|
40712
|
+
then<TResult1 = T, TResult2 = never>(onfulfilled?: ((value: T) => TResult1 | PromiseLike<TResult1>) | undefined | null, onrejected?: ((reason: any) => TResult2 | PromiseLike<TResult2>) | undefined | null): $Utils.JsPromise<TResult1 | TResult2>
|
|
40713
|
+
/**
|
|
40714
|
+
* Attaches a callback for only the rejection of the Promise.
|
|
40715
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
40716
|
+
* @returns A Promise for the completion of the callback.
|
|
40717
|
+
*/
|
|
40718
|
+
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): $Utils.JsPromise<T | TResult>
|
|
40719
|
+
/**
|
|
40720
|
+
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
|
40721
|
+
* resolved value cannot be modified from the callback.
|
|
40722
|
+
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
|
40723
|
+
* @returns A Promise for the completion of the callback.
|
|
40724
|
+
*/
|
|
40725
|
+
finally(onfinally?: (() => void) | undefined | null): $Utils.JsPromise<T>
|
|
40726
|
+
}
|
|
40727
|
+
|
|
40728
|
+
|
|
40729
|
+
|
|
40730
|
+
|
|
40731
|
+
/**
|
|
40732
|
+
* Fields of the LiveAnalysis model
|
|
40733
|
+
*/
|
|
40734
|
+
interface LiveAnalysisFieldRefs {
|
|
40735
|
+
readonly id: FieldRef<"LiveAnalysis", 'String'>
|
|
40736
|
+
readonly interview_id: FieldRef<"LiveAnalysis", 'String'>
|
|
40737
|
+
readonly analysis: FieldRef<"LiveAnalysis", 'Json'>
|
|
40738
|
+
readonly created_at: FieldRef<"LiveAnalysis", 'DateTime'>
|
|
40739
|
+
readonly updated_at: FieldRef<"LiveAnalysis", 'DateTime'>
|
|
40740
|
+
readonly created_by: FieldRef<"LiveAnalysis", 'String'>
|
|
40741
|
+
readonly updated_by: FieldRef<"LiveAnalysis", 'String'>
|
|
40742
|
+
readonly is_active: FieldRef<"LiveAnalysis", 'Boolean'>
|
|
40743
|
+
}
|
|
40744
|
+
|
|
40745
|
+
|
|
40746
|
+
// Custom InputTypes
|
|
40747
|
+
/**
|
|
40748
|
+
* LiveAnalysis findUnique
|
|
40749
|
+
*/
|
|
40750
|
+
export type LiveAnalysisFindUniqueArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
40751
|
+
/**
|
|
40752
|
+
* Select specific fields to fetch from the LiveAnalysis
|
|
40753
|
+
*/
|
|
40754
|
+
select?: LiveAnalysisSelect<ExtArgs> | null
|
|
40755
|
+
/**
|
|
40756
|
+
* Omit specific fields from the LiveAnalysis
|
|
40757
|
+
*/
|
|
40758
|
+
omit?: LiveAnalysisOmit<ExtArgs> | null
|
|
40759
|
+
/**
|
|
40760
|
+
* Choose, which related nodes to fetch as well
|
|
40761
|
+
*/
|
|
40762
|
+
include?: LiveAnalysisInclude<ExtArgs> | null
|
|
40763
|
+
/**
|
|
40764
|
+
* Filter, which LiveAnalysis to fetch.
|
|
40765
|
+
*/
|
|
40766
|
+
where: LiveAnalysisWhereUniqueInput
|
|
40767
|
+
}
|
|
40768
|
+
|
|
40769
|
+
/**
|
|
40770
|
+
* LiveAnalysis findUniqueOrThrow
|
|
40771
|
+
*/
|
|
40772
|
+
export type LiveAnalysisFindUniqueOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
40773
|
+
/**
|
|
40774
|
+
* Select specific fields to fetch from the LiveAnalysis
|
|
40775
|
+
*/
|
|
40776
|
+
select?: LiveAnalysisSelect<ExtArgs> | null
|
|
40777
|
+
/**
|
|
40778
|
+
* Omit specific fields from the LiveAnalysis
|
|
40779
|
+
*/
|
|
40780
|
+
omit?: LiveAnalysisOmit<ExtArgs> | null
|
|
40781
|
+
/**
|
|
40782
|
+
* Choose, which related nodes to fetch as well
|
|
40783
|
+
*/
|
|
40784
|
+
include?: LiveAnalysisInclude<ExtArgs> | null
|
|
40785
|
+
/**
|
|
40786
|
+
* Filter, which LiveAnalysis to fetch.
|
|
40787
|
+
*/
|
|
40788
|
+
where: LiveAnalysisWhereUniqueInput
|
|
40789
|
+
}
|
|
40790
|
+
|
|
40791
|
+
/**
|
|
40792
|
+
* LiveAnalysis findFirst
|
|
40793
|
+
*/
|
|
40794
|
+
export type LiveAnalysisFindFirstArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
40795
|
+
/**
|
|
40796
|
+
* Select specific fields to fetch from the LiveAnalysis
|
|
40797
|
+
*/
|
|
40798
|
+
select?: LiveAnalysisSelect<ExtArgs> | null
|
|
40799
|
+
/**
|
|
40800
|
+
* Omit specific fields from the LiveAnalysis
|
|
40801
|
+
*/
|
|
40802
|
+
omit?: LiveAnalysisOmit<ExtArgs> | null
|
|
40803
|
+
/**
|
|
40804
|
+
* Choose, which related nodes to fetch as well
|
|
40805
|
+
*/
|
|
40806
|
+
include?: LiveAnalysisInclude<ExtArgs> | null
|
|
40807
|
+
/**
|
|
40808
|
+
* Filter, which LiveAnalysis to fetch.
|
|
40809
|
+
*/
|
|
40810
|
+
where?: LiveAnalysisWhereInput
|
|
40811
|
+
/**
|
|
40812
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
40813
|
+
*
|
|
40814
|
+
* Determine the order of LiveAnalyses to fetch.
|
|
40815
|
+
*/
|
|
40816
|
+
orderBy?: LiveAnalysisOrderByWithRelationInput | LiveAnalysisOrderByWithRelationInput[]
|
|
40817
|
+
/**
|
|
40818
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
40819
|
+
*
|
|
40820
|
+
* Sets the position for searching for LiveAnalyses.
|
|
40821
|
+
*/
|
|
40822
|
+
cursor?: LiveAnalysisWhereUniqueInput
|
|
40823
|
+
/**
|
|
40824
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
40825
|
+
*
|
|
40826
|
+
* Take `±n` LiveAnalyses from the position of the cursor.
|
|
40827
|
+
*/
|
|
40828
|
+
take?: number
|
|
40829
|
+
/**
|
|
40830
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
40831
|
+
*
|
|
40832
|
+
* Skip the first `n` LiveAnalyses.
|
|
40833
|
+
*/
|
|
40834
|
+
skip?: number
|
|
40835
|
+
/**
|
|
40836
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
40837
|
+
*
|
|
40838
|
+
* Filter by unique combinations of LiveAnalyses.
|
|
40839
|
+
*/
|
|
40840
|
+
distinct?: LiveAnalysisScalarFieldEnum | LiveAnalysisScalarFieldEnum[]
|
|
40841
|
+
}
|
|
40842
|
+
|
|
40843
|
+
/**
|
|
40844
|
+
* LiveAnalysis findFirstOrThrow
|
|
40845
|
+
*/
|
|
40846
|
+
export type LiveAnalysisFindFirstOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
40847
|
+
/**
|
|
40848
|
+
* Select specific fields to fetch from the LiveAnalysis
|
|
40849
|
+
*/
|
|
40850
|
+
select?: LiveAnalysisSelect<ExtArgs> | null
|
|
40851
|
+
/**
|
|
40852
|
+
* Omit specific fields from the LiveAnalysis
|
|
40853
|
+
*/
|
|
40854
|
+
omit?: LiveAnalysisOmit<ExtArgs> | null
|
|
40855
|
+
/**
|
|
40856
|
+
* Choose, which related nodes to fetch as well
|
|
40857
|
+
*/
|
|
40858
|
+
include?: LiveAnalysisInclude<ExtArgs> | null
|
|
40859
|
+
/**
|
|
40860
|
+
* Filter, which LiveAnalysis to fetch.
|
|
40861
|
+
*/
|
|
40862
|
+
where?: LiveAnalysisWhereInput
|
|
40863
|
+
/**
|
|
40864
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
40865
|
+
*
|
|
40866
|
+
* Determine the order of LiveAnalyses to fetch.
|
|
40867
|
+
*/
|
|
40868
|
+
orderBy?: LiveAnalysisOrderByWithRelationInput | LiveAnalysisOrderByWithRelationInput[]
|
|
40869
|
+
/**
|
|
40870
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
40871
|
+
*
|
|
40872
|
+
* Sets the position for searching for LiveAnalyses.
|
|
40873
|
+
*/
|
|
40874
|
+
cursor?: LiveAnalysisWhereUniqueInput
|
|
40875
|
+
/**
|
|
40876
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
40877
|
+
*
|
|
40878
|
+
* Take `±n` LiveAnalyses from the position of the cursor.
|
|
40879
|
+
*/
|
|
40880
|
+
take?: number
|
|
40881
|
+
/**
|
|
40882
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
40883
|
+
*
|
|
40884
|
+
* Skip the first `n` LiveAnalyses.
|
|
40885
|
+
*/
|
|
40886
|
+
skip?: number
|
|
40887
|
+
/**
|
|
40888
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
40889
|
+
*
|
|
40890
|
+
* Filter by unique combinations of LiveAnalyses.
|
|
40891
|
+
*/
|
|
40892
|
+
distinct?: LiveAnalysisScalarFieldEnum | LiveAnalysisScalarFieldEnum[]
|
|
40893
|
+
}
|
|
40894
|
+
|
|
40895
|
+
/**
|
|
40896
|
+
* LiveAnalysis findMany
|
|
40897
|
+
*/
|
|
40898
|
+
export type LiveAnalysisFindManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
40899
|
+
/**
|
|
40900
|
+
* Select specific fields to fetch from the LiveAnalysis
|
|
40901
|
+
*/
|
|
40902
|
+
select?: LiveAnalysisSelect<ExtArgs> | null
|
|
40903
|
+
/**
|
|
40904
|
+
* Omit specific fields from the LiveAnalysis
|
|
40905
|
+
*/
|
|
40906
|
+
omit?: LiveAnalysisOmit<ExtArgs> | null
|
|
40907
|
+
/**
|
|
40908
|
+
* Choose, which related nodes to fetch as well
|
|
40909
|
+
*/
|
|
40910
|
+
include?: LiveAnalysisInclude<ExtArgs> | null
|
|
40911
|
+
/**
|
|
40912
|
+
* Filter, which LiveAnalyses to fetch.
|
|
40913
|
+
*/
|
|
40914
|
+
where?: LiveAnalysisWhereInput
|
|
40915
|
+
/**
|
|
40916
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
40917
|
+
*
|
|
40918
|
+
* Determine the order of LiveAnalyses to fetch.
|
|
40919
|
+
*/
|
|
40920
|
+
orderBy?: LiveAnalysisOrderByWithRelationInput | LiveAnalysisOrderByWithRelationInput[]
|
|
40921
|
+
/**
|
|
40922
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
40923
|
+
*
|
|
40924
|
+
* Sets the position for listing LiveAnalyses.
|
|
40925
|
+
*/
|
|
40926
|
+
cursor?: LiveAnalysisWhereUniqueInput
|
|
40927
|
+
/**
|
|
40928
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
40929
|
+
*
|
|
40930
|
+
* Take `±n` LiveAnalyses from the position of the cursor.
|
|
40931
|
+
*/
|
|
40932
|
+
take?: number
|
|
40933
|
+
/**
|
|
40934
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
40935
|
+
*
|
|
40936
|
+
* Skip the first `n` LiveAnalyses.
|
|
40937
|
+
*/
|
|
40938
|
+
skip?: number
|
|
40939
|
+
distinct?: LiveAnalysisScalarFieldEnum | LiveAnalysisScalarFieldEnum[]
|
|
40940
|
+
}
|
|
40941
|
+
|
|
40942
|
+
/**
|
|
40943
|
+
* LiveAnalysis create
|
|
40944
|
+
*/
|
|
40945
|
+
export type LiveAnalysisCreateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
40946
|
+
/**
|
|
40947
|
+
* Select specific fields to fetch from the LiveAnalysis
|
|
40948
|
+
*/
|
|
40949
|
+
select?: LiveAnalysisSelect<ExtArgs> | null
|
|
40950
|
+
/**
|
|
40951
|
+
* Omit specific fields from the LiveAnalysis
|
|
40952
|
+
*/
|
|
40953
|
+
omit?: LiveAnalysisOmit<ExtArgs> | null
|
|
40954
|
+
/**
|
|
40955
|
+
* Choose, which related nodes to fetch as well
|
|
40956
|
+
*/
|
|
40957
|
+
include?: LiveAnalysisInclude<ExtArgs> | null
|
|
40958
|
+
/**
|
|
40959
|
+
* The data needed to create a LiveAnalysis.
|
|
40960
|
+
*/
|
|
40961
|
+
data: XOR<LiveAnalysisCreateInput, LiveAnalysisUncheckedCreateInput>
|
|
40962
|
+
}
|
|
40963
|
+
|
|
40964
|
+
/**
|
|
40965
|
+
* LiveAnalysis createMany
|
|
40966
|
+
*/
|
|
40967
|
+
export type LiveAnalysisCreateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
40968
|
+
/**
|
|
40969
|
+
* The data used to create many LiveAnalyses.
|
|
40970
|
+
*/
|
|
40971
|
+
data: LiveAnalysisCreateManyInput | LiveAnalysisCreateManyInput[]
|
|
40972
|
+
skipDuplicates?: boolean
|
|
40973
|
+
}
|
|
40974
|
+
|
|
40975
|
+
/**
|
|
40976
|
+
* LiveAnalysis createManyAndReturn
|
|
40977
|
+
*/
|
|
40978
|
+
export type LiveAnalysisCreateManyAndReturnArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
40979
|
+
/**
|
|
40980
|
+
* Select specific fields to fetch from the LiveAnalysis
|
|
40981
|
+
*/
|
|
40982
|
+
select?: LiveAnalysisSelectCreateManyAndReturn<ExtArgs> | null
|
|
40983
|
+
/**
|
|
40984
|
+
* Omit specific fields from the LiveAnalysis
|
|
40985
|
+
*/
|
|
40986
|
+
omit?: LiveAnalysisOmit<ExtArgs> | null
|
|
40987
|
+
/**
|
|
40988
|
+
* The data used to create many LiveAnalyses.
|
|
40989
|
+
*/
|
|
40990
|
+
data: LiveAnalysisCreateManyInput | LiveAnalysisCreateManyInput[]
|
|
40991
|
+
skipDuplicates?: boolean
|
|
40992
|
+
/**
|
|
40993
|
+
* Choose, which related nodes to fetch as well
|
|
40994
|
+
*/
|
|
40995
|
+
include?: LiveAnalysisIncludeCreateManyAndReturn<ExtArgs> | null
|
|
40996
|
+
}
|
|
40997
|
+
|
|
40998
|
+
/**
|
|
40999
|
+
* LiveAnalysis update
|
|
41000
|
+
*/
|
|
41001
|
+
export type LiveAnalysisUpdateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
41002
|
+
/**
|
|
41003
|
+
* Select specific fields to fetch from the LiveAnalysis
|
|
41004
|
+
*/
|
|
41005
|
+
select?: LiveAnalysisSelect<ExtArgs> | null
|
|
41006
|
+
/**
|
|
41007
|
+
* Omit specific fields from the LiveAnalysis
|
|
41008
|
+
*/
|
|
41009
|
+
omit?: LiveAnalysisOmit<ExtArgs> | null
|
|
41010
|
+
/**
|
|
41011
|
+
* Choose, which related nodes to fetch as well
|
|
41012
|
+
*/
|
|
41013
|
+
include?: LiveAnalysisInclude<ExtArgs> | null
|
|
41014
|
+
/**
|
|
41015
|
+
* The data needed to update a LiveAnalysis.
|
|
41016
|
+
*/
|
|
41017
|
+
data: XOR<LiveAnalysisUpdateInput, LiveAnalysisUncheckedUpdateInput>
|
|
41018
|
+
/**
|
|
41019
|
+
* Choose, which LiveAnalysis to update.
|
|
41020
|
+
*/
|
|
41021
|
+
where: LiveAnalysisWhereUniqueInput
|
|
41022
|
+
}
|
|
41023
|
+
|
|
41024
|
+
/**
|
|
41025
|
+
* LiveAnalysis updateMany
|
|
41026
|
+
*/
|
|
41027
|
+
export type LiveAnalysisUpdateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
41028
|
+
/**
|
|
41029
|
+
* The data used to update LiveAnalyses.
|
|
41030
|
+
*/
|
|
41031
|
+
data: XOR<LiveAnalysisUpdateManyMutationInput, LiveAnalysisUncheckedUpdateManyInput>
|
|
41032
|
+
/**
|
|
41033
|
+
* Filter which LiveAnalyses to update
|
|
41034
|
+
*/
|
|
41035
|
+
where?: LiveAnalysisWhereInput
|
|
41036
|
+
/**
|
|
41037
|
+
* Limit how many LiveAnalyses to update.
|
|
41038
|
+
*/
|
|
41039
|
+
limit?: number
|
|
41040
|
+
}
|
|
41041
|
+
|
|
41042
|
+
/**
|
|
41043
|
+
* LiveAnalysis updateManyAndReturn
|
|
41044
|
+
*/
|
|
41045
|
+
export type LiveAnalysisUpdateManyAndReturnArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
41046
|
+
/**
|
|
41047
|
+
* Select specific fields to fetch from the LiveAnalysis
|
|
41048
|
+
*/
|
|
41049
|
+
select?: LiveAnalysisSelectUpdateManyAndReturn<ExtArgs> | null
|
|
41050
|
+
/**
|
|
41051
|
+
* Omit specific fields from the LiveAnalysis
|
|
41052
|
+
*/
|
|
41053
|
+
omit?: LiveAnalysisOmit<ExtArgs> | null
|
|
41054
|
+
/**
|
|
41055
|
+
* The data used to update LiveAnalyses.
|
|
41056
|
+
*/
|
|
41057
|
+
data: XOR<LiveAnalysisUpdateManyMutationInput, LiveAnalysisUncheckedUpdateManyInput>
|
|
41058
|
+
/**
|
|
41059
|
+
* Filter which LiveAnalyses to update
|
|
41060
|
+
*/
|
|
41061
|
+
where?: LiveAnalysisWhereInput
|
|
41062
|
+
/**
|
|
41063
|
+
* Limit how many LiveAnalyses to update.
|
|
41064
|
+
*/
|
|
41065
|
+
limit?: number
|
|
41066
|
+
/**
|
|
41067
|
+
* Choose, which related nodes to fetch as well
|
|
41068
|
+
*/
|
|
41069
|
+
include?: LiveAnalysisIncludeUpdateManyAndReturn<ExtArgs> | null
|
|
41070
|
+
}
|
|
41071
|
+
|
|
41072
|
+
/**
|
|
41073
|
+
* LiveAnalysis upsert
|
|
41074
|
+
*/
|
|
41075
|
+
export type LiveAnalysisUpsertArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
41076
|
+
/**
|
|
41077
|
+
* Select specific fields to fetch from the LiveAnalysis
|
|
41078
|
+
*/
|
|
41079
|
+
select?: LiveAnalysisSelect<ExtArgs> | null
|
|
41080
|
+
/**
|
|
41081
|
+
* Omit specific fields from the LiveAnalysis
|
|
41082
|
+
*/
|
|
41083
|
+
omit?: LiveAnalysisOmit<ExtArgs> | null
|
|
41084
|
+
/**
|
|
41085
|
+
* Choose, which related nodes to fetch as well
|
|
41086
|
+
*/
|
|
41087
|
+
include?: LiveAnalysisInclude<ExtArgs> | null
|
|
41088
|
+
/**
|
|
41089
|
+
* The filter to search for the LiveAnalysis to update in case it exists.
|
|
41090
|
+
*/
|
|
41091
|
+
where: LiveAnalysisWhereUniqueInput
|
|
41092
|
+
/**
|
|
41093
|
+
* In case the LiveAnalysis found by the `where` argument doesn't exist, create a new LiveAnalysis with this data.
|
|
41094
|
+
*/
|
|
41095
|
+
create: XOR<LiveAnalysisCreateInput, LiveAnalysisUncheckedCreateInput>
|
|
41096
|
+
/**
|
|
41097
|
+
* In case the LiveAnalysis was found with the provided `where` argument, update it with this data.
|
|
41098
|
+
*/
|
|
41099
|
+
update: XOR<LiveAnalysisUpdateInput, LiveAnalysisUncheckedUpdateInput>
|
|
41100
|
+
}
|
|
41101
|
+
|
|
41102
|
+
/**
|
|
41103
|
+
* LiveAnalysis delete
|
|
41104
|
+
*/
|
|
41105
|
+
export type LiveAnalysisDeleteArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
41106
|
+
/**
|
|
41107
|
+
* Select specific fields to fetch from the LiveAnalysis
|
|
41108
|
+
*/
|
|
41109
|
+
select?: LiveAnalysisSelect<ExtArgs> | null
|
|
41110
|
+
/**
|
|
41111
|
+
* Omit specific fields from the LiveAnalysis
|
|
41112
|
+
*/
|
|
41113
|
+
omit?: LiveAnalysisOmit<ExtArgs> | null
|
|
41114
|
+
/**
|
|
41115
|
+
* Choose, which related nodes to fetch as well
|
|
41116
|
+
*/
|
|
41117
|
+
include?: LiveAnalysisInclude<ExtArgs> | null
|
|
41118
|
+
/**
|
|
41119
|
+
* Filter which LiveAnalysis to delete.
|
|
41120
|
+
*/
|
|
41121
|
+
where: LiveAnalysisWhereUniqueInput
|
|
41122
|
+
}
|
|
41123
|
+
|
|
41124
|
+
/**
|
|
41125
|
+
* LiveAnalysis deleteMany
|
|
41126
|
+
*/
|
|
41127
|
+
export type LiveAnalysisDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
41128
|
+
/**
|
|
41129
|
+
* Filter which LiveAnalyses to delete
|
|
41130
|
+
*/
|
|
41131
|
+
where?: LiveAnalysisWhereInput
|
|
41132
|
+
/**
|
|
41133
|
+
* Limit how many LiveAnalyses to delete.
|
|
41134
|
+
*/
|
|
41135
|
+
limit?: number
|
|
41136
|
+
}
|
|
41137
|
+
|
|
41138
|
+
/**
|
|
41139
|
+
* LiveAnalysis without action
|
|
41140
|
+
*/
|
|
41141
|
+
export type LiveAnalysisDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
41142
|
+
/**
|
|
41143
|
+
* Select specific fields to fetch from the LiveAnalysis
|
|
41144
|
+
*/
|
|
41145
|
+
select?: LiveAnalysisSelect<ExtArgs> | null
|
|
41146
|
+
/**
|
|
41147
|
+
* Omit specific fields from the LiveAnalysis
|
|
41148
|
+
*/
|
|
41149
|
+
omit?: LiveAnalysisOmit<ExtArgs> | null
|
|
41150
|
+
/**
|
|
41151
|
+
* Choose, which related nodes to fetch as well
|
|
41152
|
+
*/
|
|
41153
|
+
include?: LiveAnalysisInclude<ExtArgs> | null
|
|
41154
|
+
}
|
|
41155
|
+
|
|
41156
|
+
|
|
41157
|
+
/**
|
|
41158
|
+
* Model Message
|
|
41159
|
+
*/
|
|
41160
|
+
|
|
41161
|
+
export type AggregateMessage = {
|
|
41162
|
+
_count: MessageCountAggregateOutputType | null
|
|
41163
|
+
_min: MessageMinAggregateOutputType | null
|
|
41164
|
+
_max: MessageMaxAggregateOutputType | null
|
|
41165
|
+
}
|
|
41166
|
+
|
|
41167
|
+
export type MessageMinAggregateOutputType = {
|
|
41168
|
+
id: string | null
|
|
41169
|
+
sender_id: string | null
|
|
41170
|
+
receiver_id: string | null
|
|
41171
|
+
message: string | null
|
|
41172
|
+
created_at: Date | null
|
|
41173
|
+
updated_at: Date | null
|
|
41174
|
+
created_by: string | null
|
|
41175
|
+
updated_by: string | null
|
|
41176
|
+
is_active: boolean | null
|
|
41177
|
+
}
|
|
41178
|
+
|
|
41179
|
+
export type MessageMaxAggregateOutputType = {
|
|
41180
|
+
id: string | null
|
|
41181
|
+
sender_id: string | null
|
|
41182
|
+
receiver_id: string | null
|
|
41183
|
+
message: string | null
|
|
41184
|
+
created_at: Date | null
|
|
41185
|
+
updated_at: Date | null
|
|
41186
|
+
created_by: string | null
|
|
41187
|
+
updated_by: string | null
|
|
41188
|
+
is_active: boolean | null
|
|
41189
|
+
}
|
|
41190
|
+
|
|
41191
|
+
export type MessageCountAggregateOutputType = {
|
|
41192
|
+
id: number
|
|
41193
|
+
sender_id: number
|
|
41194
|
+
receiver_id: number
|
|
41195
|
+
message: number
|
|
41196
|
+
created_at: number
|
|
41197
|
+
updated_at: number
|
|
41198
|
+
created_by: number
|
|
41199
|
+
updated_by: number
|
|
41200
|
+
is_active: number
|
|
41201
|
+
_all: number
|
|
41202
|
+
}
|
|
41203
|
+
|
|
41204
|
+
|
|
41205
|
+
export type MessageMinAggregateInputType = {
|
|
41206
|
+
id?: true
|
|
41207
|
+
sender_id?: true
|
|
41208
|
+
receiver_id?: true
|
|
41209
|
+
message?: true
|
|
41210
|
+
created_at?: true
|
|
41211
|
+
updated_at?: true
|
|
41212
|
+
created_by?: true
|
|
41213
|
+
updated_by?: true
|
|
41214
|
+
is_active?: true
|
|
41215
|
+
}
|
|
41216
|
+
|
|
41217
|
+
export type MessageMaxAggregateInputType = {
|
|
41218
|
+
id?: true
|
|
41219
|
+
sender_id?: true
|
|
41220
|
+
receiver_id?: true
|
|
41221
|
+
message?: true
|
|
41222
|
+
created_at?: true
|
|
41223
|
+
updated_at?: true
|
|
41224
|
+
created_by?: true
|
|
41225
|
+
updated_by?: true
|
|
41226
|
+
is_active?: true
|
|
41227
|
+
}
|
|
41228
|
+
|
|
41229
|
+
export type MessageCountAggregateInputType = {
|
|
41230
|
+
id?: true
|
|
41231
|
+
sender_id?: true
|
|
41232
|
+
receiver_id?: true
|
|
41233
|
+
message?: true
|
|
41234
|
+
created_at?: true
|
|
41235
|
+
updated_at?: true
|
|
41236
|
+
created_by?: true
|
|
41237
|
+
updated_by?: true
|
|
41238
|
+
is_active?: true
|
|
41239
|
+
_all?: true
|
|
41240
|
+
}
|
|
41241
|
+
|
|
41242
|
+
export type MessageAggregateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
41243
|
+
/**
|
|
41244
|
+
* Filter which Message to aggregate.
|
|
41245
|
+
*/
|
|
41246
|
+
where?: MessageWhereInput
|
|
41247
|
+
/**
|
|
41248
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
41249
|
+
*
|
|
41250
|
+
* Determine the order of Messages to fetch.
|
|
41251
|
+
*/
|
|
41252
|
+
orderBy?: MessageOrderByWithRelationInput | MessageOrderByWithRelationInput[]
|
|
41253
|
+
/**
|
|
41254
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
41255
|
+
*
|
|
41256
|
+
* Sets the start position
|
|
41257
|
+
*/
|
|
41258
|
+
cursor?: MessageWhereUniqueInput
|
|
41259
|
+
/**
|
|
41260
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
41261
|
+
*
|
|
41262
|
+
* Take `±n` Messages from the position of the cursor.
|
|
41263
|
+
*/
|
|
41264
|
+
take?: number
|
|
41265
|
+
/**
|
|
41266
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
41267
|
+
*
|
|
41268
|
+
* Skip the first `n` Messages.
|
|
41269
|
+
*/
|
|
41270
|
+
skip?: number
|
|
41271
|
+
/**
|
|
41272
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
41273
|
+
*
|
|
41274
|
+
* Count returned Messages
|
|
41275
|
+
**/
|
|
41276
|
+
_count?: true | MessageCountAggregateInputType
|
|
41277
|
+
/**
|
|
41278
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
41279
|
+
*
|
|
41280
|
+
* Select which fields to find the minimum value
|
|
41281
|
+
**/
|
|
41282
|
+
_min?: MessageMinAggregateInputType
|
|
41283
|
+
/**
|
|
41284
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
41285
|
+
*
|
|
41286
|
+
* Select which fields to find the maximum value
|
|
41287
|
+
**/
|
|
41288
|
+
_max?: MessageMaxAggregateInputType
|
|
41289
|
+
}
|
|
41290
|
+
|
|
41291
|
+
export type GetMessageAggregateType<T extends MessageAggregateArgs> = {
|
|
41292
|
+
[P in keyof T & keyof AggregateMessage]: P extends '_count' | 'count'
|
|
41293
|
+
? T[P] extends true
|
|
41294
|
+
? number
|
|
41295
|
+
: GetScalarType<T[P], AggregateMessage[P]>
|
|
41296
|
+
: GetScalarType<T[P], AggregateMessage[P]>
|
|
41297
|
+
}
|
|
41298
|
+
|
|
41299
|
+
|
|
41300
|
+
|
|
41301
|
+
|
|
41302
|
+
export type MessageGroupByArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
41303
|
+
where?: MessageWhereInput
|
|
41304
|
+
orderBy?: MessageOrderByWithAggregationInput | MessageOrderByWithAggregationInput[]
|
|
41305
|
+
by: MessageScalarFieldEnum[] | MessageScalarFieldEnum
|
|
41306
|
+
having?: MessageScalarWhereWithAggregatesInput
|
|
41307
|
+
take?: number
|
|
41308
|
+
skip?: number
|
|
41309
|
+
_count?: MessageCountAggregateInputType | true
|
|
41310
|
+
_min?: MessageMinAggregateInputType
|
|
41311
|
+
_max?: MessageMaxAggregateInputType
|
|
41312
|
+
}
|
|
41313
|
+
|
|
41314
|
+
export type MessageGroupByOutputType = {
|
|
41315
|
+
id: string
|
|
41316
|
+
sender_id: string
|
|
41317
|
+
receiver_id: string
|
|
41318
|
+
message: string
|
|
41319
|
+
created_at: Date
|
|
41320
|
+
updated_at: Date
|
|
41321
|
+
created_by: string
|
|
41322
|
+
updated_by: string
|
|
41323
|
+
is_active: boolean
|
|
41324
|
+
_count: MessageCountAggregateOutputType | null
|
|
41325
|
+
_min: MessageMinAggregateOutputType | null
|
|
41326
|
+
_max: MessageMaxAggregateOutputType | null
|
|
41327
|
+
}
|
|
41328
|
+
|
|
41329
|
+
type GetMessageGroupByPayload<T extends MessageGroupByArgs> = Prisma.PrismaPromise<
|
|
41330
|
+
Array<
|
|
41331
|
+
PickEnumerable<MessageGroupByOutputType, T['by']> &
|
|
41332
|
+
{
|
|
41333
|
+
[P in ((keyof T) & (keyof MessageGroupByOutputType))]: P extends '_count'
|
|
41334
|
+
? T[P] extends boolean
|
|
41335
|
+
? number
|
|
41336
|
+
: GetScalarType<T[P], MessageGroupByOutputType[P]>
|
|
41337
|
+
: GetScalarType<T[P], MessageGroupByOutputType[P]>
|
|
41338
|
+
}
|
|
41339
|
+
>
|
|
41340
|
+
>
|
|
41341
|
+
|
|
41342
|
+
|
|
41343
|
+
export type MessageSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
41344
|
+
id?: boolean
|
|
41345
|
+
sender_id?: boolean
|
|
41346
|
+
receiver_id?: boolean
|
|
41347
|
+
message?: boolean
|
|
41348
|
+
created_at?: boolean
|
|
41349
|
+
updated_at?: boolean
|
|
41350
|
+
created_by?: boolean
|
|
41351
|
+
updated_by?: boolean
|
|
41352
|
+
is_active?: boolean
|
|
41353
|
+
sender?: boolean | UserDefaultArgs<ExtArgs>
|
|
41354
|
+
receiver?: boolean | UserDefaultArgs<ExtArgs>
|
|
41355
|
+
}, ExtArgs["result"]["message"]>
|
|
41356
|
+
|
|
41357
|
+
export type MessageSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
41358
|
+
id?: boolean
|
|
41359
|
+
sender_id?: boolean
|
|
41360
|
+
receiver_id?: boolean
|
|
41361
|
+
message?: boolean
|
|
41362
|
+
created_at?: boolean
|
|
41363
|
+
updated_at?: boolean
|
|
41364
|
+
created_by?: boolean
|
|
41365
|
+
updated_by?: boolean
|
|
41366
|
+
is_active?: boolean
|
|
41367
|
+
sender?: boolean | UserDefaultArgs<ExtArgs>
|
|
41368
|
+
receiver?: boolean | UserDefaultArgs<ExtArgs>
|
|
41369
|
+
}, ExtArgs["result"]["message"]>
|
|
41370
|
+
|
|
41371
|
+
export type MessageSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
41372
|
+
id?: boolean
|
|
41373
|
+
sender_id?: boolean
|
|
41374
|
+
receiver_id?: boolean
|
|
41375
|
+
message?: boolean
|
|
41376
|
+
created_at?: boolean
|
|
41377
|
+
updated_at?: boolean
|
|
41378
|
+
created_by?: boolean
|
|
41379
|
+
updated_by?: boolean
|
|
41380
|
+
is_active?: boolean
|
|
41381
|
+
sender?: boolean | UserDefaultArgs<ExtArgs>
|
|
41382
|
+
receiver?: boolean | UserDefaultArgs<ExtArgs>
|
|
41383
|
+
}, ExtArgs["result"]["message"]>
|
|
41384
|
+
|
|
41385
|
+
export type MessageSelectScalar = {
|
|
41386
|
+
id?: boolean
|
|
41387
|
+
sender_id?: boolean
|
|
41388
|
+
receiver_id?: boolean
|
|
41389
|
+
message?: boolean
|
|
41390
|
+
created_at?: boolean
|
|
41391
|
+
updated_at?: boolean
|
|
41392
|
+
created_by?: boolean
|
|
41393
|
+
updated_by?: boolean
|
|
41394
|
+
is_active?: boolean
|
|
41395
|
+
}
|
|
41396
|
+
|
|
41397
|
+
export type MessageOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "sender_id" | "receiver_id" | "message" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active", ExtArgs["result"]["message"]>
|
|
41398
|
+
export type MessageInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
41399
|
+
sender?: boolean | UserDefaultArgs<ExtArgs>
|
|
41400
|
+
receiver?: boolean | UserDefaultArgs<ExtArgs>
|
|
41401
|
+
}
|
|
41402
|
+
export type MessageIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
41403
|
+
sender?: boolean | UserDefaultArgs<ExtArgs>
|
|
41404
|
+
receiver?: boolean | UserDefaultArgs<ExtArgs>
|
|
41405
|
+
}
|
|
41406
|
+
export type MessageIncludeUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
41407
|
+
sender?: boolean | UserDefaultArgs<ExtArgs>
|
|
41408
|
+
receiver?: boolean | UserDefaultArgs<ExtArgs>
|
|
41409
|
+
}
|
|
41410
|
+
|
|
41411
|
+
export type $MessagePayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
41412
|
+
name: "Message"
|
|
41413
|
+
objects: {
|
|
41414
|
+
sender: Prisma.$UserPayload<ExtArgs>
|
|
41415
|
+
receiver: Prisma.$UserPayload<ExtArgs>
|
|
41416
|
+
}
|
|
41417
|
+
scalars: $Extensions.GetPayloadResult<{
|
|
41418
|
+
id: string
|
|
41419
|
+
sender_id: string
|
|
41420
|
+
receiver_id: string
|
|
41421
|
+
message: string
|
|
41422
|
+
created_at: Date
|
|
41423
|
+
updated_at: Date
|
|
41424
|
+
created_by: string
|
|
41425
|
+
updated_by: string
|
|
41426
|
+
is_active: boolean
|
|
41427
|
+
}, ExtArgs["result"]["message"]>
|
|
41428
|
+
composites: {}
|
|
41429
|
+
}
|
|
41430
|
+
|
|
41431
|
+
type MessageGetPayload<S extends boolean | null | undefined | MessageDefaultArgs> = $Result.GetResult<Prisma.$MessagePayload, S>
|
|
41432
|
+
|
|
41433
|
+
type MessageCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
41434
|
+
Omit<MessageFindManyArgs, 'select' | 'include' | 'distinct' | 'omit'> & {
|
|
41435
|
+
select?: MessageCountAggregateInputType | true
|
|
41436
|
+
}
|
|
41437
|
+
|
|
41438
|
+
export interface MessageDelegate<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs, GlobalOmitOptions = {}> {
|
|
41439
|
+
[K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['Message'], meta: { name: 'Message' } }
|
|
41440
|
+
/**
|
|
41441
|
+
* Find zero or one Message that matches the filter.
|
|
41442
|
+
* @param {MessageFindUniqueArgs} args - Arguments to find a Message
|
|
41443
|
+
* @example
|
|
41444
|
+
* // Get one Message
|
|
41445
|
+
* const message = await prisma.message.findUnique({
|
|
41446
|
+
* where: {
|
|
41447
|
+
* // ... provide filter here
|
|
41448
|
+
* }
|
|
41449
|
+
* })
|
|
41450
|
+
*/
|
|
41451
|
+
findUnique<T extends MessageFindUniqueArgs>(args: SelectSubset<T, MessageFindUniqueArgs<ExtArgs>>): Prisma__MessageClient<$Result.GetResult<Prisma.$MessagePayload<ExtArgs>, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
|
41452
|
+
|
|
41453
|
+
/**
|
|
41454
|
+
* Find one Message that matches the filter or throw an error with `error.code='P2025'`
|
|
41455
|
+
* if no matches were found.
|
|
41456
|
+
* @param {MessageFindUniqueOrThrowArgs} args - Arguments to find a Message
|
|
41457
|
+
* @example
|
|
41458
|
+
* // Get one Message
|
|
41459
|
+
* const message = await prisma.message.findUniqueOrThrow({
|
|
41460
|
+
* where: {
|
|
41461
|
+
* // ... provide filter here
|
|
41462
|
+
* }
|
|
41463
|
+
* })
|
|
41464
|
+
*/
|
|
41465
|
+
findUniqueOrThrow<T extends MessageFindUniqueOrThrowArgs>(args: SelectSubset<T, MessageFindUniqueOrThrowArgs<ExtArgs>>): Prisma__MessageClient<$Result.GetResult<Prisma.$MessagePayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
|
|
41466
|
+
|
|
41467
|
+
/**
|
|
41468
|
+
* Find the first Message that matches the filter.
|
|
41469
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
41470
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
41471
|
+
* @param {MessageFindFirstArgs} args - Arguments to find a Message
|
|
41472
|
+
* @example
|
|
41473
|
+
* // Get one Message
|
|
41474
|
+
* const message = await prisma.message.findFirst({
|
|
41475
|
+
* where: {
|
|
41476
|
+
* // ... provide filter here
|
|
41477
|
+
* }
|
|
41478
|
+
* })
|
|
41479
|
+
*/
|
|
41480
|
+
findFirst<T extends MessageFindFirstArgs>(args?: SelectSubset<T, MessageFindFirstArgs<ExtArgs>>): Prisma__MessageClient<$Result.GetResult<Prisma.$MessagePayload<ExtArgs>, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
|
41481
|
+
|
|
41482
|
+
/**
|
|
41483
|
+
* Find the first Message that matches the filter or
|
|
41484
|
+
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
41485
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
41486
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
41487
|
+
* @param {MessageFindFirstOrThrowArgs} args - Arguments to find a Message
|
|
41488
|
+
* @example
|
|
41489
|
+
* // Get one Message
|
|
41490
|
+
* const message = await prisma.message.findFirstOrThrow({
|
|
41491
|
+
* where: {
|
|
41492
|
+
* // ... provide filter here
|
|
41493
|
+
* }
|
|
41494
|
+
* })
|
|
41495
|
+
*/
|
|
41496
|
+
findFirstOrThrow<T extends MessageFindFirstOrThrowArgs>(args?: SelectSubset<T, MessageFindFirstOrThrowArgs<ExtArgs>>): Prisma__MessageClient<$Result.GetResult<Prisma.$MessagePayload<ExtArgs>, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
|
|
41497
|
+
|
|
41498
|
+
/**
|
|
41499
|
+
* Find zero or more Messages that matches the filter.
|
|
41500
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
41501
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
41502
|
+
* @param {MessageFindManyArgs} args - Arguments to filter and select certain fields only.
|
|
41503
|
+
* @example
|
|
41504
|
+
* // Get all Messages
|
|
41505
|
+
* const messages = await prisma.message.findMany()
|
|
41506
|
+
*
|
|
41507
|
+
* // Get first 10 Messages
|
|
41508
|
+
* const messages = await prisma.message.findMany({ take: 10 })
|
|
41509
|
+
*
|
|
41510
|
+
* // Only select the `id`
|
|
41511
|
+
* const messageWithIdOnly = await prisma.message.findMany({ select: { id: true } })
|
|
41512
|
+
*
|
|
41513
|
+
*/
|
|
41514
|
+
findMany<T extends MessageFindManyArgs>(args?: SelectSubset<T, MessageFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$MessagePayload<ExtArgs>, T, "findMany", GlobalOmitOptions>>
|
|
41515
|
+
|
|
41516
|
+
/**
|
|
41517
|
+
* Create a Message.
|
|
41518
|
+
* @param {MessageCreateArgs} args - Arguments to create a Message.
|
|
41519
|
+
* @example
|
|
41520
|
+
* // Create one Message
|
|
41521
|
+
* const Message = await prisma.message.create({
|
|
41522
|
+
* data: {
|
|
41523
|
+
* // ... data to create a Message
|
|
41524
|
+
* }
|
|
41525
|
+
* })
|
|
41526
|
+
*
|
|
41527
|
+
*/
|
|
41528
|
+
create<T extends MessageCreateArgs>(args: SelectSubset<T, MessageCreateArgs<ExtArgs>>): Prisma__MessageClient<$Result.GetResult<Prisma.$MessagePayload<ExtArgs>, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
|
|
41529
|
+
|
|
41530
|
+
/**
|
|
41531
|
+
* Create many Messages.
|
|
41532
|
+
* @param {MessageCreateManyArgs} args - Arguments to create many Messages.
|
|
41533
|
+
* @example
|
|
41534
|
+
* // Create many Messages
|
|
41535
|
+
* const message = await prisma.message.createMany({
|
|
41536
|
+
* data: [
|
|
41537
|
+
* // ... provide data here
|
|
41538
|
+
* ]
|
|
41539
|
+
* })
|
|
41540
|
+
*
|
|
41541
|
+
*/
|
|
41542
|
+
createMany<T extends MessageCreateManyArgs>(args?: SelectSubset<T, MessageCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
41543
|
+
|
|
41544
|
+
/**
|
|
41545
|
+
* Create many Messages and returns the data saved in the database.
|
|
41546
|
+
* @param {MessageCreateManyAndReturnArgs} args - Arguments to create many Messages.
|
|
41547
|
+
* @example
|
|
41548
|
+
* // Create many Messages
|
|
41549
|
+
* const message = await prisma.message.createManyAndReturn({
|
|
41550
|
+
* data: [
|
|
41551
|
+
* // ... provide data here
|
|
41552
|
+
* ]
|
|
41553
|
+
* })
|
|
41554
|
+
*
|
|
41555
|
+
* // Create many Messages and only return the `id`
|
|
41556
|
+
* const messageWithIdOnly = await prisma.message.createManyAndReturn({
|
|
41557
|
+
* select: { id: true },
|
|
41558
|
+
* data: [
|
|
41559
|
+
* // ... provide data here
|
|
41560
|
+
* ]
|
|
41561
|
+
* })
|
|
41562
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
41563
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
41564
|
+
*
|
|
41565
|
+
*/
|
|
41566
|
+
createManyAndReturn<T extends MessageCreateManyAndReturnArgs>(args?: SelectSubset<T, MessageCreateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$MessagePayload<ExtArgs>, T, "createManyAndReturn", GlobalOmitOptions>>
|
|
41567
|
+
|
|
41568
|
+
/**
|
|
41569
|
+
* Delete a Message.
|
|
41570
|
+
* @param {MessageDeleteArgs} args - Arguments to delete one Message.
|
|
41571
|
+
* @example
|
|
41572
|
+
* // Delete one Message
|
|
41573
|
+
* const Message = await prisma.message.delete({
|
|
41574
|
+
* where: {
|
|
41575
|
+
* // ... filter to delete one Message
|
|
41576
|
+
* }
|
|
41577
|
+
* })
|
|
41578
|
+
*
|
|
41579
|
+
*/
|
|
41580
|
+
delete<T extends MessageDeleteArgs>(args: SelectSubset<T, MessageDeleteArgs<ExtArgs>>): Prisma__MessageClient<$Result.GetResult<Prisma.$MessagePayload<ExtArgs>, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
|
|
41581
|
+
|
|
41582
|
+
/**
|
|
41583
|
+
* Update one Message.
|
|
41584
|
+
* @param {MessageUpdateArgs} args - Arguments to update one Message.
|
|
41585
|
+
* @example
|
|
41586
|
+
* // Update one Message
|
|
41587
|
+
* const message = await prisma.message.update({
|
|
41588
|
+
* where: {
|
|
41589
|
+
* // ... provide filter here
|
|
41590
|
+
* },
|
|
41591
|
+
* data: {
|
|
41592
|
+
* // ... provide data here
|
|
41593
|
+
* }
|
|
41594
|
+
* })
|
|
41595
|
+
*
|
|
41596
|
+
*/
|
|
41597
|
+
update<T extends MessageUpdateArgs>(args: SelectSubset<T, MessageUpdateArgs<ExtArgs>>): Prisma__MessageClient<$Result.GetResult<Prisma.$MessagePayload<ExtArgs>, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
|
|
41598
|
+
|
|
41599
|
+
/**
|
|
41600
|
+
* Delete zero or more Messages.
|
|
41601
|
+
* @param {MessageDeleteManyArgs} args - Arguments to filter Messages to delete.
|
|
41602
|
+
* @example
|
|
41603
|
+
* // Delete a few Messages
|
|
41604
|
+
* const { count } = await prisma.message.deleteMany({
|
|
41605
|
+
* where: {
|
|
41606
|
+
* // ... provide filter here
|
|
41607
|
+
* }
|
|
41608
|
+
* })
|
|
41609
|
+
*
|
|
41610
|
+
*/
|
|
41611
|
+
deleteMany<T extends MessageDeleteManyArgs>(args?: SelectSubset<T, MessageDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
41612
|
+
|
|
41613
|
+
/**
|
|
41614
|
+
* Update zero or more Messages.
|
|
41615
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
41616
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
41617
|
+
* @param {MessageUpdateManyArgs} args - Arguments to update one or more rows.
|
|
41618
|
+
* @example
|
|
41619
|
+
* // Update many Messages
|
|
41620
|
+
* const message = await prisma.message.updateMany({
|
|
41621
|
+
* where: {
|
|
41622
|
+
* // ... provide filter here
|
|
41623
|
+
* },
|
|
41624
|
+
* data: {
|
|
41625
|
+
* // ... provide data here
|
|
41626
|
+
* }
|
|
41627
|
+
* })
|
|
41628
|
+
*
|
|
41629
|
+
*/
|
|
41630
|
+
updateMany<T extends MessageUpdateManyArgs>(args: SelectSubset<T, MessageUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
41631
|
+
|
|
41632
|
+
/**
|
|
41633
|
+
* Update zero or more Messages and returns the data updated in the database.
|
|
41634
|
+
* @param {MessageUpdateManyAndReturnArgs} args - Arguments to update many Messages.
|
|
41635
|
+
* @example
|
|
41636
|
+
* // Update many Messages
|
|
41637
|
+
* const message = await prisma.message.updateManyAndReturn({
|
|
41638
|
+
* where: {
|
|
41639
|
+
* // ... provide filter here
|
|
41640
|
+
* },
|
|
41641
|
+
* data: [
|
|
41642
|
+
* // ... provide data here
|
|
41643
|
+
* ]
|
|
41644
|
+
* })
|
|
41645
|
+
*
|
|
41646
|
+
* // Update zero or more Messages and only return the `id`
|
|
41647
|
+
* const messageWithIdOnly = await prisma.message.updateManyAndReturn({
|
|
41648
|
+
* select: { id: true },
|
|
41649
|
+
* where: {
|
|
41650
|
+
* // ... provide filter here
|
|
41651
|
+
* },
|
|
41652
|
+
* data: [
|
|
41653
|
+
* // ... provide data here
|
|
41654
|
+
* ]
|
|
41655
|
+
* })
|
|
41656
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
41657
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
41658
|
+
*
|
|
41659
|
+
*/
|
|
41660
|
+
updateManyAndReturn<T extends MessageUpdateManyAndReturnArgs>(args: SelectSubset<T, MessageUpdateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$MessagePayload<ExtArgs>, T, "updateManyAndReturn", GlobalOmitOptions>>
|
|
41661
|
+
|
|
41662
|
+
/**
|
|
41663
|
+
* Create or update one Message.
|
|
41664
|
+
* @param {MessageUpsertArgs} args - Arguments to update or create a Message.
|
|
41665
|
+
* @example
|
|
41666
|
+
* // Update or create a Message
|
|
41667
|
+
* const message = await prisma.message.upsert({
|
|
41668
|
+
* create: {
|
|
41669
|
+
* // ... data to create a Message
|
|
41670
|
+
* },
|
|
41671
|
+
* update: {
|
|
41672
|
+
* // ... in case it already exists, update
|
|
41673
|
+
* },
|
|
41674
|
+
* where: {
|
|
41675
|
+
* // ... the filter for the Message we want to update
|
|
41676
|
+
* }
|
|
41677
|
+
* })
|
|
41678
|
+
*/
|
|
41679
|
+
upsert<T extends MessageUpsertArgs>(args: SelectSubset<T, MessageUpsertArgs<ExtArgs>>): Prisma__MessageClient<$Result.GetResult<Prisma.$MessagePayload<ExtArgs>, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
|
|
41680
|
+
|
|
41681
|
+
|
|
41682
|
+
/**
|
|
41683
|
+
* Count the number of Messages.
|
|
41684
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
41685
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
41686
|
+
* @param {MessageCountArgs} args - Arguments to filter Messages to count.
|
|
41687
|
+
* @example
|
|
41688
|
+
* // Count the number of Messages
|
|
41689
|
+
* const count = await prisma.message.count({
|
|
41690
|
+
* where: {
|
|
41691
|
+
* // ... the filter for the Messages we want to count
|
|
41692
|
+
* }
|
|
41693
|
+
* })
|
|
41694
|
+
**/
|
|
41695
|
+
count<T extends MessageCountArgs>(
|
|
41696
|
+
args?: Subset<T, MessageCountArgs>,
|
|
41697
|
+
): Prisma.PrismaPromise<
|
|
41698
|
+
T extends $Utils.Record<'select', any>
|
|
41699
|
+
? T['select'] extends true
|
|
41700
|
+
? number
|
|
41701
|
+
: GetScalarType<T['select'], MessageCountAggregateOutputType>
|
|
41702
|
+
: number
|
|
41703
|
+
>
|
|
41704
|
+
|
|
41705
|
+
/**
|
|
41706
|
+
* Allows you to perform aggregations operations on a Message.
|
|
41707
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
41708
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
41709
|
+
* @param {MessageAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
|
|
41710
|
+
* @example
|
|
41711
|
+
* // Ordered by age ascending
|
|
41712
|
+
* // Where email contains prisma.io
|
|
41713
|
+
* // Limited to the 10 users
|
|
41714
|
+
* const aggregations = await prisma.user.aggregate({
|
|
41715
|
+
* _avg: {
|
|
41716
|
+
* age: true,
|
|
41717
|
+
* },
|
|
41718
|
+
* where: {
|
|
41719
|
+
* email: {
|
|
41720
|
+
* contains: "prisma.io",
|
|
41721
|
+
* },
|
|
41722
|
+
* },
|
|
41723
|
+
* orderBy: {
|
|
41724
|
+
* age: "asc",
|
|
41725
|
+
* },
|
|
41726
|
+
* take: 10,
|
|
41727
|
+
* })
|
|
41728
|
+
**/
|
|
41729
|
+
aggregate<T extends MessageAggregateArgs>(args: Subset<T, MessageAggregateArgs>): Prisma.PrismaPromise<GetMessageAggregateType<T>>
|
|
41730
|
+
|
|
41731
|
+
/**
|
|
41732
|
+
* Group by Message.
|
|
41733
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
41734
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
41735
|
+
* @param {MessageGroupByArgs} args - Group by arguments.
|
|
41736
|
+
* @example
|
|
41737
|
+
* // Group by city, order by createdAt, get count
|
|
41738
|
+
* const result = await prisma.user.groupBy({
|
|
41739
|
+
* by: ['city', 'createdAt'],
|
|
41740
|
+
* orderBy: {
|
|
41741
|
+
* createdAt: true
|
|
41742
|
+
* },
|
|
41743
|
+
* _count: {
|
|
41744
|
+
* _all: true
|
|
41745
|
+
* },
|
|
41746
|
+
* })
|
|
41747
|
+
*
|
|
41748
|
+
**/
|
|
41749
|
+
groupBy<
|
|
41750
|
+
T extends MessageGroupByArgs,
|
|
41751
|
+
HasSelectOrTake extends Or<
|
|
41752
|
+
Extends<'skip', Keys<T>>,
|
|
41753
|
+
Extends<'take', Keys<T>>
|
|
41754
|
+
>,
|
|
41755
|
+
OrderByArg extends True extends HasSelectOrTake
|
|
41756
|
+
? { orderBy: MessageGroupByArgs['orderBy'] }
|
|
41757
|
+
: { orderBy?: MessageGroupByArgs['orderBy'] },
|
|
40524
41758
|
OrderFields extends ExcludeUnderscoreKeys<Keys<MaybeTupleToUnion<T['orderBy']>>>,
|
|
40525
41759
|
ByFields extends MaybeTupleToUnion<T['by']>,
|
|
40526
41760
|
ByValid extends Has<ByFields, OrderFields>,
|
|
@@ -56511,6 +57745,7 @@ export namespace Prisma {
|
|
|
56511
57745
|
status: 'status',
|
|
56512
57746
|
cancel_reason: 'cancel_reason',
|
|
56513
57747
|
solution_url: 'solution_url',
|
|
57748
|
+
zip_url: 'zip_url',
|
|
56514
57749
|
scheduled_start_time: 'scheduled_start_time',
|
|
56515
57750
|
scheduled_end_time: 'scheduled_end_time',
|
|
56516
57751
|
created_at: 'created_at',
|
|
@@ -56900,6 +58135,20 @@ export namespace Prisma {
|
|
|
56900
58135
|
export type JobProfileScalarFieldEnum = (typeof JobProfileScalarFieldEnum)[keyof typeof JobProfileScalarFieldEnum]
|
|
56901
58136
|
|
|
56902
58137
|
|
|
58138
|
+
export const LiveAnalysisScalarFieldEnum: {
|
|
58139
|
+
id: 'id',
|
|
58140
|
+
interview_id: 'interview_id',
|
|
58141
|
+
analysis: 'analysis',
|
|
58142
|
+
created_at: 'created_at',
|
|
58143
|
+
updated_at: 'updated_at',
|
|
58144
|
+
created_by: 'created_by',
|
|
58145
|
+
updated_by: 'updated_by',
|
|
58146
|
+
is_active: 'is_active'
|
|
58147
|
+
};
|
|
58148
|
+
|
|
58149
|
+
export type LiveAnalysisScalarFieldEnum = (typeof LiveAnalysisScalarFieldEnum)[keyof typeof LiveAnalysisScalarFieldEnum]
|
|
58150
|
+
|
|
58151
|
+
|
|
56903
58152
|
export const MessageScalarFieldEnum: {
|
|
56904
58153
|
id: 'id',
|
|
56905
58154
|
sender_id: 'sender_id',
|
|
@@ -58627,6 +59876,7 @@ export namespace Prisma {
|
|
|
58627
59876
|
status?: EnumAssignmentStatusFilter<"Assignment"> | $Enums.AssignmentStatus
|
|
58628
59877
|
cancel_reason?: StringNullableFilter<"Assignment"> | string | null
|
|
58629
59878
|
solution_url?: StringNullableFilter<"Assignment"> | string | null
|
|
59879
|
+
zip_url?: StringNullableFilter<"Assignment"> | string | null
|
|
58630
59880
|
scheduled_start_time?: DateTimeNullableFilter<"Assignment"> | Date | string | null
|
|
58631
59881
|
scheduled_end_time?: DateTimeNullableFilter<"Assignment"> | Date | string | null
|
|
58632
59882
|
created_at?: DateTimeFilter<"Assignment"> | Date | string
|
|
@@ -58657,6 +59907,7 @@ export namespace Prisma {
|
|
|
58657
59907
|
status?: SortOrder
|
|
58658
59908
|
cancel_reason?: SortOrderInput | SortOrder
|
|
58659
59909
|
solution_url?: SortOrderInput | SortOrder
|
|
59910
|
+
zip_url?: SortOrderInput | SortOrder
|
|
58660
59911
|
scheduled_start_time?: SortOrderInput | SortOrder
|
|
58661
59912
|
scheduled_end_time?: SortOrderInput | SortOrder
|
|
58662
59913
|
created_at?: SortOrder
|
|
@@ -58691,6 +59942,7 @@ export namespace Prisma {
|
|
|
58691
59942
|
status?: EnumAssignmentStatusFilter<"Assignment"> | $Enums.AssignmentStatus
|
|
58692
59943
|
cancel_reason?: StringNullableFilter<"Assignment"> | string | null
|
|
58693
59944
|
solution_url?: StringNullableFilter<"Assignment"> | string | null
|
|
59945
|
+
zip_url?: StringNullableFilter<"Assignment"> | string | null
|
|
58694
59946
|
scheduled_start_time?: DateTimeNullableFilter<"Assignment"> | Date | string | null
|
|
58695
59947
|
scheduled_end_time?: DateTimeNullableFilter<"Assignment"> | Date | string | null
|
|
58696
59948
|
created_at?: DateTimeFilter<"Assignment"> | Date | string
|
|
@@ -58721,6 +59973,7 @@ export namespace Prisma {
|
|
|
58721
59973
|
status?: SortOrder
|
|
58722
59974
|
cancel_reason?: SortOrderInput | SortOrder
|
|
58723
59975
|
solution_url?: SortOrderInput | SortOrder
|
|
59976
|
+
zip_url?: SortOrderInput | SortOrder
|
|
58724
59977
|
scheduled_start_time?: SortOrderInput | SortOrder
|
|
58725
59978
|
scheduled_end_time?: SortOrderInput | SortOrder
|
|
58726
59979
|
created_at?: SortOrder
|
|
@@ -58752,6 +60005,7 @@ export namespace Prisma {
|
|
|
58752
60005
|
status?: EnumAssignmentStatusWithAggregatesFilter<"Assignment"> | $Enums.AssignmentStatus
|
|
58753
60006
|
cancel_reason?: StringNullableWithAggregatesFilter<"Assignment"> | string | null
|
|
58754
60007
|
solution_url?: StringNullableWithAggregatesFilter<"Assignment"> | string | null
|
|
60008
|
+
zip_url?: StringNullableWithAggregatesFilter<"Assignment"> | string | null
|
|
58755
60009
|
scheduled_start_time?: DateTimeNullableWithAggregatesFilter<"Assignment"> | Date | string | null
|
|
58756
60010
|
scheduled_end_time?: DateTimeNullableWithAggregatesFilter<"Assignment"> | Date | string | null
|
|
58757
60011
|
created_at?: DateTimeWithAggregatesFilter<"Assignment"> | Date | string
|
|
@@ -60119,6 +61373,7 @@ export namespace Prisma {
|
|
|
60119
61373
|
suggestions?: SuggestionListRelationFilter
|
|
60120
61374
|
feedback?: FeedbackListRelationFilter
|
|
60121
61375
|
interviewNotes?: InterviewNotesListRelationFilter
|
|
61376
|
+
liveAnalysis?: LiveAnalysisListRelationFilter
|
|
60122
61377
|
}
|
|
60123
61378
|
|
|
60124
61379
|
export type InterviewOrderByWithRelationInput = {
|
|
@@ -60166,6 +61421,7 @@ export namespace Prisma {
|
|
|
60166
61421
|
suggestions?: SuggestionOrderByRelationAggregateInput
|
|
60167
61422
|
feedback?: FeedbackOrderByRelationAggregateInput
|
|
60168
61423
|
interviewNotes?: InterviewNotesOrderByRelationAggregateInput
|
|
61424
|
+
liveAnalysis?: LiveAnalysisOrderByRelationAggregateInput
|
|
60169
61425
|
}
|
|
60170
61426
|
|
|
60171
61427
|
export type InterviewWhereUniqueInput = Prisma.AtLeast<{
|
|
@@ -60217,6 +61473,7 @@ export namespace Prisma {
|
|
|
60217
61473
|
suggestions?: SuggestionListRelationFilter
|
|
60218
61474
|
feedback?: FeedbackListRelationFilter
|
|
60219
61475
|
interviewNotes?: InterviewNotesListRelationFilter
|
|
61476
|
+
liveAnalysis?: LiveAnalysisListRelationFilter
|
|
60220
61477
|
}, "id" | "interviewer_id_candidate_id_evaluation_plan_id">
|
|
60221
61478
|
|
|
60222
61479
|
export type InterviewOrderByWithAggregationInput = {
|
|
@@ -60797,6 +62054,76 @@ export namespace Prisma {
|
|
|
60797
62054
|
is_active?: BoolWithAggregatesFilter<"JobProfile"> | boolean
|
|
60798
62055
|
}
|
|
60799
62056
|
|
|
62057
|
+
export type LiveAnalysisWhereInput = {
|
|
62058
|
+
AND?: LiveAnalysisWhereInput | LiveAnalysisWhereInput[]
|
|
62059
|
+
OR?: LiveAnalysisWhereInput[]
|
|
62060
|
+
NOT?: LiveAnalysisWhereInput | LiveAnalysisWhereInput[]
|
|
62061
|
+
id?: StringFilter<"LiveAnalysis"> | string
|
|
62062
|
+
interview_id?: StringFilter<"LiveAnalysis"> | string
|
|
62063
|
+
analysis?: JsonFilter<"LiveAnalysis">
|
|
62064
|
+
created_at?: DateTimeFilter<"LiveAnalysis"> | Date | string
|
|
62065
|
+
updated_at?: DateTimeFilter<"LiveAnalysis"> | Date | string
|
|
62066
|
+
created_by?: StringFilter<"LiveAnalysis"> | string
|
|
62067
|
+
updated_by?: StringFilter<"LiveAnalysis"> | string
|
|
62068
|
+
is_active?: BoolFilter<"LiveAnalysis"> | boolean
|
|
62069
|
+
interview?: XOR<InterviewScalarRelationFilter, InterviewWhereInput>
|
|
62070
|
+
}
|
|
62071
|
+
|
|
62072
|
+
export type LiveAnalysisOrderByWithRelationInput = {
|
|
62073
|
+
id?: SortOrder
|
|
62074
|
+
interview_id?: SortOrder
|
|
62075
|
+
analysis?: SortOrder
|
|
62076
|
+
created_at?: SortOrder
|
|
62077
|
+
updated_at?: SortOrder
|
|
62078
|
+
created_by?: SortOrder
|
|
62079
|
+
updated_by?: SortOrder
|
|
62080
|
+
is_active?: SortOrder
|
|
62081
|
+
interview?: InterviewOrderByWithRelationInput
|
|
62082
|
+
}
|
|
62083
|
+
|
|
62084
|
+
export type LiveAnalysisWhereUniqueInput = Prisma.AtLeast<{
|
|
62085
|
+
id?: string
|
|
62086
|
+
AND?: LiveAnalysisWhereInput | LiveAnalysisWhereInput[]
|
|
62087
|
+
OR?: LiveAnalysisWhereInput[]
|
|
62088
|
+
NOT?: LiveAnalysisWhereInput | LiveAnalysisWhereInput[]
|
|
62089
|
+
interview_id?: StringFilter<"LiveAnalysis"> | string
|
|
62090
|
+
analysis?: JsonFilter<"LiveAnalysis">
|
|
62091
|
+
created_at?: DateTimeFilter<"LiveAnalysis"> | Date | string
|
|
62092
|
+
updated_at?: DateTimeFilter<"LiveAnalysis"> | Date | string
|
|
62093
|
+
created_by?: StringFilter<"LiveAnalysis"> | string
|
|
62094
|
+
updated_by?: StringFilter<"LiveAnalysis"> | string
|
|
62095
|
+
is_active?: BoolFilter<"LiveAnalysis"> | boolean
|
|
62096
|
+
interview?: XOR<InterviewScalarRelationFilter, InterviewWhereInput>
|
|
62097
|
+
}, "id">
|
|
62098
|
+
|
|
62099
|
+
export type LiveAnalysisOrderByWithAggregationInput = {
|
|
62100
|
+
id?: SortOrder
|
|
62101
|
+
interview_id?: SortOrder
|
|
62102
|
+
analysis?: SortOrder
|
|
62103
|
+
created_at?: SortOrder
|
|
62104
|
+
updated_at?: SortOrder
|
|
62105
|
+
created_by?: SortOrder
|
|
62106
|
+
updated_by?: SortOrder
|
|
62107
|
+
is_active?: SortOrder
|
|
62108
|
+
_count?: LiveAnalysisCountOrderByAggregateInput
|
|
62109
|
+
_max?: LiveAnalysisMaxOrderByAggregateInput
|
|
62110
|
+
_min?: LiveAnalysisMinOrderByAggregateInput
|
|
62111
|
+
}
|
|
62112
|
+
|
|
62113
|
+
export type LiveAnalysisScalarWhereWithAggregatesInput = {
|
|
62114
|
+
AND?: LiveAnalysisScalarWhereWithAggregatesInput | LiveAnalysisScalarWhereWithAggregatesInput[]
|
|
62115
|
+
OR?: LiveAnalysisScalarWhereWithAggregatesInput[]
|
|
62116
|
+
NOT?: LiveAnalysisScalarWhereWithAggregatesInput | LiveAnalysisScalarWhereWithAggregatesInput[]
|
|
62117
|
+
id?: StringWithAggregatesFilter<"LiveAnalysis"> | string
|
|
62118
|
+
interview_id?: StringWithAggregatesFilter<"LiveAnalysis"> | string
|
|
62119
|
+
analysis?: JsonWithAggregatesFilter<"LiveAnalysis">
|
|
62120
|
+
created_at?: DateTimeWithAggregatesFilter<"LiveAnalysis"> | Date | string
|
|
62121
|
+
updated_at?: DateTimeWithAggregatesFilter<"LiveAnalysis"> | Date | string
|
|
62122
|
+
created_by?: StringWithAggregatesFilter<"LiveAnalysis"> | string
|
|
62123
|
+
updated_by?: StringWithAggregatesFilter<"LiveAnalysis"> | string
|
|
62124
|
+
is_active?: BoolWithAggregatesFilter<"LiveAnalysis"> | boolean
|
|
62125
|
+
}
|
|
62126
|
+
|
|
60800
62127
|
export type MessageWhereInput = {
|
|
60801
62128
|
AND?: MessageWhereInput | MessageWhereInput[]
|
|
60802
62129
|
OR?: MessageWhereInput[]
|
|
@@ -63258,6 +64585,7 @@ export namespace Prisma {
|
|
|
63258
64585
|
status?: $Enums.AssignmentStatus
|
|
63259
64586
|
cancel_reason?: string | null
|
|
63260
64587
|
solution_url?: string | null
|
|
64588
|
+
zip_url?: string | null
|
|
63261
64589
|
scheduled_start_time?: Date | string | null
|
|
63262
64590
|
scheduled_end_time?: Date | string | null
|
|
63263
64591
|
created_at?: Date | string
|
|
@@ -63288,6 +64616,7 @@ export namespace Prisma {
|
|
|
63288
64616
|
status?: $Enums.AssignmentStatus
|
|
63289
64617
|
cancel_reason?: string | null
|
|
63290
64618
|
solution_url?: string | null
|
|
64619
|
+
zip_url?: string | null
|
|
63291
64620
|
scheduled_start_time?: Date | string | null
|
|
63292
64621
|
scheduled_end_time?: Date | string | null
|
|
63293
64622
|
created_at?: Date | string
|
|
@@ -63304,6 +64633,7 @@ export namespace Prisma {
|
|
|
63304
64633
|
status?: EnumAssignmentStatusFieldUpdateOperationsInput | $Enums.AssignmentStatus
|
|
63305
64634
|
cancel_reason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63306
64635
|
solution_url?: NullableStringFieldUpdateOperationsInput | string | null
|
|
64636
|
+
zip_url?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63307
64637
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
63308
64638
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
63309
64639
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -63334,6 +64664,7 @@ export namespace Prisma {
|
|
|
63334
64664
|
status?: EnumAssignmentStatusFieldUpdateOperationsInput | $Enums.AssignmentStatus
|
|
63335
64665
|
cancel_reason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63336
64666
|
solution_url?: NullableStringFieldUpdateOperationsInput | string | null
|
|
64667
|
+
zip_url?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63337
64668
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
63338
64669
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
63339
64670
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -63357,6 +64688,7 @@ export namespace Prisma {
|
|
|
63357
64688
|
status?: $Enums.AssignmentStatus
|
|
63358
64689
|
cancel_reason?: string | null
|
|
63359
64690
|
solution_url?: string | null
|
|
64691
|
+
zip_url?: string | null
|
|
63360
64692
|
scheduled_start_time?: Date | string | null
|
|
63361
64693
|
scheduled_end_time?: Date | string | null
|
|
63362
64694
|
created_at?: Date | string
|
|
@@ -63373,6 +64705,7 @@ export namespace Prisma {
|
|
|
63373
64705
|
status?: EnumAssignmentStatusFieldUpdateOperationsInput | $Enums.AssignmentStatus
|
|
63374
64706
|
cancel_reason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63375
64707
|
solution_url?: NullableStringFieldUpdateOperationsInput | string | null
|
|
64708
|
+
zip_url?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63376
64709
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
63377
64710
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
63378
64711
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -63396,6 +64729,7 @@ export namespace Prisma {
|
|
|
63396
64729
|
status?: EnumAssignmentStatusFieldUpdateOperationsInput | $Enums.AssignmentStatus
|
|
63397
64730
|
cancel_reason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63398
64731
|
solution_url?: NullableStringFieldUpdateOperationsInput | string | null
|
|
64732
|
+
zip_url?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63399
64733
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
63400
64734
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
63401
64735
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -64958,6 +66292,7 @@ export namespace Prisma {
|
|
|
64958
66292
|
suggestions?: SuggestionCreateNestedManyWithoutInterviewInput
|
|
64959
66293
|
feedback?: FeedbackCreateNestedManyWithoutInterviewInput
|
|
64960
66294
|
interviewNotes?: InterviewNotesCreateNestedManyWithoutInterviewInput
|
|
66295
|
+
liveAnalysis?: LiveAnalysisCreateNestedManyWithoutInterviewInput
|
|
64961
66296
|
}
|
|
64962
66297
|
|
|
64963
66298
|
export type InterviewUncheckedCreateInput = {
|
|
@@ -64998,6 +66333,7 @@ export namespace Prisma {
|
|
|
64998
66333
|
suggestions?: SuggestionUncheckedCreateNestedManyWithoutInterviewInput
|
|
64999
66334
|
feedback?: FeedbackUncheckedCreateNestedManyWithoutInterviewInput
|
|
65000
66335
|
interviewNotes?: InterviewNotesUncheckedCreateNestedManyWithoutInterviewInput
|
|
66336
|
+
liveAnalysis?: LiveAnalysisUncheckedCreateNestedManyWithoutInterviewInput
|
|
65001
66337
|
}
|
|
65002
66338
|
|
|
65003
66339
|
export type InterviewUpdateInput = {
|
|
@@ -65038,6 +66374,7 @@ export namespace Prisma {
|
|
|
65038
66374
|
suggestions?: SuggestionUpdateManyWithoutInterviewNestedInput
|
|
65039
66375
|
feedback?: FeedbackUpdateManyWithoutInterviewNestedInput
|
|
65040
66376
|
interviewNotes?: InterviewNotesUpdateManyWithoutInterviewNestedInput
|
|
66377
|
+
liveAnalysis?: LiveAnalysisUpdateManyWithoutInterviewNestedInput
|
|
65041
66378
|
}
|
|
65042
66379
|
|
|
65043
66380
|
export type InterviewUncheckedUpdateInput = {
|
|
@@ -65078,6 +66415,7 @@ export namespace Prisma {
|
|
|
65078
66415
|
suggestions?: SuggestionUncheckedUpdateManyWithoutInterviewNestedInput
|
|
65079
66416
|
feedback?: FeedbackUncheckedUpdateManyWithoutInterviewNestedInput
|
|
65080
66417
|
interviewNotes?: InterviewNotesUncheckedUpdateManyWithoutInterviewNestedInput
|
|
66418
|
+
liveAnalysis?: LiveAnalysisUncheckedUpdateManyWithoutInterviewNestedInput
|
|
65081
66419
|
}
|
|
65082
66420
|
|
|
65083
66421
|
export type InterviewCreateManyInput = {
|
|
@@ -65762,6 +67100,82 @@ export namespace Prisma {
|
|
|
65762
67100
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
65763
67101
|
}
|
|
65764
67102
|
|
|
67103
|
+
export type LiveAnalysisCreateInput = {
|
|
67104
|
+
id?: string
|
|
67105
|
+
analysis: JsonNullValueInput | InputJsonValue
|
|
67106
|
+
created_at?: Date | string
|
|
67107
|
+
updated_at?: Date | string
|
|
67108
|
+
created_by: string
|
|
67109
|
+
updated_by: string
|
|
67110
|
+
is_active?: boolean
|
|
67111
|
+
interview: InterviewCreateNestedOneWithoutLiveAnalysisInput
|
|
67112
|
+
}
|
|
67113
|
+
|
|
67114
|
+
export type LiveAnalysisUncheckedCreateInput = {
|
|
67115
|
+
id?: string
|
|
67116
|
+
interview_id: string
|
|
67117
|
+
analysis: JsonNullValueInput | InputJsonValue
|
|
67118
|
+
created_at?: Date | string
|
|
67119
|
+
updated_at?: Date | string
|
|
67120
|
+
created_by: string
|
|
67121
|
+
updated_by: string
|
|
67122
|
+
is_active?: boolean
|
|
67123
|
+
}
|
|
67124
|
+
|
|
67125
|
+
export type LiveAnalysisUpdateInput = {
|
|
67126
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
67127
|
+
analysis?: JsonNullValueInput | InputJsonValue
|
|
67128
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
67129
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
67130
|
+
created_by?: StringFieldUpdateOperationsInput | string
|
|
67131
|
+
updated_by?: StringFieldUpdateOperationsInput | string
|
|
67132
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
67133
|
+
interview?: InterviewUpdateOneRequiredWithoutLiveAnalysisNestedInput
|
|
67134
|
+
}
|
|
67135
|
+
|
|
67136
|
+
export type LiveAnalysisUncheckedUpdateInput = {
|
|
67137
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
67138
|
+
interview_id?: StringFieldUpdateOperationsInput | string
|
|
67139
|
+
analysis?: JsonNullValueInput | InputJsonValue
|
|
67140
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
67141
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
67142
|
+
created_by?: StringFieldUpdateOperationsInput | string
|
|
67143
|
+
updated_by?: StringFieldUpdateOperationsInput | string
|
|
67144
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
67145
|
+
}
|
|
67146
|
+
|
|
67147
|
+
export type LiveAnalysisCreateManyInput = {
|
|
67148
|
+
id?: string
|
|
67149
|
+
interview_id: string
|
|
67150
|
+
analysis: JsonNullValueInput | InputJsonValue
|
|
67151
|
+
created_at?: Date | string
|
|
67152
|
+
updated_at?: Date | string
|
|
67153
|
+
created_by: string
|
|
67154
|
+
updated_by: string
|
|
67155
|
+
is_active?: boolean
|
|
67156
|
+
}
|
|
67157
|
+
|
|
67158
|
+
export type LiveAnalysisUpdateManyMutationInput = {
|
|
67159
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
67160
|
+
analysis?: JsonNullValueInput | InputJsonValue
|
|
67161
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
67162
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
67163
|
+
created_by?: StringFieldUpdateOperationsInput | string
|
|
67164
|
+
updated_by?: StringFieldUpdateOperationsInput | string
|
|
67165
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
67166
|
+
}
|
|
67167
|
+
|
|
67168
|
+
export type LiveAnalysisUncheckedUpdateManyInput = {
|
|
67169
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
67170
|
+
interview_id?: StringFieldUpdateOperationsInput | string
|
|
67171
|
+
analysis?: JsonNullValueInput | InputJsonValue
|
|
67172
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
67173
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
67174
|
+
created_by?: StringFieldUpdateOperationsInput | string
|
|
67175
|
+
updated_by?: StringFieldUpdateOperationsInput | string
|
|
67176
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
67177
|
+
}
|
|
67178
|
+
|
|
65765
67179
|
export type MessageCreateInput = {
|
|
65766
67180
|
id?: string
|
|
65767
67181
|
message: string
|
|
@@ -68526,6 +69940,7 @@ export namespace Prisma {
|
|
|
68526
69940
|
status?: SortOrder
|
|
68527
69941
|
cancel_reason?: SortOrder
|
|
68528
69942
|
solution_url?: SortOrder
|
|
69943
|
+
zip_url?: SortOrder
|
|
68529
69944
|
scheduled_start_time?: SortOrder
|
|
68530
69945
|
scheduled_end_time?: SortOrder
|
|
68531
69946
|
created_at?: SortOrder
|
|
@@ -68552,6 +69967,7 @@ export namespace Prisma {
|
|
|
68552
69967
|
status?: SortOrder
|
|
68553
69968
|
cancel_reason?: SortOrder
|
|
68554
69969
|
solution_url?: SortOrder
|
|
69970
|
+
zip_url?: SortOrder
|
|
68555
69971
|
scheduled_start_time?: SortOrder
|
|
68556
69972
|
scheduled_end_time?: SortOrder
|
|
68557
69973
|
created_at?: SortOrder
|
|
@@ -68574,6 +69990,7 @@ export namespace Prisma {
|
|
|
68574
69990
|
status?: SortOrder
|
|
68575
69991
|
cancel_reason?: SortOrder
|
|
68576
69992
|
solution_url?: SortOrder
|
|
69993
|
+
zip_url?: SortOrder
|
|
68577
69994
|
scheduled_start_time?: SortOrder
|
|
68578
69995
|
scheduled_end_time?: SortOrder
|
|
68579
69996
|
created_at?: SortOrder
|
|
@@ -69648,6 +71065,12 @@ export namespace Prisma {
|
|
|
69648
71065
|
none?: InterviewNotesWhereInput
|
|
69649
71066
|
}
|
|
69650
71067
|
|
|
71068
|
+
export type LiveAnalysisListRelationFilter = {
|
|
71069
|
+
every?: LiveAnalysisWhereInput
|
|
71070
|
+
some?: LiveAnalysisWhereInput
|
|
71071
|
+
none?: LiveAnalysisWhereInput
|
|
71072
|
+
}
|
|
71073
|
+
|
|
69651
71074
|
export type TranscriptOrderByRelationAggregateInput = {
|
|
69652
71075
|
_count?: SortOrder
|
|
69653
71076
|
}
|
|
@@ -69664,6 +71087,10 @@ export namespace Prisma {
|
|
|
69664
71087
|
_count?: SortOrder
|
|
69665
71088
|
}
|
|
69666
71089
|
|
|
71090
|
+
export type LiveAnalysisOrderByRelationAggregateInput = {
|
|
71091
|
+
_count?: SortOrder
|
|
71092
|
+
}
|
|
71093
|
+
|
|
69667
71094
|
export type InterviewInterviewer_idCandidate_idEvaluation_plan_idCompoundUniqueInput = {
|
|
69668
71095
|
interviewer_id: string
|
|
69669
71096
|
candidate_id: string
|
|
@@ -70116,6 +71543,37 @@ export namespace Prisma {
|
|
|
70116
71543
|
_max?: NestedEnumJobProfileStatusFilter<$PrismaModel>
|
|
70117
71544
|
}
|
|
70118
71545
|
|
|
71546
|
+
export type LiveAnalysisCountOrderByAggregateInput = {
|
|
71547
|
+
id?: SortOrder
|
|
71548
|
+
interview_id?: SortOrder
|
|
71549
|
+
analysis?: SortOrder
|
|
71550
|
+
created_at?: SortOrder
|
|
71551
|
+
updated_at?: SortOrder
|
|
71552
|
+
created_by?: SortOrder
|
|
71553
|
+
updated_by?: SortOrder
|
|
71554
|
+
is_active?: SortOrder
|
|
71555
|
+
}
|
|
71556
|
+
|
|
71557
|
+
export type LiveAnalysisMaxOrderByAggregateInput = {
|
|
71558
|
+
id?: SortOrder
|
|
71559
|
+
interview_id?: SortOrder
|
|
71560
|
+
created_at?: SortOrder
|
|
71561
|
+
updated_at?: SortOrder
|
|
71562
|
+
created_by?: SortOrder
|
|
71563
|
+
updated_by?: SortOrder
|
|
71564
|
+
is_active?: SortOrder
|
|
71565
|
+
}
|
|
71566
|
+
|
|
71567
|
+
export type LiveAnalysisMinOrderByAggregateInput = {
|
|
71568
|
+
id?: SortOrder
|
|
71569
|
+
interview_id?: SortOrder
|
|
71570
|
+
created_at?: SortOrder
|
|
71571
|
+
updated_at?: SortOrder
|
|
71572
|
+
created_by?: SortOrder
|
|
71573
|
+
updated_by?: SortOrder
|
|
71574
|
+
is_active?: SortOrder
|
|
71575
|
+
}
|
|
71576
|
+
|
|
70119
71577
|
export type MessageCountOrderByAggregateInput = {
|
|
70120
71578
|
id?: SortOrder
|
|
70121
71579
|
sender_id?: SortOrder
|
|
@@ -72932,6 +74390,13 @@ export namespace Prisma {
|
|
|
72932
74390
|
connect?: InterviewNotesWhereUniqueInput | InterviewNotesWhereUniqueInput[]
|
|
72933
74391
|
}
|
|
72934
74392
|
|
|
74393
|
+
export type LiveAnalysisCreateNestedManyWithoutInterviewInput = {
|
|
74394
|
+
create?: XOR<LiveAnalysisCreateWithoutInterviewInput, LiveAnalysisUncheckedCreateWithoutInterviewInput> | LiveAnalysisCreateWithoutInterviewInput[] | LiveAnalysisUncheckedCreateWithoutInterviewInput[]
|
|
74395
|
+
connectOrCreate?: LiveAnalysisCreateOrConnectWithoutInterviewInput | LiveAnalysisCreateOrConnectWithoutInterviewInput[]
|
|
74396
|
+
createMany?: LiveAnalysisCreateManyInterviewInputEnvelope
|
|
74397
|
+
connect?: LiveAnalysisWhereUniqueInput | LiveAnalysisWhereUniqueInput[]
|
|
74398
|
+
}
|
|
74399
|
+
|
|
72935
74400
|
export type OngoingEvaluationUncheckedCreateNestedOneWithoutInterviewInput = {
|
|
72936
74401
|
create?: XOR<OngoingEvaluationCreateWithoutInterviewInput, OngoingEvaluationUncheckedCreateWithoutInterviewInput>
|
|
72937
74402
|
connectOrCreate?: OngoingEvaluationCreateOrConnectWithoutInterviewInput
|
|
@@ -72966,6 +74431,13 @@ export namespace Prisma {
|
|
|
72966
74431
|
connect?: InterviewNotesWhereUniqueInput | InterviewNotesWhereUniqueInput[]
|
|
72967
74432
|
}
|
|
72968
74433
|
|
|
74434
|
+
export type LiveAnalysisUncheckedCreateNestedManyWithoutInterviewInput = {
|
|
74435
|
+
create?: XOR<LiveAnalysisCreateWithoutInterviewInput, LiveAnalysisUncheckedCreateWithoutInterviewInput> | LiveAnalysisCreateWithoutInterviewInput[] | LiveAnalysisUncheckedCreateWithoutInterviewInput[]
|
|
74436
|
+
connectOrCreate?: LiveAnalysisCreateOrConnectWithoutInterviewInput | LiveAnalysisCreateOrConnectWithoutInterviewInput[]
|
|
74437
|
+
createMany?: LiveAnalysisCreateManyInterviewInputEnvelope
|
|
74438
|
+
connect?: LiveAnalysisWhereUniqueInput | LiveAnalysisWhereUniqueInput[]
|
|
74439
|
+
}
|
|
74440
|
+
|
|
72969
74441
|
export type InterviewUpdateinterview_summaryInput = {
|
|
72970
74442
|
set?: string[]
|
|
72971
74443
|
push?: string | string[]
|
|
@@ -73114,6 +74586,20 @@ export namespace Prisma {
|
|
|
73114
74586
|
deleteMany?: InterviewNotesScalarWhereInput | InterviewNotesScalarWhereInput[]
|
|
73115
74587
|
}
|
|
73116
74588
|
|
|
74589
|
+
export type LiveAnalysisUpdateManyWithoutInterviewNestedInput = {
|
|
74590
|
+
create?: XOR<LiveAnalysisCreateWithoutInterviewInput, LiveAnalysisUncheckedCreateWithoutInterviewInput> | LiveAnalysisCreateWithoutInterviewInput[] | LiveAnalysisUncheckedCreateWithoutInterviewInput[]
|
|
74591
|
+
connectOrCreate?: LiveAnalysisCreateOrConnectWithoutInterviewInput | LiveAnalysisCreateOrConnectWithoutInterviewInput[]
|
|
74592
|
+
upsert?: LiveAnalysisUpsertWithWhereUniqueWithoutInterviewInput | LiveAnalysisUpsertWithWhereUniqueWithoutInterviewInput[]
|
|
74593
|
+
createMany?: LiveAnalysisCreateManyInterviewInputEnvelope
|
|
74594
|
+
set?: LiveAnalysisWhereUniqueInput | LiveAnalysisWhereUniqueInput[]
|
|
74595
|
+
disconnect?: LiveAnalysisWhereUniqueInput | LiveAnalysisWhereUniqueInput[]
|
|
74596
|
+
delete?: LiveAnalysisWhereUniqueInput | LiveAnalysisWhereUniqueInput[]
|
|
74597
|
+
connect?: LiveAnalysisWhereUniqueInput | LiveAnalysisWhereUniqueInput[]
|
|
74598
|
+
update?: LiveAnalysisUpdateWithWhereUniqueWithoutInterviewInput | LiveAnalysisUpdateWithWhereUniqueWithoutInterviewInput[]
|
|
74599
|
+
updateMany?: LiveAnalysisUpdateManyWithWhereWithoutInterviewInput | LiveAnalysisUpdateManyWithWhereWithoutInterviewInput[]
|
|
74600
|
+
deleteMany?: LiveAnalysisScalarWhereInput | LiveAnalysisScalarWhereInput[]
|
|
74601
|
+
}
|
|
74602
|
+
|
|
73117
74603
|
export type OngoingEvaluationUncheckedUpdateOneWithoutInterviewNestedInput = {
|
|
73118
74604
|
create?: XOR<OngoingEvaluationCreateWithoutInterviewInput, OngoingEvaluationUncheckedCreateWithoutInterviewInput>
|
|
73119
74605
|
connectOrCreate?: OngoingEvaluationCreateOrConnectWithoutInterviewInput
|
|
@@ -73180,6 +74666,20 @@ export namespace Prisma {
|
|
|
73180
74666
|
deleteMany?: InterviewNotesScalarWhereInput | InterviewNotesScalarWhereInput[]
|
|
73181
74667
|
}
|
|
73182
74668
|
|
|
74669
|
+
export type LiveAnalysisUncheckedUpdateManyWithoutInterviewNestedInput = {
|
|
74670
|
+
create?: XOR<LiveAnalysisCreateWithoutInterviewInput, LiveAnalysisUncheckedCreateWithoutInterviewInput> | LiveAnalysisCreateWithoutInterviewInput[] | LiveAnalysisUncheckedCreateWithoutInterviewInput[]
|
|
74671
|
+
connectOrCreate?: LiveAnalysisCreateOrConnectWithoutInterviewInput | LiveAnalysisCreateOrConnectWithoutInterviewInput[]
|
|
74672
|
+
upsert?: LiveAnalysisUpsertWithWhereUniqueWithoutInterviewInput | LiveAnalysisUpsertWithWhereUniqueWithoutInterviewInput[]
|
|
74673
|
+
createMany?: LiveAnalysisCreateManyInterviewInputEnvelope
|
|
74674
|
+
set?: LiveAnalysisWhereUniqueInput | LiveAnalysisWhereUniqueInput[]
|
|
74675
|
+
disconnect?: LiveAnalysisWhereUniqueInput | LiveAnalysisWhereUniqueInput[]
|
|
74676
|
+
delete?: LiveAnalysisWhereUniqueInput | LiveAnalysisWhereUniqueInput[]
|
|
74677
|
+
connect?: LiveAnalysisWhereUniqueInput | LiveAnalysisWhereUniqueInput[]
|
|
74678
|
+
update?: LiveAnalysisUpdateWithWhereUniqueWithoutInterviewInput | LiveAnalysisUpdateWithWhereUniqueWithoutInterviewInput[]
|
|
74679
|
+
updateMany?: LiveAnalysisUpdateManyWithWhereWithoutInterviewInput | LiveAnalysisUpdateManyWithWhereWithoutInterviewInput[]
|
|
74680
|
+
deleteMany?: LiveAnalysisScalarWhereInput | LiveAnalysisScalarWhereInput[]
|
|
74681
|
+
}
|
|
74682
|
+
|
|
73183
74683
|
export type InterviewCreateNestedOneWithoutInterviewNotesInput = {
|
|
73184
74684
|
create?: XOR<InterviewCreateWithoutInterviewNotesInput, InterviewUncheckedCreateWithoutInterviewNotesInput>
|
|
73185
74685
|
connectOrCreate?: InterviewCreateOrConnectWithoutInterviewNotesInput
|
|
@@ -73940,6 +75440,20 @@ export namespace Prisma {
|
|
|
73940
75440
|
deleteMany?: JobDescriptionScalarWhereInput | JobDescriptionScalarWhereInput[]
|
|
73941
75441
|
}
|
|
73942
75442
|
|
|
75443
|
+
export type InterviewCreateNestedOneWithoutLiveAnalysisInput = {
|
|
75444
|
+
create?: XOR<InterviewCreateWithoutLiveAnalysisInput, InterviewUncheckedCreateWithoutLiveAnalysisInput>
|
|
75445
|
+
connectOrCreate?: InterviewCreateOrConnectWithoutLiveAnalysisInput
|
|
75446
|
+
connect?: InterviewWhereUniqueInput
|
|
75447
|
+
}
|
|
75448
|
+
|
|
75449
|
+
export type InterviewUpdateOneRequiredWithoutLiveAnalysisNestedInput = {
|
|
75450
|
+
create?: XOR<InterviewCreateWithoutLiveAnalysisInput, InterviewUncheckedCreateWithoutLiveAnalysisInput>
|
|
75451
|
+
connectOrCreate?: InterviewCreateOrConnectWithoutLiveAnalysisInput
|
|
75452
|
+
upsert?: InterviewUpsertWithoutLiveAnalysisInput
|
|
75453
|
+
connect?: InterviewWhereUniqueInput
|
|
75454
|
+
update?: XOR<XOR<InterviewUpdateToOneWithWhereWithoutLiveAnalysisInput, InterviewUpdateWithoutLiveAnalysisInput>, InterviewUncheckedUpdateWithoutLiveAnalysisInput>
|
|
75455
|
+
}
|
|
75456
|
+
|
|
73943
75457
|
export type UserCreateNestedOneWithoutSent_messagesInput = {
|
|
73944
75458
|
create?: XOR<UserCreateWithoutSent_messagesInput, UserUncheckedCreateWithoutSent_messagesInput>
|
|
73945
75459
|
connectOrCreate?: UserCreateOrConnectWithoutSent_messagesInput
|
|
@@ -79655,6 +81169,7 @@ export namespace Prisma {
|
|
|
79655
81169
|
suggestions?: SuggestionCreateNestedManyWithoutInterviewInput
|
|
79656
81170
|
feedback?: FeedbackCreateNestedManyWithoutInterviewInput
|
|
79657
81171
|
interviewNotes?: InterviewNotesCreateNestedManyWithoutInterviewInput
|
|
81172
|
+
liveAnalysis?: LiveAnalysisCreateNestedManyWithoutInterviewInput
|
|
79658
81173
|
}
|
|
79659
81174
|
|
|
79660
81175
|
export type InterviewUncheckedCreateWithoutApplicationInput = {
|
|
@@ -79694,6 +81209,7 @@ export namespace Prisma {
|
|
|
79694
81209
|
suggestions?: SuggestionUncheckedCreateNestedManyWithoutInterviewInput
|
|
79695
81210
|
feedback?: FeedbackUncheckedCreateNestedManyWithoutInterviewInput
|
|
79696
81211
|
interviewNotes?: InterviewNotesUncheckedCreateNestedManyWithoutInterviewInput
|
|
81212
|
+
liveAnalysis?: LiveAnalysisUncheckedCreateNestedManyWithoutInterviewInput
|
|
79697
81213
|
}
|
|
79698
81214
|
|
|
79699
81215
|
export type InterviewCreateOrConnectWithoutApplicationInput = {
|
|
@@ -79713,6 +81229,7 @@ export namespace Prisma {
|
|
|
79713
81229
|
status?: $Enums.AssignmentStatus
|
|
79714
81230
|
cancel_reason?: string | null
|
|
79715
81231
|
solution_url?: string | null
|
|
81232
|
+
zip_url?: string | null
|
|
79716
81233
|
scheduled_start_time?: Date | string | null
|
|
79717
81234
|
scheduled_end_time?: Date | string | null
|
|
79718
81235
|
created_at?: Date | string
|
|
@@ -79741,6 +81258,7 @@ export namespace Prisma {
|
|
|
79741
81258
|
status?: $Enums.AssignmentStatus
|
|
79742
81259
|
cancel_reason?: string | null
|
|
79743
81260
|
solution_url?: string | null
|
|
81261
|
+
zip_url?: string | null
|
|
79744
81262
|
scheduled_start_time?: Date | string | null
|
|
79745
81263
|
scheduled_end_time?: Date | string | null
|
|
79746
81264
|
created_at?: Date | string
|
|
@@ -80445,6 +81963,7 @@ export namespace Prisma {
|
|
|
80445
81963
|
status?: EnumAssignmentStatusFilter<"Assignment"> | $Enums.AssignmentStatus
|
|
80446
81964
|
cancel_reason?: StringNullableFilter<"Assignment"> | string | null
|
|
80447
81965
|
solution_url?: StringNullableFilter<"Assignment"> | string | null
|
|
81966
|
+
zip_url?: StringNullableFilter<"Assignment"> | string | null
|
|
80448
81967
|
scheduled_start_time?: DateTimeNullableFilter<"Assignment"> | Date | string | null
|
|
80449
81968
|
scheduled_end_time?: DateTimeNullableFilter<"Assignment"> | Date | string | null
|
|
80450
81969
|
created_at?: DateTimeFilter<"Assignment"> | Date | string
|
|
@@ -84424,6 +85943,7 @@ export namespace Prisma {
|
|
|
84424
85943
|
status?: $Enums.AssignmentStatus
|
|
84425
85944
|
cancel_reason?: string | null
|
|
84426
85945
|
solution_url?: string | null
|
|
85946
|
+
zip_url?: string | null
|
|
84427
85947
|
scheduled_start_time?: Date | string | null
|
|
84428
85948
|
scheduled_end_time?: Date | string | null
|
|
84429
85949
|
created_at?: Date | string
|
|
@@ -84452,6 +85972,7 @@ export namespace Prisma {
|
|
|
84452
85972
|
status?: $Enums.AssignmentStatus
|
|
84453
85973
|
cancel_reason?: string | null
|
|
84454
85974
|
solution_url?: string | null
|
|
85975
|
+
zip_url?: string | null
|
|
84455
85976
|
scheduled_start_time?: Date | string | null
|
|
84456
85977
|
scheduled_end_time?: Date | string | null
|
|
84457
85978
|
created_at?: Date | string
|
|
@@ -85585,6 +87106,7 @@ export namespace Prisma {
|
|
|
85585
87106
|
suggestions?: SuggestionCreateNestedManyWithoutInterviewInput
|
|
85586
87107
|
feedback?: FeedbackCreateNestedManyWithoutInterviewInput
|
|
85587
87108
|
interviewNotes?: InterviewNotesCreateNestedManyWithoutInterviewInput
|
|
87109
|
+
liveAnalysis?: LiveAnalysisCreateNestedManyWithoutInterviewInput
|
|
85588
87110
|
}
|
|
85589
87111
|
|
|
85590
87112
|
export type InterviewUncheckedCreateWithoutEvaluation_planInput = {
|
|
@@ -85624,6 +87146,7 @@ export namespace Prisma {
|
|
|
85624
87146
|
suggestions?: SuggestionUncheckedCreateNestedManyWithoutInterviewInput
|
|
85625
87147
|
feedback?: FeedbackUncheckedCreateNestedManyWithoutInterviewInput
|
|
85626
87148
|
interviewNotes?: InterviewNotesUncheckedCreateNestedManyWithoutInterviewInput
|
|
87149
|
+
liveAnalysis?: LiveAnalysisUncheckedCreateNestedManyWithoutInterviewInput
|
|
85627
87150
|
}
|
|
85628
87151
|
|
|
85629
87152
|
export type InterviewCreateOrConnectWithoutEvaluation_planInput = {
|
|
@@ -86141,6 +87664,7 @@ export namespace Prisma {
|
|
|
86141
87664
|
transcripts?: TranscriptCreateNestedManyWithoutInterviewInput
|
|
86142
87665
|
suggestions?: SuggestionCreateNestedManyWithoutInterviewInput
|
|
86143
87666
|
interviewNotes?: InterviewNotesCreateNestedManyWithoutInterviewInput
|
|
87667
|
+
liveAnalysis?: LiveAnalysisCreateNestedManyWithoutInterviewInput
|
|
86144
87668
|
}
|
|
86145
87669
|
|
|
86146
87670
|
export type InterviewUncheckedCreateWithoutFeedbackInput = {
|
|
@@ -86180,6 +87704,7 @@ export namespace Prisma {
|
|
|
86180
87704
|
transcripts?: TranscriptUncheckedCreateNestedManyWithoutInterviewInput
|
|
86181
87705
|
suggestions?: SuggestionUncheckedCreateNestedManyWithoutInterviewInput
|
|
86182
87706
|
interviewNotes?: InterviewNotesUncheckedCreateNestedManyWithoutInterviewInput
|
|
87707
|
+
liveAnalysis?: LiveAnalysisUncheckedCreateNestedManyWithoutInterviewInput
|
|
86183
87708
|
}
|
|
86184
87709
|
|
|
86185
87710
|
export type InterviewCreateOrConnectWithoutFeedbackInput = {
|
|
@@ -86235,6 +87760,7 @@ export namespace Prisma {
|
|
|
86235
87760
|
transcripts?: TranscriptUpdateManyWithoutInterviewNestedInput
|
|
86236
87761
|
suggestions?: SuggestionUpdateManyWithoutInterviewNestedInput
|
|
86237
87762
|
interviewNotes?: InterviewNotesUpdateManyWithoutInterviewNestedInput
|
|
87763
|
+
liveAnalysis?: LiveAnalysisUpdateManyWithoutInterviewNestedInput
|
|
86238
87764
|
}
|
|
86239
87765
|
|
|
86240
87766
|
export type InterviewUncheckedUpdateWithoutFeedbackInput = {
|
|
@@ -86274,6 +87800,7 @@ export namespace Prisma {
|
|
|
86274
87800
|
transcripts?: TranscriptUncheckedUpdateManyWithoutInterviewNestedInput
|
|
86275
87801
|
suggestions?: SuggestionUncheckedUpdateManyWithoutInterviewNestedInput
|
|
86276
87802
|
interviewNotes?: InterviewNotesUncheckedUpdateManyWithoutInterviewNestedInput
|
|
87803
|
+
liveAnalysis?: LiveAnalysisUncheckedUpdateManyWithoutInterviewNestedInput
|
|
86277
87804
|
}
|
|
86278
87805
|
|
|
86279
87806
|
export type OrganisationCreateWithoutFit_checkInput = {
|
|
@@ -88554,6 +90081,36 @@ export namespace Prisma {
|
|
|
88554
90081
|
skipDuplicates?: boolean
|
|
88555
90082
|
}
|
|
88556
90083
|
|
|
90084
|
+
export type LiveAnalysisCreateWithoutInterviewInput = {
|
|
90085
|
+
id?: string
|
|
90086
|
+
analysis: JsonNullValueInput | InputJsonValue
|
|
90087
|
+
created_at?: Date | string
|
|
90088
|
+
updated_at?: Date | string
|
|
90089
|
+
created_by: string
|
|
90090
|
+
updated_by: string
|
|
90091
|
+
is_active?: boolean
|
|
90092
|
+
}
|
|
90093
|
+
|
|
90094
|
+
export type LiveAnalysisUncheckedCreateWithoutInterviewInput = {
|
|
90095
|
+
id?: string
|
|
90096
|
+
analysis: JsonNullValueInput | InputJsonValue
|
|
90097
|
+
created_at?: Date | string
|
|
90098
|
+
updated_at?: Date | string
|
|
90099
|
+
created_by: string
|
|
90100
|
+
updated_by: string
|
|
90101
|
+
is_active?: boolean
|
|
90102
|
+
}
|
|
90103
|
+
|
|
90104
|
+
export type LiveAnalysisCreateOrConnectWithoutInterviewInput = {
|
|
90105
|
+
where: LiveAnalysisWhereUniqueInput
|
|
90106
|
+
create: XOR<LiveAnalysisCreateWithoutInterviewInput, LiveAnalysisUncheckedCreateWithoutInterviewInput>
|
|
90107
|
+
}
|
|
90108
|
+
|
|
90109
|
+
export type LiveAnalysisCreateManyInterviewInputEnvelope = {
|
|
90110
|
+
data: LiveAnalysisCreateManyInterviewInput | LiveAnalysisCreateManyInterviewInput[]
|
|
90111
|
+
skipDuplicates?: boolean
|
|
90112
|
+
}
|
|
90113
|
+
|
|
88557
90114
|
export type UserUpsertWithoutCandidate_interviewsInput = {
|
|
88558
90115
|
update: XOR<UserUpdateWithoutCandidate_interviewsInput, UserUncheckedUpdateWithoutCandidate_interviewsInput>
|
|
88559
90116
|
create: XOR<UserCreateWithoutCandidate_interviewsInput, UserUncheckedCreateWithoutCandidate_interviewsInput>
|
|
@@ -89364,6 +90921,36 @@ export namespace Prisma {
|
|
|
89364
90921
|
is_active?: BoolFilter<"InterviewNotes"> | boolean
|
|
89365
90922
|
}
|
|
89366
90923
|
|
|
90924
|
+
export type LiveAnalysisUpsertWithWhereUniqueWithoutInterviewInput = {
|
|
90925
|
+
where: LiveAnalysisWhereUniqueInput
|
|
90926
|
+
update: XOR<LiveAnalysisUpdateWithoutInterviewInput, LiveAnalysisUncheckedUpdateWithoutInterviewInput>
|
|
90927
|
+
create: XOR<LiveAnalysisCreateWithoutInterviewInput, LiveAnalysisUncheckedCreateWithoutInterviewInput>
|
|
90928
|
+
}
|
|
90929
|
+
|
|
90930
|
+
export type LiveAnalysisUpdateWithWhereUniqueWithoutInterviewInput = {
|
|
90931
|
+
where: LiveAnalysisWhereUniqueInput
|
|
90932
|
+
data: XOR<LiveAnalysisUpdateWithoutInterviewInput, LiveAnalysisUncheckedUpdateWithoutInterviewInput>
|
|
90933
|
+
}
|
|
90934
|
+
|
|
90935
|
+
export type LiveAnalysisUpdateManyWithWhereWithoutInterviewInput = {
|
|
90936
|
+
where: LiveAnalysisScalarWhereInput
|
|
90937
|
+
data: XOR<LiveAnalysisUpdateManyMutationInput, LiveAnalysisUncheckedUpdateManyWithoutInterviewInput>
|
|
90938
|
+
}
|
|
90939
|
+
|
|
90940
|
+
export type LiveAnalysisScalarWhereInput = {
|
|
90941
|
+
AND?: LiveAnalysisScalarWhereInput | LiveAnalysisScalarWhereInput[]
|
|
90942
|
+
OR?: LiveAnalysisScalarWhereInput[]
|
|
90943
|
+
NOT?: LiveAnalysisScalarWhereInput | LiveAnalysisScalarWhereInput[]
|
|
90944
|
+
id?: StringFilter<"LiveAnalysis"> | string
|
|
90945
|
+
interview_id?: StringFilter<"LiveAnalysis"> | string
|
|
90946
|
+
analysis?: JsonFilter<"LiveAnalysis">
|
|
90947
|
+
created_at?: DateTimeFilter<"LiveAnalysis"> | Date | string
|
|
90948
|
+
updated_at?: DateTimeFilter<"LiveAnalysis"> | Date | string
|
|
90949
|
+
created_by?: StringFilter<"LiveAnalysis"> | string
|
|
90950
|
+
updated_by?: StringFilter<"LiveAnalysis"> | string
|
|
90951
|
+
is_active?: BoolFilter<"LiveAnalysis"> | boolean
|
|
90952
|
+
}
|
|
90953
|
+
|
|
89367
90954
|
export type InterviewCreateWithoutInterviewNotesInput = {
|
|
89368
90955
|
id?: string
|
|
89369
90956
|
room_name?: string | null
|
|
@@ -89401,6 +90988,7 @@ export namespace Prisma {
|
|
|
89401
90988
|
transcripts?: TranscriptCreateNestedManyWithoutInterviewInput
|
|
89402
90989
|
suggestions?: SuggestionCreateNestedManyWithoutInterviewInput
|
|
89403
90990
|
feedback?: FeedbackCreateNestedManyWithoutInterviewInput
|
|
90991
|
+
liveAnalysis?: LiveAnalysisCreateNestedManyWithoutInterviewInput
|
|
89404
90992
|
}
|
|
89405
90993
|
|
|
89406
90994
|
export type InterviewUncheckedCreateWithoutInterviewNotesInput = {
|
|
@@ -89440,6 +91028,7 @@ export namespace Prisma {
|
|
|
89440
91028
|
transcripts?: TranscriptUncheckedCreateNestedManyWithoutInterviewInput
|
|
89441
91029
|
suggestions?: SuggestionUncheckedCreateNestedManyWithoutInterviewInput
|
|
89442
91030
|
feedback?: FeedbackUncheckedCreateNestedManyWithoutInterviewInput
|
|
91031
|
+
liveAnalysis?: LiveAnalysisUncheckedCreateNestedManyWithoutInterviewInput
|
|
89443
91032
|
}
|
|
89444
91033
|
|
|
89445
91034
|
export type InterviewCreateOrConnectWithoutInterviewNotesInput = {
|
|
@@ -89495,6 +91084,7 @@ export namespace Prisma {
|
|
|
89495
91084
|
transcripts?: TranscriptUpdateManyWithoutInterviewNestedInput
|
|
89496
91085
|
suggestions?: SuggestionUpdateManyWithoutInterviewNestedInput
|
|
89497
91086
|
feedback?: FeedbackUpdateManyWithoutInterviewNestedInput
|
|
91087
|
+
liveAnalysis?: LiveAnalysisUpdateManyWithoutInterviewNestedInput
|
|
89498
91088
|
}
|
|
89499
91089
|
|
|
89500
91090
|
export type InterviewUncheckedUpdateWithoutInterviewNotesInput = {
|
|
@@ -89534,6 +91124,7 @@ export namespace Prisma {
|
|
|
89534
91124
|
transcripts?: TranscriptUncheckedUpdateManyWithoutInterviewNestedInput
|
|
89535
91125
|
suggestions?: SuggestionUncheckedUpdateManyWithoutInterviewNestedInput
|
|
89536
91126
|
feedback?: FeedbackUncheckedUpdateManyWithoutInterviewNestedInput
|
|
91127
|
+
liveAnalysis?: LiveAnalysisUncheckedUpdateManyWithoutInterviewNestedInput
|
|
89537
91128
|
}
|
|
89538
91129
|
|
|
89539
91130
|
export type JobProfileCreateWithoutJob_descriptionsInput = {
|
|
@@ -89771,6 +91362,7 @@ export namespace Prisma {
|
|
|
89771
91362
|
suggestions?: SuggestionCreateNestedManyWithoutInterviewInput
|
|
89772
91363
|
feedback?: FeedbackCreateNestedManyWithoutInterviewInput
|
|
89773
91364
|
interviewNotes?: InterviewNotesCreateNestedManyWithoutInterviewInput
|
|
91365
|
+
liveAnalysis?: LiveAnalysisCreateNestedManyWithoutInterviewInput
|
|
89774
91366
|
}
|
|
89775
91367
|
|
|
89776
91368
|
export type InterviewUncheckedCreateWithoutJob_descriptionInput = {
|
|
@@ -89810,6 +91402,7 @@ export namespace Prisma {
|
|
|
89810
91402
|
suggestions?: SuggestionUncheckedCreateNestedManyWithoutInterviewInput
|
|
89811
91403
|
feedback?: FeedbackUncheckedCreateNestedManyWithoutInterviewInput
|
|
89812
91404
|
interviewNotes?: InterviewNotesUncheckedCreateNestedManyWithoutInterviewInput
|
|
91405
|
+
liveAnalysis?: LiveAnalysisUncheckedCreateNestedManyWithoutInterviewInput
|
|
89813
91406
|
}
|
|
89814
91407
|
|
|
89815
91408
|
export type InterviewCreateOrConnectWithoutJob_descriptionInput = {
|
|
@@ -89829,6 +91422,7 @@ export namespace Prisma {
|
|
|
89829
91422
|
status?: $Enums.AssignmentStatus
|
|
89830
91423
|
cancel_reason?: string | null
|
|
89831
91424
|
solution_url?: string | null
|
|
91425
|
+
zip_url?: string | null
|
|
89832
91426
|
scheduled_start_time?: Date | string | null
|
|
89833
91427
|
scheduled_end_time?: Date | string | null
|
|
89834
91428
|
created_at?: Date | string
|
|
@@ -89857,6 +91451,7 @@ export namespace Prisma {
|
|
|
89857
91451
|
status?: $Enums.AssignmentStatus
|
|
89858
91452
|
cancel_reason?: string | null
|
|
89859
91453
|
solution_url?: string | null
|
|
91454
|
+
zip_url?: string | null
|
|
89860
91455
|
scheduled_start_time?: Date | string | null
|
|
89861
91456
|
scheduled_end_time?: Date | string | null
|
|
89862
91457
|
created_at?: Date | string
|
|
@@ -92232,6 +93827,182 @@ export namespace Prisma {
|
|
|
92232
93827
|
job_profile_id?: StringNullableFilter<"JobDescription"> | string | null
|
|
92233
93828
|
}
|
|
92234
93829
|
|
|
93830
|
+
export type InterviewCreateWithoutLiveAnalysisInput = {
|
|
93831
|
+
id?: string
|
|
93832
|
+
room_name?: string | null
|
|
93833
|
+
interview_summary?: InterviewCreateinterview_summaryInput | string[]
|
|
93834
|
+
scheduled_start_time?: Date | string | null
|
|
93835
|
+
scheduled_end_time?: Date | string | null
|
|
93836
|
+
actual_start_time?: Date | string | null
|
|
93837
|
+
actual_end_time?: Date | string | null
|
|
93838
|
+
recording_url?: string | null
|
|
93839
|
+
interview_status?: $Enums.InterviewStatus
|
|
93840
|
+
google_event_id?: string | null
|
|
93841
|
+
ai_interview_feedback?: $Enums.InterviewFeedback | null
|
|
93842
|
+
interview_feedback?: $Enums.InterviewFeedback | null
|
|
93843
|
+
overall_feedback?: string | null
|
|
93844
|
+
interview_rating?: number | null
|
|
93845
|
+
ai_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93846
|
+
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93847
|
+
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93848
|
+
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
93849
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
93850
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93851
|
+
created_at?: Date | string
|
|
93852
|
+
updated_at?: Date | string
|
|
93853
|
+
created_by: string
|
|
93854
|
+
updated_by: string
|
|
93855
|
+
is_active?: boolean
|
|
93856
|
+
candidate?: UserCreateNestedOneWithoutCandidate_interviewsInput
|
|
93857
|
+
interviewer?: UserCreateNestedOneWithoutInterviewer_interviewsInput
|
|
93858
|
+
organisation: OrganisationCreateNestedOneWithoutInterviewsInput
|
|
93859
|
+
job_description: JobDescriptionCreateNestedOneWithoutInterviewsInput
|
|
93860
|
+
resume: ResumeCreateNestedOneWithoutInterviewsInput
|
|
93861
|
+
evaluation_plan?: EvaluationPlanCreateNestedOneWithoutInterviewsInput
|
|
93862
|
+
application?: ApplicationCreateNestedOneWithoutInterviewsInput
|
|
93863
|
+
ongoing_evaluation?: OngoingEvaluationCreateNestedOneWithoutInterviewInput
|
|
93864
|
+
transcripts?: TranscriptCreateNestedManyWithoutInterviewInput
|
|
93865
|
+
suggestions?: SuggestionCreateNestedManyWithoutInterviewInput
|
|
93866
|
+
feedback?: FeedbackCreateNestedManyWithoutInterviewInput
|
|
93867
|
+
interviewNotes?: InterviewNotesCreateNestedManyWithoutInterviewInput
|
|
93868
|
+
}
|
|
93869
|
+
|
|
93870
|
+
export type InterviewUncheckedCreateWithoutLiveAnalysisInput = {
|
|
93871
|
+
id?: string
|
|
93872
|
+
organisation_id: string
|
|
93873
|
+
candidate_id: string
|
|
93874
|
+
interviewer_id?: string | null
|
|
93875
|
+
evaluation_plan_id: string
|
|
93876
|
+
application_id?: string | null
|
|
93877
|
+
resume_id: string
|
|
93878
|
+
job_description_id: string
|
|
93879
|
+
room_name?: string | null
|
|
93880
|
+
interview_summary?: InterviewCreateinterview_summaryInput | string[]
|
|
93881
|
+
scheduled_start_time?: Date | string | null
|
|
93882
|
+
scheduled_end_time?: Date | string | null
|
|
93883
|
+
actual_start_time?: Date | string | null
|
|
93884
|
+
actual_end_time?: Date | string | null
|
|
93885
|
+
recording_url?: string | null
|
|
93886
|
+
interview_status?: $Enums.InterviewStatus
|
|
93887
|
+
google_event_id?: string | null
|
|
93888
|
+
ai_interview_feedback?: $Enums.InterviewFeedback | null
|
|
93889
|
+
interview_feedback?: $Enums.InterviewFeedback | null
|
|
93890
|
+
overall_feedback?: string | null
|
|
93891
|
+
interview_rating?: number | null
|
|
93892
|
+
ai_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93893
|
+
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93894
|
+
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93895
|
+
section_feedback?: InterviewCreatesection_feedbackInput | InputJsonValue[]
|
|
93896
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
93897
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93898
|
+
created_at?: Date | string
|
|
93899
|
+
updated_at?: Date | string
|
|
93900
|
+
created_by: string
|
|
93901
|
+
updated_by: string
|
|
93902
|
+
is_active?: boolean
|
|
93903
|
+
ongoing_evaluation?: OngoingEvaluationUncheckedCreateNestedOneWithoutInterviewInput
|
|
93904
|
+
transcripts?: TranscriptUncheckedCreateNestedManyWithoutInterviewInput
|
|
93905
|
+
suggestions?: SuggestionUncheckedCreateNestedManyWithoutInterviewInput
|
|
93906
|
+
feedback?: FeedbackUncheckedCreateNestedManyWithoutInterviewInput
|
|
93907
|
+
interviewNotes?: InterviewNotesUncheckedCreateNestedManyWithoutInterviewInput
|
|
93908
|
+
}
|
|
93909
|
+
|
|
93910
|
+
export type InterviewCreateOrConnectWithoutLiveAnalysisInput = {
|
|
93911
|
+
where: InterviewWhereUniqueInput
|
|
93912
|
+
create: XOR<InterviewCreateWithoutLiveAnalysisInput, InterviewUncheckedCreateWithoutLiveAnalysisInput>
|
|
93913
|
+
}
|
|
93914
|
+
|
|
93915
|
+
export type InterviewUpsertWithoutLiveAnalysisInput = {
|
|
93916
|
+
update: XOR<InterviewUpdateWithoutLiveAnalysisInput, InterviewUncheckedUpdateWithoutLiveAnalysisInput>
|
|
93917
|
+
create: XOR<InterviewCreateWithoutLiveAnalysisInput, InterviewUncheckedCreateWithoutLiveAnalysisInput>
|
|
93918
|
+
where?: InterviewWhereInput
|
|
93919
|
+
}
|
|
93920
|
+
|
|
93921
|
+
export type InterviewUpdateToOneWithWhereWithoutLiveAnalysisInput = {
|
|
93922
|
+
where?: InterviewWhereInput
|
|
93923
|
+
data: XOR<InterviewUpdateWithoutLiveAnalysisInput, InterviewUncheckedUpdateWithoutLiveAnalysisInput>
|
|
93924
|
+
}
|
|
93925
|
+
|
|
93926
|
+
export type InterviewUpdateWithoutLiveAnalysisInput = {
|
|
93927
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
93928
|
+
room_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
93929
|
+
interview_summary?: InterviewUpdateinterview_summaryInput | string[]
|
|
93930
|
+
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
93931
|
+
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
93932
|
+
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
93933
|
+
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
93934
|
+
recording_url?: NullableStringFieldUpdateOperationsInput | string | null
|
|
93935
|
+
interview_status?: EnumInterviewStatusFieldUpdateOperationsInput | $Enums.InterviewStatus
|
|
93936
|
+
google_event_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
93937
|
+
ai_interview_feedback?: NullableEnumInterviewFeedbackFieldUpdateOperationsInput | $Enums.InterviewFeedback | null
|
|
93938
|
+
interview_feedback?: NullableEnumInterviewFeedbackFieldUpdateOperationsInput | $Enums.InterviewFeedback | null
|
|
93939
|
+
overall_feedback?: NullableStringFieldUpdateOperationsInput | string | null
|
|
93940
|
+
interview_rating?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
93941
|
+
ai_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93942
|
+
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93943
|
+
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93944
|
+
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
93945
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
93946
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93947
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
93948
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
93949
|
+
created_by?: StringFieldUpdateOperationsInput | string
|
|
93950
|
+
updated_by?: StringFieldUpdateOperationsInput | string
|
|
93951
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
93952
|
+
candidate?: UserUpdateOneWithoutCandidate_interviewsNestedInput
|
|
93953
|
+
interviewer?: UserUpdateOneWithoutInterviewer_interviewsNestedInput
|
|
93954
|
+
organisation?: OrganisationUpdateOneRequiredWithoutInterviewsNestedInput
|
|
93955
|
+
job_description?: JobDescriptionUpdateOneRequiredWithoutInterviewsNestedInput
|
|
93956
|
+
resume?: ResumeUpdateOneRequiredWithoutInterviewsNestedInput
|
|
93957
|
+
evaluation_plan?: EvaluationPlanUpdateOneWithoutInterviewsNestedInput
|
|
93958
|
+
application?: ApplicationUpdateOneWithoutInterviewsNestedInput
|
|
93959
|
+
ongoing_evaluation?: OngoingEvaluationUpdateOneWithoutInterviewNestedInput
|
|
93960
|
+
transcripts?: TranscriptUpdateManyWithoutInterviewNestedInput
|
|
93961
|
+
suggestions?: SuggestionUpdateManyWithoutInterviewNestedInput
|
|
93962
|
+
feedback?: FeedbackUpdateManyWithoutInterviewNestedInput
|
|
93963
|
+
interviewNotes?: InterviewNotesUpdateManyWithoutInterviewNestedInput
|
|
93964
|
+
}
|
|
93965
|
+
|
|
93966
|
+
export type InterviewUncheckedUpdateWithoutLiveAnalysisInput = {
|
|
93967
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
93968
|
+
organisation_id?: StringFieldUpdateOperationsInput | string
|
|
93969
|
+
candidate_id?: StringFieldUpdateOperationsInput | string
|
|
93970
|
+
interviewer_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
93971
|
+
evaluation_plan_id?: StringFieldUpdateOperationsInput | string
|
|
93972
|
+
application_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
93973
|
+
resume_id?: StringFieldUpdateOperationsInput | string
|
|
93974
|
+
job_description_id?: StringFieldUpdateOperationsInput | string
|
|
93975
|
+
room_name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
93976
|
+
interview_summary?: InterviewUpdateinterview_summaryInput | string[]
|
|
93977
|
+
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
93978
|
+
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
93979
|
+
actual_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
93980
|
+
actual_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
93981
|
+
recording_url?: NullableStringFieldUpdateOperationsInput | string | null
|
|
93982
|
+
interview_status?: EnumInterviewStatusFieldUpdateOperationsInput | $Enums.InterviewStatus
|
|
93983
|
+
google_event_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
93984
|
+
ai_interview_feedback?: NullableEnumInterviewFeedbackFieldUpdateOperationsInput | $Enums.InterviewFeedback | null
|
|
93985
|
+
interview_feedback?: NullableEnumInterviewFeedbackFieldUpdateOperationsInput | $Enums.InterviewFeedback | null
|
|
93986
|
+
overall_feedback?: NullableStringFieldUpdateOperationsInput | string | null
|
|
93987
|
+
interview_rating?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
93988
|
+
ai_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93989
|
+
human_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93990
|
+
interviewer_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93991
|
+
section_feedback?: InterviewUpdatesection_feedbackInput | InputJsonValue[]
|
|
93992
|
+
interview_preparation?: NullableJsonNullValueInput | InputJsonValue
|
|
93993
|
+
final_feedback?: NullableJsonNullValueInput | InputJsonValue
|
|
93994
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
93995
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
93996
|
+
created_by?: StringFieldUpdateOperationsInput | string
|
|
93997
|
+
updated_by?: StringFieldUpdateOperationsInput | string
|
|
93998
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
93999
|
+
ongoing_evaluation?: OngoingEvaluationUncheckedUpdateOneWithoutInterviewNestedInput
|
|
94000
|
+
transcripts?: TranscriptUncheckedUpdateManyWithoutInterviewNestedInput
|
|
94001
|
+
suggestions?: SuggestionUncheckedUpdateManyWithoutInterviewNestedInput
|
|
94002
|
+
feedback?: FeedbackUncheckedUpdateManyWithoutInterviewNestedInput
|
|
94003
|
+
interviewNotes?: InterviewNotesUncheckedUpdateManyWithoutInterviewNestedInput
|
|
94004
|
+
}
|
|
94005
|
+
|
|
92235
94006
|
export type UserCreateWithoutSent_messagesInput = {
|
|
92236
94007
|
id?: string
|
|
92237
94008
|
email: string
|
|
@@ -93211,6 +94982,7 @@ export namespace Prisma {
|
|
|
93211
94982
|
suggestions?: SuggestionCreateNestedManyWithoutInterviewInput
|
|
93212
94983
|
feedback?: FeedbackCreateNestedManyWithoutInterviewInput
|
|
93213
94984
|
interviewNotes?: InterviewNotesCreateNestedManyWithoutInterviewInput
|
|
94985
|
+
liveAnalysis?: LiveAnalysisCreateNestedManyWithoutInterviewInput
|
|
93214
94986
|
}
|
|
93215
94987
|
|
|
93216
94988
|
export type InterviewUncheckedCreateWithoutOngoing_evaluationInput = {
|
|
@@ -93250,6 +95022,7 @@ export namespace Prisma {
|
|
|
93250
95022
|
suggestions?: SuggestionUncheckedCreateNestedManyWithoutInterviewInput
|
|
93251
95023
|
feedback?: FeedbackUncheckedCreateNestedManyWithoutInterviewInput
|
|
93252
95024
|
interviewNotes?: InterviewNotesUncheckedCreateNestedManyWithoutInterviewInput
|
|
95025
|
+
liveAnalysis?: LiveAnalysisUncheckedCreateNestedManyWithoutInterviewInput
|
|
93253
95026
|
}
|
|
93254
95027
|
|
|
93255
95028
|
export type InterviewCreateOrConnectWithoutOngoing_evaluationInput = {
|
|
@@ -93264,6 +95037,7 @@ export namespace Prisma {
|
|
|
93264
95037
|
status?: $Enums.AssignmentStatus
|
|
93265
95038
|
cancel_reason?: string | null
|
|
93266
95039
|
solution_url?: string | null
|
|
95040
|
+
zip_url?: string | null
|
|
93267
95041
|
scheduled_start_time?: Date | string | null
|
|
93268
95042
|
scheduled_end_time?: Date | string | null
|
|
93269
95043
|
created_at?: Date | string
|
|
@@ -93292,6 +95066,7 @@ export namespace Prisma {
|
|
|
93292
95066
|
status?: $Enums.AssignmentStatus
|
|
93293
95067
|
cancel_reason?: string | null
|
|
93294
95068
|
solution_url?: string | null
|
|
95069
|
+
zip_url?: string | null
|
|
93295
95070
|
scheduled_start_time?: Date | string | null
|
|
93296
95071
|
scheduled_end_time?: Date | string | null
|
|
93297
95072
|
created_at?: Date | string
|
|
@@ -93869,6 +95644,7 @@ export namespace Prisma {
|
|
|
93869
95644
|
suggestions?: SuggestionUpdateManyWithoutInterviewNestedInput
|
|
93870
95645
|
feedback?: FeedbackUpdateManyWithoutInterviewNestedInput
|
|
93871
95646
|
interviewNotes?: InterviewNotesUpdateManyWithoutInterviewNestedInput
|
|
95647
|
+
liveAnalysis?: LiveAnalysisUpdateManyWithoutInterviewNestedInput
|
|
93872
95648
|
}
|
|
93873
95649
|
|
|
93874
95650
|
export type InterviewUncheckedUpdateWithoutOngoing_evaluationInput = {
|
|
@@ -93908,6 +95684,7 @@ export namespace Prisma {
|
|
|
93908
95684
|
suggestions?: SuggestionUncheckedUpdateManyWithoutInterviewNestedInput
|
|
93909
95685
|
feedback?: FeedbackUncheckedUpdateManyWithoutInterviewNestedInput
|
|
93910
95686
|
interviewNotes?: InterviewNotesUncheckedUpdateManyWithoutInterviewNestedInput
|
|
95687
|
+
liveAnalysis?: LiveAnalysisUncheckedUpdateManyWithoutInterviewNestedInput
|
|
93911
95688
|
}
|
|
93912
95689
|
|
|
93913
95690
|
export type AssignmentUpsertWithoutOngoing_evaluationInput = {
|
|
@@ -93928,6 +95705,7 @@ export namespace Prisma {
|
|
|
93928
95705
|
status?: EnumAssignmentStatusFieldUpdateOperationsInput | $Enums.AssignmentStatus
|
|
93929
95706
|
cancel_reason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
93930
95707
|
solution_url?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95708
|
+
zip_url?: NullableStringFieldUpdateOperationsInput | string | null
|
|
93931
95709
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
93932
95710
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
93933
95711
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -93956,6 +95734,7 @@ export namespace Prisma {
|
|
|
93956
95734
|
status?: EnumAssignmentStatusFieldUpdateOperationsInput | $Enums.AssignmentStatus
|
|
93957
95735
|
cancel_reason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
93958
95736
|
solution_url?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95737
|
+
zip_url?: NullableStringFieldUpdateOperationsInput | string | null
|
|
93959
95738
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
93960
95739
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
93961
95740
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -94515,6 +96294,7 @@ export namespace Prisma {
|
|
|
94515
96294
|
suggestions?: SuggestionCreateNestedManyWithoutInterviewInput
|
|
94516
96295
|
feedback?: FeedbackCreateNestedManyWithoutInterviewInput
|
|
94517
96296
|
interviewNotes?: InterviewNotesCreateNestedManyWithoutInterviewInput
|
|
96297
|
+
liveAnalysis?: LiveAnalysisCreateNestedManyWithoutInterviewInput
|
|
94518
96298
|
}
|
|
94519
96299
|
|
|
94520
96300
|
export type InterviewUncheckedCreateWithoutOrganisationInput = {
|
|
@@ -94554,6 +96334,7 @@ export namespace Prisma {
|
|
|
94554
96334
|
suggestions?: SuggestionUncheckedCreateNestedManyWithoutInterviewInput
|
|
94555
96335
|
feedback?: FeedbackUncheckedCreateNestedManyWithoutInterviewInput
|
|
94556
96336
|
interviewNotes?: InterviewNotesUncheckedCreateNestedManyWithoutInterviewInput
|
|
96337
|
+
liveAnalysis?: LiveAnalysisUncheckedCreateNestedManyWithoutInterviewInput
|
|
94557
96338
|
}
|
|
94558
96339
|
|
|
94559
96340
|
export type InterviewCreateOrConnectWithoutOrganisationInput = {
|
|
@@ -94573,6 +96354,7 @@ export namespace Prisma {
|
|
|
94573
96354
|
status?: $Enums.AssignmentStatus
|
|
94574
96355
|
cancel_reason?: string | null
|
|
94575
96356
|
solution_url?: string | null
|
|
96357
|
+
zip_url?: string | null
|
|
94576
96358
|
scheduled_start_time?: Date | string | null
|
|
94577
96359
|
scheduled_end_time?: Date | string | null
|
|
94578
96360
|
created_at?: Date | string
|
|
@@ -94601,6 +96383,7 @@ export namespace Prisma {
|
|
|
94601
96383
|
status?: $Enums.AssignmentStatus
|
|
94602
96384
|
cancel_reason?: string | null
|
|
94603
96385
|
solution_url?: string | null
|
|
96386
|
+
zip_url?: string | null
|
|
94604
96387
|
scheduled_start_time?: Date | string | null
|
|
94605
96388
|
scheduled_end_time?: Date | string | null
|
|
94606
96389
|
created_at?: Date | string
|
|
@@ -96743,6 +98526,7 @@ export namespace Prisma {
|
|
|
96743
98526
|
suggestions?: SuggestionCreateNestedManyWithoutInterviewInput
|
|
96744
98527
|
feedback?: FeedbackCreateNestedManyWithoutInterviewInput
|
|
96745
98528
|
interviewNotes?: InterviewNotesCreateNestedManyWithoutInterviewInput
|
|
98529
|
+
liveAnalysis?: LiveAnalysisCreateNestedManyWithoutInterviewInput
|
|
96746
98530
|
}
|
|
96747
98531
|
|
|
96748
98532
|
export type InterviewUncheckedCreateWithoutResumeInput = {
|
|
@@ -96782,6 +98566,7 @@ export namespace Prisma {
|
|
|
96782
98566
|
suggestions?: SuggestionUncheckedCreateNestedManyWithoutInterviewInput
|
|
96783
98567
|
feedback?: FeedbackUncheckedCreateNestedManyWithoutInterviewInput
|
|
96784
98568
|
interviewNotes?: InterviewNotesUncheckedCreateNestedManyWithoutInterviewInput
|
|
98569
|
+
liveAnalysis?: LiveAnalysisUncheckedCreateNestedManyWithoutInterviewInput
|
|
96785
98570
|
}
|
|
96786
98571
|
|
|
96787
98572
|
export type InterviewCreateOrConnectWithoutResumeInput = {
|
|
@@ -97603,6 +99388,7 @@ export namespace Prisma {
|
|
|
97603
99388
|
transcripts?: TranscriptCreateNestedManyWithoutInterviewInput
|
|
97604
99389
|
feedback?: FeedbackCreateNestedManyWithoutInterviewInput
|
|
97605
99390
|
interviewNotes?: InterviewNotesCreateNestedManyWithoutInterviewInput
|
|
99391
|
+
liveAnalysis?: LiveAnalysisCreateNestedManyWithoutInterviewInput
|
|
97606
99392
|
}
|
|
97607
99393
|
|
|
97608
99394
|
export type InterviewUncheckedCreateWithoutSuggestionsInput = {
|
|
@@ -97642,6 +99428,7 @@ export namespace Prisma {
|
|
|
97642
99428
|
transcripts?: TranscriptUncheckedCreateNestedManyWithoutInterviewInput
|
|
97643
99429
|
feedback?: FeedbackUncheckedCreateNestedManyWithoutInterviewInput
|
|
97644
99430
|
interviewNotes?: InterviewNotesUncheckedCreateNestedManyWithoutInterviewInput
|
|
99431
|
+
liveAnalysis?: LiveAnalysisUncheckedCreateNestedManyWithoutInterviewInput
|
|
97645
99432
|
}
|
|
97646
99433
|
|
|
97647
99434
|
export type InterviewCreateOrConnectWithoutSuggestionsInput = {
|
|
@@ -97818,6 +99605,7 @@ export namespace Prisma {
|
|
|
97818
99605
|
transcripts?: TranscriptUpdateManyWithoutInterviewNestedInput
|
|
97819
99606
|
feedback?: FeedbackUpdateManyWithoutInterviewNestedInput
|
|
97820
99607
|
interviewNotes?: InterviewNotesUpdateManyWithoutInterviewNestedInput
|
|
99608
|
+
liveAnalysis?: LiveAnalysisUpdateManyWithoutInterviewNestedInput
|
|
97821
99609
|
}
|
|
97822
99610
|
|
|
97823
99611
|
export type InterviewUncheckedUpdateWithoutSuggestionsInput = {
|
|
@@ -97857,6 +99645,7 @@ export namespace Prisma {
|
|
|
97857
99645
|
transcripts?: TranscriptUncheckedUpdateManyWithoutInterviewNestedInput
|
|
97858
99646
|
feedback?: FeedbackUncheckedUpdateManyWithoutInterviewNestedInput
|
|
97859
99647
|
interviewNotes?: InterviewNotesUncheckedUpdateManyWithoutInterviewNestedInput
|
|
99648
|
+
liveAnalysis?: LiveAnalysisUncheckedUpdateManyWithoutInterviewNestedInput
|
|
97860
99649
|
}
|
|
97861
99650
|
|
|
97862
99651
|
export type TranscriptUpsertWithWhereUniqueWithoutSuggestionInput = {
|
|
@@ -97995,6 +99784,7 @@ export namespace Prisma {
|
|
|
97995
99784
|
suggestions?: SuggestionCreateNestedManyWithoutInterviewInput
|
|
97996
99785
|
feedback?: FeedbackCreateNestedManyWithoutInterviewInput
|
|
97997
99786
|
interviewNotes?: InterviewNotesCreateNestedManyWithoutInterviewInput
|
|
99787
|
+
liveAnalysis?: LiveAnalysisCreateNestedManyWithoutInterviewInput
|
|
97998
99788
|
}
|
|
97999
99789
|
|
|
98000
99790
|
export type InterviewUncheckedCreateWithoutTranscriptsInput = {
|
|
@@ -98034,6 +99824,7 @@ export namespace Prisma {
|
|
|
98034
99824
|
suggestions?: SuggestionUncheckedCreateNestedManyWithoutInterviewInput
|
|
98035
99825
|
feedback?: FeedbackUncheckedCreateNestedManyWithoutInterviewInput
|
|
98036
99826
|
interviewNotes?: InterviewNotesUncheckedCreateNestedManyWithoutInterviewInput
|
|
99827
|
+
liveAnalysis?: LiveAnalysisUncheckedCreateNestedManyWithoutInterviewInput
|
|
98037
99828
|
}
|
|
98038
99829
|
|
|
98039
99830
|
export type InterviewCreateOrConnectWithoutTranscriptsInput = {
|
|
@@ -98195,6 +99986,7 @@ export namespace Prisma {
|
|
|
98195
99986
|
suggestions?: SuggestionUpdateManyWithoutInterviewNestedInput
|
|
98196
99987
|
feedback?: FeedbackUpdateManyWithoutInterviewNestedInput
|
|
98197
99988
|
interviewNotes?: InterviewNotesUpdateManyWithoutInterviewNestedInput
|
|
99989
|
+
liveAnalysis?: LiveAnalysisUpdateManyWithoutInterviewNestedInput
|
|
98198
99990
|
}
|
|
98199
99991
|
|
|
98200
99992
|
export type InterviewUncheckedUpdateWithoutTranscriptsInput = {
|
|
@@ -98234,6 +100026,7 @@ export namespace Prisma {
|
|
|
98234
100026
|
suggestions?: SuggestionUncheckedUpdateManyWithoutInterviewNestedInput
|
|
98235
100027
|
feedback?: FeedbackUncheckedUpdateManyWithoutInterviewNestedInput
|
|
98236
100028
|
interviewNotes?: InterviewNotesUncheckedUpdateManyWithoutInterviewNestedInput
|
|
100029
|
+
liveAnalysis?: LiveAnalysisUncheckedUpdateManyWithoutInterviewNestedInput
|
|
98237
100030
|
}
|
|
98238
100031
|
|
|
98239
100032
|
export type SuggestionUpsertWithoutTranscriptsInput = {
|
|
@@ -98957,6 +100750,7 @@ export namespace Prisma {
|
|
|
98957
100750
|
suggestions?: SuggestionCreateNestedManyWithoutInterviewInput
|
|
98958
100751
|
feedback?: FeedbackCreateNestedManyWithoutInterviewInput
|
|
98959
100752
|
interviewNotes?: InterviewNotesCreateNestedManyWithoutInterviewInput
|
|
100753
|
+
liveAnalysis?: LiveAnalysisCreateNestedManyWithoutInterviewInput
|
|
98960
100754
|
}
|
|
98961
100755
|
|
|
98962
100756
|
export type InterviewUncheckedCreateWithoutCandidateInput = {
|
|
@@ -98996,6 +100790,7 @@ export namespace Prisma {
|
|
|
98996
100790
|
suggestions?: SuggestionUncheckedCreateNestedManyWithoutInterviewInput
|
|
98997
100791
|
feedback?: FeedbackUncheckedCreateNestedManyWithoutInterviewInput
|
|
98998
100792
|
interviewNotes?: InterviewNotesUncheckedCreateNestedManyWithoutInterviewInput
|
|
100793
|
+
liveAnalysis?: LiveAnalysisUncheckedCreateNestedManyWithoutInterviewInput
|
|
98999
100794
|
}
|
|
99000
100795
|
|
|
99001
100796
|
export type InterviewCreateOrConnectWithoutCandidateInput = {
|
|
@@ -99045,6 +100840,7 @@ export namespace Prisma {
|
|
|
99045
100840
|
suggestions?: SuggestionCreateNestedManyWithoutInterviewInput
|
|
99046
100841
|
feedback?: FeedbackCreateNestedManyWithoutInterviewInput
|
|
99047
100842
|
interviewNotes?: InterviewNotesCreateNestedManyWithoutInterviewInput
|
|
100843
|
+
liveAnalysis?: LiveAnalysisCreateNestedManyWithoutInterviewInput
|
|
99048
100844
|
}
|
|
99049
100845
|
|
|
99050
100846
|
export type InterviewUncheckedCreateWithoutInterviewerInput = {
|
|
@@ -99084,6 +100880,7 @@ export namespace Prisma {
|
|
|
99084
100880
|
suggestions?: SuggestionUncheckedCreateNestedManyWithoutInterviewInput
|
|
99085
100881
|
feedback?: FeedbackUncheckedCreateNestedManyWithoutInterviewInput
|
|
99086
100882
|
interviewNotes?: InterviewNotesUncheckedCreateNestedManyWithoutInterviewInput
|
|
100883
|
+
liveAnalysis?: LiveAnalysisUncheckedCreateNestedManyWithoutInterviewInput
|
|
99087
100884
|
}
|
|
99088
100885
|
|
|
99089
100886
|
export type InterviewCreateOrConnectWithoutInterviewerInput = {
|
|
@@ -99265,6 +101062,7 @@ export namespace Prisma {
|
|
|
99265
101062
|
status?: $Enums.AssignmentStatus
|
|
99266
101063
|
cancel_reason?: string | null
|
|
99267
101064
|
solution_url?: string | null
|
|
101065
|
+
zip_url?: string | null
|
|
99268
101066
|
scheduled_start_time?: Date | string | null
|
|
99269
101067
|
scheduled_end_time?: Date | string | null
|
|
99270
101068
|
created_at?: Date | string
|
|
@@ -99293,6 +101091,7 @@ export namespace Prisma {
|
|
|
99293
101091
|
status?: $Enums.AssignmentStatus
|
|
99294
101092
|
cancel_reason?: string | null
|
|
99295
101093
|
solution_url?: string | null
|
|
101094
|
+
zip_url?: string | null
|
|
99296
101095
|
scheduled_start_time?: Date | string | null
|
|
99297
101096
|
scheduled_end_time?: Date | string | null
|
|
99298
101097
|
created_at?: Date | string
|
|
@@ -99319,6 +101118,7 @@ export namespace Prisma {
|
|
|
99319
101118
|
status?: $Enums.AssignmentStatus
|
|
99320
101119
|
cancel_reason?: string | null
|
|
99321
101120
|
solution_url?: string | null
|
|
101121
|
+
zip_url?: string | null
|
|
99322
101122
|
scheduled_start_time?: Date | string | null
|
|
99323
101123
|
scheduled_end_time?: Date | string | null
|
|
99324
101124
|
created_at?: Date | string
|
|
@@ -99347,6 +101147,7 @@ export namespace Prisma {
|
|
|
99347
101147
|
status?: $Enums.AssignmentStatus
|
|
99348
101148
|
cancel_reason?: string | null
|
|
99349
101149
|
solution_url?: string | null
|
|
101150
|
+
zip_url?: string | null
|
|
99350
101151
|
scheduled_start_time?: Date | string | null
|
|
99351
101152
|
scheduled_end_time?: Date | string | null
|
|
99352
101153
|
created_at?: Date | string
|
|
@@ -101057,6 +102858,7 @@ export namespace Prisma {
|
|
|
101057
102858
|
status?: $Enums.AssignmentStatus
|
|
101058
102859
|
cancel_reason?: string | null
|
|
101059
102860
|
solution_url?: string | null
|
|
102861
|
+
zip_url?: string | null
|
|
101060
102862
|
scheduled_start_time?: Date | string | null
|
|
101061
102863
|
scheduled_end_time?: Date | string | null
|
|
101062
102864
|
created_at?: Date | string
|
|
@@ -101147,6 +102949,7 @@ export namespace Prisma {
|
|
|
101147
102949
|
suggestions?: SuggestionUpdateManyWithoutInterviewNestedInput
|
|
101148
102950
|
feedback?: FeedbackUpdateManyWithoutInterviewNestedInput
|
|
101149
102951
|
interviewNotes?: InterviewNotesUpdateManyWithoutInterviewNestedInput
|
|
102952
|
+
liveAnalysis?: LiveAnalysisUpdateManyWithoutInterviewNestedInput
|
|
101150
102953
|
}
|
|
101151
102954
|
|
|
101152
102955
|
export type InterviewUncheckedUpdateWithoutApplicationInput = {
|
|
@@ -101186,6 +102989,7 @@ export namespace Prisma {
|
|
|
101186
102989
|
suggestions?: SuggestionUncheckedUpdateManyWithoutInterviewNestedInput
|
|
101187
102990
|
feedback?: FeedbackUncheckedUpdateManyWithoutInterviewNestedInput
|
|
101188
102991
|
interviewNotes?: InterviewNotesUncheckedUpdateManyWithoutInterviewNestedInput
|
|
102992
|
+
liveAnalysis?: LiveAnalysisUncheckedUpdateManyWithoutInterviewNestedInput
|
|
101189
102993
|
}
|
|
101190
102994
|
|
|
101191
102995
|
export type InterviewUncheckedUpdateManyWithoutApplicationInput = {
|
|
@@ -101229,6 +103033,7 @@ export namespace Prisma {
|
|
|
101229
103033
|
status?: EnumAssignmentStatusFieldUpdateOperationsInput | $Enums.AssignmentStatus
|
|
101230
103034
|
cancel_reason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101231
103035
|
solution_url?: NullableStringFieldUpdateOperationsInput | string | null
|
|
103036
|
+
zip_url?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101232
103037
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
101233
103038
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
101234
103039
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -101257,6 +103062,7 @@ export namespace Prisma {
|
|
|
101257
103062
|
status?: EnumAssignmentStatusFieldUpdateOperationsInput | $Enums.AssignmentStatus
|
|
101258
103063
|
cancel_reason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101259
103064
|
solution_url?: NullableStringFieldUpdateOperationsInput | string | null
|
|
103065
|
+
zip_url?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101260
103066
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
101261
103067
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
101262
103068
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -101279,6 +103085,7 @@ export namespace Prisma {
|
|
|
101279
103085
|
status?: EnumAssignmentStatusFieldUpdateOperationsInput | $Enums.AssignmentStatus
|
|
101280
103086
|
cancel_reason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101281
103087
|
solution_url?: NullableStringFieldUpdateOperationsInput | string | null
|
|
103088
|
+
zip_url?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101282
103089
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
101283
103090
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
101284
103091
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -101792,6 +103599,7 @@ export namespace Prisma {
|
|
|
101792
103599
|
status?: $Enums.AssignmentStatus
|
|
101793
103600
|
cancel_reason?: string | null
|
|
101794
103601
|
solution_url?: string | null
|
|
103602
|
+
zip_url?: string | null
|
|
101795
103603
|
scheduled_start_time?: Date | string | null
|
|
101796
103604
|
scheduled_end_time?: Date | string | null
|
|
101797
103605
|
created_at?: Date | string
|
|
@@ -101885,6 +103693,7 @@ export namespace Prisma {
|
|
|
101885
103693
|
status?: EnumAssignmentStatusFieldUpdateOperationsInput | $Enums.AssignmentStatus
|
|
101886
103694
|
cancel_reason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101887
103695
|
solution_url?: NullableStringFieldUpdateOperationsInput | string | null
|
|
103696
|
+
zip_url?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101888
103697
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
101889
103698
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
101890
103699
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -101913,6 +103722,7 @@ export namespace Prisma {
|
|
|
101913
103722
|
status?: EnumAssignmentStatusFieldUpdateOperationsInput | $Enums.AssignmentStatus
|
|
101914
103723
|
cancel_reason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101915
103724
|
solution_url?: NullableStringFieldUpdateOperationsInput | string | null
|
|
103725
|
+
zip_url?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101916
103726
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
101917
103727
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
101918
103728
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -101935,6 +103745,7 @@ export namespace Prisma {
|
|
|
101935
103745
|
status?: EnumAssignmentStatusFieldUpdateOperationsInput | $Enums.AssignmentStatus
|
|
101936
103746
|
cancel_reason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101937
103747
|
solution_url?: NullableStringFieldUpdateOperationsInput | string | null
|
|
103748
|
+
zip_url?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101938
103749
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
101939
103750
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
101940
103751
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -102143,6 +103954,7 @@ export namespace Prisma {
|
|
|
102143
103954
|
suggestions?: SuggestionUpdateManyWithoutInterviewNestedInput
|
|
102144
103955
|
feedback?: FeedbackUpdateManyWithoutInterviewNestedInput
|
|
102145
103956
|
interviewNotes?: InterviewNotesUpdateManyWithoutInterviewNestedInput
|
|
103957
|
+
liveAnalysis?: LiveAnalysisUpdateManyWithoutInterviewNestedInput
|
|
102146
103958
|
}
|
|
102147
103959
|
|
|
102148
103960
|
export type InterviewUncheckedUpdateWithoutEvaluation_planInput = {
|
|
@@ -102182,6 +103994,7 @@ export namespace Prisma {
|
|
|
102182
103994
|
suggestions?: SuggestionUncheckedUpdateManyWithoutInterviewNestedInput
|
|
102183
103995
|
feedback?: FeedbackUncheckedUpdateManyWithoutInterviewNestedInput
|
|
102184
103996
|
interviewNotes?: InterviewNotesUncheckedUpdateManyWithoutInterviewNestedInput
|
|
103997
|
+
liveAnalysis?: LiveAnalysisUncheckedUpdateManyWithoutInterviewNestedInput
|
|
102185
103998
|
}
|
|
102186
103999
|
|
|
102187
104000
|
export type InterviewUncheckedUpdateManyWithoutEvaluation_planInput = {
|
|
@@ -102438,6 +104251,16 @@ export namespace Prisma {
|
|
|
102438
104251
|
is_active?: boolean
|
|
102439
104252
|
}
|
|
102440
104253
|
|
|
104254
|
+
export type LiveAnalysisCreateManyInterviewInput = {
|
|
104255
|
+
id?: string
|
|
104256
|
+
analysis: JsonNullValueInput | InputJsonValue
|
|
104257
|
+
created_at?: Date | string
|
|
104258
|
+
updated_at?: Date | string
|
|
104259
|
+
created_by: string
|
|
104260
|
+
updated_by: string
|
|
104261
|
+
is_active?: boolean
|
|
104262
|
+
}
|
|
104263
|
+
|
|
102441
104264
|
export type TranscriptUpdateWithoutInterviewInput = {
|
|
102442
104265
|
id?: StringFieldUpdateOperationsInput | string
|
|
102443
104266
|
intermediate_feedback_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -102602,6 +104425,36 @@ export namespace Prisma {
|
|
|
102602
104425
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
102603
104426
|
}
|
|
102604
104427
|
|
|
104428
|
+
export type LiveAnalysisUpdateWithoutInterviewInput = {
|
|
104429
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
104430
|
+
analysis?: JsonNullValueInput | InputJsonValue
|
|
104431
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
104432
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
104433
|
+
created_by?: StringFieldUpdateOperationsInput | string
|
|
104434
|
+
updated_by?: StringFieldUpdateOperationsInput | string
|
|
104435
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
104436
|
+
}
|
|
104437
|
+
|
|
104438
|
+
export type LiveAnalysisUncheckedUpdateWithoutInterviewInput = {
|
|
104439
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
104440
|
+
analysis?: JsonNullValueInput | InputJsonValue
|
|
104441
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
104442
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
104443
|
+
created_by?: StringFieldUpdateOperationsInput | string
|
|
104444
|
+
updated_by?: StringFieldUpdateOperationsInput | string
|
|
104445
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
104446
|
+
}
|
|
104447
|
+
|
|
104448
|
+
export type LiveAnalysisUncheckedUpdateManyWithoutInterviewInput = {
|
|
104449
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
104450
|
+
analysis?: JsonNullValueInput | InputJsonValue
|
|
104451
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
104452
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
104453
|
+
created_by?: StringFieldUpdateOperationsInput | string
|
|
104454
|
+
updated_by?: StringFieldUpdateOperationsInput | string
|
|
104455
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
104456
|
+
}
|
|
104457
|
+
|
|
102605
104458
|
export type ApplicationCreateManyJob_descriptionInput = {
|
|
102606
104459
|
id?: string
|
|
102607
104460
|
candidate_id: string
|
|
@@ -102668,6 +104521,7 @@ export namespace Prisma {
|
|
|
102668
104521
|
status?: $Enums.AssignmentStatus
|
|
102669
104522
|
cancel_reason?: string | null
|
|
102670
104523
|
solution_url?: string | null
|
|
104524
|
+
zip_url?: string | null
|
|
102671
104525
|
scheduled_start_time?: Date | string | null
|
|
102672
104526
|
scheduled_end_time?: Date | string | null
|
|
102673
104527
|
created_at?: Date | string
|
|
@@ -102945,6 +104799,7 @@ export namespace Prisma {
|
|
|
102945
104799
|
suggestions?: SuggestionUpdateManyWithoutInterviewNestedInput
|
|
102946
104800
|
feedback?: FeedbackUpdateManyWithoutInterviewNestedInput
|
|
102947
104801
|
interviewNotes?: InterviewNotesUpdateManyWithoutInterviewNestedInput
|
|
104802
|
+
liveAnalysis?: LiveAnalysisUpdateManyWithoutInterviewNestedInput
|
|
102948
104803
|
}
|
|
102949
104804
|
|
|
102950
104805
|
export type InterviewUncheckedUpdateWithoutJob_descriptionInput = {
|
|
@@ -102984,6 +104839,7 @@ export namespace Prisma {
|
|
|
102984
104839
|
suggestions?: SuggestionUncheckedUpdateManyWithoutInterviewNestedInput
|
|
102985
104840
|
feedback?: FeedbackUncheckedUpdateManyWithoutInterviewNestedInput
|
|
102986
104841
|
interviewNotes?: InterviewNotesUncheckedUpdateManyWithoutInterviewNestedInput
|
|
104842
|
+
liveAnalysis?: LiveAnalysisUncheckedUpdateManyWithoutInterviewNestedInput
|
|
102987
104843
|
}
|
|
102988
104844
|
|
|
102989
104845
|
export type InterviewUncheckedUpdateManyWithoutJob_descriptionInput = {
|
|
@@ -103027,6 +104883,7 @@ export namespace Prisma {
|
|
|
103027
104883
|
status?: EnumAssignmentStatusFieldUpdateOperationsInput | $Enums.AssignmentStatus
|
|
103028
104884
|
cancel_reason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
103029
104885
|
solution_url?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104886
|
+
zip_url?: NullableStringFieldUpdateOperationsInput | string | null
|
|
103030
104887
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
103031
104888
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
103032
104889
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -103055,6 +104912,7 @@ export namespace Prisma {
|
|
|
103055
104912
|
status?: EnumAssignmentStatusFieldUpdateOperationsInput | $Enums.AssignmentStatus
|
|
103056
104913
|
cancel_reason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
103057
104914
|
solution_url?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104915
|
+
zip_url?: NullableStringFieldUpdateOperationsInput | string | null
|
|
103058
104916
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
103059
104917
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
103060
104918
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -103077,6 +104935,7 @@ export namespace Prisma {
|
|
|
103077
104935
|
status?: EnumAssignmentStatusFieldUpdateOperationsInput | $Enums.AssignmentStatus
|
|
103078
104936
|
cancel_reason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
103079
104937
|
solution_url?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104938
|
+
zip_url?: NullableStringFieldUpdateOperationsInput | string | null
|
|
103080
104939
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
103081
104940
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
103082
104941
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -104065,6 +105924,7 @@ export namespace Prisma {
|
|
|
104065
105924
|
status?: $Enums.AssignmentStatus
|
|
104066
105925
|
cancel_reason?: string | null
|
|
104067
105926
|
solution_url?: string | null
|
|
105927
|
+
zip_url?: string | null
|
|
104068
105928
|
scheduled_start_time?: Date | string | null
|
|
104069
105929
|
scheduled_end_time?: Date | string | null
|
|
104070
105930
|
created_at?: Date | string
|
|
@@ -104810,6 +106670,7 @@ export namespace Prisma {
|
|
|
104810
106670
|
suggestions?: SuggestionUpdateManyWithoutInterviewNestedInput
|
|
104811
106671
|
feedback?: FeedbackUpdateManyWithoutInterviewNestedInput
|
|
104812
106672
|
interviewNotes?: InterviewNotesUpdateManyWithoutInterviewNestedInput
|
|
106673
|
+
liveAnalysis?: LiveAnalysisUpdateManyWithoutInterviewNestedInput
|
|
104813
106674
|
}
|
|
104814
106675
|
|
|
104815
106676
|
export type InterviewUncheckedUpdateWithoutOrganisationInput = {
|
|
@@ -104849,6 +106710,7 @@ export namespace Prisma {
|
|
|
104849
106710
|
suggestions?: SuggestionUncheckedUpdateManyWithoutInterviewNestedInput
|
|
104850
106711
|
feedback?: FeedbackUncheckedUpdateManyWithoutInterviewNestedInput
|
|
104851
106712
|
interviewNotes?: InterviewNotesUncheckedUpdateManyWithoutInterviewNestedInput
|
|
106713
|
+
liveAnalysis?: LiveAnalysisUncheckedUpdateManyWithoutInterviewNestedInput
|
|
104852
106714
|
}
|
|
104853
106715
|
|
|
104854
106716
|
export type InterviewUncheckedUpdateManyWithoutOrganisationInput = {
|
|
@@ -104892,6 +106754,7 @@ export namespace Prisma {
|
|
|
104892
106754
|
status?: EnumAssignmentStatusFieldUpdateOperationsInput | $Enums.AssignmentStatus
|
|
104893
106755
|
cancel_reason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104894
106756
|
solution_url?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106757
|
+
zip_url?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104895
106758
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
104896
106759
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
104897
106760
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -104920,6 +106783,7 @@ export namespace Prisma {
|
|
|
104920
106783
|
status?: EnumAssignmentStatusFieldUpdateOperationsInput | $Enums.AssignmentStatus
|
|
104921
106784
|
cancel_reason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104922
106785
|
solution_url?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106786
|
+
zip_url?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104923
106787
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
104924
106788
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
104925
106789
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -104942,6 +106806,7 @@ export namespace Prisma {
|
|
|
104942
106806
|
status?: EnumAssignmentStatusFieldUpdateOperationsInput | $Enums.AssignmentStatus
|
|
104943
106807
|
cancel_reason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104944
106808
|
solution_url?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106809
|
+
zip_url?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104945
106810
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
104946
106811
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
104947
106812
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -105787,6 +107652,7 @@ export namespace Prisma {
|
|
|
105787
107652
|
suggestions?: SuggestionUpdateManyWithoutInterviewNestedInput
|
|
105788
107653
|
feedback?: FeedbackUpdateManyWithoutInterviewNestedInput
|
|
105789
107654
|
interviewNotes?: InterviewNotesUpdateManyWithoutInterviewNestedInput
|
|
107655
|
+
liveAnalysis?: LiveAnalysisUpdateManyWithoutInterviewNestedInput
|
|
105790
107656
|
}
|
|
105791
107657
|
|
|
105792
107658
|
export type InterviewUncheckedUpdateWithoutResumeInput = {
|
|
@@ -105826,6 +107692,7 @@ export namespace Prisma {
|
|
|
105826
107692
|
suggestions?: SuggestionUncheckedUpdateManyWithoutInterviewNestedInput
|
|
105827
107693
|
feedback?: FeedbackUncheckedUpdateManyWithoutInterviewNestedInput
|
|
105828
107694
|
interviewNotes?: InterviewNotesUncheckedUpdateManyWithoutInterviewNestedInput
|
|
107695
|
+
liveAnalysis?: LiveAnalysisUncheckedUpdateManyWithoutInterviewNestedInput
|
|
105829
107696
|
}
|
|
105830
107697
|
|
|
105831
107698
|
export type InterviewUncheckedUpdateManyWithoutResumeInput = {
|
|
@@ -106389,6 +108256,7 @@ export namespace Prisma {
|
|
|
106389
108256
|
status?: $Enums.AssignmentStatus
|
|
106390
108257
|
cancel_reason?: string | null
|
|
106391
108258
|
solution_url?: string | null
|
|
108259
|
+
zip_url?: string | null
|
|
106392
108260
|
scheduled_start_time?: Date | string | null
|
|
106393
108261
|
scheduled_end_time?: Date | string | null
|
|
106394
108262
|
created_at?: Date | string
|
|
@@ -106411,6 +108279,7 @@ export namespace Prisma {
|
|
|
106411
108279
|
status?: $Enums.AssignmentStatus
|
|
106412
108280
|
cancel_reason?: string | null
|
|
106413
108281
|
solution_url?: string | null
|
|
108282
|
+
zip_url?: string | null
|
|
106414
108283
|
scheduled_start_time?: Date | string | null
|
|
106415
108284
|
scheduled_end_time?: Date | string | null
|
|
106416
108285
|
created_at?: Date | string
|
|
@@ -107033,6 +108902,7 @@ export namespace Prisma {
|
|
|
107033
108902
|
suggestions?: SuggestionUpdateManyWithoutInterviewNestedInput
|
|
107034
108903
|
feedback?: FeedbackUpdateManyWithoutInterviewNestedInput
|
|
107035
108904
|
interviewNotes?: InterviewNotesUpdateManyWithoutInterviewNestedInput
|
|
108905
|
+
liveAnalysis?: LiveAnalysisUpdateManyWithoutInterviewNestedInput
|
|
107036
108906
|
}
|
|
107037
108907
|
|
|
107038
108908
|
export type InterviewUncheckedUpdateWithoutCandidateInput = {
|
|
@@ -107072,6 +108942,7 @@ export namespace Prisma {
|
|
|
107072
108942
|
suggestions?: SuggestionUncheckedUpdateManyWithoutInterviewNestedInput
|
|
107073
108943
|
feedback?: FeedbackUncheckedUpdateManyWithoutInterviewNestedInput
|
|
107074
108944
|
interviewNotes?: InterviewNotesUncheckedUpdateManyWithoutInterviewNestedInput
|
|
108945
|
+
liveAnalysis?: LiveAnalysisUncheckedUpdateManyWithoutInterviewNestedInput
|
|
107075
108946
|
}
|
|
107076
108947
|
|
|
107077
108948
|
export type InterviewUncheckedUpdateManyWithoutCandidateInput = {
|
|
@@ -107145,6 +109016,7 @@ export namespace Prisma {
|
|
|
107145
109016
|
suggestions?: SuggestionUpdateManyWithoutInterviewNestedInput
|
|
107146
109017
|
feedback?: FeedbackUpdateManyWithoutInterviewNestedInput
|
|
107147
109018
|
interviewNotes?: InterviewNotesUpdateManyWithoutInterviewNestedInput
|
|
109019
|
+
liveAnalysis?: LiveAnalysisUpdateManyWithoutInterviewNestedInput
|
|
107148
109020
|
}
|
|
107149
109021
|
|
|
107150
109022
|
export type InterviewUncheckedUpdateWithoutInterviewerInput = {
|
|
@@ -107184,6 +109056,7 @@ export namespace Prisma {
|
|
|
107184
109056
|
suggestions?: SuggestionUncheckedUpdateManyWithoutInterviewNestedInput
|
|
107185
109057
|
feedback?: FeedbackUncheckedUpdateManyWithoutInterviewNestedInput
|
|
107186
109058
|
interviewNotes?: InterviewNotesUncheckedUpdateManyWithoutInterviewNestedInput
|
|
109059
|
+
liveAnalysis?: LiveAnalysisUncheckedUpdateManyWithoutInterviewNestedInput
|
|
107187
109060
|
}
|
|
107188
109061
|
|
|
107189
109062
|
export type InterviewUncheckedUpdateManyWithoutInterviewerInput = {
|
|
@@ -107416,6 +109289,7 @@ export namespace Prisma {
|
|
|
107416
109289
|
status?: EnumAssignmentStatusFieldUpdateOperationsInput | $Enums.AssignmentStatus
|
|
107417
109290
|
cancel_reason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
107418
109291
|
solution_url?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109292
|
+
zip_url?: NullableStringFieldUpdateOperationsInput | string | null
|
|
107419
109293
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
107420
109294
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
107421
109295
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -107444,6 +109318,7 @@ export namespace Prisma {
|
|
|
107444
109318
|
status?: EnumAssignmentStatusFieldUpdateOperationsInput | $Enums.AssignmentStatus
|
|
107445
109319
|
cancel_reason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
107446
109320
|
solution_url?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109321
|
+
zip_url?: NullableStringFieldUpdateOperationsInput | string | null
|
|
107447
109322
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
107448
109323
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
107449
109324
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -107466,6 +109341,7 @@ export namespace Prisma {
|
|
|
107466
109341
|
status?: EnumAssignmentStatusFieldUpdateOperationsInput | $Enums.AssignmentStatus
|
|
107467
109342
|
cancel_reason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
107468
109343
|
solution_url?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109344
|
+
zip_url?: NullableStringFieldUpdateOperationsInput | string | null
|
|
107469
109345
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
107470
109346
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
107471
109347
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -107482,6 +109358,7 @@ export namespace Prisma {
|
|
|
107482
109358
|
status?: EnumAssignmentStatusFieldUpdateOperationsInput | $Enums.AssignmentStatus
|
|
107483
109359
|
cancel_reason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
107484
109360
|
solution_url?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109361
|
+
zip_url?: NullableStringFieldUpdateOperationsInput | string | null
|
|
107485
109362
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
107486
109363
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
107487
109364
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -107510,6 +109387,7 @@ export namespace Prisma {
|
|
|
107510
109387
|
status?: EnumAssignmentStatusFieldUpdateOperationsInput | $Enums.AssignmentStatus
|
|
107511
109388
|
cancel_reason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
107512
109389
|
solution_url?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109390
|
+
zip_url?: NullableStringFieldUpdateOperationsInput | string | null
|
|
107513
109391
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
107514
109392
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
107515
109393
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -107532,6 +109410,7 @@ export namespace Prisma {
|
|
|
107532
109410
|
status?: EnumAssignmentStatusFieldUpdateOperationsInput | $Enums.AssignmentStatus
|
|
107533
109411
|
cancel_reason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
107534
109412
|
solution_url?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109413
|
+
zip_url?: NullableStringFieldUpdateOperationsInput | string | null
|
|
107535
109414
|
scheduled_start_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
107536
109415
|
scheduled_end_time?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
107537
109416
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|