@a_team/prisma 2.1.15 → 2.1.20-macos
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client/default.d.ts +1 -1
- package/dist/client/edge.d.ts +1 -1
- package/dist/client/edge.js +16 -26
- package/dist/client/index-browser.js +7 -16
- package/dist/client/index.d.ts +11 -364
- package/dist/client/index.js +16 -26
- package/dist/client/libquery_engine-darwin-arm64.dylib.node +0 -0
- package/dist/client/libquery_engine-darwin.dylib.node +0 -0
- package/dist/client/libquery_engine-linux-musl-openssl-3.0.x.so.node +0 -0
- package/dist/client/package.json +15 -2
- package/dist/client/query_engine-windows.dll.node +0 -0
- package/dist/client/runtime/edge-esm.js +18 -18
- package/dist/client/runtime/edge.js +18 -18
- package/dist/client/runtime/library.d.ts +148 -18
- package/dist/client/runtime/library.js +53 -53
- package/dist/client/runtime/react-native.js +26 -26
- package/dist/client/runtime/wasm.js +17 -17
- package/dist/client/schema.prisma +10 -35
- package/dist/client/wasm.d.ts +1 -1
- package/dist/client/wasm.js +7 -16
- package/package.json +8 -2
package/dist/client/index.d.ts
CHANGED
|
@@ -148,11 +148,6 @@ export type WorkingHours = $Result.DefaultSelection<Prisma.$WorkingHoursPayload>
|
|
|
148
148
|
*
|
|
149
149
|
*/
|
|
150
150
|
export type ClientRoleQuestion = $Result.DefaultSelection<Prisma.$ClientRoleQuestionPayload>
|
|
151
|
-
/**
|
|
152
|
-
* Model ClientRegistration
|
|
153
|
-
*
|
|
154
|
-
*/
|
|
155
|
-
export type ClientRegistration = $Result.DefaultSelection<Prisma.$ClientRegistrationPayload>
|
|
156
151
|
/**
|
|
157
152
|
* Model Account
|
|
158
153
|
*
|
|
@@ -284,24 +279,6 @@ export const MissionRoleStatus: {
|
|
|
284
279
|
|
|
285
280
|
export type MissionRoleStatus = (typeof MissionRoleStatus)[keyof typeof MissionRoleStatus]
|
|
286
281
|
|
|
287
|
-
|
|
288
|
-
export const RegisterRequestType: {
|
|
289
|
-
SUPERCHARGE: 'SUPERCHARGE',
|
|
290
|
-
BUILD_PRODUCT: 'BUILD_PRODUCT'
|
|
291
|
-
};
|
|
292
|
-
|
|
293
|
-
export type RegisterRequestType = (typeof RegisterRequestType)[keyof typeof RegisterRequestType]
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
export const HiringTimeline: {
|
|
297
|
-
immediate: 'immediate',
|
|
298
|
-
next_month: 'next_month',
|
|
299
|
-
within_3_months: 'within_3_months',
|
|
300
|
-
exploring: 'exploring'
|
|
301
|
-
};
|
|
302
|
-
|
|
303
|
-
export type HiringTimeline = (typeof HiringTimeline)[keyof typeof HiringTimeline]
|
|
304
|
-
|
|
305
282
|
}
|
|
306
283
|
|
|
307
284
|
export type ContractStatus = $Enums.ContractStatus
|
|
@@ -332,14 +309,6 @@ export type MissionRoleStatus = $Enums.MissionRoleStatus
|
|
|
332
309
|
|
|
333
310
|
export const MissionRoleStatus: typeof $Enums.MissionRoleStatus
|
|
334
311
|
|
|
335
|
-
export type RegisterRequestType = $Enums.RegisterRequestType
|
|
336
|
-
|
|
337
|
-
export const RegisterRequestType: typeof $Enums.RegisterRequestType
|
|
338
|
-
|
|
339
|
-
export type HiringTimeline = $Enums.HiringTimeline
|
|
340
|
-
|
|
341
|
-
export const HiringTimeline: typeof $Enums.HiringTimeline
|
|
342
|
-
|
|
343
312
|
/**
|
|
344
313
|
* ## Prisma Client ʲˢ
|
|
345
314
|
*
|
|
@@ -570,6 +539,8 @@ export namespace Prisma {
|
|
|
570
539
|
export import raw = runtime.raw
|
|
571
540
|
export import Sql = runtime.Sql
|
|
572
541
|
|
|
542
|
+
|
|
543
|
+
|
|
573
544
|
/**
|
|
574
545
|
* Decimal.js
|
|
575
546
|
*/
|
|
@@ -596,8 +567,8 @@ export namespace Prisma {
|
|
|
596
567
|
export import Exact = $Public.Exact
|
|
597
568
|
|
|
598
569
|
/**
|
|
599
|
-
* Prisma Client JS version: 5.
|
|
600
|
-
* Query Engine version:
|
|
570
|
+
* Prisma Client JS version: 5.22.0
|
|
571
|
+
* Query Engine version: 605197351a3c8bdd595af2d2a9bc3025bca48ea2
|
|
601
572
|
*/
|
|
602
573
|
export type PrismaVersion = {
|
|
603
574
|
client: string
|
|
@@ -609,51 +580,13 @@ export namespace Prisma {
|
|
|
609
580
|
* Utility Types
|
|
610
581
|
*/
|
|
611
582
|
|
|
612
|
-
/**
|
|
613
|
-
* From https://github.com/sindresorhus/type-fest/
|
|
614
|
-
* Matches a JSON object.
|
|
615
|
-
* This type can be useful to enforce some input to be JSON-compatible or as a super-type to be extended from.
|
|
616
|
-
*/
|
|
617
|
-
export type JsonObject = {[Key in string]?: JsonValue}
|
|
618
|
-
|
|
619
|
-
/**
|
|
620
|
-
* From https://github.com/sindresorhus/type-fest/
|
|
621
|
-
* Matches a JSON array.
|
|
622
|
-
*/
|
|
623
|
-
export interface JsonArray extends Array<JsonValue> {}
|
|
624
|
-
|
|
625
|
-
/**
|
|
626
|
-
* From https://github.com/sindresorhus/type-fest/
|
|
627
|
-
* Matches any valid JSON value.
|
|
628
|
-
*/
|
|
629
|
-
export type JsonValue = string | number | boolean | JsonObject | JsonArray | null
|
|
630
|
-
|
|
631
|
-
/**
|
|
632
|
-
* Matches a JSON object.
|
|
633
|
-
* Unlike `JsonObject`, this type allows undefined and read-only properties.
|
|
634
|
-
*/
|
|
635
|
-
export type InputJsonObject = {readonly [Key in string]?: InputJsonValue | null}
|
|
636
|
-
|
|
637
|
-
/**
|
|
638
|
-
* Matches a JSON array.
|
|
639
|
-
* Unlike `JsonArray`, readonly arrays are assignable to this type.
|
|
640
|
-
*/
|
|
641
|
-
export interface InputJsonArray extends ReadonlyArray<InputJsonValue | null> {}
|
|
642
583
|
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
* `null` cannot be used as the value of a JSON field because its meaning
|
|
650
|
-
* would be ambiguous. Use `Prisma.JsonNull` to store the JSON null value or
|
|
651
|
-
* `Prisma.DbNull` to clear the JSON value and set the field to the database
|
|
652
|
-
* NULL value instead.
|
|
653
|
-
*
|
|
654
|
-
* @see https://www.prisma.io/docs/concepts/components/prisma-client/working-with-fields/working-with-json-fields#filtering-by-null-values
|
|
655
|
-
*/
|
|
656
|
-
export type InputJsonValue = string | number | boolean | InputJsonObject | InputJsonArray | { toJSON(): unknown }
|
|
584
|
+
export import JsonObject = runtime.JsonObject
|
|
585
|
+
export import JsonArray = runtime.JsonArray
|
|
586
|
+
export import JsonValue = runtime.JsonValue
|
|
587
|
+
export import InputJsonObject = runtime.InputJsonObject
|
|
588
|
+
export import InputJsonArray = runtime.InputJsonArray
|
|
589
|
+
export import InputJsonValue = runtime.InputJsonValue
|
|
657
590
|
|
|
658
591
|
/**
|
|
659
592
|
* Types of the values used to represent different kinds of `null` values when working with JSON fields.
|
|
@@ -4123,91 +4056,6 @@ export namespace Prisma {
|
|
|
4123
4056
|
}
|
|
4124
4057
|
|
|
4125
4058
|
|
|
4126
|
-
/**
|
|
4127
|
-
* Model ClientRegistration
|
|
4128
|
-
*/
|
|
4129
|
-
|
|
4130
|
-
|
|
4131
|
-
|
|
4132
|
-
|
|
4133
|
-
|
|
4134
|
-
export type ClientRegistrationSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
4135
|
-
emailVerified?: boolean
|
|
4136
|
-
signupCompany?: boolean
|
|
4137
|
-
companyQualified?: boolean
|
|
4138
|
-
requestType?: boolean
|
|
4139
|
-
requestSolution?: boolean
|
|
4140
|
-
requestRoles?: boolean
|
|
4141
|
-
requestHelp?: boolean
|
|
4142
|
-
howDidYouHear?: boolean
|
|
4143
|
-
hiringTimeline?: boolean
|
|
4144
|
-
}, ExtArgs["result"]["clientRegistration"]>
|
|
4145
|
-
|
|
4146
|
-
|
|
4147
|
-
export type ClientRegistrationSelectScalar = {
|
|
4148
|
-
emailVerified?: boolean
|
|
4149
|
-
signupCompany?: boolean
|
|
4150
|
-
companyQualified?: boolean
|
|
4151
|
-
requestType?: boolean
|
|
4152
|
-
requestSolution?: boolean
|
|
4153
|
-
requestRoles?: boolean
|
|
4154
|
-
requestHelp?: boolean
|
|
4155
|
-
howDidYouHear?: boolean
|
|
4156
|
-
hiringTimeline?: boolean
|
|
4157
|
-
}
|
|
4158
|
-
|
|
4159
|
-
|
|
4160
|
-
export type $ClientRegistrationPayload = {
|
|
4161
|
-
name: "ClientRegistration"
|
|
4162
|
-
objects: {}
|
|
4163
|
-
scalars: {
|
|
4164
|
-
emailVerified: boolean | null
|
|
4165
|
-
signupCompany: string | null
|
|
4166
|
-
companyQualified: boolean | null
|
|
4167
|
-
requestType: $Enums.RegisterRequestType | null
|
|
4168
|
-
requestSolution: string | null
|
|
4169
|
-
requestRoles: string[]
|
|
4170
|
-
requestHelp: string | null
|
|
4171
|
-
howDidYouHear: string | null
|
|
4172
|
-
hiringTimeline: $Enums.HiringTimeline | null
|
|
4173
|
-
}
|
|
4174
|
-
composites: {}
|
|
4175
|
-
}
|
|
4176
|
-
|
|
4177
|
-
type ClientRegistrationGetPayload<S extends boolean | null | undefined | ClientRegistrationDefaultArgs> = $Result.GetResult<Prisma.$ClientRegistrationPayload, S>
|
|
4178
|
-
|
|
4179
|
-
|
|
4180
|
-
|
|
4181
|
-
|
|
4182
|
-
|
|
4183
|
-
/**
|
|
4184
|
-
* Fields of the ClientRegistration model
|
|
4185
|
-
*/
|
|
4186
|
-
interface ClientRegistrationFieldRefs {
|
|
4187
|
-
readonly emailVerified: FieldRef<"ClientRegistration", 'Boolean'>
|
|
4188
|
-
readonly signupCompany: FieldRef<"ClientRegistration", 'String'>
|
|
4189
|
-
readonly companyQualified: FieldRef<"ClientRegistration", 'Boolean'>
|
|
4190
|
-
readonly requestType: FieldRef<"ClientRegistration", 'RegisterRequestType'>
|
|
4191
|
-
readonly requestSolution: FieldRef<"ClientRegistration", 'String'>
|
|
4192
|
-
readonly requestRoles: FieldRef<"ClientRegistration", 'String[]'>
|
|
4193
|
-
readonly requestHelp: FieldRef<"ClientRegistration", 'String'>
|
|
4194
|
-
readonly howDidYouHear: FieldRef<"ClientRegistration", 'String'>
|
|
4195
|
-
readonly hiringTimeline: FieldRef<"ClientRegistration", 'HiringTimeline'>
|
|
4196
|
-
}
|
|
4197
|
-
|
|
4198
|
-
|
|
4199
|
-
// Custom InputTypes
|
|
4200
|
-
/**
|
|
4201
|
-
* ClientRegistration without action
|
|
4202
|
-
*/
|
|
4203
|
-
export type ClientRegistrationDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
4204
|
-
/**
|
|
4205
|
-
* Select specific fields to fetch from the ClientRegistration
|
|
4206
|
-
*/
|
|
4207
|
-
select?: ClientRegistrationSelect<ExtArgs> | null
|
|
4208
|
-
}
|
|
4209
|
-
|
|
4210
|
-
|
|
4211
4059
|
/**
|
|
4212
4060
|
* Model Account
|
|
4213
4061
|
*/
|
|
@@ -14838,7 +14686,6 @@ export namespace Prisma {
|
|
|
14838
14686
|
createdAt?: boolean
|
|
14839
14687
|
titles?: boolean
|
|
14840
14688
|
scrubbed?: boolean
|
|
14841
|
-
clientRegistration?: boolean | ClientRegistrationDefaultArgs<ExtArgs>
|
|
14842
14689
|
createdMissionsModels?: boolean | User$createdMissionsModelsArgs<ExtArgs>
|
|
14843
14690
|
ownedMissionsModels?: boolean | User$ownedMissionsModelsArgs<ExtArgs>
|
|
14844
14691
|
authoredMissionSpecs?: boolean | User$authoredMissionSpecsArgs<ExtArgs>
|
|
@@ -14895,9 +14742,7 @@ export namespace Prisma {
|
|
|
14895
14742
|
titles: string[]
|
|
14896
14743
|
scrubbed: string | null
|
|
14897
14744
|
}, ExtArgs["result"]["user"]>
|
|
14898
|
-
composites: {
|
|
14899
|
-
clientRegistration: Prisma.$ClientRegistrationPayload | null
|
|
14900
|
-
}
|
|
14745
|
+
composites: {}
|
|
14901
14746
|
}
|
|
14902
14747
|
|
|
14903
14748
|
type UserGetPayload<S extends boolean | null | undefined | UserDefaultArgs> = $Result.GetResult<Prisma.$UserPayload, S>
|
|
@@ -16141,34 +15986,6 @@ export namespace Prisma {
|
|
|
16141
15986
|
*/
|
|
16142
15987
|
export type ListEnumMissionRoleStatusFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'MissionRoleStatus[]'>
|
|
16143
15988
|
|
|
16144
|
-
|
|
16145
|
-
|
|
16146
|
-
/**
|
|
16147
|
-
* Reference to a field of type 'RegisterRequestType'
|
|
16148
|
-
*/
|
|
16149
|
-
export type EnumRegisterRequestTypeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'RegisterRequestType'>
|
|
16150
|
-
|
|
16151
|
-
|
|
16152
|
-
|
|
16153
|
-
/**
|
|
16154
|
-
* Reference to a field of type 'RegisterRequestType[]'
|
|
16155
|
-
*/
|
|
16156
|
-
export type ListEnumRegisterRequestTypeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'RegisterRequestType[]'>
|
|
16157
|
-
|
|
16158
|
-
|
|
16159
|
-
|
|
16160
|
-
/**
|
|
16161
|
-
* Reference to a field of type 'HiringTimeline'
|
|
16162
|
-
*/
|
|
16163
|
-
export type EnumHiringTimelineFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'HiringTimeline'>
|
|
16164
|
-
|
|
16165
|
-
|
|
16166
|
-
|
|
16167
|
-
/**
|
|
16168
|
-
* Reference to a field of type 'HiringTimeline[]'
|
|
16169
|
-
*/
|
|
16170
|
-
export type ListEnumHiringTimelineFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'HiringTimeline[]'>
|
|
16171
|
-
|
|
16172
15989
|
/**
|
|
16173
15990
|
* Deep Input Types
|
|
16174
15991
|
*/
|
|
@@ -17204,7 +17021,6 @@ export namespace Prisma {
|
|
|
17204
17021
|
createdAt?: DateTimeFilter<"User"> | Date | string
|
|
17205
17022
|
titles?: StringNullableListFilter<"User">
|
|
17206
17023
|
scrubbed?: StringNullableFilter<"User"> | string | null
|
|
17207
|
-
clientRegistration?: XOR<ClientRegistrationNullableCompositeFilter, ClientRegistrationObjectEqualityInput> | null
|
|
17208
17024
|
createdMissionsModels?: MissionListRelationFilter
|
|
17209
17025
|
ownedMissionsModels?: MissionListRelationFilter
|
|
17210
17026
|
authoredMissionSpecs?: MissionSpecListRelationFilter
|
|
@@ -17225,7 +17041,6 @@ export namespace Prisma {
|
|
|
17225
17041
|
createdAt?: SortOrder
|
|
17226
17042
|
titles?: SortOrder
|
|
17227
17043
|
scrubbed?: SortOrder
|
|
17228
|
-
clientRegistration?: ClientRegistrationOrderByInput
|
|
17229
17044
|
createdMissionsModels?: MissionOrderByRelationAggregateInput
|
|
17230
17045
|
ownedMissionsModels?: MissionOrderByRelationAggregateInput
|
|
17231
17046
|
authoredMissionSpecs?: MissionSpecOrderByRelationAggregateInput
|
|
@@ -17249,7 +17064,6 @@ export namespace Prisma {
|
|
|
17249
17064
|
createdAt?: DateTimeFilter<"User"> | Date | string
|
|
17250
17065
|
titles?: StringNullableListFilter<"User">
|
|
17251
17066
|
scrubbed?: StringNullableFilter<"User"> | string | null
|
|
17252
|
-
clientRegistration?: XOR<ClientRegistrationNullableCompositeFilter, ClientRegistrationObjectEqualityInput> | null
|
|
17253
17067
|
createdMissionsModels?: MissionListRelationFilter
|
|
17254
17068
|
ownedMissionsModels?: MissionListRelationFilter
|
|
17255
17069
|
authoredMissionSpecs?: MissionSpecListRelationFilter
|
|
@@ -18493,7 +18307,6 @@ export namespace Prisma {
|
|
|
18493
18307
|
createdAt: Date | string
|
|
18494
18308
|
titles?: UserCreatetitlesInput | string[]
|
|
18495
18309
|
scrubbed?: string | null
|
|
18496
|
-
clientRegistration?: XOR<ClientRegistrationNullableCreateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
18497
18310
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
18498
18311
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
18499
18312
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
@@ -18514,7 +18327,6 @@ export namespace Prisma {
|
|
|
18514
18327
|
createdAt: Date | string
|
|
18515
18328
|
titles?: UserCreatetitlesInput | string[]
|
|
18516
18329
|
scrubbed?: string | null
|
|
18517
|
-
clientRegistration?: XOR<ClientRegistrationNullableCreateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
18518
18330
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
18519
18331
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
18520
18332
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
@@ -18534,7 +18346,6 @@ export namespace Prisma {
|
|
|
18534
18346
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
18535
18347
|
titles?: UserUpdatetitlesInput | string[]
|
|
18536
18348
|
scrubbed?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18537
|
-
clientRegistration?: XOR<ClientRegistrationNullableUpdateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
18538
18349
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
18539
18350
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
18540
18351
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
@@ -18554,7 +18365,6 @@ export namespace Prisma {
|
|
|
18554
18365
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
18555
18366
|
titles?: UserUpdatetitlesInput | string[]
|
|
18556
18367
|
scrubbed?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18557
|
-
clientRegistration?: XOR<ClientRegistrationNullableUpdateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
18558
18368
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
18559
18369
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
18560
18370
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
@@ -18575,7 +18385,6 @@ export namespace Prisma {
|
|
|
18575
18385
|
createdAt: Date | string
|
|
18576
18386
|
titles?: UserCreatetitlesInput | string[]
|
|
18577
18387
|
scrubbed?: string | null
|
|
18578
|
-
clientRegistration?: XOR<ClientRegistrationNullableCreateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
18579
18388
|
}
|
|
18580
18389
|
|
|
18581
18390
|
export type UserUpdateManyMutationInput = {
|
|
@@ -18590,7 +18399,6 @@ export namespace Prisma {
|
|
|
18590
18399
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
18591
18400
|
titles?: UserUpdatetitlesInput | string[]
|
|
18592
18401
|
scrubbed?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18593
|
-
clientRegistration?: XOR<ClientRegistrationNullableUpdateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
18594
18402
|
}
|
|
18595
18403
|
|
|
18596
18404
|
export type UserUncheckedUpdateManyInput = {
|
|
@@ -18605,7 +18413,6 @@ export namespace Prisma {
|
|
|
18605
18413
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
18606
18414
|
titles?: UserUpdatetitlesInput | string[]
|
|
18607
18415
|
scrubbed?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18608
|
-
clientRegistration?: XOR<ClientRegistrationNullableUpdateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
18609
18416
|
}
|
|
18610
18417
|
|
|
18611
18418
|
export type StringFilter<$PrismaModel = never> = {
|
|
@@ -19870,43 +19677,12 @@ export namespace Prisma {
|
|
|
19870
19677
|
not?: NestedBoolFilter<$PrismaModel> | boolean
|
|
19871
19678
|
}
|
|
19872
19679
|
|
|
19873
|
-
export type ClientRegistrationNullableCompositeFilter = {
|
|
19874
|
-
equals?: ClientRegistrationObjectEqualityInput | null
|
|
19875
|
-
is?: ClientRegistrationWhereInput | null
|
|
19876
|
-
isNot?: ClientRegistrationWhereInput | null
|
|
19877
|
-
isSet?: boolean
|
|
19878
|
-
}
|
|
19879
|
-
|
|
19880
|
-
export type ClientRegistrationObjectEqualityInput = {
|
|
19881
|
-
emailVerified?: boolean | null
|
|
19882
|
-
signupCompany?: string | null
|
|
19883
|
-
companyQualified?: boolean | null
|
|
19884
|
-
requestType?: $Enums.RegisterRequestType | null
|
|
19885
|
-
requestSolution?: string | null
|
|
19886
|
-
requestRoles?: string[]
|
|
19887
|
-
requestHelp?: string | null
|
|
19888
|
-
howDidYouHear?: string | null
|
|
19889
|
-
hiringTimeline?: $Enums.HiringTimeline | null
|
|
19890
|
-
}
|
|
19891
|
-
|
|
19892
19680
|
export type MissionPrefillListRelationFilter = {
|
|
19893
19681
|
every?: MissionPrefillWhereInput
|
|
19894
19682
|
some?: MissionPrefillWhereInput
|
|
19895
19683
|
none?: MissionPrefillWhereInput
|
|
19896
19684
|
}
|
|
19897
19685
|
|
|
19898
|
-
export type ClientRegistrationOrderByInput = {
|
|
19899
|
-
emailVerified?: SortOrder
|
|
19900
|
-
signupCompany?: SortOrder
|
|
19901
|
-
companyQualified?: SortOrder
|
|
19902
|
-
requestType?: SortOrder
|
|
19903
|
-
requestSolution?: SortOrder
|
|
19904
|
-
requestRoles?: SortOrder
|
|
19905
|
-
requestHelp?: SortOrder
|
|
19906
|
-
howDidYouHear?: SortOrder
|
|
19907
|
-
hiringTimeline?: SortOrder
|
|
19908
|
-
}
|
|
19909
|
-
|
|
19910
19686
|
export type MissionPrefillOrderByRelationAggregateInput = {
|
|
19911
19687
|
_count?: SortOrder
|
|
19912
19688
|
}
|
|
@@ -20915,22 +20691,6 @@ export namespace Prisma {
|
|
|
20915
20691
|
set: string[]
|
|
20916
20692
|
}
|
|
20917
20693
|
|
|
20918
|
-
export type ClientRegistrationNullableCreateEnvelopeInput = {
|
|
20919
|
-
set?: ClientRegistrationCreateInput | null
|
|
20920
|
-
}
|
|
20921
|
-
|
|
20922
|
-
export type ClientRegistrationCreateInput = {
|
|
20923
|
-
emailVerified?: boolean | null
|
|
20924
|
-
signupCompany?: string | null
|
|
20925
|
-
companyQualified?: boolean | null
|
|
20926
|
-
requestType?: $Enums.RegisterRequestType | null
|
|
20927
|
-
requestSolution?: string | null
|
|
20928
|
-
requestRoles?: ClientRegistrationCreaterequestRolesInput | string[]
|
|
20929
|
-
requestHelp?: string | null
|
|
20930
|
-
howDidYouHear?: string | null
|
|
20931
|
-
hiringTimeline?: $Enums.HiringTimeline | null
|
|
20932
|
-
}
|
|
20933
|
-
|
|
20934
20694
|
export type MissionCreateNestedManyWithoutCreatorModelInput = {
|
|
20935
20695
|
create?: XOR<MissionCreateWithoutCreatorModelInput, MissionUncheckedCreateWithoutCreatorModelInput> | MissionCreateWithoutCreatorModelInput[] | MissionUncheckedCreateWithoutCreatorModelInput[]
|
|
20936
20696
|
connectOrCreate?: MissionCreateOrConnectWithoutCreatorModelInput | MissionCreateOrConnectWithoutCreatorModelInput[]
|
|
@@ -21010,12 +20770,6 @@ export namespace Prisma {
|
|
|
21010
20770
|
push?: string | string[]
|
|
21011
20771
|
}
|
|
21012
20772
|
|
|
21013
|
-
export type ClientRegistrationNullableUpdateEnvelopeInput = {
|
|
21014
|
-
set?: ClientRegistrationCreateInput | null
|
|
21015
|
-
upsert?: ClientRegistrationUpsertInput
|
|
21016
|
-
unset?: boolean
|
|
21017
|
-
}
|
|
21018
|
-
|
|
21019
20773
|
export type MissionUpdateManyWithoutCreatorModelNestedInput = {
|
|
21020
20774
|
create?: XOR<MissionCreateWithoutCreatorModelInput, MissionUncheckedCreateWithoutCreatorModelInput> | MissionCreateWithoutCreatorModelInput[] | MissionUncheckedCreateWithoutCreatorModelInput[]
|
|
21021
20775
|
connectOrCreate?: MissionCreateOrConnectWithoutCreatorModelInput | MissionCreateOrConnectWithoutCreatorModelInput[]
|
|
@@ -21774,21 +21528,6 @@ export namespace Prisma {
|
|
|
21774
21528
|
not?: NestedBoolFilter<$PrismaModel> | boolean
|
|
21775
21529
|
}
|
|
21776
21530
|
|
|
21777
|
-
export type ClientRegistrationWhereInput = {
|
|
21778
|
-
AND?: ClientRegistrationWhereInput | ClientRegistrationWhereInput[]
|
|
21779
|
-
OR?: ClientRegistrationWhereInput[]
|
|
21780
|
-
NOT?: ClientRegistrationWhereInput | ClientRegistrationWhereInput[]
|
|
21781
|
-
emailVerified?: BoolNullableFilter<"ClientRegistration"> | boolean | null
|
|
21782
|
-
signupCompany?: StringNullableFilter<"ClientRegistration"> | string | null
|
|
21783
|
-
companyQualified?: BoolNullableFilter<"ClientRegistration"> | boolean | null
|
|
21784
|
-
requestType?: EnumRegisterRequestTypeNullableFilter<"ClientRegistration"> | $Enums.RegisterRequestType | null
|
|
21785
|
-
requestSolution?: StringNullableFilter<"ClientRegistration"> | string | null
|
|
21786
|
-
requestRoles?: StringNullableListFilter<"ClientRegistration">
|
|
21787
|
-
requestHelp?: StringNullableFilter<"ClientRegistration"> | string | null
|
|
21788
|
-
howDidYouHear?: StringNullableFilter<"ClientRegistration"> | string | null
|
|
21789
|
-
hiringTimeline?: EnumHiringTimelineNullableFilter<"ClientRegistration"> | $Enums.HiringTimeline | null
|
|
21790
|
-
}
|
|
21791
|
-
|
|
21792
21531
|
export type NestedBoolWithAggregatesFilter<$PrismaModel = never> = {
|
|
21793
21532
|
equals?: boolean | BooleanFieldRefInput<$PrismaModel>
|
|
21794
21533
|
not?: NestedBoolWithAggregatesFilter<$PrismaModel> | boolean
|
|
@@ -22756,7 +22495,6 @@ export namespace Prisma {
|
|
|
22756
22495
|
createdAt: Date | string
|
|
22757
22496
|
titles?: UserCreatetitlesInput | string[]
|
|
22758
22497
|
scrubbed?: string | null
|
|
22759
|
-
clientRegistration?: XOR<ClientRegistrationNullableCreateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
22760
22498
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
22761
22499
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
22762
22500
|
modifiedMissionSpecs?: MissionSpecCreateNestedManyWithoutLastModifierInput
|
|
@@ -22776,7 +22514,6 @@ export namespace Prisma {
|
|
|
22776
22514
|
createdAt: Date | string
|
|
22777
22515
|
titles?: UserCreatetitlesInput | string[]
|
|
22778
22516
|
scrubbed?: string | null
|
|
22779
|
-
clientRegistration?: XOR<ClientRegistrationNullableCreateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
22780
22517
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
22781
22518
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
22782
22519
|
modifiedMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutLastModifierInput
|
|
@@ -22864,7 +22601,6 @@ export namespace Prisma {
|
|
|
22864
22601
|
createdAt: Date | string
|
|
22865
22602
|
titles?: UserCreatetitlesInput | string[]
|
|
22866
22603
|
scrubbed?: string | null
|
|
22867
|
-
clientRegistration?: XOR<ClientRegistrationNullableCreateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
22868
22604
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
22869
22605
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
22870
22606
|
modifiedMissionSpecs?: MissionSpecCreateNestedManyWithoutLastModifierInput
|
|
@@ -22884,7 +22620,6 @@ export namespace Prisma {
|
|
|
22884
22620
|
createdAt: Date | string
|
|
22885
22621
|
titles?: UserCreatetitlesInput | string[]
|
|
22886
22622
|
scrubbed?: string | null
|
|
22887
|
-
clientRegistration?: XOR<ClientRegistrationNullableCreateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
22888
22623
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
22889
22624
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
22890
22625
|
modifiedMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutLastModifierInput
|
|
@@ -23037,7 +22772,6 @@ export namespace Prisma {
|
|
|
23037
22772
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
23038
22773
|
titles?: UserUpdatetitlesInput | string[]
|
|
23039
22774
|
scrubbed?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23040
|
-
clientRegistration?: XOR<ClientRegistrationNullableUpdateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
23041
22775
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
23042
22776
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
23043
22777
|
modifiedMissionSpecs?: MissionSpecUpdateManyWithoutLastModifierNestedInput
|
|
@@ -23056,7 +22790,6 @@ export namespace Prisma {
|
|
|
23056
22790
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
23057
22791
|
titles?: UserUpdatetitlesInput | string[]
|
|
23058
22792
|
scrubbed?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23059
|
-
clientRegistration?: XOR<ClientRegistrationNullableUpdateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
23060
22793
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
23061
22794
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
23062
22795
|
modifiedMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutLastModifierNestedInput
|
|
@@ -23153,7 +22886,6 @@ export namespace Prisma {
|
|
|
23153
22886
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
23154
22887
|
titles?: UserUpdatetitlesInput | string[]
|
|
23155
22888
|
scrubbed?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23156
|
-
clientRegistration?: XOR<ClientRegistrationNullableUpdateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
23157
22889
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
23158
22890
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
23159
22891
|
modifiedMissionSpecs?: MissionSpecUpdateManyWithoutLastModifierNestedInput
|
|
@@ -23172,7 +22904,6 @@ export namespace Prisma {
|
|
|
23172
22904
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
23173
22905
|
titles?: UserUpdatetitlesInput | string[]
|
|
23174
22906
|
scrubbed?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23175
|
-
clientRegistration?: XOR<ClientRegistrationNullableUpdateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
23176
22907
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
23177
22908
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
23178
22909
|
modifiedMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutLastModifierNestedInput
|
|
@@ -23225,7 +22956,6 @@ export namespace Prisma {
|
|
|
23225
22956
|
createdAt: Date | string
|
|
23226
22957
|
titles?: UserCreatetitlesInput | string[]
|
|
23227
22958
|
scrubbed?: string | null
|
|
23228
|
-
clientRegistration?: XOR<ClientRegistrationNullableCreateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
23229
22959
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
23230
22960
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
23231
22961
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
@@ -23245,7 +22975,6 @@ export namespace Prisma {
|
|
|
23245
22975
|
createdAt: Date | string
|
|
23246
22976
|
titles?: UserCreatetitlesInput | string[]
|
|
23247
22977
|
scrubbed?: string | null
|
|
23248
|
-
clientRegistration?: XOR<ClientRegistrationNullableCreateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
23249
22978
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
23250
22979
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
23251
22980
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
@@ -23280,7 +23009,6 @@ export namespace Prisma {
|
|
|
23280
23009
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
23281
23010
|
titles?: UserUpdatetitlesInput | string[]
|
|
23282
23011
|
scrubbed?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23283
|
-
clientRegistration?: XOR<ClientRegistrationNullableUpdateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
23284
23012
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
23285
23013
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
23286
23014
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
@@ -23299,7 +23027,6 @@ export namespace Prisma {
|
|
|
23299
23027
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
23300
23028
|
titles?: UserUpdatetitlesInput | string[]
|
|
23301
23029
|
scrubbed?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23302
|
-
clientRegistration?: XOR<ClientRegistrationNullableUpdateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
23303
23030
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
23304
23031
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
23305
23032
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
@@ -23382,7 +23109,6 @@ export namespace Prisma {
|
|
|
23382
23109
|
createdAt: Date | string
|
|
23383
23110
|
titles?: UserCreatetitlesInput | string[]
|
|
23384
23111
|
scrubbed?: string | null
|
|
23385
|
-
clientRegistration?: XOR<ClientRegistrationNullableCreateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
23386
23112
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
23387
23113
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
23388
23114
|
modifiedMissionSpecs?: MissionSpecCreateNestedManyWithoutLastModifierInput
|
|
@@ -23402,7 +23128,6 @@ export namespace Prisma {
|
|
|
23402
23128
|
createdAt: Date | string
|
|
23403
23129
|
titles?: UserCreatetitlesInput | string[]
|
|
23404
23130
|
scrubbed?: string | null
|
|
23405
|
-
clientRegistration?: XOR<ClientRegistrationNullableCreateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
23406
23131
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
23407
23132
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
23408
23133
|
modifiedMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutLastModifierInput
|
|
@@ -23460,7 +23185,6 @@ export namespace Prisma {
|
|
|
23460
23185
|
createdAt: Date | string
|
|
23461
23186
|
titles?: UserCreatetitlesInput | string[]
|
|
23462
23187
|
scrubbed?: string | null
|
|
23463
|
-
clientRegistration?: XOR<ClientRegistrationNullableCreateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
23464
23188
|
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
23465
23189
|
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
23466
23190
|
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
@@ -23480,7 +23204,6 @@ export namespace Prisma {
|
|
|
23480
23204
|
createdAt: Date | string
|
|
23481
23205
|
titles?: UserCreatetitlesInput | string[]
|
|
23482
23206
|
scrubbed?: string | null
|
|
23483
|
-
clientRegistration?: XOR<ClientRegistrationNullableCreateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
23484
23207
|
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
23485
23208
|
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
23486
23209
|
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
@@ -23688,7 +23411,6 @@ export namespace Prisma {
|
|
|
23688
23411
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
23689
23412
|
titles?: UserUpdatetitlesInput | string[]
|
|
23690
23413
|
scrubbed?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23691
|
-
clientRegistration?: XOR<ClientRegistrationNullableUpdateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
23692
23414
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
23693
23415
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
23694
23416
|
modifiedMissionSpecs?: MissionSpecUpdateManyWithoutLastModifierNestedInput
|
|
@@ -23707,7 +23429,6 @@ export namespace Prisma {
|
|
|
23707
23429
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
23708
23430
|
titles?: UserUpdatetitlesInput | string[]
|
|
23709
23431
|
scrubbed?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23710
|
-
clientRegistration?: XOR<ClientRegistrationNullableUpdateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
23711
23432
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
23712
23433
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
23713
23434
|
modifiedMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutLastModifierNestedInput
|
|
@@ -23774,7 +23495,6 @@ export namespace Prisma {
|
|
|
23774
23495
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
23775
23496
|
titles?: UserUpdatetitlesInput | string[]
|
|
23776
23497
|
scrubbed?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23777
|
-
clientRegistration?: XOR<ClientRegistrationNullableUpdateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
23778
23498
|
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
23779
23499
|
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
23780
23500
|
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
@@ -23793,7 +23513,6 @@ export namespace Prisma {
|
|
|
23793
23513
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
23794
23514
|
titles?: UserUpdatetitlesInput | string[]
|
|
23795
23515
|
scrubbed?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23796
|
-
clientRegistration?: XOR<ClientRegistrationNullableUpdateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
23797
23516
|
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
23798
23517
|
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
23799
23518
|
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
@@ -23907,10 +23626,6 @@ export namespace Prisma {
|
|
|
23907
23626
|
contracts?: ContractUncheckedUpdateManyWithoutMissionNestedInput
|
|
23908
23627
|
}
|
|
23909
23628
|
|
|
23910
|
-
export type ClientRegistrationCreaterequestRolesInput = {
|
|
23911
|
-
set: string[]
|
|
23912
|
-
}
|
|
23913
|
-
|
|
23914
23629
|
export type MissionCreateWithoutCreatorModelInput = {
|
|
23915
23630
|
mid?: string
|
|
23916
23631
|
applyStatus?: string | null
|
|
@@ -24294,11 +24009,6 @@ export namespace Prisma {
|
|
|
24294
24009
|
data: MissionPrefillCreateManyUserInput | MissionPrefillCreateManyUserInput[]
|
|
24295
24010
|
}
|
|
24296
24011
|
|
|
24297
|
-
export type ClientRegistrationUpsertInput = {
|
|
24298
|
-
set: ClientRegistrationCreateInput | null
|
|
24299
|
-
update: ClientRegistrationUpdateInput
|
|
24300
|
-
}
|
|
24301
|
-
|
|
24302
24012
|
export type MissionUpsertWithWhereUniqueWithoutCreatorModelInput = {
|
|
24303
24013
|
where: MissionWhereUniqueInput
|
|
24304
24014
|
update: XOR<MissionUpdateWithoutCreatorModelInput, MissionUncheckedUpdateWithoutCreatorModelInput>
|
|
@@ -24495,22 +24205,6 @@ export namespace Prisma {
|
|
|
24495
24205
|
isSet?: boolean
|
|
24496
24206
|
}
|
|
24497
24207
|
|
|
24498
|
-
export type EnumRegisterRequestTypeNullableFilter<$PrismaModel = never> = {
|
|
24499
|
-
equals?: $Enums.RegisterRequestType | EnumRegisterRequestTypeFieldRefInput<$PrismaModel> | null
|
|
24500
|
-
in?: $Enums.RegisterRequestType[] | ListEnumRegisterRequestTypeFieldRefInput<$PrismaModel> | null
|
|
24501
|
-
notIn?: $Enums.RegisterRequestType[] | ListEnumRegisterRequestTypeFieldRefInput<$PrismaModel> | null
|
|
24502
|
-
not?: NestedEnumRegisterRequestTypeNullableFilter<$PrismaModel> | $Enums.RegisterRequestType | null
|
|
24503
|
-
isSet?: boolean
|
|
24504
|
-
}
|
|
24505
|
-
|
|
24506
|
-
export type EnumHiringTimelineNullableFilter<$PrismaModel = never> = {
|
|
24507
|
-
equals?: $Enums.HiringTimeline | EnumHiringTimelineFieldRefInput<$PrismaModel> | null
|
|
24508
|
-
in?: $Enums.HiringTimeline[] | ListEnumHiringTimelineFieldRefInput<$PrismaModel> | null
|
|
24509
|
-
notIn?: $Enums.HiringTimeline[] | ListEnumHiringTimelineFieldRefInput<$PrismaModel> | null
|
|
24510
|
-
not?: NestedEnumHiringTimelineNullableFilter<$PrismaModel> | $Enums.HiringTimeline | null
|
|
24511
|
-
isSet?: boolean
|
|
24512
|
-
}
|
|
24513
|
-
|
|
24514
24208
|
export type MissionCreateManyAccountModelInput = {
|
|
24515
24209
|
mid?: string
|
|
24516
24210
|
applyStatus?: string | null
|
|
@@ -25406,18 +25100,6 @@ export namespace Prisma {
|
|
|
25406
25100
|
updatedAt?: Date | string
|
|
25407
25101
|
}
|
|
25408
25102
|
|
|
25409
|
-
export type ClientRegistrationUpdateInput = {
|
|
25410
|
-
emailVerified?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
25411
|
-
signupCompany?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25412
|
-
companyQualified?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
25413
|
-
requestType?: NullableEnumRegisterRequestTypeFieldUpdateOperationsInput | $Enums.RegisterRequestType | null
|
|
25414
|
-
requestSolution?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25415
|
-
requestRoles?: ClientRegistrationUpdaterequestRolesInput | string[]
|
|
25416
|
-
requestHelp?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25417
|
-
howDidYouHear?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25418
|
-
hiringTimeline?: NullableEnumHiringTimelineFieldUpdateOperationsInput | $Enums.HiringTimeline | null
|
|
25419
|
-
}
|
|
25420
|
-
|
|
25421
25103
|
export type MissionUpdateWithoutCreatorModelInput = {
|
|
25422
25104
|
applyStatus?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25423
25105
|
attachedLinks?: XOR<MissionsAttachedLinkListUpdateEnvelopeInput, MissionsAttachedLinkCreateInput> | MissionsAttachedLinkCreateInput[]
|
|
@@ -26021,22 +25703,6 @@ export namespace Prisma {
|
|
|
26021
25703
|
startTime?: IntNullableFilter<"LocalHourRange"> | number | null
|
|
26022
25704
|
}
|
|
26023
25705
|
|
|
26024
|
-
export type NestedEnumRegisterRequestTypeNullableFilter<$PrismaModel = never> = {
|
|
26025
|
-
equals?: $Enums.RegisterRequestType | EnumRegisterRequestTypeFieldRefInput<$PrismaModel> | null
|
|
26026
|
-
in?: $Enums.RegisterRequestType[] | ListEnumRegisterRequestTypeFieldRefInput<$PrismaModel> | null
|
|
26027
|
-
notIn?: $Enums.RegisterRequestType[] | ListEnumRegisterRequestTypeFieldRefInput<$PrismaModel> | null
|
|
26028
|
-
not?: NestedEnumRegisterRequestTypeNullableFilter<$PrismaModel> | $Enums.RegisterRequestType | null
|
|
26029
|
-
isSet?: boolean
|
|
26030
|
-
}
|
|
26031
|
-
|
|
26032
|
-
export type NestedEnumHiringTimelineNullableFilter<$PrismaModel = never> = {
|
|
26033
|
-
equals?: $Enums.HiringTimeline | EnumHiringTimelineFieldRefInput<$PrismaModel> | null
|
|
26034
|
-
in?: $Enums.HiringTimeline[] | ListEnumHiringTimelineFieldRefInput<$PrismaModel> | null
|
|
26035
|
-
notIn?: $Enums.HiringTimeline[] | ListEnumHiringTimelineFieldRefInput<$PrismaModel> | null
|
|
26036
|
-
not?: NestedEnumHiringTimelineNullableFilter<$PrismaModel> | $Enums.HiringTimeline | null
|
|
26037
|
-
isSet?: boolean
|
|
26038
|
-
}
|
|
26039
|
-
|
|
26040
25706
|
export type StructuredEnrichmentUpsertInput = {
|
|
26041
25707
|
set: StructuredEnrichmentCreateInput | null
|
|
26042
25708
|
update: StructuredEnrichmentUpdateInput
|
|
@@ -26134,21 +25800,6 @@ export namespace Prisma {
|
|
|
26134
25800
|
deleteMany?: LocalHourRangeDeleteManyInput
|
|
26135
25801
|
}
|
|
26136
25802
|
|
|
26137
|
-
export type NullableEnumRegisterRequestTypeFieldUpdateOperationsInput = {
|
|
26138
|
-
set?: $Enums.RegisterRequestType | null
|
|
26139
|
-
unset?: boolean
|
|
26140
|
-
}
|
|
26141
|
-
|
|
26142
|
-
export type ClientRegistrationUpdaterequestRolesInput = {
|
|
26143
|
-
set?: string[]
|
|
26144
|
-
push?: string | string[]
|
|
26145
|
-
}
|
|
26146
|
-
|
|
26147
|
-
export type NullableEnumHiringTimelineFieldUpdateOperationsInput = {
|
|
26148
|
-
set?: $Enums.HiringTimeline | null
|
|
26149
|
-
unset?: boolean
|
|
26150
|
-
}
|
|
26151
|
-
|
|
26152
25803
|
export type FloatFilter<$PrismaModel = never> = {
|
|
26153
25804
|
equals?: number | FloatFieldRefInput<$PrismaModel>
|
|
26154
25805
|
in?: number[] | ListFloatFieldRefInput<$PrismaModel>
|
|
@@ -26473,10 +26124,6 @@ export namespace Prisma {
|
|
|
26473
26124
|
* @deprecated Use ClientRoleQuestionDefaultArgs instead
|
|
26474
26125
|
*/
|
|
26475
26126
|
export type ClientRoleQuestionArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = ClientRoleQuestionDefaultArgs<ExtArgs>
|
|
26476
|
-
/**
|
|
26477
|
-
* @deprecated Use ClientRegistrationDefaultArgs instead
|
|
26478
|
-
*/
|
|
26479
|
-
export type ClientRegistrationArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = ClientRegistrationDefaultArgs<ExtArgs>
|
|
26480
26127
|
/**
|
|
26481
26128
|
* @deprecated Use AccountDefaultArgs instead
|
|
26482
26129
|
*/
|