@a_team/prisma 3.16.6-macos-docker-linux → 3.17.0-linux
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client/edge.js +29 -4
- package/dist/client/index-browser.js +25 -0
- package/dist/client/index.d.ts +2164 -205
- package/dist/client/index.js +31 -6
- package/dist/client/{libquery_engine-linux-arm64-openssl-3.0.x.so.node → libquery_engine-linux-musl-openssl-3.0.x.so.node} +0 -0
- package/dist/client/package.json +1 -1
- package/dist/client/schema.prisma +27 -0
- package/dist/client/wasm.js +25 -0
- package/package.json +4 -2
package/dist/client/index.d.ts
CHANGED
|
@@ -523,6 +523,11 @@ export type Account = $Result.DefaultSelection<Prisma.$AccountPayload>
|
|
|
523
523
|
*
|
|
524
524
|
*/
|
|
525
525
|
export type BillingAccount = $Result.DefaultSelection<Prisma.$BillingAccountPayload>
|
|
526
|
+
/**
|
|
527
|
+
* Model BuilderWebsitesData
|
|
528
|
+
*
|
|
529
|
+
*/
|
|
530
|
+
export type BuilderWebsitesData = $Result.DefaultSelection<Prisma.$BuilderWebsitesDataPayload>
|
|
526
531
|
/**
|
|
527
532
|
* Model Calendar
|
|
528
533
|
*
|
|
@@ -658,7 +663,25 @@ export type UserReview = $Result.DefaultSelection<Prisma.$UserReviewPayload>
|
|
|
658
663
|
* Enums
|
|
659
664
|
*/
|
|
660
665
|
export namespace $Enums {
|
|
661
|
-
export const
|
|
666
|
+
export const BuilderWebsitesSourceType: {
|
|
667
|
+
GitHub: 'GitHub',
|
|
668
|
+
LinkedIn: 'LinkedIn',
|
|
669
|
+
PersonalWebsite: 'PersonalWebsite'
|
|
670
|
+
};
|
|
671
|
+
|
|
672
|
+
export type BuilderWebsitesSourceType = (typeof BuilderWebsitesSourceType)[keyof typeof BuilderWebsitesSourceType]
|
|
673
|
+
|
|
674
|
+
|
|
675
|
+
export const BuilderWebsitesSourceDataType: {
|
|
676
|
+
HTML: 'HTML',
|
|
677
|
+
JSON: 'JSON',
|
|
678
|
+
Markdown: 'Markdown'
|
|
679
|
+
};
|
|
680
|
+
|
|
681
|
+
export type BuilderWebsitesSourceDataType = (typeof BuilderWebsitesSourceDataType)[keyof typeof BuilderWebsitesSourceDataType]
|
|
682
|
+
|
|
683
|
+
|
|
684
|
+
export const CalendarProvider: {
|
|
662
685
|
google: 'google',
|
|
663
686
|
apple: 'apple',
|
|
664
687
|
office365: 'office365'
|
|
@@ -1104,6 +1127,14 @@ export type MissionRoleVisibilityStatus = (typeof MissionRoleVisibilityStatus)[k
|
|
|
1104
1127
|
|
|
1105
1128
|
}
|
|
1106
1129
|
|
|
1130
|
+
export type BuilderWebsitesSourceType = $Enums.BuilderWebsitesSourceType
|
|
1131
|
+
|
|
1132
|
+
export const BuilderWebsitesSourceType: typeof $Enums.BuilderWebsitesSourceType
|
|
1133
|
+
|
|
1134
|
+
export type BuilderWebsitesSourceDataType = $Enums.BuilderWebsitesSourceDataType
|
|
1135
|
+
|
|
1136
|
+
export const BuilderWebsitesSourceDataType: typeof $Enums.BuilderWebsitesSourceDataType
|
|
1137
|
+
|
|
1107
1138
|
export type CalendarProvider = $Enums.CalendarProvider
|
|
1108
1139
|
|
|
1109
1140
|
export const CalendarProvider: typeof $Enums.CalendarProvider
|
|
@@ -1386,6 +1417,16 @@ export class PrismaClient<
|
|
|
1386
1417
|
*/
|
|
1387
1418
|
get billingAccount(): Prisma.BillingAccountDelegate<ExtArgs>;
|
|
1388
1419
|
|
|
1420
|
+
/**
|
|
1421
|
+
* `prisma.builderWebsitesData`: Exposes CRUD operations for the **BuilderWebsitesData** model.
|
|
1422
|
+
* Example usage:
|
|
1423
|
+
* ```ts
|
|
1424
|
+
* // Fetch zero or more BuilderWebsitesData
|
|
1425
|
+
* const builderWebsitesData = await prisma.builderWebsitesData.findMany()
|
|
1426
|
+
* ```
|
|
1427
|
+
*/
|
|
1428
|
+
get builderWebsitesData(): Prisma.BuilderWebsitesDataDelegate<ExtArgs>;
|
|
1429
|
+
|
|
1389
1430
|
/**
|
|
1390
1431
|
* `prisma.calendar`: Exposes CRUD operations for the **Calendar** model.
|
|
1391
1432
|
* Example usage:
|
|
@@ -2088,6 +2129,7 @@ export namespace Prisma {
|
|
|
2088
2129
|
export const ModelName: {
|
|
2089
2130
|
Account: 'Account',
|
|
2090
2131
|
BillingAccount: 'BillingAccount',
|
|
2132
|
+
BuilderWebsitesData: 'BuilderWebsitesData',
|
|
2091
2133
|
Calendar: 'Calendar',
|
|
2092
2134
|
CalendarAvailability: 'CalendarAvailability',
|
|
2093
2135
|
CalendarEvent: 'CalendarEvent',
|
|
@@ -2129,7 +2171,7 @@ export namespace Prisma {
|
|
|
2129
2171
|
|
|
2130
2172
|
export type TypeMap<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs, ClientOptions = {}> = {
|
|
2131
2173
|
meta: {
|
|
2132
|
-
modelProps: "account" | "billingAccount" | "calendar" | "calendarAvailability" | "calendarEvent" | "calendarEventType" | "clientCompany" | "clientInterview" | "company" | "contract" | "experience" | "invoice" | "linkedInRecommendation" | "mission" | "missionApplication" | "missionPrefill" | "missionSpec" | "paymentCycle" | "proposal" | "recordedCall" | "roleCategory" | "roleHiringCriteria" | "solution" | "talentCategory" | "talentIndustry" | "user" | "userPreference" | "userReview"
|
|
2174
|
+
modelProps: "account" | "billingAccount" | "builderWebsitesData" | "calendar" | "calendarAvailability" | "calendarEvent" | "calendarEventType" | "clientCompany" | "clientInterview" | "company" | "contract" | "experience" | "invoice" | "linkedInRecommendation" | "mission" | "missionApplication" | "missionPrefill" | "missionSpec" | "paymentCycle" | "proposal" | "recordedCall" | "roleCategory" | "roleHiringCriteria" | "solution" | "talentCategory" | "talentIndustry" | "user" | "userPreference" | "userReview"
|
|
2133
2175
|
txIsolationLevel: never
|
|
2134
2176
|
}
|
|
2135
2177
|
model: {
|
|
@@ -2281,6 +2323,80 @@ export namespace Prisma {
|
|
|
2281
2323
|
}
|
|
2282
2324
|
}
|
|
2283
2325
|
}
|
|
2326
|
+
BuilderWebsitesData: {
|
|
2327
|
+
payload: Prisma.$BuilderWebsitesDataPayload<ExtArgs>
|
|
2328
|
+
fields: Prisma.BuilderWebsitesDataFieldRefs
|
|
2329
|
+
operations: {
|
|
2330
|
+
findUnique: {
|
|
2331
|
+
args: Prisma.BuilderWebsitesDataFindUniqueArgs<ExtArgs>
|
|
2332
|
+
result: $Utils.PayloadToResult<Prisma.$BuilderWebsitesDataPayload> | null
|
|
2333
|
+
}
|
|
2334
|
+
findUniqueOrThrow: {
|
|
2335
|
+
args: Prisma.BuilderWebsitesDataFindUniqueOrThrowArgs<ExtArgs>
|
|
2336
|
+
result: $Utils.PayloadToResult<Prisma.$BuilderWebsitesDataPayload>
|
|
2337
|
+
}
|
|
2338
|
+
findFirst: {
|
|
2339
|
+
args: Prisma.BuilderWebsitesDataFindFirstArgs<ExtArgs>
|
|
2340
|
+
result: $Utils.PayloadToResult<Prisma.$BuilderWebsitesDataPayload> | null
|
|
2341
|
+
}
|
|
2342
|
+
findFirstOrThrow: {
|
|
2343
|
+
args: Prisma.BuilderWebsitesDataFindFirstOrThrowArgs<ExtArgs>
|
|
2344
|
+
result: $Utils.PayloadToResult<Prisma.$BuilderWebsitesDataPayload>
|
|
2345
|
+
}
|
|
2346
|
+
findMany: {
|
|
2347
|
+
args: Prisma.BuilderWebsitesDataFindManyArgs<ExtArgs>
|
|
2348
|
+
result: $Utils.PayloadToResult<Prisma.$BuilderWebsitesDataPayload>[]
|
|
2349
|
+
}
|
|
2350
|
+
create: {
|
|
2351
|
+
args: Prisma.BuilderWebsitesDataCreateArgs<ExtArgs>
|
|
2352
|
+
result: $Utils.PayloadToResult<Prisma.$BuilderWebsitesDataPayload>
|
|
2353
|
+
}
|
|
2354
|
+
createMany: {
|
|
2355
|
+
args: Prisma.BuilderWebsitesDataCreateManyArgs<ExtArgs>
|
|
2356
|
+
result: BatchPayload
|
|
2357
|
+
}
|
|
2358
|
+
delete: {
|
|
2359
|
+
args: Prisma.BuilderWebsitesDataDeleteArgs<ExtArgs>
|
|
2360
|
+
result: $Utils.PayloadToResult<Prisma.$BuilderWebsitesDataPayload>
|
|
2361
|
+
}
|
|
2362
|
+
update: {
|
|
2363
|
+
args: Prisma.BuilderWebsitesDataUpdateArgs<ExtArgs>
|
|
2364
|
+
result: $Utils.PayloadToResult<Prisma.$BuilderWebsitesDataPayload>
|
|
2365
|
+
}
|
|
2366
|
+
deleteMany: {
|
|
2367
|
+
args: Prisma.BuilderWebsitesDataDeleteManyArgs<ExtArgs>
|
|
2368
|
+
result: BatchPayload
|
|
2369
|
+
}
|
|
2370
|
+
updateMany: {
|
|
2371
|
+
args: Prisma.BuilderWebsitesDataUpdateManyArgs<ExtArgs>
|
|
2372
|
+
result: BatchPayload
|
|
2373
|
+
}
|
|
2374
|
+
upsert: {
|
|
2375
|
+
args: Prisma.BuilderWebsitesDataUpsertArgs<ExtArgs>
|
|
2376
|
+
result: $Utils.PayloadToResult<Prisma.$BuilderWebsitesDataPayload>
|
|
2377
|
+
}
|
|
2378
|
+
aggregate: {
|
|
2379
|
+
args: Prisma.BuilderWebsitesDataAggregateArgs<ExtArgs>
|
|
2380
|
+
result: $Utils.Optional<AggregateBuilderWebsitesData>
|
|
2381
|
+
}
|
|
2382
|
+
groupBy: {
|
|
2383
|
+
args: Prisma.BuilderWebsitesDataGroupByArgs<ExtArgs>
|
|
2384
|
+
result: $Utils.Optional<BuilderWebsitesDataGroupByOutputType>[]
|
|
2385
|
+
}
|
|
2386
|
+
findRaw: {
|
|
2387
|
+
args: Prisma.BuilderWebsitesDataFindRawArgs<ExtArgs>
|
|
2388
|
+
result: JsonObject
|
|
2389
|
+
}
|
|
2390
|
+
aggregateRaw: {
|
|
2391
|
+
args: Prisma.BuilderWebsitesDataAggregateRawArgs<ExtArgs>
|
|
2392
|
+
result: JsonObject
|
|
2393
|
+
}
|
|
2394
|
+
count: {
|
|
2395
|
+
args: Prisma.BuilderWebsitesDataCountArgs<ExtArgs>
|
|
2396
|
+
result: $Utils.Optional<BuilderWebsitesDataCountAggregateOutputType> | number
|
|
2397
|
+
}
|
|
2398
|
+
}
|
|
2399
|
+
}
|
|
2284
2400
|
Calendar: {
|
|
2285
2401
|
payload: Prisma.$CalendarPayload<ExtArgs>
|
|
2286
2402
|
fields: Prisma.CalendarFieldRefs
|
|
@@ -4731,6 +4847,7 @@ export namespace Prisma {
|
|
|
4731
4847
|
builderInterviews: number
|
|
4732
4848
|
proposalsAsTeamAdvisor: number
|
|
4733
4849
|
builderContracts: number
|
|
4850
|
+
builderWebsitesData: number
|
|
4734
4851
|
}
|
|
4735
4852
|
|
|
4736
4853
|
export type UserCountOutputTypeSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -4752,6 +4869,7 @@ export namespace Prisma {
|
|
|
4752
4869
|
builderInterviews?: boolean | UserCountOutputTypeCountBuilderInterviewsArgs
|
|
4753
4870
|
proposalsAsTeamAdvisor?: boolean | UserCountOutputTypeCountProposalsAsTeamAdvisorArgs
|
|
4754
4871
|
builderContracts?: boolean | UserCountOutputTypeCountBuilderContractsArgs
|
|
4872
|
+
builderWebsitesData?: boolean | UserCountOutputTypeCountBuilderWebsitesDataArgs
|
|
4755
4873
|
}
|
|
4756
4874
|
|
|
4757
4875
|
// Custom InputTypes
|
|
@@ -4891,6 +5009,13 @@ export namespace Prisma {
|
|
|
4891
5009
|
where?: ContractWhereInput
|
|
4892
5010
|
}
|
|
4893
5011
|
|
|
5012
|
+
/**
|
|
5013
|
+
* UserCountOutputType without action
|
|
5014
|
+
*/
|
|
5015
|
+
export type UserCountOutputTypeCountBuilderWebsitesDataArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
5016
|
+
where?: BuilderWebsitesDataWhereInput
|
|
5017
|
+
}
|
|
5018
|
+
|
|
4894
5019
|
|
|
4895
5020
|
/**
|
|
4896
5021
|
* Models
|
|
@@ -13699,351 +13824,373 @@ export namespace Prisma {
|
|
|
13699
13824
|
|
|
13700
13825
|
|
|
13701
13826
|
/**
|
|
13702
|
-
* Model
|
|
13827
|
+
* Model BuilderWebsitesData
|
|
13703
13828
|
*/
|
|
13704
13829
|
|
|
13705
|
-
export type
|
|
13706
|
-
_count:
|
|
13707
|
-
_min:
|
|
13708
|
-
_max:
|
|
13830
|
+
export type AggregateBuilderWebsitesData = {
|
|
13831
|
+
_count: BuilderWebsitesDataCountAggregateOutputType | null
|
|
13832
|
+
_min: BuilderWebsitesDataMinAggregateOutputType | null
|
|
13833
|
+
_max: BuilderWebsitesDataMaxAggregateOutputType | null
|
|
13709
13834
|
}
|
|
13710
13835
|
|
|
13711
|
-
export type
|
|
13836
|
+
export type BuilderWebsitesDataMinAggregateOutputType = {
|
|
13712
13837
|
id: string | null
|
|
13713
|
-
|
|
13714
|
-
|
|
13715
|
-
|
|
13838
|
+
builderId: string | null
|
|
13839
|
+
sourceType: $Enums.BuilderWebsitesSourceType | null
|
|
13840
|
+
sourceUrl: string | null
|
|
13841
|
+
error: string | null
|
|
13842
|
+
dataType: $Enums.BuilderWebsitesSourceDataType | null
|
|
13843
|
+
data: string | null
|
|
13716
13844
|
createdAt: Date | null
|
|
13717
13845
|
updatedAt: Date | null
|
|
13718
13846
|
}
|
|
13719
13847
|
|
|
13720
|
-
export type
|
|
13848
|
+
export type BuilderWebsitesDataMaxAggregateOutputType = {
|
|
13721
13849
|
id: string | null
|
|
13722
|
-
|
|
13723
|
-
|
|
13724
|
-
|
|
13850
|
+
builderId: string | null
|
|
13851
|
+
sourceType: $Enums.BuilderWebsitesSourceType | null
|
|
13852
|
+
sourceUrl: string | null
|
|
13853
|
+
error: string | null
|
|
13854
|
+
dataType: $Enums.BuilderWebsitesSourceDataType | null
|
|
13855
|
+
data: string | null
|
|
13725
13856
|
createdAt: Date | null
|
|
13726
13857
|
updatedAt: Date | null
|
|
13727
13858
|
}
|
|
13728
13859
|
|
|
13729
|
-
export type
|
|
13860
|
+
export type BuilderWebsitesDataCountAggregateOutputType = {
|
|
13730
13861
|
id: number
|
|
13731
|
-
|
|
13732
|
-
|
|
13733
|
-
|
|
13862
|
+
builderId: number
|
|
13863
|
+
sourceType: number
|
|
13864
|
+
sourceUrl: number
|
|
13865
|
+
error: number
|
|
13866
|
+
dataType: number
|
|
13867
|
+
data: number
|
|
13734
13868
|
createdAt: number
|
|
13735
13869
|
updatedAt: number
|
|
13736
13870
|
_all: number
|
|
13737
13871
|
}
|
|
13738
13872
|
|
|
13739
13873
|
|
|
13740
|
-
export type
|
|
13874
|
+
export type BuilderWebsitesDataMinAggregateInputType = {
|
|
13741
13875
|
id?: true
|
|
13742
|
-
|
|
13743
|
-
|
|
13744
|
-
|
|
13876
|
+
builderId?: true
|
|
13877
|
+
sourceType?: true
|
|
13878
|
+
sourceUrl?: true
|
|
13879
|
+
error?: true
|
|
13880
|
+
dataType?: true
|
|
13881
|
+
data?: true
|
|
13745
13882
|
createdAt?: true
|
|
13746
13883
|
updatedAt?: true
|
|
13747
13884
|
}
|
|
13748
13885
|
|
|
13749
|
-
export type
|
|
13886
|
+
export type BuilderWebsitesDataMaxAggregateInputType = {
|
|
13750
13887
|
id?: true
|
|
13751
|
-
|
|
13752
|
-
|
|
13753
|
-
|
|
13888
|
+
builderId?: true
|
|
13889
|
+
sourceType?: true
|
|
13890
|
+
sourceUrl?: true
|
|
13891
|
+
error?: true
|
|
13892
|
+
dataType?: true
|
|
13893
|
+
data?: true
|
|
13754
13894
|
createdAt?: true
|
|
13755
13895
|
updatedAt?: true
|
|
13756
13896
|
}
|
|
13757
13897
|
|
|
13758
|
-
export type
|
|
13898
|
+
export type BuilderWebsitesDataCountAggregateInputType = {
|
|
13759
13899
|
id?: true
|
|
13760
|
-
|
|
13761
|
-
|
|
13762
|
-
|
|
13900
|
+
builderId?: true
|
|
13901
|
+
sourceType?: true
|
|
13902
|
+
sourceUrl?: true
|
|
13903
|
+
error?: true
|
|
13904
|
+
dataType?: true
|
|
13905
|
+
data?: true
|
|
13763
13906
|
createdAt?: true
|
|
13764
13907
|
updatedAt?: true
|
|
13765
13908
|
_all?: true
|
|
13766
13909
|
}
|
|
13767
13910
|
|
|
13768
|
-
export type
|
|
13911
|
+
export type BuilderWebsitesDataAggregateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
13769
13912
|
/**
|
|
13770
|
-
* Filter which
|
|
13913
|
+
* Filter which BuilderWebsitesData to aggregate.
|
|
13771
13914
|
*/
|
|
13772
|
-
where?:
|
|
13915
|
+
where?: BuilderWebsitesDataWhereInput
|
|
13773
13916
|
/**
|
|
13774
13917
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
13775
13918
|
*
|
|
13776
|
-
* Determine the order of
|
|
13919
|
+
* Determine the order of BuilderWebsitesData to fetch.
|
|
13777
13920
|
*/
|
|
13778
|
-
orderBy?:
|
|
13921
|
+
orderBy?: BuilderWebsitesDataOrderByWithRelationInput | BuilderWebsitesDataOrderByWithRelationInput[]
|
|
13779
13922
|
/**
|
|
13780
13923
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
13781
13924
|
*
|
|
13782
13925
|
* Sets the start position
|
|
13783
13926
|
*/
|
|
13784
|
-
cursor?:
|
|
13927
|
+
cursor?: BuilderWebsitesDataWhereUniqueInput
|
|
13785
13928
|
/**
|
|
13786
13929
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
13787
13930
|
*
|
|
13788
|
-
* Take `±n`
|
|
13931
|
+
* Take `±n` BuilderWebsitesData from the position of the cursor.
|
|
13789
13932
|
*/
|
|
13790
13933
|
take?: number
|
|
13791
13934
|
/**
|
|
13792
13935
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
13793
13936
|
*
|
|
13794
|
-
* Skip the first `n`
|
|
13937
|
+
* Skip the first `n` BuilderWebsitesData.
|
|
13795
13938
|
*/
|
|
13796
13939
|
skip?: number
|
|
13797
13940
|
/**
|
|
13798
13941
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
13799
13942
|
*
|
|
13800
|
-
* Count returned
|
|
13943
|
+
* Count returned BuilderWebsitesData
|
|
13801
13944
|
**/
|
|
13802
|
-
_count?: true |
|
|
13945
|
+
_count?: true | BuilderWebsitesDataCountAggregateInputType
|
|
13803
13946
|
/**
|
|
13804
13947
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
13805
13948
|
*
|
|
13806
13949
|
* Select which fields to find the minimum value
|
|
13807
13950
|
**/
|
|
13808
|
-
_min?:
|
|
13951
|
+
_min?: BuilderWebsitesDataMinAggregateInputType
|
|
13809
13952
|
/**
|
|
13810
13953
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
13811
13954
|
*
|
|
13812
13955
|
* Select which fields to find the maximum value
|
|
13813
13956
|
**/
|
|
13814
|
-
_max?:
|
|
13957
|
+
_max?: BuilderWebsitesDataMaxAggregateInputType
|
|
13815
13958
|
}
|
|
13816
13959
|
|
|
13817
|
-
export type
|
|
13818
|
-
[P in keyof T & keyof
|
|
13960
|
+
export type GetBuilderWebsitesDataAggregateType<T extends BuilderWebsitesDataAggregateArgs> = {
|
|
13961
|
+
[P in keyof T & keyof AggregateBuilderWebsitesData]: P extends '_count' | 'count'
|
|
13819
13962
|
? T[P] extends true
|
|
13820
13963
|
? number
|
|
13821
|
-
: GetScalarType<T[P],
|
|
13822
|
-
: GetScalarType<T[P],
|
|
13964
|
+
: GetScalarType<T[P], AggregateBuilderWebsitesData[P]>
|
|
13965
|
+
: GetScalarType<T[P], AggregateBuilderWebsitesData[P]>
|
|
13823
13966
|
}
|
|
13824
13967
|
|
|
13825
13968
|
|
|
13826
13969
|
|
|
13827
13970
|
|
|
13828
|
-
export type
|
|
13829
|
-
where?:
|
|
13830
|
-
orderBy?:
|
|
13831
|
-
by:
|
|
13832
|
-
having?:
|
|
13971
|
+
export type BuilderWebsitesDataGroupByArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
13972
|
+
where?: BuilderWebsitesDataWhereInput
|
|
13973
|
+
orderBy?: BuilderWebsitesDataOrderByWithAggregationInput | BuilderWebsitesDataOrderByWithAggregationInput[]
|
|
13974
|
+
by: BuilderWebsitesDataScalarFieldEnum[] | BuilderWebsitesDataScalarFieldEnum
|
|
13975
|
+
having?: BuilderWebsitesDataScalarWhereWithAggregatesInput
|
|
13833
13976
|
take?: number
|
|
13834
13977
|
skip?: number
|
|
13835
|
-
_count?:
|
|
13836
|
-
_min?:
|
|
13837
|
-
_max?:
|
|
13978
|
+
_count?: BuilderWebsitesDataCountAggregateInputType | true
|
|
13979
|
+
_min?: BuilderWebsitesDataMinAggregateInputType
|
|
13980
|
+
_max?: BuilderWebsitesDataMaxAggregateInputType
|
|
13838
13981
|
}
|
|
13839
13982
|
|
|
13840
|
-
export type
|
|
13983
|
+
export type BuilderWebsitesDataGroupByOutputType = {
|
|
13841
13984
|
id: string
|
|
13842
|
-
|
|
13843
|
-
|
|
13844
|
-
|
|
13845
|
-
|
|
13846
|
-
|
|
13847
|
-
|
|
13848
|
-
|
|
13849
|
-
|
|
13985
|
+
builderId: string
|
|
13986
|
+
sourceType: $Enums.BuilderWebsitesSourceType
|
|
13987
|
+
sourceUrl: string
|
|
13988
|
+
error: string | null
|
|
13989
|
+
dataType: $Enums.BuilderWebsitesSourceDataType | null
|
|
13990
|
+
data: string | null
|
|
13991
|
+
createdAt: Date | null
|
|
13992
|
+
updatedAt: Date | null
|
|
13993
|
+
_count: BuilderWebsitesDataCountAggregateOutputType | null
|
|
13994
|
+
_min: BuilderWebsitesDataMinAggregateOutputType | null
|
|
13995
|
+
_max: BuilderWebsitesDataMaxAggregateOutputType | null
|
|
13850
13996
|
}
|
|
13851
13997
|
|
|
13852
|
-
type
|
|
13998
|
+
type GetBuilderWebsitesDataGroupByPayload<T extends BuilderWebsitesDataGroupByArgs> = Prisma.PrismaPromise<
|
|
13853
13999
|
Array<
|
|
13854
|
-
PickEnumerable<
|
|
14000
|
+
PickEnumerable<BuilderWebsitesDataGroupByOutputType, T['by']> &
|
|
13855
14001
|
{
|
|
13856
|
-
[P in ((keyof T) & (keyof
|
|
14002
|
+
[P in ((keyof T) & (keyof BuilderWebsitesDataGroupByOutputType))]: P extends '_count'
|
|
13857
14003
|
? T[P] extends boolean
|
|
13858
14004
|
? number
|
|
13859
|
-
: GetScalarType<T[P],
|
|
13860
|
-
: GetScalarType<T[P],
|
|
14005
|
+
: GetScalarType<T[P], BuilderWebsitesDataGroupByOutputType[P]>
|
|
14006
|
+
: GetScalarType<T[P], BuilderWebsitesDataGroupByOutputType[P]>
|
|
13861
14007
|
}
|
|
13862
14008
|
>
|
|
13863
14009
|
>
|
|
13864
14010
|
|
|
13865
14011
|
|
|
13866
|
-
export type
|
|
14012
|
+
export type BuilderWebsitesDataSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
13867
14013
|
id?: boolean
|
|
13868
|
-
|
|
13869
|
-
|
|
13870
|
-
|
|
13871
|
-
|
|
14014
|
+
builderId?: boolean
|
|
14015
|
+
sourceType?: boolean
|
|
14016
|
+
sourceUrl?: boolean
|
|
14017
|
+
error?: boolean
|
|
14018
|
+
dataType?: boolean
|
|
14019
|
+
data?: boolean
|
|
13872
14020
|
createdAt?: boolean
|
|
13873
14021
|
updatedAt?: boolean
|
|
13874
|
-
|
|
13875
|
-
|
|
13876
|
-
_count?: boolean | CalendarCountOutputTypeDefaultArgs<ExtArgs>
|
|
13877
|
-
}, ExtArgs["result"]["calendar"]>
|
|
14022
|
+
builder?: boolean | BuilderWebsitesData$builderArgs<ExtArgs>
|
|
14023
|
+
}, ExtArgs["result"]["builderWebsitesData"]>
|
|
13878
14024
|
|
|
13879
14025
|
|
|
13880
|
-
export type
|
|
14026
|
+
export type BuilderWebsitesDataSelectScalar = {
|
|
13881
14027
|
id?: boolean
|
|
13882
|
-
|
|
13883
|
-
|
|
13884
|
-
|
|
14028
|
+
builderId?: boolean
|
|
14029
|
+
sourceType?: boolean
|
|
14030
|
+
sourceUrl?: boolean
|
|
14031
|
+
error?: boolean
|
|
14032
|
+
dataType?: boolean
|
|
14033
|
+
data?: boolean
|
|
13885
14034
|
createdAt?: boolean
|
|
13886
14035
|
updatedAt?: boolean
|
|
13887
14036
|
}
|
|
13888
14037
|
|
|
13889
|
-
export type
|
|
13890
|
-
|
|
13891
|
-
events?: boolean | Calendar$eventsArgs<ExtArgs>
|
|
13892
|
-
_count?: boolean | CalendarCountOutputTypeDefaultArgs<ExtArgs>
|
|
14038
|
+
export type BuilderWebsitesDataInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
14039
|
+
builder?: boolean | BuilderWebsitesData$builderArgs<ExtArgs>
|
|
13893
14040
|
}
|
|
13894
14041
|
|
|
13895
|
-
export type $
|
|
13896
|
-
name: "
|
|
14042
|
+
export type $BuilderWebsitesDataPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
14043
|
+
name: "BuilderWebsitesData"
|
|
13897
14044
|
objects: {
|
|
13898
|
-
|
|
13899
|
-
events: Prisma.$CalendarEventPayload<ExtArgs>[]
|
|
14045
|
+
builder: Prisma.$UserPayload<ExtArgs> | null
|
|
13900
14046
|
}
|
|
13901
14047
|
scalars: $Extensions.GetPayloadResult<{
|
|
13902
14048
|
id: string
|
|
13903
|
-
|
|
13904
|
-
|
|
13905
|
-
|
|
13906
|
-
|
|
13907
|
-
|
|
13908
|
-
|
|
13909
|
-
|
|
13910
|
-
|
|
13911
|
-
}
|
|
14049
|
+
builderId: string
|
|
14050
|
+
sourceType: $Enums.BuilderWebsitesSourceType
|
|
14051
|
+
sourceUrl: string
|
|
14052
|
+
error: string | null
|
|
14053
|
+
dataType: $Enums.BuilderWebsitesSourceDataType | null
|
|
14054
|
+
data: string | null
|
|
14055
|
+
createdAt: Date | null
|
|
14056
|
+
updatedAt: Date | null
|
|
14057
|
+
}, ExtArgs["result"]["builderWebsitesData"]>
|
|
14058
|
+
composites: {}
|
|
13912
14059
|
}
|
|
13913
14060
|
|
|
13914
|
-
type
|
|
14061
|
+
type BuilderWebsitesDataGetPayload<S extends boolean | null | undefined | BuilderWebsitesDataDefaultArgs> = $Result.GetResult<Prisma.$BuilderWebsitesDataPayload, S>
|
|
13915
14062
|
|
|
13916
|
-
type
|
|
13917
|
-
Omit<
|
|
13918
|
-
select?:
|
|
14063
|
+
type BuilderWebsitesDataCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
14064
|
+
Omit<BuilderWebsitesDataFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
14065
|
+
select?: BuilderWebsitesDataCountAggregateInputType | true
|
|
13919
14066
|
}
|
|
13920
14067
|
|
|
13921
|
-
export interface
|
|
13922
|
-
[K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['
|
|
14068
|
+
export interface BuilderWebsitesDataDelegate<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> {
|
|
14069
|
+
[K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['BuilderWebsitesData'], meta: { name: 'BuilderWebsitesData' } }
|
|
13923
14070
|
/**
|
|
13924
|
-
* Find zero or one
|
|
13925
|
-
* @param {
|
|
14071
|
+
* Find zero or one BuilderWebsitesData that matches the filter.
|
|
14072
|
+
* @param {BuilderWebsitesDataFindUniqueArgs} args - Arguments to find a BuilderWebsitesData
|
|
13926
14073
|
* @example
|
|
13927
|
-
* // Get one
|
|
13928
|
-
* const
|
|
14074
|
+
* // Get one BuilderWebsitesData
|
|
14075
|
+
* const builderWebsitesData = await prisma.builderWebsitesData.findUnique({
|
|
13929
14076
|
* where: {
|
|
13930
14077
|
* // ... provide filter here
|
|
13931
14078
|
* }
|
|
13932
14079
|
* })
|
|
13933
14080
|
*/
|
|
13934
|
-
findUnique<T extends
|
|
14081
|
+
findUnique<T extends BuilderWebsitesDataFindUniqueArgs>(args: SelectSubset<T, BuilderWebsitesDataFindUniqueArgs<ExtArgs>>): Prisma__BuilderWebsitesDataClient<$Result.GetResult<Prisma.$BuilderWebsitesDataPayload<ExtArgs>, T, "findUnique"> | null, null, ExtArgs>
|
|
13935
14082
|
|
|
13936
14083
|
/**
|
|
13937
|
-
* Find one
|
|
14084
|
+
* Find one BuilderWebsitesData that matches the filter or throw an error with `error.code='P2025'`
|
|
13938
14085
|
* if no matches were found.
|
|
13939
|
-
* @param {
|
|
14086
|
+
* @param {BuilderWebsitesDataFindUniqueOrThrowArgs} args - Arguments to find a BuilderWebsitesData
|
|
13940
14087
|
* @example
|
|
13941
|
-
* // Get one
|
|
13942
|
-
* const
|
|
14088
|
+
* // Get one BuilderWebsitesData
|
|
14089
|
+
* const builderWebsitesData = await prisma.builderWebsitesData.findUniqueOrThrow({
|
|
13943
14090
|
* where: {
|
|
13944
14091
|
* // ... provide filter here
|
|
13945
14092
|
* }
|
|
13946
14093
|
* })
|
|
13947
14094
|
*/
|
|
13948
|
-
findUniqueOrThrow<T extends
|
|
14095
|
+
findUniqueOrThrow<T extends BuilderWebsitesDataFindUniqueOrThrowArgs>(args: SelectSubset<T, BuilderWebsitesDataFindUniqueOrThrowArgs<ExtArgs>>): Prisma__BuilderWebsitesDataClient<$Result.GetResult<Prisma.$BuilderWebsitesDataPayload<ExtArgs>, T, "findUniqueOrThrow">, never, ExtArgs>
|
|
13949
14096
|
|
|
13950
14097
|
/**
|
|
13951
|
-
* Find the first
|
|
14098
|
+
* Find the first BuilderWebsitesData that matches the filter.
|
|
13952
14099
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
13953
14100
|
* Read more here: https://pris.ly/d/null-undefined
|
|
13954
|
-
* @param {
|
|
14101
|
+
* @param {BuilderWebsitesDataFindFirstArgs} args - Arguments to find a BuilderWebsitesData
|
|
13955
14102
|
* @example
|
|
13956
|
-
* // Get one
|
|
13957
|
-
* const
|
|
14103
|
+
* // Get one BuilderWebsitesData
|
|
14104
|
+
* const builderWebsitesData = await prisma.builderWebsitesData.findFirst({
|
|
13958
14105
|
* where: {
|
|
13959
14106
|
* // ... provide filter here
|
|
13960
14107
|
* }
|
|
13961
14108
|
* })
|
|
13962
14109
|
*/
|
|
13963
|
-
findFirst<T extends
|
|
14110
|
+
findFirst<T extends BuilderWebsitesDataFindFirstArgs>(args?: SelectSubset<T, BuilderWebsitesDataFindFirstArgs<ExtArgs>>): Prisma__BuilderWebsitesDataClient<$Result.GetResult<Prisma.$BuilderWebsitesDataPayload<ExtArgs>, T, "findFirst"> | null, null, ExtArgs>
|
|
13964
14111
|
|
|
13965
14112
|
/**
|
|
13966
|
-
* Find the first
|
|
14113
|
+
* Find the first BuilderWebsitesData that matches the filter or
|
|
13967
14114
|
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
13968
14115
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
13969
14116
|
* Read more here: https://pris.ly/d/null-undefined
|
|
13970
|
-
* @param {
|
|
14117
|
+
* @param {BuilderWebsitesDataFindFirstOrThrowArgs} args - Arguments to find a BuilderWebsitesData
|
|
13971
14118
|
* @example
|
|
13972
|
-
* // Get one
|
|
13973
|
-
* const
|
|
14119
|
+
* // Get one BuilderWebsitesData
|
|
14120
|
+
* const builderWebsitesData = await prisma.builderWebsitesData.findFirstOrThrow({
|
|
13974
14121
|
* where: {
|
|
13975
14122
|
* // ... provide filter here
|
|
13976
14123
|
* }
|
|
13977
14124
|
* })
|
|
13978
14125
|
*/
|
|
13979
|
-
findFirstOrThrow<T extends
|
|
14126
|
+
findFirstOrThrow<T extends BuilderWebsitesDataFindFirstOrThrowArgs>(args?: SelectSubset<T, BuilderWebsitesDataFindFirstOrThrowArgs<ExtArgs>>): Prisma__BuilderWebsitesDataClient<$Result.GetResult<Prisma.$BuilderWebsitesDataPayload<ExtArgs>, T, "findFirstOrThrow">, never, ExtArgs>
|
|
13980
14127
|
|
|
13981
14128
|
/**
|
|
13982
|
-
* Find zero or more
|
|
14129
|
+
* Find zero or more BuilderWebsitesData that matches the filter.
|
|
13983
14130
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
13984
14131
|
* Read more here: https://pris.ly/d/null-undefined
|
|
13985
|
-
* @param {
|
|
14132
|
+
* @param {BuilderWebsitesDataFindManyArgs} args - Arguments to filter and select certain fields only.
|
|
13986
14133
|
* @example
|
|
13987
|
-
* // Get all
|
|
13988
|
-
* const
|
|
14134
|
+
* // Get all BuilderWebsitesData
|
|
14135
|
+
* const builderWebsitesData = await prisma.builderWebsitesData.findMany()
|
|
13989
14136
|
*
|
|
13990
|
-
* // Get first 10
|
|
13991
|
-
* const
|
|
14137
|
+
* // Get first 10 BuilderWebsitesData
|
|
14138
|
+
* const builderWebsitesData = await prisma.builderWebsitesData.findMany({ take: 10 })
|
|
13992
14139
|
*
|
|
13993
14140
|
* // Only select the `id`
|
|
13994
|
-
* const
|
|
14141
|
+
* const builderWebsitesDataWithIdOnly = await prisma.builderWebsitesData.findMany({ select: { id: true } })
|
|
13995
14142
|
*
|
|
13996
14143
|
*/
|
|
13997
|
-
findMany<T extends
|
|
14144
|
+
findMany<T extends BuilderWebsitesDataFindManyArgs>(args?: SelectSubset<T, BuilderWebsitesDataFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$BuilderWebsitesDataPayload<ExtArgs>, T, "findMany">>
|
|
13998
14145
|
|
|
13999
14146
|
/**
|
|
14000
|
-
* Create a
|
|
14001
|
-
* @param {
|
|
14147
|
+
* Create a BuilderWebsitesData.
|
|
14148
|
+
* @param {BuilderWebsitesDataCreateArgs} args - Arguments to create a BuilderWebsitesData.
|
|
14002
14149
|
* @example
|
|
14003
|
-
* // Create one
|
|
14004
|
-
* const
|
|
14150
|
+
* // Create one BuilderWebsitesData
|
|
14151
|
+
* const BuilderWebsitesData = await prisma.builderWebsitesData.create({
|
|
14005
14152
|
* data: {
|
|
14006
|
-
* // ... data to create a
|
|
14153
|
+
* // ... data to create a BuilderWebsitesData
|
|
14007
14154
|
* }
|
|
14008
14155
|
* })
|
|
14009
14156
|
*
|
|
14010
14157
|
*/
|
|
14011
|
-
create<T extends
|
|
14158
|
+
create<T extends BuilderWebsitesDataCreateArgs>(args: SelectSubset<T, BuilderWebsitesDataCreateArgs<ExtArgs>>): Prisma__BuilderWebsitesDataClient<$Result.GetResult<Prisma.$BuilderWebsitesDataPayload<ExtArgs>, T, "create">, never, ExtArgs>
|
|
14012
14159
|
|
|
14013
14160
|
/**
|
|
14014
|
-
* Create many
|
|
14015
|
-
* @param {
|
|
14161
|
+
* Create many BuilderWebsitesData.
|
|
14162
|
+
* @param {BuilderWebsitesDataCreateManyArgs} args - Arguments to create many BuilderWebsitesData.
|
|
14016
14163
|
* @example
|
|
14017
|
-
* // Create many
|
|
14018
|
-
* const
|
|
14164
|
+
* // Create many BuilderWebsitesData
|
|
14165
|
+
* const builderWebsitesData = await prisma.builderWebsitesData.createMany({
|
|
14019
14166
|
* data: [
|
|
14020
14167
|
* // ... provide data here
|
|
14021
14168
|
* ]
|
|
14022
14169
|
* })
|
|
14023
14170
|
*
|
|
14024
14171
|
*/
|
|
14025
|
-
createMany<T extends
|
|
14172
|
+
createMany<T extends BuilderWebsitesDataCreateManyArgs>(args?: SelectSubset<T, BuilderWebsitesDataCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
14026
14173
|
|
|
14027
14174
|
/**
|
|
14028
|
-
* Delete a
|
|
14029
|
-
* @param {
|
|
14175
|
+
* Delete a BuilderWebsitesData.
|
|
14176
|
+
* @param {BuilderWebsitesDataDeleteArgs} args - Arguments to delete one BuilderWebsitesData.
|
|
14030
14177
|
* @example
|
|
14031
|
-
* // Delete one
|
|
14032
|
-
* const
|
|
14178
|
+
* // Delete one BuilderWebsitesData
|
|
14179
|
+
* const BuilderWebsitesData = await prisma.builderWebsitesData.delete({
|
|
14033
14180
|
* where: {
|
|
14034
|
-
* // ... filter to delete one
|
|
14181
|
+
* // ... filter to delete one BuilderWebsitesData
|
|
14035
14182
|
* }
|
|
14036
14183
|
* })
|
|
14037
14184
|
*
|
|
14038
14185
|
*/
|
|
14039
|
-
delete<T extends
|
|
14186
|
+
delete<T extends BuilderWebsitesDataDeleteArgs>(args: SelectSubset<T, BuilderWebsitesDataDeleteArgs<ExtArgs>>): Prisma__BuilderWebsitesDataClient<$Result.GetResult<Prisma.$BuilderWebsitesDataPayload<ExtArgs>, T, "delete">, never, ExtArgs>
|
|
14040
14187
|
|
|
14041
14188
|
/**
|
|
14042
|
-
* Update one
|
|
14043
|
-
* @param {
|
|
14189
|
+
* Update one BuilderWebsitesData.
|
|
14190
|
+
* @param {BuilderWebsitesDataUpdateArgs} args - Arguments to update one BuilderWebsitesData.
|
|
14044
14191
|
* @example
|
|
14045
|
-
* // Update one
|
|
14046
|
-
* const
|
|
14192
|
+
* // Update one BuilderWebsitesData
|
|
14193
|
+
* const builderWebsitesData = await prisma.builderWebsitesData.update({
|
|
14047
14194
|
* where: {
|
|
14048
14195
|
* // ... provide filter here
|
|
14049
14196
|
* },
|
|
@@ -14053,30 +14200,30 @@ export namespace Prisma {
|
|
|
14053
14200
|
* })
|
|
14054
14201
|
*
|
|
14055
14202
|
*/
|
|
14056
|
-
update<T extends
|
|
14203
|
+
update<T extends BuilderWebsitesDataUpdateArgs>(args: SelectSubset<T, BuilderWebsitesDataUpdateArgs<ExtArgs>>): Prisma__BuilderWebsitesDataClient<$Result.GetResult<Prisma.$BuilderWebsitesDataPayload<ExtArgs>, T, "update">, never, ExtArgs>
|
|
14057
14204
|
|
|
14058
14205
|
/**
|
|
14059
|
-
* Delete zero or more
|
|
14060
|
-
* @param {
|
|
14206
|
+
* Delete zero or more BuilderWebsitesData.
|
|
14207
|
+
* @param {BuilderWebsitesDataDeleteManyArgs} args - Arguments to filter BuilderWebsitesData to delete.
|
|
14061
14208
|
* @example
|
|
14062
|
-
* // Delete a few
|
|
14063
|
-
* const { count } = await prisma.
|
|
14209
|
+
* // Delete a few BuilderWebsitesData
|
|
14210
|
+
* const { count } = await prisma.builderWebsitesData.deleteMany({
|
|
14064
14211
|
* where: {
|
|
14065
14212
|
* // ... provide filter here
|
|
14066
14213
|
* }
|
|
14067
14214
|
* })
|
|
14068
14215
|
*
|
|
14069
14216
|
*/
|
|
14070
|
-
deleteMany<T extends
|
|
14217
|
+
deleteMany<T extends BuilderWebsitesDataDeleteManyArgs>(args?: SelectSubset<T, BuilderWebsitesDataDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
14071
14218
|
|
|
14072
14219
|
/**
|
|
14073
|
-
* Update zero or more
|
|
14220
|
+
* Update zero or more BuilderWebsitesData.
|
|
14074
14221
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
14075
14222
|
* Read more here: https://pris.ly/d/null-undefined
|
|
14076
|
-
* @param {
|
|
14223
|
+
* @param {BuilderWebsitesDataUpdateManyArgs} args - Arguments to update one or more rows.
|
|
14077
14224
|
* @example
|
|
14078
|
-
* // Update many
|
|
14079
|
-
* const
|
|
14225
|
+
* // Update many BuilderWebsitesData
|
|
14226
|
+
* const builderWebsitesData = await prisma.builderWebsitesData.updateMany({
|
|
14080
14227
|
* where: {
|
|
14081
14228
|
* // ... provide filter here
|
|
14082
14229
|
* },
|
|
@@ -14086,79 +14233,79 @@ export namespace Prisma {
|
|
|
14086
14233
|
* })
|
|
14087
14234
|
*
|
|
14088
14235
|
*/
|
|
14089
|
-
updateMany<T extends
|
|
14236
|
+
updateMany<T extends BuilderWebsitesDataUpdateManyArgs>(args: SelectSubset<T, BuilderWebsitesDataUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
14090
14237
|
|
|
14091
14238
|
/**
|
|
14092
|
-
* Create or update one
|
|
14093
|
-
* @param {
|
|
14239
|
+
* Create or update one BuilderWebsitesData.
|
|
14240
|
+
* @param {BuilderWebsitesDataUpsertArgs} args - Arguments to update or create a BuilderWebsitesData.
|
|
14094
14241
|
* @example
|
|
14095
|
-
* // Update or create a
|
|
14096
|
-
* const
|
|
14242
|
+
* // Update or create a BuilderWebsitesData
|
|
14243
|
+
* const builderWebsitesData = await prisma.builderWebsitesData.upsert({
|
|
14097
14244
|
* create: {
|
|
14098
|
-
* // ... data to create a
|
|
14245
|
+
* // ... data to create a BuilderWebsitesData
|
|
14099
14246
|
* },
|
|
14100
14247
|
* update: {
|
|
14101
14248
|
* // ... in case it already exists, update
|
|
14102
14249
|
* },
|
|
14103
14250
|
* where: {
|
|
14104
|
-
* // ... the filter for the
|
|
14251
|
+
* // ... the filter for the BuilderWebsitesData we want to update
|
|
14105
14252
|
* }
|
|
14106
14253
|
* })
|
|
14107
14254
|
*/
|
|
14108
|
-
upsert<T extends
|
|
14255
|
+
upsert<T extends BuilderWebsitesDataUpsertArgs>(args: SelectSubset<T, BuilderWebsitesDataUpsertArgs<ExtArgs>>): Prisma__BuilderWebsitesDataClient<$Result.GetResult<Prisma.$BuilderWebsitesDataPayload<ExtArgs>, T, "upsert">, never, ExtArgs>
|
|
14109
14256
|
|
|
14110
14257
|
/**
|
|
14111
|
-
* Find zero or more
|
|
14112
|
-
* @param {
|
|
14258
|
+
* Find zero or more BuilderWebsitesData that matches the filter.
|
|
14259
|
+
* @param {BuilderWebsitesDataFindRawArgs} args - Select which filters you would like to apply.
|
|
14113
14260
|
* @example
|
|
14114
|
-
* const
|
|
14261
|
+
* const builderWebsitesData = await prisma.builderWebsitesData.findRaw({
|
|
14115
14262
|
* filter: { age: { $gt: 25 } }
|
|
14116
14263
|
* })
|
|
14117
14264
|
*/
|
|
14118
|
-
findRaw(args?:
|
|
14265
|
+
findRaw(args?: BuilderWebsitesDataFindRawArgs): Prisma.PrismaPromise<JsonObject>
|
|
14119
14266
|
|
|
14120
14267
|
/**
|
|
14121
|
-
* Perform aggregation operations on a
|
|
14122
|
-
* @param {
|
|
14268
|
+
* Perform aggregation operations on a BuilderWebsitesData.
|
|
14269
|
+
* @param {BuilderWebsitesDataAggregateRawArgs} args - Select which aggregations you would like to apply.
|
|
14123
14270
|
* @example
|
|
14124
|
-
* const
|
|
14271
|
+
* const builderWebsitesData = await prisma.builderWebsitesData.aggregateRaw({
|
|
14125
14272
|
* pipeline: [
|
|
14126
14273
|
* { $match: { status: "registered" } },
|
|
14127
14274
|
* { $group: { _id: "$country", total: { $sum: 1 } } }
|
|
14128
14275
|
* ]
|
|
14129
14276
|
* })
|
|
14130
14277
|
*/
|
|
14131
|
-
aggregateRaw(args?:
|
|
14278
|
+
aggregateRaw(args?: BuilderWebsitesDataAggregateRawArgs): Prisma.PrismaPromise<JsonObject>
|
|
14132
14279
|
|
|
14133
14280
|
|
|
14134
14281
|
/**
|
|
14135
|
-
* Count the number of
|
|
14282
|
+
* Count the number of BuilderWebsitesData.
|
|
14136
14283
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
14137
14284
|
* Read more here: https://pris.ly/d/null-undefined
|
|
14138
|
-
* @param {
|
|
14285
|
+
* @param {BuilderWebsitesDataCountArgs} args - Arguments to filter BuilderWebsitesData to count.
|
|
14139
14286
|
* @example
|
|
14140
|
-
* // Count the number of
|
|
14141
|
-
* const count = await prisma.
|
|
14287
|
+
* // Count the number of BuilderWebsitesData
|
|
14288
|
+
* const count = await prisma.builderWebsitesData.count({
|
|
14142
14289
|
* where: {
|
|
14143
|
-
* // ... the filter for the
|
|
14290
|
+
* // ... the filter for the BuilderWebsitesData we want to count
|
|
14144
14291
|
* }
|
|
14145
14292
|
* })
|
|
14146
14293
|
**/
|
|
14147
|
-
count<T extends
|
|
14148
|
-
args?: Subset<T,
|
|
14294
|
+
count<T extends BuilderWebsitesDataCountArgs>(
|
|
14295
|
+
args?: Subset<T, BuilderWebsitesDataCountArgs>,
|
|
14149
14296
|
): Prisma.PrismaPromise<
|
|
14150
14297
|
T extends $Utils.Record<'select', any>
|
|
14151
14298
|
? T['select'] extends true
|
|
14152
14299
|
? number
|
|
14153
|
-
: GetScalarType<T['select'],
|
|
14300
|
+
: GetScalarType<T['select'], BuilderWebsitesDataCountAggregateOutputType>
|
|
14154
14301
|
: number
|
|
14155
14302
|
>
|
|
14156
14303
|
|
|
14157
14304
|
/**
|
|
14158
|
-
* Allows you to perform aggregations operations on a
|
|
14305
|
+
* Allows you to perform aggregations operations on a BuilderWebsitesData.
|
|
14159
14306
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
14160
14307
|
* Read more here: https://pris.ly/d/null-undefined
|
|
14161
|
-
* @param {
|
|
14308
|
+
* @param {BuilderWebsitesDataAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
|
|
14162
14309
|
* @example
|
|
14163
14310
|
* // Ordered by age ascending
|
|
14164
14311
|
* // Where email contains prisma.io
|
|
@@ -14178,13 +14325,13 @@ export namespace Prisma {
|
|
|
14178
14325
|
* take: 10,
|
|
14179
14326
|
* })
|
|
14180
14327
|
**/
|
|
14181
|
-
aggregate<T extends
|
|
14328
|
+
aggregate<T extends BuilderWebsitesDataAggregateArgs>(args: Subset<T, BuilderWebsitesDataAggregateArgs>): Prisma.PrismaPromise<GetBuilderWebsitesDataAggregateType<T>>
|
|
14182
14329
|
|
|
14183
14330
|
/**
|
|
14184
|
-
* Group by
|
|
14331
|
+
* Group by BuilderWebsitesData.
|
|
14185
14332
|
* Note, that providing `undefined` is treated as the value not being there.
|
|
14186
14333
|
* Read more here: https://pris.ly/d/null-undefined
|
|
14187
|
-
* @param {
|
|
14334
|
+
* @param {BuilderWebsitesDataGroupByArgs} args - Group by arguments.
|
|
14188
14335
|
* @example
|
|
14189
14336
|
* // Group by city, order by createdAt, get count
|
|
14190
14337
|
* const result = await prisma.user.groupBy({
|
|
@@ -14199,14 +14346,980 @@ export namespace Prisma {
|
|
|
14199
14346
|
*
|
|
14200
14347
|
**/
|
|
14201
14348
|
groupBy<
|
|
14202
|
-
T extends
|
|
14349
|
+
T extends BuilderWebsitesDataGroupByArgs,
|
|
14203
14350
|
HasSelectOrTake extends Or<
|
|
14204
14351
|
Extends<'skip', Keys<T>>,
|
|
14205
14352
|
Extends<'take', Keys<T>>
|
|
14206
14353
|
>,
|
|
14207
14354
|
OrderByArg extends True extends HasSelectOrTake
|
|
14208
|
-
? { orderBy:
|
|
14209
|
-
: { orderBy?:
|
|
14355
|
+
? { orderBy: BuilderWebsitesDataGroupByArgs['orderBy'] }
|
|
14356
|
+
: { orderBy?: BuilderWebsitesDataGroupByArgs['orderBy'] },
|
|
14357
|
+
OrderFields extends ExcludeUnderscoreKeys<Keys<MaybeTupleToUnion<T['orderBy']>>>,
|
|
14358
|
+
ByFields extends MaybeTupleToUnion<T['by']>,
|
|
14359
|
+
ByValid extends Has<ByFields, OrderFields>,
|
|
14360
|
+
HavingFields extends GetHavingFields<T['having']>,
|
|
14361
|
+
HavingValid extends Has<ByFields, HavingFields>,
|
|
14362
|
+
ByEmpty extends T['by'] extends never[] ? True : False,
|
|
14363
|
+
InputErrors extends ByEmpty extends True
|
|
14364
|
+
? `Error: "by" must not be empty.`
|
|
14365
|
+
: HavingValid extends False
|
|
14366
|
+
? {
|
|
14367
|
+
[P in HavingFields]: P extends ByFields
|
|
14368
|
+
? never
|
|
14369
|
+
: P extends string
|
|
14370
|
+
? `Error: Field "${P}" used in "having" needs to be provided in "by".`
|
|
14371
|
+
: [
|
|
14372
|
+
Error,
|
|
14373
|
+
'Field ',
|
|
14374
|
+
P,
|
|
14375
|
+
` in "having" needs to be provided in "by"`,
|
|
14376
|
+
]
|
|
14377
|
+
}[HavingFields]
|
|
14378
|
+
: 'take' extends Keys<T>
|
|
14379
|
+
? 'orderBy' extends Keys<T>
|
|
14380
|
+
? ByValid extends True
|
|
14381
|
+
? {}
|
|
14382
|
+
: {
|
|
14383
|
+
[P in OrderFields]: P extends ByFields
|
|
14384
|
+
? never
|
|
14385
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
14386
|
+
}[OrderFields]
|
|
14387
|
+
: 'Error: If you provide "take", you also need to provide "orderBy"'
|
|
14388
|
+
: 'skip' extends Keys<T>
|
|
14389
|
+
? 'orderBy' extends Keys<T>
|
|
14390
|
+
? ByValid extends True
|
|
14391
|
+
? {}
|
|
14392
|
+
: {
|
|
14393
|
+
[P in OrderFields]: P extends ByFields
|
|
14394
|
+
? never
|
|
14395
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
14396
|
+
}[OrderFields]
|
|
14397
|
+
: 'Error: If you provide "skip", you also need to provide "orderBy"'
|
|
14398
|
+
: ByValid extends True
|
|
14399
|
+
? {}
|
|
14400
|
+
: {
|
|
14401
|
+
[P in OrderFields]: P extends ByFields
|
|
14402
|
+
? never
|
|
14403
|
+
: `Error: Field "${P}" in "orderBy" needs to be provided in "by"`
|
|
14404
|
+
}[OrderFields]
|
|
14405
|
+
>(args: SubsetIntersection<T, BuilderWebsitesDataGroupByArgs, OrderByArg> & InputErrors): {} extends InputErrors ? GetBuilderWebsitesDataGroupByPayload<T> : Prisma.PrismaPromise<InputErrors>
|
|
14406
|
+
/**
|
|
14407
|
+
* Fields of the BuilderWebsitesData model
|
|
14408
|
+
*/
|
|
14409
|
+
readonly fields: BuilderWebsitesDataFieldRefs;
|
|
14410
|
+
}
|
|
14411
|
+
|
|
14412
|
+
/**
|
|
14413
|
+
* The delegate class that acts as a "Promise-like" for BuilderWebsitesData.
|
|
14414
|
+
* Why is this prefixed with `Prisma__`?
|
|
14415
|
+
* Because we want to prevent naming conflicts as mentioned in
|
|
14416
|
+
* https://github.com/prisma/prisma-client-js/issues/707
|
|
14417
|
+
*/
|
|
14418
|
+
export interface Prisma__BuilderWebsitesDataClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> extends Prisma.PrismaPromise<T> {
|
|
14419
|
+
readonly [Symbol.toStringTag]: "PrismaPromise"
|
|
14420
|
+
builder<T extends BuilderWebsitesData$builderArgs<ExtArgs> = {}>(args?: Subset<T, BuilderWebsitesData$builderArgs<ExtArgs>>): Prisma__UserClient<$Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, "findUniqueOrThrow"> | null, null, ExtArgs>
|
|
14421
|
+
/**
|
|
14422
|
+
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
14423
|
+
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
14424
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
14425
|
+
* @returns A Promise for the completion of which ever callback is executed.
|
|
14426
|
+
*/
|
|
14427
|
+
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>
|
|
14428
|
+
/**
|
|
14429
|
+
* Attaches a callback for only the rejection of the Promise.
|
|
14430
|
+
* @param onrejected The callback to execute when the Promise is rejected.
|
|
14431
|
+
* @returns A Promise for the completion of the callback.
|
|
14432
|
+
*/
|
|
14433
|
+
catch<TResult = never>(onrejected?: ((reason: any) => TResult | PromiseLike<TResult>) | undefined | null): $Utils.JsPromise<T | TResult>
|
|
14434
|
+
/**
|
|
14435
|
+
* Attaches a callback that is invoked when the Promise is settled (fulfilled or rejected). The
|
|
14436
|
+
* resolved value cannot be modified from the callback.
|
|
14437
|
+
* @param onfinally The callback to execute when the Promise is settled (fulfilled or rejected).
|
|
14438
|
+
* @returns A Promise for the completion of the callback.
|
|
14439
|
+
*/
|
|
14440
|
+
finally(onfinally?: (() => void) | undefined | null): $Utils.JsPromise<T>
|
|
14441
|
+
}
|
|
14442
|
+
|
|
14443
|
+
|
|
14444
|
+
|
|
14445
|
+
|
|
14446
|
+
/**
|
|
14447
|
+
* Fields of the BuilderWebsitesData model
|
|
14448
|
+
*/
|
|
14449
|
+
interface BuilderWebsitesDataFieldRefs {
|
|
14450
|
+
readonly id: FieldRef<"BuilderWebsitesData", 'String'>
|
|
14451
|
+
readonly builderId: FieldRef<"BuilderWebsitesData", 'String'>
|
|
14452
|
+
readonly sourceType: FieldRef<"BuilderWebsitesData", 'BuilderWebsitesSourceType'>
|
|
14453
|
+
readonly sourceUrl: FieldRef<"BuilderWebsitesData", 'String'>
|
|
14454
|
+
readonly error: FieldRef<"BuilderWebsitesData", 'String'>
|
|
14455
|
+
readonly dataType: FieldRef<"BuilderWebsitesData", 'BuilderWebsitesSourceDataType'>
|
|
14456
|
+
readonly data: FieldRef<"BuilderWebsitesData", 'String'>
|
|
14457
|
+
readonly createdAt: FieldRef<"BuilderWebsitesData", 'DateTime'>
|
|
14458
|
+
readonly updatedAt: FieldRef<"BuilderWebsitesData", 'DateTime'>
|
|
14459
|
+
}
|
|
14460
|
+
|
|
14461
|
+
|
|
14462
|
+
// Custom InputTypes
|
|
14463
|
+
/**
|
|
14464
|
+
* BuilderWebsitesData findUnique
|
|
14465
|
+
*/
|
|
14466
|
+
export type BuilderWebsitesDataFindUniqueArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
14467
|
+
/**
|
|
14468
|
+
* Select specific fields to fetch from the BuilderWebsitesData
|
|
14469
|
+
*/
|
|
14470
|
+
select?: BuilderWebsitesDataSelect<ExtArgs> | null
|
|
14471
|
+
/**
|
|
14472
|
+
* Choose, which related nodes to fetch as well
|
|
14473
|
+
*/
|
|
14474
|
+
include?: BuilderWebsitesDataInclude<ExtArgs> | null
|
|
14475
|
+
/**
|
|
14476
|
+
* Filter, which BuilderWebsitesData to fetch.
|
|
14477
|
+
*/
|
|
14478
|
+
where: BuilderWebsitesDataWhereUniqueInput
|
|
14479
|
+
}
|
|
14480
|
+
|
|
14481
|
+
/**
|
|
14482
|
+
* BuilderWebsitesData findUniqueOrThrow
|
|
14483
|
+
*/
|
|
14484
|
+
export type BuilderWebsitesDataFindUniqueOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
14485
|
+
/**
|
|
14486
|
+
* Select specific fields to fetch from the BuilderWebsitesData
|
|
14487
|
+
*/
|
|
14488
|
+
select?: BuilderWebsitesDataSelect<ExtArgs> | null
|
|
14489
|
+
/**
|
|
14490
|
+
* Choose, which related nodes to fetch as well
|
|
14491
|
+
*/
|
|
14492
|
+
include?: BuilderWebsitesDataInclude<ExtArgs> | null
|
|
14493
|
+
/**
|
|
14494
|
+
* Filter, which BuilderWebsitesData to fetch.
|
|
14495
|
+
*/
|
|
14496
|
+
where: BuilderWebsitesDataWhereUniqueInput
|
|
14497
|
+
}
|
|
14498
|
+
|
|
14499
|
+
/**
|
|
14500
|
+
* BuilderWebsitesData findFirst
|
|
14501
|
+
*/
|
|
14502
|
+
export type BuilderWebsitesDataFindFirstArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
14503
|
+
/**
|
|
14504
|
+
* Select specific fields to fetch from the BuilderWebsitesData
|
|
14505
|
+
*/
|
|
14506
|
+
select?: BuilderWebsitesDataSelect<ExtArgs> | null
|
|
14507
|
+
/**
|
|
14508
|
+
* Choose, which related nodes to fetch as well
|
|
14509
|
+
*/
|
|
14510
|
+
include?: BuilderWebsitesDataInclude<ExtArgs> | null
|
|
14511
|
+
/**
|
|
14512
|
+
* Filter, which BuilderWebsitesData to fetch.
|
|
14513
|
+
*/
|
|
14514
|
+
where?: BuilderWebsitesDataWhereInput
|
|
14515
|
+
/**
|
|
14516
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
14517
|
+
*
|
|
14518
|
+
* Determine the order of BuilderWebsitesData to fetch.
|
|
14519
|
+
*/
|
|
14520
|
+
orderBy?: BuilderWebsitesDataOrderByWithRelationInput | BuilderWebsitesDataOrderByWithRelationInput[]
|
|
14521
|
+
/**
|
|
14522
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
14523
|
+
*
|
|
14524
|
+
* Sets the position for searching for BuilderWebsitesData.
|
|
14525
|
+
*/
|
|
14526
|
+
cursor?: BuilderWebsitesDataWhereUniqueInput
|
|
14527
|
+
/**
|
|
14528
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
14529
|
+
*
|
|
14530
|
+
* Take `±n` BuilderWebsitesData from the position of the cursor.
|
|
14531
|
+
*/
|
|
14532
|
+
take?: number
|
|
14533
|
+
/**
|
|
14534
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
14535
|
+
*
|
|
14536
|
+
* Skip the first `n` BuilderWebsitesData.
|
|
14537
|
+
*/
|
|
14538
|
+
skip?: number
|
|
14539
|
+
/**
|
|
14540
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
14541
|
+
*
|
|
14542
|
+
* Filter by unique combinations of BuilderWebsitesData.
|
|
14543
|
+
*/
|
|
14544
|
+
distinct?: BuilderWebsitesDataScalarFieldEnum | BuilderWebsitesDataScalarFieldEnum[]
|
|
14545
|
+
}
|
|
14546
|
+
|
|
14547
|
+
/**
|
|
14548
|
+
* BuilderWebsitesData findFirstOrThrow
|
|
14549
|
+
*/
|
|
14550
|
+
export type BuilderWebsitesDataFindFirstOrThrowArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
14551
|
+
/**
|
|
14552
|
+
* Select specific fields to fetch from the BuilderWebsitesData
|
|
14553
|
+
*/
|
|
14554
|
+
select?: BuilderWebsitesDataSelect<ExtArgs> | null
|
|
14555
|
+
/**
|
|
14556
|
+
* Choose, which related nodes to fetch as well
|
|
14557
|
+
*/
|
|
14558
|
+
include?: BuilderWebsitesDataInclude<ExtArgs> | null
|
|
14559
|
+
/**
|
|
14560
|
+
* Filter, which BuilderWebsitesData to fetch.
|
|
14561
|
+
*/
|
|
14562
|
+
where?: BuilderWebsitesDataWhereInput
|
|
14563
|
+
/**
|
|
14564
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
14565
|
+
*
|
|
14566
|
+
* Determine the order of BuilderWebsitesData to fetch.
|
|
14567
|
+
*/
|
|
14568
|
+
orderBy?: BuilderWebsitesDataOrderByWithRelationInput | BuilderWebsitesDataOrderByWithRelationInput[]
|
|
14569
|
+
/**
|
|
14570
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
14571
|
+
*
|
|
14572
|
+
* Sets the position for searching for BuilderWebsitesData.
|
|
14573
|
+
*/
|
|
14574
|
+
cursor?: BuilderWebsitesDataWhereUniqueInput
|
|
14575
|
+
/**
|
|
14576
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
14577
|
+
*
|
|
14578
|
+
* Take `±n` BuilderWebsitesData from the position of the cursor.
|
|
14579
|
+
*/
|
|
14580
|
+
take?: number
|
|
14581
|
+
/**
|
|
14582
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
14583
|
+
*
|
|
14584
|
+
* Skip the first `n` BuilderWebsitesData.
|
|
14585
|
+
*/
|
|
14586
|
+
skip?: number
|
|
14587
|
+
/**
|
|
14588
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/distinct Distinct Docs}
|
|
14589
|
+
*
|
|
14590
|
+
* Filter by unique combinations of BuilderWebsitesData.
|
|
14591
|
+
*/
|
|
14592
|
+
distinct?: BuilderWebsitesDataScalarFieldEnum | BuilderWebsitesDataScalarFieldEnum[]
|
|
14593
|
+
}
|
|
14594
|
+
|
|
14595
|
+
/**
|
|
14596
|
+
* BuilderWebsitesData findMany
|
|
14597
|
+
*/
|
|
14598
|
+
export type BuilderWebsitesDataFindManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
14599
|
+
/**
|
|
14600
|
+
* Select specific fields to fetch from the BuilderWebsitesData
|
|
14601
|
+
*/
|
|
14602
|
+
select?: BuilderWebsitesDataSelect<ExtArgs> | null
|
|
14603
|
+
/**
|
|
14604
|
+
* Choose, which related nodes to fetch as well
|
|
14605
|
+
*/
|
|
14606
|
+
include?: BuilderWebsitesDataInclude<ExtArgs> | null
|
|
14607
|
+
/**
|
|
14608
|
+
* Filter, which BuilderWebsitesData to fetch.
|
|
14609
|
+
*/
|
|
14610
|
+
where?: BuilderWebsitesDataWhereInput
|
|
14611
|
+
/**
|
|
14612
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
14613
|
+
*
|
|
14614
|
+
* Determine the order of BuilderWebsitesData to fetch.
|
|
14615
|
+
*/
|
|
14616
|
+
orderBy?: BuilderWebsitesDataOrderByWithRelationInput | BuilderWebsitesDataOrderByWithRelationInput[]
|
|
14617
|
+
/**
|
|
14618
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
14619
|
+
*
|
|
14620
|
+
* Sets the position for listing BuilderWebsitesData.
|
|
14621
|
+
*/
|
|
14622
|
+
cursor?: BuilderWebsitesDataWhereUniqueInput
|
|
14623
|
+
/**
|
|
14624
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
14625
|
+
*
|
|
14626
|
+
* Take `±n` BuilderWebsitesData from the position of the cursor.
|
|
14627
|
+
*/
|
|
14628
|
+
take?: number
|
|
14629
|
+
/**
|
|
14630
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
14631
|
+
*
|
|
14632
|
+
* Skip the first `n` BuilderWebsitesData.
|
|
14633
|
+
*/
|
|
14634
|
+
skip?: number
|
|
14635
|
+
distinct?: BuilderWebsitesDataScalarFieldEnum | BuilderWebsitesDataScalarFieldEnum[]
|
|
14636
|
+
}
|
|
14637
|
+
|
|
14638
|
+
/**
|
|
14639
|
+
* BuilderWebsitesData create
|
|
14640
|
+
*/
|
|
14641
|
+
export type BuilderWebsitesDataCreateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
14642
|
+
/**
|
|
14643
|
+
* Select specific fields to fetch from the BuilderWebsitesData
|
|
14644
|
+
*/
|
|
14645
|
+
select?: BuilderWebsitesDataSelect<ExtArgs> | null
|
|
14646
|
+
/**
|
|
14647
|
+
* Choose, which related nodes to fetch as well
|
|
14648
|
+
*/
|
|
14649
|
+
include?: BuilderWebsitesDataInclude<ExtArgs> | null
|
|
14650
|
+
/**
|
|
14651
|
+
* The data needed to create a BuilderWebsitesData.
|
|
14652
|
+
*/
|
|
14653
|
+
data: XOR<BuilderWebsitesDataCreateInput, BuilderWebsitesDataUncheckedCreateInput>
|
|
14654
|
+
}
|
|
14655
|
+
|
|
14656
|
+
/**
|
|
14657
|
+
* BuilderWebsitesData createMany
|
|
14658
|
+
*/
|
|
14659
|
+
export type BuilderWebsitesDataCreateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
14660
|
+
/**
|
|
14661
|
+
* The data used to create many BuilderWebsitesData.
|
|
14662
|
+
*/
|
|
14663
|
+
data: BuilderWebsitesDataCreateManyInput | BuilderWebsitesDataCreateManyInput[]
|
|
14664
|
+
}
|
|
14665
|
+
|
|
14666
|
+
/**
|
|
14667
|
+
* BuilderWebsitesData update
|
|
14668
|
+
*/
|
|
14669
|
+
export type BuilderWebsitesDataUpdateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
14670
|
+
/**
|
|
14671
|
+
* Select specific fields to fetch from the BuilderWebsitesData
|
|
14672
|
+
*/
|
|
14673
|
+
select?: BuilderWebsitesDataSelect<ExtArgs> | null
|
|
14674
|
+
/**
|
|
14675
|
+
* Choose, which related nodes to fetch as well
|
|
14676
|
+
*/
|
|
14677
|
+
include?: BuilderWebsitesDataInclude<ExtArgs> | null
|
|
14678
|
+
/**
|
|
14679
|
+
* The data needed to update a BuilderWebsitesData.
|
|
14680
|
+
*/
|
|
14681
|
+
data: XOR<BuilderWebsitesDataUpdateInput, BuilderWebsitesDataUncheckedUpdateInput>
|
|
14682
|
+
/**
|
|
14683
|
+
* Choose, which BuilderWebsitesData to update.
|
|
14684
|
+
*/
|
|
14685
|
+
where: BuilderWebsitesDataWhereUniqueInput
|
|
14686
|
+
}
|
|
14687
|
+
|
|
14688
|
+
/**
|
|
14689
|
+
* BuilderWebsitesData updateMany
|
|
14690
|
+
*/
|
|
14691
|
+
export type BuilderWebsitesDataUpdateManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
14692
|
+
/**
|
|
14693
|
+
* The data used to update BuilderWebsitesData.
|
|
14694
|
+
*/
|
|
14695
|
+
data: XOR<BuilderWebsitesDataUpdateManyMutationInput, BuilderWebsitesDataUncheckedUpdateManyInput>
|
|
14696
|
+
/**
|
|
14697
|
+
* Filter which BuilderWebsitesData to update
|
|
14698
|
+
*/
|
|
14699
|
+
where?: BuilderWebsitesDataWhereInput
|
|
14700
|
+
}
|
|
14701
|
+
|
|
14702
|
+
/**
|
|
14703
|
+
* BuilderWebsitesData upsert
|
|
14704
|
+
*/
|
|
14705
|
+
export type BuilderWebsitesDataUpsertArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
14706
|
+
/**
|
|
14707
|
+
* Select specific fields to fetch from the BuilderWebsitesData
|
|
14708
|
+
*/
|
|
14709
|
+
select?: BuilderWebsitesDataSelect<ExtArgs> | null
|
|
14710
|
+
/**
|
|
14711
|
+
* Choose, which related nodes to fetch as well
|
|
14712
|
+
*/
|
|
14713
|
+
include?: BuilderWebsitesDataInclude<ExtArgs> | null
|
|
14714
|
+
/**
|
|
14715
|
+
* The filter to search for the BuilderWebsitesData to update in case it exists.
|
|
14716
|
+
*/
|
|
14717
|
+
where: BuilderWebsitesDataWhereUniqueInput
|
|
14718
|
+
/**
|
|
14719
|
+
* In case the BuilderWebsitesData found by the `where` argument doesn't exist, create a new BuilderWebsitesData with this data.
|
|
14720
|
+
*/
|
|
14721
|
+
create: XOR<BuilderWebsitesDataCreateInput, BuilderWebsitesDataUncheckedCreateInput>
|
|
14722
|
+
/**
|
|
14723
|
+
* In case the BuilderWebsitesData was found with the provided `where` argument, update it with this data.
|
|
14724
|
+
*/
|
|
14725
|
+
update: XOR<BuilderWebsitesDataUpdateInput, BuilderWebsitesDataUncheckedUpdateInput>
|
|
14726
|
+
}
|
|
14727
|
+
|
|
14728
|
+
/**
|
|
14729
|
+
* BuilderWebsitesData delete
|
|
14730
|
+
*/
|
|
14731
|
+
export type BuilderWebsitesDataDeleteArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
14732
|
+
/**
|
|
14733
|
+
* Select specific fields to fetch from the BuilderWebsitesData
|
|
14734
|
+
*/
|
|
14735
|
+
select?: BuilderWebsitesDataSelect<ExtArgs> | null
|
|
14736
|
+
/**
|
|
14737
|
+
* Choose, which related nodes to fetch as well
|
|
14738
|
+
*/
|
|
14739
|
+
include?: BuilderWebsitesDataInclude<ExtArgs> | null
|
|
14740
|
+
/**
|
|
14741
|
+
* Filter which BuilderWebsitesData to delete.
|
|
14742
|
+
*/
|
|
14743
|
+
where: BuilderWebsitesDataWhereUniqueInput
|
|
14744
|
+
}
|
|
14745
|
+
|
|
14746
|
+
/**
|
|
14747
|
+
* BuilderWebsitesData deleteMany
|
|
14748
|
+
*/
|
|
14749
|
+
export type BuilderWebsitesDataDeleteManyArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
14750
|
+
/**
|
|
14751
|
+
* Filter which BuilderWebsitesData to delete
|
|
14752
|
+
*/
|
|
14753
|
+
where?: BuilderWebsitesDataWhereInput
|
|
14754
|
+
}
|
|
14755
|
+
|
|
14756
|
+
/**
|
|
14757
|
+
* BuilderWebsitesData findRaw
|
|
14758
|
+
*/
|
|
14759
|
+
export type BuilderWebsitesDataFindRawArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
14760
|
+
/**
|
|
14761
|
+
* The query predicate filter. If unspecified, then all documents in the collection will match the predicate. ${@link https://docs.mongodb.com/manual/reference/operator/query MongoDB Docs}.
|
|
14762
|
+
*/
|
|
14763
|
+
filter?: InputJsonValue
|
|
14764
|
+
/**
|
|
14765
|
+
* Additional options to pass to the `find` command ${@link https://docs.mongodb.com/manual/reference/command/find/#command-fields MongoDB Docs}.
|
|
14766
|
+
*/
|
|
14767
|
+
options?: InputJsonValue
|
|
14768
|
+
}
|
|
14769
|
+
|
|
14770
|
+
/**
|
|
14771
|
+
* BuilderWebsitesData aggregateRaw
|
|
14772
|
+
*/
|
|
14773
|
+
export type BuilderWebsitesDataAggregateRawArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
14774
|
+
/**
|
|
14775
|
+
* An array of aggregation stages to process and transform the document stream via the aggregation pipeline. ${@link https://docs.mongodb.com/manual/reference/operator/aggregation-pipeline MongoDB Docs}.
|
|
14776
|
+
*/
|
|
14777
|
+
pipeline?: InputJsonValue[]
|
|
14778
|
+
/**
|
|
14779
|
+
* Additional options to pass to the `aggregate` command ${@link https://docs.mongodb.com/manual/reference/command/aggregate/#command-fields MongoDB Docs}.
|
|
14780
|
+
*/
|
|
14781
|
+
options?: InputJsonValue
|
|
14782
|
+
}
|
|
14783
|
+
|
|
14784
|
+
/**
|
|
14785
|
+
* BuilderWebsitesData.builder
|
|
14786
|
+
*/
|
|
14787
|
+
export type BuilderWebsitesData$builderArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
14788
|
+
/**
|
|
14789
|
+
* Select specific fields to fetch from the User
|
|
14790
|
+
*/
|
|
14791
|
+
select?: UserSelect<ExtArgs> | null
|
|
14792
|
+
/**
|
|
14793
|
+
* Choose, which related nodes to fetch as well
|
|
14794
|
+
*/
|
|
14795
|
+
include?: UserInclude<ExtArgs> | null
|
|
14796
|
+
where?: UserWhereInput
|
|
14797
|
+
}
|
|
14798
|
+
|
|
14799
|
+
/**
|
|
14800
|
+
* BuilderWebsitesData without action
|
|
14801
|
+
*/
|
|
14802
|
+
export type BuilderWebsitesDataDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
14803
|
+
/**
|
|
14804
|
+
* Select specific fields to fetch from the BuilderWebsitesData
|
|
14805
|
+
*/
|
|
14806
|
+
select?: BuilderWebsitesDataSelect<ExtArgs> | null
|
|
14807
|
+
/**
|
|
14808
|
+
* Choose, which related nodes to fetch as well
|
|
14809
|
+
*/
|
|
14810
|
+
include?: BuilderWebsitesDataInclude<ExtArgs> | null
|
|
14811
|
+
}
|
|
14812
|
+
|
|
14813
|
+
|
|
14814
|
+
/**
|
|
14815
|
+
* Model Calendar
|
|
14816
|
+
*/
|
|
14817
|
+
|
|
14818
|
+
export type AggregateCalendar = {
|
|
14819
|
+
_count: CalendarCountAggregateOutputType | null
|
|
14820
|
+
_min: CalendarMinAggregateOutputType | null
|
|
14821
|
+
_max: CalendarMaxAggregateOutputType | null
|
|
14822
|
+
}
|
|
14823
|
+
|
|
14824
|
+
export type CalendarMinAggregateOutputType = {
|
|
14825
|
+
id: string | null
|
|
14826
|
+
calendarId: string | null
|
|
14827
|
+
provider: $Enums.CalendarProvider | null
|
|
14828
|
+
userId: string | null
|
|
14829
|
+
createdAt: Date | null
|
|
14830
|
+
updatedAt: Date | null
|
|
14831
|
+
}
|
|
14832
|
+
|
|
14833
|
+
export type CalendarMaxAggregateOutputType = {
|
|
14834
|
+
id: string | null
|
|
14835
|
+
calendarId: string | null
|
|
14836
|
+
provider: $Enums.CalendarProvider | null
|
|
14837
|
+
userId: string | null
|
|
14838
|
+
createdAt: Date | null
|
|
14839
|
+
updatedAt: Date | null
|
|
14840
|
+
}
|
|
14841
|
+
|
|
14842
|
+
export type CalendarCountAggregateOutputType = {
|
|
14843
|
+
id: number
|
|
14844
|
+
calendarId: number
|
|
14845
|
+
provider: number
|
|
14846
|
+
userId: number
|
|
14847
|
+
createdAt: number
|
|
14848
|
+
updatedAt: number
|
|
14849
|
+
_all: number
|
|
14850
|
+
}
|
|
14851
|
+
|
|
14852
|
+
|
|
14853
|
+
export type CalendarMinAggregateInputType = {
|
|
14854
|
+
id?: true
|
|
14855
|
+
calendarId?: true
|
|
14856
|
+
provider?: true
|
|
14857
|
+
userId?: true
|
|
14858
|
+
createdAt?: true
|
|
14859
|
+
updatedAt?: true
|
|
14860
|
+
}
|
|
14861
|
+
|
|
14862
|
+
export type CalendarMaxAggregateInputType = {
|
|
14863
|
+
id?: true
|
|
14864
|
+
calendarId?: true
|
|
14865
|
+
provider?: true
|
|
14866
|
+
userId?: true
|
|
14867
|
+
createdAt?: true
|
|
14868
|
+
updatedAt?: true
|
|
14869
|
+
}
|
|
14870
|
+
|
|
14871
|
+
export type CalendarCountAggregateInputType = {
|
|
14872
|
+
id?: true
|
|
14873
|
+
calendarId?: true
|
|
14874
|
+
provider?: true
|
|
14875
|
+
userId?: true
|
|
14876
|
+
createdAt?: true
|
|
14877
|
+
updatedAt?: true
|
|
14878
|
+
_all?: true
|
|
14879
|
+
}
|
|
14880
|
+
|
|
14881
|
+
export type CalendarAggregateArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
14882
|
+
/**
|
|
14883
|
+
* Filter which Calendar to aggregate.
|
|
14884
|
+
*/
|
|
14885
|
+
where?: CalendarWhereInput
|
|
14886
|
+
/**
|
|
14887
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/sorting Sorting Docs}
|
|
14888
|
+
*
|
|
14889
|
+
* Determine the order of Calendars to fetch.
|
|
14890
|
+
*/
|
|
14891
|
+
orderBy?: CalendarOrderByWithRelationInput | CalendarOrderByWithRelationInput[]
|
|
14892
|
+
/**
|
|
14893
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination#cursor-based-pagination Cursor Docs}
|
|
14894
|
+
*
|
|
14895
|
+
* Sets the start position
|
|
14896
|
+
*/
|
|
14897
|
+
cursor?: CalendarWhereUniqueInput
|
|
14898
|
+
/**
|
|
14899
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
14900
|
+
*
|
|
14901
|
+
* Take `±n` Calendars from the position of the cursor.
|
|
14902
|
+
*/
|
|
14903
|
+
take?: number
|
|
14904
|
+
/**
|
|
14905
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/pagination Pagination Docs}
|
|
14906
|
+
*
|
|
14907
|
+
* Skip the first `n` Calendars.
|
|
14908
|
+
*/
|
|
14909
|
+
skip?: number
|
|
14910
|
+
/**
|
|
14911
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
14912
|
+
*
|
|
14913
|
+
* Count returned Calendars
|
|
14914
|
+
**/
|
|
14915
|
+
_count?: true | CalendarCountAggregateInputType
|
|
14916
|
+
/**
|
|
14917
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
14918
|
+
*
|
|
14919
|
+
* Select which fields to find the minimum value
|
|
14920
|
+
**/
|
|
14921
|
+
_min?: CalendarMinAggregateInputType
|
|
14922
|
+
/**
|
|
14923
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
14924
|
+
*
|
|
14925
|
+
* Select which fields to find the maximum value
|
|
14926
|
+
**/
|
|
14927
|
+
_max?: CalendarMaxAggregateInputType
|
|
14928
|
+
}
|
|
14929
|
+
|
|
14930
|
+
export type GetCalendarAggregateType<T extends CalendarAggregateArgs> = {
|
|
14931
|
+
[P in keyof T & keyof AggregateCalendar]: P extends '_count' | 'count'
|
|
14932
|
+
? T[P] extends true
|
|
14933
|
+
? number
|
|
14934
|
+
: GetScalarType<T[P], AggregateCalendar[P]>
|
|
14935
|
+
: GetScalarType<T[P], AggregateCalendar[P]>
|
|
14936
|
+
}
|
|
14937
|
+
|
|
14938
|
+
|
|
14939
|
+
|
|
14940
|
+
|
|
14941
|
+
export type CalendarGroupByArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
14942
|
+
where?: CalendarWhereInput
|
|
14943
|
+
orderBy?: CalendarOrderByWithAggregationInput | CalendarOrderByWithAggregationInput[]
|
|
14944
|
+
by: CalendarScalarFieldEnum[] | CalendarScalarFieldEnum
|
|
14945
|
+
having?: CalendarScalarWhereWithAggregatesInput
|
|
14946
|
+
take?: number
|
|
14947
|
+
skip?: number
|
|
14948
|
+
_count?: CalendarCountAggregateInputType | true
|
|
14949
|
+
_min?: CalendarMinAggregateInputType
|
|
14950
|
+
_max?: CalendarMaxAggregateInputType
|
|
14951
|
+
}
|
|
14952
|
+
|
|
14953
|
+
export type CalendarGroupByOutputType = {
|
|
14954
|
+
id: string
|
|
14955
|
+
calendarId: string
|
|
14956
|
+
provider: $Enums.CalendarProvider
|
|
14957
|
+
userId: string
|
|
14958
|
+
createdAt: Date
|
|
14959
|
+
updatedAt: Date
|
|
14960
|
+
_count: CalendarCountAggregateOutputType | null
|
|
14961
|
+
_min: CalendarMinAggregateOutputType | null
|
|
14962
|
+
_max: CalendarMaxAggregateOutputType | null
|
|
14963
|
+
}
|
|
14964
|
+
|
|
14965
|
+
type GetCalendarGroupByPayload<T extends CalendarGroupByArgs> = Prisma.PrismaPromise<
|
|
14966
|
+
Array<
|
|
14967
|
+
PickEnumerable<CalendarGroupByOutputType, T['by']> &
|
|
14968
|
+
{
|
|
14969
|
+
[P in ((keyof T) & (keyof CalendarGroupByOutputType))]: P extends '_count'
|
|
14970
|
+
? T[P] extends boolean
|
|
14971
|
+
? number
|
|
14972
|
+
: GetScalarType<T[P], CalendarGroupByOutputType[P]>
|
|
14973
|
+
: GetScalarType<T[P], CalendarGroupByOutputType[P]>
|
|
14974
|
+
}
|
|
14975
|
+
>
|
|
14976
|
+
>
|
|
14977
|
+
|
|
14978
|
+
|
|
14979
|
+
export type CalendarSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
14980
|
+
id?: boolean
|
|
14981
|
+
credentials?: boolean | CalendarCredentialsDefaultArgs<ExtArgs>
|
|
14982
|
+
calendarId?: boolean
|
|
14983
|
+
provider?: boolean
|
|
14984
|
+
userId?: boolean
|
|
14985
|
+
createdAt?: boolean
|
|
14986
|
+
updatedAt?: boolean
|
|
14987
|
+
calendarUser?: boolean | UserDefaultArgs<ExtArgs>
|
|
14988
|
+
events?: boolean | Calendar$eventsArgs<ExtArgs>
|
|
14989
|
+
_count?: boolean | CalendarCountOutputTypeDefaultArgs<ExtArgs>
|
|
14990
|
+
}, ExtArgs["result"]["calendar"]>
|
|
14991
|
+
|
|
14992
|
+
|
|
14993
|
+
export type CalendarSelectScalar = {
|
|
14994
|
+
id?: boolean
|
|
14995
|
+
calendarId?: boolean
|
|
14996
|
+
provider?: boolean
|
|
14997
|
+
userId?: boolean
|
|
14998
|
+
createdAt?: boolean
|
|
14999
|
+
updatedAt?: boolean
|
|
15000
|
+
}
|
|
15001
|
+
|
|
15002
|
+
export type CalendarInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
15003
|
+
calendarUser?: boolean | UserDefaultArgs<ExtArgs>
|
|
15004
|
+
events?: boolean | Calendar$eventsArgs<ExtArgs>
|
|
15005
|
+
_count?: boolean | CalendarCountOutputTypeDefaultArgs<ExtArgs>
|
|
15006
|
+
}
|
|
15007
|
+
|
|
15008
|
+
export type $CalendarPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
15009
|
+
name: "Calendar"
|
|
15010
|
+
objects: {
|
|
15011
|
+
calendarUser: Prisma.$UserPayload<ExtArgs>
|
|
15012
|
+
events: Prisma.$CalendarEventPayload<ExtArgs>[]
|
|
15013
|
+
}
|
|
15014
|
+
scalars: $Extensions.GetPayloadResult<{
|
|
15015
|
+
id: string
|
|
15016
|
+
calendarId: string
|
|
15017
|
+
provider: $Enums.CalendarProvider
|
|
15018
|
+
userId: string
|
|
15019
|
+
createdAt: Date
|
|
15020
|
+
updatedAt: Date
|
|
15021
|
+
}, ExtArgs["result"]["calendar"]>
|
|
15022
|
+
composites: {
|
|
15023
|
+
credentials: Prisma.$CalendarCredentialsPayload
|
|
15024
|
+
}
|
|
15025
|
+
}
|
|
15026
|
+
|
|
15027
|
+
type CalendarGetPayload<S extends boolean | null | undefined | CalendarDefaultArgs> = $Result.GetResult<Prisma.$CalendarPayload, S>
|
|
15028
|
+
|
|
15029
|
+
type CalendarCountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> =
|
|
15030
|
+
Omit<CalendarFindManyArgs, 'select' | 'include' | 'distinct'> & {
|
|
15031
|
+
select?: CalendarCountAggregateInputType | true
|
|
15032
|
+
}
|
|
15033
|
+
|
|
15034
|
+
export interface CalendarDelegate<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> {
|
|
15035
|
+
[K: symbol]: { types: Prisma.TypeMap<ExtArgs>['model']['Calendar'], meta: { name: 'Calendar' } }
|
|
15036
|
+
/**
|
|
15037
|
+
* Find zero or one Calendar that matches the filter.
|
|
15038
|
+
* @param {CalendarFindUniqueArgs} args - Arguments to find a Calendar
|
|
15039
|
+
* @example
|
|
15040
|
+
* // Get one Calendar
|
|
15041
|
+
* const calendar = await prisma.calendar.findUnique({
|
|
15042
|
+
* where: {
|
|
15043
|
+
* // ... provide filter here
|
|
15044
|
+
* }
|
|
15045
|
+
* })
|
|
15046
|
+
*/
|
|
15047
|
+
findUnique<T extends CalendarFindUniqueArgs>(args: SelectSubset<T, CalendarFindUniqueArgs<ExtArgs>>): Prisma__CalendarClient<$Result.GetResult<Prisma.$CalendarPayload<ExtArgs>, T, "findUnique"> | null, null, ExtArgs>
|
|
15048
|
+
|
|
15049
|
+
/**
|
|
15050
|
+
* Find one Calendar that matches the filter or throw an error with `error.code='P2025'`
|
|
15051
|
+
* if no matches were found.
|
|
15052
|
+
* @param {CalendarFindUniqueOrThrowArgs} args - Arguments to find a Calendar
|
|
15053
|
+
* @example
|
|
15054
|
+
* // Get one Calendar
|
|
15055
|
+
* const calendar = await prisma.calendar.findUniqueOrThrow({
|
|
15056
|
+
* where: {
|
|
15057
|
+
* // ... provide filter here
|
|
15058
|
+
* }
|
|
15059
|
+
* })
|
|
15060
|
+
*/
|
|
15061
|
+
findUniqueOrThrow<T extends CalendarFindUniqueOrThrowArgs>(args: SelectSubset<T, CalendarFindUniqueOrThrowArgs<ExtArgs>>): Prisma__CalendarClient<$Result.GetResult<Prisma.$CalendarPayload<ExtArgs>, T, "findUniqueOrThrow">, never, ExtArgs>
|
|
15062
|
+
|
|
15063
|
+
/**
|
|
15064
|
+
* Find the first Calendar that matches the filter.
|
|
15065
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
15066
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
15067
|
+
* @param {CalendarFindFirstArgs} args - Arguments to find a Calendar
|
|
15068
|
+
* @example
|
|
15069
|
+
* // Get one Calendar
|
|
15070
|
+
* const calendar = await prisma.calendar.findFirst({
|
|
15071
|
+
* where: {
|
|
15072
|
+
* // ... provide filter here
|
|
15073
|
+
* }
|
|
15074
|
+
* })
|
|
15075
|
+
*/
|
|
15076
|
+
findFirst<T extends CalendarFindFirstArgs>(args?: SelectSubset<T, CalendarFindFirstArgs<ExtArgs>>): Prisma__CalendarClient<$Result.GetResult<Prisma.$CalendarPayload<ExtArgs>, T, "findFirst"> | null, null, ExtArgs>
|
|
15077
|
+
|
|
15078
|
+
/**
|
|
15079
|
+
* Find the first Calendar that matches the filter or
|
|
15080
|
+
* throw `PrismaKnownClientError` with `P2025` code if no matches were found.
|
|
15081
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
15082
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
15083
|
+
* @param {CalendarFindFirstOrThrowArgs} args - Arguments to find a Calendar
|
|
15084
|
+
* @example
|
|
15085
|
+
* // Get one Calendar
|
|
15086
|
+
* const calendar = await prisma.calendar.findFirstOrThrow({
|
|
15087
|
+
* where: {
|
|
15088
|
+
* // ... provide filter here
|
|
15089
|
+
* }
|
|
15090
|
+
* })
|
|
15091
|
+
*/
|
|
15092
|
+
findFirstOrThrow<T extends CalendarFindFirstOrThrowArgs>(args?: SelectSubset<T, CalendarFindFirstOrThrowArgs<ExtArgs>>): Prisma__CalendarClient<$Result.GetResult<Prisma.$CalendarPayload<ExtArgs>, T, "findFirstOrThrow">, never, ExtArgs>
|
|
15093
|
+
|
|
15094
|
+
/**
|
|
15095
|
+
* Find zero or more Calendars that matches the filter.
|
|
15096
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
15097
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
15098
|
+
* @param {CalendarFindManyArgs} args - Arguments to filter and select certain fields only.
|
|
15099
|
+
* @example
|
|
15100
|
+
* // Get all Calendars
|
|
15101
|
+
* const calendars = await prisma.calendar.findMany()
|
|
15102
|
+
*
|
|
15103
|
+
* // Get first 10 Calendars
|
|
15104
|
+
* const calendars = await prisma.calendar.findMany({ take: 10 })
|
|
15105
|
+
*
|
|
15106
|
+
* // Only select the `id`
|
|
15107
|
+
* const calendarWithIdOnly = await prisma.calendar.findMany({ select: { id: true } })
|
|
15108
|
+
*
|
|
15109
|
+
*/
|
|
15110
|
+
findMany<T extends CalendarFindManyArgs>(args?: SelectSubset<T, CalendarFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$CalendarPayload<ExtArgs>, T, "findMany">>
|
|
15111
|
+
|
|
15112
|
+
/**
|
|
15113
|
+
* Create a Calendar.
|
|
15114
|
+
* @param {CalendarCreateArgs} args - Arguments to create a Calendar.
|
|
15115
|
+
* @example
|
|
15116
|
+
* // Create one Calendar
|
|
15117
|
+
* const Calendar = await prisma.calendar.create({
|
|
15118
|
+
* data: {
|
|
15119
|
+
* // ... data to create a Calendar
|
|
15120
|
+
* }
|
|
15121
|
+
* })
|
|
15122
|
+
*
|
|
15123
|
+
*/
|
|
15124
|
+
create<T extends CalendarCreateArgs>(args: SelectSubset<T, CalendarCreateArgs<ExtArgs>>): Prisma__CalendarClient<$Result.GetResult<Prisma.$CalendarPayload<ExtArgs>, T, "create">, never, ExtArgs>
|
|
15125
|
+
|
|
15126
|
+
/**
|
|
15127
|
+
* Create many Calendars.
|
|
15128
|
+
* @param {CalendarCreateManyArgs} args - Arguments to create many Calendars.
|
|
15129
|
+
* @example
|
|
15130
|
+
* // Create many Calendars
|
|
15131
|
+
* const calendar = await prisma.calendar.createMany({
|
|
15132
|
+
* data: [
|
|
15133
|
+
* // ... provide data here
|
|
15134
|
+
* ]
|
|
15135
|
+
* })
|
|
15136
|
+
*
|
|
15137
|
+
*/
|
|
15138
|
+
createMany<T extends CalendarCreateManyArgs>(args?: SelectSubset<T, CalendarCreateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
15139
|
+
|
|
15140
|
+
/**
|
|
15141
|
+
* Delete a Calendar.
|
|
15142
|
+
* @param {CalendarDeleteArgs} args - Arguments to delete one Calendar.
|
|
15143
|
+
* @example
|
|
15144
|
+
* // Delete one Calendar
|
|
15145
|
+
* const Calendar = await prisma.calendar.delete({
|
|
15146
|
+
* where: {
|
|
15147
|
+
* // ... filter to delete one Calendar
|
|
15148
|
+
* }
|
|
15149
|
+
* })
|
|
15150
|
+
*
|
|
15151
|
+
*/
|
|
15152
|
+
delete<T extends CalendarDeleteArgs>(args: SelectSubset<T, CalendarDeleteArgs<ExtArgs>>): Prisma__CalendarClient<$Result.GetResult<Prisma.$CalendarPayload<ExtArgs>, T, "delete">, never, ExtArgs>
|
|
15153
|
+
|
|
15154
|
+
/**
|
|
15155
|
+
* Update one Calendar.
|
|
15156
|
+
* @param {CalendarUpdateArgs} args - Arguments to update one Calendar.
|
|
15157
|
+
* @example
|
|
15158
|
+
* // Update one Calendar
|
|
15159
|
+
* const calendar = await prisma.calendar.update({
|
|
15160
|
+
* where: {
|
|
15161
|
+
* // ... provide filter here
|
|
15162
|
+
* },
|
|
15163
|
+
* data: {
|
|
15164
|
+
* // ... provide data here
|
|
15165
|
+
* }
|
|
15166
|
+
* })
|
|
15167
|
+
*
|
|
15168
|
+
*/
|
|
15169
|
+
update<T extends CalendarUpdateArgs>(args: SelectSubset<T, CalendarUpdateArgs<ExtArgs>>): Prisma__CalendarClient<$Result.GetResult<Prisma.$CalendarPayload<ExtArgs>, T, "update">, never, ExtArgs>
|
|
15170
|
+
|
|
15171
|
+
/**
|
|
15172
|
+
* Delete zero or more Calendars.
|
|
15173
|
+
* @param {CalendarDeleteManyArgs} args - Arguments to filter Calendars to delete.
|
|
15174
|
+
* @example
|
|
15175
|
+
* // Delete a few Calendars
|
|
15176
|
+
* const { count } = await prisma.calendar.deleteMany({
|
|
15177
|
+
* where: {
|
|
15178
|
+
* // ... provide filter here
|
|
15179
|
+
* }
|
|
15180
|
+
* })
|
|
15181
|
+
*
|
|
15182
|
+
*/
|
|
15183
|
+
deleteMany<T extends CalendarDeleteManyArgs>(args?: SelectSubset<T, CalendarDeleteManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
15184
|
+
|
|
15185
|
+
/**
|
|
15186
|
+
* Update zero or more Calendars.
|
|
15187
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
15188
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
15189
|
+
* @param {CalendarUpdateManyArgs} args - Arguments to update one or more rows.
|
|
15190
|
+
* @example
|
|
15191
|
+
* // Update many Calendars
|
|
15192
|
+
* const calendar = await prisma.calendar.updateMany({
|
|
15193
|
+
* where: {
|
|
15194
|
+
* // ... provide filter here
|
|
15195
|
+
* },
|
|
15196
|
+
* data: {
|
|
15197
|
+
* // ... provide data here
|
|
15198
|
+
* }
|
|
15199
|
+
* })
|
|
15200
|
+
*
|
|
15201
|
+
*/
|
|
15202
|
+
updateMany<T extends CalendarUpdateManyArgs>(args: SelectSubset<T, CalendarUpdateManyArgs<ExtArgs>>): Prisma.PrismaPromise<BatchPayload>
|
|
15203
|
+
|
|
15204
|
+
/**
|
|
15205
|
+
* Create or update one Calendar.
|
|
15206
|
+
* @param {CalendarUpsertArgs} args - Arguments to update or create a Calendar.
|
|
15207
|
+
* @example
|
|
15208
|
+
* // Update or create a Calendar
|
|
15209
|
+
* const calendar = await prisma.calendar.upsert({
|
|
15210
|
+
* create: {
|
|
15211
|
+
* // ... data to create a Calendar
|
|
15212
|
+
* },
|
|
15213
|
+
* update: {
|
|
15214
|
+
* // ... in case it already exists, update
|
|
15215
|
+
* },
|
|
15216
|
+
* where: {
|
|
15217
|
+
* // ... the filter for the Calendar we want to update
|
|
15218
|
+
* }
|
|
15219
|
+
* })
|
|
15220
|
+
*/
|
|
15221
|
+
upsert<T extends CalendarUpsertArgs>(args: SelectSubset<T, CalendarUpsertArgs<ExtArgs>>): Prisma__CalendarClient<$Result.GetResult<Prisma.$CalendarPayload<ExtArgs>, T, "upsert">, never, ExtArgs>
|
|
15222
|
+
|
|
15223
|
+
/**
|
|
15224
|
+
* Find zero or more Calendars that matches the filter.
|
|
15225
|
+
* @param {CalendarFindRawArgs} args - Select which filters you would like to apply.
|
|
15226
|
+
* @example
|
|
15227
|
+
* const calendar = await prisma.calendar.findRaw({
|
|
15228
|
+
* filter: { age: { $gt: 25 } }
|
|
15229
|
+
* })
|
|
15230
|
+
*/
|
|
15231
|
+
findRaw(args?: CalendarFindRawArgs): Prisma.PrismaPromise<JsonObject>
|
|
15232
|
+
|
|
15233
|
+
/**
|
|
15234
|
+
* Perform aggregation operations on a Calendar.
|
|
15235
|
+
* @param {CalendarAggregateRawArgs} args - Select which aggregations you would like to apply.
|
|
15236
|
+
* @example
|
|
15237
|
+
* const calendar = await prisma.calendar.aggregateRaw({
|
|
15238
|
+
* pipeline: [
|
|
15239
|
+
* { $match: { status: "registered" } },
|
|
15240
|
+
* { $group: { _id: "$country", total: { $sum: 1 } } }
|
|
15241
|
+
* ]
|
|
15242
|
+
* })
|
|
15243
|
+
*/
|
|
15244
|
+
aggregateRaw(args?: CalendarAggregateRawArgs): Prisma.PrismaPromise<JsonObject>
|
|
15245
|
+
|
|
15246
|
+
|
|
15247
|
+
/**
|
|
15248
|
+
* Count the number of Calendars.
|
|
15249
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
15250
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
15251
|
+
* @param {CalendarCountArgs} args - Arguments to filter Calendars to count.
|
|
15252
|
+
* @example
|
|
15253
|
+
* // Count the number of Calendars
|
|
15254
|
+
* const count = await prisma.calendar.count({
|
|
15255
|
+
* where: {
|
|
15256
|
+
* // ... the filter for the Calendars we want to count
|
|
15257
|
+
* }
|
|
15258
|
+
* })
|
|
15259
|
+
**/
|
|
15260
|
+
count<T extends CalendarCountArgs>(
|
|
15261
|
+
args?: Subset<T, CalendarCountArgs>,
|
|
15262
|
+
): Prisma.PrismaPromise<
|
|
15263
|
+
T extends $Utils.Record<'select', any>
|
|
15264
|
+
? T['select'] extends true
|
|
15265
|
+
? number
|
|
15266
|
+
: GetScalarType<T['select'], CalendarCountAggregateOutputType>
|
|
15267
|
+
: number
|
|
15268
|
+
>
|
|
15269
|
+
|
|
15270
|
+
/**
|
|
15271
|
+
* Allows you to perform aggregations operations on a Calendar.
|
|
15272
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
15273
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
15274
|
+
* @param {CalendarAggregateArgs} args - Select which aggregations you would like to apply and on what fields.
|
|
15275
|
+
* @example
|
|
15276
|
+
* // Ordered by age ascending
|
|
15277
|
+
* // Where email contains prisma.io
|
|
15278
|
+
* // Limited to the 10 users
|
|
15279
|
+
* const aggregations = await prisma.user.aggregate({
|
|
15280
|
+
* _avg: {
|
|
15281
|
+
* age: true,
|
|
15282
|
+
* },
|
|
15283
|
+
* where: {
|
|
15284
|
+
* email: {
|
|
15285
|
+
* contains: "prisma.io",
|
|
15286
|
+
* },
|
|
15287
|
+
* },
|
|
15288
|
+
* orderBy: {
|
|
15289
|
+
* age: "asc",
|
|
15290
|
+
* },
|
|
15291
|
+
* take: 10,
|
|
15292
|
+
* })
|
|
15293
|
+
**/
|
|
15294
|
+
aggregate<T extends CalendarAggregateArgs>(args: Subset<T, CalendarAggregateArgs>): Prisma.PrismaPromise<GetCalendarAggregateType<T>>
|
|
15295
|
+
|
|
15296
|
+
/**
|
|
15297
|
+
* Group by Calendar.
|
|
15298
|
+
* Note, that providing `undefined` is treated as the value not being there.
|
|
15299
|
+
* Read more here: https://pris.ly/d/null-undefined
|
|
15300
|
+
* @param {CalendarGroupByArgs} args - Group by arguments.
|
|
15301
|
+
* @example
|
|
15302
|
+
* // Group by city, order by createdAt, get count
|
|
15303
|
+
* const result = await prisma.user.groupBy({
|
|
15304
|
+
* by: ['city', 'createdAt'],
|
|
15305
|
+
* orderBy: {
|
|
15306
|
+
* createdAt: true
|
|
15307
|
+
* },
|
|
15308
|
+
* _count: {
|
|
15309
|
+
* _all: true
|
|
15310
|
+
* },
|
|
15311
|
+
* })
|
|
15312
|
+
*
|
|
15313
|
+
**/
|
|
15314
|
+
groupBy<
|
|
15315
|
+
T extends CalendarGroupByArgs,
|
|
15316
|
+
HasSelectOrTake extends Or<
|
|
15317
|
+
Extends<'skip', Keys<T>>,
|
|
15318
|
+
Extends<'take', Keys<T>>
|
|
15319
|
+
>,
|
|
15320
|
+
OrderByArg extends True extends HasSelectOrTake
|
|
15321
|
+
? { orderBy: CalendarGroupByArgs['orderBy'] }
|
|
15322
|
+
: { orderBy?: CalendarGroupByArgs['orderBy'] },
|
|
14210
15323
|
OrderFields extends ExcludeUnderscoreKeys<Keys<MaybeTupleToUnion<T['orderBy']>>>,
|
|
14211
15324
|
ByFields extends MaybeTupleToUnion<T['by']>,
|
|
14212
15325
|
ByValid extends Has<ByFields, OrderFields>,
|
|
@@ -38443,6 +39556,7 @@ export namespace Prisma {
|
|
|
38443
39556
|
builderInterviews?: boolean | User$builderInterviewsArgs<ExtArgs>
|
|
38444
39557
|
proposalsAsTeamAdvisor?: boolean | User$proposalsAsTeamAdvisorArgs<ExtArgs>
|
|
38445
39558
|
builderContracts?: boolean | User$builderContractsArgs<ExtArgs>
|
|
39559
|
+
builderWebsitesData?: boolean | User$builderWebsitesDataArgs<ExtArgs>
|
|
38446
39560
|
_count?: boolean | UserCountOutputTypeDefaultArgs<ExtArgs>
|
|
38447
39561
|
}, ExtArgs["result"]["user"]>
|
|
38448
39562
|
|
|
@@ -38490,6 +39604,7 @@ export namespace Prisma {
|
|
|
38490
39604
|
builderInterviews?: boolean | User$builderInterviewsArgs<ExtArgs>
|
|
38491
39605
|
proposalsAsTeamAdvisor?: boolean | User$proposalsAsTeamAdvisorArgs<ExtArgs>
|
|
38492
39606
|
builderContracts?: boolean | User$builderContractsArgs<ExtArgs>
|
|
39607
|
+
builderWebsitesData?: boolean | User$builderWebsitesDataArgs<ExtArgs>
|
|
38493
39608
|
_count?: boolean | UserCountOutputTypeDefaultArgs<ExtArgs>
|
|
38494
39609
|
}
|
|
38495
39610
|
|
|
@@ -38516,6 +39631,7 @@ export namespace Prisma {
|
|
|
38516
39631
|
builderInterviews: Prisma.$ClientInterviewPayload<ExtArgs>[]
|
|
38517
39632
|
proposalsAsTeamAdvisor: Prisma.$ProposalPayload<ExtArgs>[]
|
|
38518
39633
|
builderContracts: Prisma.$ContractPayload<ExtArgs>[]
|
|
39634
|
+
builderWebsitesData: Prisma.$BuilderWebsitesDataPayload<ExtArgs>[]
|
|
38519
39635
|
}
|
|
38520
39636
|
scalars: $Extensions.GetPayloadResult<{
|
|
38521
39637
|
id: string
|
|
@@ -38937,6 +40053,7 @@ export namespace Prisma {
|
|
|
38937
40053
|
builderInterviews<T extends User$builderInterviewsArgs<ExtArgs> = {}>(args?: Subset<T, User$builderInterviewsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ClientInterviewPayload<ExtArgs>, T, "findMany"> | Null>
|
|
38938
40054
|
proposalsAsTeamAdvisor<T extends User$proposalsAsTeamAdvisorArgs<ExtArgs> = {}>(args?: Subset<T, User$proposalsAsTeamAdvisorArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ProposalPayload<ExtArgs>, T, "findMany"> | Null>
|
|
38939
40055
|
builderContracts<T extends User$builderContractsArgs<ExtArgs> = {}>(args?: Subset<T, User$builderContractsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$ContractPayload<ExtArgs>, T, "findMany"> | Null>
|
|
40056
|
+
builderWebsitesData<T extends User$builderWebsitesDataArgs<ExtArgs> = {}>(args?: Subset<T, User$builderWebsitesDataArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$BuilderWebsitesDataPayload<ExtArgs>, T, "findMany"> | Null>
|
|
38940
40057
|
/**
|
|
38941
40058
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
38942
40059
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -39700,6 +40817,26 @@ export namespace Prisma {
|
|
|
39700
40817
|
distinct?: ContractScalarFieldEnum | ContractScalarFieldEnum[]
|
|
39701
40818
|
}
|
|
39702
40819
|
|
|
40820
|
+
/**
|
|
40821
|
+
* User.builderWebsitesData
|
|
40822
|
+
*/
|
|
40823
|
+
export type User$builderWebsitesDataArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
40824
|
+
/**
|
|
40825
|
+
* Select specific fields to fetch from the BuilderWebsitesData
|
|
40826
|
+
*/
|
|
40827
|
+
select?: BuilderWebsitesDataSelect<ExtArgs> | null
|
|
40828
|
+
/**
|
|
40829
|
+
* Choose, which related nodes to fetch as well
|
|
40830
|
+
*/
|
|
40831
|
+
include?: BuilderWebsitesDataInclude<ExtArgs> | null
|
|
40832
|
+
where?: BuilderWebsitesDataWhereInput
|
|
40833
|
+
orderBy?: BuilderWebsitesDataOrderByWithRelationInput | BuilderWebsitesDataOrderByWithRelationInput[]
|
|
40834
|
+
cursor?: BuilderWebsitesDataWhereUniqueInput
|
|
40835
|
+
take?: number
|
|
40836
|
+
skip?: number
|
|
40837
|
+
distinct?: BuilderWebsitesDataScalarFieldEnum | BuilderWebsitesDataScalarFieldEnum[]
|
|
40838
|
+
}
|
|
40839
|
+
|
|
39703
40840
|
/**
|
|
39704
40841
|
* User without action
|
|
39705
40842
|
*/
|
|
@@ -41787,6 +42924,21 @@ export namespace Prisma {
|
|
|
41787
42924
|
export type BillingAccountScalarFieldEnum = (typeof BillingAccountScalarFieldEnum)[keyof typeof BillingAccountScalarFieldEnum]
|
|
41788
42925
|
|
|
41789
42926
|
|
|
42927
|
+
export const BuilderWebsitesDataScalarFieldEnum: {
|
|
42928
|
+
id: 'id',
|
|
42929
|
+
builderId: 'builderId',
|
|
42930
|
+
sourceType: 'sourceType',
|
|
42931
|
+
sourceUrl: 'sourceUrl',
|
|
42932
|
+
error: 'error',
|
|
42933
|
+
dataType: 'dataType',
|
|
42934
|
+
data: 'data',
|
|
42935
|
+
createdAt: 'createdAt',
|
|
42936
|
+
updatedAt: 'updatedAt'
|
|
42937
|
+
};
|
|
42938
|
+
|
|
42939
|
+
export type BuilderWebsitesDataScalarFieldEnum = (typeof BuilderWebsitesDataScalarFieldEnum)[keyof typeof BuilderWebsitesDataScalarFieldEnum]
|
|
42940
|
+
|
|
42941
|
+
|
|
41790
42942
|
export const CalendarScalarFieldEnum: {
|
|
41791
42943
|
id: 'id',
|
|
41792
42944
|
calendarId: 'calendarId',
|
|
@@ -42348,6 +43500,34 @@ export namespace Prisma {
|
|
|
42348
43500
|
|
|
42349
43501
|
|
|
42350
43502
|
|
|
43503
|
+
/**
|
|
43504
|
+
* Reference to a field of type 'BuilderWebsitesSourceType'
|
|
43505
|
+
*/
|
|
43506
|
+
export type EnumBuilderWebsitesSourceTypeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'BuilderWebsitesSourceType'>
|
|
43507
|
+
|
|
43508
|
+
|
|
43509
|
+
|
|
43510
|
+
/**
|
|
43511
|
+
* Reference to a field of type 'BuilderWebsitesSourceType[]'
|
|
43512
|
+
*/
|
|
43513
|
+
export type ListEnumBuilderWebsitesSourceTypeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'BuilderWebsitesSourceType[]'>
|
|
43514
|
+
|
|
43515
|
+
|
|
43516
|
+
|
|
43517
|
+
/**
|
|
43518
|
+
* Reference to a field of type 'BuilderWebsitesSourceDataType'
|
|
43519
|
+
*/
|
|
43520
|
+
export type EnumBuilderWebsitesSourceDataTypeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'BuilderWebsitesSourceDataType'>
|
|
43521
|
+
|
|
43522
|
+
|
|
43523
|
+
|
|
43524
|
+
/**
|
|
43525
|
+
* Reference to a field of type 'BuilderWebsitesSourceDataType[]'
|
|
43526
|
+
*/
|
|
43527
|
+
export type ListEnumBuilderWebsitesSourceDataTypeFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'BuilderWebsitesSourceDataType[]'>
|
|
43528
|
+
|
|
43529
|
+
|
|
43530
|
+
|
|
42351
43531
|
/**
|
|
42352
43532
|
* Reference to a field of type 'CalendarProvider'
|
|
42353
43533
|
*/
|
|
@@ -43154,6 +44334,81 @@ export namespace Prisma {
|
|
|
43154
44334
|
updatedAt?: DateTimeNullableWithAggregatesFilter<"BillingAccount"> | Date | string | null
|
|
43155
44335
|
}
|
|
43156
44336
|
|
|
44337
|
+
export type BuilderWebsitesDataWhereInput = {
|
|
44338
|
+
AND?: BuilderWebsitesDataWhereInput | BuilderWebsitesDataWhereInput[]
|
|
44339
|
+
OR?: BuilderWebsitesDataWhereInput[]
|
|
44340
|
+
NOT?: BuilderWebsitesDataWhereInput | BuilderWebsitesDataWhereInput[]
|
|
44341
|
+
id?: StringFilter<"BuilderWebsitesData"> | string
|
|
44342
|
+
builderId?: StringFilter<"BuilderWebsitesData"> | string
|
|
44343
|
+
sourceType?: EnumBuilderWebsitesSourceTypeFilter<"BuilderWebsitesData"> | $Enums.BuilderWebsitesSourceType
|
|
44344
|
+
sourceUrl?: StringFilter<"BuilderWebsitesData"> | string
|
|
44345
|
+
error?: StringNullableFilter<"BuilderWebsitesData"> | string | null
|
|
44346
|
+
dataType?: EnumBuilderWebsitesSourceDataTypeNullableFilter<"BuilderWebsitesData"> | $Enums.BuilderWebsitesSourceDataType | null
|
|
44347
|
+
data?: StringNullableFilter<"BuilderWebsitesData"> | string | null
|
|
44348
|
+
createdAt?: DateTimeNullableFilter<"BuilderWebsitesData"> | Date | string | null
|
|
44349
|
+
updatedAt?: DateTimeNullableFilter<"BuilderWebsitesData"> | Date | string | null
|
|
44350
|
+
builder?: XOR<UserNullableRelationFilter, UserWhereInput> | null
|
|
44351
|
+
}
|
|
44352
|
+
|
|
44353
|
+
export type BuilderWebsitesDataOrderByWithRelationInput = {
|
|
44354
|
+
id?: SortOrder
|
|
44355
|
+
builderId?: SortOrder
|
|
44356
|
+
sourceType?: SortOrder
|
|
44357
|
+
sourceUrl?: SortOrder
|
|
44358
|
+
error?: SortOrder
|
|
44359
|
+
dataType?: SortOrder
|
|
44360
|
+
data?: SortOrder
|
|
44361
|
+
createdAt?: SortOrder
|
|
44362
|
+
updatedAt?: SortOrder
|
|
44363
|
+
builder?: UserOrderByWithRelationInput
|
|
44364
|
+
}
|
|
44365
|
+
|
|
44366
|
+
export type BuilderWebsitesDataWhereUniqueInput = Prisma.AtLeast<{
|
|
44367
|
+
id?: string
|
|
44368
|
+
AND?: BuilderWebsitesDataWhereInput | BuilderWebsitesDataWhereInput[]
|
|
44369
|
+
OR?: BuilderWebsitesDataWhereInput[]
|
|
44370
|
+
NOT?: BuilderWebsitesDataWhereInput | BuilderWebsitesDataWhereInput[]
|
|
44371
|
+
builderId?: StringFilter<"BuilderWebsitesData"> | string
|
|
44372
|
+
sourceType?: EnumBuilderWebsitesSourceTypeFilter<"BuilderWebsitesData"> | $Enums.BuilderWebsitesSourceType
|
|
44373
|
+
sourceUrl?: StringFilter<"BuilderWebsitesData"> | string
|
|
44374
|
+
error?: StringNullableFilter<"BuilderWebsitesData"> | string | null
|
|
44375
|
+
dataType?: EnumBuilderWebsitesSourceDataTypeNullableFilter<"BuilderWebsitesData"> | $Enums.BuilderWebsitesSourceDataType | null
|
|
44376
|
+
data?: StringNullableFilter<"BuilderWebsitesData"> | string | null
|
|
44377
|
+
createdAt?: DateTimeNullableFilter<"BuilderWebsitesData"> | Date | string | null
|
|
44378
|
+
updatedAt?: DateTimeNullableFilter<"BuilderWebsitesData"> | Date | string | null
|
|
44379
|
+
builder?: XOR<UserNullableRelationFilter, UserWhereInput> | null
|
|
44380
|
+
}, "id">
|
|
44381
|
+
|
|
44382
|
+
export type BuilderWebsitesDataOrderByWithAggregationInput = {
|
|
44383
|
+
id?: SortOrder
|
|
44384
|
+
builderId?: SortOrder
|
|
44385
|
+
sourceType?: SortOrder
|
|
44386
|
+
sourceUrl?: SortOrder
|
|
44387
|
+
error?: SortOrder
|
|
44388
|
+
dataType?: SortOrder
|
|
44389
|
+
data?: SortOrder
|
|
44390
|
+
createdAt?: SortOrder
|
|
44391
|
+
updatedAt?: SortOrder
|
|
44392
|
+
_count?: BuilderWebsitesDataCountOrderByAggregateInput
|
|
44393
|
+
_max?: BuilderWebsitesDataMaxOrderByAggregateInput
|
|
44394
|
+
_min?: BuilderWebsitesDataMinOrderByAggregateInput
|
|
44395
|
+
}
|
|
44396
|
+
|
|
44397
|
+
export type BuilderWebsitesDataScalarWhereWithAggregatesInput = {
|
|
44398
|
+
AND?: BuilderWebsitesDataScalarWhereWithAggregatesInput | BuilderWebsitesDataScalarWhereWithAggregatesInput[]
|
|
44399
|
+
OR?: BuilderWebsitesDataScalarWhereWithAggregatesInput[]
|
|
44400
|
+
NOT?: BuilderWebsitesDataScalarWhereWithAggregatesInput | BuilderWebsitesDataScalarWhereWithAggregatesInput[]
|
|
44401
|
+
id?: StringWithAggregatesFilter<"BuilderWebsitesData"> | string
|
|
44402
|
+
builderId?: StringWithAggregatesFilter<"BuilderWebsitesData"> | string
|
|
44403
|
+
sourceType?: EnumBuilderWebsitesSourceTypeWithAggregatesFilter<"BuilderWebsitesData"> | $Enums.BuilderWebsitesSourceType
|
|
44404
|
+
sourceUrl?: StringWithAggregatesFilter<"BuilderWebsitesData"> | string
|
|
44405
|
+
error?: StringNullableWithAggregatesFilter<"BuilderWebsitesData"> | string | null
|
|
44406
|
+
dataType?: EnumBuilderWebsitesSourceDataTypeNullableWithAggregatesFilter<"BuilderWebsitesData"> | $Enums.BuilderWebsitesSourceDataType | null
|
|
44407
|
+
data?: StringNullableWithAggregatesFilter<"BuilderWebsitesData"> | string | null
|
|
44408
|
+
createdAt?: DateTimeNullableWithAggregatesFilter<"BuilderWebsitesData"> | Date | string | null
|
|
44409
|
+
updatedAt?: DateTimeNullableWithAggregatesFilter<"BuilderWebsitesData"> | Date | string | null
|
|
44410
|
+
}
|
|
44411
|
+
|
|
43157
44412
|
export type CalendarWhereInput = {
|
|
43158
44413
|
AND?: CalendarWhereInput | CalendarWhereInput[]
|
|
43159
44414
|
OR?: CalendarWhereInput[]
|
|
@@ -45708,6 +46963,7 @@ export namespace Prisma {
|
|
|
45708
46963
|
builderInterviews?: ClientInterviewListRelationFilter
|
|
45709
46964
|
proposalsAsTeamAdvisor?: ProposalListRelationFilter
|
|
45710
46965
|
builderContracts?: ContractListRelationFilter
|
|
46966
|
+
builderWebsitesData?: BuilderWebsitesDataListRelationFilter
|
|
45711
46967
|
}
|
|
45712
46968
|
|
|
45713
46969
|
export type UserOrderByWithRelationInput = {
|
|
@@ -45766,6 +47022,7 @@ export namespace Prisma {
|
|
|
45766
47022
|
builderInterviews?: ClientInterviewOrderByRelationAggregateInput
|
|
45767
47023
|
proposalsAsTeamAdvisor?: ProposalOrderByRelationAggregateInput
|
|
45768
47024
|
builderContracts?: ContractOrderByRelationAggregateInput
|
|
47025
|
+
builderWebsitesData?: BuilderWebsitesDataOrderByRelationAggregateInput
|
|
45769
47026
|
}
|
|
45770
47027
|
|
|
45771
47028
|
export type UserWhereUniqueInput = Prisma.AtLeast<{
|
|
@@ -45827,6 +47084,7 @@ export namespace Prisma {
|
|
|
45827
47084
|
builderInterviews?: ClientInterviewListRelationFilter
|
|
45828
47085
|
proposalsAsTeamAdvisor?: ProposalListRelationFilter
|
|
45829
47086
|
builderContracts?: ContractListRelationFilter
|
|
47087
|
+
builderWebsitesData?: BuilderWebsitesDataListRelationFilter
|
|
45830
47088
|
}, "id" | "username" | "email">
|
|
45831
47089
|
|
|
45832
47090
|
export type UserOrderByWithAggregationInput = {
|
|
@@ -46239,6 +47497,85 @@ export namespace Prisma {
|
|
|
46239
47497
|
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
46240
47498
|
}
|
|
46241
47499
|
|
|
47500
|
+
export type BuilderWebsitesDataCreateInput = {
|
|
47501
|
+
id?: string
|
|
47502
|
+
sourceType: $Enums.BuilderWebsitesSourceType
|
|
47503
|
+
sourceUrl: string
|
|
47504
|
+
error?: string | null
|
|
47505
|
+
dataType?: $Enums.BuilderWebsitesSourceDataType | null
|
|
47506
|
+
data?: string | null
|
|
47507
|
+
createdAt?: Date | string | null
|
|
47508
|
+
updatedAt?: Date | string | null
|
|
47509
|
+
builder?: UserCreateNestedOneWithoutBuilderWebsitesDataInput
|
|
47510
|
+
}
|
|
47511
|
+
|
|
47512
|
+
export type BuilderWebsitesDataUncheckedCreateInput = {
|
|
47513
|
+
id?: string
|
|
47514
|
+
builderId: string
|
|
47515
|
+
sourceType: $Enums.BuilderWebsitesSourceType
|
|
47516
|
+
sourceUrl: string
|
|
47517
|
+
error?: string | null
|
|
47518
|
+
dataType?: $Enums.BuilderWebsitesSourceDataType | null
|
|
47519
|
+
data?: string | null
|
|
47520
|
+
createdAt?: Date | string | null
|
|
47521
|
+
updatedAt?: Date | string | null
|
|
47522
|
+
}
|
|
47523
|
+
|
|
47524
|
+
export type BuilderWebsitesDataUpdateInput = {
|
|
47525
|
+
sourceType?: EnumBuilderWebsitesSourceTypeFieldUpdateOperationsInput | $Enums.BuilderWebsitesSourceType
|
|
47526
|
+
sourceUrl?: StringFieldUpdateOperationsInput | string
|
|
47527
|
+
error?: NullableStringFieldUpdateOperationsInput | string | null
|
|
47528
|
+
dataType?: NullableEnumBuilderWebsitesSourceDataTypeFieldUpdateOperationsInput | $Enums.BuilderWebsitesSourceDataType | null
|
|
47529
|
+
data?: NullableStringFieldUpdateOperationsInput | string | null
|
|
47530
|
+
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
47531
|
+
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
47532
|
+
builder?: UserUpdateOneWithoutBuilderWebsitesDataNestedInput
|
|
47533
|
+
}
|
|
47534
|
+
|
|
47535
|
+
export type BuilderWebsitesDataUncheckedUpdateInput = {
|
|
47536
|
+
builderId?: StringFieldUpdateOperationsInput | string
|
|
47537
|
+
sourceType?: EnumBuilderWebsitesSourceTypeFieldUpdateOperationsInput | $Enums.BuilderWebsitesSourceType
|
|
47538
|
+
sourceUrl?: StringFieldUpdateOperationsInput | string
|
|
47539
|
+
error?: NullableStringFieldUpdateOperationsInput | string | null
|
|
47540
|
+
dataType?: NullableEnumBuilderWebsitesSourceDataTypeFieldUpdateOperationsInput | $Enums.BuilderWebsitesSourceDataType | null
|
|
47541
|
+
data?: NullableStringFieldUpdateOperationsInput | string | null
|
|
47542
|
+
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
47543
|
+
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
47544
|
+
}
|
|
47545
|
+
|
|
47546
|
+
export type BuilderWebsitesDataCreateManyInput = {
|
|
47547
|
+
id?: string
|
|
47548
|
+
builderId: string
|
|
47549
|
+
sourceType: $Enums.BuilderWebsitesSourceType
|
|
47550
|
+
sourceUrl: string
|
|
47551
|
+
error?: string | null
|
|
47552
|
+
dataType?: $Enums.BuilderWebsitesSourceDataType | null
|
|
47553
|
+
data?: string | null
|
|
47554
|
+
createdAt?: Date | string | null
|
|
47555
|
+
updatedAt?: Date | string | null
|
|
47556
|
+
}
|
|
47557
|
+
|
|
47558
|
+
export type BuilderWebsitesDataUpdateManyMutationInput = {
|
|
47559
|
+
sourceType?: EnumBuilderWebsitesSourceTypeFieldUpdateOperationsInput | $Enums.BuilderWebsitesSourceType
|
|
47560
|
+
sourceUrl?: StringFieldUpdateOperationsInput | string
|
|
47561
|
+
error?: NullableStringFieldUpdateOperationsInput | string | null
|
|
47562
|
+
dataType?: NullableEnumBuilderWebsitesSourceDataTypeFieldUpdateOperationsInput | $Enums.BuilderWebsitesSourceDataType | null
|
|
47563
|
+
data?: NullableStringFieldUpdateOperationsInput | string | null
|
|
47564
|
+
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
47565
|
+
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
47566
|
+
}
|
|
47567
|
+
|
|
47568
|
+
export type BuilderWebsitesDataUncheckedUpdateManyInput = {
|
|
47569
|
+
builderId?: StringFieldUpdateOperationsInput | string
|
|
47570
|
+
sourceType?: EnumBuilderWebsitesSourceTypeFieldUpdateOperationsInput | $Enums.BuilderWebsitesSourceType
|
|
47571
|
+
sourceUrl?: StringFieldUpdateOperationsInput | string
|
|
47572
|
+
error?: NullableStringFieldUpdateOperationsInput | string | null
|
|
47573
|
+
dataType?: NullableEnumBuilderWebsitesSourceDataTypeFieldUpdateOperationsInput | $Enums.BuilderWebsitesSourceDataType | null
|
|
47574
|
+
data?: NullableStringFieldUpdateOperationsInput | string | null
|
|
47575
|
+
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
47576
|
+
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
47577
|
+
}
|
|
47578
|
+
|
|
46242
47579
|
export type CalendarCreateInput = {
|
|
46243
47580
|
id?: string
|
|
46244
47581
|
credentials: XOR<CalendarCredentialsCreateEnvelopeInput, CalendarCredentialsCreateInput>
|
|
@@ -49252,6 +50589,7 @@ export namespace Prisma {
|
|
|
49252
50589
|
builderInterviews?: ClientInterviewCreateNestedManyWithoutBuilderInput
|
|
49253
50590
|
proposalsAsTeamAdvisor?: ProposalCreateNestedManyWithoutTeamAdvisorInput
|
|
49254
50591
|
builderContracts?: ContractCreateNestedManyWithoutBuilderInput
|
|
50592
|
+
builderWebsitesData?: BuilderWebsitesDataCreateNestedManyWithoutBuilderInput
|
|
49255
50593
|
}
|
|
49256
50594
|
|
|
49257
50595
|
export type UserUncheckedCreateInput = {
|
|
@@ -49310,6 +50648,7 @@ export namespace Prisma {
|
|
|
49310
50648
|
builderInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutBuilderInput
|
|
49311
50649
|
proposalsAsTeamAdvisor?: ProposalUncheckedCreateNestedManyWithoutTeamAdvisorInput
|
|
49312
50650
|
builderContracts?: ContractUncheckedCreateNestedManyWithoutBuilderInput
|
|
50651
|
+
builderWebsitesData?: BuilderWebsitesDataUncheckedCreateNestedManyWithoutBuilderInput
|
|
49313
50652
|
}
|
|
49314
50653
|
|
|
49315
50654
|
export type UserUpdateInput = {
|
|
@@ -49367,6 +50706,7 @@ export namespace Prisma {
|
|
|
49367
50706
|
builderInterviews?: ClientInterviewUpdateManyWithoutBuilderNestedInput
|
|
49368
50707
|
proposalsAsTeamAdvisor?: ProposalUpdateManyWithoutTeamAdvisorNestedInput
|
|
49369
50708
|
builderContracts?: ContractUpdateManyWithoutBuilderNestedInput
|
|
50709
|
+
builderWebsitesData?: BuilderWebsitesDataUpdateManyWithoutBuilderNestedInput
|
|
49370
50710
|
}
|
|
49371
50711
|
|
|
49372
50712
|
export type UserUncheckedUpdateInput = {
|
|
@@ -49424,6 +50764,7 @@ export namespace Prisma {
|
|
|
49424
50764
|
builderInterviews?: ClientInterviewUncheckedUpdateManyWithoutBuilderNestedInput
|
|
49425
50765
|
proposalsAsTeamAdvisor?: ProposalUncheckedUpdateManyWithoutTeamAdvisorNestedInput
|
|
49426
50766
|
builderContracts?: ContractUncheckedUpdateManyWithoutBuilderNestedInput
|
|
50767
|
+
builderWebsitesData?: BuilderWebsitesDataUncheckedUpdateManyWithoutBuilderNestedInput
|
|
49427
50768
|
}
|
|
49428
50769
|
|
|
49429
50770
|
export type UserCreateManyInput = {
|
|
@@ -50058,6 +51399,83 @@ export namespace Prisma {
|
|
|
50058
51399
|
updatedAt?: SortOrder
|
|
50059
51400
|
}
|
|
50060
51401
|
|
|
51402
|
+
export type EnumBuilderWebsitesSourceTypeFilter<$PrismaModel = never> = {
|
|
51403
|
+
equals?: $Enums.BuilderWebsitesSourceType | EnumBuilderWebsitesSourceTypeFieldRefInput<$PrismaModel>
|
|
51404
|
+
in?: $Enums.BuilderWebsitesSourceType[] | ListEnumBuilderWebsitesSourceTypeFieldRefInput<$PrismaModel>
|
|
51405
|
+
notIn?: $Enums.BuilderWebsitesSourceType[] | ListEnumBuilderWebsitesSourceTypeFieldRefInput<$PrismaModel>
|
|
51406
|
+
not?: NestedEnumBuilderWebsitesSourceTypeFilter<$PrismaModel> | $Enums.BuilderWebsitesSourceType
|
|
51407
|
+
}
|
|
51408
|
+
|
|
51409
|
+
export type EnumBuilderWebsitesSourceDataTypeNullableFilter<$PrismaModel = never> = {
|
|
51410
|
+
equals?: $Enums.BuilderWebsitesSourceDataType | EnumBuilderWebsitesSourceDataTypeFieldRefInput<$PrismaModel> | null
|
|
51411
|
+
in?: $Enums.BuilderWebsitesSourceDataType[] | ListEnumBuilderWebsitesSourceDataTypeFieldRefInput<$PrismaModel> | null
|
|
51412
|
+
notIn?: $Enums.BuilderWebsitesSourceDataType[] | ListEnumBuilderWebsitesSourceDataTypeFieldRefInput<$PrismaModel> | null
|
|
51413
|
+
not?: NestedEnumBuilderWebsitesSourceDataTypeNullableFilter<$PrismaModel> | $Enums.BuilderWebsitesSourceDataType | null
|
|
51414
|
+
isSet?: boolean
|
|
51415
|
+
}
|
|
51416
|
+
|
|
51417
|
+
export type UserNullableRelationFilter = {
|
|
51418
|
+
is?: UserWhereInput | null
|
|
51419
|
+
isNot?: UserWhereInput | null
|
|
51420
|
+
}
|
|
51421
|
+
|
|
51422
|
+
export type BuilderWebsitesDataCountOrderByAggregateInput = {
|
|
51423
|
+
id?: SortOrder
|
|
51424
|
+
builderId?: SortOrder
|
|
51425
|
+
sourceType?: SortOrder
|
|
51426
|
+
sourceUrl?: SortOrder
|
|
51427
|
+
error?: SortOrder
|
|
51428
|
+
dataType?: SortOrder
|
|
51429
|
+
data?: SortOrder
|
|
51430
|
+
createdAt?: SortOrder
|
|
51431
|
+
updatedAt?: SortOrder
|
|
51432
|
+
}
|
|
51433
|
+
|
|
51434
|
+
export type BuilderWebsitesDataMaxOrderByAggregateInput = {
|
|
51435
|
+
id?: SortOrder
|
|
51436
|
+
builderId?: SortOrder
|
|
51437
|
+
sourceType?: SortOrder
|
|
51438
|
+
sourceUrl?: SortOrder
|
|
51439
|
+
error?: SortOrder
|
|
51440
|
+
dataType?: SortOrder
|
|
51441
|
+
data?: SortOrder
|
|
51442
|
+
createdAt?: SortOrder
|
|
51443
|
+
updatedAt?: SortOrder
|
|
51444
|
+
}
|
|
51445
|
+
|
|
51446
|
+
export type BuilderWebsitesDataMinOrderByAggregateInput = {
|
|
51447
|
+
id?: SortOrder
|
|
51448
|
+
builderId?: SortOrder
|
|
51449
|
+
sourceType?: SortOrder
|
|
51450
|
+
sourceUrl?: SortOrder
|
|
51451
|
+
error?: SortOrder
|
|
51452
|
+
dataType?: SortOrder
|
|
51453
|
+
data?: SortOrder
|
|
51454
|
+
createdAt?: SortOrder
|
|
51455
|
+
updatedAt?: SortOrder
|
|
51456
|
+
}
|
|
51457
|
+
|
|
51458
|
+
export type EnumBuilderWebsitesSourceTypeWithAggregatesFilter<$PrismaModel = never> = {
|
|
51459
|
+
equals?: $Enums.BuilderWebsitesSourceType | EnumBuilderWebsitesSourceTypeFieldRefInput<$PrismaModel>
|
|
51460
|
+
in?: $Enums.BuilderWebsitesSourceType[] | ListEnumBuilderWebsitesSourceTypeFieldRefInput<$PrismaModel>
|
|
51461
|
+
notIn?: $Enums.BuilderWebsitesSourceType[] | ListEnumBuilderWebsitesSourceTypeFieldRefInput<$PrismaModel>
|
|
51462
|
+
not?: NestedEnumBuilderWebsitesSourceTypeWithAggregatesFilter<$PrismaModel> | $Enums.BuilderWebsitesSourceType
|
|
51463
|
+
_count?: NestedIntFilter<$PrismaModel>
|
|
51464
|
+
_min?: NestedEnumBuilderWebsitesSourceTypeFilter<$PrismaModel>
|
|
51465
|
+
_max?: NestedEnumBuilderWebsitesSourceTypeFilter<$PrismaModel>
|
|
51466
|
+
}
|
|
51467
|
+
|
|
51468
|
+
export type EnumBuilderWebsitesSourceDataTypeNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
51469
|
+
equals?: $Enums.BuilderWebsitesSourceDataType | EnumBuilderWebsitesSourceDataTypeFieldRefInput<$PrismaModel> | null
|
|
51470
|
+
in?: $Enums.BuilderWebsitesSourceDataType[] | ListEnumBuilderWebsitesSourceDataTypeFieldRefInput<$PrismaModel> | null
|
|
51471
|
+
notIn?: $Enums.BuilderWebsitesSourceDataType[] | ListEnumBuilderWebsitesSourceDataTypeFieldRefInput<$PrismaModel> | null
|
|
51472
|
+
not?: NestedEnumBuilderWebsitesSourceDataTypeNullableWithAggregatesFilter<$PrismaModel> | $Enums.BuilderWebsitesSourceDataType | null
|
|
51473
|
+
_count?: NestedIntNullableFilter<$PrismaModel>
|
|
51474
|
+
_min?: NestedEnumBuilderWebsitesSourceDataTypeNullableFilter<$PrismaModel>
|
|
51475
|
+
_max?: NestedEnumBuilderWebsitesSourceDataTypeNullableFilter<$PrismaModel>
|
|
51476
|
+
isSet?: boolean
|
|
51477
|
+
}
|
|
51478
|
+
|
|
50061
51479
|
export type CalendarCredentialsCompositeFilter = {
|
|
50062
51480
|
equals?: CalendarCredentialsObjectEqualityInput
|
|
50063
51481
|
is?: CalendarCredentialsWhereInput
|
|
@@ -50325,11 +51743,6 @@ export namespace Prisma {
|
|
|
50325
51743
|
isNot?: CalendarWhereInput
|
|
50326
51744
|
}
|
|
50327
51745
|
|
|
50328
|
-
export type UserNullableRelationFilter = {
|
|
50329
|
-
is?: UserWhereInput | null
|
|
50330
|
-
isNot?: UserWhereInput | null
|
|
50331
|
-
}
|
|
50332
|
-
|
|
50333
51746
|
export type ClientInterviewNullableRelationFilter = {
|
|
50334
51747
|
is?: ClientInterviewWhereInput | null
|
|
50335
51748
|
isNot?: ClientInterviewWhereInput | null
|
|
@@ -53129,6 +54542,12 @@ export namespace Prisma {
|
|
|
53129
54542
|
isNot?: UserPreferenceWhereInput | null
|
|
53130
54543
|
}
|
|
53131
54544
|
|
|
54545
|
+
export type BuilderWebsitesDataListRelationFilter = {
|
|
54546
|
+
every?: BuilderWebsitesDataWhereInput
|
|
54547
|
+
some?: BuilderWebsitesDataWhereInput
|
|
54548
|
+
none?: BuilderWebsitesDataWhereInput
|
|
54549
|
+
}
|
|
54550
|
+
|
|
53132
54551
|
export type ClientRegistrationOrderByInput = {
|
|
53133
54552
|
emailVerified?: SortOrder
|
|
53134
54553
|
signupCompany?: SortOrder
|
|
@@ -53229,6 +54648,10 @@ export namespace Prisma {
|
|
|
53229
54648
|
_count?: SortOrder
|
|
53230
54649
|
}
|
|
53231
54650
|
|
|
54651
|
+
export type BuilderWebsitesDataOrderByRelationAggregateInput = {
|
|
54652
|
+
_count?: SortOrder
|
|
54653
|
+
}
|
|
54654
|
+
|
|
53232
54655
|
export type UserCountOrderByAggregateInput = {
|
|
53233
54656
|
id?: SortOrder
|
|
53234
54657
|
firstName?: SortOrder
|
|
@@ -53914,6 +55337,35 @@ export namespace Prisma {
|
|
|
53914
55337
|
deleteMany?: AccountScalarWhereInput | AccountScalarWhereInput[]
|
|
53915
55338
|
}
|
|
53916
55339
|
|
|
55340
|
+
export type UserCreateNestedOneWithoutBuilderWebsitesDataInput = {
|
|
55341
|
+
create?: XOR<UserCreateWithoutBuilderWebsitesDataInput, UserUncheckedCreateWithoutBuilderWebsitesDataInput>
|
|
55342
|
+
connectOrCreate?: UserCreateOrConnectWithoutBuilderWebsitesDataInput
|
|
55343
|
+
connect?: UserWhereUniqueInput
|
|
55344
|
+
}
|
|
55345
|
+
|
|
55346
|
+
export type EnumBuilderWebsitesSourceTypeFieldUpdateOperationsInput = {
|
|
55347
|
+
set?: $Enums.BuilderWebsitesSourceType
|
|
55348
|
+
}
|
|
55349
|
+
|
|
55350
|
+
export type StringFieldUpdateOperationsInput = {
|
|
55351
|
+
set?: string
|
|
55352
|
+
}
|
|
55353
|
+
|
|
55354
|
+
export type NullableEnumBuilderWebsitesSourceDataTypeFieldUpdateOperationsInput = {
|
|
55355
|
+
set?: $Enums.BuilderWebsitesSourceDataType | null
|
|
55356
|
+
unset?: boolean
|
|
55357
|
+
}
|
|
55358
|
+
|
|
55359
|
+
export type UserUpdateOneWithoutBuilderWebsitesDataNestedInput = {
|
|
55360
|
+
create?: XOR<UserCreateWithoutBuilderWebsitesDataInput, UserUncheckedCreateWithoutBuilderWebsitesDataInput>
|
|
55361
|
+
connectOrCreate?: UserCreateOrConnectWithoutBuilderWebsitesDataInput
|
|
55362
|
+
upsert?: UserUpsertWithoutBuilderWebsitesDataInput
|
|
55363
|
+
disconnect?: boolean
|
|
55364
|
+
delete?: UserWhereInput | boolean
|
|
55365
|
+
connect?: UserWhereUniqueInput
|
|
55366
|
+
update?: XOR<XOR<UserUpdateToOneWithWhereWithoutBuilderWebsitesDataInput, UserUpdateWithoutBuilderWebsitesDataInput>, UserUncheckedUpdateWithoutBuilderWebsitesDataInput>
|
|
55367
|
+
}
|
|
55368
|
+
|
|
53917
55369
|
export type CalendarCredentialsCreateEnvelopeInput = {
|
|
53918
55370
|
set?: CalendarCredentialsCreateInput
|
|
53919
55371
|
}
|
|
@@ -53954,10 +55406,6 @@ export namespace Prisma {
|
|
|
53954
55406
|
update?: CalendarCredentialsUpdateInput
|
|
53955
55407
|
}
|
|
53956
55408
|
|
|
53957
|
-
export type StringFieldUpdateOperationsInput = {
|
|
53958
|
-
set?: string
|
|
53959
|
-
}
|
|
53960
|
-
|
|
53961
55409
|
export type EnumCalendarProviderFieldUpdateOperationsInput = {
|
|
53962
55410
|
set?: $Enums.CalendarProvider
|
|
53963
55411
|
}
|
|
@@ -56489,6 +57937,13 @@ export namespace Prisma {
|
|
|
56489
57937
|
connect?: ContractWhereUniqueInput | ContractWhereUniqueInput[]
|
|
56490
57938
|
}
|
|
56491
57939
|
|
|
57940
|
+
export type BuilderWebsitesDataCreateNestedManyWithoutBuilderInput = {
|
|
57941
|
+
create?: XOR<BuilderWebsitesDataCreateWithoutBuilderInput, BuilderWebsitesDataUncheckedCreateWithoutBuilderInput> | BuilderWebsitesDataCreateWithoutBuilderInput[] | BuilderWebsitesDataUncheckedCreateWithoutBuilderInput[]
|
|
57942
|
+
connectOrCreate?: BuilderWebsitesDataCreateOrConnectWithoutBuilderInput | BuilderWebsitesDataCreateOrConnectWithoutBuilderInput[]
|
|
57943
|
+
createMany?: BuilderWebsitesDataCreateManyBuilderInputEnvelope
|
|
57944
|
+
connect?: BuilderWebsitesDataWhereUniqueInput | BuilderWebsitesDataWhereUniqueInput[]
|
|
57945
|
+
}
|
|
57946
|
+
|
|
56492
57947
|
export type MissionUncheckedCreateNestedManyWithoutCreatorModelInput = {
|
|
56493
57948
|
create?: XOR<MissionCreateWithoutCreatorModelInput, MissionUncheckedCreateWithoutCreatorModelInput> | MissionCreateWithoutCreatorModelInput[] | MissionUncheckedCreateWithoutCreatorModelInput[]
|
|
56494
57949
|
connectOrCreate?: MissionCreateOrConnectWithoutCreatorModelInput | MissionCreateOrConnectWithoutCreatorModelInput[]
|
|
@@ -56627,6 +58082,13 @@ export namespace Prisma {
|
|
|
56627
58082
|
connect?: ContractWhereUniqueInput | ContractWhereUniqueInput[]
|
|
56628
58083
|
}
|
|
56629
58084
|
|
|
58085
|
+
export type BuilderWebsitesDataUncheckedCreateNestedManyWithoutBuilderInput = {
|
|
58086
|
+
create?: XOR<BuilderWebsitesDataCreateWithoutBuilderInput, BuilderWebsitesDataUncheckedCreateWithoutBuilderInput> | BuilderWebsitesDataCreateWithoutBuilderInput[] | BuilderWebsitesDataUncheckedCreateWithoutBuilderInput[]
|
|
58087
|
+
connectOrCreate?: BuilderWebsitesDataCreateOrConnectWithoutBuilderInput | BuilderWebsitesDataCreateOrConnectWithoutBuilderInput[]
|
|
58088
|
+
createMany?: BuilderWebsitesDataCreateManyBuilderInputEnvelope
|
|
58089
|
+
connect?: BuilderWebsitesDataWhereUniqueInput | BuilderWebsitesDataWhereUniqueInput[]
|
|
58090
|
+
}
|
|
58091
|
+
|
|
56630
58092
|
export type EnumUserStatusFieldUpdateOperationsInput = {
|
|
56631
58093
|
set?: $Enums.UserStatus
|
|
56632
58094
|
}
|
|
@@ -57015,6 +58477,20 @@ export namespace Prisma {
|
|
|
57015
58477
|
deleteMany?: ContractScalarWhereInput | ContractScalarWhereInput[]
|
|
57016
58478
|
}
|
|
57017
58479
|
|
|
58480
|
+
export type BuilderWebsitesDataUpdateManyWithoutBuilderNestedInput = {
|
|
58481
|
+
create?: XOR<BuilderWebsitesDataCreateWithoutBuilderInput, BuilderWebsitesDataUncheckedCreateWithoutBuilderInput> | BuilderWebsitesDataCreateWithoutBuilderInput[] | BuilderWebsitesDataUncheckedCreateWithoutBuilderInput[]
|
|
58482
|
+
connectOrCreate?: BuilderWebsitesDataCreateOrConnectWithoutBuilderInput | BuilderWebsitesDataCreateOrConnectWithoutBuilderInput[]
|
|
58483
|
+
upsert?: BuilderWebsitesDataUpsertWithWhereUniqueWithoutBuilderInput | BuilderWebsitesDataUpsertWithWhereUniqueWithoutBuilderInput[]
|
|
58484
|
+
createMany?: BuilderWebsitesDataCreateManyBuilderInputEnvelope
|
|
58485
|
+
set?: BuilderWebsitesDataWhereUniqueInput | BuilderWebsitesDataWhereUniqueInput[]
|
|
58486
|
+
disconnect?: BuilderWebsitesDataWhereUniqueInput | BuilderWebsitesDataWhereUniqueInput[]
|
|
58487
|
+
delete?: BuilderWebsitesDataWhereUniqueInput | BuilderWebsitesDataWhereUniqueInput[]
|
|
58488
|
+
connect?: BuilderWebsitesDataWhereUniqueInput | BuilderWebsitesDataWhereUniqueInput[]
|
|
58489
|
+
update?: BuilderWebsitesDataUpdateWithWhereUniqueWithoutBuilderInput | BuilderWebsitesDataUpdateWithWhereUniqueWithoutBuilderInput[]
|
|
58490
|
+
updateMany?: BuilderWebsitesDataUpdateManyWithWhereWithoutBuilderInput | BuilderWebsitesDataUpdateManyWithWhereWithoutBuilderInput[]
|
|
58491
|
+
deleteMany?: BuilderWebsitesDataScalarWhereInput | BuilderWebsitesDataScalarWhereInput[]
|
|
58492
|
+
}
|
|
58493
|
+
|
|
57018
58494
|
export type MissionUncheckedUpdateManyWithoutCreatorModelNestedInput = {
|
|
57019
58495
|
create?: XOR<MissionCreateWithoutCreatorModelInput, MissionUncheckedCreateWithoutCreatorModelInput> | MissionCreateWithoutCreatorModelInput[] | MissionUncheckedCreateWithoutCreatorModelInput[]
|
|
57020
58496
|
connectOrCreate?: MissionCreateOrConnectWithoutCreatorModelInput | MissionCreateOrConnectWithoutCreatorModelInput[]
|
|
@@ -57287,6 +58763,20 @@ export namespace Prisma {
|
|
|
57287
58763
|
deleteMany?: ContractScalarWhereInput | ContractScalarWhereInput[]
|
|
57288
58764
|
}
|
|
57289
58765
|
|
|
58766
|
+
export type BuilderWebsitesDataUncheckedUpdateManyWithoutBuilderNestedInput = {
|
|
58767
|
+
create?: XOR<BuilderWebsitesDataCreateWithoutBuilderInput, BuilderWebsitesDataUncheckedCreateWithoutBuilderInput> | BuilderWebsitesDataCreateWithoutBuilderInput[] | BuilderWebsitesDataUncheckedCreateWithoutBuilderInput[]
|
|
58768
|
+
connectOrCreate?: BuilderWebsitesDataCreateOrConnectWithoutBuilderInput | BuilderWebsitesDataCreateOrConnectWithoutBuilderInput[]
|
|
58769
|
+
upsert?: BuilderWebsitesDataUpsertWithWhereUniqueWithoutBuilderInput | BuilderWebsitesDataUpsertWithWhereUniqueWithoutBuilderInput[]
|
|
58770
|
+
createMany?: BuilderWebsitesDataCreateManyBuilderInputEnvelope
|
|
58771
|
+
set?: BuilderWebsitesDataWhereUniqueInput | BuilderWebsitesDataWhereUniqueInput[]
|
|
58772
|
+
disconnect?: BuilderWebsitesDataWhereUniqueInput | BuilderWebsitesDataWhereUniqueInput[]
|
|
58773
|
+
delete?: BuilderWebsitesDataWhereUniqueInput | BuilderWebsitesDataWhereUniqueInput[]
|
|
58774
|
+
connect?: BuilderWebsitesDataWhereUniqueInput | BuilderWebsitesDataWhereUniqueInput[]
|
|
58775
|
+
update?: BuilderWebsitesDataUpdateWithWhereUniqueWithoutBuilderInput | BuilderWebsitesDataUpdateWithWhereUniqueWithoutBuilderInput[]
|
|
58776
|
+
updateMany?: BuilderWebsitesDataUpdateManyWithWhereWithoutBuilderInput | BuilderWebsitesDataUpdateManyWithWhereWithoutBuilderInput[]
|
|
58777
|
+
deleteMany?: BuilderWebsitesDataScalarWhereInput | BuilderWebsitesDataScalarWhereInput[]
|
|
58778
|
+
}
|
|
58779
|
+
|
|
57290
58780
|
export type PreferencesCreateEnvelopeInput = {
|
|
57291
58781
|
set?: PreferencesCreateInput
|
|
57292
58782
|
}
|
|
@@ -57597,6 +59087,42 @@ export namespace Prisma {
|
|
|
57597
59087
|
state?: SortOrder
|
|
57598
59088
|
}
|
|
57599
59089
|
|
|
59090
|
+
export type NestedEnumBuilderWebsitesSourceTypeFilter<$PrismaModel = never> = {
|
|
59091
|
+
equals?: $Enums.BuilderWebsitesSourceType | EnumBuilderWebsitesSourceTypeFieldRefInput<$PrismaModel>
|
|
59092
|
+
in?: $Enums.BuilderWebsitesSourceType[] | ListEnumBuilderWebsitesSourceTypeFieldRefInput<$PrismaModel>
|
|
59093
|
+
notIn?: $Enums.BuilderWebsitesSourceType[] | ListEnumBuilderWebsitesSourceTypeFieldRefInput<$PrismaModel>
|
|
59094
|
+
not?: NestedEnumBuilderWebsitesSourceTypeFilter<$PrismaModel> | $Enums.BuilderWebsitesSourceType
|
|
59095
|
+
}
|
|
59096
|
+
|
|
59097
|
+
export type NestedEnumBuilderWebsitesSourceDataTypeNullableFilter<$PrismaModel = never> = {
|
|
59098
|
+
equals?: $Enums.BuilderWebsitesSourceDataType | EnumBuilderWebsitesSourceDataTypeFieldRefInput<$PrismaModel> | null
|
|
59099
|
+
in?: $Enums.BuilderWebsitesSourceDataType[] | ListEnumBuilderWebsitesSourceDataTypeFieldRefInput<$PrismaModel> | null
|
|
59100
|
+
notIn?: $Enums.BuilderWebsitesSourceDataType[] | ListEnumBuilderWebsitesSourceDataTypeFieldRefInput<$PrismaModel> | null
|
|
59101
|
+
not?: NestedEnumBuilderWebsitesSourceDataTypeNullableFilter<$PrismaModel> | $Enums.BuilderWebsitesSourceDataType | null
|
|
59102
|
+
isSet?: boolean
|
|
59103
|
+
}
|
|
59104
|
+
|
|
59105
|
+
export type NestedEnumBuilderWebsitesSourceTypeWithAggregatesFilter<$PrismaModel = never> = {
|
|
59106
|
+
equals?: $Enums.BuilderWebsitesSourceType | EnumBuilderWebsitesSourceTypeFieldRefInput<$PrismaModel>
|
|
59107
|
+
in?: $Enums.BuilderWebsitesSourceType[] | ListEnumBuilderWebsitesSourceTypeFieldRefInput<$PrismaModel>
|
|
59108
|
+
notIn?: $Enums.BuilderWebsitesSourceType[] | ListEnumBuilderWebsitesSourceTypeFieldRefInput<$PrismaModel>
|
|
59109
|
+
not?: NestedEnumBuilderWebsitesSourceTypeWithAggregatesFilter<$PrismaModel> | $Enums.BuilderWebsitesSourceType
|
|
59110
|
+
_count?: NestedIntFilter<$PrismaModel>
|
|
59111
|
+
_min?: NestedEnumBuilderWebsitesSourceTypeFilter<$PrismaModel>
|
|
59112
|
+
_max?: NestedEnumBuilderWebsitesSourceTypeFilter<$PrismaModel>
|
|
59113
|
+
}
|
|
59114
|
+
|
|
59115
|
+
export type NestedEnumBuilderWebsitesSourceDataTypeNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
59116
|
+
equals?: $Enums.BuilderWebsitesSourceDataType | EnumBuilderWebsitesSourceDataTypeFieldRefInput<$PrismaModel> | null
|
|
59117
|
+
in?: $Enums.BuilderWebsitesSourceDataType[] | ListEnumBuilderWebsitesSourceDataTypeFieldRefInput<$PrismaModel> | null
|
|
59118
|
+
notIn?: $Enums.BuilderWebsitesSourceDataType[] | ListEnumBuilderWebsitesSourceDataTypeFieldRefInput<$PrismaModel> | null
|
|
59119
|
+
not?: NestedEnumBuilderWebsitesSourceDataTypeNullableWithAggregatesFilter<$PrismaModel> | $Enums.BuilderWebsitesSourceDataType | null
|
|
59120
|
+
_count?: NestedIntNullableFilter<$PrismaModel>
|
|
59121
|
+
_min?: NestedEnumBuilderWebsitesSourceDataTypeNullableFilter<$PrismaModel>
|
|
59122
|
+
_max?: NestedEnumBuilderWebsitesSourceDataTypeNullableFilter<$PrismaModel>
|
|
59123
|
+
isSet?: boolean
|
|
59124
|
+
}
|
|
59125
|
+
|
|
57600
59126
|
export type CalendarCredentialsWhereInput = {
|
|
57601
59127
|
AND?: CalendarCredentialsWhereInput | CalendarCredentialsWhereInput[]
|
|
57602
59128
|
OR?: CalendarCredentialsWhereInput[]
|
|
@@ -60017,6 +61543,252 @@ export namespace Prisma {
|
|
|
60017
61543
|
migrations?: StringNullableListFilter<"Account">
|
|
60018
61544
|
}
|
|
60019
61545
|
|
|
61546
|
+
export type UserCreateWithoutBuilderWebsitesDataInput = {
|
|
61547
|
+
id?: string
|
|
61548
|
+
firstName?: string | null
|
|
61549
|
+
lastName?: string | null
|
|
61550
|
+
username?: string | null
|
|
61551
|
+
email: string
|
|
61552
|
+
isAdmin?: boolean
|
|
61553
|
+
type: string
|
|
61554
|
+
pictureURL?: string | null
|
|
61555
|
+
status: $Enums.UserStatus
|
|
61556
|
+
createdAt?: Date | string
|
|
61557
|
+
titles?: UserCreatetitlesInput | string[]
|
|
61558
|
+
scrubbed?: string | null
|
|
61559
|
+
tokenVersion: number
|
|
61560
|
+
clientRegistration?: XOR<ClientRegistrationNullableCreateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
61561
|
+
aboutMe?: string | null
|
|
61562
|
+
profileCompleteness?: XOR<ProfileCompletenessObjectNullableCreateEnvelopeInput, ProfileCompletenessObjectCreateInput> | null
|
|
61563
|
+
cvURL?: string | null
|
|
61564
|
+
linkedin?: XOR<LinkedInObjectNullableCreateEnvelopeInput, LinkedInObjectCreateInput> | null
|
|
61565
|
+
rateRange?: XOR<RateRangeNullableCreateEnvelopeInput, RateRangeCreateInput> | null
|
|
61566
|
+
talentProfile?: XOR<TalentProfileNullableCreateEnvelopeInput, TalentProfileCreateInput> | null
|
|
61567
|
+
onboardingStage?: $Enums.InternalOnboardingStage | null
|
|
61568
|
+
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
61569
|
+
availability?: XOR<AvailabilityNullableCreateEnvelopeInput, AvailabilityCreateInput> | null
|
|
61570
|
+
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
61571
|
+
dribbble?: XOR<DribbbleDataNullableCreateEnvelopeInput, DribbbleDataCreateInput> | null
|
|
61572
|
+
yearsExperience?: number | null
|
|
61573
|
+
websites?: UserCreatewebsitesInput | string[]
|
|
61574
|
+
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
61575
|
+
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
61576
|
+
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
61577
|
+
isUsingSharedCalendar?: boolean
|
|
61578
|
+
timezone?: XOR<TimezoneObjectNullableCreateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
61579
|
+
acceptTOS?: XOR<AcceptTOSNullableCreateEnvelopeInput, AcceptTOSCreateInput> | null
|
|
61580
|
+
acceptTOSHistory?: XOR<AcceptTOSListCreateEnvelopeInput, AcceptTOSCreateInput> | AcceptTOSCreateInput[]
|
|
61581
|
+
portfolio?: XOR<UserPortfolioNullableCreateEnvelopeInput, UserPortfolioCreateInput> | null
|
|
61582
|
+
createdMissionsModels?: MissionCreateNestedManyWithoutCreatorModelInput
|
|
61583
|
+
ownedMissionsModels?: MissionCreateNestedManyWithoutOwnerModelInput
|
|
61584
|
+
authoredMissionSpecs?: MissionSpecCreateNestedManyWithoutAuthorInput
|
|
61585
|
+
modifiedMissionSpecs?: MissionSpecCreateNestedManyWithoutLastModifierInput
|
|
61586
|
+
missionPrefills?: MissionPrefillCreateNestedManyWithoutUserInput
|
|
61587
|
+
missionApplication?: MissionApplicationCreateNestedManyWithoutUserModelInput
|
|
61588
|
+
authoredProposals?: ProposalCreateNestedManyWithoutCreatedByModelInput
|
|
61589
|
+
sharedProposals?: ProposalCreateNestedManyWithoutSharedByModelInput
|
|
61590
|
+
linkedInRecommendations?: LinkedInRecommendationCreateNestedManyWithoutUserInput
|
|
61591
|
+
givenReviews?: UserReviewCreateNestedManyWithoutFromUserModelInput
|
|
61592
|
+
receivedReviews?: UserReviewCreateNestedManyWithoutToUserModelInput
|
|
61593
|
+
calendar?: CalendarCreateNestedOneWithoutCalendarUserInput
|
|
61594
|
+
interviews?: CalendarEventCreateNestedManyWithoutEventOwnerInput
|
|
61595
|
+
calendarAvailability?: CalendarAvailabilityCreateNestedManyWithoutUserInput
|
|
61596
|
+
preferences?: UserPreferenceCreateNestedOneWithoutUserInput
|
|
61597
|
+
rescheduledInterviews?: CalendarEventCreateNestedManyWithoutReschedulingUserInput
|
|
61598
|
+
clientInterviews?: ClientInterviewCreateNestedManyWithoutClientInput
|
|
61599
|
+
builderInterviews?: ClientInterviewCreateNestedManyWithoutBuilderInput
|
|
61600
|
+
proposalsAsTeamAdvisor?: ProposalCreateNestedManyWithoutTeamAdvisorInput
|
|
61601
|
+
builderContracts?: ContractCreateNestedManyWithoutBuilderInput
|
|
61602
|
+
}
|
|
61603
|
+
|
|
61604
|
+
export type UserUncheckedCreateWithoutBuilderWebsitesDataInput = {
|
|
61605
|
+
id?: string
|
|
61606
|
+
firstName?: string | null
|
|
61607
|
+
lastName?: string | null
|
|
61608
|
+
username?: string | null
|
|
61609
|
+
email: string
|
|
61610
|
+
isAdmin?: boolean
|
|
61611
|
+
type: string
|
|
61612
|
+
pictureURL?: string | null
|
|
61613
|
+
status: $Enums.UserStatus
|
|
61614
|
+
createdAt?: Date | string
|
|
61615
|
+
titles?: UserCreatetitlesInput | string[]
|
|
61616
|
+
scrubbed?: string | null
|
|
61617
|
+
tokenVersion: number
|
|
61618
|
+
clientRegistration?: XOR<ClientRegistrationNullableCreateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
61619
|
+
aboutMe?: string | null
|
|
61620
|
+
profileCompleteness?: XOR<ProfileCompletenessObjectNullableCreateEnvelopeInput, ProfileCompletenessObjectCreateInput> | null
|
|
61621
|
+
cvURL?: string | null
|
|
61622
|
+
linkedin?: XOR<LinkedInObjectNullableCreateEnvelopeInput, LinkedInObjectCreateInput> | null
|
|
61623
|
+
rateRange?: XOR<RateRangeNullableCreateEnvelopeInput, RateRangeCreateInput> | null
|
|
61624
|
+
talentProfile?: XOR<TalentProfileNullableCreateEnvelopeInput, TalentProfileCreateInput> | null
|
|
61625
|
+
onboardingStage?: $Enums.InternalOnboardingStage | null
|
|
61626
|
+
missionPreferences?: XOR<MissionPreferencesNullableCreateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
61627
|
+
availability?: XOR<AvailabilityNullableCreateEnvelopeInput, AvailabilityCreateInput> | null
|
|
61628
|
+
github?: XOR<GitHubDataNullableCreateEnvelopeInput, GitHubDataCreateInput> | null
|
|
61629
|
+
dribbble?: XOR<DribbbleDataNullableCreateEnvelopeInput, DribbbleDataCreateInput> | null
|
|
61630
|
+
yearsExperience?: number | null
|
|
61631
|
+
websites?: UserCreatewebsitesInput | string[]
|
|
61632
|
+
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
61633
|
+
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
61634
|
+
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
61635
|
+
isUsingSharedCalendar?: boolean
|
|
61636
|
+
timezone?: XOR<TimezoneObjectNullableCreateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
61637
|
+
acceptTOS?: XOR<AcceptTOSNullableCreateEnvelopeInput, AcceptTOSCreateInput> | null
|
|
61638
|
+
acceptTOSHistory?: XOR<AcceptTOSListCreateEnvelopeInput, AcceptTOSCreateInput> | AcceptTOSCreateInput[]
|
|
61639
|
+
portfolio?: XOR<UserPortfolioNullableCreateEnvelopeInput, UserPortfolioCreateInput> | null
|
|
61640
|
+
createdMissionsModels?: MissionUncheckedCreateNestedManyWithoutCreatorModelInput
|
|
61641
|
+
ownedMissionsModels?: MissionUncheckedCreateNestedManyWithoutOwnerModelInput
|
|
61642
|
+
authoredMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutAuthorInput
|
|
61643
|
+
modifiedMissionSpecs?: MissionSpecUncheckedCreateNestedManyWithoutLastModifierInput
|
|
61644
|
+
missionPrefills?: MissionPrefillUncheckedCreateNestedManyWithoutUserInput
|
|
61645
|
+
missionApplication?: MissionApplicationUncheckedCreateNestedManyWithoutUserModelInput
|
|
61646
|
+
authoredProposals?: ProposalUncheckedCreateNestedManyWithoutCreatedByModelInput
|
|
61647
|
+
sharedProposals?: ProposalUncheckedCreateNestedManyWithoutSharedByModelInput
|
|
61648
|
+
linkedInRecommendations?: LinkedInRecommendationUncheckedCreateNestedManyWithoutUserInput
|
|
61649
|
+
givenReviews?: UserReviewUncheckedCreateNestedManyWithoutFromUserModelInput
|
|
61650
|
+
receivedReviews?: UserReviewUncheckedCreateNestedManyWithoutToUserModelInput
|
|
61651
|
+
calendar?: CalendarUncheckedCreateNestedOneWithoutCalendarUserInput
|
|
61652
|
+
interviews?: CalendarEventUncheckedCreateNestedManyWithoutEventOwnerInput
|
|
61653
|
+
calendarAvailability?: CalendarAvailabilityUncheckedCreateNestedManyWithoutUserInput
|
|
61654
|
+
preferences?: UserPreferenceUncheckedCreateNestedOneWithoutUserInput
|
|
61655
|
+
rescheduledInterviews?: CalendarEventUncheckedCreateNestedManyWithoutReschedulingUserInput
|
|
61656
|
+
clientInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutClientInput
|
|
61657
|
+
builderInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutBuilderInput
|
|
61658
|
+
proposalsAsTeamAdvisor?: ProposalUncheckedCreateNestedManyWithoutTeamAdvisorInput
|
|
61659
|
+
builderContracts?: ContractUncheckedCreateNestedManyWithoutBuilderInput
|
|
61660
|
+
}
|
|
61661
|
+
|
|
61662
|
+
export type UserCreateOrConnectWithoutBuilderWebsitesDataInput = {
|
|
61663
|
+
where: UserWhereUniqueInput
|
|
61664
|
+
create: XOR<UserCreateWithoutBuilderWebsitesDataInput, UserUncheckedCreateWithoutBuilderWebsitesDataInput>
|
|
61665
|
+
}
|
|
61666
|
+
|
|
61667
|
+
export type UserUpsertWithoutBuilderWebsitesDataInput = {
|
|
61668
|
+
update: XOR<UserUpdateWithoutBuilderWebsitesDataInput, UserUncheckedUpdateWithoutBuilderWebsitesDataInput>
|
|
61669
|
+
create: XOR<UserCreateWithoutBuilderWebsitesDataInput, UserUncheckedCreateWithoutBuilderWebsitesDataInput>
|
|
61670
|
+
where?: UserWhereInput
|
|
61671
|
+
}
|
|
61672
|
+
|
|
61673
|
+
export type UserUpdateToOneWithWhereWithoutBuilderWebsitesDataInput = {
|
|
61674
|
+
where?: UserWhereInput
|
|
61675
|
+
data: XOR<UserUpdateWithoutBuilderWebsitesDataInput, UserUncheckedUpdateWithoutBuilderWebsitesDataInput>
|
|
61676
|
+
}
|
|
61677
|
+
|
|
61678
|
+
export type UserUpdateWithoutBuilderWebsitesDataInput = {
|
|
61679
|
+
firstName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61680
|
+
lastName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61681
|
+
username?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61682
|
+
email?: StringFieldUpdateOperationsInput | string
|
|
61683
|
+
isAdmin?: BoolFieldUpdateOperationsInput | boolean
|
|
61684
|
+
type?: StringFieldUpdateOperationsInput | string
|
|
61685
|
+
pictureURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61686
|
+
status?: EnumUserStatusFieldUpdateOperationsInput | $Enums.UserStatus
|
|
61687
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
61688
|
+
titles?: UserUpdatetitlesInput | string[]
|
|
61689
|
+
scrubbed?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61690
|
+
tokenVersion?: IntFieldUpdateOperationsInput | number
|
|
61691
|
+
clientRegistration?: XOR<ClientRegistrationNullableUpdateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
61692
|
+
aboutMe?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61693
|
+
profileCompleteness?: XOR<ProfileCompletenessObjectNullableUpdateEnvelopeInput, ProfileCompletenessObjectCreateInput> | null
|
|
61694
|
+
cvURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61695
|
+
linkedin?: XOR<LinkedInObjectNullableUpdateEnvelopeInput, LinkedInObjectCreateInput> | null
|
|
61696
|
+
rateRange?: XOR<RateRangeNullableUpdateEnvelopeInput, RateRangeCreateInput> | null
|
|
61697
|
+
talentProfile?: XOR<TalentProfileNullableUpdateEnvelopeInput, TalentProfileCreateInput> | null
|
|
61698
|
+
onboardingStage?: NullableEnumInternalOnboardingStageFieldUpdateOperationsInput | $Enums.InternalOnboardingStage | null
|
|
61699
|
+
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
61700
|
+
availability?: XOR<AvailabilityNullableUpdateEnvelopeInput, AvailabilityCreateInput> | null
|
|
61701
|
+
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
61702
|
+
dribbble?: XOR<DribbbleDataNullableUpdateEnvelopeInput, DribbbleDataCreateInput> | null
|
|
61703
|
+
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
61704
|
+
websites?: UserUpdatewebsitesInput | string[]
|
|
61705
|
+
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
61706
|
+
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
61707
|
+
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
61708
|
+
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
61709
|
+
timezone?: XOR<TimezoneObjectNullableUpdateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
61710
|
+
acceptTOS?: XOR<AcceptTOSNullableUpdateEnvelopeInput, AcceptTOSCreateInput> | null
|
|
61711
|
+
acceptTOSHistory?: XOR<AcceptTOSListUpdateEnvelopeInput, AcceptTOSCreateInput> | AcceptTOSCreateInput[]
|
|
61712
|
+
portfolio?: XOR<UserPortfolioNullableUpdateEnvelopeInput, UserPortfolioCreateInput> | null
|
|
61713
|
+
createdMissionsModels?: MissionUpdateManyWithoutCreatorModelNestedInput
|
|
61714
|
+
ownedMissionsModels?: MissionUpdateManyWithoutOwnerModelNestedInput
|
|
61715
|
+
authoredMissionSpecs?: MissionSpecUpdateManyWithoutAuthorNestedInput
|
|
61716
|
+
modifiedMissionSpecs?: MissionSpecUpdateManyWithoutLastModifierNestedInput
|
|
61717
|
+
missionPrefills?: MissionPrefillUpdateManyWithoutUserNestedInput
|
|
61718
|
+
missionApplication?: MissionApplicationUpdateManyWithoutUserModelNestedInput
|
|
61719
|
+
authoredProposals?: ProposalUpdateManyWithoutCreatedByModelNestedInput
|
|
61720
|
+
sharedProposals?: ProposalUpdateManyWithoutSharedByModelNestedInput
|
|
61721
|
+
linkedInRecommendations?: LinkedInRecommendationUpdateManyWithoutUserNestedInput
|
|
61722
|
+
givenReviews?: UserReviewUpdateManyWithoutFromUserModelNestedInput
|
|
61723
|
+
receivedReviews?: UserReviewUpdateManyWithoutToUserModelNestedInput
|
|
61724
|
+
calendar?: CalendarUpdateOneWithoutCalendarUserNestedInput
|
|
61725
|
+
interviews?: CalendarEventUpdateManyWithoutEventOwnerNestedInput
|
|
61726
|
+
calendarAvailability?: CalendarAvailabilityUpdateManyWithoutUserNestedInput
|
|
61727
|
+
preferences?: UserPreferenceUpdateOneWithoutUserNestedInput
|
|
61728
|
+
rescheduledInterviews?: CalendarEventUpdateManyWithoutReschedulingUserNestedInput
|
|
61729
|
+
clientInterviews?: ClientInterviewUpdateManyWithoutClientNestedInput
|
|
61730
|
+
builderInterviews?: ClientInterviewUpdateManyWithoutBuilderNestedInput
|
|
61731
|
+
proposalsAsTeamAdvisor?: ProposalUpdateManyWithoutTeamAdvisorNestedInput
|
|
61732
|
+
builderContracts?: ContractUpdateManyWithoutBuilderNestedInput
|
|
61733
|
+
}
|
|
61734
|
+
|
|
61735
|
+
export type UserUncheckedUpdateWithoutBuilderWebsitesDataInput = {
|
|
61736
|
+
firstName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61737
|
+
lastName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61738
|
+
username?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61739
|
+
email?: StringFieldUpdateOperationsInput | string
|
|
61740
|
+
isAdmin?: BoolFieldUpdateOperationsInput | boolean
|
|
61741
|
+
type?: StringFieldUpdateOperationsInput | string
|
|
61742
|
+
pictureURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61743
|
+
status?: EnumUserStatusFieldUpdateOperationsInput | $Enums.UserStatus
|
|
61744
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
61745
|
+
titles?: UserUpdatetitlesInput | string[]
|
|
61746
|
+
scrubbed?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61747
|
+
tokenVersion?: IntFieldUpdateOperationsInput | number
|
|
61748
|
+
clientRegistration?: XOR<ClientRegistrationNullableUpdateEnvelopeInput, ClientRegistrationCreateInput> | null
|
|
61749
|
+
aboutMe?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61750
|
+
profileCompleteness?: XOR<ProfileCompletenessObjectNullableUpdateEnvelopeInput, ProfileCompletenessObjectCreateInput> | null
|
|
61751
|
+
cvURL?: NullableStringFieldUpdateOperationsInput | string | null
|
|
61752
|
+
linkedin?: XOR<LinkedInObjectNullableUpdateEnvelopeInput, LinkedInObjectCreateInput> | null
|
|
61753
|
+
rateRange?: XOR<RateRangeNullableUpdateEnvelopeInput, RateRangeCreateInput> | null
|
|
61754
|
+
talentProfile?: XOR<TalentProfileNullableUpdateEnvelopeInput, TalentProfileCreateInput> | null
|
|
61755
|
+
onboardingStage?: NullableEnumInternalOnboardingStageFieldUpdateOperationsInput | $Enums.InternalOnboardingStage | null
|
|
61756
|
+
missionPreferences?: XOR<MissionPreferencesNullableUpdateEnvelopeInput, MissionPreferencesCreateInput> | null
|
|
61757
|
+
availability?: XOR<AvailabilityNullableUpdateEnvelopeInput, AvailabilityCreateInput> | null
|
|
61758
|
+
github?: XOR<GitHubDataNullableUpdateEnvelopeInput, GitHubDataCreateInput> | null
|
|
61759
|
+
dribbble?: XOR<DribbbleDataNullableUpdateEnvelopeInput, DribbbleDataCreateInput> | null
|
|
61760
|
+
yearsExperience?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
61761
|
+
websites?: UserUpdatewebsitesInput | string[]
|
|
61762
|
+
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
61763
|
+
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
61764
|
+
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
61765
|
+
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
61766
|
+
timezone?: XOR<TimezoneObjectNullableUpdateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
61767
|
+
acceptTOS?: XOR<AcceptTOSNullableUpdateEnvelopeInput, AcceptTOSCreateInput> | null
|
|
61768
|
+
acceptTOSHistory?: XOR<AcceptTOSListUpdateEnvelopeInput, AcceptTOSCreateInput> | AcceptTOSCreateInput[]
|
|
61769
|
+
portfolio?: XOR<UserPortfolioNullableUpdateEnvelopeInput, UserPortfolioCreateInput> | null
|
|
61770
|
+
createdMissionsModels?: MissionUncheckedUpdateManyWithoutCreatorModelNestedInput
|
|
61771
|
+
ownedMissionsModels?: MissionUncheckedUpdateManyWithoutOwnerModelNestedInput
|
|
61772
|
+
authoredMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutAuthorNestedInput
|
|
61773
|
+
modifiedMissionSpecs?: MissionSpecUncheckedUpdateManyWithoutLastModifierNestedInput
|
|
61774
|
+
missionPrefills?: MissionPrefillUncheckedUpdateManyWithoutUserNestedInput
|
|
61775
|
+
missionApplication?: MissionApplicationUncheckedUpdateManyWithoutUserModelNestedInput
|
|
61776
|
+
authoredProposals?: ProposalUncheckedUpdateManyWithoutCreatedByModelNestedInput
|
|
61777
|
+
sharedProposals?: ProposalUncheckedUpdateManyWithoutSharedByModelNestedInput
|
|
61778
|
+
linkedInRecommendations?: LinkedInRecommendationUncheckedUpdateManyWithoutUserNestedInput
|
|
61779
|
+
givenReviews?: UserReviewUncheckedUpdateManyWithoutFromUserModelNestedInput
|
|
61780
|
+
receivedReviews?: UserReviewUncheckedUpdateManyWithoutToUserModelNestedInput
|
|
61781
|
+
calendar?: CalendarUncheckedUpdateOneWithoutCalendarUserNestedInput
|
|
61782
|
+
interviews?: CalendarEventUncheckedUpdateManyWithoutEventOwnerNestedInput
|
|
61783
|
+
calendarAvailability?: CalendarAvailabilityUncheckedUpdateManyWithoutUserNestedInput
|
|
61784
|
+
preferences?: UserPreferenceUncheckedUpdateOneWithoutUserNestedInput
|
|
61785
|
+
rescheduledInterviews?: CalendarEventUncheckedUpdateManyWithoutReschedulingUserNestedInput
|
|
61786
|
+
clientInterviews?: ClientInterviewUncheckedUpdateManyWithoutClientNestedInput
|
|
61787
|
+
builderInterviews?: ClientInterviewUncheckedUpdateManyWithoutBuilderNestedInput
|
|
61788
|
+
proposalsAsTeamAdvisor?: ProposalUncheckedUpdateManyWithoutTeamAdvisorNestedInput
|
|
61789
|
+
builderContracts?: ContractUncheckedUpdateManyWithoutBuilderNestedInput
|
|
61790
|
+
}
|
|
61791
|
+
|
|
60020
61792
|
export type UserCreateWithoutCalendarInput = {
|
|
60021
61793
|
id?: string
|
|
60022
61794
|
firstName?: string | null
|
|
@@ -60072,6 +61844,7 @@ export namespace Prisma {
|
|
|
60072
61844
|
builderInterviews?: ClientInterviewCreateNestedManyWithoutBuilderInput
|
|
60073
61845
|
proposalsAsTeamAdvisor?: ProposalCreateNestedManyWithoutTeamAdvisorInput
|
|
60074
61846
|
builderContracts?: ContractCreateNestedManyWithoutBuilderInput
|
|
61847
|
+
builderWebsitesData?: BuilderWebsitesDataCreateNestedManyWithoutBuilderInput
|
|
60075
61848
|
}
|
|
60076
61849
|
|
|
60077
61850
|
export type UserUncheckedCreateWithoutCalendarInput = {
|
|
@@ -60129,6 +61902,7 @@ export namespace Prisma {
|
|
|
60129
61902
|
builderInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutBuilderInput
|
|
60130
61903
|
proposalsAsTeamAdvisor?: ProposalUncheckedCreateNestedManyWithoutTeamAdvisorInput
|
|
60131
61904
|
builderContracts?: ContractUncheckedCreateNestedManyWithoutBuilderInput
|
|
61905
|
+
builderWebsitesData?: BuilderWebsitesDataUncheckedCreateNestedManyWithoutBuilderInput
|
|
60132
61906
|
}
|
|
60133
61907
|
|
|
60134
61908
|
export type UserCreateOrConnectWithoutCalendarInput = {
|
|
@@ -60271,6 +62045,7 @@ export namespace Prisma {
|
|
|
60271
62045
|
builderInterviews?: ClientInterviewUpdateManyWithoutBuilderNestedInput
|
|
60272
62046
|
proposalsAsTeamAdvisor?: ProposalUpdateManyWithoutTeamAdvisorNestedInput
|
|
60273
62047
|
builderContracts?: ContractUpdateManyWithoutBuilderNestedInput
|
|
62048
|
+
builderWebsitesData?: BuilderWebsitesDataUpdateManyWithoutBuilderNestedInput
|
|
60274
62049
|
}
|
|
60275
62050
|
|
|
60276
62051
|
export type UserUncheckedUpdateWithoutCalendarInput = {
|
|
@@ -60327,6 +62102,7 @@ export namespace Prisma {
|
|
|
60327
62102
|
builderInterviews?: ClientInterviewUncheckedUpdateManyWithoutBuilderNestedInput
|
|
60328
62103
|
proposalsAsTeamAdvisor?: ProposalUncheckedUpdateManyWithoutTeamAdvisorNestedInput
|
|
60329
62104
|
builderContracts?: ContractUncheckedUpdateManyWithoutBuilderNestedInput
|
|
62105
|
+
builderWebsitesData?: BuilderWebsitesDataUncheckedUpdateManyWithoutBuilderNestedInput
|
|
60330
62106
|
}
|
|
60331
62107
|
|
|
60332
62108
|
export type CalendarEventUpsertWithWhereUniqueWithoutCalendarInput = {
|
|
@@ -60423,6 +62199,7 @@ export namespace Prisma {
|
|
|
60423
62199
|
builderInterviews?: ClientInterviewCreateNestedManyWithoutBuilderInput
|
|
60424
62200
|
proposalsAsTeamAdvisor?: ProposalCreateNestedManyWithoutTeamAdvisorInput
|
|
60425
62201
|
builderContracts?: ContractCreateNestedManyWithoutBuilderInput
|
|
62202
|
+
builderWebsitesData?: BuilderWebsitesDataCreateNestedManyWithoutBuilderInput
|
|
60426
62203
|
}
|
|
60427
62204
|
|
|
60428
62205
|
export type UserUncheckedCreateWithoutCalendarAvailabilityInput = {
|
|
@@ -60480,6 +62257,7 @@ export namespace Prisma {
|
|
|
60480
62257
|
builderInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutBuilderInput
|
|
60481
62258
|
proposalsAsTeamAdvisor?: ProposalUncheckedCreateNestedManyWithoutTeamAdvisorInput
|
|
60482
62259
|
builderContracts?: ContractUncheckedCreateNestedManyWithoutBuilderInput
|
|
62260
|
+
builderWebsitesData?: BuilderWebsitesDataUncheckedCreateNestedManyWithoutBuilderInput
|
|
60483
62261
|
}
|
|
60484
62262
|
|
|
60485
62263
|
export type UserCreateOrConnectWithoutCalendarAvailabilityInput = {
|
|
@@ -60591,6 +62369,7 @@ export namespace Prisma {
|
|
|
60591
62369
|
builderInterviews?: ClientInterviewUpdateManyWithoutBuilderNestedInput
|
|
60592
62370
|
proposalsAsTeamAdvisor?: ProposalUpdateManyWithoutTeamAdvisorNestedInput
|
|
60593
62371
|
builderContracts?: ContractUpdateManyWithoutBuilderNestedInput
|
|
62372
|
+
builderWebsitesData?: BuilderWebsitesDataUpdateManyWithoutBuilderNestedInput
|
|
60594
62373
|
}
|
|
60595
62374
|
|
|
60596
62375
|
export type UserUncheckedUpdateWithoutCalendarAvailabilityInput = {
|
|
@@ -60647,6 +62426,7 @@ export namespace Prisma {
|
|
|
60647
62426
|
builderInterviews?: ClientInterviewUncheckedUpdateManyWithoutBuilderNestedInput
|
|
60648
62427
|
proposalsAsTeamAdvisor?: ProposalUncheckedUpdateManyWithoutTeamAdvisorNestedInput
|
|
60649
62428
|
builderContracts?: ContractUncheckedUpdateManyWithoutBuilderNestedInput
|
|
62429
|
+
builderWebsitesData?: BuilderWebsitesDataUncheckedUpdateManyWithoutBuilderNestedInput
|
|
60650
62430
|
}
|
|
60651
62431
|
|
|
60652
62432
|
export type CalendarEventTypeUpsertWithoutAvailabilitiesInput = {
|
|
@@ -60786,6 +62566,7 @@ export namespace Prisma {
|
|
|
60786
62566
|
builderInterviews?: ClientInterviewCreateNestedManyWithoutBuilderInput
|
|
60787
62567
|
proposalsAsTeamAdvisor?: ProposalCreateNestedManyWithoutTeamAdvisorInput
|
|
60788
62568
|
builderContracts?: ContractCreateNestedManyWithoutBuilderInput
|
|
62569
|
+
builderWebsitesData?: BuilderWebsitesDataCreateNestedManyWithoutBuilderInput
|
|
60789
62570
|
}
|
|
60790
62571
|
|
|
60791
62572
|
export type UserUncheckedCreateWithoutInterviewsInput = {
|
|
@@ -60843,6 +62624,7 @@ export namespace Prisma {
|
|
|
60843
62624
|
builderInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutBuilderInput
|
|
60844
62625
|
proposalsAsTeamAdvisor?: ProposalUncheckedCreateNestedManyWithoutTeamAdvisorInput
|
|
60845
62626
|
builderContracts?: ContractUncheckedCreateNestedManyWithoutBuilderInput
|
|
62627
|
+
builderWebsitesData?: BuilderWebsitesDataUncheckedCreateNestedManyWithoutBuilderInput
|
|
60846
62628
|
}
|
|
60847
62629
|
|
|
60848
62630
|
export type UserCreateOrConnectWithoutInterviewsInput = {
|
|
@@ -60930,6 +62712,7 @@ export namespace Prisma {
|
|
|
60930
62712
|
builderInterviews?: ClientInterviewCreateNestedManyWithoutBuilderInput
|
|
60931
62713
|
proposalsAsTeamAdvisor?: ProposalCreateNestedManyWithoutTeamAdvisorInput
|
|
60932
62714
|
builderContracts?: ContractCreateNestedManyWithoutBuilderInput
|
|
62715
|
+
builderWebsitesData?: BuilderWebsitesDataCreateNestedManyWithoutBuilderInput
|
|
60933
62716
|
}
|
|
60934
62717
|
|
|
60935
62718
|
export type UserUncheckedCreateWithoutRescheduledInterviewsInput = {
|
|
@@ -60987,6 +62770,7 @@ export namespace Prisma {
|
|
|
60987
62770
|
builderInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutBuilderInput
|
|
60988
62771
|
proposalsAsTeamAdvisor?: ProposalUncheckedCreateNestedManyWithoutTeamAdvisorInput
|
|
60989
62772
|
builderContracts?: ContractUncheckedCreateNestedManyWithoutBuilderInput
|
|
62773
|
+
builderWebsitesData?: BuilderWebsitesDataUncheckedCreateNestedManyWithoutBuilderInput
|
|
60990
62774
|
}
|
|
60991
62775
|
|
|
60992
62776
|
export type UserCreateOrConnectWithoutRescheduledInterviewsInput = {
|
|
@@ -61202,6 +62986,7 @@ export namespace Prisma {
|
|
|
61202
62986
|
builderInterviews?: ClientInterviewUpdateManyWithoutBuilderNestedInput
|
|
61203
62987
|
proposalsAsTeamAdvisor?: ProposalUpdateManyWithoutTeamAdvisorNestedInput
|
|
61204
62988
|
builderContracts?: ContractUpdateManyWithoutBuilderNestedInput
|
|
62989
|
+
builderWebsitesData?: BuilderWebsitesDataUpdateManyWithoutBuilderNestedInput
|
|
61205
62990
|
}
|
|
61206
62991
|
|
|
61207
62992
|
export type UserUncheckedUpdateWithoutInterviewsInput = {
|
|
@@ -61258,6 +63043,7 @@ export namespace Prisma {
|
|
|
61258
63043
|
builderInterviews?: ClientInterviewUncheckedUpdateManyWithoutBuilderNestedInput
|
|
61259
63044
|
proposalsAsTeamAdvisor?: ProposalUncheckedUpdateManyWithoutTeamAdvisorNestedInput
|
|
61260
63045
|
builderContracts?: ContractUncheckedUpdateManyWithoutBuilderNestedInput
|
|
63046
|
+
builderWebsitesData?: BuilderWebsitesDataUncheckedUpdateManyWithoutBuilderNestedInput
|
|
61261
63047
|
}
|
|
61262
63048
|
|
|
61263
63049
|
export type CalendarUpsertWithoutEventsInput = {
|
|
@@ -61354,6 +63140,7 @@ export namespace Prisma {
|
|
|
61354
63140
|
builderInterviews?: ClientInterviewUpdateManyWithoutBuilderNestedInput
|
|
61355
63141
|
proposalsAsTeamAdvisor?: ProposalUpdateManyWithoutTeamAdvisorNestedInput
|
|
61356
63142
|
builderContracts?: ContractUpdateManyWithoutBuilderNestedInput
|
|
63143
|
+
builderWebsitesData?: BuilderWebsitesDataUpdateManyWithoutBuilderNestedInput
|
|
61357
63144
|
}
|
|
61358
63145
|
|
|
61359
63146
|
export type UserUncheckedUpdateWithoutRescheduledInterviewsInput = {
|
|
@@ -61410,6 +63197,7 @@ export namespace Prisma {
|
|
|
61410
63197
|
builderInterviews?: ClientInterviewUncheckedUpdateManyWithoutBuilderNestedInput
|
|
61411
63198
|
proposalsAsTeamAdvisor?: ProposalUncheckedUpdateManyWithoutTeamAdvisorNestedInput
|
|
61412
63199
|
builderContracts?: ContractUncheckedUpdateManyWithoutBuilderNestedInput
|
|
63200
|
+
builderWebsitesData?: BuilderWebsitesDataUncheckedUpdateManyWithoutBuilderNestedInput
|
|
61413
63201
|
}
|
|
61414
63202
|
|
|
61415
63203
|
export type ClientInterviewUpsertWithoutCalendarEventInput = {
|
|
@@ -61938,6 +63726,7 @@ export namespace Prisma {
|
|
|
61938
63726
|
builderInterviews?: ClientInterviewCreateNestedManyWithoutBuilderInput
|
|
61939
63727
|
proposalsAsTeamAdvisor?: ProposalCreateNestedManyWithoutTeamAdvisorInput
|
|
61940
63728
|
builderContracts?: ContractCreateNestedManyWithoutBuilderInput
|
|
63729
|
+
builderWebsitesData?: BuilderWebsitesDataCreateNestedManyWithoutBuilderInput
|
|
61941
63730
|
}
|
|
61942
63731
|
|
|
61943
63732
|
export type UserUncheckedCreateWithoutClientInterviewsInput = {
|
|
@@ -61995,6 +63784,7 @@ export namespace Prisma {
|
|
|
61995
63784
|
builderInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutBuilderInput
|
|
61996
63785
|
proposalsAsTeamAdvisor?: ProposalUncheckedCreateNestedManyWithoutTeamAdvisorInput
|
|
61997
63786
|
builderContracts?: ContractUncheckedCreateNestedManyWithoutBuilderInput
|
|
63787
|
+
builderWebsitesData?: BuilderWebsitesDataUncheckedCreateNestedManyWithoutBuilderInput
|
|
61998
63788
|
}
|
|
61999
63789
|
|
|
62000
63790
|
export type UserCreateOrConnectWithoutClientInterviewsInput = {
|
|
@@ -62057,6 +63847,7 @@ export namespace Prisma {
|
|
|
62057
63847
|
clientInterviews?: ClientInterviewCreateNestedManyWithoutClientInput
|
|
62058
63848
|
proposalsAsTeamAdvisor?: ProposalCreateNestedManyWithoutTeamAdvisorInput
|
|
62059
63849
|
builderContracts?: ContractCreateNestedManyWithoutBuilderInput
|
|
63850
|
+
builderWebsitesData?: BuilderWebsitesDataCreateNestedManyWithoutBuilderInput
|
|
62060
63851
|
}
|
|
62061
63852
|
|
|
62062
63853
|
export type UserUncheckedCreateWithoutBuilderInterviewsInput = {
|
|
@@ -62114,6 +63905,7 @@ export namespace Prisma {
|
|
|
62114
63905
|
clientInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutClientInput
|
|
62115
63906
|
proposalsAsTeamAdvisor?: ProposalUncheckedCreateNestedManyWithoutTeamAdvisorInput
|
|
62116
63907
|
builderContracts?: ContractUncheckedCreateNestedManyWithoutBuilderInput
|
|
63908
|
+
builderWebsitesData?: BuilderWebsitesDataUncheckedCreateNestedManyWithoutBuilderInput
|
|
62117
63909
|
}
|
|
62118
63910
|
|
|
62119
63911
|
export type UserCreateOrConnectWithoutBuilderInterviewsInput = {
|
|
@@ -62374,6 +64166,7 @@ export namespace Prisma {
|
|
|
62374
64166
|
builderInterviews?: ClientInterviewUpdateManyWithoutBuilderNestedInput
|
|
62375
64167
|
proposalsAsTeamAdvisor?: ProposalUpdateManyWithoutTeamAdvisorNestedInput
|
|
62376
64168
|
builderContracts?: ContractUpdateManyWithoutBuilderNestedInput
|
|
64169
|
+
builderWebsitesData?: BuilderWebsitesDataUpdateManyWithoutBuilderNestedInput
|
|
62377
64170
|
}
|
|
62378
64171
|
|
|
62379
64172
|
export type UserUncheckedUpdateWithoutClientInterviewsInput = {
|
|
@@ -62430,6 +64223,7 @@ export namespace Prisma {
|
|
|
62430
64223
|
builderInterviews?: ClientInterviewUncheckedUpdateManyWithoutBuilderNestedInput
|
|
62431
64224
|
proposalsAsTeamAdvisor?: ProposalUncheckedUpdateManyWithoutTeamAdvisorNestedInput
|
|
62432
64225
|
builderContracts?: ContractUncheckedUpdateManyWithoutBuilderNestedInput
|
|
64226
|
+
builderWebsitesData?: BuilderWebsitesDataUncheckedUpdateManyWithoutBuilderNestedInput
|
|
62433
64227
|
}
|
|
62434
64228
|
|
|
62435
64229
|
export type UserUpsertWithoutBuilderInterviewsInput = {
|
|
@@ -62497,6 +64291,7 @@ export namespace Prisma {
|
|
|
62497
64291
|
clientInterviews?: ClientInterviewUpdateManyWithoutClientNestedInput
|
|
62498
64292
|
proposalsAsTeamAdvisor?: ProposalUpdateManyWithoutTeamAdvisorNestedInput
|
|
62499
64293
|
builderContracts?: ContractUpdateManyWithoutBuilderNestedInput
|
|
64294
|
+
builderWebsitesData?: BuilderWebsitesDataUpdateManyWithoutBuilderNestedInput
|
|
62500
64295
|
}
|
|
62501
64296
|
|
|
62502
64297
|
export type UserUncheckedUpdateWithoutBuilderInterviewsInput = {
|
|
@@ -62553,6 +64348,7 @@ export namespace Prisma {
|
|
|
62553
64348
|
clientInterviews?: ClientInterviewUncheckedUpdateManyWithoutClientNestedInput
|
|
62554
64349
|
proposalsAsTeamAdvisor?: ProposalUncheckedUpdateManyWithoutTeamAdvisorNestedInput
|
|
62555
64350
|
builderContracts?: ContractUncheckedUpdateManyWithoutBuilderNestedInput
|
|
64351
|
+
builderWebsitesData?: BuilderWebsitesDataUncheckedUpdateManyWithoutBuilderNestedInput
|
|
62556
64352
|
}
|
|
62557
64353
|
|
|
62558
64354
|
export type ProposalUpsertWithoutClientInterviewsInput = {
|
|
@@ -62982,6 +64778,7 @@ export namespace Prisma {
|
|
|
62982
64778
|
clientInterviews?: ClientInterviewCreateNestedManyWithoutClientInput
|
|
62983
64779
|
builderInterviews?: ClientInterviewCreateNestedManyWithoutBuilderInput
|
|
62984
64780
|
proposalsAsTeamAdvisor?: ProposalCreateNestedManyWithoutTeamAdvisorInput
|
|
64781
|
+
builderWebsitesData?: BuilderWebsitesDataCreateNestedManyWithoutBuilderInput
|
|
62985
64782
|
}
|
|
62986
64783
|
|
|
62987
64784
|
export type UserUncheckedCreateWithoutBuilderContractsInput = {
|
|
@@ -63039,6 +64836,7 @@ export namespace Prisma {
|
|
|
63039
64836
|
clientInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutClientInput
|
|
63040
64837
|
builderInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutBuilderInput
|
|
63041
64838
|
proposalsAsTeamAdvisor?: ProposalUncheckedCreateNestedManyWithoutTeamAdvisorInput
|
|
64839
|
+
builderWebsitesData?: BuilderWebsitesDataUncheckedCreateNestedManyWithoutBuilderInput
|
|
63042
64840
|
}
|
|
63043
64841
|
|
|
63044
64842
|
export type UserCreateOrConnectWithoutBuilderContractsInput = {
|
|
@@ -63279,6 +65077,7 @@ export namespace Prisma {
|
|
|
63279
65077
|
clientInterviews?: ClientInterviewUpdateManyWithoutClientNestedInput
|
|
63280
65078
|
builderInterviews?: ClientInterviewUpdateManyWithoutBuilderNestedInput
|
|
63281
65079
|
proposalsAsTeamAdvisor?: ProposalUpdateManyWithoutTeamAdvisorNestedInput
|
|
65080
|
+
builderWebsitesData?: BuilderWebsitesDataUpdateManyWithoutBuilderNestedInput
|
|
63282
65081
|
}
|
|
63283
65082
|
|
|
63284
65083
|
export type UserUncheckedUpdateWithoutBuilderContractsInput = {
|
|
@@ -63335,6 +65134,7 @@ export namespace Prisma {
|
|
|
63335
65134
|
clientInterviews?: ClientInterviewUncheckedUpdateManyWithoutClientNestedInput
|
|
63336
65135
|
builderInterviews?: ClientInterviewUncheckedUpdateManyWithoutBuilderNestedInput
|
|
63337
65136
|
proposalsAsTeamAdvisor?: ProposalUncheckedUpdateManyWithoutTeamAdvisorNestedInput
|
|
65137
|
+
builderWebsitesData?: BuilderWebsitesDataUncheckedUpdateManyWithoutBuilderNestedInput
|
|
63338
65138
|
}
|
|
63339
65139
|
|
|
63340
65140
|
export type MemberCustomDataCreateInput = {
|
|
@@ -63424,6 +65224,7 @@ export namespace Prisma {
|
|
|
63424
65224
|
builderInterviews?: ClientInterviewCreateNestedManyWithoutBuilderInput
|
|
63425
65225
|
proposalsAsTeamAdvisor?: ProposalCreateNestedManyWithoutTeamAdvisorInput
|
|
63426
65226
|
builderContracts?: ContractCreateNestedManyWithoutBuilderInput
|
|
65227
|
+
builderWebsitesData?: BuilderWebsitesDataCreateNestedManyWithoutBuilderInput
|
|
63427
65228
|
}
|
|
63428
65229
|
|
|
63429
65230
|
export type UserUncheckedCreateWithoutLinkedInRecommendationsInput = {
|
|
@@ -63481,6 +65282,7 @@ export namespace Prisma {
|
|
|
63481
65282
|
builderInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutBuilderInput
|
|
63482
65283
|
proposalsAsTeamAdvisor?: ProposalUncheckedCreateNestedManyWithoutTeamAdvisorInput
|
|
63483
65284
|
builderContracts?: ContractUncheckedCreateNestedManyWithoutBuilderInput
|
|
65285
|
+
builderWebsitesData?: BuilderWebsitesDataUncheckedCreateNestedManyWithoutBuilderInput
|
|
63484
65286
|
}
|
|
63485
65287
|
|
|
63486
65288
|
export type UserCreateOrConnectWithoutLinkedInRecommendationsInput = {
|
|
@@ -63566,6 +65368,7 @@ export namespace Prisma {
|
|
|
63566
65368
|
builderInterviews?: ClientInterviewUpdateManyWithoutBuilderNestedInput
|
|
63567
65369
|
proposalsAsTeamAdvisor?: ProposalUpdateManyWithoutTeamAdvisorNestedInput
|
|
63568
65370
|
builderContracts?: ContractUpdateManyWithoutBuilderNestedInput
|
|
65371
|
+
builderWebsitesData?: BuilderWebsitesDataUpdateManyWithoutBuilderNestedInput
|
|
63569
65372
|
}
|
|
63570
65373
|
|
|
63571
65374
|
export type UserUncheckedUpdateWithoutLinkedInRecommendationsInput = {
|
|
@@ -63622,6 +65425,7 @@ export namespace Prisma {
|
|
|
63622
65425
|
builderInterviews?: ClientInterviewUncheckedUpdateManyWithoutBuilderNestedInput
|
|
63623
65426
|
proposalsAsTeamAdvisor?: ProposalUncheckedUpdateManyWithoutTeamAdvisorNestedInput
|
|
63624
65427
|
builderContracts?: ContractUncheckedUpdateManyWithoutBuilderNestedInput
|
|
65428
|
+
builderWebsitesData?: BuilderWebsitesDataUncheckedUpdateManyWithoutBuilderNestedInput
|
|
63625
65429
|
}
|
|
63626
65430
|
|
|
63627
65431
|
export type MissionRoleAvailabilityCreateInput = {
|
|
@@ -63780,6 +65584,7 @@ export namespace Prisma {
|
|
|
63780
65584
|
builderInterviews?: ClientInterviewCreateNestedManyWithoutBuilderInput
|
|
63781
65585
|
proposalsAsTeamAdvisor?: ProposalCreateNestedManyWithoutTeamAdvisorInput
|
|
63782
65586
|
builderContracts?: ContractCreateNestedManyWithoutBuilderInput
|
|
65587
|
+
builderWebsitesData?: BuilderWebsitesDataCreateNestedManyWithoutBuilderInput
|
|
63783
65588
|
}
|
|
63784
65589
|
|
|
63785
65590
|
export type UserUncheckedCreateWithoutCreatedMissionsModelsInput = {
|
|
@@ -63837,6 +65642,7 @@ export namespace Prisma {
|
|
|
63837
65642
|
builderInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutBuilderInput
|
|
63838
65643
|
proposalsAsTeamAdvisor?: ProposalUncheckedCreateNestedManyWithoutTeamAdvisorInput
|
|
63839
65644
|
builderContracts?: ContractUncheckedCreateNestedManyWithoutBuilderInput
|
|
65645
|
+
builderWebsitesData?: BuilderWebsitesDataUncheckedCreateNestedManyWithoutBuilderInput
|
|
63840
65646
|
}
|
|
63841
65647
|
|
|
63842
65648
|
export type UserCreateOrConnectWithoutCreatedMissionsModelsInput = {
|
|
@@ -63964,6 +65770,7 @@ export namespace Prisma {
|
|
|
63964
65770
|
builderInterviews?: ClientInterviewCreateNestedManyWithoutBuilderInput
|
|
63965
65771
|
proposalsAsTeamAdvisor?: ProposalCreateNestedManyWithoutTeamAdvisorInput
|
|
63966
65772
|
builderContracts?: ContractCreateNestedManyWithoutBuilderInput
|
|
65773
|
+
builderWebsitesData?: BuilderWebsitesDataCreateNestedManyWithoutBuilderInput
|
|
63967
65774
|
}
|
|
63968
65775
|
|
|
63969
65776
|
export type UserUncheckedCreateWithoutOwnedMissionsModelsInput = {
|
|
@@ -64021,6 +65828,7 @@ export namespace Prisma {
|
|
|
64021
65828
|
builderInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutBuilderInput
|
|
64022
65829
|
proposalsAsTeamAdvisor?: ProposalUncheckedCreateNestedManyWithoutTeamAdvisorInput
|
|
64023
65830
|
builderContracts?: ContractUncheckedCreateNestedManyWithoutBuilderInput
|
|
65831
|
+
builderWebsitesData?: BuilderWebsitesDataUncheckedCreateNestedManyWithoutBuilderInput
|
|
64024
65832
|
}
|
|
64025
65833
|
|
|
64026
65834
|
export type UserCreateOrConnectWithoutOwnedMissionsModelsInput = {
|
|
@@ -64349,6 +66157,7 @@ export namespace Prisma {
|
|
|
64349
66157
|
builderInterviews?: ClientInterviewUpdateManyWithoutBuilderNestedInput
|
|
64350
66158
|
proposalsAsTeamAdvisor?: ProposalUpdateManyWithoutTeamAdvisorNestedInput
|
|
64351
66159
|
builderContracts?: ContractUpdateManyWithoutBuilderNestedInput
|
|
66160
|
+
builderWebsitesData?: BuilderWebsitesDataUpdateManyWithoutBuilderNestedInput
|
|
64352
66161
|
}
|
|
64353
66162
|
|
|
64354
66163
|
export type UserUncheckedUpdateWithoutCreatedMissionsModelsInput = {
|
|
@@ -64405,6 +66214,7 @@ export namespace Prisma {
|
|
|
64405
66214
|
builderInterviews?: ClientInterviewUncheckedUpdateManyWithoutBuilderNestedInput
|
|
64406
66215
|
proposalsAsTeamAdvisor?: ProposalUncheckedUpdateManyWithoutTeamAdvisorNestedInput
|
|
64407
66216
|
builderContracts?: ContractUncheckedUpdateManyWithoutBuilderNestedInput
|
|
66217
|
+
builderWebsitesData?: BuilderWebsitesDataUncheckedUpdateManyWithoutBuilderNestedInput
|
|
64408
66218
|
}
|
|
64409
66219
|
|
|
64410
66220
|
export type MissionSpecUpsertWithoutMissionInput = {
|
|
@@ -64541,6 +66351,7 @@ export namespace Prisma {
|
|
|
64541
66351
|
builderInterviews?: ClientInterviewUpdateManyWithoutBuilderNestedInput
|
|
64542
66352
|
proposalsAsTeamAdvisor?: ProposalUpdateManyWithoutTeamAdvisorNestedInput
|
|
64543
66353
|
builderContracts?: ContractUpdateManyWithoutBuilderNestedInput
|
|
66354
|
+
builderWebsitesData?: BuilderWebsitesDataUpdateManyWithoutBuilderNestedInput
|
|
64544
66355
|
}
|
|
64545
66356
|
|
|
64546
66357
|
export type UserUncheckedUpdateWithoutOwnedMissionsModelsInput = {
|
|
@@ -64597,6 +66408,7 @@ export namespace Prisma {
|
|
|
64597
66408
|
builderInterviews?: ClientInterviewUncheckedUpdateManyWithoutBuilderNestedInput
|
|
64598
66409
|
proposalsAsTeamAdvisor?: ProposalUncheckedUpdateManyWithoutTeamAdvisorNestedInput
|
|
64599
66410
|
builderContracts?: ContractUncheckedUpdateManyWithoutBuilderNestedInput
|
|
66411
|
+
builderWebsitesData?: BuilderWebsitesDataUncheckedUpdateManyWithoutBuilderNestedInput
|
|
64600
66412
|
}
|
|
64601
66413
|
|
|
64602
66414
|
export type ContractUpsertWithWhereUniqueWithoutMissionInput = {
|
|
@@ -64772,6 +66584,7 @@ export namespace Prisma {
|
|
|
64772
66584
|
builderInterviews?: ClientInterviewCreateNestedManyWithoutBuilderInput
|
|
64773
66585
|
proposalsAsTeamAdvisor?: ProposalCreateNestedManyWithoutTeamAdvisorInput
|
|
64774
66586
|
builderContracts?: ContractCreateNestedManyWithoutBuilderInput
|
|
66587
|
+
builderWebsitesData?: BuilderWebsitesDataCreateNestedManyWithoutBuilderInput
|
|
64775
66588
|
}
|
|
64776
66589
|
|
|
64777
66590
|
export type UserUncheckedCreateWithoutMissionApplicationInput = {
|
|
@@ -64829,6 +66642,7 @@ export namespace Prisma {
|
|
|
64829
66642
|
builderInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutBuilderInput
|
|
64830
66643
|
proposalsAsTeamAdvisor?: ProposalUncheckedCreateNestedManyWithoutTeamAdvisorInput
|
|
64831
66644
|
builderContracts?: ContractUncheckedCreateNestedManyWithoutBuilderInput
|
|
66645
|
+
builderWebsitesData?: BuilderWebsitesDataUncheckedCreateNestedManyWithoutBuilderInput
|
|
64832
66646
|
}
|
|
64833
66647
|
|
|
64834
66648
|
export type UserCreateOrConnectWithoutMissionApplicationInput = {
|
|
@@ -64963,6 +66777,7 @@ export namespace Prisma {
|
|
|
64963
66777
|
builderInterviews?: ClientInterviewUpdateManyWithoutBuilderNestedInput
|
|
64964
66778
|
proposalsAsTeamAdvisor?: ProposalUpdateManyWithoutTeamAdvisorNestedInput
|
|
64965
66779
|
builderContracts?: ContractUpdateManyWithoutBuilderNestedInput
|
|
66780
|
+
builderWebsitesData?: BuilderWebsitesDataUpdateManyWithoutBuilderNestedInput
|
|
64966
66781
|
}
|
|
64967
66782
|
|
|
64968
66783
|
export type UserUncheckedUpdateWithoutMissionApplicationInput = {
|
|
@@ -65019,6 +66834,7 @@ export namespace Prisma {
|
|
|
65019
66834
|
builderInterviews?: ClientInterviewUncheckedUpdateManyWithoutBuilderNestedInput
|
|
65020
66835
|
proposalsAsTeamAdvisor?: ProposalUncheckedUpdateManyWithoutTeamAdvisorNestedInput
|
|
65021
66836
|
builderContracts?: ContractUncheckedUpdateManyWithoutBuilderNestedInput
|
|
66837
|
+
builderWebsitesData?: BuilderWebsitesDataUncheckedUpdateManyWithoutBuilderNestedInput
|
|
65022
66838
|
}
|
|
65023
66839
|
|
|
65024
66840
|
export type MissionPrefillRoleCreaterequiredSkillsInput = {
|
|
@@ -65084,6 +66900,7 @@ export namespace Prisma {
|
|
|
65084
66900
|
builderInterviews?: ClientInterviewCreateNestedManyWithoutBuilderInput
|
|
65085
66901
|
proposalsAsTeamAdvisor?: ProposalCreateNestedManyWithoutTeamAdvisorInput
|
|
65086
66902
|
builderContracts?: ContractCreateNestedManyWithoutBuilderInput
|
|
66903
|
+
builderWebsitesData?: BuilderWebsitesDataCreateNestedManyWithoutBuilderInput
|
|
65087
66904
|
}
|
|
65088
66905
|
|
|
65089
66906
|
export type UserUncheckedCreateWithoutMissionPrefillsInput = {
|
|
@@ -65141,6 +66958,7 @@ export namespace Prisma {
|
|
|
65141
66958
|
builderInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutBuilderInput
|
|
65142
66959
|
proposalsAsTeamAdvisor?: ProposalUncheckedCreateNestedManyWithoutTeamAdvisorInput
|
|
65143
66960
|
builderContracts?: ContractUncheckedCreateNestedManyWithoutBuilderInput
|
|
66961
|
+
builderWebsitesData?: BuilderWebsitesDataUncheckedCreateNestedManyWithoutBuilderInput
|
|
65144
66962
|
}
|
|
65145
66963
|
|
|
65146
66964
|
export type UserCreateOrConnectWithoutMissionPrefillsInput = {
|
|
@@ -65222,6 +67040,7 @@ export namespace Prisma {
|
|
|
65222
67040
|
builderInterviews?: ClientInterviewUpdateManyWithoutBuilderNestedInput
|
|
65223
67041
|
proposalsAsTeamAdvisor?: ProposalUpdateManyWithoutTeamAdvisorNestedInput
|
|
65224
67042
|
builderContracts?: ContractUpdateManyWithoutBuilderNestedInput
|
|
67043
|
+
builderWebsitesData?: BuilderWebsitesDataUpdateManyWithoutBuilderNestedInput
|
|
65225
67044
|
}
|
|
65226
67045
|
|
|
65227
67046
|
export type UserUncheckedUpdateWithoutMissionPrefillsInput = {
|
|
@@ -65278,6 +67097,7 @@ export namespace Prisma {
|
|
|
65278
67097
|
builderInterviews?: ClientInterviewUncheckedUpdateManyWithoutBuilderNestedInput
|
|
65279
67098
|
proposalsAsTeamAdvisor?: ProposalUncheckedUpdateManyWithoutTeamAdvisorNestedInput
|
|
65280
67099
|
builderContracts?: ContractUncheckedUpdateManyWithoutBuilderNestedInput
|
|
67100
|
+
builderWebsitesData?: BuilderWebsitesDataUncheckedUpdateManyWithoutBuilderNestedInput
|
|
65281
67101
|
}
|
|
65282
67102
|
|
|
65283
67103
|
export type ClientRoleQuestionCreateInput = {
|
|
@@ -65399,6 +67219,7 @@ export namespace Prisma {
|
|
|
65399
67219
|
builderInterviews?: ClientInterviewCreateNestedManyWithoutBuilderInput
|
|
65400
67220
|
proposalsAsTeamAdvisor?: ProposalCreateNestedManyWithoutTeamAdvisorInput
|
|
65401
67221
|
builderContracts?: ContractCreateNestedManyWithoutBuilderInput
|
|
67222
|
+
builderWebsitesData?: BuilderWebsitesDataCreateNestedManyWithoutBuilderInput
|
|
65402
67223
|
}
|
|
65403
67224
|
|
|
65404
67225
|
export type UserUncheckedCreateWithoutAuthoredMissionSpecsInput = {
|
|
@@ -65456,6 +67277,7 @@ export namespace Prisma {
|
|
|
65456
67277
|
builderInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutBuilderInput
|
|
65457
67278
|
proposalsAsTeamAdvisor?: ProposalUncheckedCreateNestedManyWithoutTeamAdvisorInput
|
|
65458
67279
|
builderContracts?: ContractUncheckedCreateNestedManyWithoutBuilderInput
|
|
67280
|
+
builderWebsitesData?: BuilderWebsitesDataUncheckedCreateNestedManyWithoutBuilderInput
|
|
65459
67281
|
}
|
|
65460
67282
|
|
|
65461
67283
|
export type UserCreateOrConnectWithoutAuthoredMissionSpecsInput = {
|
|
@@ -65553,6 +67375,7 @@ export namespace Prisma {
|
|
|
65553
67375
|
builderInterviews?: ClientInterviewCreateNestedManyWithoutBuilderInput
|
|
65554
67376
|
proposalsAsTeamAdvisor?: ProposalCreateNestedManyWithoutTeamAdvisorInput
|
|
65555
67377
|
builderContracts?: ContractCreateNestedManyWithoutBuilderInput
|
|
67378
|
+
builderWebsitesData?: BuilderWebsitesDataCreateNestedManyWithoutBuilderInput
|
|
65556
67379
|
}
|
|
65557
67380
|
|
|
65558
67381
|
export type UserUncheckedCreateWithoutModifiedMissionSpecsInput = {
|
|
@@ -65610,6 +67433,7 @@ export namespace Prisma {
|
|
|
65610
67433
|
builderInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutBuilderInput
|
|
65611
67434
|
proposalsAsTeamAdvisor?: ProposalUncheckedCreateNestedManyWithoutTeamAdvisorInput
|
|
65612
67435
|
builderContracts?: ContractUncheckedCreateNestedManyWithoutBuilderInput
|
|
67436
|
+
builderWebsitesData?: BuilderWebsitesDataUncheckedCreateNestedManyWithoutBuilderInput
|
|
65613
67437
|
}
|
|
65614
67438
|
|
|
65615
67439
|
export type UserCreateOrConnectWithoutModifiedMissionSpecsInput = {
|
|
@@ -65940,6 +67764,7 @@ export namespace Prisma {
|
|
|
65940
67764
|
builderInterviews?: ClientInterviewUpdateManyWithoutBuilderNestedInput
|
|
65941
67765
|
proposalsAsTeamAdvisor?: ProposalUpdateManyWithoutTeamAdvisorNestedInput
|
|
65942
67766
|
builderContracts?: ContractUpdateManyWithoutBuilderNestedInput
|
|
67767
|
+
builderWebsitesData?: BuilderWebsitesDataUpdateManyWithoutBuilderNestedInput
|
|
65943
67768
|
}
|
|
65944
67769
|
|
|
65945
67770
|
export type UserUncheckedUpdateWithoutAuthoredMissionSpecsInput = {
|
|
@@ -65996,6 +67821,7 @@ export namespace Prisma {
|
|
|
65996
67821
|
builderInterviews?: ClientInterviewUncheckedUpdateManyWithoutBuilderNestedInput
|
|
65997
67822
|
proposalsAsTeamAdvisor?: ProposalUncheckedUpdateManyWithoutTeamAdvisorNestedInput
|
|
65998
67823
|
builderContracts?: ContractUncheckedUpdateManyWithoutBuilderNestedInput
|
|
67824
|
+
builderWebsitesData?: BuilderWebsitesDataUncheckedUpdateManyWithoutBuilderNestedInput
|
|
65999
67825
|
}
|
|
66000
67826
|
|
|
66001
67827
|
export type ClientCompanyUpsertWithoutMissionSpecsInput = {
|
|
@@ -66102,6 +67928,7 @@ export namespace Prisma {
|
|
|
66102
67928
|
builderInterviews?: ClientInterviewUpdateManyWithoutBuilderNestedInput
|
|
66103
67929
|
proposalsAsTeamAdvisor?: ProposalUpdateManyWithoutTeamAdvisorNestedInput
|
|
66104
67930
|
builderContracts?: ContractUpdateManyWithoutBuilderNestedInput
|
|
67931
|
+
builderWebsitesData?: BuilderWebsitesDataUpdateManyWithoutBuilderNestedInput
|
|
66105
67932
|
}
|
|
66106
67933
|
|
|
66107
67934
|
export type UserUncheckedUpdateWithoutModifiedMissionSpecsInput = {
|
|
@@ -66158,6 +67985,7 @@ export namespace Prisma {
|
|
|
66158
67985
|
builderInterviews?: ClientInterviewUncheckedUpdateManyWithoutBuilderNestedInput
|
|
66159
67986
|
proposalsAsTeamAdvisor?: ProposalUncheckedUpdateManyWithoutTeamAdvisorNestedInput
|
|
66160
67987
|
builderContracts?: ContractUncheckedUpdateManyWithoutBuilderNestedInput
|
|
67988
|
+
builderWebsitesData?: BuilderWebsitesDataUncheckedUpdateManyWithoutBuilderNestedInput
|
|
66161
67989
|
}
|
|
66162
67990
|
|
|
66163
67991
|
export type MissionUpsertWithoutMissionSpecInput = {
|
|
@@ -66361,6 +68189,7 @@ export namespace Prisma {
|
|
|
66361
68189
|
builderInterviews?: ClientInterviewCreateNestedManyWithoutBuilderInput
|
|
66362
68190
|
proposalsAsTeamAdvisor?: ProposalCreateNestedManyWithoutTeamAdvisorInput
|
|
66363
68191
|
builderContracts?: ContractCreateNestedManyWithoutBuilderInput
|
|
68192
|
+
builderWebsitesData?: BuilderWebsitesDataCreateNestedManyWithoutBuilderInput
|
|
66364
68193
|
}
|
|
66365
68194
|
|
|
66366
68195
|
export type UserUncheckedCreateWithoutAuthoredProposalsInput = {
|
|
@@ -66418,6 +68247,7 @@ export namespace Prisma {
|
|
|
66418
68247
|
builderInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutBuilderInput
|
|
66419
68248
|
proposalsAsTeamAdvisor?: ProposalUncheckedCreateNestedManyWithoutTeamAdvisorInput
|
|
66420
68249
|
builderContracts?: ContractUncheckedCreateNestedManyWithoutBuilderInput
|
|
68250
|
+
builderWebsitesData?: BuilderWebsitesDataUncheckedCreateNestedManyWithoutBuilderInput
|
|
66421
68251
|
}
|
|
66422
68252
|
|
|
66423
68253
|
export type UserCreateOrConnectWithoutAuthoredProposalsInput = {
|
|
@@ -66587,6 +68417,7 @@ export namespace Prisma {
|
|
|
66587
68417
|
builderInterviews?: ClientInterviewCreateNestedManyWithoutBuilderInput
|
|
66588
68418
|
proposalsAsTeamAdvisor?: ProposalCreateNestedManyWithoutTeamAdvisorInput
|
|
66589
68419
|
builderContracts?: ContractCreateNestedManyWithoutBuilderInput
|
|
68420
|
+
builderWebsitesData?: BuilderWebsitesDataCreateNestedManyWithoutBuilderInput
|
|
66590
68421
|
}
|
|
66591
68422
|
|
|
66592
68423
|
export type UserUncheckedCreateWithoutSharedProposalsInput = {
|
|
@@ -66644,6 +68475,7 @@ export namespace Prisma {
|
|
|
66644
68475
|
builderInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutBuilderInput
|
|
66645
68476
|
proposalsAsTeamAdvisor?: ProposalUncheckedCreateNestedManyWithoutTeamAdvisorInput
|
|
66646
68477
|
builderContracts?: ContractUncheckedCreateNestedManyWithoutBuilderInput
|
|
68478
|
+
builderWebsitesData?: BuilderWebsitesDataUncheckedCreateNestedManyWithoutBuilderInput
|
|
66647
68479
|
}
|
|
66648
68480
|
|
|
66649
68481
|
export type UserCreateOrConnectWithoutSharedProposalsInput = {
|
|
@@ -66771,6 +68603,7 @@ export namespace Prisma {
|
|
|
66771
68603
|
clientInterviews?: ClientInterviewCreateNestedManyWithoutClientInput
|
|
66772
68604
|
builderInterviews?: ClientInterviewCreateNestedManyWithoutBuilderInput
|
|
66773
68605
|
builderContracts?: ContractCreateNestedManyWithoutBuilderInput
|
|
68606
|
+
builderWebsitesData?: BuilderWebsitesDataCreateNestedManyWithoutBuilderInput
|
|
66774
68607
|
}
|
|
66775
68608
|
|
|
66776
68609
|
export type UserUncheckedCreateWithoutProposalsAsTeamAdvisorInput = {
|
|
@@ -66828,6 +68661,7 @@ export namespace Prisma {
|
|
|
66828
68661
|
clientInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutClientInput
|
|
66829
68662
|
builderInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutBuilderInput
|
|
66830
68663
|
builderContracts?: ContractUncheckedCreateNestedManyWithoutBuilderInput
|
|
68664
|
+
builderWebsitesData?: BuilderWebsitesDataUncheckedCreateNestedManyWithoutBuilderInput
|
|
66831
68665
|
}
|
|
66832
68666
|
|
|
66833
68667
|
export type UserCreateOrConnectWithoutProposalsAsTeamAdvisorInput = {
|
|
@@ -66999,6 +68833,7 @@ export namespace Prisma {
|
|
|
66999
68833
|
builderInterviews?: ClientInterviewUpdateManyWithoutBuilderNestedInput
|
|
67000
68834
|
proposalsAsTeamAdvisor?: ProposalUpdateManyWithoutTeamAdvisorNestedInput
|
|
67001
68835
|
builderContracts?: ContractUpdateManyWithoutBuilderNestedInput
|
|
68836
|
+
builderWebsitesData?: BuilderWebsitesDataUpdateManyWithoutBuilderNestedInput
|
|
67002
68837
|
}
|
|
67003
68838
|
|
|
67004
68839
|
export type UserUncheckedUpdateWithoutAuthoredProposalsInput = {
|
|
@@ -67055,6 +68890,7 @@ export namespace Prisma {
|
|
|
67055
68890
|
builderInterviews?: ClientInterviewUncheckedUpdateManyWithoutBuilderNestedInput
|
|
67056
68891
|
proposalsAsTeamAdvisor?: ProposalUncheckedUpdateManyWithoutTeamAdvisorNestedInput
|
|
67057
68892
|
builderContracts?: ContractUncheckedUpdateManyWithoutBuilderNestedInput
|
|
68893
|
+
builderWebsitesData?: BuilderWebsitesDataUncheckedUpdateManyWithoutBuilderNestedInput
|
|
67058
68894
|
}
|
|
67059
68895
|
|
|
67060
68896
|
export type MissionUpsertWithoutProposalsInput = {
|
|
@@ -67233,6 +69069,7 @@ export namespace Prisma {
|
|
|
67233
69069
|
builderInterviews?: ClientInterviewUpdateManyWithoutBuilderNestedInput
|
|
67234
69070
|
proposalsAsTeamAdvisor?: ProposalUpdateManyWithoutTeamAdvisorNestedInput
|
|
67235
69071
|
builderContracts?: ContractUpdateManyWithoutBuilderNestedInput
|
|
69072
|
+
builderWebsitesData?: BuilderWebsitesDataUpdateManyWithoutBuilderNestedInput
|
|
67236
69073
|
}
|
|
67237
69074
|
|
|
67238
69075
|
export type UserUncheckedUpdateWithoutSharedProposalsInput = {
|
|
@@ -67289,6 +69126,7 @@ export namespace Prisma {
|
|
|
67289
69126
|
builderInterviews?: ClientInterviewUncheckedUpdateManyWithoutBuilderNestedInput
|
|
67290
69127
|
proposalsAsTeamAdvisor?: ProposalUncheckedUpdateManyWithoutTeamAdvisorNestedInput
|
|
67291
69128
|
builderContracts?: ContractUncheckedUpdateManyWithoutBuilderNestedInput
|
|
69129
|
+
builderWebsitesData?: BuilderWebsitesDataUncheckedUpdateManyWithoutBuilderNestedInput
|
|
67292
69130
|
}
|
|
67293
69131
|
|
|
67294
69132
|
export type MissionSpecUpsertWithoutProposalsInput = {
|
|
@@ -67425,6 +69263,7 @@ export namespace Prisma {
|
|
|
67425
69263
|
clientInterviews?: ClientInterviewUpdateManyWithoutClientNestedInput
|
|
67426
69264
|
builderInterviews?: ClientInterviewUpdateManyWithoutBuilderNestedInput
|
|
67427
69265
|
builderContracts?: ContractUpdateManyWithoutBuilderNestedInput
|
|
69266
|
+
builderWebsitesData?: BuilderWebsitesDataUpdateManyWithoutBuilderNestedInput
|
|
67428
69267
|
}
|
|
67429
69268
|
|
|
67430
69269
|
export type UserUncheckedUpdateWithoutProposalsAsTeamAdvisorInput = {
|
|
@@ -67481,6 +69320,7 @@ export namespace Prisma {
|
|
|
67481
69320
|
clientInterviews?: ClientInterviewUncheckedUpdateManyWithoutClientNestedInput
|
|
67482
69321
|
builderInterviews?: ClientInterviewUncheckedUpdateManyWithoutBuilderNestedInput
|
|
67483
69322
|
builderContracts?: ContractUncheckedUpdateManyWithoutBuilderNestedInput
|
|
69323
|
+
builderWebsitesData?: BuilderWebsitesDataUncheckedUpdateManyWithoutBuilderNestedInput
|
|
67484
69324
|
}
|
|
67485
69325
|
|
|
67486
69326
|
export type ClientInterviewUpsertWithWhereUniqueWithoutProposalInput = {
|
|
@@ -68751,6 +70591,37 @@ export namespace Prisma {
|
|
|
68751
70591
|
data: ContractCreateManyBuilderInput | ContractCreateManyBuilderInput[]
|
|
68752
70592
|
}
|
|
68753
70593
|
|
|
70594
|
+
export type BuilderWebsitesDataCreateWithoutBuilderInput = {
|
|
70595
|
+
id?: string
|
|
70596
|
+
sourceType: $Enums.BuilderWebsitesSourceType
|
|
70597
|
+
sourceUrl: string
|
|
70598
|
+
error?: string | null
|
|
70599
|
+
dataType?: $Enums.BuilderWebsitesSourceDataType | null
|
|
70600
|
+
data?: string | null
|
|
70601
|
+
createdAt?: Date | string | null
|
|
70602
|
+
updatedAt?: Date | string | null
|
|
70603
|
+
}
|
|
70604
|
+
|
|
70605
|
+
export type BuilderWebsitesDataUncheckedCreateWithoutBuilderInput = {
|
|
70606
|
+
id?: string
|
|
70607
|
+
sourceType: $Enums.BuilderWebsitesSourceType
|
|
70608
|
+
sourceUrl: string
|
|
70609
|
+
error?: string | null
|
|
70610
|
+
dataType?: $Enums.BuilderWebsitesSourceDataType | null
|
|
70611
|
+
data?: string | null
|
|
70612
|
+
createdAt?: Date | string | null
|
|
70613
|
+
updatedAt?: Date | string | null
|
|
70614
|
+
}
|
|
70615
|
+
|
|
70616
|
+
export type BuilderWebsitesDataCreateOrConnectWithoutBuilderInput = {
|
|
70617
|
+
where: BuilderWebsitesDataWhereUniqueInput
|
|
70618
|
+
create: XOR<BuilderWebsitesDataCreateWithoutBuilderInput, BuilderWebsitesDataUncheckedCreateWithoutBuilderInput>
|
|
70619
|
+
}
|
|
70620
|
+
|
|
70621
|
+
export type BuilderWebsitesDataCreateManyBuilderInputEnvelope = {
|
|
70622
|
+
data: BuilderWebsitesDataCreateManyBuilderInput | BuilderWebsitesDataCreateManyBuilderInput[]
|
|
70623
|
+
}
|
|
70624
|
+
|
|
68754
70625
|
export type ClientRegistrationUpsertInput = {
|
|
68755
70626
|
set: ClientRegistrationCreateInput | null
|
|
68756
70627
|
update: ClientRegistrationUpdateInput
|
|
@@ -69225,6 +71096,37 @@ export namespace Prisma {
|
|
|
69225
71096
|
data: XOR<ContractUpdateManyMutationInput, ContractUncheckedUpdateManyWithoutBuilderInput>
|
|
69226
71097
|
}
|
|
69227
71098
|
|
|
71099
|
+
export type BuilderWebsitesDataUpsertWithWhereUniqueWithoutBuilderInput = {
|
|
71100
|
+
where: BuilderWebsitesDataWhereUniqueInput
|
|
71101
|
+
update: XOR<BuilderWebsitesDataUpdateWithoutBuilderInput, BuilderWebsitesDataUncheckedUpdateWithoutBuilderInput>
|
|
71102
|
+
create: XOR<BuilderWebsitesDataCreateWithoutBuilderInput, BuilderWebsitesDataUncheckedCreateWithoutBuilderInput>
|
|
71103
|
+
}
|
|
71104
|
+
|
|
71105
|
+
export type BuilderWebsitesDataUpdateWithWhereUniqueWithoutBuilderInput = {
|
|
71106
|
+
where: BuilderWebsitesDataWhereUniqueInput
|
|
71107
|
+
data: XOR<BuilderWebsitesDataUpdateWithoutBuilderInput, BuilderWebsitesDataUncheckedUpdateWithoutBuilderInput>
|
|
71108
|
+
}
|
|
71109
|
+
|
|
71110
|
+
export type BuilderWebsitesDataUpdateManyWithWhereWithoutBuilderInput = {
|
|
71111
|
+
where: BuilderWebsitesDataScalarWhereInput
|
|
71112
|
+
data: XOR<BuilderWebsitesDataUpdateManyMutationInput, BuilderWebsitesDataUncheckedUpdateManyWithoutBuilderInput>
|
|
71113
|
+
}
|
|
71114
|
+
|
|
71115
|
+
export type BuilderWebsitesDataScalarWhereInput = {
|
|
71116
|
+
AND?: BuilderWebsitesDataScalarWhereInput | BuilderWebsitesDataScalarWhereInput[]
|
|
71117
|
+
OR?: BuilderWebsitesDataScalarWhereInput[]
|
|
71118
|
+
NOT?: BuilderWebsitesDataScalarWhereInput | BuilderWebsitesDataScalarWhereInput[]
|
|
71119
|
+
id?: StringFilter<"BuilderWebsitesData"> | string
|
|
71120
|
+
builderId?: StringFilter<"BuilderWebsitesData"> | string
|
|
71121
|
+
sourceType?: EnumBuilderWebsitesSourceTypeFilter<"BuilderWebsitesData"> | $Enums.BuilderWebsitesSourceType
|
|
71122
|
+
sourceUrl?: StringFilter<"BuilderWebsitesData"> | string
|
|
71123
|
+
error?: StringNullableFilter<"BuilderWebsitesData"> | string | null
|
|
71124
|
+
dataType?: EnumBuilderWebsitesSourceDataTypeNullableFilter<"BuilderWebsitesData"> | $Enums.BuilderWebsitesSourceDataType | null
|
|
71125
|
+
data?: StringNullableFilter<"BuilderWebsitesData"> | string | null
|
|
71126
|
+
createdAt?: DateTimeNullableFilter<"BuilderWebsitesData"> | Date | string | null
|
|
71127
|
+
updatedAt?: DateTimeNullableFilter<"BuilderWebsitesData"> | Date | string | null
|
|
71128
|
+
}
|
|
71129
|
+
|
|
69228
71130
|
export type BookingFrequencyCreateInput = {
|
|
69229
71131
|
perDay: number
|
|
69230
71132
|
perWeek: number
|
|
@@ -69285,6 +71187,7 @@ export namespace Prisma {
|
|
|
69285
71187
|
builderInterviews?: ClientInterviewCreateNestedManyWithoutBuilderInput
|
|
69286
71188
|
proposalsAsTeamAdvisor?: ProposalCreateNestedManyWithoutTeamAdvisorInput
|
|
69287
71189
|
builderContracts?: ContractCreateNestedManyWithoutBuilderInput
|
|
71190
|
+
builderWebsitesData?: BuilderWebsitesDataCreateNestedManyWithoutBuilderInput
|
|
69288
71191
|
}
|
|
69289
71192
|
|
|
69290
71193
|
export type UserUncheckedCreateWithoutPreferencesInput = {
|
|
@@ -69342,6 +71245,7 @@ export namespace Prisma {
|
|
|
69342
71245
|
builderInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutBuilderInput
|
|
69343
71246
|
proposalsAsTeamAdvisor?: ProposalUncheckedCreateNestedManyWithoutTeamAdvisorInput
|
|
69344
71247
|
builderContracts?: ContractUncheckedCreateNestedManyWithoutBuilderInput
|
|
71248
|
+
builderWebsitesData?: BuilderWebsitesDataUncheckedCreateNestedManyWithoutBuilderInput
|
|
69345
71249
|
}
|
|
69346
71250
|
|
|
69347
71251
|
export type UserCreateOrConnectWithoutPreferencesInput = {
|
|
@@ -69423,6 +71327,7 @@ export namespace Prisma {
|
|
|
69423
71327
|
builderInterviews?: ClientInterviewUpdateManyWithoutBuilderNestedInput
|
|
69424
71328
|
proposalsAsTeamAdvisor?: ProposalUpdateManyWithoutTeamAdvisorNestedInput
|
|
69425
71329
|
builderContracts?: ContractUpdateManyWithoutBuilderNestedInput
|
|
71330
|
+
builderWebsitesData?: BuilderWebsitesDataUpdateManyWithoutBuilderNestedInput
|
|
69426
71331
|
}
|
|
69427
71332
|
|
|
69428
71333
|
export type UserUncheckedUpdateWithoutPreferencesInput = {
|
|
@@ -69479,6 +71384,7 @@ export namespace Prisma {
|
|
|
69479
71384
|
builderInterviews?: ClientInterviewUncheckedUpdateManyWithoutBuilderNestedInput
|
|
69480
71385
|
proposalsAsTeamAdvisor?: ProposalUncheckedUpdateManyWithoutTeamAdvisorNestedInput
|
|
69481
71386
|
builderContracts?: ContractUncheckedUpdateManyWithoutBuilderNestedInput
|
|
71387
|
+
builderWebsitesData?: BuilderWebsitesDataUncheckedUpdateManyWithoutBuilderNestedInput
|
|
69482
71388
|
}
|
|
69483
71389
|
|
|
69484
71390
|
export type AccountCreateWithoutUserReviewsInput = {
|
|
@@ -69575,6 +71481,7 @@ export namespace Prisma {
|
|
|
69575
71481
|
builderInterviews?: ClientInterviewCreateNestedManyWithoutBuilderInput
|
|
69576
71482
|
proposalsAsTeamAdvisor?: ProposalCreateNestedManyWithoutTeamAdvisorInput
|
|
69577
71483
|
builderContracts?: ContractCreateNestedManyWithoutBuilderInput
|
|
71484
|
+
builderWebsitesData?: BuilderWebsitesDataCreateNestedManyWithoutBuilderInput
|
|
69578
71485
|
}
|
|
69579
71486
|
|
|
69580
71487
|
export type UserUncheckedCreateWithoutGivenReviewsInput = {
|
|
@@ -69632,6 +71539,7 @@ export namespace Prisma {
|
|
|
69632
71539
|
builderInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutBuilderInput
|
|
69633
71540
|
proposalsAsTeamAdvisor?: ProposalUncheckedCreateNestedManyWithoutTeamAdvisorInput
|
|
69634
71541
|
builderContracts?: ContractUncheckedCreateNestedManyWithoutBuilderInput
|
|
71542
|
+
builderWebsitesData?: BuilderWebsitesDataUncheckedCreateNestedManyWithoutBuilderInput
|
|
69635
71543
|
}
|
|
69636
71544
|
|
|
69637
71545
|
export type UserCreateOrConnectWithoutGivenReviewsInput = {
|
|
@@ -69694,6 +71602,7 @@ export namespace Prisma {
|
|
|
69694
71602
|
builderInterviews?: ClientInterviewCreateNestedManyWithoutBuilderInput
|
|
69695
71603
|
proposalsAsTeamAdvisor?: ProposalCreateNestedManyWithoutTeamAdvisorInput
|
|
69696
71604
|
builderContracts?: ContractCreateNestedManyWithoutBuilderInput
|
|
71605
|
+
builderWebsitesData?: BuilderWebsitesDataCreateNestedManyWithoutBuilderInput
|
|
69697
71606
|
}
|
|
69698
71607
|
|
|
69699
71608
|
export type UserUncheckedCreateWithoutReceivedReviewsInput = {
|
|
@@ -69751,6 +71660,7 @@ export namespace Prisma {
|
|
|
69751
71660
|
builderInterviews?: ClientInterviewUncheckedCreateNestedManyWithoutBuilderInput
|
|
69752
71661
|
proposalsAsTeamAdvisor?: ProposalUncheckedCreateNestedManyWithoutTeamAdvisorInput
|
|
69753
71662
|
builderContracts?: ContractUncheckedCreateNestedManyWithoutBuilderInput
|
|
71663
|
+
builderWebsitesData?: BuilderWebsitesDataUncheckedCreateNestedManyWithoutBuilderInput
|
|
69754
71664
|
}
|
|
69755
71665
|
|
|
69756
71666
|
export type UserCreateOrConnectWithoutReceivedReviewsInput = {
|
|
@@ -69983,6 +71893,7 @@ export namespace Prisma {
|
|
|
69983
71893
|
builderInterviews?: ClientInterviewUpdateManyWithoutBuilderNestedInput
|
|
69984
71894
|
proposalsAsTeamAdvisor?: ProposalUpdateManyWithoutTeamAdvisorNestedInput
|
|
69985
71895
|
builderContracts?: ContractUpdateManyWithoutBuilderNestedInput
|
|
71896
|
+
builderWebsitesData?: BuilderWebsitesDataUpdateManyWithoutBuilderNestedInput
|
|
69986
71897
|
}
|
|
69987
71898
|
|
|
69988
71899
|
export type UserUncheckedUpdateWithoutGivenReviewsInput = {
|
|
@@ -70039,6 +71950,7 @@ export namespace Prisma {
|
|
|
70039
71950
|
builderInterviews?: ClientInterviewUncheckedUpdateManyWithoutBuilderNestedInput
|
|
70040
71951
|
proposalsAsTeamAdvisor?: ProposalUncheckedUpdateManyWithoutTeamAdvisorNestedInput
|
|
70041
71952
|
builderContracts?: ContractUncheckedUpdateManyWithoutBuilderNestedInput
|
|
71953
|
+
builderWebsitesData?: BuilderWebsitesDataUncheckedUpdateManyWithoutBuilderNestedInput
|
|
70042
71954
|
}
|
|
70043
71955
|
|
|
70044
71956
|
export type UserUpsertWithoutReceivedReviewsInput = {
|
|
@@ -70106,6 +72018,7 @@ export namespace Prisma {
|
|
|
70106
72018
|
builderInterviews?: ClientInterviewUpdateManyWithoutBuilderNestedInput
|
|
70107
72019
|
proposalsAsTeamAdvisor?: ProposalUpdateManyWithoutTeamAdvisorNestedInput
|
|
70108
72020
|
builderContracts?: ContractUpdateManyWithoutBuilderNestedInput
|
|
72021
|
+
builderWebsitesData?: BuilderWebsitesDataUpdateManyWithoutBuilderNestedInput
|
|
70109
72022
|
}
|
|
70110
72023
|
|
|
70111
72024
|
export type UserUncheckedUpdateWithoutReceivedReviewsInput = {
|
|
@@ -70162,6 +72075,7 @@ export namespace Prisma {
|
|
|
70162
72075
|
builderInterviews?: ClientInterviewUncheckedUpdateManyWithoutBuilderNestedInput
|
|
70163
72076
|
proposalsAsTeamAdvisor?: ProposalUncheckedUpdateManyWithoutTeamAdvisorNestedInput
|
|
70164
72077
|
builderContracts?: ContractUncheckedUpdateManyWithoutBuilderNestedInput
|
|
72078
|
+
builderWebsitesData?: BuilderWebsitesDataUncheckedUpdateManyWithoutBuilderNestedInput
|
|
70165
72079
|
}
|
|
70166
72080
|
|
|
70167
72081
|
export type MissionUpsertWithoutUserReviewsInput = {
|
|
@@ -73246,6 +75160,17 @@ export namespace Prisma {
|
|
|
73246
75160
|
deletedAt?: Date | string | null
|
|
73247
75161
|
}
|
|
73248
75162
|
|
|
75163
|
+
export type BuilderWebsitesDataCreateManyBuilderInput = {
|
|
75164
|
+
id?: string
|
|
75165
|
+
sourceType: $Enums.BuilderWebsitesSourceType
|
|
75166
|
+
sourceUrl: string
|
|
75167
|
+
error?: string | null
|
|
75168
|
+
dataType?: $Enums.BuilderWebsitesSourceDataType | null
|
|
75169
|
+
data?: string | null
|
|
75170
|
+
createdAt?: Date | string | null
|
|
75171
|
+
updatedAt?: Date | string | null
|
|
75172
|
+
}
|
|
75173
|
+
|
|
73249
75174
|
export type ClientRegistrationUpdateInput = {
|
|
73250
75175
|
emailVerified?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
73251
75176
|
signupCompany?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -74749,6 +76674,36 @@ export namespace Prisma {
|
|
|
74749
76674
|
deletedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
74750
76675
|
}
|
|
74751
76676
|
|
|
76677
|
+
export type BuilderWebsitesDataUpdateWithoutBuilderInput = {
|
|
76678
|
+
sourceType?: EnumBuilderWebsitesSourceTypeFieldUpdateOperationsInput | $Enums.BuilderWebsitesSourceType
|
|
76679
|
+
sourceUrl?: StringFieldUpdateOperationsInput | string
|
|
76680
|
+
error?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76681
|
+
dataType?: NullableEnumBuilderWebsitesSourceDataTypeFieldUpdateOperationsInput | $Enums.BuilderWebsitesSourceDataType | null
|
|
76682
|
+
data?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76683
|
+
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
76684
|
+
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
76685
|
+
}
|
|
76686
|
+
|
|
76687
|
+
export type BuilderWebsitesDataUncheckedUpdateWithoutBuilderInput = {
|
|
76688
|
+
sourceType?: EnumBuilderWebsitesSourceTypeFieldUpdateOperationsInput | $Enums.BuilderWebsitesSourceType
|
|
76689
|
+
sourceUrl?: StringFieldUpdateOperationsInput | string
|
|
76690
|
+
error?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76691
|
+
dataType?: NullableEnumBuilderWebsitesSourceDataTypeFieldUpdateOperationsInput | $Enums.BuilderWebsitesSourceDataType | null
|
|
76692
|
+
data?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76693
|
+
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
76694
|
+
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
76695
|
+
}
|
|
76696
|
+
|
|
76697
|
+
export type BuilderWebsitesDataUncheckedUpdateManyWithoutBuilderInput = {
|
|
76698
|
+
sourceType?: EnumBuilderWebsitesSourceTypeFieldUpdateOperationsInput | $Enums.BuilderWebsitesSourceType
|
|
76699
|
+
sourceUrl?: StringFieldUpdateOperationsInput | string
|
|
76700
|
+
error?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76701
|
+
dataType?: NullableEnumBuilderWebsitesSourceDataTypeFieldUpdateOperationsInput | $Enums.BuilderWebsitesSourceDataType | null
|
|
76702
|
+
data?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76703
|
+
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
76704
|
+
updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
76705
|
+
}
|
|
76706
|
+
|
|
74752
76707
|
export type BookingFrequencyNullableUpdateEnvelopeInput = {
|
|
74753
76708
|
set?: BookingFrequencyCreateInput | null
|
|
74754
76709
|
upsert?: BookingFrequencyUpsertInput
|
|
@@ -76369,6 +78324,10 @@ export namespace Prisma {
|
|
|
76369
78324
|
* @deprecated Use BillingAccountDefaultArgs instead
|
|
76370
78325
|
*/
|
|
76371
78326
|
export type BillingAccountArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = BillingAccountDefaultArgs<ExtArgs>
|
|
78327
|
+
/**
|
|
78328
|
+
* @deprecated Use BuilderWebsitesDataDefaultArgs instead
|
|
78329
|
+
*/
|
|
78330
|
+
export type BuilderWebsitesDataArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = BuilderWebsitesDataDefaultArgs<ExtArgs>
|
|
76372
78331
|
/**
|
|
76373
78332
|
* @deprecated Use CalendarDefaultArgs instead
|
|
76374
78333
|
*/
|