@adaptware/eagles-db 0.1.74 → 0.1.76
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/client/edge.js +16 -3
- package/client/index-browser.js +13 -0
- package/client/index.d.ts +2357 -302
- package/client/index.js +16 -3
- package/client/package.json +1 -1
- package/client/schema.prisma +17 -2
- package/client/wasm.js +13 -0
- package/package.json +2 -1
- package/prisma/schema/authModule.prisma +15 -14
- package/prisma/schema/refreshToken.prisma +10 -0
- package/prisma/schema/resume.prisma +2 -0
- package/prisma/schema/user.prisma +4 -3
package/client/index.d.ts
CHANGED
|
@@ -193,6 +193,11 @@ export type AsyncOperation = $Result.DefaultSelection<Prisma.$AsyncOperationPayl
|
|
|
193
193
|
*
|
|
194
194
|
*/
|
|
195
195
|
export type Question = $Result.DefaultSelection<Prisma.$QuestionPayload>
|
|
196
|
+
/**
|
|
197
|
+
* Model RefreshToken
|
|
198
|
+
*
|
|
199
|
+
*/
|
|
200
|
+
export type RefreshToken = $Result.DefaultSelection<Prisma.$RefreshTokenPayload>
|
|
196
201
|
/**
|
|
197
202
|
* Model Resume
|
|
198
203
|
*
|
|
@@ -1148,6 +1153,16 @@ export class PrismaClient<
|
|
|
1148
1153
|
*/
|
|
1149
1154
|
get question(): Prisma.QuestionDelegate<ExtArgs, ClientOptions>;
|
|
1150
1155
|
|
|
1156
|
+
/**
|
|
1157
|
+
* `prisma.refreshToken`: Exposes CRUD operations for the **RefreshToken** model.
|
|
1158
|
+
* Example usage:
|
|
1159
|
+
* ```ts
|
|
1160
|
+
* // Fetch zero or more RefreshTokens
|
|
1161
|
+
* const refreshTokens = await prisma.refreshToken.findMany()
|
|
1162
|
+
* ```
|
|
1163
|
+
*/
|
|
1164
|
+
get refreshToken(): Prisma.RefreshTokenDelegate<ExtArgs, ClientOptions>;
|
|
1165
|
+
|
|
1151
1166
|
/**
|
|
1152
1167
|
* `prisma.resume`: Exposes CRUD operations for the **Resume** model.
|
|
1153
1168
|
* Example usage:
|
|
@@ -1682,6 +1697,7 @@ export namespace Prisma {
|
|
|
1682
1697
|
Permission: 'Permission',
|
|
1683
1698
|
AsyncOperation: 'AsyncOperation',
|
|
1684
1699
|
Question: 'Question',
|
|
1700
|
+
RefreshToken: 'RefreshToken',
|
|
1685
1701
|
Resume: 'Resume',
|
|
1686
1702
|
ResumeData: 'ResumeData',
|
|
1687
1703
|
Suggestion: 'Suggestion',
|
|
@@ -1706,7 +1722,7 @@ export namespace Prisma {
|
|
|
1706
1722
|
omit: GlobalOmitOptions
|
|
1707
1723
|
}
|
|
1708
1724
|
meta: {
|
|
1709
|
-
modelProps: "candidateQuestionResponse" | "userRole" | "action" | "activityLog" | "application" | "approval" | "assessment" | "assessmentLibrary" | "assessmentQuestion" | "assignment" | "assignmentLibrary" | "authModule" | "budget" | "calendly" | "candidateProfile" | "contactUs" | "evaluationPlan" | "feedback" | "fitCheck" | "google" | "integrationCredential" | "integrationJobSync" | "zohoSyncMapping" | "interview" | "interviewNotes" | "jobDescription" | "jobDescriptionData" | "jobProfile" | "liveAnalysis" | "message" | "ongoingEvaluation" | "organisation" | "permission" | "asyncOperation" | "question" | "resume" | "resumeData" | "suggestion" | "transcript" | "user" | "userProfile"
|
|
1725
|
+
modelProps: "candidateQuestionResponse" | "userRole" | "action" | "activityLog" | "application" | "approval" | "assessment" | "assessmentLibrary" | "assessmentQuestion" | "assignment" | "assignmentLibrary" | "authModule" | "budget" | "calendly" | "candidateProfile" | "contactUs" | "evaluationPlan" | "feedback" | "fitCheck" | "google" | "integrationCredential" | "integrationJobSync" | "zohoSyncMapping" | "interview" | "interviewNotes" | "jobDescription" | "jobDescriptionData" | "jobProfile" | "liveAnalysis" | "message" | "ongoingEvaluation" | "organisation" | "permission" | "asyncOperation" | "question" | "refreshToken" | "resume" | "resumeData" | "suggestion" | "transcript" | "user" | "userProfile"
|
|
1710
1726
|
txIsolationLevel: Prisma.TransactionIsolationLevel
|
|
1711
1727
|
}
|
|
1712
1728
|
model: {
|
|
@@ -4300,6 +4316,80 @@ export namespace Prisma {
|
|
|
4300
4316
|
}
|
|
4301
4317
|
}
|
|
4302
4318
|
}
|
|
4319
|
+
RefreshToken: {
|
|
4320
|
+
payload: Prisma.$RefreshTokenPayload<ExtArgs>
|
|
4321
|
+
fields: Prisma.RefreshTokenFieldRefs
|
|
4322
|
+
operations: {
|
|
4323
|
+
findUnique: {
|
|
4324
|
+
args: Prisma.RefreshTokenFindUniqueArgs<ExtArgs>
|
|
4325
|
+
result: $Utils.PayloadToResult<Prisma.$RefreshTokenPayload> | null
|
|
4326
|
+
}
|
|
4327
|
+
findUniqueOrThrow: {
|
|
4328
|
+
args: Prisma.RefreshTokenFindUniqueOrThrowArgs<ExtArgs>
|
|
4329
|
+
result: $Utils.PayloadToResult<Prisma.$RefreshTokenPayload>
|
|
4330
|
+
}
|
|
4331
|
+
findFirst: {
|
|
4332
|
+
args: Prisma.RefreshTokenFindFirstArgs<ExtArgs>
|
|
4333
|
+
result: $Utils.PayloadToResult<Prisma.$RefreshTokenPayload> | null
|
|
4334
|
+
}
|
|
4335
|
+
findFirstOrThrow: {
|
|
4336
|
+
args: Prisma.RefreshTokenFindFirstOrThrowArgs<ExtArgs>
|
|
4337
|
+
result: $Utils.PayloadToResult<Prisma.$RefreshTokenPayload>
|
|
4338
|
+
}
|
|
4339
|
+
findMany: {
|
|
4340
|
+
args: Prisma.RefreshTokenFindManyArgs<ExtArgs>
|
|
4341
|
+
result: $Utils.PayloadToResult<Prisma.$RefreshTokenPayload>[]
|
|
4342
|
+
}
|
|
4343
|
+
create: {
|
|
4344
|
+
args: Prisma.RefreshTokenCreateArgs<ExtArgs>
|
|
4345
|
+
result: $Utils.PayloadToResult<Prisma.$RefreshTokenPayload>
|
|
4346
|
+
}
|
|
4347
|
+
createMany: {
|
|
4348
|
+
args: Prisma.RefreshTokenCreateManyArgs<ExtArgs>
|
|
4349
|
+
result: BatchPayload
|
|
4350
|
+
}
|
|
4351
|
+
createManyAndReturn: {
|
|
4352
|
+
args: Prisma.RefreshTokenCreateManyAndReturnArgs<ExtArgs>
|
|
4353
|
+
result: $Utils.PayloadToResult<Prisma.$RefreshTokenPayload>[]
|
|
4354
|
+
}
|
|
4355
|
+
delete: {
|
|
4356
|
+
args: Prisma.RefreshTokenDeleteArgs<ExtArgs>
|
|
4357
|
+
result: $Utils.PayloadToResult<Prisma.$RefreshTokenPayload>
|
|
4358
|
+
}
|
|
4359
|
+
update: {
|
|
4360
|
+
args: Prisma.RefreshTokenUpdateArgs<ExtArgs>
|
|
4361
|
+
result: $Utils.PayloadToResult<Prisma.$RefreshTokenPayload>
|
|
4362
|
+
}
|
|
4363
|
+
deleteMany: {
|
|
4364
|
+
args: Prisma.RefreshTokenDeleteManyArgs<ExtArgs>
|
|
4365
|
+
result: BatchPayload
|
|
4366
|
+
}
|
|
4367
|
+
updateMany: {
|
|
4368
|
+
args: Prisma.RefreshTokenUpdateManyArgs<ExtArgs>
|
|
4369
|
+
result: BatchPayload
|
|
4370
|
+
}
|
|
4371
|
+
updateManyAndReturn: {
|
|
4372
|
+
args: Prisma.RefreshTokenUpdateManyAndReturnArgs<ExtArgs>
|
|
4373
|
+
result: $Utils.PayloadToResult<Prisma.$RefreshTokenPayload>[]
|
|
4374
|
+
}
|
|
4375
|
+
upsert: {
|
|
4376
|
+
args: Prisma.RefreshTokenUpsertArgs<ExtArgs>
|
|
4377
|
+
result: $Utils.PayloadToResult<Prisma.$RefreshTokenPayload>
|
|
4378
|
+
}
|
|
4379
|
+
aggregate: {
|
|
4380
|
+
args: Prisma.RefreshTokenAggregateArgs<ExtArgs>
|
|
4381
|
+
result: $Utils.Optional<AggregateRefreshToken>
|
|
4382
|
+
}
|
|
4383
|
+
groupBy: {
|
|
4384
|
+
args: Prisma.RefreshTokenGroupByArgs<ExtArgs>
|
|
4385
|
+
result: $Utils.Optional<RefreshTokenGroupByOutputType>[]
|
|
4386
|
+
}
|
|
4387
|
+
count: {
|
|
4388
|
+
args: Prisma.RefreshTokenCountArgs<ExtArgs>
|
|
4389
|
+
result: $Utils.Optional<RefreshTokenCountAggregateOutputType> | number
|
|
4390
|
+
}
|
|
4391
|
+
}
|
|
4392
|
+
}
|
|
4303
4393
|
Resume: {
|
|
4304
4394
|
payload: Prisma.$ResumePayload<ExtArgs>
|
|
4305
4395
|
fields: Prisma.ResumeFieldRefs
|
|
@@ -4871,6 +4961,7 @@ export namespace Prisma {
|
|
|
4871
4961
|
permission?: PermissionOmit
|
|
4872
4962
|
asyncOperation?: AsyncOperationOmit
|
|
4873
4963
|
question?: QuestionOmit
|
|
4964
|
+
refreshToken?: RefreshTokenOmit
|
|
4874
4965
|
resume?: ResumeOmit
|
|
4875
4966
|
resumeData?: ResumeDataOmit
|
|
4876
4967
|
suggestion?: SuggestionOmit
|
|
@@ -5816,6 +5907,7 @@ export namespace Prisma {
|
|
|
5816
5907
|
created_job_profiles: number
|
|
5817
5908
|
assigned_job_profiles: number
|
|
5818
5909
|
user_auth_modules: number
|
|
5910
|
+
refresh_token_auth: number
|
|
5819
5911
|
}
|
|
5820
5912
|
|
|
5821
5913
|
export type UserCountOutputTypeSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -5843,6 +5935,7 @@ export namespace Prisma {
|
|
|
5843
5935
|
created_job_profiles?: boolean | UserCountOutputTypeCountCreated_job_profilesArgs
|
|
5844
5936
|
assigned_job_profiles?: boolean | UserCountOutputTypeCountAssigned_job_profilesArgs
|
|
5845
5937
|
user_auth_modules?: boolean | UserCountOutputTypeCountUser_auth_modulesArgs
|
|
5938
|
+
refresh_token_auth?: boolean | UserCountOutputTypeCountRefresh_token_authArgs
|
|
5846
5939
|
}
|
|
5847
5940
|
|
|
5848
5941
|
// Custom InputTypes
|
|
@@ -6024,6 +6117,13 @@ export namespace Prisma {
|
|
|
6024
6117
|
where?: AuthModuleWhereInput
|
|
6025
6118
|
}
|
|
6026
6119
|
|
|
6120
|
+
/**
|
|
6121
|
+
* UserCountOutputType without action
|
|
6122
|
+
*/
|
|
6123
|
+
export type UserCountOutputTypeCountRefresh_token_authArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
6124
|
+
where?: RefreshTokenWhereInput
|
|
6125
|
+
}
|
|
6126
|
+
|
|
6027
6127
|
|
|
6028
6128
|
/**
|
|
6029
6129
|
* Models
|
|
@@ -19742,6 +19842,7 @@ export namespace Prisma {
|
|
|
19742
19842
|
expires_at: Date | null
|
|
19743
19843
|
token_type: string | null
|
|
19744
19844
|
scope: string | null
|
|
19845
|
+
is_active: boolean | null
|
|
19745
19846
|
created_at: Date | null
|
|
19746
19847
|
updated_at: Date | null
|
|
19747
19848
|
}
|
|
@@ -19757,6 +19858,7 @@ export namespace Prisma {
|
|
|
19757
19858
|
expires_at: Date | null
|
|
19758
19859
|
token_type: string | null
|
|
19759
19860
|
scope: string | null
|
|
19861
|
+
is_active: boolean | null
|
|
19760
19862
|
created_at: Date | null
|
|
19761
19863
|
updated_at: Date | null
|
|
19762
19864
|
}
|
|
@@ -19772,6 +19874,7 @@ export namespace Prisma {
|
|
|
19772
19874
|
expires_at: number
|
|
19773
19875
|
token_type: number
|
|
19774
19876
|
scope: number
|
|
19877
|
+
is_active: number
|
|
19775
19878
|
created_at: number
|
|
19776
19879
|
updated_at: number
|
|
19777
19880
|
_all: number
|
|
@@ -19789,6 +19892,7 @@ export namespace Prisma {
|
|
|
19789
19892
|
expires_at?: true
|
|
19790
19893
|
token_type?: true
|
|
19791
19894
|
scope?: true
|
|
19895
|
+
is_active?: true
|
|
19792
19896
|
created_at?: true
|
|
19793
19897
|
updated_at?: true
|
|
19794
19898
|
}
|
|
@@ -19804,6 +19908,7 @@ export namespace Prisma {
|
|
|
19804
19908
|
expires_at?: true
|
|
19805
19909
|
token_type?: true
|
|
19806
19910
|
scope?: true
|
|
19911
|
+
is_active?: true
|
|
19807
19912
|
created_at?: true
|
|
19808
19913
|
updated_at?: true
|
|
19809
19914
|
}
|
|
@@ -19819,6 +19924,7 @@ export namespace Prisma {
|
|
|
19819
19924
|
expires_at?: true
|
|
19820
19925
|
token_type?: true
|
|
19821
19926
|
scope?: true
|
|
19927
|
+
is_active?: true
|
|
19822
19928
|
created_at?: true
|
|
19823
19929
|
updated_at?: true
|
|
19824
19930
|
_all?: true
|
|
@@ -19900,13 +20006,14 @@ export namespace Prisma {
|
|
|
19900
20006
|
id: string
|
|
19901
20007
|
user_id: string
|
|
19902
20008
|
provider: $Enums.AuthProvider
|
|
19903
|
-
provider_account_id: string
|
|
20009
|
+
provider_account_id: string | null
|
|
19904
20010
|
access_token: string | null
|
|
19905
20011
|
refresh_token: string | null
|
|
19906
20012
|
id_token: string | null
|
|
19907
20013
|
expires_at: Date | null
|
|
19908
20014
|
token_type: string | null
|
|
19909
20015
|
scope: string | null
|
|
20016
|
+
is_active: boolean
|
|
19910
20017
|
created_at: Date
|
|
19911
20018
|
updated_at: Date
|
|
19912
20019
|
_count: AuthModuleCountAggregateOutputType | null
|
|
@@ -19939,6 +20046,7 @@ export namespace Prisma {
|
|
|
19939
20046
|
expires_at?: boolean
|
|
19940
20047
|
token_type?: boolean
|
|
19941
20048
|
scope?: boolean
|
|
20049
|
+
is_active?: boolean
|
|
19942
20050
|
created_at?: boolean
|
|
19943
20051
|
updated_at?: boolean
|
|
19944
20052
|
user?: boolean | UserDefaultArgs<ExtArgs>
|
|
@@ -19955,6 +20063,7 @@ export namespace Prisma {
|
|
|
19955
20063
|
expires_at?: boolean
|
|
19956
20064
|
token_type?: boolean
|
|
19957
20065
|
scope?: boolean
|
|
20066
|
+
is_active?: boolean
|
|
19958
20067
|
created_at?: boolean
|
|
19959
20068
|
updated_at?: boolean
|
|
19960
20069
|
user?: boolean | UserDefaultArgs<ExtArgs>
|
|
@@ -19971,6 +20080,7 @@ export namespace Prisma {
|
|
|
19971
20080
|
expires_at?: boolean
|
|
19972
20081
|
token_type?: boolean
|
|
19973
20082
|
scope?: boolean
|
|
20083
|
+
is_active?: boolean
|
|
19974
20084
|
created_at?: boolean
|
|
19975
20085
|
updated_at?: boolean
|
|
19976
20086
|
user?: boolean | UserDefaultArgs<ExtArgs>
|
|
@@ -19987,11 +20097,12 @@ export namespace Prisma {
|
|
|
19987
20097
|
expires_at?: boolean
|
|
19988
20098
|
token_type?: boolean
|
|
19989
20099
|
scope?: boolean
|
|
20100
|
+
is_active?: boolean
|
|
19990
20101
|
created_at?: boolean
|
|
19991
20102
|
updated_at?: boolean
|
|
19992
20103
|
}
|
|
19993
20104
|
|
|
19994
|
-
export type AuthModuleOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "user_id" | "provider" | "provider_account_id" | "access_token" | "refresh_token" | "id_token" | "expires_at" | "token_type" | "scope" | "created_at" | "updated_at", ExtArgs["result"]["authModule"]>
|
|
20105
|
+
export type AuthModuleOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "user_id" | "provider" | "provider_account_id" | "access_token" | "refresh_token" | "id_token" | "expires_at" | "token_type" | "scope" | "is_active" | "created_at" | "updated_at", ExtArgs["result"]["authModule"]>
|
|
19995
20106
|
export type AuthModuleInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
19996
20107
|
user?: boolean | UserDefaultArgs<ExtArgs>
|
|
19997
20108
|
}
|
|
@@ -20011,13 +20122,14 @@ export namespace Prisma {
|
|
|
20011
20122
|
id: string
|
|
20012
20123
|
user_id: string
|
|
20013
20124
|
provider: $Enums.AuthProvider
|
|
20014
|
-
provider_account_id: string
|
|
20125
|
+
provider_account_id: string | null
|
|
20015
20126
|
access_token: string | null
|
|
20016
20127
|
refresh_token: string | null
|
|
20017
20128
|
id_token: string | null
|
|
20018
20129
|
expires_at: Date | null
|
|
20019
20130
|
token_type: string | null
|
|
20020
20131
|
scope: string | null
|
|
20132
|
+
is_active: boolean
|
|
20021
20133
|
created_at: Date
|
|
20022
20134
|
updated_at: Date
|
|
20023
20135
|
}, ExtArgs["result"]["authModule"]>
|
|
@@ -20454,6 +20566,7 @@ export namespace Prisma {
|
|
|
20454
20566
|
readonly expires_at: FieldRef<"AuthModule", 'DateTime'>
|
|
20455
20567
|
readonly token_type: FieldRef<"AuthModule", 'String'>
|
|
20456
20568
|
readonly scope: FieldRef<"AuthModule", 'String'>
|
|
20569
|
+
readonly is_active: FieldRef<"AuthModule", 'Boolean'>
|
|
20457
20570
|
readonly created_at: FieldRef<"AuthModule", 'DateTime'>
|
|
20458
20571
|
readonly updated_at: FieldRef<"AuthModule", 'DateTime'>
|
|
20459
20572
|
}
|
|
@@ -50050,541 +50163,1625 @@ export namespace Prisma {
|
|
|
50050
50163
|
|
|
50051
50164
|
|
|
50052
50165
|
/**
|
|
50053
|
-
* Fields of the Question model
|
|
50166
|
+
* Fields of the Question model
|
|
50167
|
+
*/
|
|
50168
|
+
interface QuestionFieldRefs {
|
|
50169
|
+
readonly id: FieldRef<"Question", 'String'>
|
|
50170
|
+
readonly assessment_library_id: FieldRef<"Question", 'String'>
|
|
50171
|
+
readonly evaluation_plan_id: FieldRef<"Question", 'String'>
|
|
50172
|
+
readonly candidate_id: FieldRef<"Question", 'String'>
|
|
50173
|
+
readonly skill: FieldRef<"Question", 'String'>
|
|
50174
|
+
readonly question_type: FieldRef<"Question", 'QuestionType'>
|
|
50175
|
+
readonly question: FieldRef<"Question", 'String'>
|
|
50176
|
+
readonly answer: FieldRef<"Question", 'String'>
|
|
50177
|
+
readonly options: FieldRef<"Question", 'String[]'>
|
|
50178
|
+
readonly max_score: FieldRef<"Question", 'Float'>
|
|
50179
|
+
readonly difficulty: FieldRef<"Question", 'Difficulty'>
|
|
50180
|
+
readonly created_by: FieldRef<"Question", 'String'>
|
|
50181
|
+
readonly updated_by: FieldRef<"Question", 'String'>
|
|
50182
|
+
readonly created_at: FieldRef<"Question", 'DateTime'>
|
|
50183
|
+
readonly updated_at: FieldRef<"Question", 'DateTime'>
|
|
50184
|
+
readonly is_active: FieldRef<"Question", 'Boolean'>
|
|
50185
|
+
}
|
|
50186
|
+
|
|
50187
|
+
|
|
50188
|
+
// Custom InputTypes
|
|
50189
|
+
/**
|
|
50190
|
+
* Question findUnique
|
|
50191
|
+
*/
|
|
50192
|
+
export type QuestionFindUniqueArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
50193
|
+
/**
|
|
50194
|
+
* Select specific fields to fetch from the Question
|
|
50195
|
+
*/
|
|
50196
|
+
select?: QuestionSelect<ExtArgs> | null
|
|
50197
|
+
/**
|
|
50198
|
+
* Omit specific fields from the Question
|
|
50199
|
+
*/
|
|
50200
|
+
omit?: QuestionOmit<ExtArgs> | null
|
|
50201
|
+
/**
|
|
50202
|
+
* Choose, which related nodes to fetch as well
|
|
50203
|
+
*/
|
|
50204
|
+
include?: QuestionInclude<ExtArgs> | null
|
|
50205
|
+
/**
|
|
50206
|
+
* Filter, which Question to fetch.
|
|
50207
|
+
*/
|
|
50208
|
+
where: QuestionWhereUniqueInput
|
|
50209
|
+
}
|
|
50210
|
+
|
|
50211
|
+
/**
|
|
50212
|
+
* Question findUniqueOrThrow
|
|
50213
|
+
*/
|
|
50214
|
+
export type QuestionFindUniqueOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
50215
|
+
/**
|
|
50216
|
+
* Select specific fields to fetch from the Question
|
|
50217
|
+
*/
|
|
50218
|
+
select?: QuestionSelect<ExtArgs> | null
|
|
50219
|
+
/**
|
|
50220
|
+
* Omit specific fields from the Question
|
|
50221
|
+
*/
|
|
50222
|
+
omit?: QuestionOmit<ExtArgs> | null
|
|
50223
|
+
/**
|
|
50224
|
+
* Choose, which related nodes to fetch as well
|
|
50225
|
+
*/
|
|
50226
|
+
include?: QuestionInclude<ExtArgs> | null
|
|
50227
|
+
/**
|
|
50228
|
+
* Filter, which Question to fetch.
|
|
50229
|
+
*/
|
|
50230
|
+
where: QuestionWhereUniqueInput
|
|
50231
|
+
}
|
|
50232
|
+
|
|
50233
|
+
/**
|
|
50234
|
+
* Question findFirst
|
|
50235
|
+
*/
|
|
50236
|
+
export type QuestionFindFirstArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
50237
|
+
/**
|
|
50238
|
+
* Select specific fields to fetch from the Question
|
|
50239
|
+
*/
|
|
50240
|
+
select?: QuestionSelect<ExtArgs> | null
|
|
50241
|
+
/**
|
|
50242
|
+
* Omit specific fields from the Question
|
|
50243
|
+
*/
|
|
50244
|
+
omit?: QuestionOmit<ExtArgs> | null
|
|
50245
|
+
/**
|
|
50246
|
+
* Choose, which related nodes to fetch as well
|
|
50247
|
+
*/
|
|
50248
|
+
include?: QuestionInclude<ExtArgs> | null
|
|
50249
|
+
/**
|
|
50250
|
+
* Filter, which Question to fetch.
|
|
50251
|
+
*/
|
|
50252
|
+
where?: QuestionWhereInput
|
|
50253
|
+
/**
|
|
50254
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
50255
|
+
*
|
|
50256
|
+
* Determine the order of Questions to fetch.
|
|
50257
|
+
*/
|
|
50258
|
+
orderBy?: QuestionOrderByWithRelationInput | QuestionOrderByWithRelationInput[]
|
|
50259
|
+
/**
|
|
50260
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
50261
|
+
*
|
|
50262
|
+
* Sets the position for searching for Questions.
|
|
50263
|
+
*/
|
|
50264
|
+
cursor?: QuestionWhereUniqueInput
|
|
50265
|
+
/**
|
|
50266
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
50267
|
+
*
|
|
50268
|
+
* Take `±n` Questions from the position of the cursor.
|
|
50269
|
+
*/
|
|
50270
|
+
take?: number
|
|
50271
|
+
/**
|
|
50272
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
50273
|
+
*
|
|
50274
|
+
* Skip the first `n` Questions.
|
|
50275
|
+
*/
|
|
50276
|
+
skip?: number
|
|
50277
|
+
/**
|
|
50278
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
50279
|
+
*
|
|
50280
|
+
* Filter by unique combinations of Questions.
|
|
50281
|
+
*/
|
|
50282
|
+
distinct?: QuestionScalarFieldEnum | QuestionScalarFieldEnum[]
|
|
50283
|
+
}
|
|
50284
|
+
|
|
50285
|
+
/**
|
|
50286
|
+
* Question findFirstOrThrow
|
|
50287
|
+
*/
|
|
50288
|
+
export type QuestionFindFirstOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
50289
|
+
/**
|
|
50290
|
+
* Select specific fields to fetch from the Question
|
|
50291
|
+
*/
|
|
50292
|
+
select?: QuestionSelect<ExtArgs> | null
|
|
50293
|
+
/**
|
|
50294
|
+
* Omit specific fields from the Question
|
|
50295
|
+
*/
|
|
50296
|
+
omit?: QuestionOmit<ExtArgs> | null
|
|
50297
|
+
/**
|
|
50298
|
+
* Choose, which related nodes to fetch as well
|
|
50299
|
+
*/
|
|
50300
|
+
include?: QuestionInclude<ExtArgs> | null
|
|
50301
|
+
/**
|
|
50302
|
+
* Filter, which Question to fetch.
|
|
50303
|
+
*/
|
|
50304
|
+
where?: QuestionWhereInput
|
|
50305
|
+
/**
|
|
50306
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
50307
|
+
*
|
|
50308
|
+
* Determine the order of Questions to fetch.
|
|
50309
|
+
*/
|
|
50310
|
+
orderBy?: QuestionOrderByWithRelationInput | QuestionOrderByWithRelationInput[]
|
|
50311
|
+
/**
|
|
50312
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
50313
|
+
*
|
|
50314
|
+
* Sets the position for searching for Questions.
|
|
50315
|
+
*/
|
|
50316
|
+
cursor?: QuestionWhereUniqueInput
|
|
50317
|
+
/**
|
|
50318
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
50319
|
+
*
|
|
50320
|
+
* Take `±n` Questions from the position of the cursor.
|
|
50321
|
+
*/
|
|
50322
|
+
take?: number
|
|
50323
|
+
/**
|
|
50324
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
50325
|
+
*
|
|
50326
|
+
* Skip the first `n` Questions.
|
|
50327
|
+
*/
|
|
50328
|
+
skip?: number
|
|
50329
|
+
/**
|
|
50330
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
50331
|
+
*
|
|
50332
|
+
* Filter by unique combinations of Questions.
|
|
50333
|
+
*/
|
|
50334
|
+
distinct?: QuestionScalarFieldEnum | QuestionScalarFieldEnum[]
|
|
50335
|
+
}
|
|
50336
|
+
|
|
50337
|
+
/**
|
|
50338
|
+
* Question findMany
|
|
50339
|
+
*/
|
|
50340
|
+
export type QuestionFindManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
50341
|
+
/**
|
|
50342
|
+
* Select specific fields to fetch from the Question
|
|
50343
|
+
*/
|
|
50344
|
+
select?: QuestionSelect<ExtArgs> | null
|
|
50345
|
+
/**
|
|
50346
|
+
* Omit specific fields from the Question
|
|
50347
|
+
*/
|
|
50348
|
+
omit?: QuestionOmit<ExtArgs> | null
|
|
50349
|
+
/**
|
|
50350
|
+
* Choose, which related nodes to fetch as well
|
|
50351
|
+
*/
|
|
50352
|
+
include?: QuestionInclude<ExtArgs> | null
|
|
50353
|
+
/**
|
|
50354
|
+
* Filter, which Questions to fetch.
|
|
50355
|
+
*/
|
|
50356
|
+
where?: QuestionWhereInput
|
|
50357
|
+
/**
|
|
50358
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
50359
|
+
*
|
|
50360
|
+
* Determine the order of Questions to fetch.
|
|
50361
|
+
*/
|
|
50362
|
+
orderBy?: QuestionOrderByWithRelationInput | QuestionOrderByWithRelationInput[]
|
|
50363
|
+
/**
|
|
50364
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
50365
|
+
*
|
|
50366
|
+
* Sets the position for listing Questions.
|
|
50367
|
+
*/
|
|
50368
|
+
cursor?: QuestionWhereUniqueInput
|
|
50369
|
+
/**
|
|
50370
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
50371
|
+
*
|
|
50372
|
+
* Take `±n` Questions from the position of the cursor.
|
|
50373
|
+
*/
|
|
50374
|
+
take?: number
|
|
50375
|
+
/**
|
|
50376
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
50377
|
+
*
|
|
50378
|
+
* Skip the first `n` Questions.
|
|
50379
|
+
*/
|
|
50380
|
+
skip?: number
|
|
50381
|
+
distinct?: QuestionScalarFieldEnum | QuestionScalarFieldEnum[]
|
|
50382
|
+
}
|
|
50383
|
+
|
|
50384
|
+
/**
|
|
50385
|
+
* Question create
|
|
50386
|
+
*/
|
|
50387
|
+
export type QuestionCreateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
50388
|
+
/**
|
|
50389
|
+
* Select specific fields to fetch from the Question
|
|
50390
|
+
*/
|
|
50391
|
+
select?: QuestionSelect<ExtArgs> | null
|
|
50392
|
+
/**
|
|
50393
|
+
* Omit specific fields from the Question
|
|
50394
|
+
*/
|
|
50395
|
+
omit?: QuestionOmit<ExtArgs> | null
|
|
50396
|
+
/**
|
|
50397
|
+
* Choose, which related nodes to fetch as well
|
|
50398
|
+
*/
|
|
50399
|
+
include?: QuestionInclude<ExtArgs> | null
|
|
50400
|
+
/**
|
|
50401
|
+
* The data needed to create a Question.
|
|
50402
|
+
*/
|
|
50403
|
+
data: XOR<QuestionCreateInput, QuestionUncheckedCreateInput>
|
|
50404
|
+
}
|
|
50405
|
+
|
|
50406
|
+
/**
|
|
50407
|
+
* Question createMany
|
|
50408
|
+
*/
|
|
50409
|
+
export type QuestionCreateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
50410
|
+
/**
|
|
50411
|
+
* The data used to create many Questions.
|
|
50412
|
+
*/
|
|
50413
|
+
data: QuestionCreateManyInput | QuestionCreateManyInput[]
|
|
50414
|
+
skipDuplicates?: boolean
|
|
50415
|
+
}
|
|
50416
|
+
|
|
50417
|
+
/**
|
|
50418
|
+
* Question createManyAndReturn
|
|
50419
|
+
*/
|
|
50420
|
+
export type QuestionCreateManyAndReturnArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
50421
|
+
/**
|
|
50422
|
+
* Select specific fields to fetch from the Question
|
|
50423
|
+
*/
|
|
50424
|
+
select?: QuestionSelectCreateManyAndReturn<ExtArgs> | null
|
|
50425
|
+
/**
|
|
50426
|
+
* Omit specific fields from the Question
|
|
50427
|
+
*/
|
|
50428
|
+
omit?: QuestionOmit<ExtArgs> | null
|
|
50429
|
+
/**
|
|
50430
|
+
* The data used to create many Questions.
|
|
50431
|
+
*/
|
|
50432
|
+
data: QuestionCreateManyInput | QuestionCreateManyInput[]
|
|
50433
|
+
skipDuplicates?: boolean
|
|
50434
|
+
/**
|
|
50435
|
+
* Choose, which related nodes to fetch as well
|
|
50436
|
+
*/
|
|
50437
|
+
include?: QuestionIncludeCreateManyAndReturn<ExtArgs> | null
|
|
50438
|
+
}
|
|
50439
|
+
|
|
50440
|
+
/**
|
|
50441
|
+
* Question update
|
|
50442
|
+
*/
|
|
50443
|
+
export type QuestionUpdateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
50444
|
+
/**
|
|
50445
|
+
* Select specific fields to fetch from the Question
|
|
50446
|
+
*/
|
|
50447
|
+
select?: QuestionSelect<ExtArgs> | null
|
|
50448
|
+
/**
|
|
50449
|
+
* Omit specific fields from the Question
|
|
50450
|
+
*/
|
|
50451
|
+
omit?: QuestionOmit<ExtArgs> | null
|
|
50452
|
+
/**
|
|
50453
|
+
* Choose, which related nodes to fetch as well
|
|
50454
|
+
*/
|
|
50455
|
+
include?: QuestionInclude<ExtArgs> | null
|
|
50456
|
+
/**
|
|
50457
|
+
* The data needed to update a Question.
|
|
50458
|
+
*/
|
|
50459
|
+
data: XOR<QuestionUpdateInput, QuestionUncheckedUpdateInput>
|
|
50460
|
+
/**
|
|
50461
|
+
* Choose, which Question to update.
|
|
50462
|
+
*/
|
|
50463
|
+
where: QuestionWhereUniqueInput
|
|
50464
|
+
}
|
|
50465
|
+
|
|
50466
|
+
/**
|
|
50467
|
+
* Question updateMany
|
|
50468
|
+
*/
|
|
50469
|
+
export type QuestionUpdateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
50470
|
+
/**
|
|
50471
|
+
* The data used to update Questions.
|
|
50472
|
+
*/
|
|
50473
|
+
data: XOR<QuestionUpdateManyMutationInput, QuestionUncheckedUpdateManyInput>
|
|
50474
|
+
/**
|
|
50475
|
+
* Filter which Questions to update
|
|
50476
|
+
*/
|
|
50477
|
+
where?: QuestionWhereInput
|
|
50478
|
+
/**
|
|
50479
|
+
* Limit how many Questions to update.
|
|
50480
|
+
*/
|
|
50481
|
+
limit?: number
|
|
50482
|
+
}
|
|
50483
|
+
|
|
50484
|
+
/**
|
|
50485
|
+
* Question updateManyAndReturn
|
|
50486
|
+
*/
|
|
50487
|
+
export type QuestionUpdateManyAndReturnArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
50488
|
+
/**
|
|
50489
|
+
* Select specific fields to fetch from the Question
|
|
50490
|
+
*/
|
|
50491
|
+
select?: QuestionSelectUpdateManyAndReturn<ExtArgs> | null
|
|
50492
|
+
/**
|
|
50493
|
+
* Omit specific fields from the Question
|
|
50494
|
+
*/
|
|
50495
|
+
omit?: QuestionOmit<ExtArgs> | null
|
|
50496
|
+
/**
|
|
50497
|
+
* The data used to update Questions.
|
|
50498
|
+
*/
|
|
50499
|
+
data: XOR<QuestionUpdateManyMutationInput, QuestionUncheckedUpdateManyInput>
|
|
50500
|
+
/**
|
|
50501
|
+
* Filter which Questions to update
|
|
50502
|
+
*/
|
|
50503
|
+
where?: QuestionWhereInput
|
|
50504
|
+
/**
|
|
50505
|
+
* Limit how many Questions to update.
|
|
50506
|
+
*/
|
|
50507
|
+
limit?: number
|
|
50508
|
+
/**
|
|
50509
|
+
* Choose, which related nodes to fetch as well
|
|
50510
|
+
*/
|
|
50511
|
+
include?: QuestionIncludeUpdateManyAndReturn<ExtArgs> | null
|
|
50512
|
+
}
|
|
50513
|
+
|
|
50514
|
+
/**
|
|
50515
|
+
* Question upsert
|
|
50516
|
+
*/
|
|
50517
|
+
export type QuestionUpsertArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
50518
|
+
/**
|
|
50519
|
+
* Select specific fields to fetch from the Question
|
|
50520
|
+
*/
|
|
50521
|
+
select?: QuestionSelect<ExtArgs> | null
|
|
50522
|
+
/**
|
|
50523
|
+
* Omit specific fields from the Question
|
|
50524
|
+
*/
|
|
50525
|
+
omit?: QuestionOmit<ExtArgs> | null
|
|
50526
|
+
/**
|
|
50527
|
+
* Choose, which related nodes to fetch as well
|
|
50528
|
+
*/
|
|
50529
|
+
include?: QuestionInclude<ExtArgs> | null
|
|
50530
|
+
/**
|
|
50531
|
+
* The filter to search for the Question to update in case it exists.
|
|
50532
|
+
*/
|
|
50533
|
+
where: QuestionWhereUniqueInput
|
|
50534
|
+
/**
|
|
50535
|
+
* In case the Question found by the `where` argument doesn't exist, create a new Question with this data.
|
|
50536
|
+
*/
|
|
50537
|
+
create: XOR<QuestionCreateInput, QuestionUncheckedCreateInput>
|
|
50538
|
+
/**
|
|
50539
|
+
* In case the Question was found with the provided `where` argument, update it with this data.
|
|
50540
|
+
*/
|
|
50541
|
+
update: XOR<QuestionUpdateInput, QuestionUncheckedUpdateInput>
|
|
50542
|
+
}
|
|
50543
|
+
|
|
50544
|
+
/**
|
|
50545
|
+
* Question delete
|
|
50546
|
+
*/
|
|
50547
|
+
export type QuestionDeleteArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
50548
|
+
/**
|
|
50549
|
+
* Select specific fields to fetch from the Question
|
|
50550
|
+
*/
|
|
50551
|
+
select?: QuestionSelect<ExtArgs> | null
|
|
50552
|
+
/**
|
|
50553
|
+
* Omit specific fields from the Question
|
|
50554
|
+
*/
|
|
50555
|
+
omit?: QuestionOmit<ExtArgs> | null
|
|
50556
|
+
/**
|
|
50557
|
+
* Choose, which related nodes to fetch as well
|
|
50558
|
+
*/
|
|
50559
|
+
include?: QuestionInclude<ExtArgs> | null
|
|
50560
|
+
/**
|
|
50561
|
+
* Filter which Question to delete.
|
|
50562
|
+
*/
|
|
50563
|
+
where: QuestionWhereUniqueInput
|
|
50564
|
+
}
|
|
50565
|
+
|
|
50566
|
+
/**
|
|
50567
|
+
* Question deleteMany
|
|
50568
|
+
*/
|
|
50569
|
+
export type QuestionDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
50570
|
+
/**
|
|
50571
|
+
* Filter which Questions to delete
|
|
50572
|
+
*/
|
|
50573
|
+
where?: QuestionWhereInput
|
|
50574
|
+
/**
|
|
50575
|
+
* Limit how many Questions to delete.
|
|
50576
|
+
*/
|
|
50577
|
+
limit?: number
|
|
50578
|
+
}
|
|
50579
|
+
|
|
50580
|
+
/**
|
|
50581
|
+
* Question.candidate
|
|
50582
|
+
*/
|
|
50583
|
+
export type Question$candidateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
50584
|
+
/**
|
|
50585
|
+
* Select specific fields to fetch from the User
|
|
50586
|
+
*/
|
|
50587
|
+
select?: UserSelect<ExtArgs> | null
|
|
50588
|
+
/**
|
|
50589
|
+
* Omit specific fields from the User
|
|
50590
|
+
*/
|
|
50591
|
+
omit?: UserOmit<ExtArgs> | null
|
|
50592
|
+
/**
|
|
50593
|
+
* Choose, which related nodes to fetch as well
|
|
50594
|
+
*/
|
|
50595
|
+
include?: UserInclude<ExtArgs> | null
|
|
50596
|
+
where?: UserWhereInput
|
|
50597
|
+
}
|
|
50598
|
+
|
|
50599
|
+
/**
|
|
50600
|
+
* Question.assessments
|
|
50601
|
+
*/
|
|
50602
|
+
export type Question$assessmentsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
50603
|
+
/**
|
|
50604
|
+
* Select specific fields to fetch from the AssessmentQuestion
|
|
50605
|
+
*/
|
|
50606
|
+
select?: AssessmentQuestionSelect<ExtArgs> | null
|
|
50607
|
+
/**
|
|
50608
|
+
* Omit specific fields from the AssessmentQuestion
|
|
50609
|
+
*/
|
|
50610
|
+
omit?: AssessmentQuestionOmit<ExtArgs> | null
|
|
50611
|
+
/**
|
|
50612
|
+
* Choose, which related nodes to fetch as well
|
|
50613
|
+
*/
|
|
50614
|
+
include?: AssessmentQuestionInclude<ExtArgs> | null
|
|
50615
|
+
where?: AssessmentQuestionWhereInput
|
|
50616
|
+
orderBy?: AssessmentQuestionOrderByWithRelationInput | AssessmentQuestionOrderByWithRelationInput[]
|
|
50617
|
+
cursor?: AssessmentQuestionWhereUniqueInput
|
|
50618
|
+
take?: number
|
|
50619
|
+
skip?: number
|
|
50620
|
+
distinct?: AssessmentQuestionScalarFieldEnum | AssessmentQuestionScalarFieldEnum[]
|
|
50621
|
+
}
|
|
50622
|
+
|
|
50623
|
+
/**
|
|
50624
|
+
* Question.assessmentLibrary
|
|
50625
|
+
*/
|
|
50626
|
+
export type Question$assessmentLibraryArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
50627
|
+
/**
|
|
50628
|
+
* Select specific fields to fetch from the AssessmentLibrary
|
|
50629
|
+
*/
|
|
50630
|
+
select?: AssessmentLibrarySelect<ExtArgs> | null
|
|
50631
|
+
/**
|
|
50632
|
+
* Omit specific fields from the AssessmentLibrary
|
|
50633
|
+
*/
|
|
50634
|
+
omit?: AssessmentLibraryOmit<ExtArgs> | null
|
|
50635
|
+
/**
|
|
50636
|
+
* Choose, which related nodes to fetch as well
|
|
50637
|
+
*/
|
|
50638
|
+
include?: AssessmentLibraryInclude<ExtArgs> | null
|
|
50639
|
+
where?: AssessmentLibraryWhereInput
|
|
50640
|
+
}
|
|
50641
|
+
|
|
50642
|
+
/**
|
|
50643
|
+
* Question.evaluationPlan
|
|
50644
|
+
*/
|
|
50645
|
+
export type Question$evaluationPlanArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
50646
|
+
/**
|
|
50647
|
+
* Select specific fields to fetch from the EvaluationPlan
|
|
50648
|
+
*/
|
|
50649
|
+
select?: EvaluationPlanSelect<ExtArgs> | null
|
|
50650
|
+
/**
|
|
50651
|
+
* Omit specific fields from the EvaluationPlan
|
|
50652
|
+
*/
|
|
50653
|
+
omit?: EvaluationPlanOmit<ExtArgs> | null
|
|
50654
|
+
/**
|
|
50655
|
+
* Choose, which related nodes to fetch as well
|
|
50656
|
+
*/
|
|
50657
|
+
include?: EvaluationPlanInclude<ExtArgs> | null
|
|
50658
|
+
where?: EvaluationPlanWhereInput
|
|
50659
|
+
}
|
|
50660
|
+
|
|
50661
|
+
/**
|
|
50662
|
+
* Question.candidateResponse
|
|
50663
|
+
*/
|
|
50664
|
+
export type Question$candidateResponseArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
50665
|
+
/**
|
|
50666
|
+
* Select specific fields to fetch from the CandidateQuestionResponse
|
|
50667
|
+
*/
|
|
50668
|
+
select?: CandidateQuestionResponseSelect<ExtArgs> | null
|
|
50669
|
+
/**
|
|
50670
|
+
* Omit specific fields from the CandidateQuestionResponse
|
|
50671
|
+
*/
|
|
50672
|
+
omit?: CandidateQuestionResponseOmit<ExtArgs> | null
|
|
50673
|
+
/**
|
|
50674
|
+
* Choose, which related nodes to fetch as well
|
|
50675
|
+
*/
|
|
50676
|
+
include?: CandidateQuestionResponseInclude<ExtArgs> | null
|
|
50677
|
+
where?: CandidateQuestionResponseWhereInput
|
|
50678
|
+
orderBy?: CandidateQuestionResponseOrderByWithRelationInput | CandidateQuestionResponseOrderByWithRelationInput[]
|
|
50679
|
+
cursor?: CandidateQuestionResponseWhereUniqueInput
|
|
50680
|
+
take?: number
|
|
50681
|
+
skip?: number
|
|
50682
|
+
distinct?: CandidateQuestionResponseScalarFieldEnum | CandidateQuestionResponseScalarFieldEnum[]
|
|
50683
|
+
}
|
|
50684
|
+
|
|
50685
|
+
/**
|
|
50686
|
+
* Question without action
|
|
50687
|
+
*/
|
|
50688
|
+
export type QuestionDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
50689
|
+
/**
|
|
50690
|
+
* Select specific fields to fetch from the Question
|
|
50691
|
+
*/
|
|
50692
|
+
select?: QuestionSelect<ExtArgs> | null
|
|
50693
|
+
/**
|
|
50694
|
+
* Omit specific fields from the Question
|
|
50695
|
+
*/
|
|
50696
|
+
omit?: QuestionOmit<ExtArgs> | null
|
|
50697
|
+
/**
|
|
50698
|
+
* Choose, which related nodes to fetch as well
|
|
50699
|
+
*/
|
|
50700
|
+
include?: QuestionInclude<ExtArgs> | null
|
|
50701
|
+
}
|
|
50702
|
+
|
|
50703
|
+
|
|
50704
|
+
/**
|
|
50705
|
+
* Model RefreshToken
|
|
50706
|
+
*/
|
|
50707
|
+
|
|
50708
|
+
export type AggregateRefreshToken = {
|
|
50709
|
+
_count: RefreshTokenCountAggregateOutputType | null
|
|
50710
|
+
_min: RefreshTokenMinAggregateOutputType | null
|
|
50711
|
+
_max: RefreshTokenMaxAggregateOutputType | null
|
|
50712
|
+
}
|
|
50713
|
+
|
|
50714
|
+
export type RefreshTokenMinAggregateOutputType = {
|
|
50715
|
+
id: string | null
|
|
50716
|
+
user_id: string | null
|
|
50717
|
+
token: string | null
|
|
50718
|
+
is_active: boolean | null
|
|
50719
|
+
expires_at: Date | null
|
|
50720
|
+
created_at: Date | null
|
|
50721
|
+
updated_at: Date | null
|
|
50722
|
+
}
|
|
50723
|
+
|
|
50724
|
+
export type RefreshTokenMaxAggregateOutputType = {
|
|
50725
|
+
id: string | null
|
|
50726
|
+
user_id: string | null
|
|
50727
|
+
token: string | null
|
|
50728
|
+
is_active: boolean | null
|
|
50729
|
+
expires_at: Date | null
|
|
50730
|
+
created_at: Date | null
|
|
50731
|
+
updated_at: Date | null
|
|
50732
|
+
}
|
|
50733
|
+
|
|
50734
|
+
export type RefreshTokenCountAggregateOutputType = {
|
|
50735
|
+
id: number
|
|
50736
|
+
user_id: number
|
|
50737
|
+
token: number
|
|
50738
|
+
is_active: number
|
|
50739
|
+
expires_at: number
|
|
50740
|
+
created_at: number
|
|
50741
|
+
updated_at: number
|
|
50742
|
+
_all: number
|
|
50743
|
+
}
|
|
50744
|
+
|
|
50745
|
+
|
|
50746
|
+
export type RefreshTokenMinAggregateInputType = {
|
|
50747
|
+
id?: true
|
|
50748
|
+
user_id?: true
|
|
50749
|
+
token?: true
|
|
50750
|
+
is_active?: true
|
|
50751
|
+
expires_at?: true
|
|
50752
|
+
created_at?: true
|
|
50753
|
+
updated_at?: true
|
|
50754
|
+
}
|
|
50755
|
+
|
|
50756
|
+
export type RefreshTokenMaxAggregateInputType = {
|
|
50757
|
+
id?: true
|
|
50758
|
+
user_id?: true
|
|
50759
|
+
token?: true
|
|
50760
|
+
is_active?: true
|
|
50761
|
+
expires_at?: true
|
|
50762
|
+
created_at?: true
|
|
50763
|
+
updated_at?: true
|
|
50764
|
+
}
|
|
50765
|
+
|
|
50766
|
+
export type RefreshTokenCountAggregateInputType = {
|
|
50767
|
+
id?: true
|
|
50768
|
+
user_id?: true
|
|
50769
|
+
token?: true
|
|
50770
|
+
is_active?: true
|
|
50771
|
+
expires_at?: true
|
|
50772
|
+
created_at?: true
|
|
50773
|
+
updated_at?: true
|
|
50774
|
+
_all?: true
|
|
50775
|
+
}
|
|
50776
|
+
|
|
50777
|
+
export type RefreshTokenAggregateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
50778
|
+
/**
|
|
50779
|
+
* Filter which RefreshToken to aggregate.
|
|
50780
|
+
*/
|
|
50781
|
+
where?: RefreshTokenWhereInput
|
|
50782
|
+
/**
|
|
50783
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
50784
|
+
*
|
|
50785
|
+
* Determine the order of RefreshTokens to fetch.
|
|
50786
|
+
*/
|
|
50787
|
+
orderBy?: RefreshTokenOrderByWithRelationInput | RefreshTokenOrderByWithRelationInput[]
|
|
50788
|
+
/**
|
|
50789
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
50790
|
+
*
|
|
50791
|
+
* Sets the start position
|
|
50792
|
+
*/
|
|
50793
|
+
cursor?: RefreshTokenWhereUniqueInput
|
|
50794
|
+
/**
|
|
50795
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
50796
|
+
*
|
|
50797
|
+
* Take `±n` RefreshTokens from the position of the cursor.
|
|
50798
|
+
*/
|
|
50799
|
+
take?: number
|
|
50800
|
+
/**
|
|
50801
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
50802
|
+
*
|
|
50803
|
+
* Skip the first `n` RefreshTokens.
|
|
50804
|
+
*/
|
|
50805
|
+
skip?: number
|
|
50806
|
+
/**
|
|
50807
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
50808
|
+
*
|
|
50809
|
+
* Count returned RefreshTokens
|
|
50810
|
+
**/
|
|
50811
|
+
_count?: true | RefreshTokenCountAggregateInputType
|
|
50812
|
+
/**
|
|
50813
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
50814
|
+
*
|
|
50815
|
+
* Select which fields to find the minimum value
|
|
50816
|
+
**/
|
|
50817
|
+
_min?: RefreshTokenMinAggregateInputType
|
|
50818
|
+
/**
|
|
50819
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
50820
|
+
*
|
|
50821
|
+
* Select which fields to find the maximum value
|
|
50822
|
+
**/
|
|
50823
|
+
_max?: RefreshTokenMaxAggregateInputType
|
|
50824
|
+
}
|
|
50825
|
+
|
|
50826
|
+
export type GetRefreshTokenAggregateType<T extends RefreshTokenAggregateArgs> = {
|
|
50827
|
+
[P in keyof T & keyof AggregateRefreshToken]: P extends '_count' | 'count'
|
|
50828
|
+
? T[P] extends true
|
|
50829
|
+
? number
|
|
50830
|
+
: GetScalarType<T[P], AggregateRefreshToken[P]>
|
|
50831
|
+
: GetScalarType<T[P], AggregateRefreshToken[P]>
|
|
50832
|
+
}
|
|
50833
|
+
|
|
50834
|
+
|
|
50835
|
+
|
|
50836
|
+
|
|
50837
|
+
export type RefreshTokenGroupByArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
50838
|
+
where?: RefreshTokenWhereInput
|
|
50839
|
+
orderBy?: RefreshTokenOrderByWithAggregationInput | RefreshTokenOrderByWithAggregationInput[]
|
|
50840
|
+
by: RefreshTokenScalarFieldEnum[] | RefreshTokenScalarFieldEnum
|
|
50841
|
+
having?: RefreshTokenScalarWhereWithAggregatesInput
|
|
50842
|
+
take?: number
|
|
50843
|
+
skip?: number
|
|
50844
|
+
_count?: RefreshTokenCountAggregateInputType | true
|
|
50845
|
+
_min?: RefreshTokenMinAggregateInputType
|
|
50846
|
+
_max?: RefreshTokenMaxAggregateInputType
|
|
50847
|
+
}
|
|
50848
|
+
|
|
50849
|
+
export type RefreshTokenGroupByOutputType = {
|
|
50850
|
+
id: string
|
|
50851
|
+
user_id: string
|
|
50852
|
+
token: string
|
|
50853
|
+
is_active: boolean
|
|
50854
|
+
expires_at: Date
|
|
50855
|
+
created_at: Date
|
|
50856
|
+
updated_at: Date
|
|
50857
|
+
_count: RefreshTokenCountAggregateOutputType | null
|
|
50858
|
+
_min: RefreshTokenMinAggregateOutputType | null
|
|
50859
|
+
_max: RefreshTokenMaxAggregateOutputType | null
|
|
50860
|
+
}
|
|
50861
|
+
|
|
50862
|
+
type GetRefreshTokenGroupByPayload<T extends RefreshTokenGroupByArgs> = Prisma.PrismaPromise<
|
|
50863
|
+
Array<
|
|
50864
|
+
PickEnumerable<RefreshTokenGroupByOutputType, T['by']> &
|
|
50865
|
+
{
|
|
50866
|
+
[P in ((keyof T) & (keyof RefreshTokenGroupByOutputType))]: P extends '_count'
|
|
50867
|
+
? T[P] extends boolean
|
|
50868
|
+
? number
|
|
50869
|
+
: GetScalarType<T[P], RefreshTokenGroupByOutputType[P]>
|
|
50870
|
+
: GetScalarType<T[P], RefreshTokenGroupByOutputType[P]>
|
|
50871
|
+
}
|
|
50872
|
+
>
|
|
50873
|
+
>
|
|
50874
|
+
|
|
50875
|
+
|
|
50876
|
+
export type RefreshTokenSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
50877
|
+
id?: boolean
|
|
50878
|
+
user_id?: boolean
|
|
50879
|
+
token?: boolean
|
|
50880
|
+
is_active?: boolean
|
|
50881
|
+
expires_at?: boolean
|
|
50882
|
+
created_at?: boolean
|
|
50883
|
+
updated_at?: boolean
|
|
50884
|
+
user?: boolean | UserDefaultArgs<ExtArgs>
|
|
50885
|
+
}, ExtArgs["result"]["refreshToken"]>
|
|
50886
|
+
|
|
50887
|
+
export type RefreshTokenSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
50888
|
+
id?: boolean
|
|
50889
|
+
user_id?: boolean
|
|
50890
|
+
token?: boolean
|
|
50891
|
+
is_active?: boolean
|
|
50892
|
+
expires_at?: boolean
|
|
50893
|
+
created_at?: boolean
|
|
50894
|
+
updated_at?: boolean
|
|
50895
|
+
user?: boolean | UserDefaultArgs<ExtArgs>
|
|
50896
|
+
}, ExtArgs["result"]["refreshToken"]>
|
|
50897
|
+
|
|
50898
|
+
export type RefreshTokenSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
50899
|
+
id?: boolean
|
|
50900
|
+
user_id?: boolean
|
|
50901
|
+
token?: boolean
|
|
50902
|
+
is_active?: boolean
|
|
50903
|
+
expires_at?: boolean
|
|
50904
|
+
created_at?: boolean
|
|
50905
|
+
updated_at?: boolean
|
|
50906
|
+
user?: boolean | UserDefaultArgs<ExtArgs>
|
|
50907
|
+
}, ExtArgs["result"]["refreshToken"]>
|
|
50908
|
+
|
|
50909
|
+
export type RefreshTokenSelectScalar = {
|
|
50910
|
+
id?: boolean
|
|
50911
|
+
user_id?: boolean
|
|
50912
|
+
token?: boolean
|
|
50913
|
+
is_active?: boolean
|
|
50914
|
+
expires_at?: boolean
|
|
50915
|
+
created_at?: boolean
|
|
50916
|
+
updated_at?: boolean
|
|
50917
|
+
}
|
|
50918
|
+
|
|
50919
|
+
export type RefreshTokenOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "user_id" | "token" | "is_active" | "expires_at" | "created_at" | "updated_at", ExtArgs["result"]["refreshToken"]>
|
|
50920
|
+
export type RefreshTokenInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
50921
|
+
user?: boolean | UserDefaultArgs<ExtArgs>
|
|
50922
|
+
}
|
|
50923
|
+
export type RefreshTokenIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
50924
|
+
user?: boolean | UserDefaultArgs<ExtArgs>
|
|
50925
|
+
}
|
|
50926
|
+
export type RefreshTokenIncludeUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
50927
|
+
user?: boolean | UserDefaultArgs<ExtArgs>
|
|
50928
|
+
}
|
|
50929
|
+
|
|
50930
|
+
export type $RefreshTokenPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
50931
|
+
name: "RefreshToken"
|
|
50932
|
+
objects: {
|
|
50933
|
+
user: Prisma.$UserPayload<ExtArgs>
|
|
50934
|
+
}
|
|
50935
|
+
scalars: $Extensions.GetPayloadResult<{
|
|
50936
|
+
id: string
|
|
50937
|
+
user_id: string
|
|
50938
|
+
token: string
|
|
50939
|
+
is_active: boolean
|
|
50940
|
+
expires_at: Date
|
|
50941
|
+
created_at: Date
|
|
50942
|
+
updated_at: Date
|
|
50943
|
+
}, ExtArgs["result"]["refreshToken"]>
|
|
50944
|
+
composites: {}
|
|
50945
|
+
}
|
|
50946
|
+
|
|
50947
|
+
type RefreshTokenGetPayload<S extends boolean | null | undefined | RefreshTokenDefaultArgs> = $Result.GetResult<Prisma.$RefreshTokenPayload, S>
|
|
50948
|
+
|
|
50949
|
+
type RefreshTokenCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
50950
|
+
Omit<RefreshTokenFindManyArgs, 'select' | 'include' | 'distinct' | 'omit'> & {
|
|
50951
|
+
select?: RefreshTokenCountAggregateInputType | true
|
|
50952
|
+
}
|
|
50953
|
+
|
|
50954
|
+
export interface RefreshTokenDelegate<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs, GlobalOmitOptions = {}> {
|
|
50955
|
+
[K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['RefreshToken'], meta: { name: 'RefreshToken' } }
|
|
50956
|
+
/**
|
|
50957
|
+
* Find zero or one RefreshToken that matches the filter.
|
|
50958
|
+
* @param {RefreshTokenFindUniqueArgs} args - Arguments to find a RefreshToken
|
|
50959
|
+
* @example
|
|
50960
|
+
* // Get one RefreshToken
|
|
50961
|
+
* const refreshToken = await prisma.refreshToken.findUnique({
|
|
50962
|
+
* where: {
|
|
50963
|
+
* // ... provide filter here
|
|
50964
|
+
* }
|
|
50965
|
+
* })
|
|
50966
|
+
*/
|
|
50967
|
+
findUnique<T extends RefreshTokenFindUniqueArgs>(args: SelectSubset<T, RefreshTokenFindUniqueArgs<ExtArgs>>): Prisma__RefreshTokenClient<$Result.GetResult<Prisma.$RefreshTokenPayload<ExtArgs>, T, "findUnique", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
|
50968
|
+
|
|
50969
|
+
/**
|
|
50970
|
+
* Find one RefreshToken that matches the filter or throw an error with `error.code='P2025'`
|
|
50971
|
+
* if no matches were found.
|
|
50972
|
+
* @param {RefreshTokenFindUniqueOrThrowArgs} args - Arguments to find a RefreshToken
|
|
50973
|
+
* @example
|
|
50974
|
+
* // Get one RefreshToken
|
|
50975
|
+
* const refreshToken = await prisma.refreshToken.findUniqueOrThrow({
|
|
50976
|
+
* where: {
|
|
50977
|
+
* // ... provide filter here
|
|
50978
|
+
* }
|
|
50979
|
+
* })
|
|
50980
|
+
*/
|
|
50981
|
+
findUniqueOrThrow<T extends RefreshTokenFindUniqueOrThrowArgs>(args: SelectSubset<T, RefreshTokenFindUniqueOrThrowArgs<ExtArgs>>): Prisma__RefreshTokenClient<$Result.GetResult<Prisma.$RefreshTokenPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
|
|
50982
|
+
|
|
50983
|
+
/**
|
|
50984
|
+
* Find the first RefreshToken that matches the filter.
|
|
50985
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
50986
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
50987
|
+
* @param {RefreshTokenFindFirstArgs} args - Arguments to find a RefreshToken
|
|
50988
|
+
* @example
|
|
50989
|
+
* // Get one RefreshToken
|
|
50990
|
+
* const refreshToken = await prisma.refreshToken.findFirst({
|
|
50991
|
+
* where: {
|
|
50992
|
+
* // ... provide filter here
|
|
50993
|
+
* }
|
|
50994
|
+
* })
|
|
50995
|
+
*/
|
|
50996
|
+
findFirst<T extends RefreshTokenFindFirstArgs>(args?: SelectSubset<T, RefreshTokenFindFirstArgs<ExtArgs>>): Prisma__RefreshTokenClient<$Result.GetResult<Prisma.$RefreshTokenPayload<ExtArgs>, T, "findFirst", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
|
50997
|
+
|
|
50998
|
+
/**
|
|
50999
|
+
* Find the first RefreshToken that matches the filter or
|
|
51000
|
+
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
51001
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
51002
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
51003
|
+
* @param {RefreshTokenFindFirstOrThrowArgs} args - Arguments to find a RefreshToken
|
|
51004
|
+
* @example
|
|
51005
|
+
* // Get one RefreshToken
|
|
51006
|
+
* const refreshToken = await prisma.refreshToken.findFirstOrThrow({
|
|
51007
|
+
* where: {
|
|
51008
|
+
* // ... provide filter here
|
|
51009
|
+
* }
|
|
51010
|
+
* })
|
|
51011
|
+
*/
|
|
51012
|
+
findFirstOrThrow<T extends RefreshTokenFindFirstOrThrowArgs>(args?: SelectSubset<T, RefreshTokenFindFirstOrThrowArgs<ExtArgs>>): Prisma__RefreshTokenClient<$Result.GetResult<Prisma.$RefreshTokenPayload<ExtArgs>, T, "findFirstOrThrow", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
|
|
51013
|
+
|
|
51014
|
+
/**
|
|
51015
|
+
* Find zero or more RefreshTokens that matches the filter.
|
|
51016
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
51017
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
51018
|
+
* @param {RefreshTokenFindManyArgs} args - Arguments to filter and select certain fields only.
|
|
51019
|
+
* @example
|
|
51020
|
+
* // Get all RefreshTokens
|
|
51021
|
+
* const refreshTokens = await prisma.refreshToken.findMany()
|
|
51022
|
+
*
|
|
51023
|
+
* // Get first 10 RefreshTokens
|
|
51024
|
+
* const refreshTokens = await prisma.refreshToken.findMany({ take: 10 })
|
|
51025
|
+
*
|
|
51026
|
+
* // Only select the `id`
|
|
51027
|
+
* const refreshTokenWithIdOnly = await prisma.refreshToken.findMany({ select: { id: true } })
|
|
51028
|
+
*
|
|
51029
|
+
*/
|
|
51030
|
+
findMany<T extends RefreshTokenFindManyArgs>(args?: SelectSubset<T, RefreshTokenFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$RefreshTokenPayload<ExtArgs>, T, "findMany", GlobalOmitOptions>>
|
|
51031
|
+
|
|
51032
|
+
/**
|
|
51033
|
+
* Create a RefreshToken.
|
|
51034
|
+
* @param {RefreshTokenCreateArgs} args - Arguments to create a RefreshToken.
|
|
51035
|
+
* @example
|
|
51036
|
+
* // Create one RefreshToken
|
|
51037
|
+
* const RefreshToken = await prisma.refreshToken.create({
|
|
51038
|
+
* data: {
|
|
51039
|
+
* // ... data to create a RefreshToken
|
|
51040
|
+
* }
|
|
51041
|
+
* })
|
|
51042
|
+
*
|
|
51043
|
+
*/
|
|
51044
|
+
create<T extends RefreshTokenCreateArgs>(args: SelectSubset<T, RefreshTokenCreateArgs<ExtArgs>>): Prisma__RefreshTokenClient<$Result.GetResult<Prisma.$RefreshTokenPayload<ExtArgs>, T, "create", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
|
|
51045
|
+
|
|
51046
|
+
/**
|
|
51047
|
+
* Create many RefreshTokens.
|
|
51048
|
+
* @param {RefreshTokenCreateManyArgs} args - Arguments to create many RefreshTokens.
|
|
51049
|
+
* @example
|
|
51050
|
+
* // Create many RefreshTokens
|
|
51051
|
+
* const refreshToken = await prisma.refreshToken.createMany({
|
|
51052
|
+
* data: [
|
|
51053
|
+
* // ... provide data here
|
|
51054
|
+
* ]
|
|
51055
|
+
* })
|
|
51056
|
+
*
|
|
51057
|
+
*/
|
|
51058
|
+
createMany<T extends RefreshTokenCreateManyArgs>(args?: SelectSubset<T, RefreshTokenCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
51059
|
+
|
|
51060
|
+
/**
|
|
51061
|
+
* Create many RefreshTokens and returns the data saved in the database.
|
|
51062
|
+
* @param {RefreshTokenCreateManyAndReturnArgs} args - Arguments to create many RefreshTokens.
|
|
51063
|
+
* @example
|
|
51064
|
+
* // Create many RefreshTokens
|
|
51065
|
+
* const refreshToken = await prisma.refreshToken.createManyAndReturn({
|
|
51066
|
+
* data: [
|
|
51067
|
+
* // ... provide data here
|
|
51068
|
+
* ]
|
|
51069
|
+
* })
|
|
51070
|
+
*
|
|
51071
|
+
* // Create many RefreshTokens and only return the `id`
|
|
51072
|
+
* const refreshTokenWithIdOnly = await prisma.refreshToken.createManyAndReturn({
|
|
51073
|
+
* select: { id: true },
|
|
51074
|
+
* data: [
|
|
51075
|
+
* // ... provide data here
|
|
51076
|
+
* ]
|
|
51077
|
+
* })
|
|
51078
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
51079
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
51080
|
+
*
|
|
51081
|
+
*/
|
|
51082
|
+
createManyAndReturn<T extends RefreshTokenCreateManyAndReturnArgs>(args?: SelectSubset<T, RefreshTokenCreateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$RefreshTokenPayload<ExtArgs>, T, "createManyAndReturn", GlobalOmitOptions>>
|
|
51083
|
+
|
|
51084
|
+
/**
|
|
51085
|
+
* Delete a RefreshToken.
|
|
51086
|
+
* @param {RefreshTokenDeleteArgs} args - Arguments to delete one RefreshToken.
|
|
51087
|
+
* @example
|
|
51088
|
+
* // Delete one RefreshToken
|
|
51089
|
+
* const RefreshToken = await prisma.refreshToken.delete({
|
|
51090
|
+
* where: {
|
|
51091
|
+
* // ... filter to delete one RefreshToken
|
|
51092
|
+
* }
|
|
51093
|
+
* })
|
|
51094
|
+
*
|
|
51095
|
+
*/
|
|
51096
|
+
delete<T extends RefreshTokenDeleteArgs>(args: SelectSubset<T, RefreshTokenDeleteArgs<ExtArgs>>): Prisma__RefreshTokenClient<$Result.GetResult<Prisma.$RefreshTokenPayload<ExtArgs>, T, "delete", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
|
|
51097
|
+
|
|
51098
|
+
/**
|
|
51099
|
+
* Update one RefreshToken.
|
|
51100
|
+
* @param {RefreshTokenUpdateArgs} args - Arguments to update one RefreshToken.
|
|
51101
|
+
* @example
|
|
51102
|
+
* // Update one RefreshToken
|
|
51103
|
+
* const refreshToken = await prisma.refreshToken.update({
|
|
51104
|
+
* where: {
|
|
51105
|
+
* // ... provide filter here
|
|
51106
|
+
* },
|
|
51107
|
+
* data: {
|
|
51108
|
+
* // ... provide data here
|
|
51109
|
+
* }
|
|
51110
|
+
* })
|
|
51111
|
+
*
|
|
51112
|
+
*/
|
|
51113
|
+
update<T extends RefreshTokenUpdateArgs>(args: SelectSubset<T, RefreshTokenUpdateArgs<ExtArgs>>): Prisma__RefreshTokenClient<$Result.GetResult<Prisma.$RefreshTokenPayload<ExtArgs>, T, "update", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
|
|
51114
|
+
|
|
51115
|
+
/**
|
|
51116
|
+
* Delete zero or more RefreshTokens.
|
|
51117
|
+
* @param {RefreshTokenDeleteManyArgs} args - Arguments to filter RefreshTokens to delete.
|
|
51118
|
+
* @example
|
|
51119
|
+
* // Delete a few RefreshTokens
|
|
51120
|
+
* const { count } = await prisma.refreshToken.deleteMany({
|
|
51121
|
+
* where: {
|
|
51122
|
+
* // ... provide filter here
|
|
51123
|
+
* }
|
|
51124
|
+
* })
|
|
51125
|
+
*
|
|
51126
|
+
*/
|
|
51127
|
+
deleteMany<T extends RefreshTokenDeleteManyArgs>(args?: SelectSubset<T, RefreshTokenDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
51128
|
+
|
|
51129
|
+
/**
|
|
51130
|
+
* Update zero or more RefreshTokens.
|
|
51131
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
51132
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
51133
|
+
* @param {RefreshTokenUpdateManyArgs} args - Arguments to update one or more rows.
|
|
51134
|
+
* @example
|
|
51135
|
+
* // Update many RefreshTokens
|
|
51136
|
+
* const refreshToken = await prisma.refreshToken.updateMany({
|
|
51137
|
+
* where: {
|
|
51138
|
+
* // ... provide filter here
|
|
51139
|
+
* },
|
|
51140
|
+
* data: {
|
|
51141
|
+
* // ... provide data here
|
|
51142
|
+
* }
|
|
51143
|
+
* })
|
|
51144
|
+
*
|
|
51145
|
+
*/
|
|
51146
|
+
updateMany<T extends RefreshTokenUpdateManyArgs>(args: SelectSubset<T, RefreshTokenUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
51147
|
+
|
|
51148
|
+
/**
|
|
51149
|
+
* Update zero or more RefreshTokens and returns the data updated in the database.
|
|
51150
|
+
* @param {RefreshTokenUpdateManyAndReturnArgs} args - Arguments to update many RefreshTokens.
|
|
51151
|
+
* @example
|
|
51152
|
+
* // Update many RefreshTokens
|
|
51153
|
+
* const refreshToken = await prisma.refreshToken.updateManyAndReturn({
|
|
51154
|
+
* where: {
|
|
51155
|
+
* // ... provide filter here
|
|
51156
|
+
* },
|
|
51157
|
+
* data: [
|
|
51158
|
+
* // ... provide data here
|
|
51159
|
+
* ]
|
|
51160
|
+
* })
|
|
51161
|
+
*
|
|
51162
|
+
* // Update zero or more RefreshTokens and only return the `id`
|
|
51163
|
+
* const refreshTokenWithIdOnly = await prisma.refreshToken.updateManyAndReturn({
|
|
51164
|
+
* select: { id: true },
|
|
51165
|
+
* where: {
|
|
51166
|
+
* // ... provide filter here
|
|
51167
|
+
* },
|
|
51168
|
+
* data: [
|
|
51169
|
+
* // ... provide data here
|
|
51170
|
+
* ]
|
|
51171
|
+
* })
|
|
51172
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
51173
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
51174
|
+
*
|
|
51175
|
+
*/
|
|
51176
|
+
updateManyAndReturn<T extends RefreshTokenUpdateManyAndReturnArgs>(args: SelectSubset<T, RefreshTokenUpdateManyAndReturnArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$RefreshTokenPayload<ExtArgs>, T, "updateManyAndReturn", GlobalOmitOptions>>
|
|
51177
|
+
|
|
51178
|
+
/**
|
|
51179
|
+
* Create or update one RefreshToken.
|
|
51180
|
+
* @param {RefreshTokenUpsertArgs} args - Arguments to update or create a RefreshToken.
|
|
51181
|
+
* @example
|
|
51182
|
+
* // Update or create a RefreshToken
|
|
51183
|
+
* const refreshToken = await prisma.refreshToken.upsert({
|
|
51184
|
+
* create: {
|
|
51185
|
+
* // ... data to create a RefreshToken
|
|
51186
|
+
* },
|
|
51187
|
+
* update: {
|
|
51188
|
+
* // ... in case it already exists, update
|
|
51189
|
+
* },
|
|
51190
|
+
* where: {
|
|
51191
|
+
* // ... the filter for the RefreshToken we want to update
|
|
51192
|
+
* }
|
|
51193
|
+
* })
|
|
51194
|
+
*/
|
|
51195
|
+
upsert<T extends RefreshTokenUpsertArgs>(args: SelectSubset<T, RefreshTokenUpsertArgs<ExtArgs>>): Prisma__RefreshTokenClient<$Result.GetResult<Prisma.$RefreshTokenPayload<ExtArgs>, T, "upsert", GlobalOmitOptions>, never, ExtArgs, GlobalOmitOptions>
|
|
51196
|
+
|
|
51197
|
+
|
|
51198
|
+
/**
|
|
51199
|
+
* Count the number of RefreshTokens.
|
|
51200
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
51201
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
51202
|
+
* @param {RefreshTokenCountArgs} args - Arguments to filter RefreshTokens to count.
|
|
51203
|
+
* @example
|
|
51204
|
+
* // Count the number of RefreshTokens
|
|
51205
|
+
* const count = await prisma.refreshToken.count({
|
|
51206
|
+
* where: {
|
|
51207
|
+
* // ... the filter for the RefreshTokens we want to count
|
|
51208
|
+
* }
|
|
51209
|
+
* })
|
|
51210
|
+
**/
|
|
51211
|
+
count<T extends RefreshTokenCountArgs>(
|
|
51212
|
+
args?: Subset<T, RefreshTokenCountArgs>,
|
|
51213
|
+
): Prisma.PrismaPromise<
|
|
51214
|
+
T extends $Utils.Record<'select', any>
|
|
51215
|
+
? T['select'] extends true
|
|
51216
|
+
? number
|
|
51217
|
+
: GetScalarType<T['select'], RefreshTokenCountAggregateOutputType>
|
|
51218
|
+
: number
|
|
51219
|
+
>
|
|
51220
|
+
|
|
51221
|
+
/**
|
|
51222
|
+
* Allows you to perform aggregations operations on a RefreshToken.
|
|
51223
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
51224
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
51225
|
+
* @param {RefreshTokenAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
|
|
51226
|
+
* @example
|
|
51227
|
+
* // Ordered by age ascending
|
|
51228
|
+
* // Where email contains prisma.io
|
|
51229
|
+
* // Limited to the 10 users
|
|
51230
|
+
* const aggregations = await prisma.user.aggregate({
|
|
51231
|
+
* _avg: {
|
|
51232
|
+
* age: true,
|
|
51233
|
+
* },
|
|
51234
|
+
* where: {
|
|
51235
|
+
* email: {
|
|
51236
|
+
* contains: "prisma.io",
|
|
51237
|
+
* },
|
|
51238
|
+
* },
|
|
51239
|
+
* orderBy: {
|
|
51240
|
+
* age: "asc",
|
|
51241
|
+
* },
|
|
51242
|
+
* take: 10,
|
|
51243
|
+
* })
|
|
51244
|
+
**/
|
|
51245
|
+
aggregate<T extends RefreshTokenAggregateArgs>(args: Subset<T, RefreshTokenAggregateArgs>): Prisma.PrismaPromise<GetRefreshTokenAggregateType<T>>
|
|
51246
|
+
|
|
51247
|
+
/**
|
|
51248
|
+
* Group by RefreshToken.
|
|
51249
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
51250
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
51251
|
+
* @param {RefreshTokenGroupByArgs} args - Group by arguments.
|
|
51252
|
+
* @example
|
|
51253
|
+
* // Group by city, order by createdAt, get count
|
|
51254
|
+
* const result = await prisma.user.groupBy({
|
|
51255
|
+
* by: ['city', 'createdAt'],
|
|
51256
|
+
* orderBy: {
|
|
51257
|
+
* createdAt: true
|
|
51258
|
+
* },
|
|
51259
|
+
* _count: {
|
|
51260
|
+
* _all: true
|
|
51261
|
+
* },
|
|
51262
|
+
* })
|
|
51263
|
+
*
|
|
51264
|
+
**/
|
|
51265
|
+
groupBy<
|
|
51266
|
+
T extends RefreshTokenGroupByArgs,
|
|
51267
|
+
HasSelectOrTake extends Or<
|
|
51268
|
+
Extends<'skip', Keys<T>>,
|
|
51269
|
+
Extends<'take', Keys<T>>
|
|
51270
|
+
>,
|
|
51271
|
+
OrderByArg extends True extends HasSelectOrTake
|
|
51272
|
+
? { orderBy: RefreshTokenGroupByArgs['orderBy'] }
|
|
51273
|
+
: { orderBy?: RefreshTokenGroupByArgs['orderBy'] },
|
|
51274
|
+
OrderFields extends ExcludeUnderscoreKeys<Keys<MaybeTupleToUnion<T['orderBy']>>>,
|
|
51275
|
+
ByFields extends MaybeTupleToUnion<T['by']>,
|
|
51276
|
+
ByValid extends Has<ByFields, OrderFields>,
|
|
51277
|
+
HavingFields extends GetHavingFields<T['having']>,
|
|
51278
|
+
HavingValid extends Has<ByFields, HavingFields>,
|
|
51279
|
+
ByEmpty extends T['by'] extends never[] ? True : False,
|
|
51280
|
+
InputErrors extends ByEmpty extends True
|
|
51281
|
+
? `Error: "by" must not be empty.`
|
|
51282
|
+
: HavingValid extends False
|
|
51283
|
+
? {
|
|
51284
|
+
[P in HavingFields]: P extends ByFields
|
|
51285
|
+
? never
|
|
51286
|
+
: P extends string
|
|
51287
|
+
? `Error: Field "${P}" used in "having" needs to be provided in "by".`
|
|
51288
|
+
: [
|
|
51289
|
+
Error,
|
|
51290
|
+
'Field ',
|
|
51291
|
+
P,
|
|
51292
|
+
` in "having" needs to be provided in "by"`,
|
|
51293
|
+
]
|
|
51294
|
+
}[HavingFields]
|
|
51295
|
+
: 'take' extends Keys<T>
|
|
51296
|
+
? 'orderBy' extends Keys<T>
|
|
51297
|
+
? ByValid extends True
|
|
51298
|
+
? {}
|
|
51299
|
+
: {
|
|
51300
|
+
[P in OrderFields]: P extends ByFields
|
|
51301
|
+
? never
|
|
51302
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
51303
|
+
}[OrderFields]
|
|
51304
|
+
: 'Error: If you provide "take", you also need to provide "orderBy"'
|
|
51305
|
+
: 'skip' extends Keys<T>
|
|
51306
|
+
? 'orderBy' extends Keys<T>
|
|
51307
|
+
? ByValid extends True
|
|
51308
|
+
? {}
|
|
51309
|
+
: {
|
|
51310
|
+
[P in OrderFields]: P extends ByFields
|
|
51311
|
+
? never
|
|
51312
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
51313
|
+
}[OrderFields]
|
|
51314
|
+
: 'Error: If you provide "skip", you also need to provide "orderBy"'
|
|
51315
|
+
: ByValid extends True
|
|
51316
|
+
? {}
|
|
51317
|
+
: {
|
|
51318
|
+
[P in OrderFields]: P extends ByFields
|
|
51319
|
+
? never
|
|
51320
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
51321
|
+
}[OrderFields]
|
|
51322
|
+
>(args: SubsetIntersection<T, RefreshTokenGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetRefreshTokenGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>
|
|
51323
|
+
/**
|
|
51324
|
+
* Fields of the RefreshToken model
|
|
51325
|
+
*/
|
|
51326
|
+
readonly fields: RefreshTokenFieldRefs;
|
|
51327
|
+
}
|
|
51328
|
+
|
|
51329
|
+
/**
|
|
51330
|
+
* The delegate class that acts as a "Promise-like" for RefreshToken.
|
|
51331
|
+
* Why is this prefixed with `Prisma__`?
|
|
51332
|
+
* Because we want to prevent naming conflicts as mentioned in
|
|
51333
|
+
* https://github.com/prisma/prisma-client-js/issues/707
|
|
51334
|
+
*/
|
|
51335
|
+
export interface Prisma__RefreshTokenClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs, GlobalOmitOptions = {}> extends Prisma.PrismaPromise<T> {
|
|
51336
|
+
readonly [Symbol.toStringTag]: "PrismaPromise"
|
|
51337
|
+
user<T extends UserDefaultArgs<ExtArgs> = {}>(args?: Subset<T, UserDefaultArgs<ExtArgs>>): Prisma__UserClient<$Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions>
|
|
51338
|
+
/**
|
|
51339
|
+
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
51340
|
+
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
51341
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
51342
|
+
* @returns A Promise for the completion of which ever callback is executed.
|
|
51343
|
+
*/
|
|
51344
|
+
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>
|
|
51345
|
+
/**
|
|
51346
|
+
* Attaches a callback for only the rejection of the Promise.
|
|
51347
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
51348
|
+
* @returns A Promise for the completion of the callback.
|
|
51349
|
+
*/
|
|
51350
|
+
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): $Utils.JsPromise<T | TResult>
|
|
51351
|
+
/**
|
|
51352
|
+
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
|
51353
|
+
* resolved value cannot be modified from the callback.
|
|
51354
|
+
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
|
51355
|
+
* @returns A Promise for the completion of the callback.
|
|
51356
|
+
*/
|
|
51357
|
+
finally(onfinally?: (() => void) | undefined | null): $Utils.JsPromise<T>
|
|
51358
|
+
}
|
|
51359
|
+
|
|
51360
|
+
|
|
51361
|
+
|
|
51362
|
+
|
|
51363
|
+
/**
|
|
51364
|
+
* Fields of the RefreshToken model
|
|
50054
51365
|
*/
|
|
50055
|
-
interface
|
|
50056
|
-
readonly id: FieldRef<"
|
|
50057
|
-
readonly
|
|
50058
|
-
readonly
|
|
50059
|
-
readonly
|
|
50060
|
-
readonly
|
|
50061
|
-
readonly
|
|
50062
|
-
readonly
|
|
50063
|
-
readonly answer: FieldRef<"Question", 'String'>
|
|
50064
|
-
readonly options: FieldRef<"Question", 'String[]'>
|
|
50065
|
-
readonly max_score: FieldRef<"Question", 'Float'>
|
|
50066
|
-
readonly difficulty: FieldRef<"Question", 'Difficulty'>
|
|
50067
|
-
readonly created_by: FieldRef<"Question", 'String'>
|
|
50068
|
-
readonly updated_by: FieldRef<"Question", 'String'>
|
|
50069
|
-
readonly created_at: FieldRef<"Question", 'DateTime'>
|
|
50070
|
-
readonly updated_at: FieldRef<"Question", 'DateTime'>
|
|
50071
|
-
readonly is_active: FieldRef<"Question", 'Boolean'>
|
|
51366
|
+
interface RefreshTokenFieldRefs {
|
|
51367
|
+
readonly id: FieldRef<"RefreshToken", 'String'>
|
|
51368
|
+
readonly user_id: FieldRef<"RefreshToken", 'String'>
|
|
51369
|
+
readonly token: FieldRef<"RefreshToken", 'String'>
|
|
51370
|
+
readonly is_active: FieldRef<"RefreshToken", 'Boolean'>
|
|
51371
|
+
readonly expires_at: FieldRef<"RefreshToken", 'DateTime'>
|
|
51372
|
+
readonly created_at: FieldRef<"RefreshToken", 'DateTime'>
|
|
51373
|
+
readonly updated_at: FieldRef<"RefreshToken", 'DateTime'>
|
|
50072
51374
|
}
|
|
50073
51375
|
|
|
50074
51376
|
|
|
50075
51377
|
// Custom InputTypes
|
|
50076
51378
|
/**
|
|
50077
|
-
*
|
|
51379
|
+
* RefreshToken findUnique
|
|
50078
51380
|
*/
|
|
50079
|
-
export type
|
|
51381
|
+
export type RefreshTokenFindUniqueArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
50080
51382
|
/**
|
|
50081
|
-
* Select specific fields to fetch from the
|
|
51383
|
+
* Select specific fields to fetch from the RefreshToken
|
|
50082
51384
|
*/
|
|
50083
|
-
select?:
|
|
51385
|
+
select?: RefreshTokenSelect<ExtArgs> | null
|
|
50084
51386
|
/**
|
|
50085
|
-
* Omit specific fields from the
|
|
51387
|
+
* Omit specific fields from the RefreshToken
|
|
50086
51388
|
*/
|
|
50087
|
-
omit?:
|
|
51389
|
+
omit?: RefreshTokenOmit<ExtArgs> | null
|
|
50088
51390
|
/**
|
|
50089
51391
|
* Choose, which related nodes to fetch as well
|
|
50090
51392
|
*/
|
|
50091
|
-
include?:
|
|
51393
|
+
include?: RefreshTokenInclude<ExtArgs> | null
|
|
50092
51394
|
/**
|
|
50093
|
-
* Filter, which
|
|
51395
|
+
* Filter, which RefreshToken to fetch.
|
|
50094
51396
|
*/
|
|
50095
|
-
where:
|
|
51397
|
+
where: RefreshTokenWhereUniqueInput
|
|
50096
51398
|
}
|
|
50097
51399
|
|
|
50098
51400
|
/**
|
|
50099
|
-
*
|
|
51401
|
+
* RefreshToken findUniqueOrThrow
|
|
50100
51402
|
*/
|
|
50101
|
-
export type
|
|
51403
|
+
export type RefreshTokenFindUniqueOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
50102
51404
|
/**
|
|
50103
|
-
* Select specific fields to fetch from the
|
|
51405
|
+
* Select specific fields to fetch from the RefreshToken
|
|
50104
51406
|
*/
|
|
50105
|
-
select?:
|
|
51407
|
+
select?: RefreshTokenSelect<ExtArgs> | null
|
|
50106
51408
|
/**
|
|
50107
|
-
* Omit specific fields from the
|
|
51409
|
+
* Omit specific fields from the RefreshToken
|
|
50108
51410
|
*/
|
|
50109
|
-
omit?:
|
|
51411
|
+
omit?: RefreshTokenOmit<ExtArgs> | null
|
|
50110
51412
|
/**
|
|
50111
51413
|
* Choose, which related nodes to fetch as well
|
|
50112
51414
|
*/
|
|
50113
|
-
include?:
|
|
51415
|
+
include?: RefreshTokenInclude<ExtArgs> | null
|
|
50114
51416
|
/**
|
|
50115
|
-
* Filter, which
|
|
51417
|
+
* Filter, which RefreshToken to fetch.
|
|
50116
51418
|
*/
|
|
50117
|
-
where:
|
|
51419
|
+
where: RefreshTokenWhereUniqueInput
|
|
50118
51420
|
}
|
|
50119
51421
|
|
|
50120
51422
|
/**
|
|
50121
|
-
*
|
|
51423
|
+
* RefreshToken findFirst
|
|
50122
51424
|
*/
|
|
50123
|
-
export type
|
|
51425
|
+
export type RefreshTokenFindFirstArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
50124
51426
|
/**
|
|
50125
|
-
* Select specific fields to fetch from the
|
|
51427
|
+
* Select specific fields to fetch from the RefreshToken
|
|
50126
51428
|
*/
|
|
50127
|
-
select?:
|
|
51429
|
+
select?: RefreshTokenSelect<ExtArgs> | null
|
|
50128
51430
|
/**
|
|
50129
|
-
* Omit specific fields from the
|
|
51431
|
+
* Omit specific fields from the RefreshToken
|
|
50130
51432
|
*/
|
|
50131
|
-
omit?:
|
|
51433
|
+
omit?: RefreshTokenOmit<ExtArgs> | null
|
|
50132
51434
|
/**
|
|
50133
51435
|
* Choose, which related nodes to fetch as well
|
|
50134
51436
|
*/
|
|
50135
|
-
include?:
|
|
51437
|
+
include?: RefreshTokenInclude<ExtArgs> | null
|
|
50136
51438
|
/**
|
|
50137
|
-
* Filter, which
|
|
51439
|
+
* Filter, which RefreshToken to fetch.
|
|
50138
51440
|
*/
|
|
50139
|
-
where?:
|
|
51441
|
+
where?: RefreshTokenWhereInput
|
|
50140
51442
|
/**
|
|
50141
51443
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
50142
51444
|
*
|
|
50143
|
-
* Determine the order of
|
|
51445
|
+
* Determine the order of RefreshTokens to fetch.
|
|
50144
51446
|
*/
|
|
50145
|
-
orderBy?:
|
|
51447
|
+
orderBy?: RefreshTokenOrderByWithRelationInput | RefreshTokenOrderByWithRelationInput[]
|
|
50146
51448
|
/**
|
|
50147
51449
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
50148
51450
|
*
|
|
50149
|
-
* Sets the position for searching for
|
|
51451
|
+
* Sets the position for searching for RefreshTokens.
|
|
50150
51452
|
*/
|
|
50151
|
-
cursor?:
|
|
51453
|
+
cursor?: RefreshTokenWhereUniqueInput
|
|
50152
51454
|
/**
|
|
50153
51455
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
50154
51456
|
*
|
|
50155
|
-
* Take `±n`
|
|
51457
|
+
* Take `±n` RefreshTokens from the position of the cursor.
|
|
50156
51458
|
*/
|
|
50157
51459
|
take?: number
|
|
50158
51460
|
/**
|
|
50159
51461
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
50160
51462
|
*
|
|
50161
|
-
* Skip the first `n`
|
|
51463
|
+
* Skip the first `n` RefreshTokens.
|
|
50162
51464
|
*/
|
|
50163
51465
|
skip?: number
|
|
50164
51466
|
/**
|
|
50165
51467
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
50166
51468
|
*
|
|
50167
|
-
* Filter by unique combinations of
|
|
51469
|
+
* Filter by unique combinations of RefreshTokens.
|
|
50168
51470
|
*/
|
|
50169
|
-
distinct?:
|
|
51471
|
+
distinct?: RefreshTokenScalarFieldEnum | RefreshTokenScalarFieldEnum[]
|
|
50170
51472
|
}
|
|
50171
51473
|
|
|
50172
51474
|
/**
|
|
50173
|
-
*
|
|
51475
|
+
* RefreshToken findFirstOrThrow
|
|
50174
51476
|
*/
|
|
50175
|
-
export type
|
|
51477
|
+
export type RefreshTokenFindFirstOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
50176
51478
|
/**
|
|
50177
|
-
* Select specific fields to fetch from the
|
|
51479
|
+
* Select specific fields to fetch from the RefreshToken
|
|
50178
51480
|
*/
|
|
50179
|
-
select?:
|
|
51481
|
+
select?: RefreshTokenSelect<ExtArgs> | null
|
|
50180
51482
|
/**
|
|
50181
|
-
* Omit specific fields from the
|
|
51483
|
+
* Omit specific fields from the RefreshToken
|
|
50182
51484
|
*/
|
|
50183
|
-
omit?:
|
|
51485
|
+
omit?: RefreshTokenOmit<ExtArgs> | null
|
|
50184
51486
|
/**
|
|
50185
51487
|
* Choose, which related nodes to fetch as well
|
|
50186
51488
|
*/
|
|
50187
|
-
include?:
|
|
51489
|
+
include?: RefreshTokenInclude<ExtArgs> | null
|
|
50188
51490
|
/**
|
|
50189
|
-
* Filter, which
|
|
51491
|
+
* Filter, which RefreshToken to fetch.
|
|
50190
51492
|
*/
|
|
50191
|
-
where?:
|
|
51493
|
+
where?: RefreshTokenWhereInput
|
|
50192
51494
|
/**
|
|
50193
51495
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
50194
51496
|
*
|
|
50195
|
-
* Determine the order of
|
|
51497
|
+
* Determine the order of RefreshTokens to fetch.
|
|
50196
51498
|
*/
|
|
50197
|
-
orderBy?:
|
|
51499
|
+
orderBy?: RefreshTokenOrderByWithRelationInput | RefreshTokenOrderByWithRelationInput[]
|
|
50198
51500
|
/**
|
|
50199
51501
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
50200
51502
|
*
|
|
50201
|
-
* Sets the position for searching for
|
|
51503
|
+
* Sets the position for searching for RefreshTokens.
|
|
50202
51504
|
*/
|
|
50203
|
-
cursor?:
|
|
51505
|
+
cursor?: RefreshTokenWhereUniqueInput
|
|
50204
51506
|
/**
|
|
50205
51507
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
50206
51508
|
*
|
|
50207
|
-
* Take `±n`
|
|
51509
|
+
* Take `±n` RefreshTokens from the position of the cursor.
|
|
50208
51510
|
*/
|
|
50209
51511
|
take?: number
|
|
50210
51512
|
/**
|
|
50211
51513
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
50212
51514
|
*
|
|
50213
|
-
* Skip the first `n`
|
|
51515
|
+
* Skip the first `n` RefreshTokens.
|
|
50214
51516
|
*/
|
|
50215
51517
|
skip?: number
|
|
50216
51518
|
/**
|
|
50217
51519
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
50218
51520
|
*
|
|
50219
|
-
* Filter by unique combinations of
|
|
51521
|
+
* Filter by unique combinations of RefreshTokens.
|
|
50220
51522
|
*/
|
|
50221
|
-
distinct?:
|
|
51523
|
+
distinct?: RefreshTokenScalarFieldEnum | RefreshTokenScalarFieldEnum[]
|
|
50222
51524
|
}
|
|
50223
51525
|
|
|
50224
51526
|
/**
|
|
50225
|
-
*
|
|
51527
|
+
* RefreshToken findMany
|
|
50226
51528
|
*/
|
|
50227
|
-
export type
|
|
51529
|
+
export type RefreshTokenFindManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
50228
51530
|
/**
|
|
50229
|
-
* Select specific fields to fetch from the
|
|
51531
|
+
* Select specific fields to fetch from the RefreshToken
|
|
50230
51532
|
*/
|
|
50231
|
-
select?:
|
|
51533
|
+
select?: RefreshTokenSelect<ExtArgs> | null
|
|
50232
51534
|
/**
|
|
50233
|
-
* Omit specific fields from the
|
|
51535
|
+
* Omit specific fields from the RefreshToken
|
|
50234
51536
|
*/
|
|
50235
|
-
omit?:
|
|
51537
|
+
omit?: RefreshTokenOmit<ExtArgs> | null
|
|
50236
51538
|
/**
|
|
50237
51539
|
* Choose, which related nodes to fetch as well
|
|
50238
51540
|
*/
|
|
50239
|
-
include?:
|
|
51541
|
+
include?: RefreshTokenInclude<ExtArgs> | null
|
|
50240
51542
|
/**
|
|
50241
|
-
* Filter, which
|
|
51543
|
+
* Filter, which RefreshTokens to fetch.
|
|
50242
51544
|
*/
|
|
50243
|
-
where?:
|
|
51545
|
+
where?: RefreshTokenWhereInput
|
|
50244
51546
|
/**
|
|
50245
51547
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
50246
51548
|
*
|
|
50247
|
-
* Determine the order of
|
|
51549
|
+
* Determine the order of RefreshTokens to fetch.
|
|
50248
51550
|
*/
|
|
50249
|
-
orderBy?:
|
|
51551
|
+
orderBy?: RefreshTokenOrderByWithRelationInput | RefreshTokenOrderByWithRelationInput[]
|
|
50250
51552
|
/**
|
|
50251
51553
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
50252
51554
|
*
|
|
50253
|
-
* Sets the position for listing
|
|
51555
|
+
* Sets the position for listing RefreshTokens.
|
|
50254
51556
|
*/
|
|
50255
|
-
cursor?:
|
|
51557
|
+
cursor?: RefreshTokenWhereUniqueInput
|
|
50256
51558
|
/**
|
|
50257
51559
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
50258
51560
|
*
|
|
50259
|
-
* Take `±n`
|
|
51561
|
+
* Take `±n` RefreshTokens from the position of the cursor.
|
|
50260
51562
|
*/
|
|
50261
51563
|
take?: number
|
|
50262
51564
|
/**
|
|
50263
51565
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
50264
51566
|
*
|
|
50265
|
-
* Skip the first `n`
|
|
51567
|
+
* Skip the first `n` RefreshTokens.
|
|
50266
51568
|
*/
|
|
50267
51569
|
skip?: number
|
|
50268
|
-
distinct?:
|
|
51570
|
+
distinct?: RefreshTokenScalarFieldEnum | RefreshTokenScalarFieldEnum[]
|
|
50269
51571
|
}
|
|
50270
51572
|
|
|
50271
51573
|
/**
|
|
50272
|
-
*
|
|
51574
|
+
* RefreshToken create
|
|
50273
51575
|
*/
|
|
50274
|
-
export type
|
|
51576
|
+
export type RefreshTokenCreateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
50275
51577
|
/**
|
|
50276
|
-
* Select specific fields to fetch from the
|
|
51578
|
+
* Select specific fields to fetch from the RefreshToken
|
|
50277
51579
|
*/
|
|
50278
|
-
select?:
|
|
51580
|
+
select?: RefreshTokenSelect<ExtArgs> | null
|
|
50279
51581
|
/**
|
|
50280
|
-
* Omit specific fields from the
|
|
51582
|
+
* Omit specific fields from the RefreshToken
|
|
50281
51583
|
*/
|
|
50282
|
-
omit?:
|
|
51584
|
+
omit?: RefreshTokenOmit<ExtArgs> | null
|
|
50283
51585
|
/**
|
|
50284
51586
|
* Choose, which related nodes to fetch as well
|
|
50285
51587
|
*/
|
|
50286
|
-
include?:
|
|
51588
|
+
include?: RefreshTokenInclude<ExtArgs> | null
|
|
50287
51589
|
/**
|
|
50288
|
-
* The data needed to create a
|
|
51590
|
+
* The data needed to create a RefreshToken.
|
|
50289
51591
|
*/
|
|
50290
|
-
data: XOR<
|
|
51592
|
+
data: XOR<RefreshTokenCreateInput, RefreshTokenUncheckedCreateInput>
|
|
50291
51593
|
}
|
|
50292
51594
|
|
|
50293
51595
|
/**
|
|
50294
|
-
*
|
|
51596
|
+
* RefreshToken createMany
|
|
50295
51597
|
*/
|
|
50296
|
-
export type
|
|
51598
|
+
export type RefreshTokenCreateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
50297
51599
|
/**
|
|
50298
|
-
* The data used to create many
|
|
51600
|
+
* The data used to create many RefreshTokens.
|
|
50299
51601
|
*/
|
|
50300
|
-
data:
|
|
51602
|
+
data: RefreshTokenCreateManyInput | RefreshTokenCreateManyInput[]
|
|
50301
51603
|
skipDuplicates?: boolean
|
|
50302
51604
|
}
|
|
50303
51605
|
|
|
50304
51606
|
/**
|
|
50305
|
-
*
|
|
51607
|
+
* RefreshToken createManyAndReturn
|
|
50306
51608
|
*/
|
|
50307
|
-
export type
|
|
51609
|
+
export type RefreshTokenCreateManyAndReturnArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
50308
51610
|
/**
|
|
50309
|
-
* Select specific fields to fetch from the
|
|
51611
|
+
* Select specific fields to fetch from the RefreshToken
|
|
50310
51612
|
*/
|
|
50311
|
-
select?:
|
|
51613
|
+
select?: RefreshTokenSelectCreateManyAndReturn<ExtArgs> | null
|
|
50312
51614
|
/**
|
|
50313
|
-
* Omit specific fields from the
|
|
51615
|
+
* Omit specific fields from the RefreshToken
|
|
50314
51616
|
*/
|
|
50315
|
-
omit?:
|
|
51617
|
+
omit?: RefreshTokenOmit<ExtArgs> | null
|
|
50316
51618
|
/**
|
|
50317
|
-
* The data used to create many
|
|
51619
|
+
* The data used to create many RefreshTokens.
|
|
50318
51620
|
*/
|
|
50319
|
-
data:
|
|
51621
|
+
data: RefreshTokenCreateManyInput | RefreshTokenCreateManyInput[]
|
|
50320
51622
|
skipDuplicates?: boolean
|
|
50321
51623
|
/**
|
|
50322
51624
|
* Choose, which related nodes to fetch as well
|
|
50323
51625
|
*/
|
|
50324
|
-
include?:
|
|
51626
|
+
include?: RefreshTokenIncludeCreateManyAndReturn<ExtArgs> | null
|
|
50325
51627
|
}
|
|
50326
51628
|
|
|
50327
51629
|
/**
|
|
50328
|
-
*
|
|
51630
|
+
* RefreshToken update
|
|
50329
51631
|
*/
|
|
50330
|
-
export type
|
|
51632
|
+
export type RefreshTokenUpdateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
50331
51633
|
/**
|
|
50332
|
-
* Select specific fields to fetch from the
|
|
51634
|
+
* Select specific fields to fetch from the RefreshToken
|
|
50333
51635
|
*/
|
|
50334
|
-
select?:
|
|
51636
|
+
select?: RefreshTokenSelect<ExtArgs> | null
|
|
50335
51637
|
/**
|
|
50336
|
-
* Omit specific fields from the
|
|
51638
|
+
* Omit specific fields from the RefreshToken
|
|
50337
51639
|
*/
|
|
50338
|
-
omit?:
|
|
51640
|
+
omit?: RefreshTokenOmit<ExtArgs> | null
|
|
50339
51641
|
/**
|
|
50340
51642
|
* Choose, which related nodes to fetch as well
|
|
50341
51643
|
*/
|
|
50342
|
-
include?:
|
|
51644
|
+
include?: RefreshTokenInclude<ExtArgs> | null
|
|
50343
51645
|
/**
|
|
50344
|
-
* The data needed to update a
|
|
51646
|
+
* The data needed to update a RefreshToken.
|
|
50345
51647
|
*/
|
|
50346
|
-
data: XOR<
|
|
51648
|
+
data: XOR<RefreshTokenUpdateInput, RefreshTokenUncheckedUpdateInput>
|
|
50347
51649
|
/**
|
|
50348
|
-
* Choose, which
|
|
51650
|
+
* Choose, which RefreshToken to update.
|
|
50349
51651
|
*/
|
|
50350
|
-
where:
|
|
51652
|
+
where: RefreshTokenWhereUniqueInput
|
|
50351
51653
|
}
|
|
50352
51654
|
|
|
50353
51655
|
/**
|
|
50354
|
-
*
|
|
51656
|
+
* RefreshToken updateMany
|
|
50355
51657
|
*/
|
|
50356
|
-
export type
|
|
51658
|
+
export type RefreshTokenUpdateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
50357
51659
|
/**
|
|
50358
|
-
* The data used to update
|
|
51660
|
+
* The data used to update RefreshTokens.
|
|
50359
51661
|
*/
|
|
50360
|
-
data: XOR<
|
|
51662
|
+
data: XOR<RefreshTokenUpdateManyMutationInput, RefreshTokenUncheckedUpdateManyInput>
|
|
50361
51663
|
/**
|
|
50362
|
-
* Filter which
|
|
51664
|
+
* Filter which RefreshTokens to update
|
|
50363
51665
|
*/
|
|
50364
|
-
where?:
|
|
51666
|
+
where?: RefreshTokenWhereInput
|
|
50365
51667
|
/**
|
|
50366
|
-
* Limit how many
|
|
51668
|
+
* Limit how many RefreshTokens to update.
|
|
50367
51669
|
*/
|
|
50368
51670
|
limit?: number
|
|
50369
51671
|
}
|
|
50370
51672
|
|
|
50371
51673
|
/**
|
|
50372
|
-
*
|
|
51674
|
+
* RefreshToken updateManyAndReturn
|
|
50373
51675
|
*/
|
|
50374
|
-
export type
|
|
51676
|
+
export type RefreshTokenUpdateManyAndReturnArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
50375
51677
|
/**
|
|
50376
|
-
* Select specific fields to fetch from the
|
|
51678
|
+
* Select specific fields to fetch from the RefreshToken
|
|
50377
51679
|
*/
|
|
50378
|
-
select?:
|
|
51680
|
+
select?: RefreshTokenSelectUpdateManyAndReturn<ExtArgs> | null
|
|
50379
51681
|
/**
|
|
50380
|
-
* Omit specific fields from the
|
|
51682
|
+
* Omit specific fields from the RefreshToken
|
|
50381
51683
|
*/
|
|
50382
|
-
omit?:
|
|
51684
|
+
omit?: RefreshTokenOmit<ExtArgs> | null
|
|
50383
51685
|
/**
|
|
50384
|
-
* The data used to update
|
|
51686
|
+
* The data used to update RefreshTokens.
|
|
50385
51687
|
*/
|
|
50386
|
-
data: XOR<
|
|
51688
|
+
data: XOR<RefreshTokenUpdateManyMutationInput, RefreshTokenUncheckedUpdateManyInput>
|
|
50387
51689
|
/**
|
|
50388
|
-
* Filter which
|
|
51690
|
+
* Filter which RefreshTokens to update
|
|
50389
51691
|
*/
|
|
50390
|
-
where?:
|
|
51692
|
+
where?: RefreshTokenWhereInput
|
|
50391
51693
|
/**
|
|
50392
|
-
* Limit how many
|
|
51694
|
+
* Limit how many RefreshTokens to update.
|
|
50393
51695
|
*/
|
|
50394
51696
|
limit?: number
|
|
50395
51697
|
/**
|
|
50396
51698
|
* Choose, which related nodes to fetch as well
|
|
50397
51699
|
*/
|
|
50398
|
-
include?:
|
|
51700
|
+
include?: RefreshTokenIncludeUpdateManyAndReturn<ExtArgs> | null
|
|
50399
51701
|
}
|
|
50400
51702
|
|
|
50401
51703
|
/**
|
|
50402
|
-
*
|
|
51704
|
+
* RefreshToken upsert
|
|
50403
51705
|
*/
|
|
50404
|
-
export type
|
|
51706
|
+
export type RefreshTokenUpsertArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
50405
51707
|
/**
|
|
50406
|
-
* Select specific fields to fetch from the
|
|
51708
|
+
* Select specific fields to fetch from the RefreshToken
|
|
50407
51709
|
*/
|
|
50408
|
-
select?:
|
|
51710
|
+
select?: RefreshTokenSelect<ExtArgs> | null
|
|
50409
51711
|
/**
|
|
50410
|
-
* Omit specific fields from the
|
|
51712
|
+
* Omit specific fields from the RefreshToken
|
|
50411
51713
|
*/
|
|
50412
|
-
omit?:
|
|
51714
|
+
omit?: RefreshTokenOmit<ExtArgs> | null
|
|
50413
51715
|
/**
|
|
50414
51716
|
* Choose, which related nodes to fetch as well
|
|
50415
51717
|
*/
|
|
50416
|
-
include?:
|
|
51718
|
+
include?: RefreshTokenInclude<ExtArgs> | null
|
|
50417
51719
|
/**
|
|
50418
|
-
* The filter to search for the
|
|
51720
|
+
* The filter to search for the RefreshToken to update in case it exists.
|
|
50419
51721
|
*/
|
|
50420
|
-
where:
|
|
51722
|
+
where: RefreshTokenWhereUniqueInput
|
|
50421
51723
|
/**
|
|
50422
|
-
* In case the
|
|
51724
|
+
* In case the RefreshToken found by the `where` argument doesn't exist, create a new RefreshToken with this data.
|
|
50423
51725
|
*/
|
|
50424
|
-
create: XOR<
|
|
51726
|
+
create: XOR<RefreshTokenCreateInput, RefreshTokenUncheckedCreateInput>
|
|
50425
51727
|
/**
|
|
50426
|
-
* In case the
|
|
51728
|
+
* In case the RefreshToken was found with the provided `where` argument, update it with this data.
|
|
50427
51729
|
*/
|
|
50428
|
-
update: XOR<
|
|
51730
|
+
update: XOR<RefreshTokenUpdateInput, RefreshTokenUncheckedUpdateInput>
|
|
50429
51731
|
}
|
|
50430
51732
|
|
|
50431
51733
|
/**
|
|
50432
|
-
*
|
|
51734
|
+
* RefreshToken delete
|
|
50433
51735
|
*/
|
|
50434
|
-
export type
|
|
51736
|
+
export type RefreshTokenDeleteArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
50435
51737
|
/**
|
|
50436
|
-
* Select specific fields to fetch from the
|
|
51738
|
+
* Select specific fields to fetch from the RefreshToken
|
|
50437
51739
|
*/
|
|
50438
|
-
select?:
|
|
51740
|
+
select?: RefreshTokenSelect<ExtArgs> | null
|
|
50439
51741
|
/**
|
|
50440
|
-
* Omit specific fields from the
|
|
51742
|
+
* Omit specific fields from the RefreshToken
|
|
50441
51743
|
*/
|
|
50442
|
-
omit?:
|
|
51744
|
+
omit?: RefreshTokenOmit<ExtArgs> | null
|
|
50443
51745
|
/**
|
|
50444
51746
|
* Choose, which related nodes to fetch as well
|
|
50445
51747
|
*/
|
|
50446
|
-
include?:
|
|
51748
|
+
include?: RefreshTokenInclude<ExtArgs> | null
|
|
50447
51749
|
/**
|
|
50448
|
-
* Filter which
|
|
51750
|
+
* Filter which RefreshToken to delete.
|
|
50449
51751
|
*/
|
|
50450
|
-
where:
|
|
51752
|
+
where: RefreshTokenWhereUniqueInput
|
|
50451
51753
|
}
|
|
50452
51754
|
|
|
50453
51755
|
/**
|
|
50454
|
-
*
|
|
51756
|
+
* RefreshToken deleteMany
|
|
50455
51757
|
*/
|
|
50456
|
-
export type
|
|
51758
|
+
export type RefreshTokenDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
50457
51759
|
/**
|
|
50458
|
-
* Filter which
|
|
51760
|
+
* Filter which RefreshTokens to delete
|
|
50459
51761
|
*/
|
|
50460
|
-
where?:
|
|
51762
|
+
where?: RefreshTokenWhereInput
|
|
50461
51763
|
/**
|
|
50462
|
-
* Limit how many
|
|
51764
|
+
* Limit how many RefreshTokens to delete.
|
|
50463
51765
|
*/
|
|
50464
51766
|
limit?: number
|
|
50465
51767
|
}
|
|
50466
51768
|
|
|
50467
51769
|
/**
|
|
50468
|
-
*
|
|
50469
|
-
*/
|
|
50470
|
-
export type Question$candidateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
50471
|
-
/**
|
|
50472
|
-
* Select specific fields to fetch from the User
|
|
50473
|
-
*/
|
|
50474
|
-
select?: UserSelect<ExtArgs> | null
|
|
50475
|
-
/**
|
|
50476
|
-
* Omit specific fields from the User
|
|
50477
|
-
*/
|
|
50478
|
-
omit?: UserOmit<ExtArgs> | null
|
|
50479
|
-
/**
|
|
50480
|
-
* Choose, which related nodes to fetch as well
|
|
50481
|
-
*/
|
|
50482
|
-
include?: UserInclude<ExtArgs> | null
|
|
50483
|
-
where?: UserWhereInput
|
|
50484
|
-
}
|
|
50485
|
-
|
|
50486
|
-
/**
|
|
50487
|
-
* Question.assessments
|
|
50488
|
-
*/
|
|
50489
|
-
export type Question$assessmentsArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
50490
|
-
/**
|
|
50491
|
-
* Select specific fields to fetch from the AssessmentQuestion
|
|
50492
|
-
*/
|
|
50493
|
-
select?: AssessmentQuestionSelect<ExtArgs> | null
|
|
50494
|
-
/**
|
|
50495
|
-
* Omit specific fields from the AssessmentQuestion
|
|
50496
|
-
*/
|
|
50497
|
-
omit?: AssessmentQuestionOmit<ExtArgs> | null
|
|
50498
|
-
/**
|
|
50499
|
-
* Choose, which related nodes to fetch as well
|
|
50500
|
-
*/
|
|
50501
|
-
include?: AssessmentQuestionInclude<ExtArgs> | null
|
|
50502
|
-
where?: AssessmentQuestionWhereInput
|
|
50503
|
-
orderBy?: AssessmentQuestionOrderByWithRelationInput | AssessmentQuestionOrderByWithRelationInput[]
|
|
50504
|
-
cursor?: AssessmentQuestionWhereUniqueInput
|
|
50505
|
-
take?: number
|
|
50506
|
-
skip?: number
|
|
50507
|
-
distinct?: AssessmentQuestionScalarFieldEnum | AssessmentQuestionScalarFieldEnum[]
|
|
50508
|
-
}
|
|
50509
|
-
|
|
50510
|
-
/**
|
|
50511
|
-
* Question.assessmentLibrary
|
|
50512
|
-
*/
|
|
50513
|
-
export type Question$assessmentLibraryArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
50514
|
-
/**
|
|
50515
|
-
* Select specific fields to fetch from the AssessmentLibrary
|
|
50516
|
-
*/
|
|
50517
|
-
select?: AssessmentLibrarySelect<ExtArgs> | null
|
|
50518
|
-
/**
|
|
50519
|
-
* Omit specific fields from the AssessmentLibrary
|
|
50520
|
-
*/
|
|
50521
|
-
omit?: AssessmentLibraryOmit<ExtArgs> | null
|
|
50522
|
-
/**
|
|
50523
|
-
* Choose, which related nodes to fetch as well
|
|
50524
|
-
*/
|
|
50525
|
-
include?: AssessmentLibraryInclude<ExtArgs> | null
|
|
50526
|
-
where?: AssessmentLibraryWhereInput
|
|
50527
|
-
}
|
|
50528
|
-
|
|
50529
|
-
/**
|
|
50530
|
-
* Question.evaluationPlan
|
|
51770
|
+
* RefreshToken without action
|
|
50531
51771
|
*/
|
|
50532
|
-
export type
|
|
50533
|
-
/**
|
|
50534
|
-
* Select specific fields to fetch from the EvaluationPlan
|
|
50535
|
-
*/
|
|
50536
|
-
select?: EvaluationPlanSelect<ExtArgs> | null
|
|
50537
|
-
/**
|
|
50538
|
-
* Omit specific fields from the EvaluationPlan
|
|
50539
|
-
*/
|
|
50540
|
-
omit?: EvaluationPlanOmit<ExtArgs> | null
|
|
51772
|
+
export type RefreshTokenDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
50541
51773
|
/**
|
|
50542
|
-
*
|
|
51774
|
+
* Select specific fields to fetch from the RefreshToken
|
|
50543
51775
|
*/
|
|
50544
|
-
|
|
50545
|
-
where?: EvaluationPlanWhereInput
|
|
50546
|
-
}
|
|
50547
|
-
|
|
50548
|
-
/**
|
|
50549
|
-
* Question.candidateResponse
|
|
50550
|
-
*/
|
|
50551
|
-
export type Question$candidateResponseArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
51776
|
+
select?: RefreshTokenSelect<ExtArgs> | null
|
|
50552
51777
|
/**
|
|
50553
|
-
*
|
|
50554
|
-
*/
|
|
50555
|
-
select?: CandidateQuestionResponseSelect<ExtArgs> | null
|
|
50556
|
-
/**
|
|
50557
|
-
* Omit specific fields from the CandidateQuestionResponse
|
|
50558
|
-
*/
|
|
50559
|
-
omit?: CandidateQuestionResponseOmit<ExtArgs> | null
|
|
50560
|
-
/**
|
|
50561
|
-
* Choose, which related nodes to fetch as well
|
|
50562
|
-
*/
|
|
50563
|
-
include?: CandidateQuestionResponseInclude<ExtArgs> | null
|
|
50564
|
-
where?: CandidateQuestionResponseWhereInput
|
|
50565
|
-
orderBy?: CandidateQuestionResponseOrderByWithRelationInput | CandidateQuestionResponseOrderByWithRelationInput[]
|
|
50566
|
-
cursor?: CandidateQuestionResponseWhereUniqueInput
|
|
50567
|
-
take?: number
|
|
50568
|
-
skip?: number
|
|
50569
|
-
distinct?: CandidateQuestionResponseScalarFieldEnum | CandidateQuestionResponseScalarFieldEnum[]
|
|
50570
|
-
}
|
|
50571
|
-
|
|
50572
|
-
/**
|
|
50573
|
-
* Question without action
|
|
50574
|
-
*/
|
|
50575
|
-
export type QuestionDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
50576
|
-
/**
|
|
50577
|
-
* Select specific fields to fetch from the Question
|
|
50578
|
-
*/
|
|
50579
|
-
select?: QuestionSelect<ExtArgs> | null
|
|
50580
|
-
/**
|
|
50581
|
-
* Omit specific fields from the Question
|
|
51778
|
+
* Omit specific fields from the RefreshToken
|
|
50582
51779
|
*/
|
|
50583
|
-
omit?:
|
|
51780
|
+
omit?: RefreshTokenOmit<ExtArgs> | null
|
|
50584
51781
|
/**
|
|
50585
51782
|
* Choose, which related nodes to fetch as well
|
|
50586
51783
|
*/
|
|
50587
|
-
include?:
|
|
51784
|
+
include?: RefreshTokenInclude<ExtArgs> | null
|
|
50588
51785
|
}
|
|
50589
51786
|
|
|
50590
51787
|
|
|
@@ -50614,6 +51811,7 @@ export namespace Prisma {
|
|
|
50614
51811
|
organisation_id: string | null
|
|
50615
51812
|
job_description_id: string | null
|
|
50616
51813
|
uploaded_resume_path: string | null
|
|
51814
|
+
file_hash: string | null
|
|
50617
51815
|
created_at: Date | null
|
|
50618
51816
|
updated_at: Date | null
|
|
50619
51817
|
created_by: string | null
|
|
@@ -50629,6 +51827,7 @@ export namespace Prisma {
|
|
|
50629
51827
|
organisation_id: string | null
|
|
50630
51828
|
job_description_id: string | null
|
|
50631
51829
|
uploaded_resume_path: string | null
|
|
51830
|
+
file_hash: string | null
|
|
50632
51831
|
created_at: Date | null
|
|
50633
51832
|
updated_at: Date | null
|
|
50634
51833
|
created_by: string | null
|
|
@@ -50644,6 +51843,7 @@ export namespace Prisma {
|
|
|
50644
51843
|
organisation_id: number
|
|
50645
51844
|
job_description_id: number
|
|
50646
51845
|
uploaded_resume_path: number
|
|
51846
|
+
file_hash: number
|
|
50647
51847
|
summary: number
|
|
50648
51848
|
created_at: number
|
|
50649
51849
|
updated_at: number
|
|
@@ -50670,6 +51870,7 @@ export namespace Prisma {
|
|
|
50670
51870
|
organisation_id?: true
|
|
50671
51871
|
job_description_id?: true
|
|
50672
51872
|
uploaded_resume_path?: true
|
|
51873
|
+
file_hash?: true
|
|
50673
51874
|
created_at?: true
|
|
50674
51875
|
updated_at?: true
|
|
50675
51876
|
created_by?: true
|
|
@@ -50685,6 +51886,7 @@ export namespace Prisma {
|
|
|
50685
51886
|
organisation_id?: true
|
|
50686
51887
|
job_description_id?: true
|
|
50687
51888
|
uploaded_resume_path?: true
|
|
51889
|
+
file_hash?: true
|
|
50688
51890
|
created_at?: true
|
|
50689
51891
|
updated_at?: true
|
|
50690
51892
|
created_by?: true
|
|
@@ -50700,6 +51902,7 @@ export namespace Prisma {
|
|
|
50700
51902
|
organisation_id?: true
|
|
50701
51903
|
job_description_id?: true
|
|
50702
51904
|
uploaded_resume_path?: true
|
|
51905
|
+
file_hash?: true
|
|
50703
51906
|
summary?: true
|
|
50704
51907
|
created_at?: true
|
|
50705
51908
|
updated_at?: true
|
|
@@ -50803,6 +52006,7 @@ export namespace Prisma {
|
|
|
50803
52006
|
organisation_id: string | null
|
|
50804
52007
|
job_description_id: string | null
|
|
50805
52008
|
uploaded_resume_path: string | null
|
|
52009
|
+
file_hash: string | null
|
|
50806
52010
|
summary: JsonValue | null
|
|
50807
52011
|
created_at: Date
|
|
50808
52012
|
updated_at: Date
|
|
@@ -50838,6 +52042,7 @@ export namespace Prisma {
|
|
|
50838
52042
|
organisation_id?: boolean
|
|
50839
52043
|
job_description_id?: boolean
|
|
50840
52044
|
uploaded_resume_path?: boolean
|
|
52045
|
+
file_hash?: boolean
|
|
50841
52046
|
summary?: boolean
|
|
50842
52047
|
created_at?: boolean
|
|
50843
52048
|
updated_at?: boolean
|
|
@@ -50864,6 +52069,7 @@ export namespace Prisma {
|
|
|
50864
52069
|
organisation_id?: boolean
|
|
50865
52070
|
job_description_id?: boolean
|
|
50866
52071
|
uploaded_resume_path?: boolean
|
|
52072
|
+
file_hash?: boolean
|
|
50867
52073
|
summary?: boolean
|
|
50868
52074
|
created_at?: boolean
|
|
50869
52075
|
updated_at?: boolean
|
|
@@ -50883,6 +52089,7 @@ export namespace Prisma {
|
|
|
50883
52089
|
organisation_id?: boolean
|
|
50884
52090
|
job_description_id?: boolean
|
|
50885
52091
|
uploaded_resume_path?: boolean
|
|
52092
|
+
file_hash?: boolean
|
|
50886
52093
|
summary?: boolean
|
|
50887
52094
|
created_at?: boolean
|
|
50888
52095
|
updated_at?: boolean
|
|
@@ -50902,6 +52109,7 @@ export namespace Prisma {
|
|
|
50902
52109
|
organisation_id?: boolean
|
|
50903
52110
|
job_description_id?: boolean
|
|
50904
52111
|
uploaded_resume_path?: boolean
|
|
52112
|
+
file_hash?: boolean
|
|
50905
52113
|
summary?: boolean
|
|
50906
52114
|
created_at?: boolean
|
|
50907
52115
|
updated_at?: boolean
|
|
@@ -50912,7 +52120,7 @@ export namespace Prisma {
|
|
|
50912
52120
|
yearsOfExperience?: boolean
|
|
50913
52121
|
}
|
|
50914
52122
|
|
|
50915
|
-
export type ResumeOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "user_id" | "organisation_id" | "job_description_id" | "uploaded_resume_path" | "summary" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active" | "name" | "yearsOfExperience", ExtArgs["result"]["resume"]>
|
|
52123
|
+
export type ResumeOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "user_id" | "organisation_id" | "job_description_id" | "uploaded_resume_path" | "file_hash" | "summary" | "created_at" | "updated_at" | "created_by" | "updated_by" | "is_active" | "name" | "yearsOfExperience", ExtArgs["result"]["resume"]>
|
|
50916
52124
|
export type ResumeInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
50917
52125
|
user?: boolean | Resume$userArgs<ExtArgs>
|
|
50918
52126
|
organisation?: boolean | Resume$organisationArgs<ExtArgs>
|
|
@@ -50955,6 +52163,7 @@ export namespace Prisma {
|
|
|
50955
52163
|
organisation_id: string | null
|
|
50956
52164
|
job_description_id: string | null
|
|
50957
52165
|
uploaded_resume_path: string | null
|
|
52166
|
+
file_hash: string | null
|
|
50958
52167
|
summary: Prisma.JsonValue | null
|
|
50959
52168
|
created_at: Date
|
|
50960
52169
|
updated_at: Date
|
|
@@ -51400,6 +52609,7 @@ export namespace Prisma {
|
|
|
51400
52609
|
readonly organisation_id: FieldRef<"Resume", 'String'>
|
|
51401
52610
|
readonly job_description_id: FieldRef<"Resume", 'String'>
|
|
51402
52611
|
readonly uploaded_resume_path: FieldRef<"Resume", 'String'>
|
|
52612
|
+
readonly file_hash: FieldRef<"Resume", 'String'>
|
|
51403
52613
|
readonly summary: FieldRef<"Resume", 'Json'>
|
|
51404
52614
|
readonly created_at: FieldRef<"Resume", 'DateTime'>
|
|
51405
52615
|
readonly updated_at: FieldRef<"Resume", 'DateTime'>
|
|
@@ -56015,6 +57225,7 @@ export namespace Prisma {
|
|
|
56015
57225
|
created_job_profiles?: boolean | User$created_job_profilesArgs<ExtArgs>
|
|
56016
57226
|
assigned_job_profiles?: boolean | User$assigned_job_profilesArgs<ExtArgs>
|
|
56017
57227
|
user_auth_modules?: boolean | User$user_auth_modulesArgs<ExtArgs>
|
|
57228
|
+
refresh_token_auth?: boolean | User$refresh_token_authArgs<ExtArgs>
|
|
56018
57229
|
_count?: boolean | UserCountOutputTypeDefaultArgs<ExtArgs>
|
|
56019
57230
|
}, ExtArgs["result"]["user"]>
|
|
56020
57231
|
|
|
@@ -56162,6 +57373,7 @@ export namespace Prisma {
|
|
|
56162
57373
|
created_job_profiles?: boolean | User$created_job_profilesArgs<ExtArgs>
|
|
56163
57374
|
assigned_job_profiles?: boolean | User$assigned_job_profilesArgs<ExtArgs>
|
|
56164
57375
|
user_auth_modules?: boolean | User$user_auth_modulesArgs<ExtArgs>
|
|
57376
|
+
refresh_token_auth?: boolean | User$refresh_token_authArgs<ExtArgs>
|
|
56165
57377
|
_count?: boolean | UserCountOutputTypeDefaultArgs<ExtArgs>
|
|
56166
57378
|
}
|
|
56167
57379
|
export type UserIncludeCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -56209,6 +57421,7 @@ export namespace Prisma {
|
|
|
56209
57421
|
created_job_profiles: Prisma.$JobProfilePayload<ExtArgs>[]
|
|
56210
57422
|
assigned_job_profiles: Prisma.$JobProfilePayload<ExtArgs>[]
|
|
56211
57423
|
user_auth_modules: Prisma.$AuthModulePayload<ExtArgs>[]
|
|
57424
|
+
refresh_token_auth: Prisma.$RefreshTokenPayload<ExtArgs>[]
|
|
56212
57425
|
}
|
|
56213
57426
|
scalars: $Extensions.GetPayloadResult<{
|
|
56214
57427
|
id: string
|
|
@@ -56668,6 +57881,7 @@ export namespace Prisma {
|
|
|
56668
57881
|
created_job_profiles<T extends User$created_job_profilesArgs<ExtArgs> = {}>(args?: Subset<T, User$created_job_profilesArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$JobProfilePayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
56669
57882
|
assigned_job_profiles<T extends User$assigned_job_profilesArgs<ExtArgs> = {}>(args?: Subset<T, User$assigned_job_profilesArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$JobProfilePayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
56670
57883
|
user_auth_modules<T extends User$user_auth_modulesArgs<ExtArgs> = {}>(args?: Subset<T, User$user_auth_modulesArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$AuthModulePayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
57884
|
+
refresh_token_auth<T extends User$refresh_token_authArgs<ExtArgs> = {}>(args?: Subset<T, User$refresh_token_authArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$RefreshTokenPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
56671
57885
|
/**
|
|
56672
57886
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
56673
57887
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -57814,6 +59028,30 @@ export namespace Prisma {
|
|
|
57814
59028
|
distinct?: AuthModuleScalarFieldEnum | AuthModuleScalarFieldEnum[]
|
|
57815
59029
|
}
|
|
57816
59030
|
|
|
59031
|
+
/**
|
|
59032
|
+
* User.refresh_token_auth
|
|
59033
|
+
*/
|
|
59034
|
+
export type User$refresh_token_authArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
59035
|
+
/**
|
|
59036
|
+
* Select specific fields to fetch from the RefreshToken
|
|
59037
|
+
*/
|
|
59038
|
+
select?: RefreshTokenSelect<ExtArgs> | null
|
|
59039
|
+
/**
|
|
59040
|
+
* Omit specific fields from the RefreshToken
|
|
59041
|
+
*/
|
|
59042
|
+
omit?: RefreshTokenOmit<ExtArgs> | null
|
|
59043
|
+
/**
|
|
59044
|
+
* Choose, which related nodes to fetch as well
|
|
59045
|
+
*/
|
|
59046
|
+
include?: RefreshTokenInclude<ExtArgs> | null
|
|
59047
|
+
where?: RefreshTokenWhereInput
|
|
59048
|
+
orderBy?: RefreshTokenOrderByWithRelationInput | RefreshTokenOrderByWithRelationInput[]
|
|
59049
|
+
cursor?: RefreshTokenWhereUniqueInput
|
|
59050
|
+
take?: number
|
|
59051
|
+
skip?: number
|
|
59052
|
+
distinct?: RefreshTokenScalarFieldEnum | RefreshTokenScalarFieldEnum[]
|
|
59053
|
+
}
|
|
59054
|
+
|
|
57817
59055
|
/**
|
|
57818
59056
|
* User without action
|
|
57819
59057
|
*/
|
|
@@ -59211,6 +60449,7 @@ export namespace Prisma {
|
|
|
59211
60449
|
expires_at: 'expires_at',
|
|
59212
60450
|
token_type: 'token_type',
|
|
59213
60451
|
scope: 'scope',
|
|
60452
|
+
is_active: 'is_active',
|
|
59214
60453
|
created_at: 'created_at',
|
|
59215
60454
|
updated_at: 'updated_at'
|
|
59216
60455
|
};
|
|
@@ -59728,12 +60967,26 @@ export namespace Prisma {
|
|
|
59728
60967
|
export type QuestionScalarFieldEnum = (typeof QuestionScalarFieldEnum)[keyof typeof QuestionScalarFieldEnum]
|
|
59729
60968
|
|
|
59730
60969
|
|
|
60970
|
+
export const RefreshTokenScalarFieldEnum: {
|
|
60971
|
+
id: 'id',
|
|
60972
|
+
user_id: 'user_id',
|
|
60973
|
+
token: 'token',
|
|
60974
|
+
is_active: 'is_active',
|
|
60975
|
+
expires_at: 'expires_at',
|
|
60976
|
+
created_at: 'created_at',
|
|
60977
|
+
updated_at: 'updated_at'
|
|
60978
|
+
};
|
|
60979
|
+
|
|
60980
|
+
export type RefreshTokenScalarFieldEnum = (typeof RefreshTokenScalarFieldEnum)[keyof typeof RefreshTokenScalarFieldEnum]
|
|
60981
|
+
|
|
60982
|
+
|
|
59731
60983
|
export const ResumeScalarFieldEnum: {
|
|
59732
60984
|
id: 'id',
|
|
59733
60985
|
user_id: 'user_id',
|
|
59734
60986
|
organisation_id: 'organisation_id',
|
|
59735
60987
|
job_description_id: 'job_description_id',
|
|
59736
60988
|
uploaded_resume_path: 'uploaded_resume_path',
|
|
60989
|
+
file_hash: 'file_hash',
|
|
59737
60990
|
summary: 'summary',
|
|
59738
60991
|
created_at: 'created_at',
|
|
59739
60992
|
updated_at: 'updated_at',
|
|
@@ -61589,13 +62842,14 @@ export namespace Prisma {
|
|
|
61589
62842
|
id?: StringFilter<"AuthModule"> | string
|
|
61590
62843
|
user_id?: StringFilter<"AuthModule"> | string
|
|
61591
62844
|
provider?: EnumAuthProviderFilter<"AuthModule"> | $Enums.AuthProvider
|
|
61592
|
-
provider_account_id?:
|
|
62845
|
+
provider_account_id?: StringNullableFilter<"AuthModule"> | string | null
|
|
61593
62846
|
access_token?: StringNullableFilter<"AuthModule"> | string | null
|
|
61594
62847
|
refresh_token?: StringNullableFilter<"AuthModule"> | string | null
|
|
61595
62848
|
id_token?: StringNullableFilter<"AuthModule"> | string | null
|
|
61596
62849
|
expires_at?: DateTimeNullableFilter<"AuthModule"> | Date | string | null
|
|
61597
62850
|
token_type?: StringNullableFilter<"AuthModule"> | string | null
|
|
61598
62851
|
scope?: StringNullableFilter<"AuthModule"> | string | null
|
|
62852
|
+
is_active?: BoolFilter<"AuthModule"> | boolean
|
|
61599
62853
|
created_at?: DateTimeFilter<"AuthModule"> | Date | string
|
|
61600
62854
|
updated_at?: DateTimeFilter<"AuthModule"> | Date | string
|
|
61601
62855
|
user?: XOR<UserScalarRelationFilter, UserWhereInput>
|
|
@@ -61605,13 +62859,14 @@ export namespace Prisma {
|
|
|
61605
62859
|
id?: SortOrder
|
|
61606
62860
|
user_id?: SortOrder
|
|
61607
62861
|
provider?: SortOrder
|
|
61608
|
-
provider_account_id?: SortOrder
|
|
62862
|
+
provider_account_id?: SortOrderInput | SortOrder
|
|
61609
62863
|
access_token?: SortOrderInput | SortOrder
|
|
61610
62864
|
refresh_token?: SortOrderInput | SortOrder
|
|
61611
62865
|
id_token?: SortOrderInput | SortOrder
|
|
61612
62866
|
expires_at?: SortOrderInput | SortOrder
|
|
61613
62867
|
token_type?: SortOrderInput | SortOrder
|
|
61614
62868
|
scope?: SortOrderInput | SortOrder
|
|
62869
|
+
is_active?: SortOrder
|
|
61615
62870
|
created_at?: SortOrder
|
|
61616
62871
|
updated_at?: SortOrder
|
|
61617
62872
|
user?: UserOrderByWithRelationInput
|
|
@@ -61625,13 +62880,14 @@ export namespace Prisma {
|
|
|
61625
62880
|
NOT?: AuthModuleWhereInput | AuthModuleWhereInput[]
|
|
61626
62881
|
user_id?: StringFilter<"AuthModule"> | string
|
|
61627
62882
|
provider?: EnumAuthProviderFilter<"AuthModule"> | $Enums.AuthProvider
|
|
61628
|
-
provider_account_id?:
|
|
62883
|
+
provider_account_id?: StringNullableFilter<"AuthModule"> | string | null
|
|
61629
62884
|
access_token?: StringNullableFilter<"AuthModule"> | string | null
|
|
61630
62885
|
refresh_token?: StringNullableFilter<"AuthModule"> | string | null
|
|
61631
62886
|
id_token?: StringNullableFilter<"AuthModule"> | string | null
|
|
61632
62887
|
expires_at?: DateTimeNullableFilter<"AuthModule"> | Date | string | null
|
|
61633
62888
|
token_type?: StringNullableFilter<"AuthModule"> | string | null
|
|
61634
62889
|
scope?: StringNullableFilter<"AuthModule"> | string | null
|
|
62890
|
+
is_active?: BoolFilter<"AuthModule"> | boolean
|
|
61635
62891
|
created_at?: DateTimeFilter<"AuthModule"> | Date | string
|
|
61636
62892
|
updated_at?: DateTimeFilter<"AuthModule"> | Date | string
|
|
61637
62893
|
user?: XOR<UserScalarRelationFilter, UserWhereInput>
|
|
@@ -61641,13 +62897,14 @@ export namespace Prisma {
|
|
|
61641
62897
|
id?: SortOrder
|
|
61642
62898
|
user_id?: SortOrder
|
|
61643
62899
|
provider?: SortOrder
|
|
61644
|
-
provider_account_id?: SortOrder
|
|
62900
|
+
provider_account_id?: SortOrderInput | SortOrder
|
|
61645
62901
|
access_token?: SortOrderInput | SortOrder
|
|
61646
62902
|
refresh_token?: SortOrderInput | SortOrder
|
|
61647
62903
|
id_token?: SortOrderInput | SortOrder
|
|
61648
62904
|
expires_at?: SortOrderInput | SortOrder
|
|
61649
62905
|
token_type?: SortOrderInput | SortOrder
|
|
61650
62906
|
scope?: SortOrderInput | SortOrder
|
|
62907
|
+
is_active?: SortOrder
|
|
61651
62908
|
created_at?: SortOrder
|
|
61652
62909
|
updated_at?: SortOrder
|
|
61653
62910
|
_count?: AuthModuleCountOrderByAggregateInput
|
|
@@ -61662,13 +62919,14 @@ export namespace Prisma {
|
|
|
61662
62919
|
id?: StringWithAggregatesFilter<"AuthModule"> | string
|
|
61663
62920
|
user_id?: StringWithAggregatesFilter<"AuthModule"> | string
|
|
61664
62921
|
provider?: EnumAuthProviderWithAggregatesFilter<"AuthModule"> | $Enums.AuthProvider
|
|
61665
|
-
provider_account_id?:
|
|
62922
|
+
provider_account_id?: StringNullableWithAggregatesFilter<"AuthModule"> | string | null
|
|
61666
62923
|
access_token?: StringNullableWithAggregatesFilter<"AuthModule"> | string | null
|
|
61667
62924
|
refresh_token?: StringNullableWithAggregatesFilter<"AuthModule"> | string | null
|
|
61668
62925
|
id_token?: StringNullableWithAggregatesFilter<"AuthModule"> | string | null
|
|
61669
62926
|
expires_at?: DateTimeNullableWithAggregatesFilter<"AuthModule"> | Date | string | null
|
|
61670
62927
|
token_type?: StringNullableWithAggregatesFilter<"AuthModule"> | string | null
|
|
61671
62928
|
scope?: StringNullableWithAggregatesFilter<"AuthModule"> | string | null
|
|
62929
|
+
is_active?: BoolWithAggregatesFilter<"AuthModule"> | boolean
|
|
61672
62930
|
created_at?: DateTimeWithAggregatesFilter<"AuthModule"> | Date | string
|
|
61673
62931
|
updated_at?: DateTimeWithAggregatesFilter<"AuthModule"> | Date | string
|
|
61674
62932
|
}
|
|
@@ -64466,6 +65724,71 @@ export namespace Prisma {
|
|
|
64466
65724
|
is_active?: BoolWithAggregatesFilter<"Question"> | boolean
|
|
64467
65725
|
}
|
|
64468
65726
|
|
|
65727
|
+
export type RefreshTokenWhereInput = {
|
|
65728
|
+
AND?: RefreshTokenWhereInput | RefreshTokenWhereInput[]
|
|
65729
|
+
OR?: RefreshTokenWhereInput[]
|
|
65730
|
+
NOT?: RefreshTokenWhereInput | RefreshTokenWhereInput[]
|
|
65731
|
+
id?: StringFilter<"RefreshToken"> | string
|
|
65732
|
+
user_id?: StringFilter<"RefreshToken"> | string
|
|
65733
|
+
token?: StringFilter<"RefreshToken"> | string
|
|
65734
|
+
is_active?: BoolFilter<"RefreshToken"> | boolean
|
|
65735
|
+
expires_at?: DateTimeFilter<"RefreshToken"> | Date | string
|
|
65736
|
+
created_at?: DateTimeFilter<"RefreshToken"> | Date | string
|
|
65737
|
+
updated_at?: DateTimeFilter<"RefreshToken"> | Date | string
|
|
65738
|
+
user?: XOR<UserScalarRelationFilter, UserWhereInput>
|
|
65739
|
+
}
|
|
65740
|
+
|
|
65741
|
+
export type RefreshTokenOrderByWithRelationInput = {
|
|
65742
|
+
id?: SortOrder
|
|
65743
|
+
user_id?: SortOrder
|
|
65744
|
+
token?: SortOrder
|
|
65745
|
+
is_active?: SortOrder
|
|
65746
|
+
expires_at?: SortOrder
|
|
65747
|
+
created_at?: SortOrder
|
|
65748
|
+
updated_at?: SortOrder
|
|
65749
|
+
user?: UserOrderByWithRelationInput
|
|
65750
|
+
}
|
|
65751
|
+
|
|
65752
|
+
export type RefreshTokenWhereUniqueInput = Prisma.AtLeast<{
|
|
65753
|
+
id?: string
|
|
65754
|
+
token?: string
|
|
65755
|
+
AND?: RefreshTokenWhereInput | RefreshTokenWhereInput[]
|
|
65756
|
+
OR?: RefreshTokenWhereInput[]
|
|
65757
|
+
NOT?: RefreshTokenWhereInput | RefreshTokenWhereInput[]
|
|
65758
|
+
user_id?: StringFilter<"RefreshToken"> | string
|
|
65759
|
+
is_active?: BoolFilter<"RefreshToken"> | boolean
|
|
65760
|
+
expires_at?: DateTimeFilter<"RefreshToken"> | Date | string
|
|
65761
|
+
created_at?: DateTimeFilter<"RefreshToken"> | Date | string
|
|
65762
|
+
updated_at?: DateTimeFilter<"RefreshToken"> | Date | string
|
|
65763
|
+
user?: XOR<UserScalarRelationFilter, UserWhereInput>
|
|
65764
|
+
}, "id" | "token">
|
|
65765
|
+
|
|
65766
|
+
export type RefreshTokenOrderByWithAggregationInput = {
|
|
65767
|
+
id?: SortOrder
|
|
65768
|
+
user_id?: SortOrder
|
|
65769
|
+
token?: SortOrder
|
|
65770
|
+
is_active?: SortOrder
|
|
65771
|
+
expires_at?: SortOrder
|
|
65772
|
+
created_at?: SortOrder
|
|
65773
|
+
updated_at?: SortOrder
|
|
65774
|
+
_count?: RefreshTokenCountOrderByAggregateInput
|
|
65775
|
+
_max?: RefreshTokenMaxOrderByAggregateInput
|
|
65776
|
+
_min?: RefreshTokenMinOrderByAggregateInput
|
|
65777
|
+
}
|
|
65778
|
+
|
|
65779
|
+
export type RefreshTokenScalarWhereWithAggregatesInput = {
|
|
65780
|
+
AND?: RefreshTokenScalarWhereWithAggregatesInput | RefreshTokenScalarWhereWithAggregatesInput[]
|
|
65781
|
+
OR?: RefreshTokenScalarWhereWithAggregatesInput[]
|
|
65782
|
+
NOT?: RefreshTokenScalarWhereWithAggregatesInput | RefreshTokenScalarWhereWithAggregatesInput[]
|
|
65783
|
+
id?: StringWithAggregatesFilter<"RefreshToken"> | string
|
|
65784
|
+
user_id?: StringWithAggregatesFilter<"RefreshToken"> | string
|
|
65785
|
+
token?: StringWithAggregatesFilter<"RefreshToken"> | string
|
|
65786
|
+
is_active?: BoolWithAggregatesFilter<"RefreshToken"> | boolean
|
|
65787
|
+
expires_at?: DateTimeWithAggregatesFilter<"RefreshToken"> | Date | string
|
|
65788
|
+
created_at?: DateTimeWithAggregatesFilter<"RefreshToken"> | Date | string
|
|
65789
|
+
updated_at?: DateTimeWithAggregatesFilter<"RefreshToken"> | Date | string
|
|
65790
|
+
}
|
|
65791
|
+
|
|
64469
65792
|
export type ResumeWhereInput = {
|
|
64470
65793
|
AND?: ResumeWhereInput | ResumeWhereInput[]
|
|
64471
65794
|
OR?: ResumeWhereInput[]
|
|
@@ -64475,6 +65798,7 @@ export namespace Prisma {
|
|
|
64475
65798
|
organisation_id?: StringNullableFilter<"Resume"> | string | null
|
|
64476
65799
|
job_description_id?: StringNullableFilter<"Resume"> | string | null
|
|
64477
65800
|
uploaded_resume_path?: StringNullableFilter<"Resume"> | string | null
|
|
65801
|
+
file_hash?: StringNullableFilter<"Resume"> | string | null
|
|
64478
65802
|
summary?: JsonNullableFilter<"Resume">
|
|
64479
65803
|
created_at?: DateTimeFilter<"Resume"> | Date | string
|
|
64480
65804
|
updated_at?: DateTimeFilter<"Resume"> | Date | string
|
|
@@ -64500,6 +65824,7 @@ export namespace Prisma {
|
|
|
64500
65824
|
organisation_id?: SortOrderInput | SortOrder
|
|
64501
65825
|
job_description_id?: SortOrderInput | SortOrder
|
|
64502
65826
|
uploaded_resume_path?: SortOrderInput | SortOrder
|
|
65827
|
+
file_hash?: SortOrderInput | SortOrder
|
|
64503
65828
|
summary?: SortOrderInput | SortOrder
|
|
64504
65829
|
created_at?: SortOrder
|
|
64505
65830
|
updated_at?: SortOrder
|
|
@@ -64521,6 +65846,7 @@ export namespace Prisma {
|
|
|
64521
65846
|
|
|
64522
65847
|
export type ResumeWhereUniqueInput = Prisma.AtLeast<{
|
|
64523
65848
|
id?: string
|
|
65849
|
+
file_hash?: string
|
|
64524
65850
|
AND?: ResumeWhereInput | ResumeWhereInput[]
|
|
64525
65851
|
OR?: ResumeWhereInput[]
|
|
64526
65852
|
NOT?: ResumeWhereInput | ResumeWhereInput[]
|
|
@@ -64545,7 +65871,7 @@ export namespace Prisma {
|
|
|
64545
65871
|
resume_data?: ResumeDataListRelationFilter
|
|
64546
65872
|
fit_check?: FitCheckListRelationFilter
|
|
64547
65873
|
candidate_profile?: XOR<CandidateProfileNullableScalarRelationFilter, CandidateProfileWhereInput> | null
|
|
64548
|
-
}, "id">
|
|
65874
|
+
}, "id" | "file_hash">
|
|
64549
65875
|
|
|
64550
65876
|
export type ResumeOrderByWithAggregationInput = {
|
|
64551
65877
|
id?: SortOrder
|
|
@@ -64553,6 +65879,7 @@ export namespace Prisma {
|
|
|
64553
65879
|
organisation_id?: SortOrderInput | SortOrder
|
|
64554
65880
|
job_description_id?: SortOrderInput | SortOrder
|
|
64555
65881
|
uploaded_resume_path?: SortOrderInput | SortOrder
|
|
65882
|
+
file_hash?: SortOrderInput | SortOrder
|
|
64556
65883
|
summary?: SortOrderInput | SortOrder
|
|
64557
65884
|
created_at?: SortOrder
|
|
64558
65885
|
updated_at?: SortOrder
|
|
@@ -64577,6 +65904,7 @@ export namespace Prisma {
|
|
|
64577
65904
|
organisation_id?: StringNullableWithAggregatesFilter<"Resume"> | string | null
|
|
64578
65905
|
job_description_id?: StringNullableWithAggregatesFilter<"Resume"> | string | null
|
|
64579
65906
|
uploaded_resume_path?: StringNullableWithAggregatesFilter<"Resume"> | string | null
|
|
65907
|
+
file_hash?: StringNullableWithAggregatesFilter<"Resume"> | string | null
|
|
64580
65908
|
summary?: JsonNullableWithAggregatesFilter<"Resume">
|
|
64581
65909
|
created_at?: DateTimeWithAggregatesFilter<"Resume"> | Date | string
|
|
64582
65910
|
updated_at?: DateTimeWithAggregatesFilter<"Resume"> | Date | string
|
|
@@ -64934,6 +66262,7 @@ export namespace Prisma {
|
|
|
64934
66262
|
created_job_profiles?: JobProfileListRelationFilter
|
|
64935
66263
|
assigned_job_profiles?: JobProfileListRelationFilter
|
|
64936
66264
|
user_auth_modules?: AuthModuleListRelationFilter
|
|
66265
|
+
refresh_token_auth?: RefreshTokenListRelationFilter
|
|
64937
66266
|
}
|
|
64938
66267
|
|
|
64939
66268
|
export type UserOrderByWithRelationInput = {
|
|
@@ -65000,6 +66329,7 @@ export namespace Prisma {
|
|
|
65000
66329
|
created_job_profiles?: JobProfileOrderByRelationAggregateInput
|
|
65001
66330
|
assigned_job_profiles?: JobProfileOrderByRelationAggregateInput
|
|
65002
66331
|
user_auth_modules?: AuthModuleOrderByRelationAggregateInput
|
|
66332
|
+
refresh_token_auth?: RefreshTokenOrderByRelationAggregateInput
|
|
65003
66333
|
}
|
|
65004
66334
|
|
|
65005
66335
|
export type UserWhereUniqueInput = Prisma.AtLeast<{
|
|
@@ -65069,6 +66399,7 @@ export namespace Prisma {
|
|
|
65069
66399
|
created_job_profiles?: JobProfileListRelationFilter
|
|
65070
66400
|
assigned_job_profiles?: JobProfileListRelationFilter
|
|
65071
66401
|
user_auth_modules?: AuthModuleListRelationFilter
|
|
66402
|
+
refresh_token_auth?: RefreshTokenListRelationFilter
|
|
65072
66403
|
}, "id" | "email" | "google_id" | "permission_id">
|
|
65073
66404
|
|
|
65074
66405
|
export type UserOrderByWithAggregationInput = {
|
|
@@ -66435,13 +67766,14 @@ export namespace Prisma {
|
|
|
66435
67766
|
export type AuthModuleCreateInput = {
|
|
66436
67767
|
id?: string
|
|
66437
67768
|
provider: $Enums.AuthProvider
|
|
66438
|
-
provider_account_id
|
|
67769
|
+
provider_account_id?: string | null
|
|
66439
67770
|
access_token?: string | null
|
|
66440
67771
|
refresh_token?: string | null
|
|
66441
67772
|
id_token?: string | null
|
|
66442
67773
|
expires_at?: Date | string | null
|
|
66443
67774
|
token_type?: string | null
|
|
66444
67775
|
scope?: string | null
|
|
67776
|
+
is_active?: boolean
|
|
66445
67777
|
created_at?: Date | string
|
|
66446
67778
|
updated_at?: Date | string
|
|
66447
67779
|
user: UserCreateNestedOneWithoutUser_auth_modulesInput
|
|
@@ -66451,13 +67783,14 @@ export namespace Prisma {
|
|
|
66451
67783
|
id?: string
|
|
66452
67784
|
user_id: string
|
|
66453
67785
|
provider: $Enums.AuthProvider
|
|
66454
|
-
provider_account_id
|
|
67786
|
+
provider_account_id?: string | null
|
|
66455
67787
|
access_token?: string | null
|
|
66456
67788
|
refresh_token?: string | null
|
|
66457
67789
|
id_token?: string | null
|
|
66458
67790
|
expires_at?: Date | string | null
|
|
66459
67791
|
token_type?: string | null
|
|
66460
67792
|
scope?: string | null
|
|
67793
|
+
is_active?: boolean
|
|
66461
67794
|
created_at?: Date | string
|
|
66462
67795
|
updated_at?: Date | string
|
|
66463
67796
|
}
|
|
@@ -66465,13 +67798,14 @@ export namespace Prisma {
|
|
|
66465
67798
|
export type AuthModuleUpdateInput = {
|
|
66466
67799
|
id?: StringFieldUpdateOperationsInput | string
|
|
66467
67800
|
provider?: EnumAuthProviderFieldUpdateOperationsInput | $Enums.AuthProvider
|
|
66468
|
-
provider_account_id?:
|
|
67801
|
+
provider_account_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
66469
67802
|
access_token?: NullableStringFieldUpdateOperationsInput | string | null
|
|
66470
67803
|
refresh_token?: NullableStringFieldUpdateOperationsInput | string | null
|
|
66471
67804
|
id_token?: NullableStringFieldUpdateOperationsInput | string | null
|
|
66472
67805
|
expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
66473
67806
|
token_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
66474
67807
|
scope?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67808
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
66475
67809
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
66476
67810
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
66477
67811
|
user?: UserUpdateOneRequiredWithoutUser_auth_modulesNestedInput
|
|
@@ -66481,13 +67815,14 @@ export namespace Prisma {
|
|
|
66481
67815
|
id?: StringFieldUpdateOperationsInput | string
|
|
66482
67816
|
user_id?: StringFieldUpdateOperationsInput | string
|
|
66483
67817
|
provider?: EnumAuthProviderFieldUpdateOperationsInput | $Enums.AuthProvider
|
|
66484
|
-
provider_account_id?:
|
|
67818
|
+
provider_account_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
66485
67819
|
access_token?: NullableStringFieldUpdateOperationsInput | string | null
|
|
66486
67820
|
refresh_token?: NullableStringFieldUpdateOperationsInput | string | null
|
|
66487
67821
|
id_token?: NullableStringFieldUpdateOperationsInput | string | null
|
|
66488
67822
|
expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
66489
67823
|
token_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
66490
67824
|
scope?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67825
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
66491
67826
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
66492
67827
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
66493
67828
|
}
|
|
@@ -66496,13 +67831,14 @@ export namespace Prisma {
|
|
|
66496
67831
|
id?: string
|
|
66497
67832
|
user_id: string
|
|
66498
67833
|
provider: $Enums.AuthProvider
|
|
66499
|
-
provider_account_id
|
|
67834
|
+
provider_account_id?: string | null
|
|
66500
67835
|
access_token?: string | null
|
|
66501
67836
|
refresh_token?: string | null
|
|
66502
67837
|
id_token?: string | null
|
|
66503
67838
|
expires_at?: Date | string | null
|
|
66504
67839
|
token_type?: string | null
|
|
66505
67840
|
scope?: string | null
|
|
67841
|
+
is_active?: boolean
|
|
66506
67842
|
created_at?: Date | string
|
|
66507
67843
|
updated_at?: Date | string
|
|
66508
67844
|
}
|
|
@@ -66510,13 +67846,14 @@ export namespace Prisma {
|
|
|
66510
67846
|
export type AuthModuleUpdateManyMutationInput = {
|
|
66511
67847
|
id?: StringFieldUpdateOperationsInput | string
|
|
66512
67848
|
provider?: EnumAuthProviderFieldUpdateOperationsInput | $Enums.AuthProvider
|
|
66513
|
-
provider_account_id?:
|
|
67849
|
+
provider_account_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
66514
67850
|
access_token?: NullableStringFieldUpdateOperationsInput | string | null
|
|
66515
67851
|
refresh_token?: NullableStringFieldUpdateOperationsInput | string | null
|
|
66516
67852
|
id_token?: NullableStringFieldUpdateOperationsInput | string | null
|
|
66517
67853
|
expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
66518
67854
|
token_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
66519
67855
|
scope?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67856
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
66520
67857
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
66521
67858
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
66522
67859
|
}
|
|
@@ -66525,13 +67862,14 @@ export namespace Prisma {
|
|
|
66525
67862
|
id?: StringFieldUpdateOperationsInput | string
|
|
66526
67863
|
user_id?: StringFieldUpdateOperationsInput | string
|
|
66527
67864
|
provider?: EnumAuthProviderFieldUpdateOperationsInput | $Enums.AuthProvider
|
|
66528
|
-
provider_account_id?:
|
|
67865
|
+
provider_account_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
66529
67866
|
access_token?: NullableStringFieldUpdateOperationsInput | string | null
|
|
66530
67867
|
refresh_token?: NullableStringFieldUpdateOperationsInput | string | null
|
|
66531
67868
|
id_token?: NullableStringFieldUpdateOperationsInput | string | null
|
|
66532
67869
|
expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
66533
67870
|
token_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
66534
67871
|
scope?: NullableStringFieldUpdateOperationsInput | string | null
|
|
67872
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
66535
67873
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
66536
67874
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
66537
67875
|
}
|
|
@@ -69773,9 +71111,79 @@ export namespace Prisma {
|
|
|
69773
71111
|
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
69774
71112
|
}
|
|
69775
71113
|
|
|
71114
|
+
export type RefreshTokenCreateInput = {
|
|
71115
|
+
id?: string
|
|
71116
|
+
token: string
|
|
71117
|
+
is_active?: boolean
|
|
71118
|
+
expires_at: Date | string
|
|
71119
|
+
created_at?: Date | string
|
|
71120
|
+
updated_at?: Date | string
|
|
71121
|
+
user: UserCreateNestedOneWithoutRefresh_token_authInput
|
|
71122
|
+
}
|
|
71123
|
+
|
|
71124
|
+
export type RefreshTokenUncheckedCreateInput = {
|
|
71125
|
+
id?: string
|
|
71126
|
+
user_id: string
|
|
71127
|
+
token: string
|
|
71128
|
+
is_active?: boolean
|
|
71129
|
+
expires_at: Date | string
|
|
71130
|
+
created_at?: Date | string
|
|
71131
|
+
updated_at?: Date | string
|
|
71132
|
+
}
|
|
71133
|
+
|
|
71134
|
+
export type RefreshTokenUpdateInput = {
|
|
71135
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
71136
|
+
token?: StringFieldUpdateOperationsInput | string
|
|
71137
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
71138
|
+
expires_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
71139
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
71140
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
71141
|
+
user?: UserUpdateOneRequiredWithoutRefresh_token_authNestedInput
|
|
71142
|
+
}
|
|
71143
|
+
|
|
71144
|
+
export type RefreshTokenUncheckedUpdateInput = {
|
|
71145
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
71146
|
+
user_id?: StringFieldUpdateOperationsInput | string
|
|
71147
|
+
token?: StringFieldUpdateOperationsInput | string
|
|
71148
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
71149
|
+
expires_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
71150
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
71151
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
71152
|
+
}
|
|
71153
|
+
|
|
71154
|
+
export type RefreshTokenCreateManyInput = {
|
|
71155
|
+
id?: string
|
|
71156
|
+
user_id: string
|
|
71157
|
+
token: string
|
|
71158
|
+
is_active?: boolean
|
|
71159
|
+
expires_at: Date | string
|
|
71160
|
+
created_at?: Date | string
|
|
71161
|
+
updated_at?: Date | string
|
|
71162
|
+
}
|
|
71163
|
+
|
|
71164
|
+
export type RefreshTokenUpdateManyMutationInput = {
|
|
71165
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
71166
|
+
token?: StringFieldUpdateOperationsInput | string
|
|
71167
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
71168
|
+
expires_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
71169
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
71170
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
71171
|
+
}
|
|
71172
|
+
|
|
71173
|
+
export type RefreshTokenUncheckedUpdateManyInput = {
|
|
71174
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
71175
|
+
user_id?: StringFieldUpdateOperationsInput | string
|
|
71176
|
+
token?: StringFieldUpdateOperationsInput | string
|
|
71177
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
71178
|
+
expires_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
71179
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
71180
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
71181
|
+
}
|
|
71182
|
+
|
|
69776
71183
|
export type ResumeCreateInput = {
|
|
69777
71184
|
id?: string
|
|
69778
71185
|
uploaded_resume_path?: string | null
|
|
71186
|
+
file_hash?: string | null
|
|
69779
71187
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
69780
71188
|
created_at?: Date | string
|
|
69781
71189
|
updated_at?: Date | string
|
|
@@ -69801,6 +71209,7 @@ export namespace Prisma {
|
|
|
69801
71209
|
organisation_id?: string | null
|
|
69802
71210
|
job_description_id?: string | null
|
|
69803
71211
|
uploaded_resume_path?: string | null
|
|
71212
|
+
file_hash?: string | null
|
|
69804
71213
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
69805
71214
|
created_at?: Date | string
|
|
69806
71215
|
updated_at?: Date | string
|
|
@@ -69820,6 +71229,7 @@ export namespace Prisma {
|
|
|
69820
71229
|
export type ResumeUpdateInput = {
|
|
69821
71230
|
id?: StringFieldUpdateOperationsInput | string
|
|
69822
71231
|
uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
71232
|
+
file_hash?: NullableStringFieldUpdateOperationsInput | string | null
|
|
69823
71233
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
69824
71234
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
69825
71235
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -69845,6 +71255,7 @@ export namespace Prisma {
|
|
|
69845
71255
|
organisation_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
69846
71256
|
job_description_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
69847
71257
|
uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
71258
|
+
file_hash?: NullableStringFieldUpdateOperationsInput | string | null
|
|
69848
71259
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
69849
71260
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
69850
71261
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -69867,6 +71278,7 @@ export namespace Prisma {
|
|
|
69867
71278
|
organisation_id?: string | null
|
|
69868
71279
|
job_description_id?: string | null
|
|
69869
71280
|
uploaded_resume_path?: string | null
|
|
71281
|
+
file_hash?: string | null
|
|
69870
71282
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
69871
71283
|
created_at?: Date | string
|
|
69872
71284
|
updated_at?: Date | string
|
|
@@ -69880,6 +71292,7 @@ export namespace Prisma {
|
|
|
69880
71292
|
export type ResumeUpdateManyMutationInput = {
|
|
69881
71293
|
id?: StringFieldUpdateOperationsInput | string
|
|
69882
71294
|
uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
71295
|
+
file_hash?: NullableStringFieldUpdateOperationsInput | string | null
|
|
69883
71296
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
69884
71297
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
69885
71298
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -69896,6 +71309,7 @@ export namespace Prisma {
|
|
|
69896
71309
|
organisation_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
69897
71310
|
job_description_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
69898
71311
|
uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
71312
|
+
file_hash?: NullableStringFieldUpdateOperationsInput | string | null
|
|
69899
71313
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
69900
71314
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
69901
71315
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -70273,6 +71687,7 @@ export namespace Prisma {
|
|
|
70273
71687
|
created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
|
|
70274
71688
|
assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
|
|
70275
71689
|
user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
|
|
71690
|
+
refresh_token_auth?: RefreshTokenCreateNestedManyWithoutUserInput
|
|
70276
71691
|
}
|
|
70277
71692
|
|
|
70278
71693
|
export type UserUncheckedCreateInput = {
|
|
@@ -70336,6 +71751,7 @@ export namespace Prisma {
|
|
|
70336
71751
|
created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
|
|
70337
71752
|
assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
|
|
70338
71753
|
user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
|
|
71754
|
+
refresh_token_auth?: RefreshTokenUncheckedCreateNestedManyWithoutUserInput
|
|
70339
71755
|
}
|
|
70340
71756
|
|
|
70341
71757
|
export type UserUpdateInput = {
|
|
@@ -70399,6 +71815,7 @@ export namespace Prisma {
|
|
|
70399
71815
|
created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
|
|
70400
71816
|
assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
|
|
70401
71817
|
user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
|
|
71818
|
+
refresh_token_auth?: RefreshTokenUpdateManyWithoutUserNestedInput
|
|
70402
71819
|
}
|
|
70403
71820
|
|
|
70404
71821
|
export type UserUncheckedUpdateInput = {
|
|
@@ -70462,6 +71879,7 @@ export namespace Prisma {
|
|
|
70462
71879
|
created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
|
|
70463
71880
|
assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
70464
71881
|
user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
|
|
71882
|
+
refresh_token_auth?: RefreshTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
70465
71883
|
}
|
|
70466
71884
|
|
|
70467
71885
|
export type UserCreateManyInput = {
|
|
@@ -71833,6 +73251,7 @@ export namespace Prisma {
|
|
|
71833
73251
|
expires_at?: SortOrder
|
|
71834
73252
|
token_type?: SortOrder
|
|
71835
73253
|
scope?: SortOrder
|
|
73254
|
+
is_active?: SortOrder
|
|
71836
73255
|
created_at?: SortOrder
|
|
71837
73256
|
updated_at?: SortOrder
|
|
71838
73257
|
}
|
|
@@ -71848,6 +73267,7 @@ export namespace Prisma {
|
|
|
71848
73267
|
expires_at?: SortOrder
|
|
71849
73268
|
token_type?: SortOrder
|
|
71850
73269
|
scope?: SortOrder
|
|
73270
|
+
is_active?: SortOrder
|
|
71851
73271
|
created_at?: SortOrder
|
|
71852
73272
|
updated_at?: SortOrder
|
|
71853
73273
|
}
|
|
@@ -71863,6 +73283,7 @@ export namespace Prisma {
|
|
|
71863
73283
|
expires_at?: SortOrder
|
|
71864
73284
|
token_type?: SortOrder
|
|
71865
73285
|
scope?: SortOrder
|
|
73286
|
+
is_active?: SortOrder
|
|
71866
73287
|
created_at?: SortOrder
|
|
71867
73288
|
updated_at?: SortOrder
|
|
71868
73289
|
}
|
|
@@ -74025,6 +75446,36 @@ export namespace Prisma {
|
|
|
74025
75446
|
_max?: NestedEnumDifficultyNullableFilter<$PrismaModel>
|
|
74026
75447
|
}
|
|
74027
75448
|
|
|
75449
|
+
export type RefreshTokenCountOrderByAggregateInput = {
|
|
75450
|
+
id?: SortOrder
|
|
75451
|
+
user_id?: SortOrder
|
|
75452
|
+
token?: SortOrder
|
|
75453
|
+
is_active?: SortOrder
|
|
75454
|
+
expires_at?: SortOrder
|
|
75455
|
+
created_at?: SortOrder
|
|
75456
|
+
updated_at?: SortOrder
|
|
75457
|
+
}
|
|
75458
|
+
|
|
75459
|
+
export type RefreshTokenMaxOrderByAggregateInput = {
|
|
75460
|
+
id?: SortOrder
|
|
75461
|
+
user_id?: SortOrder
|
|
75462
|
+
token?: SortOrder
|
|
75463
|
+
is_active?: SortOrder
|
|
75464
|
+
expires_at?: SortOrder
|
|
75465
|
+
created_at?: SortOrder
|
|
75466
|
+
updated_at?: SortOrder
|
|
75467
|
+
}
|
|
75468
|
+
|
|
75469
|
+
export type RefreshTokenMinOrderByAggregateInput = {
|
|
75470
|
+
id?: SortOrder
|
|
75471
|
+
user_id?: SortOrder
|
|
75472
|
+
token?: SortOrder
|
|
75473
|
+
is_active?: SortOrder
|
|
75474
|
+
expires_at?: SortOrder
|
|
75475
|
+
created_at?: SortOrder
|
|
75476
|
+
updated_at?: SortOrder
|
|
75477
|
+
}
|
|
75478
|
+
|
|
74028
75479
|
export type ResumeDataListRelationFilter = {
|
|
74029
75480
|
every?: ResumeDataWhereInput
|
|
74030
75481
|
some?: ResumeDataWhereInput
|
|
@@ -74046,6 +75497,7 @@ export namespace Prisma {
|
|
|
74046
75497
|
organisation_id?: SortOrder
|
|
74047
75498
|
job_description_id?: SortOrder
|
|
74048
75499
|
uploaded_resume_path?: SortOrder
|
|
75500
|
+
file_hash?: SortOrder
|
|
74049
75501
|
summary?: SortOrder
|
|
74050
75502
|
created_at?: SortOrder
|
|
74051
75503
|
updated_at?: SortOrder
|
|
@@ -74066,6 +75518,7 @@ export namespace Prisma {
|
|
|
74066
75518
|
organisation_id?: SortOrder
|
|
74067
75519
|
job_description_id?: SortOrder
|
|
74068
75520
|
uploaded_resume_path?: SortOrder
|
|
75521
|
+
file_hash?: SortOrder
|
|
74069
75522
|
created_at?: SortOrder
|
|
74070
75523
|
updated_at?: SortOrder
|
|
74071
75524
|
created_by?: SortOrder
|
|
@@ -74081,6 +75534,7 @@ export namespace Prisma {
|
|
|
74081
75534
|
organisation_id?: SortOrder
|
|
74082
75535
|
job_description_id?: SortOrder
|
|
74083
75536
|
uploaded_resume_path?: SortOrder
|
|
75537
|
+
file_hash?: SortOrder
|
|
74084
75538
|
created_at?: SortOrder
|
|
74085
75539
|
updated_at?: SortOrder
|
|
74086
75540
|
created_by?: SortOrder
|
|
@@ -74283,6 +75737,12 @@ export namespace Prisma {
|
|
|
74283
75737
|
none?: AuthModuleWhereInput
|
|
74284
75738
|
}
|
|
74285
75739
|
|
|
75740
|
+
export type RefreshTokenListRelationFilter = {
|
|
75741
|
+
every?: RefreshTokenWhereInput
|
|
75742
|
+
some?: RefreshTokenWhereInput
|
|
75743
|
+
none?: RefreshTokenWhereInput
|
|
75744
|
+
}
|
|
75745
|
+
|
|
74286
75746
|
export type MessageOrderByRelationAggregateInput = {
|
|
74287
75747
|
_count?: SortOrder
|
|
74288
75748
|
}
|
|
@@ -74291,6 +75751,10 @@ export namespace Prisma {
|
|
|
74291
75751
|
_count?: SortOrder
|
|
74292
75752
|
}
|
|
74293
75753
|
|
|
75754
|
+
export type RefreshTokenOrderByRelationAggregateInput = {
|
|
75755
|
+
_count?: SortOrder
|
|
75756
|
+
}
|
|
75757
|
+
|
|
74294
75758
|
export type UserCountOrderByAggregateInput = {
|
|
74295
75759
|
id?: SortOrder
|
|
74296
75760
|
email?: SortOrder
|
|
@@ -78558,6 +80022,20 @@ export namespace Prisma {
|
|
|
78558
80022
|
deleteMany?: CandidateQuestionResponseScalarWhereInput | CandidateQuestionResponseScalarWhereInput[]
|
|
78559
80023
|
}
|
|
78560
80024
|
|
|
80025
|
+
export type UserCreateNestedOneWithoutRefresh_token_authInput = {
|
|
80026
|
+
create?: XOR<UserCreateWithoutRefresh_token_authInput, UserUncheckedCreateWithoutRefresh_token_authInput>
|
|
80027
|
+
connectOrCreate?: UserCreateOrConnectWithoutRefresh_token_authInput
|
|
80028
|
+
connect?: UserWhereUniqueInput
|
|
80029
|
+
}
|
|
80030
|
+
|
|
80031
|
+
export type UserUpdateOneRequiredWithoutRefresh_token_authNestedInput = {
|
|
80032
|
+
create?: XOR<UserCreateWithoutRefresh_token_authInput, UserUncheckedCreateWithoutRefresh_token_authInput>
|
|
80033
|
+
connectOrCreate?: UserCreateOrConnectWithoutRefresh_token_authInput
|
|
80034
|
+
upsert?: UserUpsertWithoutRefresh_token_authInput
|
|
80035
|
+
connect?: UserWhereUniqueInput
|
|
80036
|
+
update?: XOR<XOR<UserUpdateToOneWithWhereWithoutRefresh_token_authInput, UserUpdateWithoutRefresh_token_authInput>, UserUncheckedUpdateWithoutRefresh_token_authInput>
|
|
80037
|
+
}
|
|
80038
|
+
|
|
78561
80039
|
export type UserCreateNestedOneWithoutResumeInput = {
|
|
78562
80040
|
create?: XOR<UserCreateWithoutResumeInput, UserUncheckedCreateWithoutResumeInput>
|
|
78563
80041
|
connectOrCreate?: UserCreateOrConnectWithoutResumeInput
|
|
@@ -79191,6 +80669,13 @@ export namespace Prisma {
|
|
|
79191
80669
|
connect?: AuthModuleWhereUniqueInput | AuthModuleWhereUniqueInput[]
|
|
79192
80670
|
}
|
|
79193
80671
|
|
|
80672
|
+
export type RefreshTokenCreateNestedManyWithoutUserInput = {
|
|
80673
|
+
create?: XOR<RefreshTokenCreateWithoutUserInput, RefreshTokenUncheckedCreateWithoutUserInput> | RefreshTokenCreateWithoutUserInput[] | RefreshTokenUncheckedCreateWithoutUserInput[]
|
|
80674
|
+
connectOrCreate?: RefreshTokenCreateOrConnectWithoutUserInput | RefreshTokenCreateOrConnectWithoutUserInput[]
|
|
80675
|
+
createMany?: RefreshTokenCreateManyUserInputEnvelope
|
|
80676
|
+
connect?: RefreshTokenWhereUniqueInput | RefreshTokenWhereUniqueInput[]
|
|
80677
|
+
}
|
|
80678
|
+
|
|
79194
80679
|
export type ApplicationUncheckedCreateNestedManyWithoutCandidateInput = {
|
|
79195
80680
|
create?: XOR<ApplicationCreateWithoutCandidateInput, ApplicationUncheckedCreateWithoutCandidateInput> | ApplicationCreateWithoutCandidateInput[] | ApplicationUncheckedCreateWithoutCandidateInput[]
|
|
79196
80681
|
connectOrCreate?: ApplicationCreateOrConnectWithoutCandidateInput | ApplicationCreateOrConnectWithoutCandidateInput[]
|
|
@@ -79382,6 +80867,13 @@ export namespace Prisma {
|
|
|
79382
80867
|
connect?: AuthModuleWhereUniqueInput | AuthModuleWhereUniqueInput[]
|
|
79383
80868
|
}
|
|
79384
80869
|
|
|
80870
|
+
export type RefreshTokenUncheckedCreateNestedManyWithoutUserInput = {
|
|
80871
|
+
create?: XOR<RefreshTokenCreateWithoutUserInput, RefreshTokenUncheckedCreateWithoutUserInput> | RefreshTokenCreateWithoutUserInput[] | RefreshTokenUncheckedCreateWithoutUserInput[]
|
|
80872
|
+
connectOrCreate?: RefreshTokenCreateOrConnectWithoutUserInput | RefreshTokenCreateOrConnectWithoutUserInput[]
|
|
80873
|
+
createMany?: RefreshTokenCreateManyUserInputEnvelope
|
|
80874
|
+
connect?: RefreshTokenWhereUniqueInput | RefreshTokenWhereUniqueInput[]
|
|
80875
|
+
}
|
|
80876
|
+
|
|
79385
80877
|
export type EnumFirstLoginStatusFieldUpdateOperationsInput = {
|
|
79386
80878
|
set?: $Enums.FirstLoginStatus
|
|
79387
80879
|
}
|
|
@@ -79789,6 +81281,20 @@ export namespace Prisma {
|
|
|
79789
81281
|
deleteMany?: AuthModuleScalarWhereInput | AuthModuleScalarWhereInput[]
|
|
79790
81282
|
}
|
|
79791
81283
|
|
|
81284
|
+
export type RefreshTokenUpdateManyWithoutUserNestedInput = {
|
|
81285
|
+
create?: XOR<RefreshTokenCreateWithoutUserInput, RefreshTokenUncheckedCreateWithoutUserInput> | RefreshTokenCreateWithoutUserInput[] | RefreshTokenUncheckedCreateWithoutUserInput[]
|
|
81286
|
+
connectOrCreate?: RefreshTokenCreateOrConnectWithoutUserInput | RefreshTokenCreateOrConnectWithoutUserInput[]
|
|
81287
|
+
upsert?: RefreshTokenUpsertWithWhereUniqueWithoutUserInput | RefreshTokenUpsertWithWhereUniqueWithoutUserInput[]
|
|
81288
|
+
createMany?: RefreshTokenCreateManyUserInputEnvelope
|
|
81289
|
+
set?: RefreshTokenWhereUniqueInput | RefreshTokenWhereUniqueInput[]
|
|
81290
|
+
disconnect?: RefreshTokenWhereUniqueInput | RefreshTokenWhereUniqueInput[]
|
|
81291
|
+
delete?: RefreshTokenWhereUniqueInput | RefreshTokenWhereUniqueInput[]
|
|
81292
|
+
connect?: RefreshTokenWhereUniqueInput | RefreshTokenWhereUniqueInput[]
|
|
81293
|
+
update?: RefreshTokenUpdateWithWhereUniqueWithoutUserInput | RefreshTokenUpdateWithWhereUniqueWithoutUserInput[]
|
|
81294
|
+
updateMany?: RefreshTokenUpdateManyWithWhereWithoutUserInput | RefreshTokenUpdateManyWithWhereWithoutUserInput[]
|
|
81295
|
+
deleteMany?: RefreshTokenScalarWhereInput | RefreshTokenScalarWhereInput[]
|
|
81296
|
+
}
|
|
81297
|
+
|
|
79792
81298
|
export type ApplicationUncheckedUpdateManyWithoutCandidateNestedInput = {
|
|
79793
81299
|
create?: XOR<ApplicationCreateWithoutCandidateInput, ApplicationUncheckedCreateWithoutCandidateInput> | ApplicationCreateWithoutCandidateInput[] | ApplicationUncheckedCreateWithoutCandidateInput[]
|
|
79794
81300
|
connectOrCreate?: ApplicationCreateOrConnectWithoutCandidateInput | ApplicationCreateOrConnectWithoutCandidateInput[]
|
|
@@ -80164,6 +81670,20 @@ export namespace Prisma {
|
|
|
80164
81670
|
deleteMany?: AuthModuleScalarWhereInput | AuthModuleScalarWhereInput[]
|
|
80165
81671
|
}
|
|
80166
81672
|
|
|
81673
|
+
export type RefreshTokenUncheckedUpdateManyWithoutUserNestedInput = {
|
|
81674
|
+
create?: XOR<RefreshTokenCreateWithoutUserInput, RefreshTokenUncheckedCreateWithoutUserInput> | RefreshTokenCreateWithoutUserInput[] | RefreshTokenUncheckedCreateWithoutUserInput[]
|
|
81675
|
+
connectOrCreate?: RefreshTokenCreateOrConnectWithoutUserInput | RefreshTokenCreateOrConnectWithoutUserInput[]
|
|
81676
|
+
upsert?: RefreshTokenUpsertWithWhereUniqueWithoutUserInput | RefreshTokenUpsertWithWhereUniqueWithoutUserInput[]
|
|
81677
|
+
createMany?: RefreshTokenCreateManyUserInputEnvelope
|
|
81678
|
+
set?: RefreshTokenWhereUniqueInput | RefreshTokenWhereUniqueInput[]
|
|
81679
|
+
disconnect?: RefreshTokenWhereUniqueInput | RefreshTokenWhereUniqueInput[]
|
|
81680
|
+
delete?: RefreshTokenWhereUniqueInput | RefreshTokenWhereUniqueInput[]
|
|
81681
|
+
connect?: RefreshTokenWhereUniqueInput | RefreshTokenWhereUniqueInput[]
|
|
81682
|
+
update?: RefreshTokenUpdateWithWhereUniqueWithoutUserInput | RefreshTokenUpdateWithWhereUniqueWithoutUserInput[]
|
|
81683
|
+
updateMany?: RefreshTokenUpdateManyWithWhereWithoutUserInput | RefreshTokenUpdateManyWithWhereWithoutUserInput[]
|
|
81684
|
+
deleteMany?: RefreshTokenScalarWhereInput | RefreshTokenScalarWhereInput[]
|
|
81685
|
+
}
|
|
81686
|
+
|
|
80167
81687
|
export type UserCreateNestedOneWithoutUser_profileInput = {
|
|
80168
81688
|
create?: XOR<UserCreateWithoutUser_profileInput, UserUncheckedCreateWithoutUser_profileInput>
|
|
80169
81689
|
connectOrCreate?: UserCreateOrConnectWithoutUser_profileInput
|
|
@@ -81204,6 +82724,7 @@ export namespace Prisma {
|
|
|
81204
82724
|
created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
|
|
81205
82725
|
assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
|
|
81206
82726
|
user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
|
|
82727
|
+
refresh_token_auth?: RefreshTokenCreateNestedManyWithoutUserInput
|
|
81207
82728
|
}
|
|
81208
82729
|
|
|
81209
82730
|
export type UserUncheckedCreateWithoutCandidateResponsesInput = {
|
|
@@ -81266,6 +82787,7 @@ export namespace Prisma {
|
|
|
81266
82787
|
created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
|
|
81267
82788
|
assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
|
|
81268
82789
|
user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
|
|
82790
|
+
refresh_token_auth?: RefreshTokenUncheckedCreateNestedManyWithoutUserInput
|
|
81269
82791
|
}
|
|
81270
82792
|
|
|
81271
82793
|
export type UserCreateOrConnectWithoutCandidateResponsesInput = {
|
|
@@ -81450,6 +82972,7 @@ export namespace Prisma {
|
|
|
81450
82972
|
created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
|
|
81451
82973
|
assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
|
|
81452
82974
|
user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
|
|
82975
|
+
refresh_token_auth?: RefreshTokenUpdateManyWithoutUserNestedInput
|
|
81453
82976
|
}
|
|
81454
82977
|
|
|
81455
82978
|
export type UserUncheckedUpdateWithoutCandidateResponsesInput = {
|
|
@@ -81512,6 +83035,7 @@ export namespace Prisma {
|
|
|
81512
83035
|
created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
|
|
81513
83036
|
assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
81514
83037
|
user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
|
|
83038
|
+
refresh_token_auth?: RefreshTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
81515
83039
|
}
|
|
81516
83040
|
|
|
81517
83041
|
export type OrganisationCreateWithoutUser_rolesInput = {
|
|
@@ -81680,6 +83204,7 @@ export namespace Prisma {
|
|
|
81680
83204
|
created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
|
|
81681
83205
|
assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
|
|
81682
83206
|
user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
|
|
83207
|
+
refresh_token_auth?: RefreshTokenCreateNestedManyWithoutUserInput
|
|
81683
83208
|
}
|
|
81684
83209
|
|
|
81685
83210
|
export type UserUncheckedCreateWithoutRoleInput = {
|
|
@@ -81742,6 +83267,7 @@ export namespace Prisma {
|
|
|
81742
83267
|
created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
|
|
81743
83268
|
assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
|
|
81744
83269
|
user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
|
|
83270
|
+
refresh_token_auth?: RefreshTokenUncheckedCreateNestedManyWithoutUserInput
|
|
81745
83271
|
}
|
|
81746
83272
|
|
|
81747
83273
|
export type UserCreateOrConnectWithoutRoleInput = {
|
|
@@ -81986,6 +83512,7 @@ export namespace Prisma {
|
|
|
81986
83512
|
created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
|
|
81987
83513
|
assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
|
|
81988
83514
|
user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
|
|
83515
|
+
refresh_token_auth?: RefreshTokenCreateNestedManyWithoutUserInput
|
|
81989
83516
|
}
|
|
81990
83517
|
|
|
81991
83518
|
export type UserUncheckedCreateWithoutActionsInput = {
|
|
@@ -82048,6 +83575,7 @@ export namespace Prisma {
|
|
|
82048
83575
|
created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
|
|
82049
83576
|
assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
|
|
82050
83577
|
user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
|
|
83578
|
+
refresh_token_auth?: RefreshTokenUncheckedCreateNestedManyWithoutUserInput
|
|
82051
83579
|
}
|
|
82052
83580
|
|
|
82053
83581
|
export type UserCreateOrConnectWithoutActionsInput = {
|
|
@@ -82205,6 +83733,7 @@ export namespace Prisma {
|
|
|
82205
83733
|
created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
|
|
82206
83734
|
assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
|
|
82207
83735
|
user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
|
|
83736
|
+
refresh_token_auth?: RefreshTokenUpdateManyWithoutUserNestedInput
|
|
82208
83737
|
}
|
|
82209
83738
|
|
|
82210
83739
|
export type UserUncheckedUpdateWithoutActionsInput = {
|
|
@@ -82267,6 +83796,7 @@ export namespace Prisma {
|
|
|
82267
83796
|
created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
|
|
82268
83797
|
assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
82269
83798
|
user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
|
|
83799
|
+
refresh_token_auth?: RefreshTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
82270
83800
|
}
|
|
82271
83801
|
|
|
82272
83802
|
export type OrganisationUpsertWithoutActionsInput = {
|
|
@@ -82414,6 +83944,7 @@ export namespace Prisma {
|
|
|
82414
83944
|
created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
|
|
82415
83945
|
assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
|
|
82416
83946
|
user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
|
|
83947
|
+
refresh_token_auth?: RefreshTokenCreateNestedManyWithoutUserInput
|
|
82417
83948
|
}
|
|
82418
83949
|
|
|
82419
83950
|
export type UserUncheckedCreateWithoutActor_activity_logsInput = {
|
|
@@ -82476,6 +84007,7 @@ export namespace Prisma {
|
|
|
82476
84007
|
created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
|
|
82477
84008
|
assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
|
|
82478
84009
|
user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
|
|
84010
|
+
refresh_token_auth?: RefreshTokenUncheckedCreateNestedManyWithoutUserInput
|
|
82479
84011
|
}
|
|
82480
84012
|
|
|
82481
84013
|
export type UserCreateOrConnectWithoutActor_activity_logsInput = {
|
|
@@ -82605,6 +84137,7 @@ export namespace Prisma {
|
|
|
82605
84137
|
created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
|
|
82606
84138
|
assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
|
|
82607
84139
|
user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
|
|
84140
|
+
refresh_token_auth?: RefreshTokenUpdateManyWithoutUserNestedInput
|
|
82608
84141
|
}
|
|
82609
84142
|
|
|
82610
84143
|
export type UserUncheckedUpdateWithoutActor_activity_logsInput = {
|
|
@@ -82667,6 +84200,7 @@ export namespace Prisma {
|
|
|
82667
84200
|
created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
|
|
82668
84201
|
assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
82669
84202
|
user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
|
|
84203
|
+
refresh_token_auth?: RefreshTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
82670
84204
|
}
|
|
82671
84205
|
|
|
82672
84206
|
export type ApplicationUpsertWithoutActivity_logsInput = {
|
|
@@ -82851,6 +84385,7 @@ export namespace Prisma {
|
|
|
82851
84385
|
created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
|
|
82852
84386
|
assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
|
|
82853
84387
|
user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
|
|
84388
|
+
refresh_token_auth?: RefreshTokenCreateNestedManyWithoutUserInput
|
|
82854
84389
|
}
|
|
82855
84390
|
|
|
82856
84391
|
export type UserUncheckedCreateWithoutApplicationsInput = {
|
|
@@ -82913,6 +84448,7 @@ export namespace Prisma {
|
|
|
82913
84448
|
created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
|
|
82914
84449
|
assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
|
|
82915
84450
|
user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
|
|
84451
|
+
refresh_token_auth?: RefreshTokenUncheckedCreateNestedManyWithoutUserInput
|
|
82916
84452
|
}
|
|
82917
84453
|
|
|
82918
84454
|
export type UserCreateOrConnectWithoutApplicationsInput = {
|
|
@@ -83002,6 +84538,7 @@ export namespace Prisma {
|
|
|
83002
84538
|
export type ResumeCreateWithoutApplicationsInput = {
|
|
83003
84539
|
id?: string
|
|
83004
84540
|
uploaded_resume_path?: string | null
|
|
84541
|
+
file_hash?: string | null
|
|
83005
84542
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
83006
84543
|
created_at?: Date | string
|
|
83007
84544
|
updated_at?: Date | string
|
|
@@ -83026,6 +84563,7 @@ export namespace Prisma {
|
|
|
83026
84563
|
organisation_id?: string | null
|
|
83027
84564
|
job_description_id?: string | null
|
|
83028
84565
|
uploaded_resume_path?: string | null
|
|
84566
|
+
file_hash?: string | null
|
|
83029
84567
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
83030
84568
|
created_at?: Date | string
|
|
83031
84569
|
updated_at?: Date | string
|
|
@@ -83592,6 +85130,7 @@ export namespace Prisma {
|
|
|
83592
85130
|
created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
|
|
83593
85131
|
assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
|
|
83594
85132
|
user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
|
|
85133
|
+
refresh_token_auth?: RefreshTokenUpdateManyWithoutUserNestedInput
|
|
83595
85134
|
}
|
|
83596
85135
|
|
|
83597
85136
|
export type UserUncheckedUpdateWithoutApplicationsInput = {
|
|
@@ -83654,6 +85193,7 @@ export namespace Prisma {
|
|
|
83654
85193
|
created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
|
|
83655
85194
|
assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
83656
85195
|
user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
|
|
85196
|
+
refresh_token_auth?: RefreshTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
83657
85197
|
}
|
|
83658
85198
|
|
|
83659
85199
|
export type OrganisationUpsertWithoutApplicationsInput = {
|
|
@@ -83755,6 +85295,7 @@ export namespace Prisma {
|
|
|
83755
85295
|
export type ResumeUpdateWithoutApplicationsInput = {
|
|
83756
85296
|
id?: StringFieldUpdateOperationsInput | string
|
|
83757
85297
|
uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
85298
|
+
file_hash?: NullableStringFieldUpdateOperationsInput | string | null
|
|
83758
85299
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
83759
85300
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
83760
85301
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -83779,6 +85320,7 @@ export namespace Prisma {
|
|
|
83779
85320
|
organisation_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
83780
85321
|
job_description_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
83781
85322
|
uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
85323
|
+
file_hash?: NullableStringFieldUpdateOperationsInput | string | null
|
|
83782
85324
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
83783
85325
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
83784
85326
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -84270,6 +85812,7 @@ export namespace Prisma {
|
|
|
84270
85812
|
created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
|
|
84271
85813
|
assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
|
|
84272
85814
|
user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
|
|
85815
|
+
refresh_token_auth?: RefreshTokenCreateNestedManyWithoutUserInput
|
|
84273
85816
|
}
|
|
84274
85817
|
|
|
84275
85818
|
export type UserUncheckedCreateWithoutApprovalsInput = {
|
|
@@ -84332,6 +85875,7 @@ export namespace Prisma {
|
|
|
84332
85875
|
created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
|
|
84333
85876
|
assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
|
|
84334
85877
|
user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
|
|
85878
|
+
refresh_token_auth?: RefreshTokenUncheckedCreateNestedManyWithoutUserInput
|
|
84335
85879
|
}
|
|
84336
85880
|
|
|
84337
85881
|
export type UserCreateOrConnectWithoutApprovalsInput = {
|
|
@@ -84570,6 +86114,7 @@ export namespace Prisma {
|
|
|
84570
86114
|
created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
|
|
84571
86115
|
assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
|
|
84572
86116
|
user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
|
|
86117
|
+
refresh_token_auth?: RefreshTokenUpdateManyWithoutUserNestedInput
|
|
84573
86118
|
}
|
|
84574
86119
|
|
|
84575
86120
|
export type UserUncheckedUpdateWithoutApprovalsInput = {
|
|
@@ -84632,6 +86177,7 @@ export namespace Prisma {
|
|
|
84632
86177
|
created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
|
|
84633
86178
|
assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
84634
86179
|
user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
|
|
86180
|
+
refresh_token_auth?: RefreshTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
84635
86181
|
}
|
|
84636
86182
|
|
|
84637
86183
|
export type OrganisationUpsertWithoutApprovalsInput = {
|
|
@@ -84824,6 +86370,7 @@ export namespace Prisma {
|
|
|
84824
86370
|
created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
|
|
84825
86371
|
assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
|
|
84826
86372
|
user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
|
|
86373
|
+
refresh_token_auth?: RefreshTokenCreateNestedManyWithoutUserInput
|
|
84827
86374
|
}
|
|
84828
86375
|
|
|
84829
86376
|
export type UserUncheckedCreateWithoutCandidate_assessmentsInput = {
|
|
@@ -84886,6 +86433,7 @@ export namespace Prisma {
|
|
|
84886
86433
|
created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
|
|
84887
86434
|
assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
|
|
84888
86435
|
user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
|
|
86436
|
+
refresh_token_auth?: RefreshTokenUncheckedCreateNestedManyWithoutUserInput
|
|
84889
86437
|
}
|
|
84890
86438
|
|
|
84891
86439
|
export type UserCreateOrConnectWithoutCandidate_assessmentsInput = {
|
|
@@ -84953,6 +86501,7 @@ export namespace Prisma {
|
|
|
84953
86501
|
created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
|
|
84954
86502
|
assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
|
|
84955
86503
|
user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
|
|
86504
|
+
refresh_token_auth?: RefreshTokenCreateNestedManyWithoutUserInput
|
|
84956
86505
|
}
|
|
84957
86506
|
|
|
84958
86507
|
export type UserUncheckedCreateWithoutReviewer_assessmentsInput = {
|
|
@@ -85015,6 +86564,7 @@ export namespace Prisma {
|
|
|
85015
86564
|
created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
|
|
85016
86565
|
assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
|
|
85017
86566
|
user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
|
|
86567
|
+
refresh_token_auth?: RefreshTokenUncheckedCreateNestedManyWithoutUserInput
|
|
85018
86568
|
}
|
|
85019
86569
|
|
|
85020
86570
|
export type UserCreateOrConnectWithoutReviewer_assessmentsInput = {
|
|
@@ -85219,6 +86769,7 @@ export namespace Prisma {
|
|
|
85219
86769
|
created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
|
|
85220
86770
|
assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
|
|
85221
86771
|
user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
|
|
86772
|
+
refresh_token_auth?: RefreshTokenCreateNestedManyWithoutUserInput
|
|
85222
86773
|
}
|
|
85223
86774
|
|
|
85224
86775
|
export type UserUncheckedCreateWithoutAssessment_resultsInput = {
|
|
@@ -85281,6 +86832,7 @@ export namespace Prisma {
|
|
|
85281
86832
|
created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
|
|
85282
86833
|
assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
|
|
85283
86834
|
user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
|
|
86835
|
+
refresh_token_auth?: RefreshTokenUncheckedCreateNestedManyWithoutUserInput
|
|
85284
86836
|
}
|
|
85285
86837
|
|
|
85286
86838
|
export type UserCreateOrConnectWithoutAssessment_resultsInput = {
|
|
@@ -85483,6 +87035,7 @@ export namespace Prisma {
|
|
|
85483
87035
|
created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
|
|
85484
87036
|
assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
|
|
85485
87037
|
user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
|
|
87038
|
+
refresh_token_auth?: RefreshTokenUpdateManyWithoutUserNestedInput
|
|
85486
87039
|
}
|
|
85487
87040
|
|
|
85488
87041
|
export type UserUncheckedUpdateWithoutCandidate_assessmentsInput = {
|
|
@@ -85545,6 +87098,7 @@ export namespace Prisma {
|
|
|
85545
87098
|
created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
|
|
85546
87099
|
assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
85547
87100
|
user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
|
|
87101
|
+
refresh_token_auth?: RefreshTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
85548
87102
|
}
|
|
85549
87103
|
|
|
85550
87104
|
export type UserUpsertWithoutReviewer_assessmentsInput = {
|
|
@@ -85618,6 +87172,7 @@ export namespace Prisma {
|
|
|
85618
87172
|
created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
|
|
85619
87173
|
assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
|
|
85620
87174
|
user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
|
|
87175
|
+
refresh_token_auth?: RefreshTokenUpdateManyWithoutUserNestedInput
|
|
85621
87176
|
}
|
|
85622
87177
|
|
|
85623
87178
|
export type UserUncheckedUpdateWithoutReviewer_assessmentsInput = {
|
|
@@ -85680,6 +87235,7 @@ export namespace Prisma {
|
|
|
85680
87235
|
created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
|
|
85681
87236
|
assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
85682
87237
|
user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
|
|
87238
|
+
refresh_token_auth?: RefreshTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
85683
87239
|
}
|
|
85684
87240
|
|
|
85685
87241
|
export type AssessmentQuestionUpsertWithWhereUniqueWithoutAssessmentInput = {
|
|
@@ -85897,6 +87453,7 @@ export namespace Prisma {
|
|
|
85897
87453
|
created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
|
|
85898
87454
|
assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
|
|
85899
87455
|
user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
|
|
87456
|
+
refresh_token_auth?: RefreshTokenUpdateManyWithoutUserNestedInput
|
|
85900
87457
|
}
|
|
85901
87458
|
|
|
85902
87459
|
export type UserUncheckedUpdateWithoutAssessment_resultsInput = {
|
|
@@ -85959,6 +87516,7 @@ export namespace Prisma {
|
|
|
85959
87516
|
created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
|
|
85960
87517
|
assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
85961
87518
|
user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
|
|
87519
|
+
refresh_token_auth?: RefreshTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
85962
87520
|
}
|
|
85963
87521
|
|
|
85964
87522
|
export type OngoingEvaluationUpsertWithoutAssessmentInput = {
|
|
@@ -86761,6 +88319,7 @@ export namespace Prisma {
|
|
|
86761
88319
|
created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
|
|
86762
88320
|
assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
|
|
86763
88321
|
user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
|
|
88322
|
+
refresh_token_auth?: RefreshTokenCreateNestedManyWithoutUserInput
|
|
86764
88323
|
}
|
|
86765
88324
|
|
|
86766
88325
|
export type UserUncheckedCreateWithoutCandidate_assignmentsInput = {
|
|
@@ -86823,6 +88382,7 @@ export namespace Prisma {
|
|
|
86823
88382
|
created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
|
|
86824
88383
|
assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
|
|
86825
88384
|
user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
|
|
88385
|
+
refresh_token_auth?: RefreshTokenUncheckedCreateNestedManyWithoutUserInput
|
|
86826
88386
|
}
|
|
86827
88387
|
|
|
86828
88388
|
export type UserCreateOrConnectWithoutCandidate_assignmentsInput = {
|
|
@@ -86923,6 +88483,7 @@ export namespace Prisma {
|
|
|
86923
88483
|
created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
|
|
86924
88484
|
assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
|
|
86925
88485
|
user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
|
|
88486
|
+
refresh_token_auth?: RefreshTokenCreateNestedManyWithoutUserInput
|
|
86926
88487
|
}
|
|
86927
88488
|
|
|
86928
88489
|
export type UserUncheckedCreateWithoutReviewer_assignmentsInput = {
|
|
@@ -86985,6 +88546,7 @@ export namespace Prisma {
|
|
|
86985
88546
|
created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
|
|
86986
88547
|
assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
|
|
86987
88548
|
user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
|
|
88549
|
+
refresh_token_auth?: RefreshTokenUncheckedCreateNestedManyWithoutUserInput
|
|
86988
88550
|
}
|
|
86989
88551
|
|
|
86990
88552
|
export type UserCreateOrConnectWithoutReviewer_assignmentsInput = {
|
|
@@ -87341,6 +88903,7 @@ export namespace Prisma {
|
|
|
87341
88903
|
created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
|
|
87342
88904
|
assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
|
|
87343
88905
|
user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
|
|
88906
|
+
refresh_token_auth?: RefreshTokenUpdateManyWithoutUserNestedInput
|
|
87344
88907
|
}
|
|
87345
88908
|
|
|
87346
88909
|
export type UserUncheckedUpdateWithoutCandidate_assignmentsInput = {
|
|
@@ -87403,6 +88966,7 @@ export namespace Prisma {
|
|
|
87403
88966
|
created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
|
|
87404
88967
|
assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
87405
88968
|
user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
|
|
88969
|
+
refresh_token_auth?: RefreshTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
87406
88970
|
}
|
|
87407
88971
|
|
|
87408
88972
|
export type AssignmentLibraryUpsertWithoutAssignmentsInput = {
|
|
@@ -87515,6 +89079,7 @@ export namespace Prisma {
|
|
|
87515
89079
|
created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
|
|
87516
89080
|
assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
|
|
87517
89081
|
user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
|
|
89082
|
+
refresh_token_auth?: RefreshTokenUpdateManyWithoutUserNestedInput
|
|
87518
89083
|
}
|
|
87519
89084
|
|
|
87520
89085
|
export type UserUncheckedUpdateWithoutReviewer_assignmentsInput = {
|
|
@@ -87577,6 +89142,7 @@ export namespace Prisma {
|
|
|
87577
89142
|
created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
|
|
87578
89143
|
assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
87579
89144
|
user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
|
|
89145
|
+
refresh_token_auth?: RefreshTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
87580
89146
|
}
|
|
87581
89147
|
|
|
87582
89148
|
export type OrganisationUpsertWithoutAssignmentsInput = {
|
|
@@ -88419,6 +89985,7 @@ export namespace Prisma {
|
|
|
88419
89985
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
88420
89986
|
created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
|
|
88421
89987
|
assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
|
|
89988
|
+
refresh_token_auth?: RefreshTokenCreateNestedManyWithoutUserInput
|
|
88422
89989
|
}
|
|
88423
89990
|
|
|
88424
89991
|
export type UserUncheckedCreateWithoutUser_auth_modulesInput = {
|
|
@@ -88481,6 +90048,7 @@ export namespace Prisma {
|
|
|
88481
90048
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
88482
90049
|
created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
|
|
88483
90050
|
assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
|
|
90051
|
+
refresh_token_auth?: RefreshTokenUncheckedCreateNestedManyWithoutUserInput
|
|
88484
90052
|
}
|
|
88485
90053
|
|
|
88486
90054
|
export type UserCreateOrConnectWithoutUser_auth_modulesInput = {
|
|
@@ -88559,6 +90127,7 @@ export namespace Prisma {
|
|
|
88559
90127
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
88560
90128
|
created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
|
|
88561
90129
|
assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
|
|
90130
|
+
refresh_token_auth?: RefreshTokenUpdateManyWithoutUserNestedInput
|
|
88562
90131
|
}
|
|
88563
90132
|
|
|
88564
90133
|
export type UserUncheckedUpdateWithoutUser_auth_modulesInput = {
|
|
@@ -88621,6 +90190,7 @@ export namespace Prisma {
|
|
|
88621
90190
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
88622
90191
|
created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
|
|
88623
90192
|
assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
90193
|
+
refresh_token_auth?: RefreshTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
88624
90194
|
}
|
|
88625
90195
|
|
|
88626
90196
|
export type JobDescriptionCreateWithoutBudgetInput = {
|
|
@@ -88839,6 +90409,7 @@ export namespace Prisma {
|
|
|
88839
90409
|
created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
|
|
88840
90410
|
assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
|
|
88841
90411
|
user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
|
|
90412
|
+
refresh_token_auth?: RefreshTokenCreateNestedManyWithoutUserInput
|
|
88842
90413
|
}
|
|
88843
90414
|
|
|
88844
90415
|
export type UserUncheckedCreateWithoutCalendlyInput = {
|
|
@@ -88901,6 +90472,7 @@ export namespace Prisma {
|
|
|
88901
90472
|
created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
|
|
88902
90473
|
assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
|
|
88903
90474
|
user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
|
|
90475
|
+
refresh_token_auth?: RefreshTokenUncheckedCreateNestedManyWithoutUserInput
|
|
88904
90476
|
}
|
|
88905
90477
|
|
|
88906
90478
|
export type UserCreateOrConnectWithoutCalendlyInput = {
|
|
@@ -88979,6 +90551,7 @@ export namespace Prisma {
|
|
|
88979
90551
|
created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
|
|
88980
90552
|
assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
|
|
88981
90553
|
user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
|
|
90554
|
+
refresh_token_auth?: RefreshTokenUpdateManyWithoutUserNestedInput
|
|
88982
90555
|
}
|
|
88983
90556
|
|
|
88984
90557
|
export type UserUncheckedUpdateWithoutCalendlyInput = {
|
|
@@ -89041,6 +90614,7 @@ export namespace Prisma {
|
|
|
89041
90614
|
created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
|
|
89042
90615
|
assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
89043
90616
|
user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
|
|
90617
|
+
refresh_token_auth?: RefreshTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
89044
90618
|
}
|
|
89045
90619
|
|
|
89046
90620
|
export type UserCreateWithoutCandidate_profileInput = {
|
|
@@ -89103,6 +90677,7 @@ export namespace Prisma {
|
|
|
89103
90677
|
created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
|
|
89104
90678
|
assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
|
|
89105
90679
|
user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
|
|
90680
|
+
refresh_token_auth?: RefreshTokenCreateNestedManyWithoutUserInput
|
|
89106
90681
|
}
|
|
89107
90682
|
|
|
89108
90683
|
export type UserUncheckedCreateWithoutCandidate_profileInput = {
|
|
@@ -89165,6 +90740,7 @@ export namespace Prisma {
|
|
|
89165
90740
|
created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
|
|
89166
90741
|
assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
|
|
89167
90742
|
user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
|
|
90743
|
+
refresh_token_auth?: RefreshTokenUncheckedCreateNestedManyWithoutUserInput
|
|
89168
90744
|
}
|
|
89169
90745
|
|
|
89170
90746
|
export type UserCreateOrConnectWithoutCandidate_profileInput = {
|
|
@@ -89175,6 +90751,7 @@ export namespace Prisma {
|
|
|
89175
90751
|
export type ResumeCreateWithoutCandidate_profileInput = {
|
|
89176
90752
|
id?: string
|
|
89177
90753
|
uploaded_resume_path?: string | null
|
|
90754
|
+
file_hash?: string | null
|
|
89178
90755
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
89179
90756
|
created_at?: Date | string
|
|
89180
90757
|
updated_at?: Date | string
|
|
@@ -89199,6 +90776,7 @@ export namespace Prisma {
|
|
|
89199
90776
|
organisation_id?: string | null
|
|
89200
90777
|
job_description_id?: string | null
|
|
89201
90778
|
uploaded_resume_path?: string | null
|
|
90779
|
+
file_hash?: string | null
|
|
89202
90780
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
89203
90781
|
created_at?: Date | string
|
|
89204
90782
|
updated_at?: Date | string
|
|
@@ -89290,6 +90868,7 @@ export namespace Prisma {
|
|
|
89290
90868
|
created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
|
|
89291
90869
|
assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
|
|
89292
90870
|
user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
|
|
90871
|
+
refresh_token_auth?: RefreshTokenUpdateManyWithoutUserNestedInput
|
|
89293
90872
|
}
|
|
89294
90873
|
|
|
89295
90874
|
export type UserUncheckedUpdateWithoutCandidate_profileInput = {
|
|
@@ -89352,6 +90931,7 @@ export namespace Prisma {
|
|
|
89352
90931
|
created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
|
|
89353
90932
|
assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
89354
90933
|
user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
|
|
90934
|
+
refresh_token_auth?: RefreshTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
89355
90935
|
}
|
|
89356
90936
|
|
|
89357
90937
|
export type ResumeUpsertWithoutCandidate_profileInput = {
|
|
@@ -89368,6 +90948,7 @@ export namespace Prisma {
|
|
|
89368
90948
|
export type ResumeUpdateWithoutCandidate_profileInput = {
|
|
89369
90949
|
id?: StringFieldUpdateOperationsInput | string
|
|
89370
90950
|
uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
90951
|
+
file_hash?: NullableStringFieldUpdateOperationsInput | string | null
|
|
89371
90952
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
89372
90953
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
89373
90954
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -89392,6 +90973,7 @@ export namespace Prisma {
|
|
|
89392
90973
|
organisation_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
89393
90974
|
job_description_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
89394
90975
|
uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
90976
|
+
file_hash?: NullableStringFieldUpdateOperationsInput | string | null
|
|
89395
90977
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
89396
90978
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
89397
90979
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -90407,6 +91989,7 @@ export namespace Prisma {
|
|
|
90407
91989
|
created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
|
|
90408
91990
|
assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
|
|
90409
91991
|
user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
|
|
91992
|
+
refresh_token_auth?: RefreshTokenCreateNestedManyWithoutUserInput
|
|
90410
91993
|
}
|
|
90411
91994
|
|
|
90412
91995
|
export type UserUncheckedCreateWithoutFitChecksInput = {
|
|
@@ -90469,6 +92052,7 @@ export namespace Prisma {
|
|
|
90469
92052
|
created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
|
|
90470
92053
|
assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
|
|
90471
92054
|
user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
|
|
92055
|
+
refresh_token_auth?: RefreshTokenUncheckedCreateNestedManyWithoutUserInput
|
|
90472
92056
|
}
|
|
90473
92057
|
|
|
90474
92058
|
export type UserCreateOrConnectWithoutFitChecksInput = {
|
|
@@ -90479,6 +92063,7 @@ export namespace Prisma {
|
|
|
90479
92063
|
export type ResumeCreateWithoutFit_checkInput = {
|
|
90480
92064
|
id?: string
|
|
90481
92065
|
uploaded_resume_path?: string | null
|
|
92066
|
+
file_hash?: string | null
|
|
90482
92067
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
90483
92068
|
created_at?: Date | string
|
|
90484
92069
|
updated_at?: Date | string
|
|
@@ -90503,6 +92088,7 @@ export namespace Prisma {
|
|
|
90503
92088
|
organisation_id?: string | null
|
|
90504
92089
|
job_description_id?: string | null
|
|
90505
92090
|
uploaded_resume_path?: string | null
|
|
92091
|
+
file_hash?: string | null
|
|
90506
92092
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
90507
92093
|
created_at?: Date | string
|
|
90508
92094
|
updated_at?: Date | string
|
|
@@ -90805,6 +92391,7 @@ export namespace Prisma {
|
|
|
90805
92391
|
created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
|
|
90806
92392
|
assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
|
|
90807
92393
|
user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
|
|
92394
|
+
refresh_token_auth?: RefreshTokenUpdateManyWithoutUserNestedInput
|
|
90808
92395
|
}
|
|
90809
92396
|
|
|
90810
92397
|
export type UserUncheckedUpdateWithoutFitChecksInput = {
|
|
@@ -90867,6 +92454,7 @@ export namespace Prisma {
|
|
|
90867
92454
|
created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
|
|
90868
92455
|
assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
90869
92456
|
user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
|
|
92457
|
+
refresh_token_auth?: RefreshTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
90870
92458
|
}
|
|
90871
92459
|
|
|
90872
92460
|
export type ResumeUpsertWithoutFit_checkInput = {
|
|
@@ -90883,6 +92471,7 @@ export namespace Prisma {
|
|
|
90883
92471
|
export type ResumeUpdateWithoutFit_checkInput = {
|
|
90884
92472
|
id?: StringFieldUpdateOperationsInput | string
|
|
90885
92473
|
uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92474
|
+
file_hash?: NullableStringFieldUpdateOperationsInput | string | null
|
|
90886
92475
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
90887
92476
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
90888
92477
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -90907,6 +92496,7 @@ export namespace Prisma {
|
|
|
90907
92496
|
organisation_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
90908
92497
|
job_description_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
90909
92498
|
uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
92499
|
+
file_hash?: NullableStringFieldUpdateOperationsInput | string | null
|
|
90910
92500
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
90911
92501
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
90912
92502
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -91120,6 +92710,7 @@ export namespace Prisma {
|
|
|
91120
92710
|
created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
|
|
91121
92711
|
assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
|
|
91122
92712
|
user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
|
|
92713
|
+
refresh_token_auth?: RefreshTokenCreateNestedManyWithoutUserInput
|
|
91123
92714
|
}
|
|
91124
92715
|
|
|
91125
92716
|
export type UserUncheckedCreateWithoutGoogleInput = {
|
|
@@ -91182,6 +92773,7 @@ export namespace Prisma {
|
|
|
91182
92773
|
created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
|
|
91183
92774
|
assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
|
|
91184
92775
|
user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
|
|
92776
|
+
refresh_token_auth?: RefreshTokenUncheckedCreateNestedManyWithoutUserInput
|
|
91185
92777
|
}
|
|
91186
92778
|
|
|
91187
92779
|
export type UserCreateOrConnectWithoutGoogleInput = {
|
|
@@ -91260,6 +92852,7 @@ export namespace Prisma {
|
|
|
91260
92852
|
created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
|
|
91261
92853
|
assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
|
|
91262
92854
|
user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
|
|
92855
|
+
refresh_token_auth?: RefreshTokenUpdateManyWithoutUserNestedInput
|
|
91263
92856
|
}
|
|
91264
92857
|
|
|
91265
92858
|
export type UserUncheckedUpdateWithoutGoogleInput = {
|
|
@@ -91322,6 +92915,7 @@ export namespace Prisma {
|
|
|
91322
92915
|
created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
|
|
91323
92916
|
assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
91324
92917
|
user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
|
|
92918
|
+
refresh_token_auth?: RefreshTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
91325
92919
|
}
|
|
91326
92920
|
|
|
91327
92921
|
export type OrganisationCreateWithoutIntegration_credentialsInput = {
|
|
@@ -91868,6 +93462,7 @@ export namespace Prisma {
|
|
|
91868
93462
|
created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
|
|
91869
93463
|
assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
|
|
91870
93464
|
user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
|
|
93465
|
+
refresh_token_auth?: RefreshTokenCreateNestedManyWithoutUserInput
|
|
91871
93466
|
}
|
|
91872
93467
|
|
|
91873
93468
|
export type UserUncheckedCreateWithoutCandidate_interviewsInput = {
|
|
@@ -91930,6 +93525,7 @@ export namespace Prisma {
|
|
|
91930
93525
|
created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
|
|
91931
93526
|
assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
|
|
91932
93527
|
user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
|
|
93528
|
+
refresh_token_auth?: RefreshTokenUncheckedCreateNestedManyWithoutUserInput
|
|
91933
93529
|
}
|
|
91934
93530
|
|
|
91935
93531
|
export type UserCreateOrConnectWithoutCandidate_interviewsInput = {
|
|
@@ -91997,6 +93593,7 @@ export namespace Prisma {
|
|
|
91997
93593
|
created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
|
|
91998
93594
|
assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
|
|
91999
93595
|
user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
|
|
93596
|
+
refresh_token_auth?: RefreshTokenCreateNestedManyWithoutUserInput
|
|
92000
93597
|
}
|
|
92001
93598
|
|
|
92002
93599
|
export type UserUncheckedCreateWithoutInterviewer_interviewsInput = {
|
|
@@ -92059,6 +93656,7 @@ export namespace Prisma {
|
|
|
92059
93656
|
created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
|
|
92060
93657
|
assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
|
|
92061
93658
|
user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
|
|
93659
|
+
refresh_token_auth?: RefreshTokenUncheckedCreateNestedManyWithoutUserInput
|
|
92062
93660
|
}
|
|
92063
93661
|
|
|
92064
93662
|
export type UserCreateOrConnectWithoutInterviewer_interviewsInput = {
|
|
@@ -92223,6 +93821,7 @@ export namespace Prisma {
|
|
|
92223
93821
|
export type ResumeCreateWithoutInterviewsInput = {
|
|
92224
93822
|
id?: string
|
|
92225
93823
|
uploaded_resume_path?: string | null
|
|
93824
|
+
file_hash?: string | null
|
|
92226
93825
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
92227
93826
|
created_at?: Date | string
|
|
92228
93827
|
updated_at?: Date | string
|
|
@@ -92247,6 +93846,7 @@ export namespace Prisma {
|
|
|
92247
93846
|
organisation_id?: string | null
|
|
92248
93847
|
job_description_id?: string | null
|
|
92249
93848
|
uploaded_resume_path?: string | null
|
|
93849
|
+
file_hash?: string | null
|
|
92250
93850
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
92251
93851
|
created_at?: Date | string
|
|
92252
93852
|
updated_at?: Date | string
|
|
@@ -92707,6 +94307,7 @@ export namespace Prisma {
|
|
|
92707
94307
|
created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
|
|
92708
94308
|
assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
|
|
92709
94309
|
user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
|
|
94310
|
+
refresh_token_auth?: RefreshTokenUpdateManyWithoutUserNestedInput
|
|
92710
94311
|
}
|
|
92711
94312
|
|
|
92712
94313
|
export type UserUncheckedUpdateWithoutCandidate_interviewsInput = {
|
|
@@ -92769,6 +94370,7 @@ export namespace Prisma {
|
|
|
92769
94370
|
created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
|
|
92770
94371
|
assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
92771
94372
|
user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
|
|
94373
|
+
refresh_token_auth?: RefreshTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
92772
94374
|
}
|
|
92773
94375
|
|
|
92774
94376
|
export type UserUpsertWithoutInterviewer_interviewsInput = {
|
|
@@ -92842,6 +94444,7 @@ export namespace Prisma {
|
|
|
92842
94444
|
created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
|
|
92843
94445
|
assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
|
|
92844
94446
|
user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
|
|
94447
|
+
refresh_token_auth?: RefreshTokenUpdateManyWithoutUserNestedInput
|
|
92845
94448
|
}
|
|
92846
94449
|
|
|
92847
94450
|
export type UserUncheckedUpdateWithoutInterviewer_interviewsInput = {
|
|
@@ -92904,6 +94507,7 @@ export namespace Prisma {
|
|
|
92904
94507
|
created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
|
|
92905
94508
|
assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
92906
94509
|
user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
|
|
94510
|
+
refresh_token_auth?: RefreshTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
92907
94511
|
}
|
|
92908
94512
|
|
|
92909
94513
|
export type OrganisationUpsertWithoutInterviewsInput = {
|
|
@@ -93086,6 +94690,7 @@ export namespace Prisma {
|
|
|
93086
94690
|
export type ResumeUpdateWithoutInterviewsInput = {
|
|
93087
94691
|
id?: StringFieldUpdateOperationsInput | string
|
|
93088
94692
|
uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94693
|
+
file_hash?: NullableStringFieldUpdateOperationsInput | string | null
|
|
93089
94694
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
93090
94695
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
93091
94696
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -93110,6 +94715,7 @@ export namespace Prisma {
|
|
|
93110
94715
|
organisation_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
93111
94716
|
job_description_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
93112
94717
|
uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94718
|
+
file_hash?: NullableStringFieldUpdateOperationsInput | string | null
|
|
93113
94719
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
93114
94720
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
93115
94721
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -94345,6 +95951,7 @@ export namespace Prisma {
|
|
|
94345
95951
|
export type ResumeCreateWithoutJob_descriptionInput = {
|
|
94346
95952
|
id?: string
|
|
94347
95953
|
uploaded_resume_path?: string | null
|
|
95954
|
+
file_hash?: string | null
|
|
94348
95955
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
94349
95956
|
created_at?: Date | string
|
|
94350
95957
|
updated_at?: Date | string
|
|
@@ -94368,6 +95975,7 @@ export namespace Prisma {
|
|
|
94368
95975
|
user_id?: string | null
|
|
94369
95976
|
organisation_id?: string | null
|
|
94370
95977
|
uploaded_resume_path?: string | null
|
|
95978
|
+
file_hash?: string | null
|
|
94371
95979
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
94372
95980
|
created_at?: Date | string
|
|
94373
95981
|
updated_at?: Date | string
|
|
@@ -94503,6 +96111,7 @@ export namespace Prisma {
|
|
|
94503
96111
|
created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
|
|
94504
96112
|
assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
|
|
94505
96113
|
user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
|
|
96114
|
+
refresh_token_auth?: RefreshTokenCreateNestedManyWithoutUserInput
|
|
94506
96115
|
}
|
|
94507
96116
|
|
|
94508
96117
|
export type UserUncheckedCreateWithoutHiring_manager_job_descriptionsInput = {
|
|
@@ -94565,6 +96174,7 @@ export namespace Prisma {
|
|
|
94565
96174
|
created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
|
|
94566
96175
|
assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
|
|
94567
96176
|
user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
|
|
96177
|
+
refresh_token_auth?: RefreshTokenUncheckedCreateNestedManyWithoutUserInput
|
|
94568
96178
|
}
|
|
94569
96179
|
|
|
94570
96180
|
export type UserCreateOrConnectWithoutHiring_manager_job_descriptionsInput = {
|
|
@@ -94632,6 +96242,7 @@ export namespace Prisma {
|
|
|
94632
96242
|
created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
|
|
94633
96243
|
assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
|
|
94634
96244
|
user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
|
|
96245
|
+
refresh_token_auth?: RefreshTokenCreateNestedManyWithoutUserInput
|
|
94635
96246
|
}
|
|
94636
96247
|
|
|
94637
96248
|
export type UserUncheckedCreateWithoutJob_descriptionInput = {
|
|
@@ -94694,6 +96305,7 @@ export namespace Prisma {
|
|
|
94694
96305
|
created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
|
|
94695
96306
|
assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
|
|
94696
96307
|
user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
|
|
96308
|
+
refresh_token_auth?: RefreshTokenUncheckedCreateNestedManyWithoutUserInput
|
|
94697
96309
|
}
|
|
94698
96310
|
|
|
94699
96311
|
export type UserCreateOrConnectWithoutJob_descriptionInput = {
|
|
@@ -95183,6 +96795,7 @@ export namespace Prisma {
|
|
|
95183
96795
|
organisation_id?: StringNullableFilter<"Resume"> | string | null
|
|
95184
96796
|
job_description_id?: StringNullableFilter<"Resume"> | string | null
|
|
95185
96797
|
uploaded_resume_path?: StringNullableFilter<"Resume"> | string | null
|
|
96798
|
+
file_hash?: StringNullableFilter<"Resume"> | string | null
|
|
95186
96799
|
summary?: JsonNullableFilter<"Resume">
|
|
95187
96800
|
created_at?: DateTimeFilter<"Resume"> | Date | string
|
|
95188
96801
|
updated_at?: DateTimeFilter<"Resume"> | Date | string
|
|
@@ -95319,6 +96932,7 @@ export namespace Prisma {
|
|
|
95319
96932
|
created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
|
|
95320
96933
|
assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
|
|
95321
96934
|
user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
|
|
96935
|
+
refresh_token_auth?: RefreshTokenUpdateManyWithoutUserNestedInput
|
|
95322
96936
|
}
|
|
95323
96937
|
|
|
95324
96938
|
export type UserUncheckedUpdateWithoutHiring_manager_job_descriptionsInput = {
|
|
@@ -95381,6 +96995,7 @@ export namespace Prisma {
|
|
|
95381
96995
|
created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
|
|
95382
96996
|
assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
95383
96997
|
user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
|
|
96998
|
+
refresh_token_auth?: RefreshTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
95384
96999
|
}
|
|
95385
97000
|
|
|
95386
97001
|
export type UserUpsertWithWhereUniqueWithoutJob_descriptionInput = {
|
|
@@ -95742,6 +97357,7 @@ export namespace Prisma {
|
|
|
95742
97357
|
created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
|
|
95743
97358
|
assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
|
|
95744
97359
|
user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
|
|
97360
|
+
refresh_token_auth?: RefreshTokenCreateNestedManyWithoutUserInput
|
|
95745
97361
|
}
|
|
95746
97362
|
|
|
95747
97363
|
export type UserUncheckedCreateWithoutHiring_manager_job_profilesInput = {
|
|
@@ -95804,6 +97420,7 @@ export namespace Prisma {
|
|
|
95804
97420
|
created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
|
|
95805
97421
|
assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
|
|
95806
97422
|
user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
|
|
97423
|
+
refresh_token_auth?: RefreshTokenUncheckedCreateNestedManyWithoutUserInput
|
|
95807
97424
|
}
|
|
95808
97425
|
|
|
95809
97426
|
export type UserCreateOrConnectWithoutHiring_manager_job_profilesInput = {
|
|
@@ -95871,6 +97488,7 @@ export namespace Prisma {
|
|
|
95871
97488
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
95872
97489
|
assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
|
|
95873
97490
|
user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
|
|
97491
|
+
refresh_token_auth?: RefreshTokenCreateNestedManyWithoutUserInput
|
|
95874
97492
|
}
|
|
95875
97493
|
|
|
95876
97494
|
export type UserUncheckedCreateWithoutCreated_job_profilesInput = {
|
|
@@ -95933,6 +97551,7 @@ export namespace Prisma {
|
|
|
95933
97551
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
95934
97552
|
assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
|
|
95935
97553
|
user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
|
|
97554
|
+
refresh_token_auth?: RefreshTokenUncheckedCreateNestedManyWithoutUserInput
|
|
95936
97555
|
}
|
|
95937
97556
|
|
|
95938
97557
|
export type UserCreateOrConnectWithoutCreated_job_profilesInput = {
|
|
@@ -96000,6 +97619,7 @@ export namespace Prisma {
|
|
|
96000
97619
|
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
96001
97620
|
created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
|
|
96002
97621
|
user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
|
|
97622
|
+
refresh_token_auth?: RefreshTokenCreateNestedManyWithoutUserInput
|
|
96003
97623
|
}
|
|
96004
97624
|
|
|
96005
97625
|
export type UserUncheckedCreateWithoutAssigned_job_profilesInput = {
|
|
@@ -96062,6 +97682,7 @@ export namespace Prisma {
|
|
|
96062
97682
|
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
96063
97683
|
created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
|
|
96064
97684
|
user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
|
|
97685
|
+
refresh_token_auth?: RefreshTokenUncheckedCreateNestedManyWithoutUserInput
|
|
96065
97686
|
}
|
|
96066
97687
|
|
|
96067
97688
|
export type UserCreateOrConnectWithoutAssigned_job_profilesInput = {
|
|
@@ -96305,6 +97926,7 @@ export namespace Prisma {
|
|
|
96305
97926
|
created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
|
|
96306
97927
|
assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
|
|
96307
97928
|
user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
|
|
97929
|
+
refresh_token_auth?: RefreshTokenUpdateManyWithoutUserNestedInput
|
|
96308
97930
|
}
|
|
96309
97931
|
|
|
96310
97932
|
export type UserUncheckedUpdateWithoutHiring_manager_job_profilesInput = {
|
|
@@ -96367,6 +97989,7 @@ export namespace Prisma {
|
|
|
96367
97989
|
created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
|
|
96368
97990
|
assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
96369
97991
|
user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
|
|
97992
|
+
refresh_token_auth?: RefreshTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
96370
97993
|
}
|
|
96371
97994
|
|
|
96372
97995
|
export type UserUpsertWithoutCreated_job_profilesInput = {
|
|
@@ -96440,6 +98063,7 @@ export namespace Prisma {
|
|
|
96440
98063
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
96441
98064
|
assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
|
|
96442
98065
|
user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
|
|
98066
|
+
refresh_token_auth?: RefreshTokenUpdateManyWithoutUserNestedInput
|
|
96443
98067
|
}
|
|
96444
98068
|
|
|
96445
98069
|
export type UserUncheckedUpdateWithoutCreated_job_profilesInput = {
|
|
@@ -96502,6 +98126,7 @@ export namespace Prisma {
|
|
|
96502
98126
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
96503
98127
|
assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
96504
98128
|
user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
|
|
98129
|
+
refresh_token_auth?: RefreshTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
96505
98130
|
}
|
|
96506
98131
|
|
|
96507
98132
|
export type UserUpsertWithoutAssigned_job_profilesInput = {
|
|
@@ -96575,6 +98200,7 @@ export namespace Prisma {
|
|
|
96575
98200
|
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
96576
98201
|
created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
|
|
96577
98202
|
user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
|
|
98203
|
+
refresh_token_auth?: RefreshTokenUpdateManyWithoutUserNestedInput
|
|
96578
98204
|
}
|
|
96579
98205
|
|
|
96580
98206
|
export type UserUncheckedUpdateWithoutAssigned_job_profilesInput = {
|
|
@@ -96637,6 +98263,7 @@ export namespace Prisma {
|
|
|
96637
98263
|
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
96638
98264
|
created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
|
|
96639
98265
|
user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
|
|
98266
|
+
refresh_token_auth?: RefreshTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
96640
98267
|
}
|
|
96641
98268
|
|
|
96642
98269
|
export type JobDescriptionUpsertWithWhereUniqueWithoutJob_profileInput = {
|
|
@@ -96916,6 +98543,7 @@ export namespace Prisma {
|
|
|
96916
98543
|
created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
|
|
96917
98544
|
assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
|
|
96918
98545
|
user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
|
|
98546
|
+
refresh_token_auth?: RefreshTokenCreateNestedManyWithoutUserInput
|
|
96919
98547
|
}
|
|
96920
98548
|
|
|
96921
98549
|
export type UserUncheckedCreateWithoutSent_messagesInput = {
|
|
@@ -96978,6 +98606,7 @@ export namespace Prisma {
|
|
|
96978
98606
|
created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
|
|
96979
98607
|
assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
|
|
96980
98608
|
user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
|
|
98609
|
+
refresh_token_auth?: RefreshTokenUncheckedCreateNestedManyWithoutUserInput
|
|
96981
98610
|
}
|
|
96982
98611
|
|
|
96983
98612
|
export type UserCreateOrConnectWithoutSent_messagesInput = {
|
|
@@ -97045,6 +98674,7 @@ export namespace Prisma {
|
|
|
97045
98674
|
created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
|
|
97046
98675
|
assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
|
|
97047
98676
|
user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
|
|
98677
|
+
refresh_token_auth?: RefreshTokenCreateNestedManyWithoutUserInput
|
|
97048
98678
|
}
|
|
97049
98679
|
|
|
97050
98680
|
export type UserUncheckedCreateWithoutReceived_messagesInput = {
|
|
@@ -97107,6 +98737,7 @@ export namespace Prisma {
|
|
|
97107
98737
|
created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
|
|
97108
98738
|
assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
|
|
97109
98739
|
user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
|
|
98740
|
+
refresh_token_auth?: RefreshTokenUncheckedCreateNestedManyWithoutUserInput
|
|
97110
98741
|
}
|
|
97111
98742
|
|
|
97112
98743
|
export type UserCreateOrConnectWithoutReceived_messagesInput = {
|
|
@@ -97185,6 +98816,7 @@ export namespace Prisma {
|
|
|
97185
98816
|
created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
|
|
97186
98817
|
assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
|
|
97187
98818
|
user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
|
|
98819
|
+
refresh_token_auth?: RefreshTokenUpdateManyWithoutUserNestedInput
|
|
97188
98820
|
}
|
|
97189
98821
|
|
|
97190
98822
|
export type UserUncheckedUpdateWithoutSent_messagesInput = {
|
|
@@ -97247,6 +98879,7 @@ export namespace Prisma {
|
|
|
97247
98879
|
created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
|
|
97248
98880
|
assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
97249
98881
|
user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
|
|
98882
|
+
refresh_token_auth?: RefreshTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
97250
98883
|
}
|
|
97251
98884
|
|
|
97252
98885
|
export type UserUpsertWithoutReceived_messagesInput = {
|
|
@@ -97320,6 +98953,7 @@ export namespace Prisma {
|
|
|
97320
98953
|
created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
|
|
97321
98954
|
assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
|
|
97322
98955
|
user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
|
|
98956
|
+
refresh_token_auth?: RefreshTokenUpdateManyWithoutUserNestedInput
|
|
97323
98957
|
}
|
|
97324
98958
|
|
|
97325
98959
|
export type UserUncheckedUpdateWithoutReceived_messagesInput = {
|
|
@@ -97382,6 +99016,7 @@ export namespace Prisma {
|
|
|
97382
99016
|
created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
|
|
97383
99017
|
assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
97384
99018
|
user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
|
|
99019
|
+
refresh_token_auth?: RefreshTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
97385
99020
|
}
|
|
97386
99021
|
|
|
97387
99022
|
export type JobDescriptionCreateWithoutOngoing_evaluationsInput = {
|
|
@@ -97570,6 +99205,7 @@ export namespace Prisma {
|
|
|
97570
99205
|
created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
|
|
97571
99206
|
assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
|
|
97572
99207
|
user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
|
|
99208
|
+
refresh_token_auth?: RefreshTokenCreateNestedManyWithoutUserInput
|
|
97573
99209
|
}
|
|
97574
99210
|
|
|
97575
99211
|
export type UserUncheckedCreateWithoutOngoing_evaluationsInput = {
|
|
@@ -97632,6 +99268,7 @@ export namespace Prisma {
|
|
|
97632
99268
|
created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
|
|
97633
99269
|
assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
|
|
97634
99270
|
user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
|
|
99271
|
+
refresh_token_auth?: RefreshTokenUncheckedCreateNestedManyWithoutUserInput
|
|
97635
99272
|
}
|
|
97636
99273
|
|
|
97637
99274
|
export type UserCreateOrConnectWithoutOngoing_evaluationsInput = {
|
|
@@ -97642,6 +99279,7 @@ export namespace Prisma {
|
|
|
97642
99279
|
export type ResumeCreateWithoutOngoing_evaluationsInput = {
|
|
97643
99280
|
id?: string
|
|
97644
99281
|
uploaded_resume_path?: string | null
|
|
99282
|
+
file_hash?: string | null
|
|
97645
99283
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
97646
99284
|
created_at?: Date | string
|
|
97647
99285
|
updated_at?: Date | string
|
|
@@ -97666,6 +99304,7 @@ export namespace Prisma {
|
|
|
97666
99304
|
organisation_id?: string | null
|
|
97667
99305
|
job_description_id?: string | null
|
|
97668
99306
|
uploaded_resume_path?: string | null
|
|
99307
|
+
file_hash?: string | null
|
|
97669
99308
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
97670
99309
|
created_at?: Date | string
|
|
97671
99310
|
updated_at?: Date | string
|
|
@@ -98224,6 +99863,7 @@ export namespace Prisma {
|
|
|
98224
99863
|
created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
|
|
98225
99864
|
assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
|
|
98226
99865
|
user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
|
|
99866
|
+
refresh_token_auth?: RefreshTokenUpdateManyWithoutUserNestedInput
|
|
98227
99867
|
}
|
|
98228
99868
|
|
|
98229
99869
|
export type UserUncheckedUpdateWithoutOngoing_evaluationsInput = {
|
|
@@ -98286,6 +99926,7 @@ export namespace Prisma {
|
|
|
98286
99926
|
created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
|
|
98287
99927
|
assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
98288
99928
|
user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
|
|
99929
|
+
refresh_token_auth?: RefreshTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
98289
99930
|
}
|
|
98290
99931
|
|
|
98291
99932
|
export type ResumeUpsertWithoutOngoing_evaluationsInput = {
|
|
@@ -98302,6 +99943,7 @@ export namespace Prisma {
|
|
|
98302
99943
|
export type ResumeUpdateWithoutOngoing_evaluationsInput = {
|
|
98303
99944
|
id?: StringFieldUpdateOperationsInput | string
|
|
98304
99945
|
uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
99946
|
+
file_hash?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98305
99947
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
98306
99948
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
98307
99949
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -98326,6 +99968,7 @@ export namespace Prisma {
|
|
|
98326
99968
|
organisation_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98327
99969
|
job_description_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98328
99970
|
uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
99971
|
+
file_hash?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98329
99972
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
98330
99973
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
98331
99974
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -98760,6 +100403,7 @@ export namespace Prisma {
|
|
|
98760
100403
|
created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
|
|
98761
100404
|
assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
|
|
98762
100405
|
user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
|
|
100406
|
+
refresh_token_auth?: RefreshTokenCreateNestedManyWithoutUserInput
|
|
98763
100407
|
}
|
|
98764
100408
|
|
|
98765
100409
|
export type UserUncheckedCreateWithoutOrganisationInput = {
|
|
@@ -98822,6 +100466,7 @@ export namespace Prisma {
|
|
|
98822
100466
|
created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
|
|
98823
100467
|
assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
|
|
98824
100468
|
user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
|
|
100469
|
+
refresh_token_auth?: RefreshTokenUncheckedCreateNestedManyWithoutUserInput
|
|
98825
100470
|
}
|
|
98826
100471
|
|
|
98827
100472
|
export type UserCreateOrConnectWithoutOrganisationInput = {
|
|
@@ -99387,6 +101032,7 @@ export namespace Prisma {
|
|
|
99387
101032
|
export type ResumeCreateWithoutOrganisationInput = {
|
|
99388
101033
|
id?: string
|
|
99389
101034
|
uploaded_resume_path?: string | null
|
|
101035
|
+
file_hash?: string | null
|
|
99390
101036
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
99391
101037
|
created_at?: Date | string
|
|
99392
101038
|
updated_at?: Date | string
|
|
@@ -99410,6 +101056,7 @@ export namespace Prisma {
|
|
|
99410
101056
|
user_id?: string | null
|
|
99411
101057
|
job_description_id?: string | null
|
|
99412
101058
|
uploaded_resume_path?: string | null
|
|
101059
|
+
file_hash?: string | null
|
|
99413
101060
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
99414
101061
|
created_at?: Date | string
|
|
99415
101062
|
updated_at?: Date | string
|
|
@@ -100231,6 +101878,7 @@ export namespace Prisma {
|
|
|
100231
101878
|
created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
|
|
100232
101879
|
assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
|
|
100233
101880
|
user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
|
|
101881
|
+
refresh_token_auth?: RefreshTokenCreateNestedManyWithoutUserInput
|
|
100234
101882
|
}
|
|
100235
101883
|
|
|
100236
101884
|
export type UserUncheckedCreateWithoutPermissionInput = {
|
|
@@ -100293,6 +101941,7 @@ export namespace Prisma {
|
|
|
100293
101941
|
created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
|
|
100294
101942
|
assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
|
|
100295
101943
|
user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
|
|
101944
|
+
refresh_token_auth?: RefreshTokenUncheckedCreateNestedManyWithoutUserInput
|
|
100296
101945
|
}
|
|
100297
101946
|
|
|
100298
101947
|
export type UserCreateOrConnectWithoutPermissionInput = {
|
|
@@ -100402,6 +102051,7 @@ export namespace Prisma {
|
|
|
100402
102051
|
created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
|
|
100403
102052
|
assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
|
|
100404
102053
|
user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
|
|
102054
|
+
refresh_token_auth?: RefreshTokenUpdateManyWithoutUserNestedInput
|
|
100405
102055
|
}
|
|
100406
102056
|
|
|
100407
102057
|
export type UserUncheckedUpdateWithoutPermissionInput = {
|
|
@@ -100464,6 +102114,7 @@ export namespace Prisma {
|
|
|
100464
102114
|
created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
|
|
100465
102115
|
assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
100466
102116
|
user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
|
|
102117
|
+
refresh_token_auth?: RefreshTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
100467
102118
|
}
|
|
100468
102119
|
|
|
100469
102120
|
export type UserRoleUpsertWithoutPermissionInput = {
|
|
@@ -100563,6 +102214,7 @@ export namespace Prisma {
|
|
|
100563
102214
|
created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
|
|
100564
102215
|
assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
|
|
100565
102216
|
user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
|
|
102217
|
+
refresh_token_auth?: RefreshTokenCreateNestedManyWithoutUserInput
|
|
100566
102218
|
}
|
|
100567
102219
|
|
|
100568
102220
|
export type UserUncheckedCreateWithoutQuestionsInput = {
|
|
@@ -100625,6 +102277,7 @@ export namespace Prisma {
|
|
|
100625
102277
|
created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
|
|
100626
102278
|
assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
|
|
100627
102279
|
user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
|
|
102280
|
+
refresh_token_auth?: RefreshTokenUncheckedCreateNestedManyWithoutUserInput
|
|
100628
102281
|
}
|
|
100629
102282
|
|
|
100630
102283
|
export type UserCreateOrConnectWithoutQuestionsInput = {
|
|
@@ -100871,6 +102524,7 @@ export namespace Prisma {
|
|
|
100871
102524
|
created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
|
|
100872
102525
|
assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
|
|
100873
102526
|
user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
|
|
102527
|
+
refresh_token_auth?: RefreshTokenUpdateManyWithoutUserNestedInput
|
|
100874
102528
|
}
|
|
100875
102529
|
|
|
100876
102530
|
export type UserUncheckedUpdateWithoutQuestionsInput = {
|
|
@@ -100933,6 +102587,7 @@ export namespace Prisma {
|
|
|
100933
102587
|
created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
|
|
100934
102588
|
assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
100935
102589
|
user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
|
|
102590
|
+
refresh_token_auth?: RefreshTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
100936
102591
|
}
|
|
100937
102592
|
|
|
100938
102593
|
export type AssessmentQuestionUpsertWithWhereUniqueWithoutQuestionInput = {
|
|
@@ -101089,6 +102744,274 @@ export namespace Prisma {
|
|
|
101089
102744
|
data: XOR<CandidateQuestionResponseUpdateManyMutationInput, CandidateQuestionResponseUncheckedUpdateManyWithoutQuestionInput>
|
|
101090
102745
|
}
|
|
101091
102746
|
|
|
102747
|
+
export type UserCreateWithoutRefresh_token_authInput = {
|
|
102748
|
+
id?: string
|
|
102749
|
+
email: string
|
|
102750
|
+
password: string
|
|
102751
|
+
google_id?: string | null
|
|
102752
|
+
refresh_token?: string | null
|
|
102753
|
+
created_at?: Date | string
|
|
102754
|
+
updated_at?: Date | string
|
|
102755
|
+
created_by: string
|
|
102756
|
+
updated_by: string
|
|
102757
|
+
is_active?: boolean
|
|
102758
|
+
is_self_registered?: boolean
|
|
102759
|
+
profile_created: boolean
|
|
102760
|
+
first_login_status?: $Enums.FirstLoginStatus
|
|
102761
|
+
name?: string | null
|
|
102762
|
+
phone?: string | null
|
|
102763
|
+
description?: string | null
|
|
102764
|
+
date_of_birth?: Date | string | null
|
|
102765
|
+
designation?: string | null
|
|
102766
|
+
location?: string | null
|
|
102767
|
+
salary?: string | null
|
|
102768
|
+
work_experience?: NullableJsonNullValueInput | InputJsonValue
|
|
102769
|
+
education?: NullableJsonNullValueInput | InputJsonValue
|
|
102770
|
+
skills?: NullableJsonNullValueInput | InputJsonValue
|
|
102771
|
+
notice_period?: string | null
|
|
102772
|
+
preferred_work_mode?: string | null
|
|
102773
|
+
gender?: string | null
|
|
102774
|
+
ethnicity?: string | null
|
|
102775
|
+
veteran_status?: string | null
|
|
102776
|
+
disability_status?: string | null
|
|
102777
|
+
role: UserRoleCreateNestedOneWithoutUsersInput
|
|
102778
|
+
permission?: PermissionCreateNestedOneWithoutUserInput
|
|
102779
|
+
organisation?: OrganisationCreateNestedOneWithoutInterviewersInput
|
|
102780
|
+
applications?: ApplicationCreateNestedManyWithoutCandidateInput
|
|
102781
|
+
resume?: ResumeCreateNestedManyWithoutUserInput
|
|
102782
|
+
candidate_profile?: CandidateProfileCreateNestedOneWithoutUserInput
|
|
102783
|
+
user_profile?: UserProfileCreateNestedOneWithoutUserInput
|
|
102784
|
+
job_description?: JobDescriptionCreateNestedManyWithoutRecruitersInput
|
|
102785
|
+
hiring_manager_job_descriptions?: JobDescriptionCreateNestedManyWithoutHiring_managerInput
|
|
102786
|
+
hiring_manager_job_profiles?: JobProfileCreateNestedManyWithoutHiring_managerInput
|
|
102787
|
+
approvals?: ApprovalCreateNestedManyWithoutUserInput
|
|
102788
|
+
sent_messages?: MessageCreateNestedManyWithoutSenderInput
|
|
102789
|
+
received_messages?: MessageCreateNestedManyWithoutReceiverInput
|
|
102790
|
+
candidate_interviews?: InterviewCreateNestedManyWithoutCandidateInput
|
|
102791
|
+
interviewer_interviews?: InterviewCreateNestedManyWithoutInterviewerInput
|
|
102792
|
+
assessment_results?: AssessmentCreateNestedManyWithoutUserInput
|
|
102793
|
+
candidate_assessments?: AssessmentCreateNestedManyWithoutCandidateInput
|
|
102794
|
+
reviewer_assessments?: AssessmentCreateNestedManyWithoutReviewerInput
|
|
102795
|
+
candidate_assignments?: AssignmentCreateNestedManyWithoutCandidateInput
|
|
102796
|
+
reviewer_assignments?: AssignmentCreateNestedManyWithoutReviewerInput
|
|
102797
|
+
candidateResponses?: CandidateQuestionResponseCreateNestedManyWithoutCandidateInput
|
|
102798
|
+
questions?: QuestionCreateNestedManyWithoutCandidateInput
|
|
102799
|
+
ongoing_evaluations?: OngoingEvaluationCreateNestedManyWithoutCandidateInput
|
|
102800
|
+
actor_activity_logs?: ActivityLogCreateNestedManyWithoutActorInput
|
|
102801
|
+
actions?: ActionCreateNestedManyWithoutUserInput
|
|
102802
|
+
calendly?: CalendlyCreateNestedOneWithoutUserInput
|
|
102803
|
+
google?: GoogleCreateNestedOneWithoutUserInput
|
|
102804
|
+
fitChecks?: FitCheckCreateNestedManyWithoutCandidateInput
|
|
102805
|
+
created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
|
|
102806
|
+
assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
|
|
102807
|
+
user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
|
|
102808
|
+
}
|
|
102809
|
+
|
|
102810
|
+
export type UserUncheckedCreateWithoutRefresh_token_authInput = {
|
|
102811
|
+
id?: string
|
|
102812
|
+
email: string
|
|
102813
|
+
password: string
|
|
102814
|
+
role_id: string
|
|
102815
|
+
google_id?: string | null
|
|
102816
|
+
refresh_token?: string | null
|
|
102817
|
+
created_at?: Date | string
|
|
102818
|
+
updated_at?: Date | string
|
|
102819
|
+
created_by: string
|
|
102820
|
+
updated_by: string
|
|
102821
|
+
is_active?: boolean
|
|
102822
|
+
is_self_registered?: boolean
|
|
102823
|
+
permission_id?: string | null
|
|
102824
|
+
organisation_id?: string | null
|
|
102825
|
+
profile_created: boolean
|
|
102826
|
+
first_login_status?: $Enums.FirstLoginStatus
|
|
102827
|
+
name?: string | null
|
|
102828
|
+
phone?: string | null
|
|
102829
|
+
description?: string | null
|
|
102830
|
+
date_of_birth?: Date | string | null
|
|
102831
|
+
designation?: string | null
|
|
102832
|
+
location?: string | null
|
|
102833
|
+
salary?: string | null
|
|
102834
|
+
work_experience?: NullableJsonNullValueInput | InputJsonValue
|
|
102835
|
+
education?: NullableJsonNullValueInput | InputJsonValue
|
|
102836
|
+
skills?: NullableJsonNullValueInput | InputJsonValue
|
|
102837
|
+
notice_period?: string | null
|
|
102838
|
+
preferred_work_mode?: string | null
|
|
102839
|
+
gender?: string | null
|
|
102840
|
+
ethnicity?: string | null
|
|
102841
|
+
veteran_status?: string | null
|
|
102842
|
+
disability_status?: string | null
|
|
102843
|
+
applications?: ApplicationUncheckedCreateNestedManyWithoutCandidateInput
|
|
102844
|
+
resume?: ResumeUncheckedCreateNestedManyWithoutUserInput
|
|
102845
|
+
candidate_profile?: CandidateProfileUncheckedCreateNestedOneWithoutUserInput
|
|
102846
|
+
user_profile?: UserProfileUncheckedCreateNestedOneWithoutUserInput
|
|
102847
|
+
job_description?: JobDescriptionUncheckedCreateNestedManyWithoutRecruitersInput
|
|
102848
|
+
hiring_manager_job_descriptions?: JobDescriptionUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
102849
|
+
hiring_manager_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutHiring_managerInput
|
|
102850
|
+
approvals?: ApprovalUncheckedCreateNestedManyWithoutUserInput
|
|
102851
|
+
sent_messages?: MessageUncheckedCreateNestedManyWithoutSenderInput
|
|
102852
|
+
received_messages?: MessageUncheckedCreateNestedManyWithoutReceiverInput
|
|
102853
|
+
candidate_interviews?: InterviewUncheckedCreateNestedManyWithoutCandidateInput
|
|
102854
|
+
interviewer_interviews?: InterviewUncheckedCreateNestedManyWithoutInterviewerInput
|
|
102855
|
+
assessment_results?: AssessmentUncheckedCreateNestedManyWithoutUserInput
|
|
102856
|
+
candidate_assessments?: AssessmentUncheckedCreateNestedManyWithoutCandidateInput
|
|
102857
|
+
reviewer_assessments?: AssessmentUncheckedCreateNestedManyWithoutReviewerInput
|
|
102858
|
+
candidate_assignments?: AssignmentUncheckedCreateNestedManyWithoutCandidateInput
|
|
102859
|
+
reviewer_assignments?: AssignmentUncheckedCreateNestedManyWithoutReviewerInput
|
|
102860
|
+
candidateResponses?: CandidateQuestionResponseUncheckedCreateNestedManyWithoutCandidateInput
|
|
102861
|
+
questions?: QuestionUncheckedCreateNestedManyWithoutCandidateInput
|
|
102862
|
+
ongoing_evaluations?: OngoingEvaluationUncheckedCreateNestedManyWithoutCandidateInput
|
|
102863
|
+
actor_activity_logs?: ActivityLogUncheckedCreateNestedManyWithoutActorInput
|
|
102864
|
+
actions?: ActionUncheckedCreateNestedManyWithoutUserInput
|
|
102865
|
+
calendly?: CalendlyUncheckedCreateNestedOneWithoutUserInput
|
|
102866
|
+
google?: GoogleUncheckedCreateNestedOneWithoutUserInput
|
|
102867
|
+
fitChecks?: FitCheckUncheckedCreateNestedManyWithoutCandidateInput
|
|
102868
|
+
created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
|
|
102869
|
+
assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
|
|
102870
|
+
user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
|
|
102871
|
+
}
|
|
102872
|
+
|
|
102873
|
+
export type UserCreateOrConnectWithoutRefresh_token_authInput = {
|
|
102874
|
+
where: UserWhereUniqueInput
|
|
102875
|
+
create: XOR<UserCreateWithoutRefresh_token_authInput, UserUncheckedCreateWithoutRefresh_token_authInput>
|
|
102876
|
+
}
|
|
102877
|
+
|
|
102878
|
+
export type UserUpsertWithoutRefresh_token_authInput = {
|
|
102879
|
+
update: XOR<UserUpdateWithoutRefresh_token_authInput, UserUncheckedUpdateWithoutRefresh_token_authInput>
|
|
102880
|
+
create: XOR<UserCreateWithoutRefresh_token_authInput, UserUncheckedCreateWithoutRefresh_token_authInput>
|
|
102881
|
+
where?: UserWhereInput
|
|
102882
|
+
}
|
|
102883
|
+
|
|
102884
|
+
export type UserUpdateToOneWithWhereWithoutRefresh_token_authInput = {
|
|
102885
|
+
where?: UserWhereInput
|
|
102886
|
+
data: XOR<UserUpdateWithoutRefresh_token_authInput, UserUncheckedUpdateWithoutRefresh_token_authInput>
|
|
102887
|
+
}
|
|
102888
|
+
|
|
102889
|
+
export type UserUpdateWithoutRefresh_token_authInput = {
|
|
102890
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
102891
|
+
email?: StringFieldUpdateOperationsInput | string
|
|
102892
|
+
password?: StringFieldUpdateOperationsInput | string
|
|
102893
|
+
google_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
102894
|
+
refresh_token?: NullableStringFieldUpdateOperationsInput | string | null
|
|
102895
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
102896
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
102897
|
+
created_by?: StringFieldUpdateOperationsInput | string
|
|
102898
|
+
updated_by?: StringFieldUpdateOperationsInput | string
|
|
102899
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
102900
|
+
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
102901
|
+
profile_created?: BoolFieldUpdateOperationsInput | boolean
|
|
102902
|
+
first_login_status?: EnumFirstLoginStatusFieldUpdateOperationsInput | $Enums.FirstLoginStatus
|
|
102903
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
102904
|
+
phone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
102905
|
+
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
102906
|
+
date_of_birth?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
102907
|
+
designation?: NullableStringFieldUpdateOperationsInput | string | null
|
|
102908
|
+
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
102909
|
+
salary?: NullableStringFieldUpdateOperationsInput | string | null
|
|
102910
|
+
work_experience?: NullableJsonNullValueInput | InputJsonValue
|
|
102911
|
+
education?: NullableJsonNullValueInput | InputJsonValue
|
|
102912
|
+
skills?: NullableJsonNullValueInput | InputJsonValue
|
|
102913
|
+
notice_period?: NullableStringFieldUpdateOperationsInput | string | null
|
|
102914
|
+
preferred_work_mode?: NullableStringFieldUpdateOperationsInput | string | null
|
|
102915
|
+
gender?: NullableStringFieldUpdateOperationsInput | string | null
|
|
102916
|
+
ethnicity?: NullableStringFieldUpdateOperationsInput | string | null
|
|
102917
|
+
veteran_status?: NullableStringFieldUpdateOperationsInput | string | null
|
|
102918
|
+
disability_status?: NullableStringFieldUpdateOperationsInput | string | null
|
|
102919
|
+
role?: UserRoleUpdateOneRequiredWithoutUsersNestedInput
|
|
102920
|
+
permission?: PermissionUpdateOneWithoutUserNestedInput
|
|
102921
|
+
organisation?: OrganisationUpdateOneWithoutInterviewersNestedInput
|
|
102922
|
+
applications?: ApplicationUpdateManyWithoutCandidateNestedInput
|
|
102923
|
+
resume?: ResumeUpdateManyWithoutUserNestedInput
|
|
102924
|
+
candidate_profile?: CandidateProfileUpdateOneWithoutUserNestedInput
|
|
102925
|
+
user_profile?: UserProfileUpdateOneWithoutUserNestedInput
|
|
102926
|
+
job_description?: JobDescriptionUpdateManyWithoutRecruitersNestedInput
|
|
102927
|
+
hiring_manager_job_descriptions?: JobDescriptionUpdateManyWithoutHiring_managerNestedInput
|
|
102928
|
+
hiring_manager_job_profiles?: JobProfileUpdateManyWithoutHiring_managerNestedInput
|
|
102929
|
+
approvals?: ApprovalUpdateManyWithoutUserNestedInput
|
|
102930
|
+
sent_messages?: MessageUpdateManyWithoutSenderNestedInput
|
|
102931
|
+
received_messages?: MessageUpdateManyWithoutReceiverNestedInput
|
|
102932
|
+
candidate_interviews?: InterviewUpdateManyWithoutCandidateNestedInput
|
|
102933
|
+
interviewer_interviews?: InterviewUpdateManyWithoutInterviewerNestedInput
|
|
102934
|
+
assessment_results?: AssessmentUpdateManyWithoutUserNestedInput
|
|
102935
|
+
candidate_assessments?: AssessmentUpdateManyWithoutCandidateNestedInput
|
|
102936
|
+
reviewer_assessments?: AssessmentUpdateManyWithoutReviewerNestedInput
|
|
102937
|
+
candidate_assignments?: AssignmentUpdateManyWithoutCandidateNestedInput
|
|
102938
|
+
reviewer_assignments?: AssignmentUpdateManyWithoutReviewerNestedInput
|
|
102939
|
+
candidateResponses?: CandidateQuestionResponseUpdateManyWithoutCandidateNestedInput
|
|
102940
|
+
questions?: QuestionUpdateManyWithoutCandidateNestedInput
|
|
102941
|
+
ongoing_evaluations?: OngoingEvaluationUpdateManyWithoutCandidateNestedInput
|
|
102942
|
+
actor_activity_logs?: ActivityLogUpdateManyWithoutActorNestedInput
|
|
102943
|
+
actions?: ActionUpdateManyWithoutUserNestedInput
|
|
102944
|
+
calendly?: CalendlyUpdateOneWithoutUserNestedInput
|
|
102945
|
+
google?: GoogleUpdateOneWithoutUserNestedInput
|
|
102946
|
+
fitChecks?: FitCheckUpdateManyWithoutCandidateNestedInput
|
|
102947
|
+
created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
|
|
102948
|
+
assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
|
|
102949
|
+
user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
|
|
102950
|
+
}
|
|
102951
|
+
|
|
102952
|
+
export type UserUncheckedUpdateWithoutRefresh_token_authInput = {
|
|
102953
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
102954
|
+
email?: StringFieldUpdateOperationsInput | string
|
|
102955
|
+
password?: StringFieldUpdateOperationsInput | string
|
|
102956
|
+
role_id?: StringFieldUpdateOperationsInput | string
|
|
102957
|
+
google_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
102958
|
+
refresh_token?: NullableStringFieldUpdateOperationsInput | string | null
|
|
102959
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
102960
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
102961
|
+
created_by?: StringFieldUpdateOperationsInput | string
|
|
102962
|
+
updated_by?: StringFieldUpdateOperationsInput | string
|
|
102963
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
102964
|
+
is_self_registered?: BoolFieldUpdateOperationsInput | boolean
|
|
102965
|
+
permission_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
102966
|
+
organisation_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
102967
|
+
profile_created?: BoolFieldUpdateOperationsInput | boolean
|
|
102968
|
+
first_login_status?: EnumFirstLoginStatusFieldUpdateOperationsInput | $Enums.FirstLoginStatus
|
|
102969
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
102970
|
+
phone?: NullableStringFieldUpdateOperationsInput | string | null
|
|
102971
|
+
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
102972
|
+
date_of_birth?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
102973
|
+
designation?: NullableStringFieldUpdateOperationsInput | string | null
|
|
102974
|
+
location?: NullableStringFieldUpdateOperationsInput | string | null
|
|
102975
|
+
salary?: NullableStringFieldUpdateOperationsInput | string | null
|
|
102976
|
+
work_experience?: NullableJsonNullValueInput | InputJsonValue
|
|
102977
|
+
education?: NullableJsonNullValueInput | InputJsonValue
|
|
102978
|
+
skills?: NullableJsonNullValueInput | InputJsonValue
|
|
102979
|
+
notice_period?: NullableStringFieldUpdateOperationsInput | string | null
|
|
102980
|
+
preferred_work_mode?: NullableStringFieldUpdateOperationsInput | string | null
|
|
102981
|
+
gender?: NullableStringFieldUpdateOperationsInput | string | null
|
|
102982
|
+
ethnicity?: NullableStringFieldUpdateOperationsInput | string | null
|
|
102983
|
+
veteran_status?: NullableStringFieldUpdateOperationsInput | string | null
|
|
102984
|
+
disability_status?: NullableStringFieldUpdateOperationsInput | string | null
|
|
102985
|
+
applications?: ApplicationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
102986
|
+
resume?: ResumeUncheckedUpdateManyWithoutUserNestedInput
|
|
102987
|
+
candidate_profile?: CandidateProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
102988
|
+
user_profile?: UserProfileUncheckedUpdateOneWithoutUserNestedInput
|
|
102989
|
+
job_description?: JobDescriptionUncheckedUpdateManyWithoutRecruitersNestedInput
|
|
102990
|
+
hiring_manager_job_descriptions?: JobDescriptionUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
102991
|
+
hiring_manager_job_profiles?: JobProfileUncheckedUpdateManyWithoutHiring_managerNestedInput
|
|
102992
|
+
approvals?: ApprovalUncheckedUpdateManyWithoutUserNestedInput
|
|
102993
|
+
sent_messages?: MessageUncheckedUpdateManyWithoutSenderNestedInput
|
|
102994
|
+
received_messages?: MessageUncheckedUpdateManyWithoutReceiverNestedInput
|
|
102995
|
+
candidate_interviews?: InterviewUncheckedUpdateManyWithoutCandidateNestedInput
|
|
102996
|
+
interviewer_interviews?: InterviewUncheckedUpdateManyWithoutInterviewerNestedInput
|
|
102997
|
+
assessment_results?: AssessmentUncheckedUpdateManyWithoutUserNestedInput
|
|
102998
|
+
candidate_assessments?: AssessmentUncheckedUpdateManyWithoutCandidateNestedInput
|
|
102999
|
+
reviewer_assessments?: AssessmentUncheckedUpdateManyWithoutReviewerNestedInput
|
|
103000
|
+
candidate_assignments?: AssignmentUncheckedUpdateManyWithoutCandidateNestedInput
|
|
103001
|
+
reviewer_assignments?: AssignmentUncheckedUpdateManyWithoutReviewerNestedInput
|
|
103002
|
+
candidateResponses?: CandidateQuestionResponseUncheckedUpdateManyWithoutCandidateNestedInput
|
|
103003
|
+
questions?: QuestionUncheckedUpdateManyWithoutCandidateNestedInput
|
|
103004
|
+
ongoing_evaluations?: OngoingEvaluationUncheckedUpdateManyWithoutCandidateNestedInput
|
|
103005
|
+
actor_activity_logs?: ActivityLogUncheckedUpdateManyWithoutActorNestedInput
|
|
103006
|
+
actions?: ActionUncheckedUpdateManyWithoutUserNestedInput
|
|
103007
|
+
calendly?: CalendlyUncheckedUpdateOneWithoutUserNestedInput
|
|
103008
|
+
google?: GoogleUncheckedUpdateOneWithoutUserNestedInput
|
|
103009
|
+
fitChecks?: FitCheckUncheckedUpdateManyWithoutCandidateNestedInput
|
|
103010
|
+
created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
|
|
103011
|
+
assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
103012
|
+
user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
|
|
103013
|
+
}
|
|
103014
|
+
|
|
101092
103015
|
export type UserCreateWithoutResumeInput = {
|
|
101093
103016
|
id?: string
|
|
101094
103017
|
email: string
|
|
@@ -101149,6 +103072,7 @@ export namespace Prisma {
|
|
|
101149
103072
|
created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
|
|
101150
103073
|
assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
|
|
101151
103074
|
user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
|
|
103075
|
+
refresh_token_auth?: RefreshTokenCreateNestedManyWithoutUserInput
|
|
101152
103076
|
}
|
|
101153
103077
|
|
|
101154
103078
|
export type UserUncheckedCreateWithoutResumeInput = {
|
|
@@ -101211,6 +103135,7 @@ export namespace Prisma {
|
|
|
101211
103135
|
created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
|
|
101212
103136
|
assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
|
|
101213
103137
|
user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
|
|
103138
|
+
refresh_token_auth?: RefreshTokenUncheckedCreateNestedManyWithoutUserInput
|
|
101214
103139
|
}
|
|
101215
103140
|
|
|
101216
103141
|
export type UserCreateOrConnectWithoutResumeInput = {
|
|
@@ -101824,6 +103749,7 @@ export namespace Prisma {
|
|
|
101824
103749
|
created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
|
|
101825
103750
|
assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
|
|
101826
103751
|
user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
|
|
103752
|
+
refresh_token_auth?: RefreshTokenUpdateManyWithoutUserNestedInput
|
|
101827
103753
|
}
|
|
101828
103754
|
|
|
101829
103755
|
export type UserUncheckedUpdateWithoutResumeInput = {
|
|
@@ -101886,6 +103812,7 @@ export namespace Prisma {
|
|
|
101886
103812
|
created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
|
|
101887
103813
|
assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
101888
103814
|
user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
|
|
103815
|
+
refresh_token_auth?: RefreshTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
101889
103816
|
}
|
|
101890
103817
|
|
|
101891
103818
|
export type OrganisationUpsertWithoutResumesInput = {
|
|
@@ -102205,6 +104132,7 @@ export namespace Prisma {
|
|
|
102205
104132
|
export type ResumeCreateWithoutResume_dataInput = {
|
|
102206
104133
|
id?: string
|
|
102207
104134
|
uploaded_resume_path?: string | null
|
|
104135
|
+
file_hash?: string | null
|
|
102208
104136
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
102209
104137
|
created_at?: Date | string
|
|
102210
104138
|
updated_at?: Date | string
|
|
@@ -102229,6 +104157,7 @@ export namespace Prisma {
|
|
|
102229
104157
|
organisation_id?: string | null
|
|
102230
104158
|
job_description_id?: string | null
|
|
102231
104159
|
uploaded_resume_path?: string | null
|
|
104160
|
+
file_hash?: string | null
|
|
102232
104161
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
102233
104162
|
created_at?: Date | string
|
|
102234
104163
|
updated_at?: Date | string
|
|
@@ -102263,6 +104192,7 @@ export namespace Prisma {
|
|
|
102263
104192
|
export type ResumeUpdateWithoutResume_dataInput = {
|
|
102264
104193
|
id?: StringFieldUpdateOperationsInput | string
|
|
102265
104194
|
uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104195
|
+
file_hash?: NullableStringFieldUpdateOperationsInput | string | null
|
|
102266
104196
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
102267
104197
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
102268
104198
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -102287,6 +104217,7 @@ export namespace Prisma {
|
|
|
102287
104217
|
organisation_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
102288
104218
|
job_description_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
102289
104219
|
uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
104220
|
+
file_hash?: NullableStringFieldUpdateOperationsInput | string | null
|
|
102290
104221
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
102291
104222
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
102292
104223
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -103302,6 +105233,7 @@ export namespace Prisma {
|
|
|
103302
105233
|
export type ResumeCreateWithoutUserInput = {
|
|
103303
105234
|
id?: string
|
|
103304
105235
|
uploaded_resume_path?: string | null
|
|
105236
|
+
file_hash?: string | null
|
|
103305
105237
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
103306
105238
|
created_at?: Date | string
|
|
103307
105239
|
updated_at?: Date | string
|
|
@@ -103325,6 +105257,7 @@ export namespace Prisma {
|
|
|
103325
105257
|
organisation_id?: string | null
|
|
103326
105258
|
job_description_id?: string | null
|
|
103327
105259
|
uploaded_resume_path?: string | null
|
|
105260
|
+
file_hash?: string | null
|
|
103328
105261
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
103329
105262
|
created_at?: Date | string
|
|
103330
105263
|
updated_at?: Date | string
|
|
@@ -104711,13 +106644,14 @@ export namespace Prisma {
|
|
|
104711
106644
|
export type AuthModuleCreateWithoutUserInput = {
|
|
104712
106645
|
id?: string
|
|
104713
106646
|
provider: $Enums.AuthProvider
|
|
104714
|
-
provider_account_id
|
|
106647
|
+
provider_account_id?: string | null
|
|
104715
106648
|
access_token?: string | null
|
|
104716
106649
|
refresh_token?: string | null
|
|
104717
106650
|
id_token?: string | null
|
|
104718
106651
|
expires_at?: Date | string | null
|
|
104719
106652
|
token_type?: string | null
|
|
104720
106653
|
scope?: string | null
|
|
106654
|
+
is_active?: boolean
|
|
104721
106655
|
created_at?: Date | string
|
|
104722
106656
|
updated_at?: Date | string
|
|
104723
106657
|
}
|
|
@@ -104725,13 +106659,14 @@ export namespace Prisma {
|
|
|
104725
106659
|
export type AuthModuleUncheckedCreateWithoutUserInput = {
|
|
104726
106660
|
id?: string
|
|
104727
106661
|
provider: $Enums.AuthProvider
|
|
104728
|
-
provider_account_id
|
|
106662
|
+
provider_account_id?: string | null
|
|
104729
106663
|
access_token?: string | null
|
|
104730
106664
|
refresh_token?: string | null
|
|
104731
106665
|
id_token?: string | null
|
|
104732
106666
|
expires_at?: Date | string | null
|
|
104733
106667
|
token_type?: string | null
|
|
104734
106668
|
scope?: string | null
|
|
106669
|
+
is_active?: boolean
|
|
104735
106670
|
created_at?: Date | string
|
|
104736
106671
|
updated_at?: Date | string
|
|
104737
106672
|
}
|
|
@@ -104746,6 +106681,34 @@ export namespace Prisma {
|
|
|
104746
106681
|
skipDuplicates?: boolean
|
|
104747
106682
|
}
|
|
104748
106683
|
|
|
106684
|
+
export type RefreshTokenCreateWithoutUserInput = {
|
|
106685
|
+
id?: string
|
|
106686
|
+
token: string
|
|
106687
|
+
is_active?: boolean
|
|
106688
|
+
expires_at: Date | string
|
|
106689
|
+
created_at?: Date | string
|
|
106690
|
+
updated_at?: Date | string
|
|
106691
|
+
}
|
|
106692
|
+
|
|
106693
|
+
export type RefreshTokenUncheckedCreateWithoutUserInput = {
|
|
106694
|
+
id?: string
|
|
106695
|
+
token: string
|
|
106696
|
+
is_active?: boolean
|
|
106697
|
+
expires_at: Date | string
|
|
106698
|
+
created_at?: Date | string
|
|
106699
|
+
updated_at?: Date | string
|
|
106700
|
+
}
|
|
106701
|
+
|
|
106702
|
+
export type RefreshTokenCreateOrConnectWithoutUserInput = {
|
|
106703
|
+
where: RefreshTokenWhereUniqueInput
|
|
106704
|
+
create: XOR<RefreshTokenCreateWithoutUserInput, RefreshTokenUncheckedCreateWithoutUserInput>
|
|
106705
|
+
}
|
|
106706
|
+
|
|
106707
|
+
export type RefreshTokenCreateManyUserInputEnvelope = {
|
|
106708
|
+
data: RefreshTokenCreateManyUserInput | RefreshTokenCreateManyUserInput[]
|
|
106709
|
+
skipDuplicates?: boolean
|
|
106710
|
+
}
|
|
106711
|
+
|
|
104749
106712
|
export type UserRoleUpsertWithoutUsersInput = {
|
|
104750
106713
|
update: XOR<UserRoleUpdateWithoutUsersInput, UserRoleUncheckedUpdateWithoutUsersInput>
|
|
104751
106714
|
create: XOR<UserRoleCreateWithoutUsersInput, UserRoleUncheckedCreateWithoutUsersInput>
|
|
@@ -105471,17 +107434,47 @@ export namespace Prisma {
|
|
|
105471
107434
|
id?: StringFilter<"AuthModule"> | string
|
|
105472
107435
|
user_id?: StringFilter<"AuthModule"> | string
|
|
105473
107436
|
provider?: EnumAuthProviderFilter<"AuthModule"> | $Enums.AuthProvider
|
|
105474
|
-
provider_account_id?:
|
|
107437
|
+
provider_account_id?: StringNullableFilter<"AuthModule"> | string | null
|
|
105475
107438
|
access_token?: StringNullableFilter<"AuthModule"> | string | null
|
|
105476
107439
|
refresh_token?: StringNullableFilter<"AuthModule"> | string | null
|
|
105477
107440
|
id_token?: StringNullableFilter<"AuthModule"> | string | null
|
|
105478
107441
|
expires_at?: DateTimeNullableFilter<"AuthModule"> | Date | string | null
|
|
105479
107442
|
token_type?: StringNullableFilter<"AuthModule"> | string | null
|
|
105480
107443
|
scope?: StringNullableFilter<"AuthModule"> | string | null
|
|
107444
|
+
is_active?: BoolFilter<"AuthModule"> | boolean
|
|
105481
107445
|
created_at?: DateTimeFilter<"AuthModule"> | Date | string
|
|
105482
107446
|
updated_at?: DateTimeFilter<"AuthModule"> | Date | string
|
|
105483
107447
|
}
|
|
105484
107448
|
|
|
107449
|
+
export type RefreshTokenUpsertWithWhereUniqueWithoutUserInput = {
|
|
107450
|
+
where: RefreshTokenWhereUniqueInput
|
|
107451
|
+
update: XOR<RefreshTokenUpdateWithoutUserInput, RefreshTokenUncheckedUpdateWithoutUserInput>
|
|
107452
|
+
create: XOR<RefreshTokenCreateWithoutUserInput, RefreshTokenUncheckedCreateWithoutUserInput>
|
|
107453
|
+
}
|
|
107454
|
+
|
|
107455
|
+
export type RefreshTokenUpdateWithWhereUniqueWithoutUserInput = {
|
|
107456
|
+
where: RefreshTokenWhereUniqueInput
|
|
107457
|
+
data: XOR<RefreshTokenUpdateWithoutUserInput, RefreshTokenUncheckedUpdateWithoutUserInput>
|
|
107458
|
+
}
|
|
107459
|
+
|
|
107460
|
+
export type RefreshTokenUpdateManyWithWhereWithoutUserInput = {
|
|
107461
|
+
where: RefreshTokenScalarWhereInput
|
|
107462
|
+
data: XOR<RefreshTokenUpdateManyMutationInput, RefreshTokenUncheckedUpdateManyWithoutUserInput>
|
|
107463
|
+
}
|
|
107464
|
+
|
|
107465
|
+
export type RefreshTokenScalarWhereInput = {
|
|
107466
|
+
AND?: RefreshTokenScalarWhereInput | RefreshTokenScalarWhereInput[]
|
|
107467
|
+
OR?: RefreshTokenScalarWhereInput[]
|
|
107468
|
+
NOT?: RefreshTokenScalarWhereInput | RefreshTokenScalarWhereInput[]
|
|
107469
|
+
id?: StringFilter<"RefreshToken"> | string
|
|
107470
|
+
user_id?: StringFilter<"RefreshToken"> | string
|
|
107471
|
+
token?: StringFilter<"RefreshToken"> | string
|
|
107472
|
+
is_active?: BoolFilter<"RefreshToken"> | boolean
|
|
107473
|
+
expires_at?: DateTimeFilter<"RefreshToken"> | Date | string
|
|
107474
|
+
created_at?: DateTimeFilter<"RefreshToken"> | Date | string
|
|
107475
|
+
updated_at?: DateTimeFilter<"RefreshToken"> | Date | string
|
|
107476
|
+
}
|
|
107477
|
+
|
|
105485
107478
|
export type UserCreateWithoutUser_profileInput = {
|
|
105486
107479
|
id?: string
|
|
105487
107480
|
email: string
|
|
@@ -105542,6 +107535,7 @@ export namespace Prisma {
|
|
|
105542
107535
|
created_job_profiles?: JobProfileCreateNestedManyWithoutCreatorInput
|
|
105543
107536
|
assigned_job_profiles?: JobProfileCreateNestedManyWithoutAssigneeInput
|
|
105544
107537
|
user_auth_modules?: AuthModuleCreateNestedManyWithoutUserInput
|
|
107538
|
+
refresh_token_auth?: RefreshTokenCreateNestedManyWithoutUserInput
|
|
105545
107539
|
}
|
|
105546
107540
|
|
|
105547
107541
|
export type UserUncheckedCreateWithoutUser_profileInput = {
|
|
@@ -105604,6 +107598,7 @@ export namespace Prisma {
|
|
|
105604
107598
|
created_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutCreatorInput
|
|
105605
107599
|
assigned_job_profiles?: JobProfileUncheckedCreateNestedManyWithoutAssigneeInput
|
|
105606
107600
|
user_auth_modules?: AuthModuleUncheckedCreateNestedManyWithoutUserInput
|
|
107601
|
+
refresh_token_auth?: RefreshTokenUncheckedCreateNestedManyWithoutUserInput
|
|
105607
107602
|
}
|
|
105608
107603
|
|
|
105609
107604
|
export type UserCreateOrConnectWithoutUser_profileInput = {
|
|
@@ -105682,6 +107677,7 @@ export namespace Prisma {
|
|
|
105682
107677
|
created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
|
|
105683
107678
|
assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
|
|
105684
107679
|
user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
|
|
107680
|
+
refresh_token_auth?: RefreshTokenUpdateManyWithoutUserNestedInput
|
|
105685
107681
|
}
|
|
105686
107682
|
|
|
105687
107683
|
export type UserUncheckedUpdateWithoutUser_profileInput = {
|
|
@@ -105744,6 +107740,7 @@ export namespace Prisma {
|
|
|
105744
107740
|
created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
|
|
105745
107741
|
assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
105746
107742
|
user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
|
|
107743
|
+
refresh_token_auth?: RefreshTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
105747
107744
|
}
|
|
105748
107745
|
|
|
105749
107746
|
export type UserCreateManyRoleInput = {
|
|
@@ -105840,6 +107837,7 @@ export namespace Prisma {
|
|
|
105840
107837
|
created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
|
|
105841
107838
|
assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
|
|
105842
107839
|
user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
|
|
107840
|
+
refresh_token_auth?: RefreshTokenUpdateManyWithoutUserNestedInput
|
|
105843
107841
|
}
|
|
105844
107842
|
|
|
105845
107843
|
export type UserUncheckedUpdateWithoutRoleInput = {
|
|
@@ -105902,6 +107900,7 @@ export namespace Prisma {
|
|
|
105902
107900
|
created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
|
|
105903
107901
|
assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
105904
107902
|
user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
|
|
107903
|
+
refresh_token_auth?: RefreshTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
105905
107904
|
}
|
|
105906
107905
|
|
|
105907
107906
|
export type UserUncheckedUpdateManyWithoutRoleInput = {
|
|
@@ -107813,6 +109812,7 @@ export namespace Prisma {
|
|
|
107813
109812
|
user_id?: string | null
|
|
107814
109813
|
organisation_id?: string | null
|
|
107815
109814
|
uploaded_resume_path?: string | null
|
|
109815
|
+
file_hash?: string | null
|
|
107816
109816
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
107817
109817
|
created_at?: Date | string
|
|
107818
109818
|
updated_at?: Date | string
|
|
@@ -108497,6 +110497,7 @@ export namespace Prisma {
|
|
|
108497
110497
|
export type ResumeUpdateWithoutJob_descriptionInput = {
|
|
108498
110498
|
id?: StringFieldUpdateOperationsInput | string
|
|
108499
110499
|
uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110500
|
+
file_hash?: NullableStringFieldUpdateOperationsInput | string | null
|
|
108500
110501
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
108501
110502
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
108502
110503
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -108520,6 +110521,7 @@ export namespace Prisma {
|
|
|
108520
110521
|
user_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
108521
110522
|
organisation_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
108522
110523
|
uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110524
|
+
file_hash?: NullableStringFieldUpdateOperationsInput | string | null
|
|
108523
110525
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
108524
110526
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
108525
110527
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -108541,6 +110543,7 @@ export namespace Prisma {
|
|
|
108541
110543
|
user_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
108542
110544
|
organisation_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
108543
110545
|
uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110546
|
+
file_hash?: NullableStringFieldUpdateOperationsInput | string | null
|
|
108544
110547
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
108545
110548
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
108546
110549
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -108611,6 +110614,7 @@ export namespace Prisma {
|
|
|
108611
110614
|
created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
|
|
108612
110615
|
assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
|
|
108613
110616
|
user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
|
|
110617
|
+
refresh_token_auth?: RefreshTokenUpdateManyWithoutUserNestedInput
|
|
108614
110618
|
}
|
|
108615
110619
|
|
|
108616
110620
|
export type UserUncheckedUpdateWithoutJob_descriptionInput = {
|
|
@@ -108673,6 +110677,7 @@ export namespace Prisma {
|
|
|
108673
110677
|
created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
|
|
108674
110678
|
assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
108675
110679
|
user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
|
|
110680
|
+
refresh_token_auth?: RefreshTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
108676
110681
|
}
|
|
108677
110682
|
|
|
108678
110683
|
export type UserUncheckedUpdateManyWithoutJob_descriptionInput = {
|
|
@@ -109146,6 +111151,7 @@ export namespace Prisma {
|
|
|
109146
111151
|
user_id?: string | null
|
|
109147
111152
|
job_description_id?: string | null
|
|
109148
111153
|
uploaded_resume_path?: string | null
|
|
111154
|
+
file_hash?: string | null
|
|
109149
111155
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
109150
111156
|
created_at?: Date | string
|
|
109151
111157
|
updated_at?: Date | string
|
|
@@ -109337,6 +111343,7 @@ export namespace Prisma {
|
|
|
109337
111343
|
created_job_profiles?: JobProfileUpdateManyWithoutCreatorNestedInput
|
|
109338
111344
|
assigned_job_profiles?: JobProfileUpdateManyWithoutAssigneeNestedInput
|
|
109339
111345
|
user_auth_modules?: AuthModuleUpdateManyWithoutUserNestedInput
|
|
111346
|
+
refresh_token_auth?: RefreshTokenUpdateManyWithoutUserNestedInput
|
|
109340
111347
|
}
|
|
109341
111348
|
|
|
109342
111349
|
export type UserUncheckedUpdateWithoutOrganisationInput = {
|
|
@@ -109399,6 +111406,7 @@ export namespace Prisma {
|
|
|
109399
111406
|
created_job_profiles?: JobProfileUncheckedUpdateManyWithoutCreatorNestedInput
|
|
109400
111407
|
assigned_job_profiles?: JobProfileUncheckedUpdateManyWithoutAssigneeNestedInput
|
|
109401
111408
|
user_auth_modules?: AuthModuleUncheckedUpdateManyWithoutUserNestedInput
|
|
111409
|
+
refresh_token_auth?: RefreshTokenUncheckedUpdateManyWithoutUserNestedInput
|
|
109402
111410
|
}
|
|
109403
111411
|
|
|
109404
111412
|
export type UserUncheckedUpdateManyWithoutOrganisationInput = {
|
|
@@ -110096,6 +112104,7 @@ export namespace Prisma {
|
|
|
110096
112104
|
export type ResumeUpdateWithoutOrganisationInput = {
|
|
110097
112105
|
id?: StringFieldUpdateOperationsInput | string
|
|
110098
112106
|
uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
112107
|
+
file_hash?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110099
112108
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
110100
112109
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
110101
112110
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -110119,6 +112128,7 @@ export namespace Prisma {
|
|
|
110119
112128
|
user_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110120
112129
|
job_description_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110121
112130
|
uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
112131
|
+
file_hash?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110122
112132
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
110123
112133
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
110124
112134
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -110140,6 +112150,7 @@ export namespace Prisma {
|
|
|
110140
112150
|
user_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110141
112151
|
job_description_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110142
112152
|
uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
112153
|
+
file_hash?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110143
112154
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
110144
112155
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
110145
112156
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -111235,6 +113246,7 @@ export namespace Prisma {
|
|
|
111235
113246
|
organisation_id?: string | null
|
|
111236
113247
|
job_description_id?: string | null
|
|
111237
113248
|
uploaded_resume_path?: string | null
|
|
113249
|
+
file_hash?: string | null
|
|
111238
113250
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
111239
113251
|
created_at?: Date | string
|
|
111240
113252
|
updated_at?: Date | string
|
|
@@ -111677,13 +113689,23 @@ export namespace Prisma {
|
|
|
111677
113689
|
export type AuthModuleCreateManyUserInput = {
|
|
111678
113690
|
id?: string
|
|
111679
113691
|
provider: $Enums.AuthProvider
|
|
111680
|
-
provider_account_id
|
|
113692
|
+
provider_account_id?: string | null
|
|
111681
113693
|
access_token?: string | null
|
|
111682
113694
|
refresh_token?: string | null
|
|
111683
113695
|
id_token?: string | null
|
|
111684
113696
|
expires_at?: Date | string | null
|
|
111685
113697
|
token_type?: string | null
|
|
111686
113698
|
scope?: string | null
|
|
113699
|
+
is_active?: boolean
|
|
113700
|
+
created_at?: Date | string
|
|
113701
|
+
updated_at?: Date | string
|
|
113702
|
+
}
|
|
113703
|
+
|
|
113704
|
+
export type RefreshTokenCreateManyUserInput = {
|
|
113705
|
+
id?: string
|
|
113706
|
+
token: string
|
|
113707
|
+
is_active?: boolean
|
|
113708
|
+
expires_at: Date | string
|
|
111687
113709
|
created_at?: Date | string
|
|
111688
113710
|
updated_at?: Date | string
|
|
111689
113711
|
}
|
|
@@ -111756,6 +113778,7 @@ export namespace Prisma {
|
|
|
111756
113778
|
export type ResumeUpdateWithoutUserInput = {
|
|
111757
113779
|
id?: StringFieldUpdateOperationsInput | string
|
|
111758
113780
|
uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
113781
|
+
file_hash?: NullableStringFieldUpdateOperationsInput | string | null
|
|
111759
113782
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
111760
113783
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
111761
113784
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -111779,6 +113802,7 @@ export namespace Prisma {
|
|
|
111779
113802
|
organisation_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
111780
113803
|
job_description_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
111781
113804
|
uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
113805
|
+
file_hash?: NullableStringFieldUpdateOperationsInput | string | null
|
|
111782
113806
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
111783
113807
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
111784
113808
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -111800,6 +113824,7 @@ export namespace Prisma {
|
|
|
111800
113824
|
organisation_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
111801
113825
|
job_description_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
111802
113826
|
uploaded_resume_path?: NullableStringFieldUpdateOperationsInput | string | null
|
|
113827
|
+
file_hash?: NullableStringFieldUpdateOperationsInput | string | null
|
|
111803
113828
|
summary?: NullableJsonNullValueInput | InputJsonValue
|
|
111804
113829
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
111805
113830
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -113276,13 +115301,14 @@ export namespace Prisma {
|
|
|
113276
115301
|
export type AuthModuleUpdateWithoutUserInput = {
|
|
113277
115302
|
id?: StringFieldUpdateOperationsInput | string
|
|
113278
115303
|
provider?: EnumAuthProviderFieldUpdateOperationsInput | $Enums.AuthProvider
|
|
113279
|
-
provider_account_id?:
|
|
115304
|
+
provider_account_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
113280
115305
|
access_token?: NullableStringFieldUpdateOperationsInput | string | null
|
|
113281
115306
|
refresh_token?: NullableStringFieldUpdateOperationsInput | string | null
|
|
113282
115307
|
id_token?: NullableStringFieldUpdateOperationsInput | string | null
|
|
113283
115308
|
expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
113284
115309
|
token_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
113285
115310
|
scope?: NullableStringFieldUpdateOperationsInput | string | null
|
|
115311
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
113286
115312
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
113287
115313
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
113288
115314
|
}
|
|
@@ -113290,13 +115316,14 @@ export namespace Prisma {
|
|
|
113290
115316
|
export type AuthModuleUncheckedUpdateWithoutUserInput = {
|
|
113291
115317
|
id?: StringFieldUpdateOperationsInput | string
|
|
113292
115318
|
provider?: EnumAuthProviderFieldUpdateOperationsInput | $Enums.AuthProvider
|
|
113293
|
-
provider_account_id?:
|
|
115319
|
+
provider_account_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
113294
115320
|
access_token?: NullableStringFieldUpdateOperationsInput | string | null
|
|
113295
115321
|
refresh_token?: NullableStringFieldUpdateOperationsInput | string | null
|
|
113296
115322
|
id_token?: NullableStringFieldUpdateOperationsInput | string | null
|
|
113297
115323
|
expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
113298
115324
|
token_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
113299
115325
|
scope?: NullableStringFieldUpdateOperationsInput | string | null
|
|
115326
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
113300
115327
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
113301
115328
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
113302
115329
|
}
|
|
@@ -113304,13 +115331,41 @@ export namespace Prisma {
|
|
|
113304
115331
|
export type AuthModuleUncheckedUpdateManyWithoutUserInput = {
|
|
113305
115332
|
id?: StringFieldUpdateOperationsInput | string
|
|
113306
115333
|
provider?: EnumAuthProviderFieldUpdateOperationsInput | $Enums.AuthProvider
|
|
113307
|
-
provider_account_id?:
|
|
115334
|
+
provider_account_id?: NullableStringFieldUpdateOperationsInput | string | null
|
|
113308
115335
|
access_token?: NullableStringFieldUpdateOperationsInput | string | null
|
|
113309
115336
|
refresh_token?: NullableStringFieldUpdateOperationsInput | string | null
|
|
113310
115337
|
id_token?: NullableStringFieldUpdateOperationsInput | string | null
|
|
113311
115338
|
expires_at?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
113312
115339
|
token_type?: NullableStringFieldUpdateOperationsInput | string | null
|
|
113313
115340
|
scope?: NullableStringFieldUpdateOperationsInput | string | null
|
|
115341
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
115342
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
115343
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
115344
|
+
}
|
|
115345
|
+
|
|
115346
|
+
export type RefreshTokenUpdateWithoutUserInput = {
|
|
115347
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
115348
|
+
token?: StringFieldUpdateOperationsInput | string
|
|
115349
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
115350
|
+
expires_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
115351
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
115352
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
115353
|
+
}
|
|
115354
|
+
|
|
115355
|
+
export type RefreshTokenUncheckedUpdateWithoutUserInput = {
|
|
115356
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
115357
|
+
token?: StringFieldUpdateOperationsInput | string
|
|
115358
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
115359
|
+
expires_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
115360
|
+
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
115361
|
+
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
115362
|
+
}
|
|
115363
|
+
|
|
115364
|
+
export type RefreshTokenUncheckedUpdateManyWithoutUserInput = {
|
|
115365
|
+
id?: StringFieldUpdateOperationsInput | string
|
|
115366
|
+
token?: StringFieldUpdateOperationsInput | string
|
|
115367
|
+
is_active?: BoolFieldUpdateOperationsInput | boolean
|
|
115368
|
+
expires_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
113314
115369
|
created_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
113315
115370
|
updated_at?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
113316
115371
|
}
|