@adaptware/eagles-db 0.4.44 → 0.4.46
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 +27 -3
- package/client/index-browser.js +24 -0
- package/client/index.d.ts +2412 -2
- package/client/index.js +27 -3
- package/client/package.json +1 -1
- package/client/schema.prisma +46 -11
- package/client/wasm.js +27 -3
- package/package.json +1 -1
- package/prisma/schema/evaluationCriteria.prisma +33 -0
- package/prisma/schema/organisation.prisma +12 -11
package/client/index.d.ts
CHANGED
|
@@ -168,6 +168,11 @@ export type ContactUs = $Result.DefaultSelection<Prisma.$ContactUsPayload>
|
|
|
168
168
|
*
|
|
169
169
|
*/
|
|
170
170
|
export type Document = $Result.DefaultSelection<Prisma.$DocumentPayload>
|
|
171
|
+
/**
|
|
172
|
+
* Model EvaluationCriteria
|
|
173
|
+
*
|
|
174
|
+
*/
|
|
175
|
+
export type EvaluationCriteria = $Result.DefaultSelection<Prisma.$EvaluationCriteriaPayload>
|
|
171
176
|
/**
|
|
172
177
|
* Model EvaluationPlan
|
|
173
178
|
*
|
|
@@ -660,6 +665,14 @@ export const CommMessageStatus: {
|
|
|
660
665
|
export type CommMessageStatus = (typeof CommMessageStatus)[keyof typeof CommMessageStatus]
|
|
661
666
|
|
|
662
667
|
|
|
668
|
+
export const CriteriaScope: {
|
|
669
|
+
ORGANISATION: 'ORGANISATION',
|
|
670
|
+
TREADSPACE: 'TREADSPACE'
|
|
671
|
+
};
|
|
672
|
+
|
|
673
|
+
export type CriteriaScope = (typeof CriteriaScope)[keyof typeof CriteriaScope]
|
|
674
|
+
|
|
675
|
+
|
|
663
676
|
export const RoundType: {
|
|
664
677
|
ASSESSMENT: 'ASSESSMENT',
|
|
665
678
|
INTERVIEW: 'INTERVIEW',
|
|
@@ -1057,6 +1070,10 @@ export type CommMessageStatus = $Enums.CommMessageStatus
|
|
|
1057
1070
|
|
|
1058
1071
|
export const CommMessageStatus: typeof $Enums.CommMessageStatus
|
|
1059
1072
|
|
|
1073
|
+
export type CriteriaScope = $Enums.CriteriaScope
|
|
1074
|
+
|
|
1075
|
+
export const CriteriaScope: typeof $Enums.CriteriaScope
|
|
1076
|
+
|
|
1060
1077
|
export type RoundType = $Enums.RoundType
|
|
1061
1078
|
|
|
1062
1079
|
export const RoundType: typeof $Enums.RoundType
|
|
@@ -1577,6 +1594,16 @@ export class PrismaClient<
|
|
|
1577
1594
|
*/
|
|
1578
1595
|
get document(): Prisma.DocumentDelegate<ExtArgs, ClientOptions>;
|
|
1579
1596
|
|
|
1597
|
+
/**
|
|
1598
|
+
* `prisma.evaluationCriteria`: Exposes CRUD operations for the **EvaluationCriteria** model.
|
|
1599
|
+
* Example usage:
|
|
1600
|
+
* ```ts
|
|
1601
|
+
* // Fetch zero or more EvaluationCriteria
|
|
1602
|
+
* const evaluationCriteria = await prisma.evaluationCriteria.findMany()
|
|
1603
|
+
* ```
|
|
1604
|
+
*/
|
|
1605
|
+
get evaluationCriteria(): Prisma.EvaluationCriteriaDelegate<ExtArgs, ClientOptions>;
|
|
1606
|
+
|
|
1580
1607
|
/**
|
|
1581
1608
|
* `prisma.evaluationPlan`: Exposes CRUD operations for the **EvaluationPlan** model.
|
|
1582
1609
|
* Example usage:
|
|
@@ -2574,6 +2601,7 @@ export namespace Prisma {
|
|
|
2574
2601
|
CommunicationMessage: 'CommunicationMessage',
|
|
2575
2602
|
ContactUs: 'ContactUs',
|
|
2576
2603
|
Document: 'Document',
|
|
2604
|
+
EvaluationCriteria: 'EvaluationCriteria',
|
|
2577
2605
|
EvaluationPlan: 'EvaluationPlan',
|
|
2578
2606
|
Feedback: 'Feedback',
|
|
2579
2607
|
FitCheck: 'FitCheck',
|
|
@@ -2645,7 +2673,7 @@ export namespace Prisma {
|
|
|
2645
2673
|
omit: GlobalOmitOptions
|
|
2646
2674
|
}
|
|
2647
2675
|
meta: {
|
|
2648
|
-
modelProps: "candidateQuestionResponse" | "userRole" | "action" | "activityEvent" | "activityLog" | "applicationAnalytics" | "applicationAnalyticsDaily" | "application" | "approval" | "assessment" | "assessmentLibrary" | "assessmentQuestion" | "assessmentRoundAnalytics" | "assessmentRoundAnalyticsDaily" | "assignment" | "assignmentLibrary" | "assignmentRoundAnalytics" | "assignmentRoundAnalyticsDaily" | "authModule" | "budget" | "calendly" | "candidateProfile" | "channelProviderConfig" | "conversation" | "communicationMessage" | "contactUs" | "document" | "evaluationPlan" | "feedback" | "fitCheck" | "google" | "integrationCredential" | "integrationJobSync" | "zohoSyncMapping" | "interview" | "interviewNotes" | "interviewRoundAnalytics" | "interviewRoundAnalyticsDaily" | "interviewerOrganisationAnalytics" | "interviewerJobAnalytics" | "interviewerOrganisationAnalyticsDaily" | "interviewerJobAnalyticsDaily" | "jobApplicationField" | "jobApplicationResponse" | "jobApplicationTemplate" | "jobDescription" | "jobDescriptionData" | "jobProfile" | "jobRoundAnalytics" | "jobRoundAnalyticsDaily" | "liveAnalysis" | "message" | "notes" | "ongoingEvaluation" | "openJobAnalytics" | "openJobAnalyticsDaily" | "organisation" | "organisationConfig" | "permission" | "pipelineDistributionAnalytics" | "pipelineDistributionAnalyticsDaily" | "asyncOperation" | "question" | "refreshToken" | "reportingOverviewJobAnalytics" | "reportingOverviewJobRecruiter" | "resume" | "resumeData" | "roundAnalytics" | "roundAnalyticsDaily" | "source" | "sourceEffectivenessAnalytics" | "sourceEffectivenessAnalyticsDaily" | "suggestion" | "transcript" | "user" | "userProfile" | "zoomMeeting" | "zoomMeetingParticipant" | "zoomWebhookEvent"
|
|
2676
|
+
modelProps: "candidateQuestionResponse" | "userRole" | "action" | "activityEvent" | "activityLog" | "applicationAnalytics" | "applicationAnalyticsDaily" | "application" | "approval" | "assessment" | "assessmentLibrary" | "assessmentQuestion" | "assessmentRoundAnalytics" | "assessmentRoundAnalyticsDaily" | "assignment" | "assignmentLibrary" | "assignmentRoundAnalytics" | "assignmentRoundAnalyticsDaily" | "authModule" | "budget" | "calendly" | "candidateProfile" | "channelProviderConfig" | "conversation" | "communicationMessage" | "contactUs" | "document" | "evaluationCriteria" | "evaluationPlan" | "feedback" | "fitCheck" | "google" | "integrationCredential" | "integrationJobSync" | "zohoSyncMapping" | "interview" | "interviewNotes" | "interviewRoundAnalytics" | "interviewRoundAnalyticsDaily" | "interviewerOrganisationAnalytics" | "interviewerJobAnalytics" | "interviewerOrganisationAnalyticsDaily" | "interviewerJobAnalyticsDaily" | "jobApplicationField" | "jobApplicationResponse" | "jobApplicationTemplate" | "jobDescription" | "jobDescriptionData" | "jobProfile" | "jobRoundAnalytics" | "jobRoundAnalyticsDaily" | "liveAnalysis" | "message" | "notes" | "ongoingEvaluation" | "openJobAnalytics" | "openJobAnalyticsDaily" | "organisation" | "organisationConfig" | "permission" | "pipelineDistributionAnalytics" | "pipelineDistributionAnalyticsDaily" | "asyncOperation" | "question" | "refreshToken" | "reportingOverviewJobAnalytics" | "reportingOverviewJobRecruiter" | "resume" | "resumeData" | "roundAnalytics" | "roundAnalyticsDaily" | "source" | "sourceEffectivenessAnalytics" | "sourceEffectivenessAnalyticsDaily" | "suggestion" | "transcript" | "user" | "userProfile" | "zoomMeeting" | "zoomMeetingParticipant" | "zoomWebhookEvent"
|
|
2649
2677
|
txIsolationLevel: Prisma.TransactionIsolationLevel
|
|
2650
2678
|
}
|
|
2651
2679
|
model: {
|
|
@@ -4647,6 +4675,80 @@ export namespace Prisma {
|
|
|
4647
4675
|
}
|
|
4648
4676
|
}
|
|
4649
4677
|
}
|
|
4678
|
+
EvaluationCriteria: {
|
|
4679
|
+
payload: Prisma.$EvaluationCriteriaPayload<ExtArgs>
|
|
4680
|
+
fields: Prisma.EvaluationCriteriaFieldRefs
|
|
4681
|
+
operations: {
|
|
4682
|
+
findUnique: {
|
|
4683
|
+
args: Prisma.EvaluationCriteriaFindUniqueArgs<ExtArgs>
|
|
4684
|
+
result: $Utils.PayloadToResult<Prisma.$EvaluationCriteriaPayload> | null
|
|
4685
|
+
}
|
|
4686
|
+
findUniqueOrThrow: {
|
|
4687
|
+
args: Prisma.EvaluationCriteriaFindUniqueOrThrowArgs<ExtArgs>
|
|
4688
|
+
result: $Utils.PayloadToResult<Prisma.$EvaluationCriteriaPayload>
|
|
4689
|
+
}
|
|
4690
|
+
findFirst: {
|
|
4691
|
+
args: Prisma.EvaluationCriteriaFindFirstArgs<ExtArgs>
|
|
4692
|
+
result: $Utils.PayloadToResult<Prisma.$EvaluationCriteriaPayload> | null
|
|
4693
|
+
}
|
|
4694
|
+
findFirstOrThrow: {
|
|
4695
|
+
args: Prisma.EvaluationCriteriaFindFirstOrThrowArgs<ExtArgs>
|
|
4696
|
+
result: $Utils.PayloadToResult<Prisma.$EvaluationCriteriaPayload>
|
|
4697
|
+
}
|
|
4698
|
+
findMany: {
|
|
4699
|
+
args: Prisma.EvaluationCriteriaFindManyArgs<ExtArgs>
|
|
4700
|
+
result: $Utils.PayloadToResult<Prisma.$EvaluationCriteriaPayload>[]
|
|
4701
|
+
}
|
|
4702
|
+
create: {
|
|
4703
|
+
args: Prisma.EvaluationCriteriaCreateArgs<ExtArgs>
|
|
4704
|
+
result: $Utils.PayloadToResult<Prisma.$EvaluationCriteriaPayload>
|
|
4705
|
+
}
|
|
4706
|
+
createMany: {
|
|
4707
|
+
args: Prisma.EvaluationCriteriaCreateManyArgs<ExtArgs>
|
|
4708
|
+
result: BatchPayload
|
|
4709
|
+
}
|
|
4710
|
+
createManyAndReturn: {
|
|
4711
|
+
args: Prisma.EvaluationCriteriaCreateManyAndReturnArgs<ExtArgs>
|
|
4712
|
+
result: $Utils.PayloadToResult<Prisma.$EvaluationCriteriaPayload>[]
|
|
4713
|
+
}
|
|
4714
|
+
delete: {
|
|
4715
|
+
args: Prisma.EvaluationCriteriaDeleteArgs<ExtArgs>
|
|
4716
|
+
result: $Utils.PayloadToResult<Prisma.$EvaluationCriteriaPayload>
|
|
4717
|
+
}
|
|
4718
|
+
update: {
|
|
4719
|
+
args: Prisma.EvaluationCriteriaUpdateArgs<ExtArgs>
|
|
4720
|
+
result: $Utils.PayloadToResult<Prisma.$EvaluationCriteriaPayload>
|
|
4721
|
+
}
|
|
4722
|
+
deleteMany: {
|
|
4723
|
+
args: Prisma.EvaluationCriteriaDeleteManyArgs<ExtArgs>
|
|
4724
|
+
result: BatchPayload
|
|
4725
|
+
}
|
|
4726
|
+
updateMany: {
|
|
4727
|
+
args: Prisma.EvaluationCriteriaUpdateManyArgs<ExtArgs>
|
|
4728
|
+
result: BatchPayload
|
|
4729
|
+
}
|
|
4730
|
+
updateManyAndReturn: {
|
|
4731
|
+
args: Prisma.EvaluationCriteriaUpdateManyAndReturnArgs<ExtArgs>
|
|
4732
|
+
result: $Utils.PayloadToResult<Prisma.$EvaluationCriteriaPayload>[]
|
|
4733
|
+
}
|
|
4734
|
+
upsert: {
|
|
4735
|
+
args: Prisma.EvaluationCriteriaUpsertArgs<ExtArgs>
|
|
4736
|
+
result: $Utils.PayloadToResult<Prisma.$EvaluationCriteriaPayload>
|
|
4737
|
+
}
|
|
4738
|
+
aggregate: {
|
|
4739
|
+
args: Prisma.EvaluationCriteriaAggregateArgs<ExtArgs>
|
|
4740
|
+
result: $Utils.Optional<AggregateEvaluationCriteria>
|
|
4741
|
+
}
|
|
4742
|
+
groupBy: {
|
|
4743
|
+
args: Prisma.EvaluationCriteriaGroupByArgs<ExtArgs>
|
|
4744
|
+
result: $Utils.Optional<EvaluationCriteriaGroupByOutputType>[]
|
|
4745
|
+
}
|
|
4746
|
+
count: {
|
|
4747
|
+
args: Prisma.EvaluationCriteriaCountArgs<ExtArgs>
|
|
4748
|
+
result: $Utils.Optional<EvaluationCriteriaCountAggregateOutputType> | number
|
|
4749
|
+
}
|
|
4750
|
+
}
|
|
4751
|
+
}
|
|
4650
4752
|
EvaluationPlan: {
|
|
4651
4753
|
payload: Prisma.$EvaluationPlanPayload<ExtArgs>
|
|
4652
4754
|
fields: Prisma.EvaluationPlanFieldRefs
|
|
@@ -8692,6 +8794,7 @@ export namespace Prisma {
|
|
|
8692
8794
|
communicationMessage?: CommunicationMessageOmit
|
|
8693
8795
|
contactUs?: ContactUsOmit
|
|
8694
8796
|
document?: DocumentOmit
|
|
8797
|
+
evaluationCriteria?: EvaluationCriteriaOmit
|
|
8695
8798
|
evaluationPlan?: EvaluationPlanOmit
|
|
8696
8799
|
feedback?: FeedbackOmit
|
|
8697
8800
|
fitCheck?: FitCheckOmit
|
|
@@ -9583,6 +9686,7 @@ export namespace Prisma {
|
|
|
9583
9686
|
documents: number
|
|
9584
9687
|
job_application_templates: number
|
|
9585
9688
|
sources: number
|
|
9689
|
+
evaluation_criteria: number
|
|
9586
9690
|
}
|
|
9587
9691
|
|
|
9588
9692
|
export type OrganisationCountOutputTypeSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -9613,6 +9717,7 @@ export namespace Prisma {
|
|
|
9613
9717
|
documents?: boolean | OrganisationCountOutputTypeCountDocumentsArgs
|
|
9614
9718
|
job_application_templates?: boolean | OrganisationCountOutputTypeCountJob_application_templatesArgs
|
|
9615
9719
|
sources?: boolean | OrganisationCountOutputTypeCountSourcesArgs
|
|
9720
|
+
evaluation_criteria?: boolean | OrganisationCountOutputTypeCountEvaluation_criteriaArgs
|
|
9616
9721
|
}
|
|
9617
9722
|
|
|
9618
9723
|
// Custom InputTypes
|
|
@@ -9815,6 +9920,13 @@ export namespace Prisma {
|
|
|
9815
9920
|
where?: SourceWhereInput
|
|
9816
9921
|
}
|
|
9817
9922
|
|
|
9923
|
+
/**
|
|
9924
|
+
* OrganisationCountOutputType without action
|
|
9925
|
+
*/
|
|
9926
|
+
export type OrganisationCountOutputTypeCountEvaluation_criteriaArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
9927
|
+
where?: EvaluationCriteriaWhereInput
|
|
9928
|
+
}
|
|
9929
|
+
|
|
9818
9930
|
|
|
9819
9931
|
/**
|
|
9820
9932
|
* Count Type QuestionCountOutputType
|
|
@@ -45456,6 +45568,1245 @@ export namespace Prisma {
|
|
|
45456
45568
|
}
|
|
45457
45569
|
|
|
45458
45570
|
|
|
45571
|
+
/**
|
|
45572
|
+
* Model EvaluationCriteria
|
|
45573
|
+
*/
|
|
45574
|
+
|
|
45575
|
+
export type AggregateEvaluationCriteria = {
|
|
45576
|
+
_count: EvaluationCriteriaCountAggregateOutputType | null
|
|
45577
|
+
_avg: EvaluationCriteriaAvgAggregateOutputType | null
|
|
45578
|
+
_sum: EvaluationCriteriaSumAggregateOutputType | null
|
|
45579
|
+
_min: EvaluationCriteriaMinAggregateOutputType | null
|
|
45580
|
+
_max: EvaluationCriteriaMaxAggregateOutputType | null
|
|
45581
|
+
}
|
|
45582
|
+
|
|
45583
|
+
export type EvaluationCriteriaAvgAggregateOutputType = {
|
|
45584
|
+
weightage: number | null
|
|
45585
|
+
}
|
|
45586
|
+
|
|
45587
|
+
export type EvaluationCriteriaSumAggregateOutputType = {
|
|
45588
|
+
weightage: number | null
|
|
45589
|
+
}
|
|
45590
|
+
|
|
45591
|
+
export type EvaluationCriteriaMinAggregateOutputType = {
|
|
45592
|
+
id: string | null
|
|
45593
|
+
organisation_id: string | null
|
|
45594
|
+
scope: $Enums.CriteriaScope | null
|
|
45595
|
+
key: string | null
|
|
45596
|
+
criteria: string | null
|
|
45597
|
+
description: string | null
|
|
45598
|
+
weightage: number | null
|
|
45599
|
+
is_elimination: boolean | null
|
|
45600
|
+
created_by: string | null
|
|
45601
|
+
updated_by: string | null
|
|
45602
|
+
created_at: Date | null
|
|
45603
|
+
updated_at: Date | null
|
|
45604
|
+
is_active: boolean | null
|
|
45605
|
+
}
|
|
45606
|
+
|
|
45607
|
+
export type EvaluationCriteriaMaxAggregateOutputType = {
|
|
45608
|
+
id: string | null
|
|
45609
|
+
organisation_id: string | null
|
|
45610
|
+
scope: $Enums.CriteriaScope | null
|
|
45611
|
+
key: string | null
|
|
45612
|
+
criteria: string | null
|
|
45613
|
+
description: string | null
|
|
45614
|
+
weightage: number | null
|
|
45615
|
+
is_elimination: boolean | null
|
|
45616
|
+
created_by: string | null
|
|
45617
|
+
updated_by: string | null
|
|
45618
|
+
created_at: Date | null
|
|
45619
|
+
updated_at: Date | null
|
|
45620
|
+
is_active: boolean | null
|
|
45621
|
+
}
|
|
45622
|
+
|
|
45623
|
+
export type EvaluationCriteriaCountAggregateOutputType = {
|
|
45624
|
+
id: number
|
|
45625
|
+
organisation_id: number
|
|
45626
|
+
scope: number
|
|
45627
|
+
key: number
|
|
45628
|
+
criteria: number
|
|
45629
|
+
description: number
|
|
45630
|
+
weightage: number
|
|
45631
|
+
is_elimination: number
|
|
45632
|
+
metadata: number
|
|
45633
|
+
created_by: number
|
|
45634
|
+
updated_by: number
|
|
45635
|
+
created_at: number
|
|
45636
|
+
updated_at: number
|
|
45637
|
+
is_active: number
|
|
45638
|
+
_all: number
|
|
45639
|
+
}
|
|
45640
|
+
|
|
45641
|
+
|
|
45642
|
+
export type EvaluationCriteriaAvgAggregateInputType = {
|
|
45643
|
+
weightage?: true
|
|
45644
|
+
}
|
|
45645
|
+
|
|
45646
|
+
export type EvaluationCriteriaSumAggregateInputType = {
|
|
45647
|
+
weightage?: true
|
|
45648
|
+
}
|
|
45649
|
+
|
|
45650
|
+
export type EvaluationCriteriaMinAggregateInputType = {
|
|
45651
|
+
id?: true
|
|
45652
|
+
organisation_id?: true
|
|
45653
|
+
scope?: true
|
|
45654
|
+
key?: true
|
|
45655
|
+
criteria?: true
|
|
45656
|
+
description?: true
|
|
45657
|
+
weightage?: true
|
|
45658
|
+
is_elimination?: true
|
|
45659
|
+
created_by?: true
|
|
45660
|
+
updated_by?: true
|
|
45661
|
+
created_at?: true
|
|
45662
|
+
updated_at?: true
|
|
45663
|
+
is_active?: true
|
|
45664
|
+
}
|
|
45665
|
+
|
|
45666
|
+
export type EvaluationCriteriaMaxAggregateInputType = {
|
|
45667
|
+
id?: true
|
|
45668
|
+
organisation_id?: true
|
|
45669
|
+
scope?: true
|
|
45670
|
+
key?: true
|
|
45671
|
+
criteria?: true
|
|
45672
|
+
description?: true
|
|
45673
|
+
weightage?: true
|
|
45674
|
+
is_elimination?: true
|
|
45675
|
+
created_by?: true
|
|
45676
|
+
updated_by?: true
|
|
45677
|
+
created_at?: true
|
|
45678
|
+
updated_at?: true
|
|
45679
|
+
is_active?: true
|
|
45680
|
+
}
|
|
45681
|
+
|
|
45682
|
+
export type EvaluationCriteriaCountAggregateInputType = {
|
|
45683
|
+
id?: true
|
|
45684
|
+
organisation_id?: true
|
|
45685
|
+
scope?: true
|
|
45686
|
+
key?: true
|
|
45687
|
+
criteria?: true
|
|
45688
|
+
description?: true
|
|
45689
|
+
weightage?: true
|
|
45690
|
+
is_elimination?: true
|
|
45691
|
+
metadata?: true
|
|
45692
|
+
created_by?: true
|
|
45693
|
+
updated_by?: true
|
|
45694
|
+
created_at?: true
|
|
45695
|
+
updated_at?: true
|
|
45696
|
+
is_active?: true
|
|
45697
|
+
_all?: true
|
|
45698
|
+
}
|
|
45699
|
+
|
|
45700
|
+
export type EvaluationCriteriaAggregateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
45701
|
+
/**
|
|
45702
|
+
* Filter which EvaluationCriteria to aggregate.
|
|
45703
|
+
*/
|
|
45704
|
+
where?: EvaluationCriteriaWhereInput
|
|
45705
|
+
/**
|
|
45706
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
45707
|
+
*
|
|
45708
|
+
* Determine the order of EvaluationCriteria to fetch.
|
|
45709
|
+
*/
|
|
45710
|
+
orderBy?: EvaluationCriteriaOrderByWithRelationInput | EvaluationCriteriaOrderByWithRelationInput[]
|
|
45711
|
+
/**
|
|
45712
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
45713
|
+
*
|
|
45714
|
+
* Sets the start position
|
|
45715
|
+
*/
|
|
45716
|
+
cursor?: EvaluationCriteriaWhereUniqueInput
|
|
45717
|
+
/**
|
|
45718
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
45719
|
+
*
|
|
45720
|
+
* Take `±n` EvaluationCriteria from the position of the cursor.
|
|
45721
|
+
*/
|
|
45722
|
+
take?: number
|
|
45723
|
+
/**
|
|
45724
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
45725
|
+
*
|
|
45726
|
+
* Skip the first `n` EvaluationCriteria.
|
|
45727
|
+
*/
|
|
45728
|
+
skip?: number
|
|
45729
|
+
/**
|
|
45730
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
45731
|
+
*
|
|
45732
|
+
* Count returned EvaluationCriteria
|
|
45733
|
+
**/
|
|
45734
|
+
_count?: true | EvaluationCriteriaCountAggregateInputType
|
|
45735
|
+
/**
|
|
45736
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
45737
|
+
*
|
|
45738
|
+
* Select which fields to average
|
|
45739
|
+
**/
|
|
45740
|
+
_avg?: EvaluationCriteriaAvgAggregateInputType
|
|
45741
|
+
/**
|
|
45742
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
45743
|
+
*
|
|
45744
|
+
* Select which fields to sum
|
|
45745
|
+
**/
|
|
45746
|
+
_sum?: EvaluationCriteriaSumAggregateInputType
|
|
45747
|
+
/**
|
|
45748
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
45749
|
+
*
|
|
45750
|
+
* Select which fields to find the minimum value
|
|
45751
|
+
**/
|
|
45752
|
+
_min?: EvaluationCriteriaMinAggregateInputType
|
|
45753
|
+
/**
|
|
45754
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
45755
|
+
*
|
|
45756
|
+
* Select which fields to find the maximum value
|
|
45757
|
+
**/
|
|
45758
|
+
_max?: EvaluationCriteriaMaxAggregateInputType
|
|
45759
|
+
}
|
|
45760
|
+
|
|
45761
|
+
export type GetEvaluationCriteriaAggregateType<T extends EvaluationCriteriaAggregateArgs> = {
|
|
45762
|
+
[P in keyof T & keyof AggregateEvaluationCriteria]: P extends '_count' | 'count'
|
|
45763
|
+
? T[P] extends true
|
|
45764
|
+
? number
|
|
45765
|
+
: GetScalarType<T[P], AggregateEvaluationCriteria[P]>
|
|
45766
|
+
: GetScalarType<T[P], AggregateEvaluationCriteria[P]>
|
|
45767
|
+
}
|
|
45768
|
+
|
|
45769
|
+
|
|
45770
|
+
|
|
45771
|
+
|
|
45772
|
+
export type EvaluationCriteriaGroupByArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
45773
|
+
where?: EvaluationCriteriaWhereInput
|
|
45774
|
+
orderBy?: EvaluationCriteriaOrderByWithAggregationInput | EvaluationCriteriaOrderByWithAggregationInput[]
|
|
45775
|
+
by: EvaluationCriteriaScalarFieldEnum[] | EvaluationCriteriaScalarFieldEnum
|
|
45776
|
+
having?: EvaluationCriteriaScalarWhereWithAggregatesInput
|
|
45777
|
+
take?: number
|
|
45778
|
+
skip?: number
|
|
45779
|
+
_count?: EvaluationCriteriaCountAggregateInputType | true
|
|
45780
|
+
_avg?: EvaluationCriteriaAvgAggregateInputType
|
|
45781
|
+
_sum?: EvaluationCriteriaSumAggregateInputType
|
|
45782
|
+
_min?: EvaluationCriteriaMinAggregateInputType
|
|
45783
|
+
_max?: EvaluationCriteriaMaxAggregateInputType
|
|
45784
|
+
}
|
|
45785
|
+
|
|
45786
|
+
export type EvaluationCriteriaGroupByOutputType = {
|
|
45787
|
+
id: string
|
|
45788
|
+
organisation_id: string | null
|
|
45789
|
+
scope: $Enums.CriteriaScope
|
|
45790
|
+
key: string
|
|
45791
|
+
criteria: string | null
|
|
45792
|
+
description: string | null
|
|
45793
|
+
weightage: number | null
|
|
45794
|
+
is_elimination: boolean
|
|
45795
|
+
metadata: JsonValue | null
|
|
45796
|
+
created_by: string
|
|
45797
|
+
updated_by: string
|
|
45798
|
+
created_at: Date
|
|
45799
|
+
updated_at: Date
|
|
45800
|
+
is_active: boolean
|
|
45801
|
+
_count: EvaluationCriteriaCountAggregateOutputType | null
|
|
45802
|
+
_avg: EvaluationCriteriaAvgAggregateOutputType | null
|
|
45803
|
+
_sum: EvaluationCriteriaSumAggregateOutputType | null
|
|
45804
|
+
_min: EvaluationCriteriaMinAggregateOutputType | null
|
|
45805
|
+
_max: EvaluationCriteriaMaxAggregateOutputType | null
|
|
45806
|
+
}
|
|
45807
|
+
|
|
45808
|
+
type GetEvaluationCriteriaGroupByPayload<T extends EvaluationCriteriaGroupByArgs> = Prisma.PrismaPromise<
|
|
45809
|
+
Array<
|
|
45810
|
+
PickEnumerable<EvaluationCriteriaGroupByOutputType, T['by']> &
|
|
45811
|
+
{
|
|
45812
|
+
[P in ((keyof T) & (keyof EvaluationCriteriaGroupByOutputType))]: P extends '_count'
|
|
45813
|
+
? T[P] extends boolean
|
|
45814
|
+
? number
|
|
45815
|
+
: GetScalarType<T[P], EvaluationCriteriaGroupByOutputType[P]>
|
|
45816
|
+
: GetScalarType<T[P], EvaluationCriteriaGroupByOutputType[P]>
|
|
45817
|
+
}
|
|
45818
|
+
>
|
|
45819
|
+
>
|
|
45820
|
+
|
|
45821
|
+
|
|
45822
|
+
export type EvaluationCriteriaSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
45823
|
+
id?: boolean
|
|
45824
|
+
organisation_id?: boolean
|
|
45825
|
+
scope?: boolean
|
|
45826
|
+
key?: boolean
|
|
45827
|
+
criteria?: boolean
|
|
45828
|
+
description?: boolean
|
|
45829
|
+
weightage?: boolean
|
|
45830
|
+
is_elimination?: boolean
|
|
45831
|
+
metadata?: boolean
|
|
45832
|
+
created_by?: boolean
|
|
45833
|
+
updated_by?: boolean
|
|
45834
|
+
created_at?: boolean
|
|
45835
|
+
updated_at?: boolean
|
|
45836
|
+
is_active?: boolean
|
|
45837
|
+
organisation?: boolean | EvaluationCriteria$organisationArgs<ExtArgs>
|
|
45838
|
+
}, ExtArgs["result"]["evaluationCriteria"]>
|
|
45839
|
+
|
|
45840
|
+
export type EvaluationCriteriaSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
45841
|
+
id?: boolean
|
|
45842
|
+
organisation_id?: boolean
|
|
45843
|
+
scope?: boolean
|
|
45844
|
+
key?: boolean
|
|
45845
|
+
criteria?: boolean
|
|
45846
|
+
description?: boolean
|
|
45847
|
+
weightage?: boolean
|
|
45848
|
+
is_elimination?: boolean
|
|
45849
|
+
metadata?: boolean
|
|
45850
|
+
created_by?: boolean
|
|
45851
|
+
updated_by?: boolean
|
|
45852
|
+
created_at?: boolean
|
|
45853
|
+
updated_at?: boolean
|
|
45854
|
+
is_active?: boolean
|
|
45855
|
+
organisation?: boolean | EvaluationCriteria$organisationArgs<ExtArgs>
|
|
45856
|
+
}, ExtArgs["result"]["evaluationCriteria"]>
|
|
45857
|
+
|
|
45858
|
+
export type EvaluationCriteriaSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
45859
|
+
id?: boolean
|
|
45860
|
+
organisation_id?: boolean
|
|
45861
|
+
scope?: boolean
|
|
45862
|
+
key?: boolean
|
|
45863
|
+
criteria?: boolean
|
|
45864
|
+
description?: boolean
|
|
45865
|
+
weightage?: boolean
|
|
45866
|
+
is_elimination?: boolean
|
|
45867
|
+
metadata?: boolean
|
|
45868
|
+
created_by?: boolean
|
|
45869
|
+
updated_by?: boolean
|
|
45870
|
+
created_at?: boolean
|
|
45871
|
+
updated_at?: boolean
|
|
45872
|
+
is_active?: boolean
|
|
45873
|
+
organisation?: boolean | EvaluationCriteria$organisationArgs<ExtArgs>
|
|
45874
|
+
}, ExtArgs["result"]["evaluationCriteria"]>
|
|
45875
|
+
|
|
45876
|
+
export type EvaluationCriteriaSelectScalar = {
|
|
45877
|
+
id?: boolean
|
|
45878
|
+
organisation_id?: boolean
|
|
45879
|
+
scope?: boolean
|
|
45880
|
+
key?: boolean
|
|
45881
|
+
criteria?: boolean
|
|
45882
|
+
description?: boolean
|
|
45883
|
+
weightage?: boolean
|
|
45884
|
+
is_elimination?: boolean
|
|
45885
|
+
metadata?: boolean
|
|
45886
|
+
created_by?: boolean
|
|
45887
|
+
updated_by?: boolean
|
|
45888
|
+
created_at?: boolean
|
|
45889
|
+
updated_at?: boolean
|
|
45890
|
+
is_active?: boolean
|
|
45891
|
+
}
|
|
45892
|
+
|
|
45893
|
+
export type EvaluationCriteriaOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "organisation_id" | "scope" | "key" | "criteria" | "description" | "weightage" | "is_elimination" | "metadata" | "created_by" | "updated_by" | "created_at" | "updated_at" | "is_active", ExtArgs["result"]["evaluationCriteria"]>
|
|
45894
|
+
export type EvaluationCriteriaInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
45895
|
+
organisation?: boolean | EvaluationCriteria$organisationArgs<ExtArgs>
|
|
45896
|
+
}
|
|
45897
|
+
export type EvaluationCriteriaIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
45898
|
+
organisation?: boolean | EvaluationCriteria$organisationArgs<ExtArgs>
|
|
45899
|
+
}
|
|
45900
|
+
export type EvaluationCriteriaIncludeUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
45901
|
+
organisation?: boolean | EvaluationCriteria$organisationArgs<ExtArgs>
|
|
45902
|
+
}
|
|
45903
|
+
|
|
45904
|
+
export type $EvaluationCriteriaPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
45905
|
+
name: "EvaluationCriteria"
|
|
45906
|
+
objects: {
|
|
45907
|
+
/**
|
|
45908
|
+
* Relations
|
|
45909
|
+
*/
|
|
45910
|
+
organisation: Prisma.$OrganisationPayload<ExtArgs> | null
|
|
45911
|
+
}
|
|
45912
|
+
scalars: $Extensions.GetPayloadResult<{
|
|
45913
|
+
/**
|
|
45914
|
+
* Primary key
|
|
45915
|
+
*/
|
|
45916
|
+
id: string
|
|
45917
|
+
/**
|
|
45918
|
+
* Foreign keys
|
|
45919
|
+
*/
|
|
45920
|
+
organisation_id: string | null
|
|
45921
|
+
/**
|
|
45922
|
+
* Data fields
|
|
45923
|
+
*/
|
|
45924
|
+
scope: $Enums.CriteriaScope
|
|
45925
|
+
key: string
|
|
45926
|
+
criteria: string | null
|
|
45927
|
+
description: string | null
|
|
45928
|
+
weightage: number | null
|
|
45929
|
+
is_elimination: boolean
|
|
45930
|
+
metadata: Prisma.JsonValue | null
|
|
45931
|
+
/**
|
|
45932
|
+
* Audit fields
|
|
45933
|
+
*/
|
|
45934
|
+
created_by: string
|
|
45935
|
+
updated_by: string
|
|
45936
|
+
created_at: Date
|
|
45937
|
+
updated_at: Date
|
|
45938
|
+
is_active: boolean
|
|
45939
|
+
}, ExtArgs["result"]["evaluationCriteria"]>
|
|
45940
|
+
composites: {}
|
|
45941
|
+
}
|
|
45942
|
+
|
|
45943
|
+
type EvaluationCriteriaGetPayload<S extends boolean | null | undefined | EvaluationCriteriaDefaultArgs> = $Result.GetResult<Prisma.$EvaluationCriteriaPayload, S>
|
|
45944
|
+
|
|
45945
|
+
type EvaluationCriteriaCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
45946
|
+
Omit<EvaluationCriteriaFindManyArgs, 'select' | 'include' | 'distinct' | 'omit'> & {
|
|
45947
|
+
select?: EvaluationCriteriaCountAggregateInputType | true
|
|
45948
|
+
}
|
|
45949
|
+
|
|
45950
|
+
export interface EvaluationCriteriaDelegate<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs, GlobalOmitOptions = {}> {
|
|
45951
|
+
[K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['EvaluationCriteria'], meta: { name: 'EvaluationCriteria' } }
|
|
45952
|
+
/**
|
|
45953
|
+
* Find zero or one EvaluationCriteria that matches the filter.
|
|
45954
|
+
* @param {EvaluationCriteriaFindUniqueArgs} args - Arguments to find a EvaluationCriteria
|
|
45955
|
+
* @example
|
|
45956
|
+
* // Get one EvaluationCriteria
|
|
45957
|
+
* const evaluationCriteria = await prisma.evaluationCriteria.findUnique({
|
|
45958
|
+
* where: {
|
|
45959
|
+
* // ... provide filter here
|
|
45960
|
+
* }
|
|
45961
|
+
* })
|
|
45962
|
+
*/
|
|
45963
|
+
findUnique<T extends EvaluationCriteriaFindUniqueArgs>(args: SelectSubset<T, EvaluationCriteriaFindUniqueArgs<ExtArgs>>): Prisma__EvaluationCriteriaClient<$Result.GetResult<Prisma.$EvaluationCriteriaPayload<ExtArgs>, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
|
45964
|
+
|
|
45965
|
+
/**
|
|
45966
|
+
* Find one EvaluationCriteria that matches the filter or throw an error with `error.code='P2025'`
|
|
45967
|
+
* if no matches were found.
|
|
45968
|
+
* @param {EvaluationCriteriaFindUniqueOrThrowArgs} args - Arguments to find a EvaluationCriteria
|
|
45969
|
+
* @example
|
|
45970
|
+
* // Get one EvaluationCriteria
|
|
45971
|
+
* const evaluationCriteria = await prisma.evaluationCriteria.findUniqueOrThrow({
|
|
45972
|
+
* where: {
|
|
45973
|
+
* // ... provide filter here
|
|
45974
|
+
* }
|
|
45975
|
+
* })
|
|
45976
|
+
*/
|
|
45977
|
+
findUniqueOrThrow<T extends EvaluationCriteriaFindUniqueOrThrowArgs>(args: SelectSubset<T, EvaluationCriteriaFindUniqueOrThrowArgs<ExtArgs>>): Prisma__EvaluationCriteriaClient<$Result.GetResult<Prisma.$EvaluationCriteriaPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
|
|
45978
|
+
|
|
45979
|
+
/**
|
|
45980
|
+
* Find the first EvaluationCriteria that matches the filter.
|
|
45981
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
45982
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
45983
|
+
* @param {EvaluationCriteriaFindFirstArgs} args - Arguments to find a EvaluationCriteria
|
|
45984
|
+
* @example
|
|
45985
|
+
* // Get one EvaluationCriteria
|
|
45986
|
+
* const evaluationCriteria = await prisma.evaluationCriteria.findFirst({
|
|
45987
|
+
* where: {
|
|
45988
|
+
* // ... provide filter here
|
|
45989
|
+
* }
|
|
45990
|
+
* })
|
|
45991
|
+
*/
|
|
45992
|
+
findFirst<T extends EvaluationCriteriaFindFirstArgs>(args?: SelectSubset<T, EvaluationCriteriaFindFirstArgs<ExtArgs>>): Prisma__EvaluationCriteriaClient<$Result.GetResult<Prisma.$EvaluationCriteriaPayload<ExtArgs>, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
|
45993
|
+
|
|
45994
|
+
/**
|
|
45995
|
+
* Find the first EvaluationCriteria that matches the filter or
|
|
45996
|
+
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
45997
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
45998
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
45999
|
+
* @param {EvaluationCriteriaFindFirstOrThrowArgs} args - Arguments to find a EvaluationCriteria
|
|
46000
|
+
* @example
|
|
46001
|
+
* // Get one EvaluationCriteria
|
|
46002
|
+
* const evaluationCriteria = await prisma.evaluationCriteria.findFirstOrThrow({
|
|
46003
|
+
* where: {
|
|
46004
|
+
* // ... provide filter here
|
|
46005
|
+
* }
|
|
46006
|
+
* })
|
|
46007
|
+
*/
|
|
46008
|
+
findFirstOrThrow<T extends EvaluationCriteriaFindFirstOrThrowArgs>(args?: SelectSubset<T, EvaluationCriteriaFindFirstOrThrowArgs<ExtArgs>>): Prisma__EvaluationCriteriaClient<$Result.GetResult<Prisma.$EvaluationCriteriaPayload<ExtArgs>, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
|
|
46009
|
+
|
|
46010
|
+
/**
|
|
46011
|
+
* Find zero or more EvaluationCriteria that matches the filter.
|
|
46012
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
46013
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
46014
|
+
* @param {EvaluationCriteriaFindManyArgs} args - Arguments to filter and select certain fields only.
|
|
46015
|
+
* @example
|
|
46016
|
+
* // Get all EvaluationCriteria
|
|
46017
|
+
* const evaluationCriteria = await prisma.evaluationCriteria.findMany()
|
|
46018
|
+
*
|
|
46019
|
+
* // Get first 10 EvaluationCriteria
|
|
46020
|
+
* const evaluationCriteria = await prisma.evaluationCriteria.findMany({ take: 10 })
|
|
46021
|
+
*
|
|
46022
|
+
* // Only select the `id`
|
|
46023
|
+
* const evaluationCriteriaWithIdOnly = await prisma.evaluationCriteria.findMany({ select: { id: true } })
|
|
46024
|
+
*
|
|
46025
|
+
*/
|
|
46026
|
+
findMany<T extends EvaluationCriteriaFindManyArgs>(args?: SelectSubset<T, EvaluationCriteriaFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$EvaluationCriteriaPayload<ExtArgs>, T, "findMany", GlobalOmitOptions>>
|
|
46027
|
+
|
|
46028
|
+
/**
|
|
46029
|
+
* Create a EvaluationCriteria.
|
|
46030
|
+
* @param {EvaluationCriteriaCreateArgs} args - Arguments to create a EvaluationCriteria.
|
|
46031
|
+
* @example
|
|
46032
|
+
* // Create one EvaluationCriteria
|
|
46033
|
+
* const EvaluationCriteria = await prisma.evaluationCriteria.create({
|
|
46034
|
+
* data: {
|
|
46035
|
+
* // ... data to create a EvaluationCriteria
|
|
46036
|
+
* }
|
|
46037
|
+
* })
|
|
46038
|
+
*
|
|
46039
|
+
*/
|
|
46040
|
+
create<T extends EvaluationCriteriaCreateArgs>(args: SelectSubset<T, EvaluationCriteriaCreateArgs<ExtArgs>>): Prisma__EvaluationCriteriaClient<$Result.GetResult<Prisma.$EvaluationCriteriaPayload<ExtArgs>, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
|
|
46041
|
+
|
|
46042
|
+
/**
|
|
46043
|
+
* Create many EvaluationCriteria.
|
|
46044
|
+
* @param {EvaluationCriteriaCreateManyArgs} args - Arguments to create many EvaluationCriteria.
|
|
46045
|
+
* @example
|
|
46046
|
+
* // Create many EvaluationCriteria
|
|
46047
|
+
* const evaluationCriteria = await prisma.evaluationCriteria.createMany({
|
|
46048
|
+
* data: [
|
|
46049
|
+
* // ... provide data here
|
|
46050
|
+
* ]
|
|
46051
|
+
* })
|
|
46052
|
+
*
|
|
46053
|
+
*/
|
|
46054
|
+
createMany<T extends EvaluationCriteriaCreateManyArgs>(args?: SelectSubset<T, EvaluationCriteriaCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
46055
|
+
|
|
46056
|
+
/**
|
|
46057
|
+
* Create many EvaluationCriteria and returns the data saved in the database.
|
|
46058
|
+
* @param {EvaluationCriteriaCreateManyAndReturnArgs} args - Arguments to create many EvaluationCriteria.
|
|
46059
|
+
* @example
|
|
46060
|
+
* // Create many EvaluationCriteria
|
|
46061
|
+
* const evaluationCriteria = await prisma.evaluationCriteria.createManyAndReturn({
|
|
46062
|
+
* data: [
|
|
46063
|
+
* // ... provide data here
|
|
46064
|
+
* ]
|
|
46065
|
+
* })
|
|
46066
|
+
*
|
|
46067
|
+
* // Create many EvaluationCriteria and only return the `id`
|
|
46068
|
+
* const evaluationCriteriaWithIdOnly = await prisma.evaluationCriteria.createManyAndReturn({
|
|
46069
|
+
* select: { id: true },
|
|
46070
|
+
* data: [
|
|
46071
|
+
* // ... provide data here
|
|
46072
|
+
* ]
|
|
46073
|
+
* })
|
|
46074
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
46075
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
46076
|
+
*
|
|
46077
|
+
*/
|
|
46078
|
+
createManyAndReturn<T extends EvaluationCriteriaCreateManyAndReturnArgs>(args?: SelectSubset<T, EvaluationCriteriaCreateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$EvaluationCriteriaPayload<ExtArgs>, T, "createManyAndReturn", GlobalOmitOptions>>
|
|
46079
|
+
|
|
46080
|
+
/**
|
|
46081
|
+
* Delete a EvaluationCriteria.
|
|
46082
|
+
* @param {EvaluationCriteriaDeleteArgs} args - Arguments to delete one EvaluationCriteria.
|
|
46083
|
+
* @example
|
|
46084
|
+
* // Delete one EvaluationCriteria
|
|
46085
|
+
* const EvaluationCriteria = await prisma.evaluationCriteria.delete({
|
|
46086
|
+
* where: {
|
|
46087
|
+
* // ... filter to delete one EvaluationCriteria
|
|
46088
|
+
* }
|
|
46089
|
+
* })
|
|
46090
|
+
*
|
|
46091
|
+
*/
|
|
46092
|
+
delete<T extends EvaluationCriteriaDeleteArgs>(args: SelectSubset<T, EvaluationCriteriaDeleteArgs<ExtArgs>>): Prisma__EvaluationCriteriaClient<$Result.GetResult<Prisma.$EvaluationCriteriaPayload<ExtArgs>, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
|
|
46093
|
+
|
|
46094
|
+
/**
|
|
46095
|
+
* Update one EvaluationCriteria.
|
|
46096
|
+
* @param {EvaluationCriteriaUpdateArgs} args - Arguments to update one EvaluationCriteria.
|
|
46097
|
+
* @example
|
|
46098
|
+
* // Update one EvaluationCriteria
|
|
46099
|
+
* const evaluationCriteria = await prisma.evaluationCriteria.update({
|
|
46100
|
+
* where: {
|
|
46101
|
+
* // ... provide filter here
|
|
46102
|
+
* },
|
|
46103
|
+
* data: {
|
|
46104
|
+
* // ... provide data here
|
|
46105
|
+
* }
|
|
46106
|
+
* })
|
|
46107
|
+
*
|
|
46108
|
+
*/
|
|
46109
|
+
update<T extends EvaluationCriteriaUpdateArgs>(args: SelectSubset<T, EvaluationCriteriaUpdateArgs<ExtArgs>>): Prisma__EvaluationCriteriaClient<$Result.GetResult<Prisma.$EvaluationCriteriaPayload<ExtArgs>, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
|
|
46110
|
+
|
|
46111
|
+
/**
|
|
46112
|
+
* Delete zero or more EvaluationCriteria.
|
|
46113
|
+
* @param {EvaluationCriteriaDeleteManyArgs} args - Arguments to filter EvaluationCriteria to delete.
|
|
46114
|
+
* @example
|
|
46115
|
+
* // Delete a few EvaluationCriteria
|
|
46116
|
+
* const { count } = await prisma.evaluationCriteria.deleteMany({
|
|
46117
|
+
* where: {
|
|
46118
|
+
* // ... provide filter here
|
|
46119
|
+
* }
|
|
46120
|
+
* })
|
|
46121
|
+
*
|
|
46122
|
+
*/
|
|
46123
|
+
deleteMany<T extends EvaluationCriteriaDeleteManyArgs>(args?: SelectSubset<T, EvaluationCriteriaDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
46124
|
+
|
|
46125
|
+
/**
|
|
46126
|
+
* Update zero or more EvaluationCriteria.
|
|
46127
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
46128
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
46129
|
+
* @param {EvaluationCriteriaUpdateManyArgs} args - Arguments to update one or more rows.
|
|
46130
|
+
* @example
|
|
46131
|
+
* // Update many EvaluationCriteria
|
|
46132
|
+
* const evaluationCriteria = await prisma.evaluationCriteria.updateMany({
|
|
46133
|
+
* where: {
|
|
46134
|
+
* // ... provide filter here
|
|
46135
|
+
* },
|
|
46136
|
+
* data: {
|
|
46137
|
+
* // ... provide data here
|
|
46138
|
+
* }
|
|
46139
|
+
* })
|
|
46140
|
+
*
|
|
46141
|
+
*/
|
|
46142
|
+
updateMany<T extends EvaluationCriteriaUpdateManyArgs>(args: SelectSubset<T, EvaluationCriteriaUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
46143
|
+
|
|
46144
|
+
/**
|
|
46145
|
+
* Update zero or more EvaluationCriteria and returns the data updated in the database.
|
|
46146
|
+
* @param {EvaluationCriteriaUpdateManyAndReturnArgs} args - Arguments to update many EvaluationCriteria.
|
|
46147
|
+
* @example
|
|
46148
|
+
* // Update many EvaluationCriteria
|
|
46149
|
+
* const evaluationCriteria = await prisma.evaluationCriteria.updateManyAndReturn({
|
|
46150
|
+
* where: {
|
|
46151
|
+
* // ... provide filter here
|
|
46152
|
+
* },
|
|
46153
|
+
* data: [
|
|
46154
|
+
* // ... provide data here
|
|
46155
|
+
* ]
|
|
46156
|
+
* })
|
|
46157
|
+
*
|
|
46158
|
+
* // Update zero or more EvaluationCriteria and only return the `id`
|
|
46159
|
+
* const evaluationCriteriaWithIdOnly = await prisma.evaluationCriteria.updateManyAndReturn({
|
|
46160
|
+
* select: { id: true },
|
|
46161
|
+
* where: {
|
|
46162
|
+
* // ... provide filter here
|
|
46163
|
+
* },
|
|
46164
|
+
* data: [
|
|
46165
|
+
* // ... provide data here
|
|
46166
|
+
* ]
|
|
46167
|
+
* })
|
|
46168
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
46169
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
46170
|
+
*
|
|
46171
|
+
*/
|
|
46172
|
+
updateManyAndReturn<T extends EvaluationCriteriaUpdateManyAndReturnArgs>(args: SelectSubset<T, EvaluationCriteriaUpdateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$EvaluationCriteriaPayload<ExtArgs>, T, "updateManyAndReturn", GlobalOmitOptions>>
|
|
46173
|
+
|
|
46174
|
+
/**
|
|
46175
|
+
* Create or update one EvaluationCriteria.
|
|
46176
|
+
* @param {EvaluationCriteriaUpsertArgs} args - Arguments to update or create a EvaluationCriteria.
|
|
46177
|
+
* @example
|
|
46178
|
+
* // Update or create a EvaluationCriteria
|
|
46179
|
+
* const evaluationCriteria = await prisma.evaluationCriteria.upsert({
|
|
46180
|
+
* create: {
|
|
46181
|
+
* // ... data to create a EvaluationCriteria
|
|
46182
|
+
* },
|
|
46183
|
+
* update: {
|
|
46184
|
+
* // ... in case it already exists, update
|
|
46185
|
+
* },
|
|
46186
|
+
* where: {
|
|
46187
|
+
* // ... the filter for the EvaluationCriteria we want to update
|
|
46188
|
+
* }
|
|
46189
|
+
* })
|
|
46190
|
+
*/
|
|
46191
|
+
upsert<T extends EvaluationCriteriaUpsertArgs>(args: SelectSubset<T, EvaluationCriteriaUpsertArgs<ExtArgs>>): Prisma__EvaluationCriteriaClient<$Result.GetResult<Prisma.$EvaluationCriteriaPayload<ExtArgs>, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
|
|
46192
|
+
|
|
46193
|
+
|
|
46194
|
+
/**
|
|
46195
|
+
* Count the number of EvaluationCriteria.
|
|
46196
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
46197
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
46198
|
+
* @param {EvaluationCriteriaCountArgs} args - Arguments to filter EvaluationCriteria to count.
|
|
46199
|
+
* @example
|
|
46200
|
+
* // Count the number of EvaluationCriteria
|
|
46201
|
+
* const count = await prisma.evaluationCriteria.count({
|
|
46202
|
+
* where: {
|
|
46203
|
+
* // ... the filter for the EvaluationCriteria we want to count
|
|
46204
|
+
* }
|
|
46205
|
+
* })
|
|
46206
|
+
**/
|
|
46207
|
+
count<T extends EvaluationCriteriaCountArgs>(
|
|
46208
|
+
args?: Subset<T, EvaluationCriteriaCountArgs>,
|
|
46209
|
+
): Prisma.PrismaPromise<
|
|
46210
|
+
T extends $Utils.Record<'select', any>
|
|
46211
|
+
? T['select'] extends true
|
|
46212
|
+
? number
|
|
46213
|
+
: GetScalarType<T['select'], EvaluationCriteriaCountAggregateOutputType>
|
|
46214
|
+
: number
|
|
46215
|
+
>
|
|
46216
|
+
|
|
46217
|
+
/**
|
|
46218
|
+
* Allows you to perform aggregations operations on a EvaluationCriteria.
|
|
46219
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
46220
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
46221
|
+
* @param {EvaluationCriteriaAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
|
|
46222
|
+
* @example
|
|
46223
|
+
* // Ordered by age ascending
|
|
46224
|
+
* // Where email contains prisma.io
|
|
46225
|
+
* // Limited to the 10 users
|
|
46226
|
+
* const aggregations = await prisma.user.aggregate({
|
|
46227
|
+
* _avg: {
|
|
46228
|
+
* age: true,
|
|
46229
|
+
* },
|
|
46230
|
+
* where: {
|
|
46231
|
+
* email: {
|
|
46232
|
+
* contains: "prisma.io",
|
|
46233
|
+
* },
|
|
46234
|
+
* },
|
|
46235
|
+
* orderBy: {
|
|
46236
|
+
* age: "asc",
|
|
46237
|
+
* },
|
|
46238
|
+
* take: 10,
|
|
46239
|
+
* })
|
|
46240
|
+
**/
|
|
46241
|
+
aggregate<T extends EvaluationCriteriaAggregateArgs>(args: Subset<T, EvaluationCriteriaAggregateArgs>): Prisma.PrismaPromise<GetEvaluationCriteriaAggregateType<T>>
|
|
46242
|
+
|
|
46243
|
+
/**
|
|
46244
|
+
* Group by EvaluationCriteria.
|
|
46245
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
46246
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
46247
|
+
* @param {EvaluationCriteriaGroupByArgs} args - Group by arguments.
|
|
46248
|
+
* @example
|
|
46249
|
+
* // Group by city, order by createdAt, get count
|
|
46250
|
+
* const result = await prisma.user.groupBy({
|
|
46251
|
+
* by: ['city', 'createdAt'],
|
|
46252
|
+
* orderBy: {
|
|
46253
|
+
* createdAt: true
|
|
46254
|
+
* },
|
|
46255
|
+
* _count: {
|
|
46256
|
+
* _all: true
|
|
46257
|
+
* },
|
|
46258
|
+
* })
|
|
46259
|
+
*
|
|
46260
|
+
**/
|
|
46261
|
+
groupBy<
|
|
46262
|
+
T extends EvaluationCriteriaGroupByArgs,
|
|
46263
|
+
HasSelectOrTake extends Or<
|
|
46264
|
+
Extends<'skip', Keys<T>>,
|
|
46265
|
+
Extends<'take', Keys<T>>
|
|
46266
|
+
>,
|
|
46267
|
+
OrderByArg extends True extends HasSelectOrTake
|
|
46268
|
+
? { orderBy: EvaluationCriteriaGroupByArgs['orderBy'] }
|
|
46269
|
+
: { orderBy?: EvaluationCriteriaGroupByArgs['orderBy'] },
|
|
46270
|
+
OrderFields extends ExcludeUnderscoreKeys<Keys<MaybeTupleToUnion<T['orderBy']>>>,
|
|
46271
|
+
ByFields extends MaybeTupleToUnion<T['by']>,
|
|
46272
|
+
ByValid extends Has<ByFields, OrderFields>,
|
|
46273
|
+
HavingFields extends GetHavingFields<T['having']>,
|
|
46274
|
+
HavingValid extends Has<ByFields, HavingFields>,
|
|
46275
|
+
ByEmpty extends T['by'] extends never[] ? True : False,
|
|
46276
|
+
InputErrors extends ByEmpty extends True
|
|
46277
|
+
? `Error: "by" must not be empty.`
|
|
46278
|
+
: HavingValid extends False
|
|
46279
|
+
? {
|
|
46280
|
+
[P in HavingFields]: P extends ByFields
|
|
46281
|
+
? never
|
|
46282
|
+
: P extends string
|
|
46283
|
+
? `Error: Field "${P}" used in "having" needs to be provided in "by".`
|
|
46284
|
+
: [
|
|
46285
|
+
Error,
|
|
46286
|
+
'Field ',
|
|
46287
|
+
P,
|
|
46288
|
+
` in "having" needs to be provided in "by"`,
|
|
46289
|
+
]
|
|
46290
|
+
}[HavingFields]
|
|
46291
|
+
: 'take' extends Keys<T>
|
|
46292
|
+
? 'orderBy' extends Keys<T>
|
|
46293
|
+
? ByValid extends True
|
|
46294
|
+
? {}
|
|
46295
|
+
: {
|
|
46296
|
+
[P in OrderFields]: P extends ByFields
|
|
46297
|
+
? never
|
|
46298
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
46299
|
+
}[OrderFields]
|
|
46300
|
+
: 'Error: If you provide "take", you also need to provide "orderBy"'
|
|
46301
|
+
: 'skip' extends Keys<T>
|
|
46302
|
+
? 'orderBy' extends Keys<T>
|
|
46303
|
+
? ByValid extends True
|
|
46304
|
+
? {}
|
|
46305
|
+
: {
|
|
46306
|
+
[P in OrderFields]: P extends ByFields
|
|
46307
|
+
? never
|
|
46308
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
46309
|
+
}[OrderFields]
|
|
46310
|
+
: 'Error: If you provide "skip", you also need to provide "orderBy"'
|
|
46311
|
+
: ByValid extends True
|
|
46312
|
+
? {}
|
|
46313
|
+
: {
|
|
46314
|
+
[P in OrderFields]: P extends ByFields
|
|
46315
|
+
? never
|
|
46316
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
46317
|
+
}[OrderFields]
|
|
46318
|
+
>(args: SubsetIntersection<T, EvaluationCriteriaGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetEvaluationCriteriaGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>
|
|
46319
|
+
/**
|
|
46320
|
+
* Fields of the EvaluationCriteria model
|
|
46321
|
+
*/
|
|
46322
|
+
readonly fields: EvaluationCriteriaFieldRefs;
|
|
46323
|
+
}
|
|
46324
|
+
|
|
46325
|
+
/**
|
|
46326
|
+
* The delegate class that acts as a "Promise-like" for EvaluationCriteria.
|
|
46327
|
+
* Why is this prefixed with `Prisma__`?
|
|
46328
|
+
* Because we want to prevent naming conflicts as mentioned in
|
|
46329
|
+
* https://github.com/prisma/prisma-client-js/issues/707
|
|
46330
|
+
*/
|
|
46331
|
+
export interface Prisma__EvaluationCriteriaClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs, GlobalOmitOptions = {}> extends Prisma.PrismaPromise<T> {
|
|
46332
|
+
readonly [Symbol.toStringTag]: "PrismaPromise"
|
|
46333
|
+
organisation<T extends EvaluationCriteria$organisationArgs<ExtArgs> = {}>(args?: Subset<T, EvaluationCriteria$organisationArgs<ExtArgs>>): Prisma__OrganisationClient<$Result.GetResult<Prisma.$OrganisationPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
|
46334
|
+
/**
|
|
46335
|
+
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
46336
|
+
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
46337
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
46338
|
+
* @returns A Promise for the completion of which ever callback is executed.
|
|
46339
|
+
*/
|
|
46340
|
+
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>
|
|
46341
|
+
/**
|
|
46342
|
+
* Attaches a callback for only the rejection of the Promise.
|
|
46343
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
46344
|
+
* @returns A Promise for the completion of the callback.
|
|
46345
|
+
*/
|
|
46346
|
+
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): $Utils.JsPromise<T | TResult>
|
|
46347
|
+
/**
|
|
46348
|
+
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
|
46349
|
+
* resolved value cannot be modified from the callback.
|
|
46350
|
+
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
|
46351
|
+
* @returns A Promise for the completion of the callback.
|
|
46352
|
+
*/
|
|
46353
|
+
finally(onfinally?: (() => void) | undefined | null): $Utils.JsPromise<T>
|
|
46354
|
+
}
|
|
46355
|
+
|
|
46356
|
+
|
|
46357
|
+
|
|
46358
|
+
|
|
46359
|
+
/**
|
|
46360
|
+
* Fields of the EvaluationCriteria model
|
|
46361
|
+
*/
|
|
46362
|
+
interface EvaluationCriteriaFieldRefs {
|
|
46363
|
+
readonly id: FieldRef<"EvaluationCriteria", 'String'>
|
|
46364
|
+
readonly organisation_id: FieldRef<"EvaluationCriteria", 'String'>
|
|
46365
|
+
readonly scope: FieldRef<"EvaluationCriteria", 'CriteriaScope'>
|
|
46366
|
+
readonly key: FieldRef<"EvaluationCriteria", 'String'>
|
|
46367
|
+
readonly criteria: FieldRef<"EvaluationCriteria", 'String'>
|
|
46368
|
+
readonly description: FieldRef<"EvaluationCriteria", 'String'>
|
|
46369
|
+
readonly weightage: FieldRef<"EvaluationCriteria", 'Float'>
|
|
46370
|
+
readonly is_elimination: FieldRef<"EvaluationCriteria", 'Boolean'>
|
|
46371
|
+
readonly metadata: FieldRef<"EvaluationCriteria", 'Json'>
|
|
46372
|
+
readonly created_by: FieldRef<"EvaluationCriteria", 'String'>
|
|
46373
|
+
readonly updated_by: FieldRef<"EvaluationCriteria", 'String'>
|
|
46374
|
+
readonly created_at: FieldRef<"EvaluationCriteria", 'DateTime'>
|
|
46375
|
+
readonly updated_at: FieldRef<"EvaluationCriteria", 'DateTime'>
|
|
46376
|
+
readonly is_active: FieldRef<"EvaluationCriteria", 'Boolean'>
|
|
46377
|
+
}
|
|
46378
|
+
|
|
46379
|
+
|
|
46380
|
+
// Custom InputTypes
|
|
46381
|
+
/**
|
|
46382
|
+
* EvaluationCriteria findUnique
|
|
46383
|
+
*/
|
|
46384
|
+
export type EvaluationCriteriaFindUniqueArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
46385
|
+
/**
|
|
46386
|
+
* Select specific fields to fetch from the EvaluationCriteria
|
|
46387
|
+
*/
|
|
46388
|
+
select?: EvaluationCriteriaSelect<ExtArgs> | null
|
|
46389
|
+
/**
|
|
46390
|
+
* Omit specific fields from the EvaluationCriteria
|
|
46391
|
+
*/
|
|
46392
|
+
omit?: EvaluationCriteriaOmit<ExtArgs> | null
|
|
46393
|
+
/**
|
|
46394
|
+
* Choose, which related nodes to fetch as well
|
|
46395
|
+
*/
|
|
46396
|
+
include?: EvaluationCriteriaInclude<ExtArgs> | null
|
|
46397
|
+
/**
|
|
46398
|
+
* Filter, which EvaluationCriteria to fetch.
|
|
46399
|
+
*/
|
|
46400
|
+
where: EvaluationCriteriaWhereUniqueInput
|
|
46401
|
+
}
|
|
46402
|
+
|
|
46403
|
+
/**
|
|
46404
|
+
* EvaluationCriteria findUniqueOrThrow
|
|
46405
|
+
*/
|
|
46406
|
+
export type EvaluationCriteriaFindUniqueOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
46407
|
+
/**
|
|
46408
|
+
* Select specific fields to fetch from the EvaluationCriteria
|
|
46409
|
+
*/
|
|
46410
|
+
select?: EvaluationCriteriaSelect<ExtArgs> | null
|
|
46411
|
+
/**
|
|
46412
|
+
* Omit specific fields from the EvaluationCriteria
|
|
46413
|
+
*/
|
|
46414
|
+
omit?: EvaluationCriteriaOmit<ExtArgs> | null
|
|
46415
|
+
/**
|
|
46416
|
+
* Choose, which related nodes to fetch as well
|
|
46417
|
+
*/
|
|
46418
|
+
include?: EvaluationCriteriaInclude<ExtArgs> | null
|
|
46419
|
+
/**
|
|
46420
|
+
* Filter, which EvaluationCriteria to fetch.
|
|
46421
|
+
*/
|
|
46422
|
+
where: EvaluationCriteriaWhereUniqueInput
|
|
46423
|
+
}
|
|
46424
|
+
|
|
46425
|
+
/**
|
|
46426
|
+
* EvaluationCriteria findFirst
|
|
46427
|
+
*/
|
|
46428
|
+
export type EvaluationCriteriaFindFirstArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
46429
|
+
/**
|
|
46430
|
+
* Select specific fields to fetch from the EvaluationCriteria
|
|
46431
|
+
*/
|
|
46432
|
+
select?: EvaluationCriteriaSelect<ExtArgs> | null
|
|
46433
|
+
/**
|
|
46434
|
+
* Omit specific fields from the EvaluationCriteria
|
|
46435
|
+
*/
|
|
46436
|
+
omit?: EvaluationCriteriaOmit<ExtArgs> | null
|
|
46437
|
+
/**
|
|
46438
|
+
* Choose, which related nodes to fetch as well
|
|
46439
|
+
*/
|
|
46440
|
+
include?: EvaluationCriteriaInclude<ExtArgs> | null
|
|
46441
|
+
/**
|
|
46442
|
+
* Filter, which EvaluationCriteria to fetch.
|
|
46443
|
+
*/
|
|
46444
|
+
where?: EvaluationCriteriaWhereInput
|
|
46445
|
+
/**
|
|
46446
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
46447
|
+
*
|
|
46448
|
+
* Determine the order of EvaluationCriteria to fetch.
|
|
46449
|
+
*/
|
|
46450
|
+
orderBy?: EvaluationCriteriaOrderByWithRelationInput | EvaluationCriteriaOrderByWithRelationInput[]
|
|
46451
|
+
/**
|
|
46452
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
46453
|
+
*
|
|
46454
|
+
* Sets the position for searching for EvaluationCriteria.
|
|
46455
|
+
*/
|
|
46456
|
+
cursor?: EvaluationCriteriaWhereUniqueInput
|
|
46457
|
+
/**
|
|
46458
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
46459
|
+
*
|
|
46460
|
+
* Take `±n` EvaluationCriteria from the position of the cursor.
|
|
46461
|
+
*/
|
|
46462
|
+
take?: number
|
|
46463
|
+
/**
|
|
46464
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
46465
|
+
*
|
|
46466
|
+
* Skip the first `n` EvaluationCriteria.
|
|
46467
|
+
*/
|
|
46468
|
+
skip?: number
|
|
46469
|
+
/**
|
|
46470
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
46471
|
+
*
|
|
46472
|
+
* Filter by unique combinations of EvaluationCriteria.
|
|
46473
|
+
*/
|
|
46474
|
+
distinct?: EvaluationCriteriaScalarFieldEnum | EvaluationCriteriaScalarFieldEnum[]
|
|
46475
|
+
}
|
|
46476
|
+
|
|
46477
|
+
/**
|
|
46478
|
+
* EvaluationCriteria findFirstOrThrow
|
|
46479
|
+
*/
|
|
46480
|
+
export type EvaluationCriteriaFindFirstOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
46481
|
+
/**
|
|
46482
|
+
* Select specific fields to fetch from the EvaluationCriteria
|
|
46483
|
+
*/
|
|
46484
|
+
select?: EvaluationCriteriaSelect<ExtArgs> | null
|
|
46485
|
+
/**
|
|
46486
|
+
* Omit specific fields from the EvaluationCriteria
|
|
46487
|
+
*/
|
|
46488
|
+
omit?: EvaluationCriteriaOmit<ExtArgs> | null
|
|
46489
|
+
/**
|
|
46490
|
+
* Choose, which related nodes to fetch as well
|
|
46491
|
+
*/
|
|
46492
|
+
include?: EvaluationCriteriaInclude<ExtArgs> | null
|
|
46493
|
+
/**
|
|
46494
|
+
* Filter, which EvaluationCriteria to fetch.
|
|
46495
|
+
*/
|
|
46496
|
+
where?: EvaluationCriteriaWhereInput
|
|
46497
|
+
/**
|
|
46498
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
46499
|
+
*
|
|
46500
|
+
* Determine the order of EvaluationCriteria to fetch.
|
|
46501
|
+
*/
|
|
46502
|
+
orderBy?: EvaluationCriteriaOrderByWithRelationInput | EvaluationCriteriaOrderByWithRelationInput[]
|
|
46503
|
+
/**
|
|
46504
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
46505
|
+
*
|
|
46506
|
+
* Sets the position for searching for EvaluationCriteria.
|
|
46507
|
+
*/
|
|
46508
|
+
cursor?: EvaluationCriteriaWhereUniqueInput
|
|
46509
|
+
/**
|
|
46510
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
46511
|
+
*
|
|
46512
|
+
* Take `±n` EvaluationCriteria from the position of the cursor.
|
|
46513
|
+
*/
|
|
46514
|
+
take?: number
|
|
46515
|
+
/**
|
|
46516
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
46517
|
+
*
|
|
46518
|
+
* Skip the first `n` EvaluationCriteria.
|
|
46519
|
+
*/
|
|
46520
|
+
skip?: number
|
|
46521
|
+
/**
|
|
46522
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
46523
|
+
*
|
|
46524
|
+
* Filter by unique combinations of EvaluationCriteria.
|
|
46525
|
+
*/
|
|
46526
|
+
distinct?: EvaluationCriteriaScalarFieldEnum | EvaluationCriteriaScalarFieldEnum[]
|
|
46527
|
+
}
|
|
46528
|
+
|
|
46529
|
+
/**
|
|
46530
|
+
* EvaluationCriteria findMany
|
|
46531
|
+
*/
|
|
46532
|
+
export type EvaluationCriteriaFindManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
46533
|
+
/**
|
|
46534
|
+
* Select specific fields to fetch from the EvaluationCriteria
|
|
46535
|
+
*/
|
|
46536
|
+
select?: EvaluationCriteriaSelect<ExtArgs> | null
|
|
46537
|
+
/**
|
|
46538
|
+
* Omit specific fields from the EvaluationCriteria
|
|
46539
|
+
*/
|
|
46540
|
+
omit?: EvaluationCriteriaOmit<ExtArgs> | null
|
|
46541
|
+
/**
|
|
46542
|
+
* Choose, which related nodes to fetch as well
|
|
46543
|
+
*/
|
|
46544
|
+
include?: EvaluationCriteriaInclude<ExtArgs> | null
|
|
46545
|
+
/**
|
|
46546
|
+
* Filter, which EvaluationCriteria to fetch.
|
|
46547
|
+
*/
|
|
46548
|
+
where?: EvaluationCriteriaWhereInput
|
|
46549
|
+
/**
|
|
46550
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
46551
|
+
*
|
|
46552
|
+
* Determine the order of EvaluationCriteria to fetch.
|
|
46553
|
+
*/
|
|
46554
|
+
orderBy?: EvaluationCriteriaOrderByWithRelationInput | EvaluationCriteriaOrderByWithRelationInput[]
|
|
46555
|
+
/**
|
|
46556
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
46557
|
+
*
|
|
46558
|
+
* Sets the position for listing EvaluationCriteria.
|
|
46559
|
+
*/
|
|
46560
|
+
cursor?: EvaluationCriteriaWhereUniqueInput
|
|
46561
|
+
/**
|
|
46562
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
46563
|
+
*
|
|
46564
|
+
* Take `±n` EvaluationCriteria from the position of the cursor.
|
|
46565
|
+
*/
|
|
46566
|
+
take?: number
|
|
46567
|
+
/**
|
|
46568
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
46569
|
+
*
|
|
46570
|
+
* Skip the first `n` EvaluationCriteria.
|
|
46571
|
+
*/
|
|
46572
|
+
skip?: number
|
|
46573
|
+
distinct?: EvaluationCriteriaScalarFieldEnum | EvaluationCriteriaScalarFieldEnum[]
|
|
46574
|
+
}
|
|
46575
|
+
|
|
46576
|
+
/**
|
|
46577
|
+
* EvaluationCriteria create
|
|
46578
|
+
*/
|
|
46579
|
+
export type EvaluationCriteriaCreateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
46580
|
+
/**
|
|
46581
|
+
* Select specific fields to fetch from the EvaluationCriteria
|
|
46582
|
+
*/
|
|
46583
|
+
select?: EvaluationCriteriaSelect<ExtArgs> | null
|
|
46584
|
+
/**
|
|
46585
|
+
* Omit specific fields from the EvaluationCriteria
|
|
46586
|
+
*/
|
|
46587
|
+
omit?: EvaluationCriteriaOmit<ExtArgs> | null
|
|
46588
|
+
/**
|
|
46589
|
+
* Choose, which related nodes to fetch as well
|
|
46590
|
+
*/
|
|
46591
|
+
include?: EvaluationCriteriaInclude<ExtArgs> | null
|
|
46592
|
+
/**
|
|
46593
|
+
* The data needed to create a EvaluationCriteria.
|
|
46594
|
+
*/
|
|
46595
|
+
data: XOR<EvaluationCriteriaCreateInput, EvaluationCriteriaUncheckedCreateInput>
|
|
46596
|
+
}
|
|
46597
|
+
|
|
46598
|
+
/**
|
|
46599
|
+
* EvaluationCriteria createMany
|
|
46600
|
+
*/
|
|
46601
|
+
export type EvaluationCriteriaCreateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
46602
|
+
/**
|
|
46603
|
+
* The data used to create many EvaluationCriteria.
|
|
46604
|
+
*/
|
|
46605
|
+
data: EvaluationCriteriaCreateManyInput | EvaluationCriteriaCreateManyInput[]
|
|
46606
|
+
skipDuplicates?: boolean
|
|
46607
|
+
}
|
|
46608
|
+
|
|
46609
|
+
/**
|
|
46610
|
+
* EvaluationCriteria createManyAndReturn
|
|
46611
|
+
*/
|
|
46612
|
+
export type EvaluationCriteriaCreateManyAndReturnArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
46613
|
+
/**
|
|
46614
|
+
* Select specific fields to fetch from the EvaluationCriteria
|
|
46615
|
+
*/
|
|
46616
|
+
select?: EvaluationCriteriaSelectCreateManyAndReturn<ExtArgs> | null
|
|
46617
|
+
/**
|
|
46618
|
+
* Omit specific fields from the EvaluationCriteria
|
|
46619
|
+
*/
|
|
46620
|
+
omit?: EvaluationCriteriaOmit<ExtArgs> | null
|
|
46621
|
+
/**
|
|
46622
|
+
* The data used to create many EvaluationCriteria.
|
|
46623
|
+
*/
|
|
46624
|
+
data: EvaluationCriteriaCreateManyInput | EvaluationCriteriaCreateManyInput[]
|
|
46625
|
+
skipDuplicates?: boolean
|
|
46626
|
+
/**
|
|
46627
|
+
* Choose, which related nodes to fetch as well
|
|
46628
|
+
*/
|
|
46629
|
+
include?: EvaluationCriteriaIncludeCreateManyAndReturn<ExtArgs> | null
|
|
46630
|
+
}
|
|
46631
|
+
|
|
46632
|
+
/**
|
|
46633
|
+
* EvaluationCriteria update
|
|
46634
|
+
*/
|
|
46635
|
+
export type EvaluationCriteriaUpdateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
46636
|
+
/**
|
|
46637
|
+
* Select specific fields to fetch from the EvaluationCriteria
|
|
46638
|
+
*/
|
|
46639
|
+
select?: EvaluationCriteriaSelect<ExtArgs> | null
|
|
46640
|
+
/**
|
|
46641
|
+
* Omit specific fields from the EvaluationCriteria
|
|
46642
|
+
*/
|
|
46643
|
+
omit?: EvaluationCriteriaOmit<ExtArgs> | null
|
|
46644
|
+
/**
|
|
46645
|
+
* Choose, which related nodes to fetch as well
|
|
46646
|
+
*/
|
|
46647
|
+
include?: EvaluationCriteriaInclude<ExtArgs> | null
|
|
46648
|
+
/**
|
|
46649
|
+
* The data needed to update a EvaluationCriteria.
|
|
46650
|
+
*/
|
|
46651
|
+
data: XOR<EvaluationCriteriaUpdateInput, EvaluationCriteriaUncheckedUpdateInput>
|
|
46652
|
+
/**
|
|
46653
|
+
* Choose, which EvaluationCriteria to update.
|
|
46654
|
+
*/
|
|
46655
|
+
where: EvaluationCriteriaWhereUniqueInput
|
|
46656
|
+
}
|
|
46657
|
+
|
|
46658
|
+
/**
|
|
46659
|
+
* EvaluationCriteria updateMany
|
|
46660
|
+
*/
|
|
46661
|
+
export type EvaluationCriteriaUpdateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
46662
|
+
/**
|
|
46663
|
+
* The data used to update EvaluationCriteria.
|
|
46664
|
+
*/
|
|
46665
|
+
data: XOR<EvaluationCriteriaUpdateManyMutationInput, EvaluationCriteriaUncheckedUpdateManyInput>
|
|
46666
|
+
/**
|
|
46667
|
+
* Filter which EvaluationCriteria to update
|
|
46668
|
+
*/
|
|
46669
|
+
where?: EvaluationCriteriaWhereInput
|
|
46670
|
+
/**
|
|
46671
|
+
* Limit how many EvaluationCriteria to update.
|
|
46672
|
+
*/
|
|
46673
|
+
limit?: number
|
|
46674
|
+
}
|
|
46675
|
+
|
|
46676
|
+
/**
|
|
46677
|
+
* EvaluationCriteria updateManyAndReturn
|
|
46678
|
+
*/
|
|
46679
|
+
export type EvaluationCriteriaUpdateManyAndReturnArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
46680
|
+
/**
|
|
46681
|
+
* Select specific fields to fetch from the EvaluationCriteria
|
|
46682
|
+
*/
|
|
46683
|
+
select?: EvaluationCriteriaSelectUpdateManyAndReturn<ExtArgs> | null
|
|
46684
|
+
/**
|
|
46685
|
+
* Omit specific fields from the EvaluationCriteria
|
|
46686
|
+
*/
|
|
46687
|
+
omit?: EvaluationCriteriaOmit<ExtArgs> | null
|
|
46688
|
+
/**
|
|
46689
|
+
* The data used to update EvaluationCriteria.
|
|
46690
|
+
*/
|
|
46691
|
+
data: XOR<EvaluationCriteriaUpdateManyMutationInput, EvaluationCriteriaUncheckedUpdateManyInput>
|
|
46692
|
+
/**
|
|
46693
|
+
* Filter which EvaluationCriteria to update
|
|
46694
|
+
*/
|
|
46695
|
+
where?: EvaluationCriteriaWhereInput
|
|
46696
|
+
/**
|
|
46697
|
+
* Limit how many EvaluationCriteria to update.
|
|
46698
|
+
*/
|
|
46699
|
+
limit?: number
|
|
46700
|
+
/**
|
|
46701
|
+
* Choose, which related nodes to fetch as well
|
|
46702
|
+
*/
|
|
46703
|
+
include?: EvaluationCriteriaIncludeUpdateManyAndReturn<ExtArgs> | null
|
|
46704
|
+
}
|
|
46705
|
+
|
|
46706
|
+
/**
|
|
46707
|
+
* EvaluationCriteria upsert
|
|
46708
|
+
*/
|
|
46709
|
+
export type EvaluationCriteriaUpsertArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
46710
|
+
/**
|
|
46711
|
+
* Select specific fields to fetch from the EvaluationCriteria
|
|
46712
|
+
*/
|
|
46713
|
+
select?: EvaluationCriteriaSelect<ExtArgs> | null
|
|
46714
|
+
/**
|
|
46715
|
+
* Omit specific fields from the EvaluationCriteria
|
|
46716
|
+
*/
|
|
46717
|
+
omit?: EvaluationCriteriaOmit<ExtArgs> | null
|
|
46718
|
+
/**
|
|
46719
|
+
* Choose, which related nodes to fetch as well
|
|
46720
|
+
*/
|
|
46721
|
+
include?: EvaluationCriteriaInclude<ExtArgs> | null
|
|
46722
|
+
/**
|
|
46723
|
+
* The filter to search for the EvaluationCriteria to update in case it exists.
|
|
46724
|
+
*/
|
|
46725
|
+
where: EvaluationCriteriaWhereUniqueInput
|
|
46726
|
+
/**
|
|
46727
|
+
* In case the EvaluationCriteria found by the `where` argument doesn't exist, create a new EvaluationCriteria with this data.
|
|
46728
|
+
*/
|
|
46729
|
+
create: XOR<EvaluationCriteriaCreateInput, EvaluationCriteriaUncheckedCreateInput>
|
|
46730
|
+
/**
|
|
46731
|
+
* In case the EvaluationCriteria was found with the provided `where` argument, update it with this data.
|
|
46732
|
+
*/
|
|
46733
|
+
update: XOR<EvaluationCriteriaUpdateInput, EvaluationCriteriaUncheckedUpdateInput>
|
|
46734
|
+
}
|
|
46735
|
+
|
|
46736
|
+
/**
|
|
46737
|
+
* EvaluationCriteria delete
|
|
46738
|
+
*/
|
|
46739
|
+
export type EvaluationCriteriaDeleteArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
46740
|
+
/**
|
|
46741
|
+
* Select specific fields to fetch from the EvaluationCriteria
|
|
46742
|
+
*/
|
|
46743
|
+
select?: EvaluationCriteriaSelect<ExtArgs> | null
|
|
46744
|
+
/**
|
|
46745
|
+
* Omit specific fields from the EvaluationCriteria
|
|
46746
|
+
*/
|
|
46747
|
+
omit?: EvaluationCriteriaOmit<ExtArgs> | null
|
|
46748
|
+
/**
|
|
46749
|
+
* Choose, which related nodes to fetch as well
|
|
46750
|
+
*/
|
|
46751
|
+
include?: EvaluationCriteriaInclude<ExtArgs> | null
|
|
46752
|
+
/**
|
|
46753
|
+
* Filter which EvaluationCriteria to delete.
|
|
46754
|
+
*/
|
|
46755
|
+
where: EvaluationCriteriaWhereUniqueInput
|
|
46756
|
+
}
|
|
46757
|
+
|
|
46758
|
+
/**
|
|
46759
|
+
* EvaluationCriteria deleteMany
|
|
46760
|
+
*/
|
|
46761
|
+
export type EvaluationCriteriaDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
46762
|
+
/**
|
|
46763
|
+
* Filter which EvaluationCriteria to delete
|
|
46764
|
+
*/
|
|
46765
|
+
where?: EvaluationCriteriaWhereInput
|
|
46766
|
+
/**
|
|
46767
|
+
* Limit how many EvaluationCriteria to delete.
|
|
46768
|
+
*/
|
|
46769
|
+
limit?: number
|
|
46770
|
+
}
|
|
46771
|
+
|
|
46772
|
+
/**
|
|
46773
|
+
* EvaluationCriteria.organisation
|
|
46774
|
+
*/
|
|
46775
|
+
export type EvaluationCriteria$organisationArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
46776
|
+
/**
|
|
46777
|
+
* Select specific fields to fetch from the Organisation
|
|
46778
|
+
*/
|
|
46779
|
+
select?: OrganisationSelect<ExtArgs> | null
|
|
46780
|
+
/**
|
|
46781
|
+
* Omit specific fields from the Organisation
|
|
46782
|
+
*/
|
|
46783
|
+
omit?: OrganisationOmit<ExtArgs> | null
|
|
46784
|
+
/**
|
|
46785
|
+
* Choose, which related nodes to fetch as well
|
|
46786
|
+
*/
|
|
46787
|
+
include?: OrganisationInclude<ExtArgs> | null
|
|
46788
|
+
where?: OrganisationWhereInput
|
|
46789
|
+
}
|
|
46790
|
+
|
|
46791
|
+
/**
|
|
46792
|
+
* EvaluationCriteria without action
|
|
46793
|
+
*/
|
|
46794
|
+
export type EvaluationCriteriaDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
46795
|
+
/**
|
|
46796
|
+
* Select specific fields to fetch from the EvaluationCriteria
|
|
46797
|
+
*/
|
|
46798
|
+
select?: EvaluationCriteriaSelect<ExtArgs> | null
|
|
46799
|
+
/**
|
|
46800
|
+
* Omit specific fields from the EvaluationCriteria
|
|
46801
|
+
*/
|
|
46802
|
+
omit?: EvaluationCriteriaOmit<ExtArgs> | null
|
|
46803
|
+
/**
|
|
46804
|
+
* Choose, which related nodes to fetch as well
|
|
46805
|
+
*/
|
|
46806
|
+
include?: EvaluationCriteriaInclude<ExtArgs> | null
|
|
46807
|
+
}
|
|
46808
|
+
|
|
46809
|
+
|
|
45459
46810
|
/**
|
|
45460
46811
|
* Model EvaluationPlan
|
|
45461
46812
|
*/
|
|
@@ -83924,6 +85275,7 @@ export namespace Prisma {
|
|
|
83924
85275
|
size: $Enums.OrganisationSize | null
|
|
83925
85276
|
phone: string | null
|
|
83926
85277
|
address: string | null
|
|
85278
|
+
send_email: boolean | null
|
|
83927
85279
|
created_at: Date | null
|
|
83928
85280
|
updated_at: Date | null
|
|
83929
85281
|
created_by: string | null
|
|
@@ -83945,6 +85297,7 @@ export namespace Prisma {
|
|
|
83945
85297
|
size: $Enums.OrganisationSize | null
|
|
83946
85298
|
phone: string | null
|
|
83947
85299
|
address: string | null
|
|
85300
|
+
send_email: boolean | null
|
|
83948
85301
|
created_at: Date | null
|
|
83949
85302
|
updated_at: Date | null
|
|
83950
85303
|
created_by: string | null
|
|
@@ -83968,6 +85321,7 @@ export namespace Prisma {
|
|
|
83968
85321
|
address: number
|
|
83969
85322
|
company_values: number
|
|
83970
85323
|
allowed_email_domains: number
|
|
85324
|
+
send_email: number
|
|
83971
85325
|
created_at: number
|
|
83972
85326
|
updated_at: number
|
|
83973
85327
|
created_by: number
|
|
@@ -84001,6 +85355,7 @@ export namespace Prisma {
|
|
|
84001
85355
|
size?: true
|
|
84002
85356
|
phone?: true
|
|
84003
85357
|
address?: true
|
|
85358
|
+
send_email?: true
|
|
84004
85359
|
created_at?: true
|
|
84005
85360
|
updated_at?: true
|
|
84006
85361
|
created_by?: true
|
|
@@ -84022,6 +85377,7 @@ export namespace Prisma {
|
|
|
84022
85377
|
size?: true
|
|
84023
85378
|
phone?: true
|
|
84024
85379
|
address?: true
|
|
85380
|
+
send_email?: true
|
|
84025
85381
|
created_at?: true
|
|
84026
85382
|
updated_at?: true
|
|
84027
85383
|
created_by?: true
|
|
@@ -84045,6 +85401,7 @@ export namespace Prisma {
|
|
|
84045
85401
|
address?: true
|
|
84046
85402
|
company_values?: true
|
|
84047
85403
|
allowed_email_domains?: true
|
|
85404
|
+
send_email?: true
|
|
84048
85405
|
created_at?: true
|
|
84049
85406
|
updated_at?: true
|
|
84050
85407
|
created_by?: true
|
|
@@ -84155,6 +85512,7 @@ export namespace Prisma {
|
|
|
84155
85512
|
address: string
|
|
84156
85513
|
company_values: JsonValue[]
|
|
84157
85514
|
allowed_email_domains: string[]
|
|
85515
|
+
send_email: boolean
|
|
84158
85516
|
created_at: Date
|
|
84159
85517
|
updated_at: Date
|
|
84160
85518
|
created_by: string
|
|
@@ -84197,6 +85555,7 @@ export namespace Prisma {
|
|
|
84197
85555
|
address?: boolean
|
|
84198
85556
|
company_values?: boolean
|
|
84199
85557
|
allowed_email_domains?: boolean
|
|
85558
|
+
send_email?: boolean
|
|
84200
85559
|
created_at?: boolean
|
|
84201
85560
|
updated_at?: boolean
|
|
84202
85561
|
created_by?: boolean
|
|
@@ -84234,6 +85593,7 @@ export namespace Prisma {
|
|
|
84234
85593
|
documents?: boolean | Organisation$documentsArgs<ExtArgs>
|
|
84235
85594
|
job_application_templates?: boolean | Organisation$job_application_templatesArgs<ExtArgs>
|
|
84236
85595
|
sources?: boolean | Organisation$sourcesArgs<ExtArgs>
|
|
85596
|
+
evaluation_criteria?: boolean | Organisation$evaluation_criteriaArgs<ExtArgs>
|
|
84237
85597
|
_count?: boolean | OrganisationCountOutputTypeDefaultArgs<ExtArgs>
|
|
84238
85598
|
}, ExtArgs["result"]["organisation"]>
|
|
84239
85599
|
|
|
@@ -84248,6 +85608,7 @@ export namespace Prisma {
|
|
|
84248
85608
|
address?: boolean
|
|
84249
85609
|
company_values?: boolean
|
|
84250
85610
|
allowed_email_domains?: boolean
|
|
85611
|
+
send_email?: boolean
|
|
84251
85612
|
created_at?: boolean
|
|
84252
85613
|
updated_at?: boolean
|
|
84253
85614
|
created_by?: boolean
|
|
@@ -84271,6 +85632,7 @@ export namespace Prisma {
|
|
|
84271
85632
|
address?: boolean
|
|
84272
85633
|
company_values?: boolean
|
|
84273
85634
|
allowed_email_domains?: boolean
|
|
85635
|
+
send_email?: boolean
|
|
84274
85636
|
created_at?: boolean
|
|
84275
85637
|
updated_at?: boolean
|
|
84276
85638
|
created_by?: boolean
|
|
@@ -84294,6 +85656,7 @@ export namespace Prisma {
|
|
|
84294
85656
|
address?: boolean
|
|
84295
85657
|
company_values?: boolean
|
|
84296
85658
|
allowed_email_domains?: boolean
|
|
85659
|
+
send_email?: boolean
|
|
84297
85660
|
created_at?: boolean
|
|
84298
85661
|
updated_at?: boolean
|
|
84299
85662
|
created_by?: boolean
|
|
@@ -84306,7 +85669,7 @@ export namespace Prisma {
|
|
|
84306
85669
|
timezone?: boolean
|
|
84307
85670
|
}
|
|
84308
85671
|
|
|
84309
|
-
export type OrganisationOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "name" | "industry" | "about" | "website" | "size" | "phone" | "address" | "company_values" | "allowed_email_domains" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active" | "alias" | "logo" | "job_sequence" | "employee_sequence" | "timezone", ExtArgs["result"]["organisation"]>
|
|
85672
|
+
export type OrganisationOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "name" | "industry" | "about" | "website" | "size" | "phone" | "address" | "company_values" | "allowed_email_domains" | "send_email" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active" | "alias" | "logo" | "job_sequence" | "employee_sequence" | "timezone", ExtArgs["result"]["organisation"]>
|
|
84310
85673
|
export type OrganisationInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
84311
85674
|
interviewers?: boolean | Organisation$interviewersArgs<ExtArgs>
|
|
84312
85675
|
applications?: boolean | Organisation$applicationsArgs<ExtArgs>
|
|
@@ -84335,6 +85698,7 @@ export namespace Prisma {
|
|
|
84335
85698
|
documents?: boolean | Organisation$documentsArgs<ExtArgs>
|
|
84336
85699
|
job_application_templates?: boolean | Organisation$job_application_templatesArgs<ExtArgs>
|
|
84337
85700
|
sources?: boolean | Organisation$sourcesArgs<ExtArgs>
|
|
85701
|
+
evaluation_criteria?: boolean | Organisation$evaluation_criteriaArgs<ExtArgs>
|
|
84338
85702
|
_count?: boolean | OrganisationCountOutputTypeDefaultArgs<ExtArgs>
|
|
84339
85703
|
}
|
|
84340
85704
|
export type OrganisationIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {}
|
|
@@ -84370,6 +85734,7 @@ export namespace Prisma {
|
|
|
84370
85734
|
documents: Prisma.$DocumentPayload<ExtArgs>[]
|
|
84371
85735
|
job_application_templates: Prisma.$JobApplicationTemplatePayload<ExtArgs>[]
|
|
84372
85736
|
sources: Prisma.$SourcePayload<ExtArgs>[]
|
|
85737
|
+
evaluation_criteria: Prisma.$EvaluationCriteriaPayload<ExtArgs>[]
|
|
84373
85738
|
}
|
|
84374
85739
|
scalars: $Extensions.GetPayloadResult<{
|
|
84375
85740
|
id: string
|
|
@@ -84382,6 +85747,7 @@ export namespace Prisma {
|
|
|
84382
85747
|
address: string
|
|
84383
85748
|
company_values: Prisma.JsonValue[]
|
|
84384
85749
|
allowed_email_domains: string[]
|
|
85750
|
+
send_email: boolean
|
|
84385
85751
|
created_at: Date
|
|
84386
85752
|
updated_at: Date
|
|
84387
85753
|
created_by: string
|
|
@@ -84813,6 +86179,7 @@ export namespace Prisma {
|
|
|
84813
86179
|
documents<T extends Organisation$documentsArgs<ExtArgs> = {}>(args?: Subset<T, Organisation$documentsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$DocumentPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
84814
86180
|
job_application_templates<T extends Organisation$job_application_templatesArgs<ExtArgs> = {}>(args?: Subset<T, Organisation$job_application_templatesArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$JobApplicationTemplatePayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
84815
86181
|
sources<T extends Organisation$sourcesArgs<ExtArgs> = {}>(args?: Subset<T, Organisation$sourcesArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$SourcePayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
86182
|
+
evaluation_criteria<T extends Organisation$evaluation_criteriaArgs<ExtArgs> = {}>(args?: Subset<T, Organisation$evaluation_criteriaArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$EvaluationCriteriaPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
84816
86183
|
/**
|
|
84817
86184
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
84818
86185
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -84852,6 +86219,7 @@ export namespace Prisma {
|
|
|
84852
86219
|
readonly address: FieldRef<"Organisation", 'String'>
|
|
84853
86220
|
readonly company_values: FieldRef<"Organisation", 'Json[]'>
|
|
84854
86221
|
readonly allowed_email_domains: FieldRef<"Organisation", 'String[]'>
|
|
86222
|
+
readonly send_email: FieldRef<"Organisation", 'Boolean'>
|
|
84855
86223
|
readonly created_at: FieldRef<"Organisation", 'DateTime'>
|
|
84856
86224
|
readonly updated_at: FieldRef<"Organisation", 'DateTime'>
|
|
84857
86225
|
readonly created_by: FieldRef<"Organisation", 'String'>
|
|
@@ -85897,6 +87265,30 @@ export namespace Prisma {
|
|
|
85897
87265
|
distinct?: SourceScalarFieldEnum | SourceScalarFieldEnum[]
|
|
85898
87266
|
}
|
|
85899
87267
|
|
|
87268
|
+
/**
|
|
87269
|
+
* Organisation.evaluation_criteria
|
|
87270
|
+
*/
|
|
87271
|
+
export type Organisation$evaluation_criteriaArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
87272
|
+
/**
|
|
87273
|
+
* Select specific fields to fetch from the EvaluationCriteria
|
|
87274
|
+
*/
|
|
87275
|
+
select?: EvaluationCriteriaSelect<ExtArgs> | null
|
|
87276
|
+
/**
|
|
87277
|
+
* Omit specific fields from the EvaluationCriteria
|
|
87278
|
+
*/
|
|
87279
|
+
omit?: EvaluationCriteriaOmit<ExtArgs> | null
|
|
87280
|
+
/**
|
|
87281
|
+
* Choose, which related nodes to fetch as well
|
|
87282
|
+
*/
|
|
87283
|
+
include?: EvaluationCriteriaInclude<ExtArgs> | null
|
|
87284
|
+
where?: EvaluationCriteriaWhereInput
|
|
87285
|
+
orderBy?: EvaluationCriteriaOrderByWithRelationInput | EvaluationCriteriaOrderByWithRelationInput[]
|
|
87286
|
+
cursor?: EvaluationCriteriaWhereUniqueInput
|
|
87287
|
+
take?: number
|
|
87288
|
+
skip?: number
|
|
87289
|
+
distinct?: EvaluationCriteriaScalarFieldEnum | EvaluationCriteriaScalarFieldEnum[]
|
|
87290
|
+
}
|
|
87291
|
+
|
|
85900
87292
|
/**
|
|
85901
87293
|
* Organisation without action
|
|
85902
87294
|
*/
|
|
@@ -115783,6 +117175,26 @@ export namespace Prisma {
|
|
|
115783
117175
|
export type DocumentScalarFieldEnum = (typeof DocumentScalarFieldEnum)[keyof typeof DocumentScalarFieldEnum]
|
|
115784
117176
|
|
|
115785
117177
|
|
|
117178
|
+
export const EvaluationCriteriaScalarFieldEnum: {
|
|
117179
|
+
id: 'id',
|
|
117180
|
+
organisation_id: 'organisation_id',
|
|
117181
|
+
scope: 'scope',
|
|
117182
|
+
key: 'key',
|
|
117183
|
+
criteria: 'criteria',
|
|
117184
|
+
description: 'description',
|
|
117185
|
+
weightage: 'weightage',
|
|
117186
|
+
is_elimination: 'is_elimination',
|
|
117187
|
+
metadata: 'metadata',
|
|
117188
|
+
created_by: 'created_by',
|
|
117189
|
+
updated_by: 'updated_by',
|
|
117190
|
+
created_at: 'created_at',
|
|
117191
|
+
updated_at: 'updated_at',
|
|
117192
|
+
is_active: 'is_active'
|
|
117193
|
+
};
|
|
117194
|
+
|
|
117195
|
+
export type EvaluationCriteriaScalarFieldEnum = (typeof EvaluationCriteriaScalarFieldEnum)[keyof typeof EvaluationCriteriaScalarFieldEnum]
|
|
117196
|
+
|
|
117197
|
+
|
|
115786
117198
|
export const EvaluationPlanScalarFieldEnum: {
|
|
115787
117199
|
id: 'id',
|
|
115788
117200
|
job_description_id: 'job_description_id',
|
|
@@ -116567,6 +117979,7 @@ export namespace Prisma {
|
|
|
116567
117979
|
address: 'address',
|
|
116568
117980
|
company_values: 'company_values',
|
|
116569
117981
|
allowed_email_domains: 'allowed_email_domains',
|
|
117982
|
+
send_email: 'send_email',
|
|
116570
117983
|
created_at: 'created_at',
|
|
116571
117984
|
updated_at: 'updated_at',
|
|
116572
117985
|
created_by: 'created_by',
|
|
@@ -117549,6 +118962,20 @@ export namespace Prisma {
|
|
|
117549
118962
|
|
|
117550
118963
|
|
|
117551
118964
|
|
|
118965
|
+
/**
|
|
118966
|
+
* Reference to a field of type 'CriteriaScope'
|
|
118967
|
+
*/
|
|
118968
|
+
export type EnumCriteriaScopeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'CriteriaScope'>
|
|
118969
|
+
|
|
118970
|
+
|
|
118971
|
+
|
|
118972
|
+
/**
|
|
118973
|
+
* Reference to a field of type 'CriteriaScope[]'
|
|
118974
|
+
*/
|
|
118975
|
+
export type ListEnumCriteriaScopeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'CriteriaScope[]'>
|
|
118976
|
+
|
|
118977
|
+
|
|
118978
|
+
|
|
117552
118979
|
/**
|
|
117553
118980
|
* Reference to a field of type 'EvaluationPlanShareScope'
|
|
117554
118981
|
*/
|
|
@@ -121472,6 +122899,108 @@ export namespace Prisma {
|
|
|
121472
122899
|
is_active?: BoolWithAggregatesFilter<"Document"> | boolean
|
|
121473
122900
|
}
|
|
121474
122901
|
|
|
122902
|
+
export type EvaluationCriteriaWhereInput = {
|
|
122903
|
+
AND?: EvaluationCriteriaWhereInput | EvaluationCriteriaWhereInput[]
|
|
122904
|
+
OR?: EvaluationCriteriaWhereInput[]
|
|
122905
|
+
NOT?: EvaluationCriteriaWhereInput | EvaluationCriteriaWhereInput[]
|
|
122906
|
+
id?: StringFilter<"EvaluationCriteria"> | string
|
|
122907
|
+
organisation_id?: StringNullableFilter<"EvaluationCriteria"> | string | null
|
|
122908
|
+
scope?: EnumCriteriaScopeFilter<"EvaluationCriteria"> | $Enums.CriteriaScope
|
|
122909
|
+
key?: StringFilter<"EvaluationCriteria"> | string
|
|
122910
|
+
criteria?: StringNullableFilter<"EvaluationCriteria"> | string | null
|
|
122911
|
+
description?: StringNullableFilter<"EvaluationCriteria"> | string | null
|
|
122912
|
+
weightage?: FloatNullableFilter<"EvaluationCriteria"> | number | null
|
|
122913
|
+
is_elimination?: BoolFilter<"EvaluationCriteria"> | boolean
|
|
122914
|
+
metadata?: JsonNullableFilter<"EvaluationCriteria">
|
|
122915
|
+
created_by?: StringFilter<"EvaluationCriteria"> | string
|
|
122916
|
+
updated_by?: StringFilter<"EvaluationCriteria"> | string
|
|
122917
|
+
created_at?: DateTimeFilter<"EvaluationCriteria"> | Date | string
|
|
122918
|
+
updated_at?: DateTimeFilter<"EvaluationCriteria"> | Date | string
|
|
122919
|
+
is_active?: BoolFilter<"EvaluationCriteria"> | boolean
|
|
122920
|
+
organisation?: XOR<OrganisationNullableScalarRelationFilter, OrganisationWhereInput> | null
|
|
122921
|
+
}
|
|
122922
|
+
|
|
122923
|
+
export type EvaluationCriteriaOrderByWithRelationInput = {
|
|
122924
|
+
id?: SortOrder
|
|
122925
|
+
organisation_id?: SortOrderInput | SortOrder
|
|
122926
|
+
scope?: SortOrder
|
|
122927
|
+
key?: SortOrder
|
|
122928
|
+
criteria?: SortOrderInput | SortOrder
|
|
122929
|
+
description?: SortOrderInput | SortOrder
|
|
122930
|
+
weightage?: SortOrderInput | SortOrder
|
|
122931
|
+
is_elimination?: SortOrder
|
|
122932
|
+
metadata?: SortOrderInput | SortOrder
|
|
122933
|
+
created_by?: SortOrder
|
|
122934
|
+
updated_by?: SortOrder
|
|
122935
|
+
created_at?: SortOrder
|
|
122936
|
+
updated_at?: SortOrder
|
|
122937
|
+
is_active?: SortOrder
|
|
122938
|
+
organisation?: OrganisationOrderByWithRelationInput
|
|
122939
|
+
}
|
|
122940
|
+
|
|
122941
|
+
export type EvaluationCriteriaWhereUniqueInput = Prisma.AtLeast<{
|
|
122942
|
+
id?: string
|
|
122943
|
+
AND?: EvaluationCriteriaWhereInput | EvaluationCriteriaWhereInput[]
|
|
122944
|
+
OR?: EvaluationCriteriaWhereInput[]
|
|
122945
|
+
NOT?: EvaluationCriteriaWhereInput | EvaluationCriteriaWhereInput[]
|
|
122946
|
+
organisation_id?: StringNullableFilter<"EvaluationCriteria"> | string | null
|
|
122947
|
+
scope?: EnumCriteriaScopeFilter<"EvaluationCriteria"> | $Enums.CriteriaScope
|
|
122948
|
+
key?: StringFilter<"EvaluationCriteria"> | string
|
|
122949
|
+
criteria?: StringNullableFilter<"EvaluationCriteria"> | string | null
|
|
122950
|
+
description?: StringNullableFilter<"EvaluationCriteria"> | string | null
|
|
122951
|
+
weightage?: FloatNullableFilter<"EvaluationCriteria"> | number | null
|
|
122952
|
+
is_elimination?: BoolFilter<"EvaluationCriteria"> | boolean
|
|
122953
|
+
metadata?: JsonNullableFilter<"EvaluationCriteria">
|
|
122954
|
+
created_by?: StringFilter<"EvaluationCriteria"> | string
|
|
122955
|
+
updated_by?: StringFilter<"EvaluationCriteria"> | string
|
|
122956
|
+
created_at?: DateTimeFilter<"EvaluationCriteria"> | Date | string
|
|
122957
|
+
updated_at?: DateTimeFilter<"EvaluationCriteria"> | Date | string
|
|
122958
|
+
is_active?: BoolFilter<"EvaluationCriteria"> | boolean
|
|
122959
|
+
organisation?: XOR<OrganisationNullableScalarRelationFilter, OrganisationWhereInput> | null
|
|
122960
|
+
}, "id">
|
|
122961
|
+
|
|
122962
|
+
export type EvaluationCriteriaOrderByWithAggregationInput = {
|
|
122963
|
+
id?: SortOrder
|
|
122964
|
+
organisation_id?: SortOrderInput | SortOrder
|
|
122965
|
+
scope?: SortOrder
|
|
122966
|
+
key?: SortOrder
|
|
122967
|
+
criteria?: SortOrderInput | SortOrder
|
|
122968
|
+
description?: SortOrderInput | SortOrder
|
|
122969
|
+
weightage?: SortOrderInput | SortOrder
|
|
122970
|
+
is_elimination?: SortOrder
|
|
122971
|
+
metadata?: SortOrderInput | SortOrder
|
|
122972
|
+
created_by?: SortOrder
|
|
122973
|
+
updated_by?: SortOrder
|
|
122974
|
+
created_at?: SortOrder
|
|
122975
|
+
updated_at?: SortOrder
|
|
122976
|
+
is_active?: SortOrder
|
|
122977
|
+
_count?: EvaluationCriteriaCountOrderByAggregateInput
|
|
122978
|
+
_avg?: EvaluationCriteriaAvgOrderByAggregateInput
|
|
122979
|
+
_max?: EvaluationCriteriaMaxOrderByAggregateInput
|
|
122980
|
+
_min?: EvaluationCriteriaMinOrderByAggregateInput
|
|
122981
|
+
_sum?: EvaluationCriteriaSumOrderByAggregateInput
|
|
122982
|
+
}
|
|
122983
|
+
|
|
122984
|
+
export type EvaluationCriteriaScalarWhereWithAggregatesInput = {
|
|
122985
|
+
AND?: EvaluationCriteriaScalarWhereWithAggregatesInput | EvaluationCriteriaScalarWhereWithAggregatesInput[]
|
|
122986
|
+
OR?: EvaluationCriteriaScalarWhereWithAggregatesInput[]
|
|
122987
|
+
NOT?: EvaluationCriteriaScalarWhereWithAggregatesInput | EvaluationCriteriaScalarWhereWithAggregatesInput[]
|
|
122988
|
+
id?: StringWithAggregatesFilter<"EvaluationCriteria"> | string
|
|
122989
|
+
organisation_id?: StringNullableWithAggregatesFilter<"EvaluationCriteria"> | string | null
|
|
122990
|
+
scope?: EnumCriteriaScopeWithAggregatesFilter<"EvaluationCriteria"> | $Enums.CriteriaScope
|
|
122991
|
+
key?: StringWithAggregatesFilter<"EvaluationCriteria"> | string
|
|
122992
|
+
criteria?: StringNullableWithAggregatesFilter<"EvaluationCriteria"> | string | null
|
|
122993
|
+
description?: StringNullableWithAggregatesFilter<"EvaluationCriteria"> | string | null
|
|
122994
|
+
weightage?: FloatNullableWithAggregatesFilter<"EvaluationCriteria"> | number | null
|
|
122995
|
+
is_elimination?: BoolWithAggregatesFilter<"EvaluationCriteria"> | boolean
|
|
122996
|
+
metadata?: JsonNullableWithAggregatesFilter<"EvaluationCriteria">
|
|
122997
|
+
created_by?: StringWithAggregatesFilter<"EvaluationCriteria"> | string
|
|
122998
|
+
updated_by?: StringWithAggregatesFilter<"EvaluationCriteria"> | string
|
|
122999
|
+
created_at?: DateTimeWithAggregatesFilter<"EvaluationCriteria"> | Date | string
|
|
123000
|
+
updated_at?: DateTimeWithAggregatesFilter<"EvaluationCriteria"> | Date | string
|
|
123001
|
+
is_active?: BoolWithAggregatesFilter<"EvaluationCriteria"> | boolean
|
|
123002
|
+
}
|
|
123003
|
+
|
|
121475
123004
|
export type EvaluationPlanWhereInput = {
|
|
121476
123005
|
AND?: EvaluationPlanWhereInput | EvaluationPlanWhereInput[]
|
|
121477
123006
|
OR?: EvaluationPlanWhereInput[]
|
|
@@ -125567,6 +127096,7 @@ export namespace Prisma {
|
|
|
125567
127096
|
address?: StringFilter<"Organisation"> | string
|
|
125568
127097
|
company_values?: JsonNullableListFilter<"Organisation">
|
|
125569
127098
|
allowed_email_domains?: StringNullableListFilter<"Organisation">
|
|
127099
|
+
send_email?: BoolFilter<"Organisation"> | boolean
|
|
125570
127100
|
created_at?: DateTimeFilter<"Organisation"> | Date | string
|
|
125571
127101
|
updated_at?: DateTimeFilter<"Organisation"> | Date | string
|
|
125572
127102
|
created_by?: StringFilter<"Organisation"> | string
|
|
@@ -125604,6 +127134,7 @@ export namespace Prisma {
|
|
|
125604
127134
|
documents?: DocumentListRelationFilter
|
|
125605
127135
|
job_application_templates?: JobApplicationTemplateListRelationFilter
|
|
125606
127136
|
sources?: SourceListRelationFilter
|
|
127137
|
+
evaluation_criteria?: EvaluationCriteriaListRelationFilter
|
|
125607
127138
|
}
|
|
125608
127139
|
|
|
125609
127140
|
export type OrganisationOrderByWithRelationInput = {
|
|
@@ -125617,6 +127148,7 @@ export namespace Prisma {
|
|
|
125617
127148
|
address?: SortOrder
|
|
125618
127149
|
company_values?: SortOrder
|
|
125619
127150
|
allowed_email_domains?: SortOrder
|
|
127151
|
+
send_email?: SortOrder
|
|
125620
127152
|
created_at?: SortOrder
|
|
125621
127153
|
updated_at?: SortOrder
|
|
125622
127154
|
created_by?: SortOrder
|
|
@@ -125654,6 +127186,7 @@ export namespace Prisma {
|
|
|
125654
127186
|
documents?: DocumentOrderByRelationAggregateInput
|
|
125655
127187
|
job_application_templates?: JobApplicationTemplateOrderByRelationAggregateInput
|
|
125656
127188
|
sources?: SourceOrderByRelationAggregateInput
|
|
127189
|
+
evaluation_criteria?: EvaluationCriteriaOrderByRelationAggregateInput
|
|
125657
127190
|
}
|
|
125658
127191
|
|
|
125659
127192
|
export type OrganisationWhereUniqueInput = Prisma.AtLeast<{
|
|
@@ -125671,6 +127204,7 @@ export namespace Prisma {
|
|
|
125671
127204
|
address?: StringFilter<"Organisation"> | string
|
|
125672
127205
|
company_values?: JsonNullableListFilter<"Organisation">
|
|
125673
127206
|
allowed_email_domains?: StringNullableListFilter<"Organisation">
|
|
127207
|
+
send_email?: BoolFilter<"Organisation"> | boolean
|
|
125674
127208
|
created_at?: DateTimeFilter<"Organisation"> | Date | string
|
|
125675
127209
|
updated_at?: DateTimeFilter<"Organisation"> | Date | string
|
|
125676
127210
|
created_by?: StringFilter<"Organisation"> | string
|
|
@@ -125707,6 +127241,7 @@ export namespace Prisma {
|
|
|
125707
127241
|
documents?: DocumentListRelationFilter
|
|
125708
127242
|
job_application_templates?: JobApplicationTemplateListRelationFilter
|
|
125709
127243
|
sources?: SourceListRelationFilter
|
|
127244
|
+
evaluation_criteria?: EvaluationCriteriaListRelationFilter
|
|
125710
127245
|
}, "id" | "name" | "alias">
|
|
125711
127246
|
|
|
125712
127247
|
export type OrganisationOrderByWithAggregationInput = {
|
|
@@ -125720,6 +127255,7 @@ export namespace Prisma {
|
|
|
125720
127255
|
address?: SortOrder
|
|
125721
127256
|
company_values?: SortOrder
|
|
125722
127257
|
allowed_email_domains?: SortOrder
|
|
127258
|
+
send_email?: SortOrder
|
|
125723
127259
|
created_at?: SortOrder
|
|
125724
127260
|
updated_at?: SortOrder
|
|
125725
127261
|
created_by?: SortOrder
|
|
@@ -125751,6 +127287,7 @@ export namespace Prisma {
|
|
|
125751
127287
|
address?: StringWithAggregatesFilter<"Organisation"> | string
|
|
125752
127288
|
company_values?: JsonNullableListFilter<"Organisation">
|
|
125753
127289
|
allowed_email_domains?: StringNullableListFilter<"Organisation">
|
|
127290
|
+
send_email?: BoolWithAggregatesFilter<"Organisation"> | boolean
|
|
125754
127291
|
created_at?: DateTimeWithAggregatesFilter<"Organisation"> | Date | string
|
|
125755
127292
|
updated_at?: DateTimeWithAggregatesFilter<"Organisation"> | Date | string
|
|
125756
127293
|
created_by?: StringWithAggregatesFilter<"Organisation"> | string
|
|
@@ -132551,6 +134088,124 @@ export namespace Prisma {
|
|
|
132551
134088
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
132552
134089
|
}
|
|
132553
134090
|
|
|
134091
|
+
export type EvaluationCriteriaCreateInput = {
|
|
134092
|
+
id?: string
|
|
134093
|
+
scope: $Enums.CriteriaScope
|
|
134094
|
+
key: string
|
|
134095
|
+
criteria?: string | null
|
|
134096
|
+
description?: string | null
|
|
134097
|
+
weightage?: number | null
|
|
134098
|
+
is_elimination?: boolean
|
|
134099
|
+
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
134100
|
+
created_by: string
|
|
134101
|
+
updated_by: string
|
|
134102
|
+
created_at?: Date | string
|
|
134103
|
+
updated_at?: Date | string
|
|
134104
|
+
is_active?: boolean
|
|
134105
|
+
organisation?: OrganisationCreateNestedOneWithoutEvaluation_criteriaInput
|
|
134106
|
+
}
|
|
134107
|
+
|
|
134108
|
+
export type EvaluationCriteriaUncheckedCreateInput = {
|
|
134109
|
+
id?: string
|
|
134110
|
+
organisation_id?: string | null
|
|
134111
|
+
scope: $Enums.CriteriaScope
|
|
134112
|
+
key: string
|
|
134113
|
+
criteria?: string | null
|
|
134114
|
+
description?: string | null
|
|
134115
|
+
weightage?: number | null
|
|
134116
|
+
is_elimination?: boolean
|
|
134117
|
+
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
134118
|
+
created_by: string
|
|
134119
|
+
updated_by: string
|
|
134120
|
+
created_at?: Date | string
|
|
134121
|
+
updated_at?: Date | string
|
|
134122
|
+
is_active?: boolean
|
|
134123
|
+
}
|
|
134124
|
+
|
|
134125
|
+
export type EvaluationCriteriaUpdateInput = {
|
|
134126
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
134127
|
+
scope?: EnumCriteriaScopeFieldUpdateOperationsInput | $Enums.CriteriaScope
|
|
134128
|
+
key?: StringFieldUpdateOperationsInput | string
|
|
134129
|
+
criteria?: NullableStringFieldUpdateOperationsInput | string | null
|
|
134130
|
+
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
134131
|
+
weightage?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
134132
|
+
is_elimination?: BoolFieldUpdateOperationsInput | boolean
|
|
134133
|
+
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
134134
|
+
created_by?: StringFieldUpdateOperationsInput | string
|
|
134135
|
+
updated_by?: StringFieldUpdateOperationsInput | string
|
|
134136
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
134137
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
134138
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
134139
|
+
organisation?: OrganisationUpdateOneWithoutEvaluation_criteriaNestedInput
|
|
134140
|
+
}
|
|
134141
|
+
|
|
134142
|
+
export type EvaluationCriteriaUncheckedUpdateInput = {
|
|
134143
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
134144
|
+
organisation_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
134145
|
+
scope?: EnumCriteriaScopeFieldUpdateOperationsInput | $Enums.CriteriaScope
|
|
134146
|
+
key?: StringFieldUpdateOperationsInput | string
|
|
134147
|
+
criteria?: NullableStringFieldUpdateOperationsInput | string | null
|
|
134148
|
+
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
134149
|
+
weightage?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
134150
|
+
is_elimination?: BoolFieldUpdateOperationsInput | boolean
|
|
134151
|
+
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
134152
|
+
created_by?: StringFieldUpdateOperationsInput | string
|
|
134153
|
+
updated_by?: StringFieldUpdateOperationsInput | string
|
|
134154
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
134155
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
134156
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
134157
|
+
}
|
|
134158
|
+
|
|
134159
|
+
export type EvaluationCriteriaCreateManyInput = {
|
|
134160
|
+
id?: string
|
|
134161
|
+
organisation_id?: string | null
|
|
134162
|
+
scope: $Enums.CriteriaScope
|
|
134163
|
+
key: string
|
|
134164
|
+
criteria?: string | null
|
|
134165
|
+
description?: string | null
|
|
134166
|
+
weightage?: number | null
|
|
134167
|
+
is_elimination?: boolean
|
|
134168
|
+
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
134169
|
+
created_by: string
|
|
134170
|
+
updated_by: string
|
|
134171
|
+
created_at?: Date | string
|
|
134172
|
+
updated_at?: Date | string
|
|
134173
|
+
is_active?: boolean
|
|
134174
|
+
}
|
|
134175
|
+
|
|
134176
|
+
export type EvaluationCriteriaUpdateManyMutationInput = {
|
|
134177
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
134178
|
+
scope?: EnumCriteriaScopeFieldUpdateOperationsInput | $Enums.CriteriaScope
|
|
134179
|
+
key?: StringFieldUpdateOperationsInput | string
|
|
134180
|
+
criteria?: NullableStringFieldUpdateOperationsInput | string | null
|
|
134181
|
+
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
134182
|
+
weightage?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
134183
|
+
is_elimination?: BoolFieldUpdateOperationsInput | boolean
|
|
134184
|
+
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
134185
|
+
created_by?: StringFieldUpdateOperationsInput | string
|
|
134186
|
+
updated_by?: StringFieldUpdateOperationsInput | string
|
|
134187
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
134188
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
134189
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
134190
|
+
}
|
|
134191
|
+
|
|
134192
|
+
export type EvaluationCriteriaUncheckedUpdateManyInput = {
|
|
134193
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
134194
|
+
organisation_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
134195
|
+
scope?: EnumCriteriaScopeFieldUpdateOperationsInput | $Enums.CriteriaScope
|
|
134196
|
+
key?: StringFieldUpdateOperationsInput | string
|
|
134197
|
+
criteria?: NullableStringFieldUpdateOperationsInput | string | null
|
|
134198
|
+
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
134199
|
+
weightage?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
134200
|
+
is_elimination?: BoolFieldUpdateOperationsInput | boolean
|
|
134201
|
+
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
134202
|
+
created_by?: StringFieldUpdateOperationsInput | string
|
|
134203
|
+
updated_by?: StringFieldUpdateOperationsInput | string
|
|
134204
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
134205
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
134206
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
134207
|
+
}
|
|
134208
|
+
|
|
132554
134209
|
export type EvaluationPlanCreateInput = {
|
|
132555
134210
|
id?: string
|
|
132556
134211
|
title: string
|
|
@@ -137444,6 +139099,7 @@ export namespace Prisma {
|
|
|
137444
139099
|
address: string
|
|
137445
139100
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
137446
139101
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
139102
|
+
send_email?: boolean
|
|
137447
139103
|
created_at?: Date | string
|
|
137448
139104
|
updated_at?: Date | string
|
|
137449
139105
|
created_by: string
|
|
@@ -137481,6 +139137,7 @@ export namespace Prisma {
|
|
|
137481
139137
|
documents?: DocumentCreateNestedManyWithoutOrganisationInput
|
|
137482
139138
|
job_application_templates?: JobApplicationTemplateCreateNestedManyWithoutOrganisationInput
|
|
137483
139139
|
sources?: SourceCreateNestedManyWithoutOrganisationInput
|
|
139140
|
+
evaluation_criteria?: EvaluationCriteriaCreateNestedManyWithoutOrganisationInput
|
|
137484
139141
|
}
|
|
137485
139142
|
|
|
137486
139143
|
export type OrganisationUncheckedCreateInput = {
|
|
@@ -137494,6 +139151,7 @@ export namespace Prisma {
|
|
|
137494
139151
|
address: string
|
|
137495
139152
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
137496
139153
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
139154
|
+
send_email?: boolean
|
|
137497
139155
|
created_at?: Date | string
|
|
137498
139156
|
updated_at?: Date | string
|
|
137499
139157
|
created_by: string
|
|
@@ -137531,6 +139189,7 @@ export namespace Prisma {
|
|
|
137531
139189
|
documents?: DocumentUncheckedCreateNestedManyWithoutOrganisationInput
|
|
137532
139190
|
job_application_templates?: JobApplicationTemplateUncheckedCreateNestedManyWithoutOrganisationInput
|
|
137533
139191
|
sources?: SourceUncheckedCreateNestedManyWithoutOrganisationInput
|
|
139192
|
+
evaluation_criteria?: EvaluationCriteriaUncheckedCreateNestedManyWithoutOrganisationInput
|
|
137534
139193
|
}
|
|
137535
139194
|
|
|
137536
139195
|
export type OrganisationUpdateInput = {
|
|
@@ -137544,6 +139203,7 @@ export namespace Prisma {
|
|
|
137544
139203
|
address?: StringFieldUpdateOperationsInput | string
|
|
137545
139204
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
137546
139205
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
139206
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
137547
139207
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
137548
139208
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
137549
139209
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -137581,6 +139241,7 @@ export namespace Prisma {
|
|
|
137581
139241
|
documents?: DocumentUpdateManyWithoutOrganisationNestedInput
|
|
137582
139242
|
job_application_templates?: JobApplicationTemplateUpdateManyWithoutOrganisationNestedInput
|
|
137583
139243
|
sources?: SourceUpdateManyWithoutOrganisationNestedInput
|
|
139244
|
+
evaluation_criteria?: EvaluationCriteriaUpdateManyWithoutOrganisationNestedInput
|
|
137584
139245
|
}
|
|
137585
139246
|
|
|
137586
139247
|
export type OrganisationUncheckedUpdateInput = {
|
|
@@ -137594,6 +139255,7 @@ export namespace Prisma {
|
|
|
137594
139255
|
address?: StringFieldUpdateOperationsInput | string
|
|
137595
139256
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
137596
139257
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
139258
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
137597
139259
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
137598
139260
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
137599
139261
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -137631,6 +139293,7 @@ export namespace Prisma {
|
|
|
137631
139293
|
documents?: DocumentUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
137632
139294
|
job_application_templates?: JobApplicationTemplateUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
137633
139295
|
sources?: SourceUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
139296
|
+
evaluation_criteria?: EvaluationCriteriaUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
137634
139297
|
}
|
|
137635
139298
|
|
|
137636
139299
|
export type OrganisationCreateManyInput = {
|
|
@@ -137644,6 +139307,7 @@ export namespace Prisma {
|
|
|
137644
139307
|
address: string
|
|
137645
139308
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
137646
139309
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
139310
|
+
send_email?: boolean
|
|
137647
139311
|
created_at?: Date | string
|
|
137648
139312
|
updated_at?: Date | string
|
|
137649
139313
|
created_by: string
|
|
@@ -137667,6 +139331,7 @@ export namespace Prisma {
|
|
|
137667
139331
|
address?: StringFieldUpdateOperationsInput | string
|
|
137668
139332
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
137669
139333
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
139334
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
137670
139335
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
137671
139336
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
137672
139337
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -137690,6 +139355,7 @@ export namespace Prisma {
|
|
|
137690
139355
|
address?: StringFieldUpdateOperationsInput | string
|
|
137691
139356
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
137692
139357
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
139358
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
137693
139359
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
137694
139360
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
137695
139361
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -143810,6 +145476,80 @@ export namespace Prisma {
|
|
|
143810
145476
|
_max?: NestedBigIntNullableFilter<$PrismaModel>
|
|
143811
145477
|
}
|
|
143812
145478
|
|
|
145479
|
+
export type EnumCriteriaScopeFilter<$PrismaModel = never> = {
|
|
145480
|
+
equals?: $Enums.CriteriaScope | EnumCriteriaScopeFieldRefInput<$PrismaModel>
|
|
145481
|
+
in?: $Enums.CriteriaScope[] | ListEnumCriteriaScopeFieldRefInput<$PrismaModel>
|
|
145482
|
+
notIn?: $Enums.CriteriaScope[] | ListEnumCriteriaScopeFieldRefInput<$PrismaModel>
|
|
145483
|
+
not?: NestedEnumCriteriaScopeFilter<$PrismaModel> | $Enums.CriteriaScope
|
|
145484
|
+
}
|
|
145485
|
+
|
|
145486
|
+
export type EvaluationCriteriaCountOrderByAggregateInput = {
|
|
145487
|
+
id?: SortOrder
|
|
145488
|
+
organisation_id?: SortOrder
|
|
145489
|
+
scope?: SortOrder
|
|
145490
|
+
key?: SortOrder
|
|
145491
|
+
criteria?: SortOrder
|
|
145492
|
+
description?: SortOrder
|
|
145493
|
+
weightage?: SortOrder
|
|
145494
|
+
is_elimination?: SortOrder
|
|
145495
|
+
metadata?: SortOrder
|
|
145496
|
+
created_by?: SortOrder
|
|
145497
|
+
updated_by?: SortOrder
|
|
145498
|
+
created_at?: SortOrder
|
|
145499
|
+
updated_at?: SortOrder
|
|
145500
|
+
is_active?: SortOrder
|
|
145501
|
+
}
|
|
145502
|
+
|
|
145503
|
+
export type EvaluationCriteriaAvgOrderByAggregateInput = {
|
|
145504
|
+
weightage?: SortOrder
|
|
145505
|
+
}
|
|
145506
|
+
|
|
145507
|
+
export type EvaluationCriteriaMaxOrderByAggregateInput = {
|
|
145508
|
+
id?: SortOrder
|
|
145509
|
+
organisation_id?: SortOrder
|
|
145510
|
+
scope?: SortOrder
|
|
145511
|
+
key?: SortOrder
|
|
145512
|
+
criteria?: SortOrder
|
|
145513
|
+
description?: SortOrder
|
|
145514
|
+
weightage?: SortOrder
|
|
145515
|
+
is_elimination?: SortOrder
|
|
145516
|
+
created_by?: SortOrder
|
|
145517
|
+
updated_by?: SortOrder
|
|
145518
|
+
created_at?: SortOrder
|
|
145519
|
+
updated_at?: SortOrder
|
|
145520
|
+
is_active?: SortOrder
|
|
145521
|
+
}
|
|
145522
|
+
|
|
145523
|
+
export type EvaluationCriteriaMinOrderByAggregateInput = {
|
|
145524
|
+
id?: SortOrder
|
|
145525
|
+
organisation_id?: SortOrder
|
|
145526
|
+
scope?: SortOrder
|
|
145527
|
+
key?: SortOrder
|
|
145528
|
+
criteria?: SortOrder
|
|
145529
|
+
description?: SortOrder
|
|
145530
|
+
weightage?: SortOrder
|
|
145531
|
+
is_elimination?: SortOrder
|
|
145532
|
+
created_by?: SortOrder
|
|
145533
|
+
updated_by?: SortOrder
|
|
145534
|
+
created_at?: SortOrder
|
|
145535
|
+
updated_at?: SortOrder
|
|
145536
|
+
is_active?: SortOrder
|
|
145537
|
+
}
|
|
145538
|
+
|
|
145539
|
+
export type EvaluationCriteriaSumOrderByAggregateInput = {
|
|
145540
|
+
weightage?: SortOrder
|
|
145541
|
+
}
|
|
145542
|
+
|
|
145543
|
+
export type EnumCriteriaScopeWithAggregatesFilter<$PrismaModel = never> = {
|
|
145544
|
+
equals?: $Enums.CriteriaScope | EnumCriteriaScopeFieldRefInput<$PrismaModel>
|
|
145545
|
+
in?: $Enums.CriteriaScope[] | ListEnumCriteriaScopeFieldRefInput<$PrismaModel>
|
|
145546
|
+
notIn?: $Enums.CriteriaScope[] | ListEnumCriteriaScopeFieldRefInput<$PrismaModel>
|
|
145547
|
+
not?: NestedEnumCriteriaScopeWithAggregatesFilter<$PrismaModel> | $Enums.CriteriaScope
|
|
145548
|
+
_count?: NestedIntFilter<$PrismaModel>
|
|
145549
|
+
_min?: NestedEnumCriteriaScopeFilter<$PrismaModel>
|
|
145550
|
+
_max?: NestedEnumCriteriaScopeFilter<$PrismaModel>
|
|
145551
|
+
}
|
|
145552
|
+
|
|
143813
145553
|
export type StringNullableListFilter<$PrismaModel = never> = {
|
|
143814
145554
|
equals?: string[] | ListStringFieldRefInput<$PrismaModel> | null
|
|
143815
145555
|
has?: string | StringFieldRefInput<$PrismaModel> | null
|
|
@@ -146940,6 +148680,12 @@ export namespace Prisma {
|
|
|
146940
148680
|
none?: SourceWhereInput
|
|
146941
148681
|
}
|
|
146942
148682
|
|
|
148683
|
+
export type EvaluationCriteriaListRelationFilter = {
|
|
148684
|
+
every?: EvaluationCriteriaWhereInput
|
|
148685
|
+
some?: EvaluationCriteriaWhereInput
|
|
148686
|
+
none?: EvaluationCriteriaWhereInput
|
|
148687
|
+
}
|
|
148688
|
+
|
|
146943
148689
|
export type UserRoleOrderByRelationAggregateInput = {
|
|
146944
148690
|
_count?: SortOrder
|
|
146945
148691
|
}
|
|
@@ -146988,6 +148734,10 @@ export namespace Prisma {
|
|
|
146988
148734
|
_count?: SortOrder
|
|
146989
148735
|
}
|
|
146990
148736
|
|
|
148737
|
+
export type EvaluationCriteriaOrderByRelationAggregateInput = {
|
|
148738
|
+
_count?: SortOrder
|
|
148739
|
+
}
|
|
148740
|
+
|
|
146991
148741
|
export type OrganisationCountOrderByAggregateInput = {
|
|
146992
148742
|
id?: SortOrder
|
|
146993
148743
|
name?: SortOrder
|
|
@@ -146999,6 +148749,7 @@ export namespace Prisma {
|
|
|
146999
148749
|
address?: SortOrder
|
|
147000
148750
|
company_values?: SortOrder
|
|
147001
148751
|
allowed_email_domains?: SortOrder
|
|
148752
|
+
send_email?: SortOrder
|
|
147002
148753
|
created_at?: SortOrder
|
|
147003
148754
|
updated_at?: SortOrder
|
|
147004
148755
|
created_by?: SortOrder
|
|
@@ -147025,6 +148776,7 @@ export namespace Prisma {
|
|
|
147025
148776
|
size?: SortOrder
|
|
147026
148777
|
phone?: SortOrder
|
|
147027
148778
|
address?: SortOrder
|
|
148779
|
+
send_email?: SortOrder
|
|
147028
148780
|
created_at?: SortOrder
|
|
147029
148781
|
updated_at?: SortOrder
|
|
147030
148782
|
created_by?: SortOrder
|
|
@@ -147046,6 +148798,7 @@ export namespace Prisma {
|
|
|
147046
148798
|
size?: SortOrder
|
|
147047
148799
|
phone?: SortOrder
|
|
147048
148800
|
address?: SortOrder
|
|
148801
|
+
send_email?: SortOrder
|
|
147049
148802
|
created_at?: SortOrder
|
|
147050
148803
|
updated_at?: SortOrder
|
|
147051
148804
|
created_by?: SortOrder
|
|
@@ -150884,6 +152637,26 @@ export namespace Prisma {
|
|
|
150884
152637
|
update?: XOR<XOR<AssignmentUpdateToOneWithWhereWithoutZip_documentInput, AssignmentUpdateWithoutZip_documentInput>, AssignmentUncheckedUpdateWithoutZip_documentInput>
|
|
150885
152638
|
}
|
|
150886
152639
|
|
|
152640
|
+
export type OrganisationCreateNestedOneWithoutEvaluation_criteriaInput = {
|
|
152641
|
+
create?: XOR<OrganisationCreateWithoutEvaluation_criteriaInput, OrganisationUncheckedCreateWithoutEvaluation_criteriaInput>
|
|
152642
|
+
connectOrCreate?: OrganisationCreateOrConnectWithoutEvaluation_criteriaInput
|
|
152643
|
+
connect?: OrganisationWhereUniqueInput
|
|
152644
|
+
}
|
|
152645
|
+
|
|
152646
|
+
export type EnumCriteriaScopeFieldUpdateOperationsInput = {
|
|
152647
|
+
set?: $Enums.CriteriaScope
|
|
152648
|
+
}
|
|
152649
|
+
|
|
152650
|
+
export type OrganisationUpdateOneWithoutEvaluation_criteriaNestedInput = {
|
|
152651
|
+
create?: XOR<OrganisationCreateWithoutEvaluation_criteriaInput, OrganisationUncheckedCreateWithoutEvaluation_criteriaInput>
|
|
152652
|
+
connectOrCreate?: OrganisationCreateOrConnectWithoutEvaluation_criteriaInput
|
|
152653
|
+
upsert?: OrganisationUpsertWithoutEvaluation_criteriaInput
|
|
152654
|
+
disconnect?: OrganisationWhereInput | boolean
|
|
152655
|
+
delete?: OrganisationWhereInput | boolean
|
|
152656
|
+
connect?: OrganisationWhereUniqueInput
|
|
152657
|
+
update?: XOR<XOR<OrganisationUpdateToOneWithWhereWithoutEvaluation_criteriaInput, OrganisationUpdateWithoutEvaluation_criteriaInput>, OrganisationUncheckedUpdateWithoutEvaluation_criteriaInput>
|
|
152658
|
+
}
|
|
152659
|
+
|
|
150887
152660
|
export type EvaluationPlanCreatefocus_areasInput = {
|
|
150888
152661
|
set: string[]
|
|
150889
152662
|
}
|
|
@@ -153479,6 +155252,13 @@ export namespace Prisma {
|
|
|
153479
155252
|
connect?: SourceWhereUniqueInput | SourceWhereUniqueInput[]
|
|
153480
155253
|
}
|
|
153481
155254
|
|
|
155255
|
+
export type EvaluationCriteriaCreateNestedManyWithoutOrganisationInput = {
|
|
155256
|
+
create?: XOR<EvaluationCriteriaCreateWithoutOrganisationInput, EvaluationCriteriaUncheckedCreateWithoutOrganisationInput> | EvaluationCriteriaCreateWithoutOrganisationInput[] | EvaluationCriteriaUncheckedCreateWithoutOrganisationInput[]
|
|
155257
|
+
connectOrCreate?: EvaluationCriteriaCreateOrConnectWithoutOrganisationInput | EvaluationCriteriaCreateOrConnectWithoutOrganisationInput[]
|
|
155258
|
+
createMany?: EvaluationCriteriaCreateManyOrganisationInputEnvelope
|
|
155259
|
+
connect?: EvaluationCriteriaWhereUniqueInput | EvaluationCriteriaWhereUniqueInput[]
|
|
155260
|
+
}
|
|
155261
|
+
|
|
153482
155262
|
export type UserUncheckedCreateNestedManyWithoutOrganisationInput = {
|
|
153483
155263
|
create?: XOR<UserCreateWithoutOrganisationInput, UserUncheckedCreateWithoutOrganisationInput> | UserCreateWithoutOrganisationInput[] | UserUncheckedCreateWithoutOrganisationInput[]
|
|
153484
155264
|
connectOrCreate?: UserCreateOrConnectWithoutOrganisationInput | UserCreateOrConnectWithoutOrganisationInput[]
|
|
@@ -153668,6 +155448,13 @@ export namespace Prisma {
|
|
|
153668
155448
|
connect?: SourceWhereUniqueInput | SourceWhereUniqueInput[]
|
|
153669
155449
|
}
|
|
153670
155450
|
|
|
155451
|
+
export type EvaluationCriteriaUncheckedCreateNestedManyWithoutOrganisationInput = {
|
|
155452
|
+
create?: XOR<EvaluationCriteriaCreateWithoutOrganisationInput, EvaluationCriteriaUncheckedCreateWithoutOrganisationInput> | EvaluationCriteriaCreateWithoutOrganisationInput[] | EvaluationCriteriaUncheckedCreateWithoutOrganisationInput[]
|
|
155453
|
+
connectOrCreate?: EvaluationCriteriaCreateOrConnectWithoutOrganisationInput | EvaluationCriteriaCreateOrConnectWithoutOrganisationInput[]
|
|
155454
|
+
createMany?: EvaluationCriteriaCreateManyOrganisationInputEnvelope
|
|
155455
|
+
connect?: EvaluationCriteriaWhereUniqueInput | EvaluationCriteriaWhereUniqueInput[]
|
|
155456
|
+
}
|
|
155457
|
+
|
|
153671
155458
|
export type EnumOrganisationSizeFieldUpdateOperationsInput = {
|
|
153672
155459
|
set?: $Enums.OrganisationSize
|
|
153673
155460
|
}
|
|
@@ -154060,6 +155847,20 @@ export namespace Prisma {
|
|
|
154060
155847
|
deleteMany?: SourceScalarWhereInput | SourceScalarWhereInput[]
|
|
154061
155848
|
}
|
|
154062
155849
|
|
|
155850
|
+
export type EvaluationCriteriaUpdateManyWithoutOrganisationNestedInput = {
|
|
155851
|
+
create?: XOR<EvaluationCriteriaCreateWithoutOrganisationInput, EvaluationCriteriaUncheckedCreateWithoutOrganisationInput> | EvaluationCriteriaCreateWithoutOrganisationInput[] | EvaluationCriteriaUncheckedCreateWithoutOrganisationInput[]
|
|
155852
|
+
connectOrCreate?: EvaluationCriteriaCreateOrConnectWithoutOrganisationInput | EvaluationCriteriaCreateOrConnectWithoutOrganisationInput[]
|
|
155853
|
+
upsert?: EvaluationCriteriaUpsertWithWhereUniqueWithoutOrganisationInput | EvaluationCriteriaUpsertWithWhereUniqueWithoutOrganisationInput[]
|
|
155854
|
+
createMany?: EvaluationCriteriaCreateManyOrganisationInputEnvelope
|
|
155855
|
+
set?: EvaluationCriteriaWhereUniqueInput | EvaluationCriteriaWhereUniqueInput[]
|
|
155856
|
+
disconnect?: EvaluationCriteriaWhereUniqueInput | EvaluationCriteriaWhereUniqueInput[]
|
|
155857
|
+
delete?: EvaluationCriteriaWhereUniqueInput | EvaluationCriteriaWhereUniqueInput[]
|
|
155858
|
+
connect?: EvaluationCriteriaWhereUniqueInput | EvaluationCriteriaWhereUniqueInput[]
|
|
155859
|
+
update?: EvaluationCriteriaUpdateWithWhereUniqueWithoutOrganisationInput | EvaluationCriteriaUpdateWithWhereUniqueWithoutOrganisationInput[]
|
|
155860
|
+
updateMany?: EvaluationCriteriaUpdateManyWithWhereWithoutOrganisationInput | EvaluationCriteriaUpdateManyWithWhereWithoutOrganisationInput[]
|
|
155861
|
+
deleteMany?: EvaluationCriteriaScalarWhereInput | EvaluationCriteriaScalarWhereInput[]
|
|
155862
|
+
}
|
|
155863
|
+
|
|
154063
155864
|
export type UserUncheckedUpdateManyWithoutOrganisationNestedInput = {
|
|
154064
155865
|
create?: XOR<UserCreateWithoutOrganisationInput, UserUncheckedCreateWithoutOrganisationInput> | UserCreateWithoutOrganisationInput[] | UserUncheckedCreateWithoutOrganisationInput[]
|
|
154065
155866
|
connectOrCreate?: UserCreateOrConnectWithoutOrganisationInput | UserCreateOrConnectWithoutOrganisationInput[]
|
|
@@ -154438,6 +156239,20 @@ export namespace Prisma {
|
|
|
154438
156239
|
deleteMany?: SourceScalarWhereInput | SourceScalarWhereInput[]
|
|
154439
156240
|
}
|
|
154440
156241
|
|
|
156242
|
+
export type EvaluationCriteriaUncheckedUpdateManyWithoutOrganisationNestedInput = {
|
|
156243
|
+
create?: XOR<EvaluationCriteriaCreateWithoutOrganisationInput, EvaluationCriteriaUncheckedCreateWithoutOrganisationInput> | EvaluationCriteriaCreateWithoutOrganisationInput[] | EvaluationCriteriaUncheckedCreateWithoutOrganisationInput[]
|
|
156244
|
+
connectOrCreate?: EvaluationCriteriaCreateOrConnectWithoutOrganisationInput | EvaluationCriteriaCreateOrConnectWithoutOrganisationInput[]
|
|
156245
|
+
upsert?: EvaluationCriteriaUpsertWithWhereUniqueWithoutOrganisationInput | EvaluationCriteriaUpsertWithWhereUniqueWithoutOrganisationInput[]
|
|
156246
|
+
createMany?: EvaluationCriteriaCreateManyOrganisationInputEnvelope
|
|
156247
|
+
set?: EvaluationCriteriaWhereUniqueInput | EvaluationCriteriaWhereUniqueInput[]
|
|
156248
|
+
disconnect?: EvaluationCriteriaWhereUniqueInput | EvaluationCriteriaWhereUniqueInput[]
|
|
156249
|
+
delete?: EvaluationCriteriaWhereUniqueInput | EvaluationCriteriaWhereUniqueInput[]
|
|
156250
|
+
connect?: EvaluationCriteriaWhereUniqueInput | EvaluationCriteriaWhereUniqueInput[]
|
|
156251
|
+
update?: EvaluationCriteriaUpdateWithWhereUniqueWithoutOrganisationInput | EvaluationCriteriaUpdateWithWhereUniqueWithoutOrganisationInput[]
|
|
156252
|
+
updateMany?: EvaluationCriteriaUpdateManyWithWhereWithoutOrganisationInput | EvaluationCriteriaUpdateManyWithWhereWithoutOrganisationInput[]
|
|
156253
|
+
deleteMany?: EvaluationCriteriaScalarWhereInput | EvaluationCriteriaScalarWhereInput[]
|
|
156254
|
+
}
|
|
156255
|
+
|
|
154441
156256
|
export type OrganisationCreateNestedOneWithoutOrganisation_configsInput = {
|
|
154442
156257
|
create?: XOR<OrganisationCreateWithoutOrganisation_configsInput, OrganisationUncheckedCreateWithoutOrganisation_configsInput>
|
|
154443
156258
|
connectOrCreate?: OrganisationCreateOrConnectWithoutOrganisation_configsInput
|
|
@@ -157559,6 +159374,23 @@ export namespace Prisma {
|
|
|
157559
159374
|
_max?: NestedBigIntNullableFilter<$PrismaModel>
|
|
157560
159375
|
}
|
|
157561
159376
|
|
|
159377
|
+
export type NestedEnumCriteriaScopeFilter<$PrismaModel = never> = {
|
|
159378
|
+
equals?: $Enums.CriteriaScope | EnumCriteriaScopeFieldRefInput<$PrismaModel>
|
|
159379
|
+
in?: $Enums.CriteriaScope[] | ListEnumCriteriaScopeFieldRefInput<$PrismaModel>
|
|
159380
|
+
notIn?: $Enums.CriteriaScope[] | ListEnumCriteriaScopeFieldRefInput<$PrismaModel>
|
|
159381
|
+
not?: NestedEnumCriteriaScopeFilter<$PrismaModel> | $Enums.CriteriaScope
|
|
159382
|
+
}
|
|
159383
|
+
|
|
159384
|
+
export type NestedEnumCriteriaScopeWithAggregatesFilter<$PrismaModel = never> = {
|
|
159385
|
+
equals?: $Enums.CriteriaScope | EnumCriteriaScopeFieldRefInput<$PrismaModel>
|
|
159386
|
+
in?: $Enums.CriteriaScope[] | ListEnumCriteriaScopeFieldRefInput<$PrismaModel>
|
|
159387
|
+
notIn?: $Enums.CriteriaScope[] | ListEnumCriteriaScopeFieldRefInput<$PrismaModel>
|
|
159388
|
+
not?: NestedEnumCriteriaScopeWithAggregatesFilter<$PrismaModel> | $Enums.CriteriaScope
|
|
159389
|
+
_count?: NestedIntFilter<$PrismaModel>
|
|
159390
|
+
_min?: NestedEnumCriteriaScopeFilter<$PrismaModel>
|
|
159391
|
+
_max?: NestedEnumCriteriaScopeFilter<$PrismaModel>
|
|
159392
|
+
}
|
|
159393
|
+
|
|
157562
159394
|
export type NestedEnumEvaluationTypeFilter<$PrismaModel = never> = {
|
|
157563
159395
|
equals?: $Enums.EvaluationType | EnumEvaluationTypeFieldRefInput<$PrismaModel>
|
|
157564
159396
|
in?: $Enums.EvaluationType[] | ListEnumEvaluationTypeFieldRefInput<$PrismaModel>
|
|
@@ -158660,6 +160492,7 @@ export namespace Prisma {
|
|
|
158660
160492
|
address: string
|
|
158661
160493
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
158662
160494
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
160495
|
+
send_email?: boolean
|
|
158663
160496
|
created_at?: Date | string
|
|
158664
160497
|
updated_at?: Date | string
|
|
158665
160498
|
created_by: string
|
|
@@ -158696,6 +160529,7 @@ export namespace Prisma {
|
|
|
158696
160529
|
documents?: DocumentCreateNestedManyWithoutOrganisationInput
|
|
158697
160530
|
job_application_templates?: JobApplicationTemplateCreateNestedManyWithoutOrganisationInput
|
|
158698
160531
|
sources?: SourceCreateNestedManyWithoutOrganisationInput
|
|
160532
|
+
evaluation_criteria?: EvaluationCriteriaCreateNestedManyWithoutOrganisationInput
|
|
158699
160533
|
}
|
|
158700
160534
|
|
|
158701
160535
|
export type OrganisationUncheckedCreateWithoutUser_rolesInput = {
|
|
@@ -158709,6 +160543,7 @@ export namespace Prisma {
|
|
|
158709
160543
|
address: string
|
|
158710
160544
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
158711
160545
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
160546
|
+
send_email?: boolean
|
|
158712
160547
|
created_at?: Date | string
|
|
158713
160548
|
updated_at?: Date | string
|
|
158714
160549
|
created_by: string
|
|
@@ -158745,6 +160580,7 @@ export namespace Prisma {
|
|
|
158745
160580
|
documents?: DocumentUncheckedCreateNestedManyWithoutOrganisationInput
|
|
158746
160581
|
job_application_templates?: JobApplicationTemplateUncheckedCreateNestedManyWithoutOrganisationInput
|
|
158747
160582
|
sources?: SourceUncheckedCreateNestedManyWithoutOrganisationInput
|
|
160583
|
+
evaluation_criteria?: EvaluationCriteriaUncheckedCreateNestedManyWithoutOrganisationInput
|
|
158748
160584
|
}
|
|
158749
160585
|
|
|
158750
160586
|
export type OrganisationCreateOrConnectWithoutUser_rolesInput = {
|
|
@@ -158961,6 +160797,7 @@ export namespace Prisma {
|
|
|
158961
160797
|
address?: StringFieldUpdateOperationsInput | string
|
|
158962
160798
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
158963
160799
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
160800
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
158964
160801
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
158965
160802
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
158966
160803
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -158997,6 +160834,7 @@ export namespace Prisma {
|
|
|
158997
160834
|
documents?: DocumentUpdateManyWithoutOrganisationNestedInput
|
|
158998
160835
|
job_application_templates?: JobApplicationTemplateUpdateManyWithoutOrganisationNestedInput
|
|
158999
160836
|
sources?: SourceUpdateManyWithoutOrganisationNestedInput
|
|
160837
|
+
evaluation_criteria?: EvaluationCriteriaUpdateManyWithoutOrganisationNestedInput
|
|
159000
160838
|
}
|
|
159001
160839
|
|
|
159002
160840
|
export type OrganisationUncheckedUpdateWithoutUser_rolesInput = {
|
|
@@ -159010,6 +160848,7 @@ export namespace Prisma {
|
|
|
159010
160848
|
address?: StringFieldUpdateOperationsInput | string
|
|
159011
160849
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
159012
160850
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
160851
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
159013
160852
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
159014
160853
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
159015
160854
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -159046,6 +160885,7 @@ export namespace Prisma {
|
|
|
159046
160885
|
documents?: DocumentUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
159047
160886
|
job_application_templates?: JobApplicationTemplateUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
159048
160887
|
sources?: SourceUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
160888
|
+
evaluation_criteria?: EvaluationCriteriaUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
159049
160889
|
}
|
|
159050
160890
|
|
|
159051
160891
|
export type PermissionUpsertWithoutUser_rolesInput = {
|
|
@@ -159309,6 +161149,7 @@ export namespace Prisma {
|
|
|
159309
161149
|
address: string
|
|
159310
161150
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
159311
161151
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
161152
|
+
send_email?: boolean
|
|
159312
161153
|
created_at?: Date | string
|
|
159313
161154
|
updated_at?: Date | string
|
|
159314
161155
|
created_by: string
|
|
@@ -159345,6 +161186,7 @@ export namespace Prisma {
|
|
|
159345
161186
|
documents?: DocumentCreateNestedManyWithoutOrganisationInput
|
|
159346
161187
|
job_application_templates?: JobApplicationTemplateCreateNestedManyWithoutOrganisationInput
|
|
159347
161188
|
sources?: SourceCreateNestedManyWithoutOrganisationInput
|
|
161189
|
+
evaluation_criteria?: EvaluationCriteriaCreateNestedManyWithoutOrganisationInput
|
|
159348
161190
|
}
|
|
159349
161191
|
|
|
159350
161192
|
export type OrganisationUncheckedCreateWithoutActionsInput = {
|
|
@@ -159358,6 +161200,7 @@ export namespace Prisma {
|
|
|
159358
161200
|
address: string
|
|
159359
161201
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
159360
161202
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
161203
|
+
send_email?: boolean
|
|
159361
161204
|
created_at?: Date | string
|
|
159362
161205
|
updated_at?: Date | string
|
|
159363
161206
|
created_by: string
|
|
@@ -159394,6 +161237,7 @@ export namespace Prisma {
|
|
|
159394
161237
|
documents?: DocumentUncheckedCreateNestedManyWithoutOrganisationInput
|
|
159395
161238
|
job_application_templates?: JobApplicationTemplateUncheckedCreateNestedManyWithoutOrganisationInput
|
|
159396
161239
|
sources?: SourceUncheckedCreateNestedManyWithoutOrganisationInput
|
|
161240
|
+
evaluation_criteria?: EvaluationCriteriaUncheckedCreateNestedManyWithoutOrganisationInput
|
|
159397
161241
|
}
|
|
159398
161242
|
|
|
159399
161243
|
export type OrganisationCreateOrConnectWithoutActionsInput = {
|
|
@@ -159584,6 +161428,7 @@ export namespace Prisma {
|
|
|
159584
161428
|
address?: StringFieldUpdateOperationsInput | string
|
|
159585
161429
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
159586
161430
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
161431
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
159587
161432
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
159588
161433
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
159589
161434
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -159620,6 +161465,7 @@ export namespace Prisma {
|
|
|
159620
161465
|
documents?: DocumentUpdateManyWithoutOrganisationNestedInput
|
|
159621
161466
|
job_application_templates?: JobApplicationTemplateUpdateManyWithoutOrganisationNestedInput
|
|
159622
161467
|
sources?: SourceUpdateManyWithoutOrganisationNestedInput
|
|
161468
|
+
evaluation_criteria?: EvaluationCriteriaUpdateManyWithoutOrganisationNestedInput
|
|
159623
161469
|
}
|
|
159624
161470
|
|
|
159625
161471
|
export type OrganisationUncheckedUpdateWithoutActionsInput = {
|
|
@@ -159633,6 +161479,7 @@ export namespace Prisma {
|
|
|
159633
161479
|
address?: StringFieldUpdateOperationsInput | string
|
|
159634
161480
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
159635
161481
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
161482
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
159636
161483
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
159637
161484
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
159638
161485
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -159669,6 +161516,7 @@ export namespace Prisma {
|
|
|
159669
161516
|
documents?: DocumentUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
159670
161517
|
job_application_templates?: JobApplicationTemplateUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
159671
161518
|
sources?: SourceUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
161519
|
+
evaluation_criteria?: EvaluationCriteriaUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
159672
161520
|
}
|
|
159673
161521
|
|
|
159674
161522
|
export type OrganisationCreateWithoutActivity_eventsInput = {
|
|
@@ -159682,6 +161530,7 @@ export namespace Prisma {
|
|
|
159682
161530
|
address: string
|
|
159683
161531
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
159684
161532
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
161533
|
+
send_email?: boolean
|
|
159685
161534
|
created_at?: Date | string
|
|
159686
161535
|
updated_at?: Date | string
|
|
159687
161536
|
created_by: string
|
|
@@ -159718,6 +161567,7 @@ export namespace Prisma {
|
|
|
159718
161567
|
documents?: DocumentCreateNestedManyWithoutOrganisationInput
|
|
159719
161568
|
job_application_templates?: JobApplicationTemplateCreateNestedManyWithoutOrganisationInput
|
|
159720
161569
|
sources?: SourceCreateNestedManyWithoutOrganisationInput
|
|
161570
|
+
evaluation_criteria?: EvaluationCriteriaCreateNestedManyWithoutOrganisationInput
|
|
159721
161571
|
}
|
|
159722
161572
|
|
|
159723
161573
|
export type OrganisationUncheckedCreateWithoutActivity_eventsInput = {
|
|
@@ -159731,6 +161581,7 @@ export namespace Prisma {
|
|
|
159731
161581
|
address: string
|
|
159732
161582
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
159733
161583
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
161584
|
+
send_email?: boolean
|
|
159734
161585
|
created_at?: Date | string
|
|
159735
161586
|
updated_at?: Date | string
|
|
159736
161587
|
created_by: string
|
|
@@ -159767,6 +161618,7 @@ export namespace Prisma {
|
|
|
159767
161618
|
documents?: DocumentUncheckedCreateNestedManyWithoutOrganisationInput
|
|
159768
161619
|
job_application_templates?: JobApplicationTemplateUncheckedCreateNestedManyWithoutOrganisationInput
|
|
159769
161620
|
sources?: SourceUncheckedCreateNestedManyWithoutOrganisationInput
|
|
161621
|
+
evaluation_criteria?: EvaluationCriteriaUncheckedCreateNestedManyWithoutOrganisationInput
|
|
159770
161622
|
}
|
|
159771
161623
|
|
|
159772
161624
|
export type OrganisationCreateOrConnectWithoutActivity_eventsInput = {
|
|
@@ -159796,6 +161648,7 @@ export namespace Prisma {
|
|
|
159796
161648
|
address?: StringFieldUpdateOperationsInput | string
|
|
159797
161649
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
159798
161650
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
161651
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
159799
161652
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
159800
161653
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
159801
161654
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -159832,6 +161685,7 @@ export namespace Prisma {
|
|
|
159832
161685
|
documents?: DocumentUpdateManyWithoutOrganisationNestedInput
|
|
159833
161686
|
job_application_templates?: JobApplicationTemplateUpdateManyWithoutOrganisationNestedInput
|
|
159834
161687
|
sources?: SourceUpdateManyWithoutOrganisationNestedInput
|
|
161688
|
+
evaluation_criteria?: EvaluationCriteriaUpdateManyWithoutOrganisationNestedInput
|
|
159835
161689
|
}
|
|
159836
161690
|
|
|
159837
161691
|
export type OrganisationUncheckedUpdateWithoutActivity_eventsInput = {
|
|
@@ -159845,6 +161699,7 @@ export namespace Prisma {
|
|
|
159845
161699
|
address?: StringFieldUpdateOperationsInput | string
|
|
159846
161700
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
159847
161701
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
161702
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
159848
161703
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
159849
161704
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
159850
161705
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -159881,6 +161736,7 @@ export namespace Prisma {
|
|
|
159881
161736
|
documents?: DocumentUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
159882
161737
|
job_application_templates?: JobApplicationTemplateUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
159883
161738
|
sources?: SourceUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
161739
|
+
evaluation_criteria?: EvaluationCriteriaUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
159884
161740
|
}
|
|
159885
161741
|
|
|
159886
161742
|
export type UserCreateWithoutActor_activity_logsInput = {
|
|
@@ -160606,6 +162462,7 @@ export namespace Prisma {
|
|
|
160606
162462
|
address: string
|
|
160607
162463
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
160608
162464
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
162465
|
+
send_email?: boolean
|
|
160609
162466
|
created_at?: Date | string
|
|
160610
162467
|
updated_at?: Date | string
|
|
160611
162468
|
created_by: string
|
|
@@ -160642,6 +162499,7 @@ export namespace Prisma {
|
|
|
160642
162499
|
documents?: DocumentCreateNestedManyWithoutOrganisationInput
|
|
160643
162500
|
job_application_templates?: JobApplicationTemplateCreateNestedManyWithoutOrganisationInput
|
|
160644
162501
|
sources?: SourceCreateNestedManyWithoutOrganisationInput
|
|
162502
|
+
evaluation_criteria?: EvaluationCriteriaCreateNestedManyWithoutOrganisationInput
|
|
160645
162503
|
}
|
|
160646
162504
|
|
|
160647
162505
|
export type OrganisationUncheckedCreateWithoutApplicationsInput = {
|
|
@@ -160655,6 +162513,7 @@ export namespace Prisma {
|
|
|
160655
162513
|
address: string
|
|
160656
162514
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
160657
162515
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
162516
|
+
send_email?: boolean
|
|
160658
162517
|
created_at?: Date | string
|
|
160659
162518
|
updated_at?: Date | string
|
|
160660
162519
|
created_by: string
|
|
@@ -160691,6 +162550,7 @@ export namespace Prisma {
|
|
|
160691
162550
|
documents?: DocumentUncheckedCreateNestedManyWithoutOrganisationInput
|
|
160692
162551
|
job_application_templates?: JobApplicationTemplateUncheckedCreateNestedManyWithoutOrganisationInput
|
|
160693
162552
|
sources?: SourceUncheckedCreateNestedManyWithoutOrganisationInput
|
|
162553
|
+
evaluation_criteria?: EvaluationCriteriaUncheckedCreateNestedManyWithoutOrganisationInput
|
|
160694
162554
|
}
|
|
160695
162555
|
|
|
160696
162556
|
export type OrganisationCreateOrConnectWithoutApplicationsInput = {
|
|
@@ -161881,6 +163741,7 @@ export namespace Prisma {
|
|
|
161881
163741
|
address?: StringFieldUpdateOperationsInput | string
|
|
161882
163742
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
161883
163743
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
163744
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
161884
163745
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
161885
163746
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
161886
163747
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -161917,6 +163778,7 @@ export namespace Prisma {
|
|
|
161917
163778
|
documents?: DocumentUpdateManyWithoutOrganisationNestedInput
|
|
161918
163779
|
job_application_templates?: JobApplicationTemplateUpdateManyWithoutOrganisationNestedInput
|
|
161919
163780
|
sources?: SourceUpdateManyWithoutOrganisationNestedInput
|
|
163781
|
+
evaluation_criteria?: EvaluationCriteriaUpdateManyWithoutOrganisationNestedInput
|
|
161920
163782
|
}
|
|
161921
163783
|
|
|
161922
163784
|
export type OrganisationUncheckedUpdateWithoutApplicationsInput = {
|
|
@@ -161930,6 +163792,7 @@ export namespace Prisma {
|
|
|
161930
163792
|
address?: StringFieldUpdateOperationsInput | string
|
|
161931
163793
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
161932
163794
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
163795
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
161933
163796
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
161934
163797
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
161935
163798
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -161966,6 +163829,7 @@ export namespace Prisma {
|
|
|
161966
163829
|
documents?: DocumentUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
161967
163830
|
job_application_templates?: JobApplicationTemplateUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
161968
163831
|
sources?: SourceUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
163832
|
+
evaluation_criteria?: EvaluationCriteriaUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
161969
163833
|
}
|
|
161970
163834
|
|
|
161971
163835
|
export type ResumeUpsertWithoutApplicationsInput = {
|
|
@@ -163039,6 +164903,7 @@ export namespace Prisma {
|
|
|
163039
164903
|
address: string
|
|
163040
164904
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
163041
164905
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
164906
|
+
send_email?: boolean
|
|
163042
164907
|
created_at?: Date | string
|
|
163043
164908
|
updated_at?: Date | string
|
|
163044
164909
|
created_by: string
|
|
@@ -163075,6 +164940,7 @@ export namespace Prisma {
|
|
|
163075
164940
|
documents?: DocumentCreateNestedManyWithoutOrganisationInput
|
|
163076
164941
|
job_application_templates?: JobApplicationTemplateCreateNestedManyWithoutOrganisationInput
|
|
163077
164942
|
sources?: SourceCreateNestedManyWithoutOrganisationInput
|
|
164943
|
+
evaluation_criteria?: EvaluationCriteriaCreateNestedManyWithoutOrganisationInput
|
|
163078
164944
|
}
|
|
163079
164945
|
|
|
163080
164946
|
export type OrganisationUncheckedCreateWithoutApprovalsInput = {
|
|
@@ -163088,6 +164954,7 @@ export namespace Prisma {
|
|
|
163088
164954
|
address: string
|
|
163089
164955
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
163090
164956
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
164957
|
+
send_email?: boolean
|
|
163091
164958
|
created_at?: Date | string
|
|
163092
164959
|
updated_at?: Date | string
|
|
163093
164960
|
created_by: string
|
|
@@ -163124,6 +164991,7 @@ export namespace Prisma {
|
|
|
163124
164991
|
documents?: DocumentUncheckedCreateNestedManyWithoutOrganisationInput
|
|
163125
164992
|
job_application_templates?: JobApplicationTemplateUncheckedCreateNestedManyWithoutOrganisationInput
|
|
163126
164993
|
sources?: SourceUncheckedCreateNestedManyWithoutOrganisationInput
|
|
164994
|
+
evaluation_criteria?: EvaluationCriteriaUncheckedCreateNestedManyWithoutOrganisationInput
|
|
163127
164995
|
}
|
|
163128
164996
|
|
|
163129
164997
|
export type OrganisationCreateOrConnectWithoutApprovalsInput = {
|
|
@@ -163417,6 +165285,7 @@ export namespace Prisma {
|
|
|
163417
165285
|
address?: StringFieldUpdateOperationsInput | string
|
|
163418
165286
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
163419
165287
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
165288
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
163420
165289
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
163421
165290
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
163422
165291
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -163453,6 +165322,7 @@ export namespace Prisma {
|
|
|
163453
165322
|
documents?: DocumentUpdateManyWithoutOrganisationNestedInput
|
|
163454
165323
|
job_application_templates?: JobApplicationTemplateUpdateManyWithoutOrganisationNestedInput
|
|
163455
165324
|
sources?: SourceUpdateManyWithoutOrganisationNestedInput
|
|
165325
|
+
evaluation_criteria?: EvaluationCriteriaUpdateManyWithoutOrganisationNestedInput
|
|
163456
165326
|
}
|
|
163457
165327
|
|
|
163458
165328
|
export type OrganisationUncheckedUpdateWithoutApprovalsInput = {
|
|
@@ -163466,6 +165336,7 @@ export namespace Prisma {
|
|
|
163466
165336
|
address?: StringFieldUpdateOperationsInput | string
|
|
163467
165337
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
163468
165338
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
165339
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
163469
165340
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
163470
165341
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
163471
165342
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -163502,6 +165373,7 @@ export namespace Prisma {
|
|
|
163502
165373
|
documents?: DocumentUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
163503
165374
|
job_application_templates?: JobApplicationTemplateUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
163504
165375
|
sources?: SourceUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
165376
|
+
evaluation_criteria?: EvaluationCriteriaUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
163505
165377
|
}
|
|
163506
165378
|
|
|
163507
165379
|
export type AssessmentLibraryCreateWithoutAssessmentsInput = {
|
|
@@ -163920,6 +165792,7 @@ export namespace Prisma {
|
|
|
163920
165792
|
address: string
|
|
163921
165793
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
163922
165794
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
165795
|
+
send_email?: boolean
|
|
163923
165796
|
created_at?: Date | string
|
|
163924
165797
|
updated_at?: Date | string
|
|
163925
165798
|
created_by: string
|
|
@@ -163956,6 +165829,7 @@ export namespace Prisma {
|
|
|
163956
165829
|
documents?: DocumentCreateNestedManyWithoutOrganisationInput
|
|
163957
165830
|
job_application_templates?: JobApplicationTemplateCreateNestedManyWithoutOrganisationInput
|
|
163958
165831
|
sources?: SourceCreateNestedManyWithoutOrganisationInput
|
|
165832
|
+
evaluation_criteria?: EvaluationCriteriaCreateNestedManyWithoutOrganisationInput
|
|
163959
165833
|
}
|
|
163960
165834
|
|
|
163961
165835
|
export type OrganisationUncheckedCreateWithoutAssessmentsInput = {
|
|
@@ -163969,6 +165843,7 @@ export namespace Prisma {
|
|
|
163969
165843
|
address: string
|
|
163970
165844
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
163971
165845
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
165846
|
+
send_email?: boolean
|
|
163972
165847
|
created_at?: Date | string
|
|
163973
165848
|
updated_at?: Date | string
|
|
163974
165849
|
created_by: string
|
|
@@ -164005,6 +165880,7 @@ export namespace Prisma {
|
|
|
164005
165880
|
documents?: DocumentUncheckedCreateNestedManyWithoutOrganisationInput
|
|
164006
165881
|
job_application_templates?: JobApplicationTemplateUncheckedCreateNestedManyWithoutOrganisationInput
|
|
164007
165882
|
sources?: SourceUncheckedCreateNestedManyWithoutOrganisationInput
|
|
165883
|
+
evaluation_criteria?: EvaluationCriteriaUncheckedCreateNestedManyWithoutOrganisationInput
|
|
164008
165884
|
}
|
|
164009
165885
|
|
|
164010
165886
|
export type OrganisationCreateOrConnectWithoutAssessmentsInput = {
|
|
@@ -164702,6 +166578,7 @@ export namespace Prisma {
|
|
|
164702
166578
|
address?: StringFieldUpdateOperationsInput | string
|
|
164703
166579
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
164704
166580
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
166581
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
164705
166582
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
164706
166583
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
164707
166584
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -164738,6 +166615,7 @@ export namespace Prisma {
|
|
|
164738
166615
|
documents?: DocumentUpdateManyWithoutOrganisationNestedInput
|
|
164739
166616
|
job_application_templates?: JobApplicationTemplateUpdateManyWithoutOrganisationNestedInput
|
|
164740
166617
|
sources?: SourceUpdateManyWithoutOrganisationNestedInput
|
|
166618
|
+
evaluation_criteria?: EvaluationCriteriaUpdateManyWithoutOrganisationNestedInput
|
|
164741
166619
|
}
|
|
164742
166620
|
|
|
164743
166621
|
export type OrganisationUncheckedUpdateWithoutAssessmentsInput = {
|
|
@@ -164751,6 +166629,7 @@ export namespace Prisma {
|
|
|
164751
166629
|
address?: StringFieldUpdateOperationsInput | string
|
|
164752
166630
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
164753
166631
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
166632
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
164754
166633
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
164755
166634
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
164756
166635
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -164787,6 +166666,7 @@ export namespace Prisma {
|
|
|
164787
166666
|
documents?: DocumentUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
164788
166667
|
job_application_templates?: JobApplicationTemplateUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
164789
166668
|
sources?: SourceUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
166669
|
+
evaluation_criteria?: EvaluationCriteriaUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
164790
166670
|
}
|
|
164791
166671
|
|
|
164792
166672
|
export type UserUpsertWithoutAssessment_resultsInput = {
|
|
@@ -165056,6 +166936,7 @@ export namespace Prisma {
|
|
|
165056
166936
|
address: string
|
|
165057
166937
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
165058
166938
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
166939
|
+
send_email?: boolean
|
|
165059
166940
|
created_at?: Date | string
|
|
165060
166941
|
updated_at?: Date | string
|
|
165061
166942
|
created_by: string
|
|
@@ -165092,6 +166973,7 @@ export namespace Prisma {
|
|
|
165092
166973
|
documents?: DocumentCreateNestedManyWithoutOrganisationInput
|
|
165093
166974
|
job_application_templates?: JobApplicationTemplateCreateNestedManyWithoutOrganisationInput
|
|
165094
166975
|
sources?: SourceCreateNestedManyWithoutOrganisationInput
|
|
166976
|
+
evaluation_criteria?: EvaluationCriteriaCreateNestedManyWithoutOrganisationInput
|
|
165095
166977
|
}
|
|
165096
166978
|
|
|
165097
166979
|
export type OrganisationUncheckedCreateWithoutAssessment_libraryInput = {
|
|
@@ -165105,6 +166987,7 @@ export namespace Prisma {
|
|
|
165105
166987
|
address: string
|
|
165106
166988
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
165107
166989
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
166990
|
+
send_email?: boolean
|
|
165108
166991
|
created_at?: Date | string
|
|
165109
166992
|
updated_at?: Date | string
|
|
165110
166993
|
created_by: string
|
|
@@ -165141,6 +167024,7 @@ export namespace Prisma {
|
|
|
165141
167024
|
documents?: DocumentUncheckedCreateNestedManyWithoutOrganisationInput
|
|
165142
167025
|
job_application_templates?: JobApplicationTemplateUncheckedCreateNestedManyWithoutOrganisationInput
|
|
165143
167026
|
sources?: SourceUncheckedCreateNestedManyWithoutOrganisationInput
|
|
167027
|
+
evaluation_criteria?: EvaluationCriteriaUncheckedCreateNestedManyWithoutOrganisationInput
|
|
165144
167028
|
}
|
|
165145
167029
|
|
|
165146
167030
|
export type OrganisationCreateOrConnectWithoutAssessment_libraryInput = {
|
|
@@ -165354,6 +167238,7 @@ export namespace Prisma {
|
|
|
165354
167238
|
address?: StringFieldUpdateOperationsInput | string
|
|
165355
167239
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
165356
167240
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
167241
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
165357
167242
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
165358
167243
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
165359
167244
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -165390,6 +167275,7 @@ export namespace Prisma {
|
|
|
165390
167275
|
documents?: DocumentUpdateManyWithoutOrganisationNestedInput
|
|
165391
167276
|
job_application_templates?: JobApplicationTemplateUpdateManyWithoutOrganisationNestedInput
|
|
165392
167277
|
sources?: SourceUpdateManyWithoutOrganisationNestedInput
|
|
167278
|
+
evaluation_criteria?: EvaluationCriteriaUpdateManyWithoutOrganisationNestedInput
|
|
165393
167279
|
}
|
|
165394
167280
|
|
|
165395
167281
|
export type OrganisationUncheckedUpdateWithoutAssessment_libraryInput = {
|
|
@@ -165403,6 +167289,7 @@ export namespace Prisma {
|
|
|
165403
167289
|
address?: StringFieldUpdateOperationsInput | string
|
|
165404
167290
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
165405
167291
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
167292
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
165406
167293
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
165407
167294
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
165408
167295
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -165439,6 +167326,7 @@ export namespace Prisma {
|
|
|
165439
167326
|
documents?: DocumentUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
165440
167327
|
job_application_templates?: JobApplicationTemplateUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
165441
167328
|
sources?: SourceUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
167329
|
+
evaluation_criteria?: EvaluationCriteriaUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
165442
167330
|
}
|
|
165443
167331
|
|
|
165444
167332
|
export type QuestionUpsertWithWhereUniqueWithoutAssessmentLibraryInput = {
|
|
@@ -166127,6 +168015,7 @@ export namespace Prisma {
|
|
|
166127
168015
|
address: string
|
|
166128
168016
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
166129
168017
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
168018
|
+
send_email?: boolean
|
|
166130
168019
|
created_at?: Date | string
|
|
166131
168020
|
updated_at?: Date | string
|
|
166132
168021
|
created_by: string
|
|
@@ -166163,6 +168052,7 @@ export namespace Prisma {
|
|
|
166163
168052
|
documents?: DocumentCreateNestedManyWithoutOrganisationInput
|
|
166164
168053
|
job_application_templates?: JobApplicationTemplateCreateNestedManyWithoutOrganisationInput
|
|
166165
168054
|
sources?: SourceCreateNestedManyWithoutOrganisationInput
|
|
168055
|
+
evaluation_criteria?: EvaluationCriteriaCreateNestedManyWithoutOrganisationInput
|
|
166166
168056
|
}
|
|
166167
168057
|
|
|
166168
168058
|
export type OrganisationUncheckedCreateWithoutAssignmentsInput = {
|
|
@@ -166176,6 +168066,7 @@ export namespace Prisma {
|
|
|
166176
168066
|
address: string
|
|
166177
168067
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
166178
168068
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
168069
|
+
send_email?: boolean
|
|
166179
168070
|
created_at?: Date | string
|
|
166180
168071
|
updated_at?: Date | string
|
|
166181
168072
|
created_by: string
|
|
@@ -166212,6 +168103,7 @@ export namespace Prisma {
|
|
|
166212
168103
|
documents?: DocumentUncheckedCreateNestedManyWithoutOrganisationInput
|
|
166213
168104
|
job_application_templates?: JobApplicationTemplateUncheckedCreateNestedManyWithoutOrganisationInput
|
|
166214
168105
|
sources?: SourceUncheckedCreateNestedManyWithoutOrganisationInput
|
|
168106
|
+
evaluation_criteria?: EvaluationCriteriaUncheckedCreateNestedManyWithoutOrganisationInput
|
|
166215
168107
|
}
|
|
166216
168108
|
|
|
166217
168109
|
export type OrganisationCreateOrConnectWithoutAssignmentsInput = {
|
|
@@ -166991,6 +168883,7 @@ export namespace Prisma {
|
|
|
166991
168883
|
address?: StringFieldUpdateOperationsInput | string
|
|
166992
168884
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
166993
168885
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
168886
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
166994
168887
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
166995
168888
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
166996
168889
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -167027,6 +168920,7 @@ export namespace Prisma {
|
|
|
167027
168920
|
documents?: DocumentUpdateManyWithoutOrganisationNestedInput
|
|
167028
168921
|
job_application_templates?: JobApplicationTemplateUpdateManyWithoutOrganisationNestedInput
|
|
167029
168922
|
sources?: SourceUpdateManyWithoutOrganisationNestedInput
|
|
168923
|
+
evaluation_criteria?: EvaluationCriteriaUpdateManyWithoutOrganisationNestedInput
|
|
167030
168924
|
}
|
|
167031
168925
|
|
|
167032
168926
|
export type OrganisationUncheckedUpdateWithoutAssignmentsInput = {
|
|
@@ -167040,6 +168934,7 @@ export namespace Prisma {
|
|
|
167040
168934
|
address?: StringFieldUpdateOperationsInput | string
|
|
167041
168935
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
167042
168936
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
168937
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
167043
168938
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
167044
168939
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
167045
168940
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -167076,6 +168971,7 @@ export namespace Prisma {
|
|
|
167076
168971
|
documents?: DocumentUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
167077
168972
|
job_application_templates?: JobApplicationTemplateUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
167078
168973
|
sources?: SourceUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
168974
|
+
evaluation_criteria?: EvaluationCriteriaUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
167079
168975
|
}
|
|
167080
168976
|
|
|
167081
168977
|
export type JobDescriptionUpsertWithoutAssignmentsInput = {
|
|
@@ -167508,6 +169404,7 @@ export namespace Prisma {
|
|
|
167508
169404
|
address: string
|
|
167509
169405
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
167510
169406
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
169407
|
+
send_email?: boolean
|
|
167511
169408
|
created_at?: Date | string
|
|
167512
169409
|
updated_at?: Date | string
|
|
167513
169410
|
created_by: string
|
|
@@ -167544,6 +169441,7 @@ export namespace Prisma {
|
|
|
167544
169441
|
documents?: DocumentCreateNestedManyWithoutOrganisationInput
|
|
167545
169442
|
job_application_templates?: JobApplicationTemplateCreateNestedManyWithoutOrganisationInput
|
|
167546
169443
|
sources?: SourceCreateNestedManyWithoutOrganisationInput
|
|
169444
|
+
evaluation_criteria?: EvaluationCriteriaCreateNestedManyWithoutOrganisationInput
|
|
167547
169445
|
}
|
|
167548
169446
|
|
|
167549
169447
|
export type OrganisationUncheckedCreateWithoutAssignment_libraryInput = {
|
|
@@ -167557,6 +169455,7 @@ export namespace Prisma {
|
|
|
167557
169455
|
address: string
|
|
167558
169456
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
167559
169457
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
169458
|
+
send_email?: boolean
|
|
167560
169459
|
created_at?: Date | string
|
|
167561
169460
|
updated_at?: Date | string
|
|
167562
169461
|
created_by: string
|
|
@@ -167593,6 +169492,7 @@ export namespace Prisma {
|
|
|
167593
169492
|
documents?: DocumentUncheckedCreateNestedManyWithoutOrganisationInput
|
|
167594
169493
|
job_application_templates?: JobApplicationTemplateUncheckedCreateNestedManyWithoutOrganisationInput
|
|
167595
169494
|
sources?: SourceUncheckedCreateNestedManyWithoutOrganisationInput
|
|
169495
|
+
evaluation_criteria?: EvaluationCriteriaUncheckedCreateNestedManyWithoutOrganisationInput
|
|
167596
169496
|
}
|
|
167597
169497
|
|
|
167598
169498
|
export type OrganisationCreateOrConnectWithoutAssignment_libraryInput = {
|
|
@@ -167859,6 +169759,7 @@ export namespace Prisma {
|
|
|
167859
169759
|
address?: StringFieldUpdateOperationsInput | string
|
|
167860
169760
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
167861
169761
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
169762
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
167862
169763
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
167863
169764
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
167864
169765
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -167895,6 +169796,7 @@ export namespace Prisma {
|
|
|
167895
169796
|
documents?: DocumentUpdateManyWithoutOrganisationNestedInput
|
|
167896
169797
|
job_application_templates?: JobApplicationTemplateUpdateManyWithoutOrganisationNestedInput
|
|
167897
169798
|
sources?: SourceUpdateManyWithoutOrganisationNestedInput
|
|
169799
|
+
evaluation_criteria?: EvaluationCriteriaUpdateManyWithoutOrganisationNestedInput
|
|
167898
169800
|
}
|
|
167899
169801
|
|
|
167900
169802
|
export type OrganisationUncheckedUpdateWithoutAssignment_libraryInput = {
|
|
@@ -167908,6 +169810,7 @@ export namespace Prisma {
|
|
|
167908
169810
|
address?: StringFieldUpdateOperationsInput | string
|
|
167909
169811
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
167910
169812
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
169813
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
167911
169814
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
167912
169815
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
167913
169816
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -167944,6 +169847,7 @@ export namespace Prisma {
|
|
|
167944
169847
|
documents?: DocumentUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
167945
169848
|
job_application_templates?: JobApplicationTemplateUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
167946
169849
|
sources?: SourceUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
169850
|
+
evaluation_criteria?: EvaluationCriteriaUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
167947
169851
|
}
|
|
167948
169852
|
|
|
167949
169853
|
export type JobDescriptionUpsertWithoutAssignment_libraryInput = {
|
|
@@ -169356,6 +171260,7 @@ export namespace Prisma {
|
|
|
169356
171260
|
address: string
|
|
169357
171261
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
169358
171262
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
171263
|
+
send_email?: boolean
|
|
169359
171264
|
created_at?: Date | string
|
|
169360
171265
|
updated_at?: Date | string
|
|
169361
171266
|
created_by: string
|
|
@@ -169392,6 +171297,7 @@ export namespace Prisma {
|
|
|
169392
171297
|
documents?: DocumentCreateNestedManyWithoutOrganisationInput
|
|
169393
171298
|
job_application_templates?: JobApplicationTemplateCreateNestedManyWithoutOrganisationInput
|
|
169394
171299
|
sources?: SourceCreateNestedManyWithoutOrganisationInput
|
|
171300
|
+
evaluation_criteria?: EvaluationCriteriaCreateNestedManyWithoutOrganisationInput
|
|
169395
171301
|
}
|
|
169396
171302
|
|
|
169397
171303
|
export type OrganisationUncheckedCreateWithoutChannel_provider_configsInput = {
|
|
@@ -169405,6 +171311,7 @@ export namespace Prisma {
|
|
|
169405
171311
|
address: string
|
|
169406
171312
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
169407
171313
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
171314
|
+
send_email?: boolean
|
|
169408
171315
|
created_at?: Date | string
|
|
169409
171316
|
updated_at?: Date | string
|
|
169410
171317
|
created_by: string
|
|
@@ -169441,6 +171348,7 @@ export namespace Prisma {
|
|
|
169441
171348
|
documents?: DocumentUncheckedCreateNestedManyWithoutOrganisationInput
|
|
169442
171349
|
job_application_templates?: JobApplicationTemplateUncheckedCreateNestedManyWithoutOrganisationInput
|
|
169443
171350
|
sources?: SourceUncheckedCreateNestedManyWithoutOrganisationInput
|
|
171351
|
+
evaluation_criteria?: EvaluationCriteriaUncheckedCreateNestedManyWithoutOrganisationInput
|
|
169444
171352
|
}
|
|
169445
171353
|
|
|
169446
171354
|
export type OrganisationCreateOrConnectWithoutChannel_provider_configsInput = {
|
|
@@ -169586,6 +171494,7 @@ export namespace Prisma {
|
|
|
169586
171494
|
address?: StringFieldUpdateOperationsInput | string
|
|
169587
171495
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
169588
171496
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
171497
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
169589
171498
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
169590
171499
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
169591
171500
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -169622,6 +171531,7 @@ export namespace Prisma {
|
|
|
169622
171531
|
documents?: DocumentUpdateManyWithoutOrganisationNestedInput
|
|
169623
171532
|
job_application_templates?: JobApplicationTemplateUpdateManyWithoutOrganisationNestedInput
|
|
169624
171533
|
sources?: SourceUpdateManyWithoutOrganisationNestedInput
|
|
171534
|
+
evaluation_criteria?: EvaluationCriteriaUpdateManyWithoutOrganisationNestedInput
|
|
169625
171535
|
}
|
|
169626
171536
|
|
|
169627
171537
|
export type OrganisationUncheckedUpdateWithoutChannel_provider_configsInput = {
|
|
@@ -169635,6 +171545,7 @@ export namespace Prisma {
|
|
|
169635
171545
|
address?: StringFieldUpdateOperationsInput | string
|
|
169636
171546
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
169637
171547
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
171548
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
169638
171549
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
169639
171550
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
169640
171551
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -169671,6 +171582,7 @@ export namespace Prisma {
|
|
|
169671
171582
|
documents?: DocumentUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
169672
171583
|
job_application_templates?: JobApplicationTemplateUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
169673
171584
|
sources?: SourceUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
171585
|
+
evaluation_criteria?: EvaluationCriteriaUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
169674
171586
|
}
|
|
169675
171587
|
|
|
169676
171588
|
export type ConversationUpsertWithWhereUniqueWithoutChannel_providerInput = {
|
|
@@ -169716,6 +171628,7 @@ export namespace Prisma {
|
|
|
169716
171628
|
address: string
|
|
169717
171629
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
169718
171630
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
171631
|
+
send_email?: boolean
|
|
169719
171632
|
created_at?: Date | string
|
|
169720
171633
|
updated_at?: Date | string
|
|
169721
171634
|
created_by: string
|
|
@@ -169752,6 +171665,7 @@ export namespace Prisma {
|
|
|
169752
171665
|
documents?: DocumentCreateNestedManyWithoutOrganisationInput
|
|
169753
171666
|
job_application_templates?: JobApplicationTemplateCreateNestedManyWithoutOrganisationInput
|
|
169754
171667
|
sources?: SourceCreateNestedManyWithoutOrganisationInput
|
|
171668
|
+
evaluation_criteria?: EvaluationCriteriaCreateNestedManyWithoutOrganisationInput
|
|
169755
171669
|
}
|
|
169756
171670
|
|
|
169757
171671
|
export type OrganisationUncheckedCreateWithoutConversationsInput = {
|
|
@@ -169765,6 +171679,7 @@ export namespace Prisma {
|
|
|
169765
171679
|
address: string
|
|
169766
171680
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
169767
171681
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
171682
|
+
send_email?: boolean
|
|
169768
171683
|
created_at?: Date | string
|
|
169769
171684
|
updated_at?: Date | string
|
|
169770
171685
|
created_by: string
|
|
@@ -169801,6 +171716,7 @@ export namespace Prisma {
|
|
|
169801
171716
|
documents?: DocumentUncheckedCreateNestedManyWithoutOrganisationInput
|
|
169802
171717
|
job_application_templates?: JobApplicationTemplateUncheckedCreateNestedManyWithoutOrganisationInput
|
|
169803
171718
|
sources?: SourceUncheckedCreateNestedManyWithoutOrganisationInput
|
|
171719
|
+
evaluation_criteria?: EvaluationCriteriaUncheckedCreateNestedManyWithoutOrganisationInput
|
|
169804
171720
|
}
|
|
169805
171721
|
|
|
169806
171722
|
export type OrganisationCreateOrConnectWithoutConversationsInput = {
|
|
@@ -170107,6 +172023,7 @@ export namespace Prisma {
|
|
|
170107
172023
|
address?: StringFieldUpdateOperationsInput | string
|
|
170108
172024
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
170109
172025
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
172026
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
170110
172027
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
170111
172028
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
170112
172029
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -170143,6 +172060,7 @@ export namespace Prisma {
|
|
|
170143
172060
|
documents?: DocumentUpdateManyWithoutOrganisationNestedInput
|
|
170144
172061
|
job_application_templates?: JobApplicationTemplateUpdateManyWithoutOrganisationNestedInput
|
|
170145
172062
|
sources?: SourceUpdateManyWithoutOrganisationNestedInput
|
|
172063
|
+
evaluation_criteria?: EvaluationCriteriaUpdateManyWithoutOrganisationNestedInput
|
|
170146
172064
|
}
|
|
170147
172065
|
|
|
170148
172066
|
export type OrganisationUncheckedUpdateWithoutConversationsInput = {
|
|
@@ -170156,6 +172074,7 @@ export namespace Prisma {
|
|
|
170156
172074
|
address?: StringFieldUpdateOperationsInput | string
|
|
170157
172075
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
170158
172076
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
172077
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
170159
172078
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
170160
172079
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
170161
172080
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -170192,6 +172111,7 @@ export namespace Prisma {
|
|
|
170192
172111
|
documents?: DocumentUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
170193
172112
|
job_application_templates?: JobApplicationTemplateUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
170194
172113
|
sources?: SourceUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
172114
|
+
evaluation_criteria?: EvaluationCriteriaUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
170195
172115
|
}
|
|
170196
172116
|
|
|
170197
172117
|
export type ChannelProviderConfigUpsertWithoutConversationsInput = {
|
|
@@ -170503,6 +172423,7 @@ export namespace Prisma {
|
|
|
170503
172423
|
address: string
|
|
170504
172424
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
170505
172425
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
172426
|
+
send_email?: boolean
|
|
170506
172427
|
created_at?: Date | string
|
|
170507
172428
|
updated_at?: Date | string
|
|
170508
172429
|
created_by: string
|
|
@@ -170539,6 +172460,7 @@ export namespace Prisma {
|
|
|
170539
172460
|
documents?: DocumentCreateNestedManyWithoutOrganisationInput
|
|
170540
172461
|
job_application_templates?: JobApplicationTemplateCreateNestedManyWithoutOrganisationInput
|
|
170541
172462
|
sources?: SourceCreateNestedManyWithoutOrganisationInput
|
|
172463
|
+
evaluation_criteria?: EvaluationCriteriaCreateNestedManyWithoutOrganisationInput
|
|
170542
172464
|
}
|
|
170543
172465
|
|
|
170544
172466
|
export type OrganisationUncheckedCreateWithoutCommunication_messagesInput = {
|
|
@@ -170552,6 +172474,7 @@ export namespace Prisma {
|
|
|
170552
172474
|
address: string
|
|
170553
172475
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
170554
172476
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
172477
|
+
send_email?: boolean
|
|
170555
172478
|
created_at?: Date | string
|
|
170556
172479
|
updated_at?: Date | string
|
|
170557
172480
|
created_by: string
|
|
@@ -170588,6 +172511,7 @@ export namespace Prisma {
|
|
|
170588
172511
|
documents?: DocumentUncheckedCreateNestedManyWithoutOrganisationInput
|
|
170589
172512
|
job_application_templates?: JobApplicationTemplateUncheckedCreateNestedManyWithoutOrganisationInput
|
|
170590
172513
|
sources?: SourceUncheckedCreateNestedManyWithoutOrganisationInput
|
|
172514
|
+
evaluation_criteria?: EvaluationCriteriaUncheckedCreateNestedManyWithoutOrganisationInput
|
|
170591
172515
|
}
|
|
170592
172516
|
|
|
170593
172517
|
export type OrganisationCreateOrConnectWithoutCommunication_messagesInput = {
|
|
@@ -170887,6 +172811,7 @@ export namespace Prisma {
|
|
|
170887
172811
|
address?: StringFieldUpdateOperationsInput | string
|
|
170888
172812
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
170889
172813
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
172814
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
170890
172815
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
170891
172816
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
170892
172817
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -170923,6 +172848,7 @@ export namespace Prisma {
|
|
|
170923
172848
|
documents?: DocumentUpdateManyWithoutOrganisationNestedInput
|
|
170924
172849
|
job_application_templates?: JobApplicationTemplateUpdateManyWithoutOrganisationNestedInput
|
|
170925
172850
|
sources?: SourceUpdateManyWithoutOrganisationNestedInput
|
|
172851
|
+
evaluation_criteria?: EvaluationCriteriaUpdateManyWithoutOrganisationNestedInput
|
|
170926
172852
|
}
|
|
170927
172853
|
|
|
170928
172854
|
export type OrganisationUncheckedUpdateWithoutCommunication_messagesInput = {
|
|
@@ -170936,6 +172862,7 @@ export namespace Prisma {
|
|
|
170936
172862
|
address?: StringFieldUpdateOperationsInput | string
|
|
170937
172863
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
170938
172864
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
172865
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
170939
172866
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
170940
172867
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
170941
172868
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -170972,6 +172899,7 @@ export namespace Prisma {
|
|
|
170972
172899
|
documents?: DocumentUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
170973
172900
|
job_application_templates?: JobApplicationTemplateUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
170974
172901
|
sources?: SourceUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
172902
|
+
evaluation_criteria?: EvaluationCriteriaUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
170975
172903
|
}
|
|
170976
172904
|
|
|
170977
172905
|
export type ChannelProviderConfigUpsertWithoutMessagesInput = {
|
|
@@ -171218,6 +173146,7 @@ export namespace Prisma {
|
|
|
171218
173146
|
address: string
|
|
171219
173147
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
171220
173148
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
173149
|
+
send_email?: boolean
|
|
171221
173150
|
created_at?: Date | string
|
|
171222
173151
|
updated_at?: Date | string
|
|
171223
173152
|
created_by: string
|
|
@@ -171254,6 +173183,7 @@ export namespace Prisma {
|
|
|
171254
173183
|
job_application_fields?: JobApplicationFieldCreateNestedManyWithoutOrganisationInput
|
|
171255
173184
|
job_application_templates?: JobApplicationTemplateCreateNestedManyWithoutOrganisationInput
|
|
171256
173185
|
sources?: SourceCreateNestedManyWithoutOrganisationInput
|
|
173186
|
+
evaluation_criteria?: EvaluationCriteriaCreateNestedManyWithoutOrganisationInput
|
|
171257
173187
|
}
|
|
171258
173188
|
|
|
171259
173189
|
export type OrganisationUncheckedCreateWithoutDocumentsInput = {
|
|
@@ -171267,6 +173197,7 @@ export namespace Prisma {
|
|
|
171267
173197
|
address: string
|
|
171268
173198
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
171269
173199
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
173200
|
+
send_email?: boolean
|
|
171270
173201
|
created_at?: Date | string
|
|
171271
173202
|
updated_at?: Date | string
|
|
171272
173203
|
created_by: string
|
|
@@ -171303,6 +173234,7 @@ export namespace Prisma {
|
|
|
171303
173234
|
job_application_fields?: JobApplicationFieldUncheckedCreateNestedManyWithoutOrganisationInput
|
|
171304
173235
|
job_application_templates?: JobApplicationTemplateUncheckedCreateNestedManyWithoutOrganisationInput
|
|
171305
173236
|
sources?: SourceUncheckedCreateNestedManyWithoutOrganisationInput
|
|
173237
|
+
evaluation_criteria?: EvaluationCriteriaUncheckedCreateNestedManyWithoutOrganisationInput
|
|
171306
173238
|
}
|
|
171307
173239
|
|
|
171308
173240
|
export type OrganisationCreateOrConnectWithoutDocumentsInput = {
|
|
@@ -172167,6 +174099,7 @@ export namespace Prisma {
|
|
|
172167
174099
|
address?: StringFieldUpdateOperationsInput | string
|
|
172168
174100
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
172169
174101
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
174102
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
172170
174103
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
172171
174104
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
172172
174105
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -172203,6 +174136,7 @@ export namespace Prisma {
|
|
|
172203
174136
|
job_application_fields?: JobApplicationFieldUpdateManyWithoutOrganisationNestedInput
|
|
172204
174137
|
job_application_templates?: JobApplicationTemplateUpdateManyWithoutOrganisationNestedInput
|
|
172205
174138
|
sources?: SourceUpdateManyWithoutOrganisationNestedInput
|
|
174139
|
+
evaluation_criteria?: EvaluationCriteriaUpdateManyWithoutOrganisationNestedInput
|
|
172206
174140
|
}
|
|
172207
174141
|
|
|
172208
174142
|
export type OrganisationUncheckedUpdateWithoutDocumentsInput = {
|
|
@@ -172216,6 +174150,7 @@ export namespace Prisma {
|
|
|
172216
174150
|
address?: StringFieldUpdateOperationsInput | string
|
|
172217
174151
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
172218
174152
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
174153
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
172219
174154
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
172220
174155
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
172221
174156
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -172252,6 +174187,7 @@ export namespace Prisma {
|
|
|
172252
174187
|
job_application_fields?: JobApplicationFieldUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
172253
174188
|
job_application_templates?: JobApplicationTemplateUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
172254
174189
|
sources?: SourceUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
174190
|
+
evaluation_criteria?: EvaluationCriteriaUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
172255
174191
|
}
|
|
172256
174192
|
|
|
172257
174193
|
export type UserUpsertWithoutDocumentsInput = {
|
|
@@ -173109,6 +175045,226 @@ export namespace Prisma {
|
|
|
173109
175045
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
173110
175046
|
}
|
|
173111
175047
|
|
|
175048
|
+
export type OrganisationCreateWithoutEvaluation_criteriaInput = {
|
|
175049
|
+
id?: string
|
|
175050
|
+
name: string
|
|
175051
|
+
industry: string
|
|
175052
|
+
about: string
|
|
175053
|
+
website: string
|
|
175054
|
+
size?: $Enums.OrganisationSize
|
|
175055
|
+
phone: string
|
|
175056
|
+
address: string
|
|
175057
|
+
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
175058
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
175059
|
+
send_email?: boolean
|
|
175060
|
+
created_at?: Date | string
|
|
175061
|
+
updated_at?: Date | string
|
|
175062
|
+
created_by: string
|
|
175063
|
+
updated_by: string
|
|
175064
|
+
is_active?: boolean
|
|
175065
|
+
alias?: string | null
|
|
175066
|
+
logo?: string | null
|
|
175067
|
+
job_sequence?: number
|
|
175068
|
+
employee_sequence?: number
|
|
175069
|
+
timezone?: string
|
|
175070
|
+
interviewers?: UserCreateNestedManyWithoutOrganisationInput
|
|
175071
|
+
applications?: ApplicationCreateNestedManyWithoutOrganisationInput
|
|
175072
|
+
user_roles?: UserRoleCreateNestedManyWithoutOrganisationInput
|
|
175073
|
+
job_descriptions?: JobDescriptionCreateNestedManyWithoutOrganisationInput
|
|
175074
|
+
job_profiles?: JobProfileCreateNestedManyWithoutOrganisationInput
|
|
175075
|
+
assessment_library?: AssessmentLibraryCreateNestedManyWithoutOrganisationInput
|
|
175076
|
+
assignment_library?: AssignmentLibraryCreateNestedManyWithoutOrganisationInput
|
|
175077
|
+
interviews?: InterviewCreateNestedManyWithoutOrganisationInput
|
|
175078
|
+
assignments?: AssignmentCreateNestedManyWithoutOrganisationInput
|
|
175079
|
+
fit_check?: FitCheckCreateNestedManyWithoutOrganisationInput
|
|
175080
|
+
resumes?: ResumeCreateNestedManyWithoutOrganisationInput
|
|
175081
|
+
approvals?: ApprovalCreateNestedManyWithoutOrganisationInput
|
|
175082
|
+
suggestions?: SuggestionCreateNestedManyWithoutOrganisationInput
|
|
175083
|
+
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutOrganisationInput
|
|
175084
|
+
actions?: ActionCreateNestedManyWithoutOrganisationInput
|
|
175085
|
+
integration_credentials?: IntegrationCredentialCreateNestedManyWithoutOrganisationInput
|
|
175086
|
+
zoho_sync_mappings?: ZohoSyncMappingCreateNestedManyWithoutOrganisationInput
|
|
175087
|
+
assessments?: AssessmentCreateNestedManyWithoutOrganisationInput
|
|
175088
|
+
organisation_configs?: OrganisationConfigCreateNestedManyWithoutOrganisationInput
|
|
175089
|
+
activity_events?: ActivityEventCreateNestedManyWithoutOrganisationInput
|
|
175090
|
+
channel_provider_configs?: ChannelProviderConfigCreateNestedManyWithoutOrganisationInput
|
|
175091
|
+
conversations?: ConversationCreateNestedManyWithoutOrganisationInput
|
|
175092
|
+
communication_messages?: CommunicationMessageCreateNestedManyWithoutOrganisationInput
|
|
175093
|
+
job_application_fields?: JobApplicationFieldCreateNestedManyWithoutOrganisationInput
|
|
175094
|
+
documents?: DocumentCreateNestedManyWithoutOrganisationInput
|
|
175095
|
+
job_application_templates?: JobApplicationTemplateCreateNestedManyWithoutOrganisationInput
|
|
175096
|
+
sources?: SourceCreateNestedManyWithoutOrganisationInput
|
|
175097
|
+
}
|
|
175098
|
+
|
|
175099
|
+
export type OrganisationUncheckedCreateWithoutEvaluation_criteriaInput = {
|
|
175100
|
+
id?: string
|
|
175101
|
+
name: string
|
|
175102
|
+
industry: string
|
|
175103
|
+
about: string
|
|
175104
|
+
website: string
|
|
175105
|
+
size?: $Enums.OrganisationSize
|
|
175106
|
+
phone: string
|
|
175107
|
+
address: string
|
|
175108
|
+
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
175109
|
+
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
175110
|
+
send_email?: boolean
|
|
175111
|
+
created_at?: Date | string
|
|
175112
|
+
updated_at?: Date | string
|
|
175113
|
+
created_by: string
|
|
175114
|
+
updated_by: string
|
|
175115
|
+
is_active?: boolean
|
|
175116
|
+
alias?: string | null
|
|
175117
|
+
logo?: string | null
|
|
175118
|
+
job_sequence?: number
|
|
175119
|
+
employee_sequence?: number
|
|
175120
|
+
timezone?: string
|
|
175121
|
+
interviewers?: UserUncheckedCreateNestedManyWithoutOrganisationInput
|
|
175122
|
+
applications?: ApplicationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
175123
|
+
user_roles?: UserRoleUncheckedCreateNestedManyWithoutOrganisationInput
|
|
175124
|
+
job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutOrganisationInput
|
|
175125
|
+
job_profiles?: JobProfileUncheckedCreateNestedManyWithoutOrganisationInput
|
|
175126
|
+
assessment_library?: AssessmentLibraryUncheckedCreateNestedManyWithoutOrganisationInput
|
|
175127
|
+
assignment_library?: AssignmentLibraryUncheckedCreateNestedManyWithoutOrganisationInput
|
|
175128
|
+
interviews?: InterviewUncheckedCreateNestedManyWithoutOrganisationInput
|
|
175129
|
+
assignments?: AssignmentUncheckedCreateNestedManyWithoutOrganisationInput
|
|
175130
|
+
fit_check?: FitCheckUncheckedCreateNestedManyWithoutOrganisationInput
|
|
175131
|
+
resumes?: ResumeUncheckedCreateNestedManyWithoutOrganisationInput
|
|
175132
|
+
approvals?: ApprovalUncheckedCreateNestedManyWithoutOrganisationInput
|
|
175133
|
+
suggestions?: SuggestionUncheckedCreateNestedManyWithoutOrganisationInput
|
|
175134
|
+
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
175135
|
+
actions?: ActionUncheckedCreateNestedManyWithoutOrganisationInput
|
|
175136
|
+
integration_credentials?: IntegrationCredentialUncheckedCreateNestedManyWithoutOrganisationInput
|
|
175137
|
+
zoho_sync_mappings?: ZohoSyncMappingUncheckedCreateNestedManyWithoutOrganisationInput
|
|
175138
|
+
assessments?: AssessmentUncheckedCreateNestedManyWithoutOrganisationInput
|
|
175139
|
+
organisation_configs?: OrganisationConfigUncheckedCreateNestedManyWithoutOrganisationInput
|
|
175140
|
+
activity_events?: ActivityEventUncheckedCreateNestedManyWithoutOrganisationInput
|
|
175141
|
+
channel_provider_configs?: ChannelProviderConfigUncheckedCreateNestedManyWithoutOrganisationInput
|
|
175142
|
+
conversations?: ConversationUncheckedCreateNestedManyWithoutOrganisationInput
|
|
175143
|
+
communication_messages?: CommunicationMessageUncheckedCreateNestedManyWithoutOrganisationInput
|
|
175144
|
+
job_application_fields?: JobApplicationFieldUncheckedCreateNestedManyWithoutOrganisationInput
|
|
175145
|
+
documents?: DocumentUncheckedCreateNestedManyWithoutOrganisationInput
|
|
175146
|
+
job_application_templates?: JobApplicationTemplateUncheckedCreateNestedManyWithoutOrganisationInput
|
|
175147
|
+
sources?: SourceUncheckedCreateNestedManyWithoutOrganisationInput
|
|
175148
|
+
}
|
|
175149
|
+
|
|
175150
|
+
export type OrganisationCreateOrConnectWithoutEvaluation_criteriaInput = {
|
|
175151
|
+
where: OrganisationWhereUniqueInput
|
|
175152
|
+
create: XOR<OrganisationCreateWithoutEvaluation_criteriaInput, OrganisationUncheckedCreateWithoutEvaluation_criteriaInput>
|
|
175153
|
+
}
|
|
175154
|
+
|
|
175155
|
+
export type OrganisationUpsertWithoutEvaluation_criteriaInput = {
|
|
175156
|
+
update: XOR<OrganisationUpdateWithoutEvaluation_criteriaInput, OrganisationUncheckedUpdateWithoutEvaluation_criteriaInput>
|
|
175157
|
+
create: XOR<OrganisationCreateWithoutEvaluation_criteriaInput, OrganisationUncheckedCreateWithoutEvaluation_criteriaInput>
|
|
175158
|
+
where?: OrganisationWhereInput
|
|
175159
|
+
}
|
|
175160
|
+
|
|
175161
|
+
export type OrganisationUpdateToOneWithWhereWithoutEvaluation_criteriaInput = {
|
|
175162
|
+
where?: OrganisationWhereInput
|
|
175163
|
+
data: XOR<OrganisationUpdateWithoutEvaluation_criteriaInput, OrganisationUncheckedUpdateWithoutEvaluation_criteriaInput>
|
|
175164
|
+
}
|
|
175165
|
+
|
|
175166
|
+
export type OrganisationUpdateWithoutEvaluation_criteriaInput = {
|
|
175167
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
175168
|
+
name?: StringFieldUpdateOperationsInput | string
|
|
175169
|
+
industry?: StringFieldUpdateOperationsInput | string
|
|
175170
|
+
about?: StringFieldUpdateOperationsInput | string
|
|
175171
|
+
website?: StringFieldUpdateOperationsInput | string
|
|
175172
|
+
size?: EnumOrganisationSizeFieldUpdateOperationsInput | $Enums.OrganisationSize
|
|
175173
|
+
phone?: StringFieldUpdateOperationsInput | string
|
|
175174
|
+
address?: StringFieldUpdateOperationsInput | string
|
|
175175
|
+
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
175176
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
175177
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
175178
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
175179
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
175180
|
+
created_by?: StringFieldUpdateOperationsInput | string
|
|
175181
|
+
updated_by?: StringFieldUpdateOperationsInput | string
|
|
175182
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
175183
|
+
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
175184
|
+
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
175185
|
+
job_sequence?: IntFieldUpdateOperationsInput | number
|
|
175186
|
+
employee_sequence?: IntFieldUpdateOperationsInput | number
|
|
175187
|
+
timezone?: StringFieldUpdateOperationsInput | string
|
|
175188
|
+
interviewers?: UserUpdateManyWithoutOrganisationNestedInput
|
|
175189
|
+
applications?: ApplicationUpdateManyWithoutOrganisationNestedInput
|
|
175190
|
+
user_roles?: UserRoleUpdateManyWithoutOrganisationNestedInput
|
|
175191
|
+
job_descriptions?: JobDescriptionUpdateManyWithoutOrganisationNestedInput
|
|
175192
|
+
job_profiles?: JobProfileUpdateManyWithoutOrganisationNestedInput
|
|
175193
|
+
assessment_library?: AssessmentLibraryUpdateManyWithoutOrganisationNestedInput
|
|
175194
|
+
assignment_library?: AssignmentLibraryUpdateManyWithoutOrganisationNestedInput
|
|
175195
|
+
interviews?: InterviewUpdateManyWithoutOrganisationNestedInput
|
|
175196
|
+
assignments?: AssignmentUpdateManyWithoutOrganisationNestedInput
|
|
175197
|
+
fit_check?: FitCheckUpdateManyWithoutOrganisationNestedInput
|
|
175198
|
+
resumes?: ResumeUpdateManyWithoutOrganisationNestedInput
|
|
175199
|
+
approvals?: ApprovalUpdateManyWithoutOrganisationNestedInput
|
|
175200
|
+
suggestions?: SuggestionUpdateManyWithoutOrganisationNestedInput
|
|
175201
|
+
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutOrganisationNestedInput
|
|
175202
|
+
actions?: ActionUpdateManyWithoutOrganisationNestedInput
|
|
175203
|
+
integration_credentials?: IntegrationCredentialUpdateManyWithoutOrganisationNestedInput
|
|
175204
|
+
zoho_sync_mappings?: ZohoSyncMappingUpdateManyWithoutOrganisationNestedInput
|
|
175205
|
+
assessments?: AssessmentUpdateManyWithoutOrganisationNestedInput
|
|
175206
|
+
organisation_configs?: OrganisationConfigUpdateManyWithoutOrganisationNestedInput
|
|
175207
|
+
activity_events?: ActivityEventUpdateManyWithoutOrganisationNestedInput
|
|
175208
|
+
channel_provider_configs?: ChannelProviderConfigUpdateManyWithoutOrganisationNestedInput
|
|
175209
|
+
conversations?: ConversationUpdateManyWithoutOrganisationNestedInput
|
|
175210
|
+
communication_messages?: CommunicationMessageUpdateManyWithoutOrganisationNestedInput
|
|
175211
|
+
job_application_fields?: JobApplicationFieldUpdateManyWithoutOrganisationNestedInput
|
|
175212
|
+
documents?: DocumentUpdateManyWithoutOrganisationNestedInput
|
|
175213
|
+
job_application_templates?: JobApplicationTemplateUpdateManyWithoutOrganisationNestedInput
|
|
175214
|
+
sources?: SourceUpdateManyWithoutOrganisationNestedInput
|
|
175215
|
+
}
|
|
175216
|
+
|
|
175217
|
+
export type OrganisationUncheckedUpdateWithoutEvaluation_criteriaInput = {
|
|
175218
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
175219
|
+
name?: StringFieldUpdateOperationsInput | string
|
|
175220
|
+
industry?: StringFieldUpdateOperationsInput | string
|
|
175221
|
+
about?: StringFieldUpdateOperationsInput | string
|
|
175222
|
+
website?: StringFieldUpdateOperationsInput | string
|
|
175223
|
+
size?: EnumOrganisationSizeFieldUpdateOperationsInput | $Enums.OrganisationSize
|
|
175224
|
+
phone?: StringFieldUpdateOperationsInput | string
|
|
175225
|
+
address?: StringFieldUpdateOperationsInput | string
|
|
175226
|
+
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
175227
|
+
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
175228
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
175229
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
175230
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
175231
|
+
created_by?: StringFieldUpdateOperationsInput | string
|
|
175232
|
+
updated_by?: StringFieldUpdateOperationsInput | string
|
|
175233
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
175234
|
+
alias?: NullableStringFieldUpdateOperationsInput | string | null
|
|
175235
|
+
logo?: NullableStringFieldUpdateOperationsInput | string | null
|
|
175236
|
+
job_sequence?: IntFieldUpdateOperationsInput | number
|
|
175237
|
+
employee_sequence?: IntFieldUpdateOperationsInput | number
|
|
175238
|
+
timezone?: StringFieldUpdateOperationsInput | string
|
|
175239
|
+
interviewers?: UserUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
175240
|
+
applications?: ApplicationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
175241
|
+
user_roles?: UserRoleUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
175242
|
+
job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
175243
|
+
job_profiles?: JobProfileUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
175244
|
+
assessment_library?: AssessmentLibraryUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
175245
|
+
assignment_library?: AssignmentLibraryUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
175246
|
+
interviews?: InterviewUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
175247
|
+
assignments?: AssignmentUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
175248
|
+
fit_check?: FitCheckUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
175249
|
+
resumes?: ResumeUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
175250
|
+
approvals?: ApprovalUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
175251
|
+
suggestions?: SuggestionUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
175252
|
+
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
175253
|
+
actions?: ActionUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
175254
|
+
integration_credentials?: IntegrationCredentialUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
175255
|
+
zoho_sync_mappings?: ZohoSyncMappingUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
175256
|
+
assessments?: AssessmentUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
175257
|
+
organisation_configs?: OrganisationConfigUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
175258
|
+
activity_events?: ActivityEventUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
175259
|
+
channel_provider_configs?: ChannelProviderConfigUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
175260
|
+
conversations?: ConversationUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
175261
|
+
communication_messages?: CommunicationMessageUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
175262
|
+
job_application_fields?: JobApplicationFieldUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
175263
|
+
documents?: DocumentUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
175264
|
+
job_application_templates?: JobApplicationTemplateUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
175265
|
+
sources?: SourceUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
175266
|
+
}
|
|
175267
|
+
|
|
173112
175268
|
export type JobDescriptionCreateWithoutEvaluationPlanInput = {
|
|
173113
175269
|
id?: string
|
|
173114
175270
|
status?: $Enums.JobDescriptionStatus
|
|
@@ -174154,6 +176310,7 @@ export namespace Prisma {
|
|
|
174154
176310
|
address: string
|
|
174155
176311
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
174156
176312
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
176313
|
+
send_email?: boolean
|
|
174157
176314
|
created_at?: Date | string
|
|
174158
176315
|
updated_at?: Date | string
|
|
174159
176316
|
created_by: string
|
|
@@ -174190,6 +176347,7 @@ export namespace Prisma {
|
|
|
174190
176347
|
documents?: DocumentCreateNestedManyWithoutOrganisationInput
|
|
174191
176348
|
job_application_templates?: JobApplicationTemplateCreateNestedManyWithoutOrganisationInput
|
|
174192
176349
|
sources?: SourceCreateNestedManyWithoutOrganisationInput
|
|
176350
|
+
evaluation_criteria?: EvaluationCriteriaCreateNestedManyWithoutOrganisationInput
|
|
174193
176351
|
}
|
|
174194
176352
|
|
|
174195
176353
|
export type OrganisationUncheckedCreateWithoutFit_checkInput = {
|
|
@@ -174203,6 +176361,7 @@ export namespace Prisma {
|
|
|
174203
176361
|
address: string
|
|
174204
176362
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
174205
176363
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
176364
|
+
send_email?: boolean
|
|
174206
176365
|
created_at?: Date | string
|
|
174207
176366
|
updated_at?: Date | string
|
|
174208
176367
|
created_by: string
|
|
@@ -174239,6 +176398,7 @@ export namespace Prisma {
|
|
|
174239
176398
|
documents?: DocumentUncheckedCreateNestedManyWithoutOrganisationInput
|
|
174240
176399
|
job_application_templates?: JobApplicationTemplateUncheckedCreateNestedManyWithoutOrganisationInput
|
|
174241
176400
|
sources?: SourceUncheckedCreateNestedManyWithoutOrganisationInput
|
|
176401
|
+
evaluation_criteria?: EvaluationCriteriaUncheckedCreateNestedManyWithoutOrganisationInput
|
|
174242
176402
|
}
|
|
174243
176403
|
|
|
174244
176404
|
export type OrganisationCreateOrConnectWithoutFit_checkInput = {
|
|
@@ -174656,6 +176816,7 @@ export namespace Prisma {
|
|
|
174656
176816
|
address?: StringFieldUpdateOperationsInput | string
|
|
174657
176817
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
174658
176818
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
176819
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
174659
176820
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
174660
176821
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
174661
176822
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -174692,6 +176853,7 @@ export namespace Prisma {
|
|
|
174692
176853
|
documents?: DocumentUpdateManyWithoutOrganisationNestedInput
|
|
174693
176854
|
job_application_templates?: JobApplicationTemplateUpdateManyWithoutOrganisationNestedInput
|
|
174694
176855
|
sources?: SourceUpdateManyWithoutOrganisationNestedInput
|
|
176856
|
+
evaluation_criteria?: EvaluationCriteriaUpdateManyWithoutOrganisationNestedInput
|
|
174695
176857
|
}
|
|
174696
176858
|
|
|
174697
176859
|
export type OrganisationUncheckedUpdateWithoutFit_checkInput = {
|
|
@@ -174705,6 +176867,7 @@ export namespace Prisma {
|
|
|
174705
176867
|
address?: StringFieldUpdateOperationsInput | string
|
|
174706
176868
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
174707
176869
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
176870
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
174708
176871
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
174709
176872
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
174710
176873
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -174741,6 +176904,7 @@ export namespace Prisma {
|
|
|
174741
176904
|
documents?: DocumentUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
174742
176905
|
job_application_templates?: JobApplicationTemplateUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
174743
176906
|
sources?: SourceUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
176907
|
+
evaluation_criteria?: EvaluationCriteriaUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
174744
176908
|
}
|
|
174745
176909
|
|
|
174746
176910
|
export type UserUpsertWithoutFitChecksInput = {
|
|
@@ -175482,6 +177646,7 @@ export namespace Prisma {
|
|
|
175482
177646
|
address: string
|
|
175483
177647
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
175484
177648
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
177649
|
+
send_email?: boolean
|
|
175485
177650
|
created_at?: Date | string
|
|
175486
177651
|
updated_at?: Date | string
|
|
175487
177652
|
created_by: string
|
|
@@ -175518,6 +177683,7 @@ export namespace Prisma {
|
|
|
175518
177683
|
documents?: DocumentCreateNestedManyWithoutOrganisationInput
|
|
175519
177684
|
job_application_templates?: JobApplicationTemplateCreateNestedManyWithoutOrganisationInput
|
|
175520
177685
|
sources?: SourceCreateNestedManyWithoutOrganisationInput
|
|
177686
|
+
evaluation_criteria?: EvaluationCriteriaCreateNestedManyWithoutOrganisationInput
|
|
175521
177687
|
}
|
|
175522
177688
|
|
|
175523
177689
|
export type OrganisationUncheckedCreateWithoutIntegration_credentialsInput = {
|
|
@@ -175531,6 +177697,7 @@ export namespace Prisma {
|
|
|
175531
177697
|
address: string
|
|
175532
177698
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
175533
177699
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
177700
|
+
send_email?: boolean
|
|
175534
177701
|
created_at?: Date | string
|
|
175535
177702
|
updated_at?: Date | string
|
|
175536
177703
|
created_by: string
|
|
@@ -175567,6 +177734,7 @@ export namespace Prisma {
|
|
|
175567
177734
|
documents?: DocumentUncheckedCreateNestedManyWithoutOrganisationInput
|
|
175568
177735
|
job_application_templates?: JobApplicationTemplateUncheckedCreateNestedManyWithoutOrganisationInput
|
|
175569
177736
|
sources?: SourceUncheckedCreateNestedManyWithoutOrganisationInput
|
|
177737
|
+
evaluation_criteria?: EvaluationCriteriaUncheckedCreateNestedManyWithoutOrganisationInput
|
|
175570
177738
|
}
|
|
175571
177739
|
|
|
175572
177740
|
export type OrganisationCreateOrConnectWithoutIntegration_credentialsInput = {
|
|
@@ -175596,6 +177764,7 @@ export namespace Prisma {
|
|
|
175596
177764
|
address?: StringFieldUpdateOperationsInput | string
|
|
175597
177765
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
175598
177766
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
177767
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
175599
177768
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
175600
177769
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
175601
177770
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -175632,6 +177801,7 @@ export namespace Prisma {
|
|
|
175632
177801
|
documents?: DocumentUpdateManyWithoutOrganisationNestedInput
|
|
175633
177802
|
job_application_templates?: JobApplicationTemplateUpdateManyWithoutOrganisationNestedInput
|
|
175634
177803
|
sources?: SourceUpdateManyWithoutOrganisationNestedInput
|
|
177804
|
+
evaluation_criteria?: EvaluationCriteriaUpdateManyWithoutOrganisationNestedInput
|
|
175635
177805
|
}
|
|
175636
177806
|
|
|
175637
177807
|
export type OrganisationUncheckedUpdateWithoutIntegration_credentialsInput = {
|
|
@@ -175645,6 +177815,7 @@ export namespace Prisma {
|
|
|
175645
177815
|
address?: StringFieldUpdateOperationsInput | string
|
|
175646
177816
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
175647
177817
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
177818
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
175648
177819
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
175649
177820
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
175650
177821
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -175681,6 +177852,7 @@ export namespace Prisma {
|
|
|
175681
177852
|
documents?: DocumentUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
175682
177853
|
job_application_templates?: JobApplicationTemplateUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
175683
177854
|
sources?: SourceUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
177855
|
+
evaluation_criteria?: EvaluationCriteriaUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
175684
177856
|
}
|
|
175685
177857
|
|
|
175686
177858
|
export type JobDescriptionCreateWithoutIntegration_job_syncsInput = {
|
|
@@ -175894,6 +178066,7 @@ export namespace Prisma {
|
|
|
175894
178066
|
address: string
|
|
175895
178067
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
175896
178068
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
178069
|
+
send_email?: boolean
|
|
175897
178070
|
created_at?: Date | string
|
|
175898
178071
|
updated_at?: Date | string
|
|
175899
178072
|
created_by: string
|
|
@@ -175930,6 +178103,7 @@ export namespace Prisma {
|
|
|
175930
178103
|
documents?: DocumentCreateNestedManyWithoutOrganisationInput
|
|
175931
178104
|
job_application_templates?: JobApplicationTemplateCreateNestedManyWithoutOrganisationInput
|
|
175932
178105
|
sources?: SourceCreateNestedManyWithoutOrganisationInput
|
|
178106
|
+
evaluation_criteria?: EvaluationCriteriaCreateNestedManyWithoutOrganisationInput
|
|
175933
178107
|
}
|
|
175934
178108
|
|
|
175935
178109
|
export type OrganisationUncheckedCreateWithoutZoho_sync_mappingsInput = {
|
|
@@ -175943,6 +178117,7 @@ export namespace Prisma {
|
|
|
175943
178117
|
address: string
|
|
175944
178118
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
175945
178119
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
178120
|
+
send_email?: boolean
|
|
175946
178121
|
created_at?: Date | string
|
|
175947
178122
|
updated_at?: Date | string
|
|
175948
178123
|
created_by: string
|
|
@@ -175979,6 +178154,7 @@ export namespace Prisma {
|
|
|
175979
178154
|
documents?: DocumentUncheckedCreateNestedManyWithoutOrganisationInput
|
|
175980
178155
|
job_application_templates?: JobApplicationTemplateUncheckedCreateNestedManyWithoutOrganisationInput
|
|
175981
178156
|
sources?: SourceUncheckedCreateNestedManyWithoutOrganisationInput
|
|
178157
|
+
evaluation_criteria?: EvaluationCriteriaUncheckedCreateNestedManyWithoutOrganisationInput
|
|
175982
178158
|
}
|
|
175983
178159
|
|
|
175984
178160
|
export type OrganisationCreateOrConnectWithoutZoho_sync_mappingsInput = {
|
|
@@ -176008,6 +178184,7 @@ export namespace Prisma {
|
|
|
176008
178184
|
address?: StringFieldUpdateOperationsInput | string
|
|
176009
178185
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
176010
178186
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
178187
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
176011
178188
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
176012
178189
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
176013
178190
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -176044,6 +178221,7 @@ export namespace Prisma {
|
|
|
176044
178221
|
documents?: DocumentUpdateManyWithoutOrganisationNestedInput
|
|
176045
178222
|
job_application_templates?: JobApplicationTemplateUpdateManyWithoutOrganisationNestedInput
|
|
176046
178223
|
sources?: SourceUpdateManyWithoutOrganisationNestedInput
|
|
178224
|
+
evaluation_criteria?: EvaluationCriteriaUpdateManyWithoutOrganisationNestedInput
|
|
176047
178225
|
}
|
|
176048
178226
|
|
|
176049
178227
|
export type OrganisationUncheckedUpdateWithoutZoho_sync_mappingsInput = {
|
|
@@ -176057,6 +178235,7 @@ export namespace Prisma {
|
|
|
176057
178235
|
address?: StringFieldUpdateOperationsInput | string
|
|
176058
178236
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
176059
178237
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
178238
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
176060
178239
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
176061
178240
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
176062
178241
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -176093,6 +178272,7 @@ export namespace Prisma {
|
|
|
176093
178272
|
documents?: DocumentUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
176094
178273
|
job_application_templates?: JobApplicationTemplateUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
176095
178274
|
sources?: SourceUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
178275
|
+
evaluation_criteria?: EvaluationCriteriaUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
176096
178276
|
}
|
|
176097
178277
|
|
|
176098
178278
|
export type UserCreateWithoutCandidate_interviewsInput = {
|
|
@@ -176416,6 +178596,7 @@ export namespace Prisma {
|
|
|
176416
178596
|
address: string
|
|
176417
178597
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
176418
178598
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
178599
|
+
send_email?: boolean
|
|
176419
178600
|
created_at?: Date | string
|
|
176420
178601
|
updated_at?: Date | string
|
|
176421
178602
|
created_by: string
|
|
@@ -176452,6 +178633,7 @@ export namespace Prisma {
|
|
|
176452
178633
|
documents?: DocumentCreateNestedManyWithoutOrganisationInput
|
|
176453
178634
|
job_application_templates?: JobApplicationTemplateCreateNestedManyWithoutOrganisationInput
|
|
176454
178635
|
sources?: SourceCreateNestedManyWithoutOrganisationInput
|
|
178636
|
+
evaluation_criteria?: EvaluationCriteriaCreateNestedManyWithoutOrganisationInput
|
|
176455
178637
|
}
|
|
176456
178638
|
|
|
176457
178639
|
export type OrganisationUncheckedCreateWithoutInterviewsInput = {
|
|
@@ -176465,6 +178647,7 @@ export namespace Prisma {
|
|
|
176465
178647
|
address: string
|
|
176466
178648
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
176467
178649
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
178650
|
+
send_email?: boolean
|
|
176468
178651
|
created_at?: Date | string
|
|
176469
178652
|
updated_at?: Date | string
|
|
176470
178653
|
created_by: string
|
|
@@ -176501,6 +178684,7 @@ export namespace Prisma {
|
|
|
176501
178684
|
documents?: DocumentUncheckedCreateNestedManyWithoutOrganisationInput
|
|
176502
178685
|
job_application_templates?: JobApplicationTemplateUncheckedCreateNestedManyWithoutOrganisationInput
|
|
176503
178686
|
sources?: SourceUncheckedCreateNestedManyWithoutOrganisationInput
|
|
178687
|
+
evaluation_criteria?: EvaluationCriteriaUncheckedCreateNestedManyWithoutOrganisationInput
|
|
176504
178688
|
}
|
|
176505
178689
|
|
|
176506
178690
|
export type OrganisationCreateOrConnectWithoutInterviewsInput = {
|
|
@@ -177531,6 +179715,7 @@ export namespace Prisma {
|
|
|
177531
179715
|
address?: StringFieldUpdateOperationsInput | string
|
|
177532
179716
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
177533
179717
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
179718
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
177534
179719
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
177535
179720
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
177536
179721
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -177567,6 +179752,7 @@ export namespace Prisma {
|
|
|
177567
179752
|
documents?: DocumentUpdateManyWithoutOrganisationNestedInput
|
|
177568
179753
|
job_application_templates?: JobApplicationTemplateUpdateManyWithoutOrganisationNestedInput
|
|
177569
179754
|
sources?: SourceUpdateManyWithoutOrganisationNestedInput
|
|
179755
|
+
evaluation_criteria?: EvaluationCriteriaUpdateManyWithoutOrganisationNestedInput
|
|
177570
179756
|
}
|
|
177571
179757
|
|
|
177572
179758
|
export type OrganisationUncheckedUpdateWithoutInterviewsInput = {
|
|
@@ -177580,6 +179766,7 @@ export namespace Prisma {
|
|
|
177580
179766
|
address?: StringFieldUpdateOperationsInput | string
|
|
177581
179767
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
177582
179768
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
179769
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
177583
179770
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
177584
179771
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
177585
179772
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -177616,6 +179803,7 @@ export namespace Prisma {
|
|
|
177616
179803
|
documents?: DocumentUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
177617
179804
|
job_application_templates?: JobApplicationTemplateUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
177618
179805
|
sources?: SourceUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
179806
|
+
evaluation_criteria?: EvaluationCriteriaUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
177619
179807
|
}
|
|
177620
179808
|
|
|
177621
179809
|
export type DocumentUpsertWithoutInterview_recordingInput = {
|
|
@@ -178570,6 +180758,7 @@ export namespace Prisma {
|
|
|
178570
180758
|
address: string
|
|
178571
180759
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
178572
180760
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
180761
|
+
send_email?: boolean
|
|
178573
180762
|
created_at?: Date | string
|
|
178574
180763
|
updated_at?: Date | string
|
|
178575
180764
|
created_by: string
|
|
@@ -178606,6 +180795,7 @@ export namespace Prisma {
|
|
|
178606
180795
|
documents?: DocumentCreateNestedManyWithoutOrganisationInput
|
|
178607
180796
|
job_application_templates?: JobApplicationTemplateCreateNestedManyWithoutOrganisationInput
|
|
178608
180797
|
sources?: SourceCreateNestedManyWithoutOrganisationInput
|
|
180798
|
+
evaluation_criteria?: EvaluationCriteriaCreateNestedManyWithoutOrganisationInput
|
|
178609
180799
|
}
|
|
178610
180800
|
|
|
178611
180801
|
export type OrganisationUncheckedCreateWithoutJob_application_fieldsInput = {
|
|
@@ -178619,6 +180809,7 @@ export namespace Prisma {
|
|
|
178619
180809
|
address: string
|
|
178620
180810
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
178621
180811
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
180812
|
+
send_email?: boolean
|
|
178622
180813
|
created_at?: Date | string
|
|
178623
180814
|
updated_at?: Date | string
|
|
178624
180815
|
created_by: string
|
|
@@ -178655,6 +180846,7 @@ export namespace Prisma {
|
|
|
178655
180846
|
documents?: DocumentUncheckedCreateNestedManyWithoutOrganisationInput
|
|
178656
180847
|
job_application_templates?: JobApplicationTemplateUncheckedCreateNestedManyWithoutOrganisationInput
|
|
178657
180848
|
sources?: SourceUncheckedCreateNestedManyWithoutOrganisationInput
|
|
180849
|
+
evaluation_criteria?: EvaluationCriteriaUncheckedCreateNestedManyWithoutOrganisationInput
|
|
178658
180850
|
}
|
|
178659
180851
|
|
|
178660
180852
|
export type OrganisationCreateOrConnectWithoutJob_application_fieldsInput = {
|
|
@@ -178767,6 +180959,7 @@ export namespace Prisma {
|
|
|
178767
180959
|
address?: StringFieldUpdateOperationsInput | string
|
|
178768
180960
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
178769
180961
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
180962
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
178770
180963
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
178771
180964
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
178772
180965
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -178803,6 +180996,7 @@ export namespace Prisma {
|
|
|
178803
180996
|
documents?: DocumentUpdateManyWithoutOrganisationNestedInput
|
|
178804
180997
|
job_application_templates?: JobApplicationTemplateUpdateManyWithoutOrganisationNestedInput
|
|
178805
180998
|
sources?: SourceUpdateManyWithoutOrganisationNestedInput
|
|
180999
|
+
evaluation_criteria?: EvaluationCriteriaUpdateManyWithoutOrganisationNestedInput
|
|
178806
181000
|
}
|
|
178807
181001
|
|
|
178808
181002
|
export type OrganisationUncheckedUpdateWithoutJob_application_fieldsInput = {
|
|
@@ -178816,6 +181010,7 @@ export namespace Prisma {
|
|
|
178816
181010
|
address?: StringFieldUpdateOperationsInput | string
|
|
178817
181011
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
178818
181012
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
181013
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
178819
181014
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
178820
181015
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
178821
181016
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -178852,6 +181047,7 @@ export namespace Prisma {
|
|
|
178852
181047
|
documents?: DocumentUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
178853
181048
|
job_application_templates?: JobApplicationTemplateUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
178854
181049
|
sources?: SourceUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
181050
|
+
evaluation_criteria?: EvaluationCriteriaUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
178855
181051
|
}
|
|
178856
181052
|
|
|
178857
181053
|
export type JobApplicationTemplateUpsertWithoutFieldsInput = {
|
|
@@ -179300,6 +181496,7 @@ export namespace Prisma {
|
|
|
179300
181496
|
address: string
|
|
179301
181497
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
179302
181498
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
181499
|
+
send_email?: boolean
|
|
179303
181500
|
created_at?: Date | string
|
|
179304
181501
|
updated_at?: Date | string
|
|
179305
181502
|
created_by: string
|
|
@@ -179336,6 +181533,7 @@ export namespace Prisma {
|
|
|
179336
181533
|
job_application_fields?: JobApplicationFieldCreateNestedManyWithoutOrganisationInput
|
|
179337
181534
|
documents?: DocumentCreateNestedManyWithoutOrganisationInput
|
|
179338
181535
|
sources?: SourceCreateNestedManyWithoutOrganisationInput
|
|
181536
|
+
evaluation_criteria?: EvaluationCriteriaCreateNestedManyWithoutOrganisationInput
|
|
179339
181537
|
}
|
|
179340
181538
|
|
|
179341
181539
|
export type OrganisationUncheckedCreateWithoutJob_application_templatesInput = {
|
|
@@ -179349,6 +181547,7 @@ export namespace Prisma {
|
|
|
179349
181547
|
address: string
|
|
179350
181548
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
179351
181549
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
181550
|
+
send_email?: boolean
|
|
179352
181551
|
created_at?: Date | string
|
|
179353
181552
|
updated_at?: Date | string
|
|
179354
181553
|
created_by: string
|
|
@@ -179385,6 +181584,7 @@ export namespace Prisma {
|
|
|
179385
181584
|
job_application_fields?: JobApplicationFieldUncheckedCreateNestedManyWithoutOrganisationInput
|
|
179386
181585
|
documents?: DocumentUncheckedCreateNestedManyWithoutOrganisationInput
|
|
179387
181586
|
sources?: SourceUncheckedCreateNestedManyWithoutOrganisationInput
|
|
181587
|
+
evaluation_criteria?: EvaluationCriteriaUncheckedCreateNestedManyWithoutOrganisationInput
|
|
179388
181588
|
}
|
|
179389
181589
|
|
|
179390
181590
|
export type OrganisationCreateOrConnectWithoutJob_application_templatesInput = {
|
|
@@ -179555,6 +181755,7 @@ export namespace Prisma {
|
|
|
179555
181755
|
address?: StringFieldUpdateOperationsInput | string
|
|
179556
181756
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
179557
181757
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
181758
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
179558
181759
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
179559
181760
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
179560
181761
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -179591,6 +181792,7 @@ export namespace Prisma {
|
|
|
179591
181792
|
job_application_fields?: JobApplicationFieldUpdateManyWithoutOrganisationNestedInput
|
|
179592
181793
|
documents?: DocumentUpdateManyWithoutOrganisationNestedInput
|
|
179593
181794
|
sources?: SourceUpdateManyWithoutOrganisationNestedInput
|
|
181795
|
+
evaluation_criteria?: EvaluationCriteriaUpdateManyWithoutOrganisationNestedInput
|
|
179594
181796
|
}
|
|
179595
181797
|
|
|
179596
181798
|
export type OrganisationUncheckedUpdateWithoutJob_application_templatesInput = {
|
|
@@ -179604,6 +181806,7 @@ export namespace Prisma {
|
|
|
179604
181806
|
address?: StringFieldUpdateOperationsInput | string
|
|
179605
181807
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
179606
181808
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
181809
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
179607
181810
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
179608
181811
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
179609
181812
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -179640,6 +181843,7 @@ export namespace Prisma {
|
|
|
179640
181843
|
job_application_fields?: JobApplicationFieldUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
179641
181844
|
documents?: DocumentUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
179642
181845
|
sources?: SourceUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
181846
|
+
evaluation_criteria?: EvaluationCriteriaUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
179643
181847
|
}
|
|
179644
181848
|
|
|
179645
181849
|
export type JobDescriptionUpsertWithoutJob_application_templateInput = {
|
|
@@ -179975,6 +182179,7 @@ export namespace Prisma {
|
|
|
179975
182179
|
address: string
|
|
179976
182180
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
179977
182181
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
182182
|
+
send_email?: boolean
|
|
179978
182183
|
created_at?: Date | string
|
|
179979
182184
|
updated_at?: Date | string
|
|
179980
182185
|
created_by: string
|
|
@@ -180011,6 +182216,7 @@ export namespace Prisma {
|
|
|
180011
182216
|
documents?: DocumentCreateNestedManyWithoutOrganisationInput
|
|
180012
182217
|
job_application_templates?: JobApplicationTemplateCreateNestedManyWithoutOrganisationInput
|
|
180013
182218
|
sources?: SourceCreateNestedManyWithoutOrganisationInput
|
|
182219
|
+
evaluation_criteria?: EvaluationCriteriaCreateNestedManyWithoutOrganisationInput
|
|
180014
182220
|
}
|
|
180015
182221
|
|
|
180016
182222
|
export type OrganisationUncheckedCreateWithoutJob_descriptionsInput = {
|
|
@@ -180024,6 +182230,7 @@ export namespace Prisma {
|
|
|
180024
182230
|
address: string
|
|
180025
182231
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
180026
182232
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
182233
|
+
send_email?: boolean
|
|
180027
182234
|
created_at?: Date | string
|
|
180028
182235
|
updated_at?: Date | string
|
|
180029
182236
|
created_by: string
|
|
@@ -180060,6 +182267,7 @@ export namespace Prisma {
|
|
|
180060
182267
|
documents?: DocumentUncheckedCreateNestedManyWithoutOrganisationInput
|
|
180061
182268
|
job_application_templates?: JobApplicationTemplateUncheckedCreateNestedManyWithoutOrganisationInput
|
|
180062
182269
|
sources?: SourceUncheckedCreateNestedManyWithoutOrganisationInput
|
|
182270
|
+
evaluation_criteria?: EvaluationCriteriaUncheckedCreateNestedManyWithoutOrganisationInput
|
|
180063
182271
|
}
|
|
180064
182272
|
|
|
180065
182273
|
export type OrganisationCreateOrConnectWithoutJob_descriptionsInput = {
|
|
@@ -181617,6 +183825,7 @@ export namespace Prisma {
|
|
|
181617
183825
|
address?: StringFieldUpdateOperationsInput | string
|
|
181618
183826
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
181619
183827
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
183828
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
181620
183829
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
181621
183830
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
181622
183831
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -181653,6 +183862,7 @@ export namespace Prisma {
|
|
|
181653
183862
|
documents?: DocumentUpdateManyWithoutOrganisationNestedInput
|
|
181654
183863
|
job_application_templates?: JobApplicationTemplateUpdateManyWithoutOrganisationNestedInput
|
|
181655
183864
|
sources?: SourceUpdateManyWithoutOrganisationNestedInput
|
|
183865
|
+
evaluation_criteria?: EvaluationCriteriaUpdateManyWithoutOrganisationNestedInput
|
|
181656
183866
|
}
|
|
181657
183867
|
|
|
181658
183868
|
export type OrganisationUncheckedUpdateWithoutJob_descriptionsInput = {
|
|
@@ -181666,6 +183876,7 @@ export namespace Prisma {
|
|
|
181666
183876
|
address?: StringFieldUpdateOperationsInput | string
|
|
181667
183877
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
181668
183878
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
183879
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
181669
183880
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
181670
183881
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
181671
183882
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -181702,6 +183913,7 @@ export namespace Prisma {
|
|
|
181702
183913
|
documents?: DocumentUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
181703
183914
|
job_application_templates?: JobApplicationTemplateUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
181704
183915
|
sources?: SourceUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
183916
|
+
evaluation_criteria?: EvaluationCriteriaUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
181705
183917
|
}
|
|
181706
183918
|
|
|
181707
183919
|
export type DocumentUpsertWithoutJob_description_sourceInput = {
|
|
@@ -182599,6 +184811,7 @@ export namespace Prisma {
|
|
|
182599
184811
|
address: string
|
|
182600
184812
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
182601
184813
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
184814
|
+
send_email?: boolean
|
|
182602
184815
|
created_at?: Date | string
|
|
182603
184816
|
updated_at?: Date | string
|
|
182604
184817
|
created_by: string
|
|
@@ -182635,6 +184848,7 @@ export namespace Prisma {
|
|
|
182635
184848
|
documents?: DocumentCreateNestedManyWithoutOrganisationInput
|
|
182636
184849
|
job_application_templates?: JobApplicationTemplateCreateNestedManyWithoutOrganisationInput
|
|
182637
184850
|
sources?: SourceCreateNestedManyWithoutOrganisationInput
|
|
184851
|
+
evaluation_criteria?: EvaluationCriteriaCreateNestedManyWithoutOrganisationInput
|
|
182638
184852
|
}
|
|
182639
184853
|
|
|
182640
184854
|
export type OrganisationUncheckedCreateWithoutJob_profilesInput = {
|
|
@@ -182648,6 +184862,7 @@ export namespace Prisma {
|
|
|
182648
184862
|
address: string
|
|
182649
184863
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
182650
184864
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
184865
|
+
send_email?: boolean
|
|
182651
184866
|
created_at?: Date | string
|
|
182652
184867
|
updated_at?: Date | string
|
|
182653
184868
|
created_by: string
|
|
@@ -182684,6 +184899,7 @@ export namespace Prisma {
|
|
|
182684
184899
|
documents?: DocumentUncheckedCreateNestedManyWithoutOrganisationInput
|
|
182685
184900
|
job_application_templates?: JobApplicationTemplateUncheckedCreateNestedManyWithoutOrganisationInput
|
|
182686
184901
|
sources?: SourceUncheckedCreateNestedManyWithoutOrganisationInput
|
|
184902
|
+
evaluation_criteria?: EvaluationCriteriaUncheckedCreateNestedManyWithoutOrganisationInput
|
|
182687
184903
|
}
|
|
182688
184904
|
|
|
182689
184905
|
export type OrganisationCreateOrConnectWithoutJob_profilesInput = {
|
|
@@ -183280,6 +185496,7 @@ export namespace Prisma {
|
|
|
183280
185496
|
address?: StringFieldUpdateOperationsInput | string
|
|
183281
185497
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
183282
185498
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
185499
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
183283
185500
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
183284
185501
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
183285
185502
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -183316,6 +185533,7 @@ export namespace Prisma {
|
|
|
183316
185533
|
documents?: DocumentUpdateManyWithoutOrganisationNestedInput
|
|
183317
185534
|
job_application_templates?: JobApplicationTemplateUpdateManyWithoutOrganisationNestedInput
|
|
183318
185535
|
sources?: SourceUpdateManyWithoutOrganisationNestedInput
|
|
185536
|
+
evaluation_criteria?: EvaluationCriteriaUpdateManyWithoutOrganisationNestedInput
|
|
183319
185537
|
}
|
|
183320
185538
|
|
|
183321
185539
|
export type OrganisationUncheckedUpdateWithoutJob_profilesInput = {
|
|
@@ -183329,6 +185547,7 @@ export namespace Prisma {
|
|
|
183329
185547
|
address?: StringFieldUpdateOperationsInput | string
|
|
183330
185548
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
183331
185549
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
185550
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
183332
185551
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
183333
185552
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
183334
185553
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -183365,6 +185584,7 @@ export namespace Prisma {
|
|
|
183365
185584
|
documents?: DocumentUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
183366
185585
|
job_application_templates?: JobApplicationTemplateUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
183367
185586
|
sources?: SourceUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
185587
|
+
evaluation_criteria?: EvaluationCriteriaUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
183368
185588
|
}
|
|
183369
185589
|
|
|
183370
185590
|
export type UserUpsertWithoutHiring_manager_job_profilesInput = {
|
|
@@ -185650,6 +187870,7 @@ export namespace Prisma {
|
|
|
185650
187870
|
address: string
|
|
185651
187871
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
185652
187872
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
187873
|
+
send_email?: boolean
|
|
185653
187874
|
created_at?: Date | string
|
|
185654
187875
|
updated_at?: Date | string
|
|
185655
187876
|
created_by: string
|
|
@@ -185686,6 +187907,7 @@ export namespace Prisma {
|
|
|
185686
187907
|
documents?: DocumentCreateNestedManyWithoutOrganisationInput
|
|
185687
187908
|
job_application_templates?: JobApplicationTemplateCreateNestedManyWithoutOrganisationInput
|
|
185688
187909
|
sources?: SourceCreateNestedManyWithoutOrganisationInput
|
|
187910
|
+
evaluation_criteria?: EvaluationCriteriaCreateNestedManyWithoutOrganisationInput
|
|
185689
187911
|
}
|
|
185690
187912
|
|
|
185691
187913
|
export type OrganisationUncheckedCreateWithoutOngoing_evaluationsInput = {
|
|
@@ -185699,6 +187921,7 @@ export namespace Prisma {
|
|
|
185699
187921
|
address: string
|
|
185700
187922
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
185701
187923
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
187924
|
+
send_email?: boolean
|
|
185702
187925
|
created_at?: Date | string
|
|
185703
187926
|
updated_at?: Date | string
|
|
185704
187927
|
created_by: string
|
|
@@ -185735,6 +187958,7 @@ export namespace Prisma {
|
|
|
185735
187958
|
documents?: DocumentUncheckedCreateNestedManyWithoutOrganisationInput
|
|
185736
187959
|
job_application_templates?: JobApplicationTemplateUncheckedCreateNestedManyWithoutOrganisationInput
|
|
185737
187960
|
sources?: SourceUncheckedCreateNestedManyWithoutOrganisationInput
|
|
187961
|
+
evaluation_criteria?: EvaluationCriteriaUncheckedCreateNestedManyWithoutOrganisationInput
|
|
185738
187962
|
}
|
|
185739
187963
|
|
|
185740
187964
|
export type OrganisationCreateOrConnectWithoutOngoing_evaluationsInput = {
|
|
@@ -186474,6 +188698,7 @@ export namespace Prisma {
|
|
|
186474
188698
|
address?: StringFieldUpdateOperationsInput | string
|
|
186475
188699
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
186476
188700
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
188701
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
186477
188702
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
186478
188703
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
186479
188704
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -186510,6 +188735,7 @@ export namespace Prisma {
|
|
|
186510
188735
|
documents?: DocumentUpdateManyWithoutOrganisationNestedInput
|
|
186511
188736
|
job_application_templates?: JobApplicationTemplateUpdateManyWithoutOrganisationNestedInput
|
|
186512
188737
|
sources?: SourceUpdateManyWithoutOrganisationNestedInput
|
|
188738
|
+
evaluation_criteria?: EvaluationCriteriaUpdateManyWithoutOrganisationNestedInput
|
|
186513
188739
|
}
|
|
186514
188740
|
|
|
186515
188741
|
export type OrganisationUncheckedUpdateWithoutOngoing_evaluationsInput = {
|
|
@@ -186523,6 +188749,7 @@ export namespace Prisma {
|
|
|
186523
188749
|
address?: StringFieldUpdateOperationsInput | string
|
|
186524
188750
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
186525
188751
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
188752
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
186526
188753
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
186527
188754
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
186528
188755
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -186559,6 +188786,7 @@ export namespace Prisma {
|
|
|
186559
188786
|
documents?: DocumentUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
186560
188787
|
job_application_templates?: JobApplicationTemplateUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
186561
188788
|
sources?: SourceUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
188789
|
+
evaluation_criteria?: EvaluationCriteriaUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
186562
188790
|
}
|
|
186563
188791
|
|
|
186564
188792
|
export type EvaluationPlanUpsertWithoutOngoing_evaluationsInput = {
|
|
@@ -188485,6 +190713,48 @@ export namespace Prisma {
|
|
|
188485
190713
|
skipDuplicates?: boolean
|
|
188486
190714
|
}
|
|
188487
190715
|
|
|
190716
|
+
export type EvaluationCriteriaCreateWithoutOrganisationInput = {
|
|
190717
|
+
id?: string
|
|
190718
|
+
scope: $Enums.CriteriaScope
|
|
190719
|
+
key: string
|
|
190720
|
+
criteria?: string | null
|
|
190721
|
+
description?: string | null
|
|
190722
|
+
weightage?: number | null
|
|
190723
|
+
is_elimination?: boolean
|
|
190724
|
+
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
190725
|
+
created_by: string
|
|
190726
|
+
updated_by: string
|
|
190727
|
+
created_at?: Date | string
|
|
190728
|
+
updated_at?: Date | string
|
|
190729
|
+
is_active?: boolean
|
|
190730
|
+
}
|
|
190731
|
+
|
|
190732
|
+
export type EvaluationCriteriaUncheckedCreateWithoutOrganisationInput = {
|
|
190733
|
+
id?: string
|
|
190734
|
+
scope: $Enums.CriteriaScope
|
|
190735
|
+
key: string
|
|
190736
|
+
criteria?: string | null
|
|
190737
|
+
description?: string | null
|
|
190738
|
+
weightage?: number | null
|
|
190739
|
+
is_elimination?: boolean
|
|
190740
|
+
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
190741
|
+
created_by: string
|
|
190742
|
+
updated_by: string
|
|
190743
|
+
created_at?: Date | string
|
|
190744
|
+
updated_at?: Date | string
|
|
190745
|
+
is_active?: boolean
|
|
190746
|
+
}
|
|
190747
|
+
|
|
190748
|
+
export type EvaluationCriteriaCreateOrConnectWithoutOrganisationInput = {
|
|
190749
|
+
where: EvaluationCriteriaWhereUniqueInput
|
|
190750
|
+
create: XOR<EvaluationCriteriaCreateWithoutOrganisationInput, EvaluationCriteriaUncheckedCreateWithoutOrganisationInput>
|
|
190751
|
+
}
|
|
190752
|
+
|
|
190753
|
+
export type EvaluationCriteriaCreateManyOrganisationInputEnvelope = {
|
|
190754
|
+
data: EvaluationCriteriaCreateManyOrganisationInput | EvaluationCriteriaCreateManyOrganisationInput[]
|
|
190755
|
+
skipDuplicates?: boolean
|
|
190756
|
+
}
|
|
190757
|
+
|
|
188488
190758
|
export type UserUpsertWithWhereUniqueWithoutOrganisationInput = {
|
|
188489
190759
|
where: UserWhereUniqueInput
|
|
188490
190760
|
update: XOR<UserUpdateWithoutOrganisationInput, UserUncheckedUpdateWithoutOrganisationInput>
|
|
@@ -189143,6 +191413,42 @@ export namespace Prisma {
|
|
|
189143
191413
|
updated_at?: DateTimeFilter<"Source"> | Date | string
|
|
189144
191414
|
}
|
|
189145
191415
|
|
|
191416
|
+
export type EvaluationCriteriaUpsertWithWhereUniqueWithoutOrganisationInput = {
|
|
191417
|
+
where: EvaluationCriteriaWhereUniqueInput
|
|
191418
|
+
update: XOR<EvaluationCriteriaUpdateWithoutOrganisationInput, EvaluationCriteriaUncheckedUpdateWithoutOrganisationInput>
|
|
191419
|
+
create: XOR<EvaluationCriteriaCreateWithoutOrganisationInput, EvaluationCriteriaUncheckedCreateWithoutOrganisationInput>
|
|
191420
|
+
}
|
|
191421
|
+
|
|
191422
|
+
export type EvaluationCriteriaUpdateWithWhereUniqueWithoutOrganisationInput = {
|
|
191423
|
+
where: EvaluationCriteriaWhereUniqueInput
|
|
191424
|
+
data: XOR<EvaluationCriteriaUpdateWithoutOrganisationInput, EvaluationCriteriaUncheckedUpdateWithoutOrganisationInput>
|
|
191425
|
+
}
|
|
191426
|
+
|
|
191427
|
+
export type EvaluationCriteriaUpdateManyWithWhereWithoutOrganisationInput = {
|
|
191428
|
+
where: EvaluationCriteriaScalarWhereInput
|
|
191429
|
+
data: XOR<EvaluationCriteriaUpdateManyMutationInput, EvaluationCriteriaUncheckedUpdateManyWithoutOrganisationInput>
|
|
191430
|
+
}
|
|
191431
|
+
|
|
191432
|
+
export type EvaluationCriteriaScalarWhereInput = {
|
|
191433
|
+
AND?: EvaluationCriteriaScalarWhereInput | EvaluationCriteriaScalarWhereInput[]
|
|
191434
|
+
OR?: EvaluationCriteriaScalarWhereInput[]
|
|
191435
|
+
NOT?: EvaluationCriteriaScalarWhereInput | EvaluationCriteriaScalarWhereInput[]
|
|
191436
|
+
id?: StringFilter<"EvaluationCriteria"> | string
|
|
191437
|
+
organisation_id?: StringNullableFilter<"EvaluationCriteria"> | string | null
|
|
191438
|
+
scope?: EnumCriteriaScopeFilter<"EvaluationCriteria"> | $Enums.CriteriaScope
|
|
191439
|
+
key?: StringFilter<"EvaluationCriteria"> | string
|
|
191440
|
+
criteria?: StringNullableFilter<"EvaluationCriteria"> | string | null
|
|
191441
|
+
description?: StringNullableFilter<"EvaluationCriteria"> | string | null
|
|
191442
|
+
weightage?: FloatNullableFilter<"EvaluationCriteria"> | number | null
|
|
191443
|
+
is_elimination?: BoolFilter<"EvaluationCriteria"> | boolean
|
|
191444
|
+
metadata?: JsonNullableFilter<"EvaluationCriteria">
|
|
191445
|
+
created_by?: StringFilter<"EvaluationCriteria"> | string
|
|
191446
|
+
updated_by?: StringFilter<"EvaluationCriteria"> | string
|
|
191447
|
+
created_at?: DateTimeFilter<"EvaluationCriteria"> | Date | string
|
|
191448
|
+
updated_at?: DateTimeFilter<"EvaluationCriteria"> | Date | string
|
|
191449
|
+
is_active?: BoolFilter<"EvaluationCriteria"> | boolean
|
|
191450
|
+
}
|
|
191451
|
+
|
|
189146
191452
|
export type OrganisationCreateWithoutOrganisation_configsInput = {
|
|
189147
191453
|
id?: string
|
|
189148
191454
|
name: string
|
|
@@ -189154,6 +191460,7 @@ export namespace Prisma {
|
|
|
189154
191460
|
address: string
|
|
189155
191461
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
189156
191462
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
191463
|
+
send_email?: boolean
|
|
189157
191464
|
created_at?: Date | string
|
|
189158
191465
|
updated_at?: Date | string
|
|
189159
191466
|
created_by: string
|
|
@@ -189190,6 +191497,7 @@ export namespace Prisma {
|
|
|
189190
191497
|
documents?: DocumentCreateNestedManyWithoutOrganisationInput
|
|
189191
191498
|
job_application_templates?: JobApplicationTemplateCreateNestedManyWithoutOrganisationInput
|
|
189192
191499
|
sources?: SourceCreateNestedManyWithoutOrganisationInput
|
|
191500
|
+
evaluation_criteria?: EvaluationCriteriaCreateNestedManyWithoutOrganisationInput
|
|
189193
191501
|
}
|
|
189194
191502
|
|
|
189195
191503
|
export type OrganisationUncheckedCreateWithoutOrganisation_configsInput = {
|
|
@@ -189203,6 +191511,7 @@ export namespace Prisma {
|
|
|
189203
191511
|
address: string
|
|
189204
191512
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
189205
191513
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
191514
|
+
send_email?: boolean
|
|
189206
191515
|
created_at?: Date | string
|
|
189207
191516
|
updated_at?: Date | string
|
|
189208
191517
|
created_by: string
|
|
@@ -189239,6 +191548,7 @@ export namespace Prisma {
|
|
|
189239
191548
|
documents?: DocumentUncheckedCreateNestedManyWithoutOrganisationInput
|
|
189240
191549
|
job_application_templates?: JobApplicationTemplateUncheckedCreateNestedManyWithoutOrganisationInput
|
|
189241
191550
|
sources?: SourceUncheckedCreateNestedManyWithoutOrganisationInput
|
|
191551
|
+
evaluation_criteria?: EvaluationCriteriaUncheckedCreateNestedManyWithoutOrganisationInput
|
|
189242
191552
|
}
|
|
189243
191553
|
|
|
189244
191554
|
export type OrganisationCreateOrConnectWithoutOrganisation_configsInput = {
|
|
@@ -189268,6 +191578,7 @@ export namespace Prisma {
|
|
|
189268
191578
|
address?: StringFieldUpdateOperationsInput | string
|
|
189269
191579
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
189270
191580
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
191581
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
189271
191582
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
189272
191583
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
189273
191584
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -189304,6 +191615,7 @@ export namespace Prisma {
|
|
|
189304
191615
|
documents?: DocumentUpdateManyWithoutOrganisationNestedInput
|
|
189305
191616
|
job_application_templates?: JobApplicationTemplateUpdateManyWithoutOrganisationNestedInput
|
|
189306
191617
|
sources?: SourceUpdateManyWithoutOrganisationNestedInput
|
|
191618
|
+
evaluation_criteria?: EvaluationCriteriaUpdateManyWithoutOrganisationNestedInput
|
|
189307
191619
|
}
|
|
189308
191620
|
|
|
189309
191621
|
export type OrganisationUncheckedUpdateWithoutOrganisation_configsInput = {
|
|
@@ -189317,6 +191629,7 @@ export namespace Prisma {
|
|
|
189317
191629
|
address?: StringFieldUpdateOperationsInput | string
|
|
189318
191630
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
189319
191631
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
191632
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
189320
191633
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
189321
191634
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
189322
191635
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -189353,6 +191666,7 @@ export namespace Prisma {
|
|
|
189353
191666
|
documents?: DocumentUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
189354
191667
|
job_application_templates?: JobApplicationTemplateUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
189355
191668
|
sources?: SourceUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
191669
|
+
evaluation_criteria?: EvaluationCriteriaUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
189356
191670
|
}
|
|
189357
191671
|
|
|
189358
191672
|
export type UserCreateWithoutPermissionInput = {
|
|
@@ -190988,6 +193302,7 @@ export namespace Prisma {
|
|
|
190988
193302
|
address: string
|
|
190989
193303
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
190990
193304
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
193305
|
+
send_email?: boolean
|
|
190991
193306
|
created_at?: Date | string
|
|
190992
193307
|
updated_at?: Date | string
|
|
190993
193308
|
created_by: string
|
|
@@ -191024,6 +193339,7 @@ export namespace Prisma {
|
|
|
191024
193339
|
documents?: DocumentCreateNestedManyWithoutOrganisationInput
|
|
191025
193340
|
job_application_templates?: JobApplicationTemplateCreateNestedManyWithoutOrganisationInput
|
|
191026
193341
|
sources?: SourceCreateNestedManyWithoutOrganisationInput
|
|
193342
|
+
evaluation_criteria?: EvaluationCriteriaCreateNestedManyWithoutOrganisationInput
|
|
191027
193343
|
}
|
|
191028
193344
|
|
|
191029
193345
|
export type OrganisationUncheckedCreateWithoutResumesInput = {
|
|
@@ -191037,6 +193353,7 @@ export namespace Prisma {
|
|
|
191037
193353
|
address: string
|
|
191038
193354
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
191039
193355
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
193356
|
+
send_email?: boolean
|
|
191040
193357
|
created_at?: Date | string
|
|
191041
193358
|
updated_at?: Date | string
|
|
191042
193359
|
created_by: string
|
|
@@ -191073,6 +193390,7 @@ export namespace Prisma {
|
|
|
191073
193390
|
documents?: DocumentUncheckedCreateNestedManyWithoutOrganisationInput
|
|
191074
193391
|
job_application_templates?: JobApplicationTemplateUncheckedCreateNestedManyWithoutOrganisationInput
|
|
191075
193392
|
sources?: SourceUncheckedCreateNestedManyWithoutOrganisationInput
|
|
193393
|
+
evaluation_criteria?: EvaluationCriteriaUncheckedCreateNestedManyWithoutOrganisationInput
|
|
191076
193394
|
}
|
|
191077
193395
|
|
|
191078
193396
|
export type OrganisationCreateOrConnectWithoutResumesInput = {
|
|
@@ -191939,6 +194257,7 @@ export namespace Prisma {
|
|
|
191939
194257
|
address?: StringFieldUpdateOperationsInput | string
|
|
191940
194258
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
191941
194259
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
194260
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
191942
194261
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
191943
194262
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
191944
194263
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -191975,6 +194294,7 @@ export namespace Prisma {
|
|
|
191975
194294
|
documents?: DocumentUpdateManyWithoutOrganisationNestedInput
|
|
191976
194295
|
job_application_templates?: JobApplicationTemplateUpdateManyWithoutOrganisationNestedInput
|
|
191977
194296
|
sources?: SourceUpdateManyWithoutOrganisationNestedInput
|
|
194297
|
+
evaluation_criteria?: EvaluationCriteriaUpdateManyWithoutOrganisationNestedInput
|
|
191978
194298
|
}
|
|
191979
194299
|
|
|
191980
194300
|
export type OrganisationUncheckedUpdateWithoutResumesInput = {
|
|
@@ -191988,6 +194308,7 @@ export namespace Prisma {
|
|
|
191988
194308
|
address?: StringFieldUpdateOperationsInput | string
|
|
191989
194309
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
191990
194310
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
194311
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
191991
194312
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
191992
194313
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
191993
194314
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -192024,6 +194345,7 @@ export namespace Prisma {
|
|
|
192024
194345
|
documents?: DocumentUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
192025
194346
|
job_application_templates?: JobApplicationTemplateUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
192026
194347
|
sources?: SourceUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
194348
|
+
evaluation_criteria?: EvaluationCriteriaUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
192027
194349
|
}
|
|
192028
194350
|
|
|
192029
194351
|
export type JobDescriptionUpsertWithoutResumesInput = {
|
|
@@ -192538,6 +194860,7 @@ export namespace Prisma {
|
|
|
192538
194860
|
address: string
|
|
192539
194861
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
192540
194862
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
194863
|
+
send_email?: boolean
|
|
192541
194864
|
created_at?: Date | string
|
|
192542
194865
|
updated_at?: Date | string
|
|
192543
194866
|
created_by: string
|
|
@@ -192574,6 +194897,7 @@ export namespace Prisma {
|
|
|
192574
194897
|
job_application_fields?: JobApplicationFieldCreateNestedManyWithoutOrganisationInput
|
|
192575
194898
|
documents?: DocumentCreateNestedManyWithoutOrganisationInput
|
|
192576
194899
|
job_application_templates?: JobApplicationTemplateCreateNestedManyWithoutOrganisationInput
|
|
194900
|
+
evaluation_criteria?: EvaluationCriteriaCreateNestedManyWithoutOrganisationInput
|
|
192577
194901
|
}
|
|
192578
194902
|
|
|
192579
194903
|
export type OrganisationUncheckedCreateWithoutSourcesInput = {
|
|
@@ -192587,6 +194911,7 @@ export namespace Prisma {
|
|
|
192587
194911
|
address: string
|
|
192588
194912
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
192589
194913
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
194914
|
+
send_email?: boolean
|
|
192590
194915
|
created_at?: Date | string
|
|
192591
194916
|
updated_at?: Date | string
|
|
192592
194917
|
created_by: string
|
|
@@ -192623,6 +194948,7 @@ export namespace Prisma {
|
|
|
192623
194948
|
job_application_fields?: JobApplicationFieldUncheckedCreateNestedManyWithoutOrganisationInput
|
|
192624
194949
|
documents?: DocumentUncheckedCreateNestedManyWithoutOrganisationInput
|
|
192625
194950
|
job_application_templates?: JobApplicationTemplateUncheckedCreateNestedManyWithoutOrganisationInput
|
|
194951
|
+
evaluation_criteria?: EvaluationCriteriaUncheckedCreateNestedManyWithoutOrganisationInput
|
|
192626
194952
|
}
|
|
192627
194953
|
|
|
192628
194954
|
export type OrganisationCreateOrConnectWithoutSourcesInput = {
|
|
@@ -192809,6 +195135,7 @@ export namespace Prisma {
|
|
|
192809
195135
|
address?: StringFieldUpdateOperationsInput | string
|
|
192810
195136
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
192811
195137
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
195138
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
192812
195139
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
192813
195140
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
192814
195141
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -192845,6 +195172,7 @@ export namespace Prisma {
|
|
|
192845
195172
|
job_application_fields?: JobApplicationFieldUpdateManyWithoutOrganisationNestedInput
|
|
192846
195173
|
documents?: DocumentUpdateManyWithoutOrganisationNestedInput
|
|
192847
195174
|
job_application_templates?: JobApplicationTemplateUpdateManyWithoutOrganisationNestedInput
|
|
195175
|
+
evaluation_criteria?: EvaluationCriteriaUpdateManyWithoutOrganisationNestedInput
|
|
192848
195176
|
}
|
|
192849
195177
|
|
|
192850
195178
|
export type OrganisationUncheckedUpdateWithoutSourcesInput = {
|
|
@@ -192858,6 +195186,7 @@ export namespace Prisma {
|
|
|
192858
195186
|
address?: StringFieldUpdateOperationsInput | string
|
|
192859
195187
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
192860
195188
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
195189
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
192861
195190
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
192862
195191
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
192863
195192
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -192894,6 +195223,7 @@ export namespace Prisma {
|
|
|
192894
195223
|
job_application_fields?: JobApplicationFieldUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
192895
195224
|
documents?: DocumentUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
192896
195225
|
job_application_templates?: JobApplicationTemplateUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
195226
|
+
evaluation_criteria?: EvaluationCriteriaUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
192897
195227
|
}
|
|
192898
195228
|
|
|
192899
195229
|
export type SourceUpsertWithoutChildrenInput = {
|
|
@@ -193137,6 +195467,7 @@ export namespace Prisma {
|
|
|
193137
195467
|
address: string
|
|
193138
195468
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
193139
195469
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
195470
|
+
send_email?: boolean
|
|
193140
195471
|
created_at?: Date | string
|
|
193141
195472
|
updated_at?: Date | string
|
|
193142
195473
|
created_by: string
|
|
@@ -193173,6 +195504,7 @@ export namespace Prisma {
|
|
|
193173
195504
|
documents?: DocumentCreateNestedManyWithoutOrganisationInput
|
|
193174
195505
|
job_application_templates?: JobApplicationTemplateCreateNestedManyWithoutOrganisationInput
|
|
193175
195506
|
sources?: SourceCreateNestedManyWithoutOrganisationInput
|
|
195507
|
+
evaluation_criteria?: EvaluationCriteriaCreateNestedManyWithoutOrganisationInput
|
|
193176
195508
|
}
|
|
193177
195509
|
|
|
193178
195510
|
export type OrganisationUncheckedCreateWithoutSuggestionsInput = {
|
|
@@ -193186,6 +195518,7 @@ export namespace Prisma {
|
|
|
193186
195518
|
address: string
|
|
193187
195519
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
193188
195520
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
195521
|
+
send_email?: boolean
|
|
193189
195522
|
created_at?: Date | string
|
|
193190
195523
|
updated_at?: Date | string
|
|
193191
195524
|
created_by: string
|
|
@@ -193222,6 +195555,7 @@ export namespace Prisma {
|
|
|
193222
195555
|
documents?: DocumentUncheckedCreateNestedManyWithoutOrganisationInput
|
|
193223
195556
|
job_application_templates?: JobApplicationTemplateUncheckedCreateNestedManyWithoutOrganisationInput
|
|
193224
195557
|
sources?: SourceUncheckedCreateNestedManyWithoutOrganisationInput
|
|
195558
|
+
evaluation_criteria?: EvaluationCriteriaUncheckedCreateNestedManyWithoutOrganisationInput
|
|
193225
195559
|
}
|
|
193226
195560
|
|
|
193227
195561
|
export type OrganisationCreateOrConnectWithoutSuggestionsInput = {
|
|
@@ -193388,6 +195722,7 @@ export namespace Prisma {
|
|
|
193388
195722
|
address?: StringFieldUpdateOperationsInput | string
|
|
193389
195723
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
193390
195724
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
195725
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
193391
195726
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
193392
195727
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
193393
195728
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -193424,6 +195759,7 @@ export namespace Prisma {
|
|
|
193424
195759
|
documents?: DocumentUpdateManyWithoutOrganisationNestedInput
|
|
193425
195760
|
job_application_templates?: JobApplicationTemplateUpdateManyWithoutOrganisationNestedInput
|
|
193426
195761
|
sources?: SourceUpdateManyWithoutOrganisationNestedInput
|
|
195762
|
+
evaluation_criteria?: EvaluationCriteriaUpdateManyWithoutOrganisationNestedInput
|
|
193427
195763
|
}
|
|
193428
195764
|
|
|
193429
195765
|
export type OrganisationUncheckedUpdateWithoutSuggestionsInput = {
|
|
@@ -193437,6 +195773,7 @@ export namespace Prisma {
|
|
|
193437
195773
|
address?: StringFieldUpdateOperationsInput | string
|
|
193438
195774
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
193439
195775
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
195776
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
193440
195777
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
193441
195778
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
193442
195779
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -193473,6 +195810,7 @@ export namespace Prisma {
|
|
|
193473
195810
|
documents?: DocumentUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
193474
195811
|
job_application_templates?: JobApplicationTemplateUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
193475
195812
|
sources?: SourceUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
195813
|
+
evaluation_criteria?: EvaluationCriteriaUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
193476
195814
|
}
|
|
193477
195815
|
|
|
193478
195816
|
export type InterviewCreateWithoutTranscriptsInput = {
|
|
@@ -194052,6 +196390,7 @@ export namespace Prisma {
|
|
|
194052
196390
|
address: string
|
|
194053
196391
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
194054
196392
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
196393
|
+
send_email?: boolean
|
|
194055
196394
|
created_at?: Date | string
|
|
194056
196395
|
updated_at?: Date | string
|
|
194057
196396
|
created_by: string
|
|
@@ -194088,6 +196427,7 @@ export namespace Prisma {
|
|
|
194088
196427
|
documents?: DocumentCreateNestedManyWithoutOrganisationInput
|
|
194089
196428
|
job_application_templates?: JobApplicationTemplateCreateNestedManyWithoutOrganisationInput
|
|
194090
196429
|
sources?: SourceCreateNestedManyWithoutOrganisationInput
|
|
196430
|
+
evaluation_criteria?: EvaluationCriteriaCreateNestedManyWithoutOrganisationInput
|
|
194091
196431
|
}
|
|
194092
196432
|
|
|
194093
196433
|
export type OrganisationUncheckedCreateWithoutInterviewersInput = {
|
|
@@ -194101,6 +196441,7 @@ export namespace Prisma {
|
|
|
194101
196441
|
address: string
|
|
194102
196442
|
company_values?: OrganisationCreatecompany_valuesInput | InputJsonValue[]
|
|
194103
196443
|
allowed_email_domains?: OrganisationCreateallowed_email_domainsInput | string[]
|
|
196444
|
+
send_email?: boolean
|
|
194104
196445
|
created_at?: Date | string
|
|
194105
196446
|
updated_at?: Date | string
|
|
194106
196447
|
created_by: string
|
|
@@ -194137,6 +196478,7 @@ export namespace Prisma {
|
|
|
194137
196478
|
documents?: DocumentUncheckedCreateNestedManyWithoutOrganisationInput
|
|
194138
196479
|
job_application_templates?: JobApplicationTemplateUncheckedCreateNestedManyWithoutOrganisationInput
|
|
194139
196480
|
sources?: SourceUncheckedCreateNestedManyWithoutOrganisationInput
|
|
196481
|
+
evaluation_criteria?: EvaluationCriteriaUncheckedCreateNestedManyWithoutOrganisationInput
|
|
194140
196482
|
}
|
|
194141
196483
|
|
|
194142
196484
|
export type OrganisationCreateOrConnectWithoutInterviewersInput = {
|
|
@@ -196171,6 +198513,7 @@ export namespace Prisma {
|
|
|
196171
198513
|
address?: StringFieldUpdateOperationsInput | string
|
|
196172
198514
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
196173
198515
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
198516
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
196174
198517
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
196175
198518
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
196176
198519
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -196207,6 +198550,7 @@ export namespace Prisma {
|
|
|
196207
198550
|
documents?: DocumentUpdateManyWithoutOrganisationNestedInput
|
|
196208
198551
|
job_application_templates?: JobApplicationTemplateUpdateManyWithoutOrganisationNestedInput
|
|
196209
198552
|
sources?: SourceUpdateManyWithoutOrganisationNestedInput
|
|
198553
|
+
evaluation_criteria?: EvaluationCriteriaUpdateManyWithoutOrganisationNestedInput
|
|
196210
198554
|
}
|
|
196211
198555
|
|
|
196212
198556
|
export type OrganisationUncheckedUpdateWithoutInterviewersInput = {
|
|
@@ -196220,6 +198564,7 @@ export namespace Prisma {
|
|
|
196220
198564
|
address?: StringFieldUpdateOperationsInput | string
|
|
196221
198565
|
company_values?: OrganisationUpdatecompany_valuesInput | InputJsonValue[]
|
|
196222
198566
|
allowed_email_domains?: OrganisationUpdateallowed_email_domainsInput | string[]
|
|
198567
|
+
send_email?: BoolFieldUpdateOperationsInput | boolean
|
|
196223
198568
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
196224
198569
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
196225
198570
|
created_by?: StringFieldUpdateOperationsInput | string
|
|
@@ -196256,6 +198601,7 @@ export namespace Prisma {
|
|
|
196256
198601
|
documents?: DocumentUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
196257
198602
|
job_application_templates?: JobApplicationTemplateUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
196258
198603
|
sources?: SourceUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
198604
|
+
evaluation_criteria?: EvaluationCriteriaUncheckedUpdateManyWithoutOrganisationNestedInput
|
|
196259
198605
|
}
|
|
196260
198606
|
|
|
196261
198607
|
export type ApplicationUpsertWithWhereUniqueWithoutCandidateInput = {
|
|
@@ -203305,6 +205651,22 @@ export namespace Prisma {
|
|
|
203305
205651
|
updated_at?: Date | string
|
|
203306
205652
|
}
|
|
203307
205653
|
|
|
205654
|
+
export type EvaluationCriteriaCreateManyOrganisationInput = {
|
|
205655
|
+
id?: string
|
|
205656
|
+
scope: $Enums.CriteriaScope
|
|
205657
|
+
key: string
|
|
205658
|
+
criteria?: string | null
|
|
205659
|
+
description?: string | null
|
|
205660
|
+
weightage?: number | null
|
|
205661
|
+
is_elimination?: boolean
|
|
205662
|
+
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
205663
|
+
created_by: string
|
|
205664
|
+
updated_by: string
|
|
205665
|
+
created_at?: Date | string
|
|
205666
|
+
updated_at?: Date | string
|
|
205667
|
+
is_active?: boolean
|
|
205668
|
+
}
|
|
205669
|
+
|
|
203308
205670
|
export type UserUpdateWithoutOrganisationInput = {
|
|
203309
205671
|
id?: StringFieldUpdateOperationsInput | string
|
|
203310
205672
|
email?: StringFieldUpdateOperationsInput | string
|
|
@@ -205203,6 +207565,54 @@ export namespace Prisma {
|
|
|
205203
207565
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
205204
207566
|
}
|
|
205205
207567
|
|
|
207568
|
+
export type EvaluationCriteriaUpdateWithoutOrganisationInput = {
|
|
207569
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
207570
|
+
scope?: EnumCriteriaScopeFieldUpdateOperationsInput | $Enums.CriteriaScope
|
|
207571
|
+
key?: StringFieldUpdateOperationsInput | string
|
|
207572
|
+
criteria?: NullableStringFieldUpdateOperationsInput | string | null
|
|
207573
|
+
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
207574
|
+
weightage?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
207575
|
+
is_elimination?: BoolFieldUpdateOperationsInput | boolean
|
|
207576
|
+
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
207577
|
+
created_by?: StringFieldUpdateOperationsInput | string
|
|
207578
|
+
updated_by?: StringFieldUpdateOperationsInput | string
|
|
207579
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
207580
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
207581
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
207582
|
+
}
|
|
207583
|
+
|
|
207584
|
+
export type EvaluationCriteriaUncheckedUpdateWithoutOrganisationInput = {
|
|
207585
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
207586
|
+
scope?: EnumCriteriaScopeFieldUpdateOperationsInput | $Enums.CriteriaScope
|
|
207587
|
+
key?: StringFieldUpdateOperationsInput | string
|
|
207588
|
+
criteria?: NullableStringFieldUpdateOperationsInput | string | null
|
|
207589
|
+
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
207590
|
+
weightage?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
207591
|
+
is_elimination?: BoolFieldUpdateOperationsInput | boolean
|
|
207592
|
+
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
207593
|
+
created_by?: StringFieldUpdateOperationsInput | string
|
|
207594
|
+
updated_by?: StringFieldUpdateOperationsInput | string
|
|
207595
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
207596
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
207597
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
207598
|
+
}
|
|
207599
|
+
|
|
207600
|
+
export type EvaluationCriteriaUncheckedUpdateManyWithoutOrganisationInput = {
|
|
207601
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
207602
|
+
scope?: EnumCriteriaScopeFieldUpdateOperationsInput | $Enums.CriteriaScope
|
|
207603
|
+
key?: StringFieldUpdateOperationsInput | string
|
|
207604
|
+
criteria?: NullableStringFieldUpdateOperationsInput | string | null
|
|
207605
|
+
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
207606
|
+
weightage?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
207607
|
+
is_elimination?: BoolFieldUpdateOperationsInput | boolean
|
|
207608
|
+
metadata?: NullableJsonNullValueInput | InputJsonValue
|
|
207609
|
+
created_by?: StringFieldUpdateOperationsInput | string
|
|
207610
|
+
updated_by?: StringFieldUpdateOperationsInput | string
|
|
207611
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
207612
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
207613
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
207614
|
+
}
|
|
207615
|
+
|
|
205206
207616
|
export type AssessmentQuestionCreateManyQuestionInput = {
|
|
205207
207617
|
assessment_id: string
|
|
205208
207618
|
created_at?: Date | string
|