@a_team/prisma 3.20.0-macos-docker-linux → 3.20.1-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 +4 -4
- package/dist/client/index.d.ts +318 -94
- package/dist/client/index.js +6 -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 +66 -59
- package/package.json +4 -2
package/dist/client/index.d.ts
CHANGED
|
@@ -113,6 +113,11 @@ export type LocalHourRange = $Result.DefaultSelection<Prisma.$LocalHourRangePayl
|
|
|
113
113
|
*
|
|
114
114
|
*/
|
|
115
115
|
export type TimezoneObject = $Result.DefaultSelection<Prisma.$TimezoneObjectPayload>
|
|
116
|
+
/**
|
|
117
|
+
* Model WorkingHours
|
|
118
|
+
*
|
|
119
|
+
*/
|
|
120
|
+
export type WorkingHours = $Result.DefaultSelection<Prisma.$WorkingHoursPayload>
|
|
116
121
|
/**
|
|
117
122
|
* Model StructuredEnrichment
|
|
118
123
|
*
|
|
@@ -338,11 +343,6 @@ export type Metadata = $Result.DefaultSelection<Prisma.$MetadataPayload>
|
|
|
338
343
|
*
|
|
339
344
|
*/
|
|
340
345
|
export type StatusTime = $Result.DefaultSelection<Prisma.$StatusTimePayload>
|
|
341
|
-
/**
|
|
342
|
-
* Model WorkingHours
|
|
343
|
-
*
|
|
344
|
-
*/
|
|
345
|
-
export type WorkingHours = $Result.DefaultSelection<Prisma.$WorkingHoursPayload>
|
|
346
346
|
/**
|
|
347
347
|
* Model ClientRoleQuestion
|
|
348
348
|
*
|
|
@@ -518,6 +518,11 @@ export type AcceptTOS = $Result.DefaultSelection<Prisma.$AcceptTOSPayload>
|
|
|
518
518
|
*
|
|
519
519
|
*/
|
|
520
520
|
export type UserPortfolio = $Result.DefaultSelection<Prisma.$UserPortfolioPayload>
|
|
521
|
+
/**
|
|
522
|
+
* Model DefaultRates
|
|
523
|
+
*
|
|
524
|
+
*/
|
|
525
|
+
export type DefaultRates = $Result.DefaultSelection<Prisma.$DefaultRatesPayload>
|
|
521
526
|
/**
|
|
522
527
|
* Model BookingFrequency
|
|
523
528
|
*
|
|
@@ -6532,6 +6537,79 @@ export namespace Prisma {
|
|
|
6532
6537
|
}
|
|
6533
6538
|
|
|
6534
6539
|
|
|
6540
|
+
/**
|
|
6541
|
+
* Model WorkingHours
|
|
6542
|
+
*/
|
|
6543
|
+
|
|
6544
|
+
|
|
6545
|
+
|
|
6546
|
+
|
|
6547
|
+
|
|
6548
|
+
export type WorkingHoursSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
6549
|
+
name?: boolean
|
|
6550
|
+
utcOffset?: boolean
|
|
6551
|
+
daily?: boolean | LocalHourRangeDefaultArgs<ExtArgs>
|
|
6552
|
+
utcStandardHours?: boolean | LocalHourRangeDefaultArgs<ExtArgs>
|
|
6553
|
+
utcDaylightHours?: boolean | LocalHourRangeDefaultArgs<ExtArgs>
|
|
6554
|
+
numberOfMinutesOverlap?: boolean
|
|
6555
|
+
}, ExtArgs["result"]["workingHours"]>
|
|
6556
|
+
|
|
6557
|
+
|
|
6558
|
+
export type WorkingHoursSelectScalar = {
|
|
6559
|
+
name?: boolean
|
|
6560
|
+
utcOffset?: boolean
|
|
6561
|
+
numberOfMinutesOverlap?: boolean
|
|
6562
|
+
}
|
|
6563
|
+
|
|
6564
|
+
export type WorkingHoursInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {}
|
|
6565
|
+
|
|
6566
|
+
export type $WorkingHoursPayload = {
|
|
6567
|
+
name: "WorkingHours"
|
|
6568
|
+
objects: {}
|
|
6569
|
+
scalars: {
|
|
6570
|
+
name: string | null
|
|
6571
|
+
utcOffset: number | null
|
|
6572
|
+
numberOfMinutesOverlap: number
|
|
6573
|
+
}
|
|
6574
|
+
composites: {
|
|
6575
|
+
daily: Prisma.$LocalHourRangePayload[]
|
|
6576
|
+
utcStandardHours: Prisma.$LocalHourRangePayload[]
|
|
6577
|
+
utcDaylightHours: Prisma.$LocalHourRangePayload[]
|
|
6578
|
+
}
|
|
6579
|
+
}
|
|
6580
|
+
|
|
6581
|
+
type WorkingHoursGetPayload<S extends boolean | null | undefined | WorkingHoursDefaultArgs> = $Result.GetResult<Prisma.$WorkingHoursPayload, S>
|
|
6582
|
+
|
|
6583
|
+
|
|
6584
|
+
|
|
6585
|
+
|
|
6586
|
+
|
|
6587
|
+
/**
|
|
6588
|
+
* Fields of the WorkingHours model
|
|
6589
|
+
*/
|
|
6590
|
+
interface WorkingHoursFieldRefs {
|
|
6591
|
+
readonly name: FieldRef<"WorkingHours", 'String'>
|
|
6592
|
+
readonly utcOffset: FieldRef<"WorkingHours", 'Int'>
|
|
6593
|
+
readonly numberOfMinutesOverlap: FieldRef<"WorkingHours", 'Int'>
|
|
6594
|
+
}
|
|
6595
|
+
|
|
6596
|
+
|
|
6597
|
+
// Custom InputTypes
|
|
6598
|
+
/**
|
|
6599
|
+
* WorkingHours without action
|
|
6600
|
+
*/
|
|
6601
|
+
export type WorkingHoursDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
6602
|
+
/**
|
|
6603
|
+
* Select specific fields to fetch from the WorkingHours
|
|
6604
|
+
*/
|
|
6605
|
+
select?: WorkingHoursSelect<ExtArgs> | null
|
|
6606
|
+
/**
|
|
6607
|
+
* Choose, which related nodes to fetch as well
|
|
6608
|
+
*/
|
|
6609
|
+
include?: WorkingHoursInclude<ExtArgs> | null
|
|
6610
|
+
}
|
|
6611
|
+
|
|
6612
|
+
|
|
6535
6613
|
/**
|
|
6536
6614
|
* Model StructuredEnrichment
|
|
6537
6615
|
*/
|
|
@@ -9701,79 +9779,6 @@ export namespace Prisma {
|
|
|
9701
9779
|
}
|
|
9702
9780
|
|
|
9703
9781
|
|
|
9704
|
-
/**
|
|
9705
|
-
* Model WorkingHours
|
|
9706
|
-
*/
|
|
9707
|
-
|
|
9708
|
-
|
|
9709
|
-
|
|
9710
|
-
|
|
9711
|
-
|
|
9712
|
-
export type WorkingHoursSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
9713
|
-
name?: boolean
|
|
9714
|
-
utcOffset?: boolean
|
|
9715
|
-
daily?: boolean | LocalHourRangeDefaultArgs<ExtArgs>
|
|
9716
|
-
utcStandardHours?: boolean | LocalHourRangeDefaultArgs<ExtArgs>
|
|
9717
|
-
utcDaylightHours?: boolean | LocalHourRangeDefaultArgs<ExtArgs>
|
|
9718
|
-
numberOfMinutesOverlap?: boolean
|
|
9719
|
-
}, ExtArgs["result"]["workingHours"]>
|
|
9720
|
-
|
|
9721
|
-
|
|
9722
|
-
export type WorkingHoursSelectScalar = {
|
|
9723
|
-
name?: boolean
|
|
9724
|
-
utcOffset?: boolean
|
|
9725
|
-
numberOfMinutesOverlap?: boolean
|
|
9726
|
-
}
|
|
9727
|
-
|
|
9728
|
-
export type WorkingHoursInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {}
|
|
9729
|
-
|
|
9730
|
-
export type $WorkingHoursPayload = {
|
|
9731
|
-
name: "WorkingHours"
|
|
9732
|
-
objects: {}
|
|
9733
|
-
scalars: {
|
|
9734
|
-
name: string
|
|
9735
|
-
utcOffset: number
|
|
9736
|
-
numberOfMinutesOverlap: number | null
|
|
9737
|
-
}
|
|
9738
|
-
composites: {
|
|
9739
|
-
daily: Prisma.$LocalHourRangePayload[]
|
|
9740
|
-
utcStandardHours: Prisma.$LocalHourRangePayload[]
|
|
9741
|
-
utcDaylightHours: Prisma.$LocalHourRangePayload[]
|
|
9742
|
-
}
|
|
9743
|
-
}
|
|
9744
|
-
|
|
9745
|
-
type WorkingHoursGetPayload<S extends boolean | null | undefined | WorkingHoursDefaultArgs> = $Result.GetResult<Prisma.$WorkingHoursPayload, S>
|
|
9746
|
-
|
|
9747
|
-
|
|
9748
|
-
|
|
9749
|
-
|
|
9750
|
-
|
|
9751
|
-
/**
|
|
9752
|
-
* Fields of the WorkingHours model
|
|
9753
|
-
*/
|
|
9754
|
-
interface WorkingHoursFieldRefs {
|
|
9755
|
-
readonly name: FieldRef<"WorkingHours", 'String'>
|
|
9756
|
-
readonly utcOffset: FieldRef<"WorkingHours", 'Int'>
|
|
9757
|
-
readonly numberOfMinutesOverlap: FieldRef<"WorkingHours", 'Int'>
|
|
9758
|
-
}
|
|
9759
|
-
|
|
9760
|
-
|
|
9761
|
-
// Custom InputTypes
|
|
9762
|
-
/**
|
|
9763
|
-
* WorkingHours without action
|
|
9764
|
-
*/
|
|
9765
|
-
export type WorkingHoursDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
9766
|
-
/**
|
|
9767
|
-
* Select specific fields to fetch from the WorkingHours
|
|
9768
|
-
*/
|
|
9769
|
-
select?: WorkingHoursSelect<ExtArgs> | null
|
|
9770
|
-
/**
|
|
9771
|
-
* Choose, which related nodes to fetch as well
|
|
9772
|
-
*/
|
|
9773
|
-
include?: WorkingHoursInclude<ExtArgs> | null
|
|
9774
|
-
}
|
|
9775
|
-
|
|
9776
|
-
|
|
9777
9782
|
/**
|
|
9778
9783
|
* Model ClientRoleQuestion
|
|
9779
9784
|
*/
|
|
@@ -12075,6 +12080,63 @@ export namespace Prisma {
|
|
|
12075
12080
|
}
|
|
12076
12081
|
|
|
12077
12082
|
|
|
12083
|
+
/**
|
|
12084
|
+
* Model DefaultRates
|
|
12085
|
+
*/
|
|
12086
|
+
|
|
12087
|
+
|
|
12088
|
+
|
|
12089
|
+
|
|
12090
|
+
|
|
12091
|
+
export type DefaultRatesSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
12092
|
+
hourlyRate?: boolean
|
|
12093
|
+
monthlyRate?: boolean
|
|
12094
|
+
}, ExtArgs["result"]["defaultRates"]>
|
|
12095
|
+
|
|
12096
|
+
|
|
12097
|
+
export type DefaultRatesSelectScalar = {
|
|
12098
|
+
hourlyRate?: boolean
|
|
12099
|
+
monthlyRate?: boolean
|
|
12100
|
+
}
|
|
12101
|
+
|
|
12102
|
+
|
|
12103
|
+
export type $DefaultRatesPayload = {
|
|
12104
|
+
name: "DefaultRates"
|
|
12105
|
+
objects: {}
|
|
12106
|
+
scalars: {
|
|
12107
|
+
hourlyRate: number | null
|
|
12108
|
+
monthlyRate: number | null
|
|
12109
|
+
}
|
|
12110
|
+
composites: {}
|
|
12111
|
+
}
|
|
12112
|
+
|
|
12113
|
+
type DefaultRatesGetPayload<S extends boolean | null | undefined | DefaultRatesDefaultArgs> = $Result.GetResult<Prisma.$DefaultRatesPayload, S>
|
|
12114
|
+
|
|
12115
|
+
|
|
12116
|
+
|
|
12117
|
+
|
|
12118
|
+
|
|
12119
|
+
/**
|
|
12120
|
+
* Fields of the DefaultRates model
|
|
12121
|
+
*/
|
|
12122
|
+
interface DefaultRatesFieldRefs {
|
|
12123
|
+
readonly hourlyRate: FieldRef<"DefaultRates", 'Float'>
|
|
12124
|
+
readonly monthlyRate: FieldRef<"DefaultRates", 'Float'>
|
|
12125
|
+
}
|
|
12126
|
+
|
|
12127
|
+
|
|
12128
|
+
// Custom InputTypes
|
|
12129
|
+
/**
|
|
12130
|
+
* DefaultRates without action
|
|
12131
|
+
*/
|
|
12132
|
+
export type DefaultRatesDefaultArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
12133
|
+
/**
|
|
12134
|
+
* Select specific fields to fetch from the DefaultRates
|
|
12135
|
+
*/
|
|
12136
|
+
select?: DefaultRatesSelect<ExtArgs> | null
|
|
12137
|
+
}
|
|
12138
|
+
|
|
12139
|
+
|
|
12078
12140
|
/**
|
|
12079
12141
|
* Model BookingFrequency
|
|
12080
12142
|
*/
|
|
@@ -36319,6 +36381,7 @@ export namespace Prisma {
|
|
|
36319
36381
|
requiredWeeklyHours?: boolean
|
|
36320
36382
|
maxHourlyRate?: boolean
|
|
36321
36383
|
maxMonthlyRate?: boolean
|
|
36384
|
+
workingHours?: boolean | WorkingHoursDefaultArgs<ExtArgs>
|
|
36322
36385
|
dynamicCriteria?: boolean | CriteriaItemDefaultArgs<ExtArgs>
|
|
36323
36386
|
generatingStatus?: boolean
|
|
36324
36387
|
createdAt?: boolean
|
|
@@ -36361,6 +36424,7 @@ export namespace Prisma {
|
|
|
36361
36424
|
updatedAt: Date | null
|
|
36362
36425
|
}, ExtArgs["result"]["roleHiringCriteria"]>
|
|
36363
36426
|
composites: {
|
|
36427
|
+
workingHours: Prisma.$WorkingHoursPayload | null
|
|
36364
36428
|
dynamicCriteria: Prisma.$CriteriaItemPayload[]
|
|
36365
36429
|
}
|
|
36366
36430
|
}
|
|
@@ -41162,6 +41226,7 @@ export namespace Prisma {
|
|
|
41162
41226
|
websites?: boolean
|
|
41163
41227
|
location?: boolean | LocationDefaultArgs<ExtArgs>
|
|
41164
41228
|
exclusiveApplication?: boolean | UserExclusiveApplicationDefaultArgs<ExtArgs>
|
|
41229
|
+
defaultRates?: boolean | DefaultRatesDefaultArgs<ExtArgs>
|
|
41165
41230
|
platformExperience?: boolean | PlatformExperienceDefaultArgs<ExtArgs>
|
|
41166
41231
|
isUsingSharedCalendar?: boolean
|
|
41167
41232
|
timezone?: boolean | TimezoneObjectDefaultArgs<ExtArgs>
|
|
@@ -41298,6 +41363,7 @@ export namespace Prisma {
|
|
|
41298
41363
|
dribbble: Prisma.$DribbbleDataPayload | null
|
|
41299
41364
|
location: Prisma.$LocationPayload | null
|
|
41300
41365
|
exclusiveApplication: Prisma.$UserExclusiveApplicationPayload | null
|
|
41366
|
+
defaultRates: Prisma.$DefaultRatesPayload | null
|
|
41301
41367
|
platformExperience: Prisma.$PlatformExperiencePayload | null
|
|
41302
41368
|
timezone: Prisma.$TimezoneObjectPayload | null
|
|
41303
41369
|
acceptTOS: Prisma.$AcceptTOSPayload | null
|
|
@@ -48344,6 +48410,7 @@ export namespace Prisma {
|
|
|
48344
48410
|
requiredWeeklyHours?: IntNullableFilter<"RoleHiringCriteria"> | number | null
|
|
48345
48411
|
maxHourlyRate?: FloatNullableFilter<"RoleHiringCriteria"> | number | null
|
|
48346
48412
|
maxMonthlyRate?: FloatNullableFilter<"RoleHiringCriteria"> | number | null
|
|
48413
|
+
workingHours?: XOR<WorkingHoursNullableCompositeFilter, WorkingHoursObjectEqualityInput> | null
|
|
48347
48414
|
dynamicCriteria?: CriteriaItemCompositeListFilter | CriteriaItemObjectEqualityInput[]
|
|
48348
48415
|
generatingStatus?: EnumGeneratingStatusFilter<"RoleHiringCriteria"> | $Enums.GeneratingStatus
|
|
48349
48416
|
createdAt?: DateTimeNullableFilter<"RoleHiringCriteria"> | Date | string | null
|
|
@@ -48360,6 +48427,7 @@ export namespace Prisma {
|
|
|
48360
48427
|
requiredWeeklyHours?: SortOrder
|
|
48361
48428
|
maxHourlyRate?: SortOrder
|
|
48362
48429
|
maxMonthlyRate?: SortOrder
|
|
48430
|
+
workingHours?: WorkingHoursOrderByInput
|
|
48363
48431
|
dynamicCriteria?: CriteriaItemOrderByCompositeAggregateInput
|
|
48364
48432
|
generatingStatus?: SortOrder
|
|
48365
48433
|
createdAt?: SortOrder
|
|
@@ -48379,6 +48447,7 @@ export namespace Prisma {
|
|
|
48379
48447
|
requiredWeeklyHours?: IntNullableFilter<"RoleHiringCriteria"> | number | null
|
|
48380
48448
|
maxHourlyRate?: FloatNullableFilter<"RoleHiringCriteria"> | number | null
|
|
48381
48449
|
maxMonthlyRate?: FloatNullableFilter<"RoleHiringCriteria"> | number | null
|
|
48450
|
+
workingHours?: XOR<WorkingHoursNullableCompositeFilter, WorkingHoursObjectEqualityInput> | null
|
|
48382
48451
|
dynamicCriteria?: CriteriaItemCompositeListFilter | CriteriaItemObjectEqualityInput[]
|
|
48383
48452
|
generatingStatus?: EnumGeneratingStatusFilter<"RoleHiringCriteria"> | $Enums.GeneratingStatus
|
|
48384
48453
|
createdAt?: DateTimeNullableFilter<"RoleHiringCriteria"> | Date | string | null
|
|
@@ -48717,6 +48786,7 @@ export namespace Prisma {
|
|
|
48717
48786
|
websites?: StringNullableListFilter<"User">
|
|
48718
48787
|
location?: XOR<LocationNullableCompositeFilter, LocationObjectEqualityInput> | null
|
|
48719
48788
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCompositeFilter, UserExclusiveApplicationObjectEqualityInput> | null
|
|
48789
|
+
defaultRates?: XOR<DefaultRatesNullableCompositeFilter, DefaultRatesObjectEqualityInput> | null
|
|
48720
48790
|
platformExperience?: XOR<PlatformExperienceNullableCompositeFilter, PlatformExperienceObjectEqualityInput> | null
|
|
48721
48791
|
isUsingSharedCalendar?: BoolFilter<"User"> | boolean
|
|
48722
48792
|
timezone?: XOR<TimezoneObjectNullableCompositeFilter, TimezoneObjectObjectEqualityInput> | null
|
|
@@ -48776,6 +48846,7 @@ export namespace Prisma {
|
|
|
48776
48846
|
websites?: SortOrder
|
|
48777
48847
|
location?: LocationOrderByInput
|
|
48778
48848
|
exclusiveApplication?: UserExclusiveApplicationOrderByInput
|
|
48849
|
+
defaultRates?: DefaultRatesOrderByInput
|
|
48779
48850
|
platformExperience?: PlatformExperienceOrderByInput
|
|
48780
48851
|
isUsingSharedCalendar?: SortOrder
|
|
48781
48852
|
timezone?: TimezoneObjectOrderByInput
|
|
@@ -48838,6 +48909,7 @@ export namespace Prisma {
|
|
|
48838
48909
|
websites?: StringNullableListFilter<"User">
|
|
48839
48910
|
location?: XOR<LocationNullableCompositeFilter, LocationObjectEqualityInput> | null
|
|
48840
48911
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCompositeFilter, UserExclusiveApplicationObjectEqualityInput> | null
|
|
48912
|
+
defaultRates?: XOR<DefaultRatesNullableCompositeFilter, DefaultRatesObjectEqualityInput> | null
|
|
48841
48913
|
platformExperience?: XOR<PlatformExperienceNullableCompositeFilter, PlatformExperienceObjectEqualityInput> | null
|
|
48842
48914
|
isUsingSharedCalendar?: BoolFilter<"User"> | boolean
|
|
48843
48915
|
timezone?: XOR<TimezoneObjectNullableCompositeFilter, TimezoneObjectObjectEqualityInput> | null
|
|
@@ -52017,6 +52089,7 @@ export namespace Prisma {
|
|
|
52017
52089
|
requiredWeeklyHours?: number | null
|
|
52018
52090
|
maxHourlyRate?: number | null
|
|
52019
52091
|
maxMonthlyRate?: number | null
|
|
52092
|
+
workingHours?: XOR<WorkingHoursNullableCreateEnvelopeInput, WorkingHoursCreateInput> | null
|
|
52020
52093
|
dynamicCriteria?: XOR<CriteriaItemListCreateEnvelopeInput, CriteriaItemCreateInput> | CriteriaItemCreateInput[]
|
|
52021
52094
|
generatingStatus?: $Enums.GeneratingStatus
|
|
52022
52095
|
createdAt?: Date | string | null
|
|
@@ -52033,6 +52106,7 @@ export namespace Prisma {
|
|
|
52033
52106
|
requiredWeeklyHours?: number | null
|
|
52034
52107
|
maxHourlyRate?: number | null
|
|
52035
52108
|
maxMonthlyRate?: number | null
|
|
52109
|
+
workingHours?: XOR<WorkingHoursNullableCreateEnvelopeInput, WorkingHoursCreateInput> | null
|
|
52036
52110
|
dynamicCriteria?: XOR<CriteriaItemListCreateEnvelopeInput, CriteriaItemCreateInput> | CriteriaItemCreateInput[]
|
|
52037
52111
|
generatingStatus?: $Enums.GeneratingStatus
|
|
52038
52112
|
createdAt?: Date | string | null
|
|
@@ -52048,6 +52122,7 @@ export namespace Prisma {
|
|
|
52048
52122
|
requiredWeeklyHours?: NullableIntFieldUpdateOperationsInput | number | null
|
|
52049
52123
|
maxHourlyRate?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
52050
52124
|
maxMonthlyRate?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
52125
|
+
workingHours?: XOR<WorkingHoursNullableUpdateEnvelopeInput, WorkingHoursCreateInput> | null
|
|
52051
52126
|
dynamicCriteria?: XOR<CriteriaItemListUpdateEnvelopeInput, CriteriaItemCreateInput> | CriteriaItemCreateInput[]
|
|
52052
52127
|
generatingStatus?: EnumGeneratingStatusFieldUpdateOperationsInput | $Enums.GeneratingStatus
|
|
52053
52128
|
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -52063,6 +52138,7 @@ export namespace Prisma {
|
|
|
52063
52138
|
requiredWeeklyHours?: NullableIntFieldUpdateOperationsInput | number | null
|
|
52064
52139
|
maxHourlyRate?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
52065
52140
|
maxMonthlyRate?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
52141
|
+
workingHours?: XOR<WorkingHoursNullableUpdateEnvelopeInput, WorkingHoursCreateInput> | null
|
|
52066
52142
|
dynamicCriteria?: XOR<CriteriaItemListUpdateEnvelopeInput, CriteriaItemCreateInput> | CriteriaItemCreateInput[]
|
|
52067
52143
|
generatingStatus?: EnumGeneratingStatusFieldUpdateOperationsInput | $Enums.GeneratingStatus
|
|
52068
52144
|
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -52079,6 +52155,7 @@ export namespace Prisma {
|
|
|
52079
52155
|
requiredWeeklyHours?: number | null
|
|
52080
52156
|
maxHourlyRate?: number | null
|
|
52081
52157
|
maxMonthlyRate?: number | null
|
|
52158
|
+
workingHours?: XOR<WorkingHoursNullableCreateEnvelopeInput, WorkingHoursCreateInput> | null
|
|
52082
52159
|
dynamicCriteria?: XOR<CriteriaItemListCreateEnvelopeInput, CriteriaItemCreateInput> | CriteriaItemCreateInput[]
|
|
52083
52160
|
generatingStatus?: $Enums.GeneratingStatus
|
|
52084
52161
|
createdAt?: Date | string | null
|
|
@@ -52094,6 +52171,7 @@ export namespace Prisma {
|
|
|
52094
52171
|
requiredWeeklyHours?: NullableIntFieldUpdateOperationsInput | number | null
|
|
52095
52172
|
maxHourlyRate?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
52096
52173
|
maxMonthlyRate?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
52174
|
+
workingHours?: XOR<WorkingHoursNullableUpdateEnvelopeInput, WorkingHoursCreateInput> | null
|
|
52097
52175
|
dynamicCriteria?: XOR<CriteriaItemListUpdateEnvelopeInput, CriteriaItemCreateInput> | CriteriaItemCreateInput[]
|
|
52098
52176
|
generatingStatus?: EnumGeneratingStatusFieldUpdateOperationsInput | $Enums.GeneratingStatus
|
|
52099
52177
|
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -52109,6 +52187,7 @@ export namespace Prisma {
|
|
|
52109
52187
|
requiredWeeklyHours?: NullableIntFieldUpdateOperationsInput | number | null
|
|
52110
52188
|
maxHourlyRate?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
52111
52189
|
maxMonthlyRate?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
52190
|
+
workingHours?: XOR<WorkingHoursNullableUpdateEnvelopeInput, WorkingHoursCreateInput> | null
|
|
52112
52191
|
dynamicCriteria?: XOR<CriteriaItemListUpdateEnvelopeInput, CriteriaItemCreateInput> | CriteriaItemCreateInput[]
|
|
52113
52192
|
generatingStatus?: EnumGeneratingStatusFieldUpdateOperationsInput | $Enums.GeneratingStatus
|
|
52114
52193
|
createdAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -52430,6 +52509,7 @@ export namespace Prisma {
|
|
|
52430
52509
|
websites?: UserCreatewebsitesInput | string[]
|
|
52431
52510
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
52432
52511
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
52512
|
+
defaultRates?: XOR<DefaultRatesNullableCreateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
52433
52513
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
52434
52514
|
isUsingSharedCalendar?: boolean
|
|
52435
52515
|
timezone?: XOR<TimezoneObjectNullableCreateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -52489,6 +52569,7 @@ export namespace Prisma {
|
|
|
52489
52569
|
websites?: UserCreatewebsitesInput | string[]
|
|
52490
52570
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
52491
52571
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
52572
|
+
defaultRates?: XOR<DefaultRatesNullableCreateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
52492
52573
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
52493
52574
|
isUsingSharedCalendar?: boolean
|
|
52494
52575
|
timezone?: XOR<TimezoneObjectNullableCreateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -52547,6 +52628,7 @@ export namespace Prisma {
|
|
|
52547
52628
|
websites?: UserUpdatewebsitesInput | string[]
|
|
52548
52629
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
52549
52630
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
52631
|
+
defaultRates?: XOR<DefaultRatesNullableUpdateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
52550
52632
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
52551
52633
|
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
52552
52634
|
timezone?: XOR<TimezoneObjectNullableUpdateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -52605,6 +52687,7 @@ export namespace Prisma {
|
|
|
52605
52687
|
websites?: UserUpdatewebsitesInput | string[]
|
|
52606
52688
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
52607
52689
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
52690
|
+
defaultRates?: XOR<DefaultRatesNullableUpdateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
52608
52691
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
52609
52692
|
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
52610
52693
|
timezone?: XOR<TimezoneObjectNullableUpdateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -52664,6 +52747,7 @@ export namespace Prisma {
|
|
|
52664
52747
|
websites?: UserCreatewebsitesInput | string[]
|
|
52665
52748
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
52666
52749
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
52750
|
+
defaultRates?: XOR<DefaultRatesNullableCreateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
52667
52751
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
52668
52752
|
isUsingSharedCalendar?: boolean
|
|
52669
52753
|
timezone?: XOR<TimezoneObjectNullableCreateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -52701,6 +52785,7 @@ export namespace Prisma {
|
|
|
52701
52785
|
websites?: UserUpdatewebsitesInput | string[]
|
|
52702
52786
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
52703
52787
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
52788
|
+
defaultRates?: XOR<DefaultRatesNullableUpdateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
52704
52789
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
52705
52790
|
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
52706
52791
|
timezone?: XOR<TimezoneObjectNullableUpdateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -52738,6 +52823,7 @@ export namespace Prisma {
|
|
|
52738
52823
|
websites?: UserUpdatewebsitesInput | string[]
|
|
52739
52824
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
52740
52825
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
52826
|
+
defaultRates?: XOR<DefaultRatesNullableUpdateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
52741
52827
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
52742
52828
|
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
52743
52829
|
timezone?: XOR<TimezoneObjectNullableUpdateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -55481,12 +55567,12 @@ export namespace Prisma {
|
|
|
55481
55567
|
}
|
|
55482
55568
|
|
|
55483
55569
|
export type WorkingHoursObjectEqualityInput = {
|
|
55484
|
-
name
|
|
55485
|
-
utcOffset
|
|
55570
|
+
name?: string | null
|
|
55571
|
+
utcOffset?: number | null
|
|
55486
55572
|
daily?: LocalHourRangeObjectEqualityInput[]
|
|
55487
55573
|
utcStandardHours?: LocalHourRangeObjectEqualityInput[]
|
|
55488
55574
|
utcDaylightHours?: LocalHourRangeObjectEqualityInput[]
|
|
55489
|
-
numberOfMinutesOverlap
|
|
55575
|
+
numberOfMinutesOverlap: number
|
|
55490
55576
|
}
|
|
55491
55577
|
|
|
55492
55578
|
export type AttachedLinkOrderByCompositeAggregateInput = {
|
|
@@ -56484,6 +56570,18 @@ export namespace Prisma {
|
|
|
56484
56570
|
updatedAt: Date | string
|
|
56485
56571
|
}
|
|
56486
56572
|
|
|
56573
|
+
export type DefaultRatesNullableCompositeFilter = {
|
|
56574
|
+
equals?: DefaultRatesObjectEqualityInput | null
|
|
56575
|
+
is?: DefaultRatesWhereInput | null
|
|
56576
|
+
isNot?: DefaultRatesWhereInput | null
|
|
56577
|
+
isSet?: boolean
|
|
56578
|
+
}
|
|
56579
|
+
|
|
56580
|
+
export type DefaultRatesObjectEqualityInput = {
|
|
56581
|
+
hourlyRate?: number | null
|
|
56582
|
+
monthlyRate?: number | null
|
|
56583
|
+
}
|
|
56584
|
+
|
|
56487
56585
|
export type PlatformExperienceNullableCompositeFilter = {
|
|
56488
56586
|
equals?: PlatformExperienceObjectEqualityInput | null
|
|
56489
56587
|
is?: PlatformExperienceWhereInput | null
|
|
@@ -56639,6 +56737,11 @@ export namespace Prisma {
|
|
|
56639
56737
|
updatedAt?: SortOrder
|
|
56640
56738
|
}
|
|
56641
56739
|
|
|
56740
|
+
export type DefaultRatesOrderByInput = {
|
|
56741
|
+
hourlyRate?: SortOrder
|
|
56742
|
+
monthlyRate?: SortOrder
|
|
56743
|
+
}
|
|
56744
|
+
|
|
56642
56745
|
export type PlatformExperienceOrderByInput = {
|
|
56643
56746
|
billedMinutes?: SortOrder
|
|
56644
56747
|
}
|
|
@@ -59089,12 +59192,12 @@ export namespace Prisma {
|
|
|
59089
59192
|
}
|
|
59090
59193
|
|
|
59091
59194
|
export type WorkingHoursCreateInput = {
|
|
59092
|
-
name
|
|
59093
|
-
utcOffset
|
|
59195
|
+
name?: string | null
|
|
59196
|
+
utcOffset?: number | null
|
|
59094
59197
|
daily?: LocalHourRangeCreateInput | LocalHourRangeCreateInput[]
|
|
59095
59198
|
utcStandardHours?: LocalHourRangeCreateInput | LocalHourRangeCreateInput[]
|
|
59096
59199
|
utcDaylightHours?: LocalHourRangeCreateInput | LocalHourRangeCreateInput[]
|
|
59097
|
-
numberOfMinutesOverlap
|
|
59200
|
+
numberOfMinutesOverlap: number
|
|
59098
59201
|
}
|
|
59099
59202
|
|
|
59100
59203
|
export type AccountCreateNestedOneWithoutMissionSpecsInput = {
|
|
@@ -59791,6 +59894,15 @@ export namespace Prisma {
|
|
|
59791
59894
|
updatedAt: Date | string
|
|
59792
59895
|
}
|
|
59793
59896
|
|
|
59897
|
+
export type DefaultRatesNullableCreateEnvelopeInput = {
|
|
59898
|
+
set?: DefaultRatesCreateInput | null
|
|
59899
|
+
}
|
|
59900
|
+
|
|
59901
|
+
export type DefaultRatesCreateInput = {
|
|
59902
|
+
hourlyRate?: number | null
|
|
59903
|
+
monthlyRate?: number | null
|
|
59904
|
+
}
|
|
59905
|
+
|
|
59794
59906
|
export type PlatformExperienceNullableCreateEnvelopeInput = {
|
|
59795
59907
|
set?: PlatformExperienceCreateInput | null
|
|
59796
59908
|
}
|
|
@@ -60208,6 +60320,12 @@ export namespace Prisma {
|
|
|
60208
60320
|
unset?: boolean
|
|
60209
60321
|
}
|
|
60210
60322
|
|
|
60323
|
+
export type DefaultRatesNullableUpdateEnvelopeInput = {
|
|
60324
|
+
set?: DefaultRatesCreateInput | null
|
|
60325
|
+
upsert?: DefaultRatesUpsertInput
|
|
60326
|
+
unset?: boolean
|
|
60327
|
+
}
|
|
60328
|
+
|
|
60211
60329
|
export type PlatformExperienceNullableUpdateEnvelopeInput = {
|
|
60212
60330
|
set?: PlatformExperienceCreateInput | null
|
|
60213
60331
|
upsert?: PlatformExperienceUpsertInput
|
|
@@ -62188,12 +62306,12 @@ export namespace Prisma {
|
|
|
62188
62306
|
AND?: WorkingHoursWhereInput | WorkingHoursWhereInput[]
|
|
62189
62307
|
OR?: WorkingHoursWhereInput[]
|
|
62190
62308
|
NOT?: WorkingHoursWhereInput | WorkingHoursWhereInput[]
|
|
62191
|
-
name?:
|
|
62192
|
-
utcOffset?:
|
|
62309
|
+
name?: StringNullableFilter<"WorkingHours"> | string | null
|
|
62310
|
+
utcOffset?: IntNullableFilter<"WorkingHours"> | number | null
|
|
62193
62311
|
daily?: LocalHourRangeCompositeListFilter | LocalHourRangeObjectEqualityInput[]
|
|
62194
62312
|
utcStandardHours?: LocalHourRangeCompositeListFilter | LocalHourRangeObjectEqualityInput[]
|
|
62195
62313
|
utcDaylightHours?: LocalHourRangeCompositeListFilter | LocalHourRangeObjectEqualityInput[]
|
|
62196
|
-
numberOfMinutesOverlap?:
|
|
62314
|
+
numberOfMinutesOverlap?: IntFilter<"WorkingHours"> | number
|
|
62197
62315
|
}
|
|
62198
62316
|
|
|
62199
62317
|
export type NestedEnumMissionSpecStatusWithAggregatesFilter<$PrismaModel = never> = {
|
|
@@ -62633,6 +62751,14 @@ export namespace Prisma {
|
|
|
62633
62751
|
updatedAt?: DateTimeFilter<"UserExclusiveApplication"> | Date | string
|
|
62634
62752
|
}
|
|
62635
62753
|
|
|
62754
|
+
export type DefaultRatesWhereInput = {
|
|
62755
|
+
AND?: DefaultRatesWhereInput | DefaultRatesWhereInput[]
|
|
62756
|
+
OR?: DefaultRatesWhereInput[]
|
|
62757
|
+
NOT?: DefaultRatesWhereInput | DefaultRatesWhereInput[]
|
|
62758
|
+
hourlyRate?: FloatNullableFilter<"DefaultRates"> | number | null
|
|
62759
|
+
monthlyRate?: FloatNullableFilter<"DefaultRates"> | number | null
|
|
62760
|
+
}
|
|
62761
|
+
|
|
62636
62762
|
export type PlatformExperienceWhereInput = {
|
|
62637
62763
|
AND?: PlatformExperienceWhereInput | PlatformExperienceWhereInput[]
|
|
62638
62764
|
OR?: PlatformExperienceWhereInput[]
|
|
@@ -63738,6 +63864,7 @@ export namespace Prisma {
|
|
|
63738
63864
|
websites?: UserCreatewebsitesInput | string[]
|
|
63739
63865
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
63740
63866
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
63867
|
+
defaultRates?: XOR<DefaultRatesNullableCreateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
63741
63868
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
63742
63869
|
isUsingSharedCalendar?: boolean
|
|
63743
63870
|
timezone?: XOR<TimezoneObjectNullableCreateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -63796,6 +63923,7 @@ export namespace Prisma {
|
|
|
63796
63923
|
websites?: UserCreatewebsitesInput | string[]
|
|
63797
63924
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
63798
63925
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
63926
|
+
defaultRates?: XOR<DefaultRatesNullableCreateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
63799
63927
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
63800
63928
|
isUsingSharedCalendar?: boolean
|
|
63801
63929
|
timezone?: XOR<TimezoneObjectNullableCreateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -63869,6 +63997,7 @@ export namespace Prisma {
|
|
|
63869
63997
|
websites?: UserUpdatewebsitesInput | string[]
|
|
63870
63998
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
63871
63999
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
64000
|
+
defaultRates?: XOR<DefaultRatesNullableUpdateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
63872
64001
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
63873
64002
|
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
63874
64003
|
timezone?: XOR<TimezoneObjectNullableUpdateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -63926,6 +64055,7 @@ export namespace Prisma {
|
|
|
63926
64055
|
websites?: UserUpdatewebsitesInput | string[]
|
|
63927
64056
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
63928
64057
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
64058
|
+
defaultRates?: XOR<DefaultRatesNullableUpdateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
63929
64059
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
63930
64060
|
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
63931
64061
|
timezone?: XOR<TimezoneObjectNullableUpdateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -63984,6 +64114,7 @@ export namespace Prisma {
|
|
|
63984
64114
|
websites?: UserCreatewebsitesInput | string[]
|
|
63985
64115
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
63986
64116
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
64117
|
+
defaultRates?: XOR<DefaultRatesNullableCreateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
63987
64118
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
63988
64119
|
isUsingSharedCalendar?: boolean
|
|
63989
64120
|
timezone?: XOR<TimezoneObjectNullableCreateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -64042,6 +64173,7 @@ export namespace Prisma {
|
|
|
64042
64173
|
websites?: UserCreatewebsitesInput | string[]
|
|
64043
64174
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
64044
64175
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
64176
|
+
defaultRates?: XOR<DefaultRatesNullableCreateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
64045
64177
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
64046
64178
|
isUsingSharedCalendar?: boolean
|
|
64047
64179
|
timezone?: XOR<TimezoneObjectNullableCreateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -64185,6 +64317,7 @@ export namespace Prisma {
|
|
|
64185
64317
|
websites?: UserUpdatewebsitesInput | string[]
|
|
64186
64318
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
64187
64319
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
64320
|
+
defaultRates?: XOR<DefaultRatesNullableUpdateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
64188
64321
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
64189
64322
|
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
64190
64323
|
timezone?: XOR<TimezoneObjectNullableUpdateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -64242,6 +64375,7 @@ export namespace Prisma {
|
|
|
64242
64375
|
websites?: UserUpdatewebsitesInput | string[]
|
|
64243
64376
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
64244
64377
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
64378
|
+
defaultRates?: XOR<DefaultRatesNullableUpdateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
64245
64379
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
64246
64380
|
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
64247
64381
|
timezone?: XOR<TimezoneObjectNullableUpdateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -64339,6 +64473,7 @@ export namespace Prisma {
|
|
|
64339
64473
|
websites?: UserCreatewebsitesInput | string[]
|
|
64340
64474
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
64341
64475
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
64476
|
+
defaultRates?: XOR<DefaultRatesNullableCreateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
64342
64477
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
64343
64478
|
isUsingSharedCalendar?: boolean
|
|
64344
64479
|
timezone?: XOR<TimezoneObjectNullableCreateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -64397,6 +64532,7 @@ export namespace Prisma {
|
|
|
64397
64532
|
websites?: UserCreatewebsitesInput | string[]
|
|
64398
64533
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
64399
64534
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
64535
|
+
defaultRates?: XOR<DefaultRatesNullableCreateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
64400
64536
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
64401
64537
|
isUsingSharedCalendar?: boolean
|
|
64402
64538
|
timezone?: XOR<TimezoneObjectNullableCreateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -64509,6 +64645,7 @@ export namespace Prisma {
|
|
|
64509
64645
|
websites?: UserUpdatewebsitesInput | string[]
|
|
64510
64646
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
64511
64647
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
64648
|
+
defaultRates?: XOR<DefaultRatesNullableUpdateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
64512
64649
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
64513
64650
|
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
64514
64651
|
timezone?: XOR<TimezoneObjectNullableUpdateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -64566,6 +64703,7 @@ export namespace Prisma {
|
|
|
64566
64703
|
websites?: UserUpdatewebsitesInput | string[]
|
|
64567
64704
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
64568
64705
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
64706
|
+
defaultRates?: XOR<DefaultRatesNullableUpdateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
64569
64707
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
64570
64708
|
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
64571
64709
|
timezone?: XOR<TimezoneObjectNullableUpdateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -64706,6 +64844,7 @@ export namespace Prisma {
|
|
|
64706
64844
|
websites?: UserCreatewebsitesInput | string[]
|
|
64707
64845
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
64708
64846
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
64847
|
+
defaultRates?: XOR<DefaultRatesNullableCreateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
64709
64848
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
64710
64849
|
isUsingSharedCalendar?: boolean
|
|
64711
64850
|
timezone?: XOR<TimezoneObjectNullableCreateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -64764,6 +64903,7 @@ export namespace Prisma {
|
|
|
64764
64903
|
websites?: UserCreatewebsitesInput | string[]
|
|
64765
64904
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
64766
64905
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
64906
|
+
defaultRates?: XOR<DefaultRatesNullableCreateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
64767
64907
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
64768
64908
|
isUsingSharedCalendar?: boolean
|
|
64769
64909
|
timezone?: XOR<TimezoneObjectNullableCreateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -64852,6 +64992,7 @@ export namespace Prisma {
|
|
|
64852
64992
|
websites?: UserCreatewebsitesInput | string[]
|
|
64853
64993
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
64854
64994
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
64995
|
+
defaultRates?: XOR<DefaultRatesNullableCreateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
64855
64996
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
64856
64997
|
isUsingSharedCalendar?: boolean
|
|
64857
64998
|
timezone?: XOR<TimezoneObjectNullableCreateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -64910,6 +65051,7 @@ export namespace Prisma {
|
|
|
64910
65051
|
websites?: UserCreatewebsitesInput | string[]
|
|
64911
65052
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
64912
65053
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
65054
|
+
defaultRates?: XOR<DefaultRatesNullableCreateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
64913
65055
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
64914
65056
|
isUsingSharedCalendar?: boolean
|
|
64915
65057
|
timezone?: XOR<TimezoneObjectNullableCreateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -65126,6 +65268,7 @@ export namespace Prisma {
|
|
|
65126
65268
|
websites?: UserUpdatewebsitesInput | string[]
|
|
65127
65269
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
65128
65270
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
65271
|
+
defaultRates?: XOR<DefaultRatesNullableUpdateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
65129
65272
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
65130
65273
|
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
65131
65274
|
timezone?: XOR<TimezoneObjectNullableUpdateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -65183,6 +65326,7 @@ export namespace Prisma {
|
|
|
65183
65326
|
websites?: UserUpdatewebsitesInput | string[]
|
|
65184
65327
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
65185
65328
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
65329
|
+
defaultRates?: XOR<DefaultRatesNullableUpdateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
65186
65330
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
65187
65331
|
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
65188
65332
|
timezone?: XOR<TimezoneObjectNullableUpdateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -65280,6 +65424,7 @@ export namespace Prisma {
|
|
|
65280
65424
|
websites?: UserUpdatewebsitesInput | string[]
|
|
65281
65425
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
65282
65426
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
65427
|
+
defaultRates?: XOR<DefaultRatesNullableUpdateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
65283
65428
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
65284
65429
|
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
65285
65430
|
timezone?: XOR<TimezoneObjectNullableUpdateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -65337,6 +65482,7 @@ export namespace Prisma {
|
|
|
65337
65482
|
websites?: UserUpdatewebsitesInput | string[]
|
|
65338
65483
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
65339
65484
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
65485
|
+
defaultRates?: XOR<DefaultRatesNullableUpdateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
65340
65486
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
65341
65487
|
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
65342
65488
|
timezone?: XOR<TimezoneObjectNullableUpdateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -65866,6 +66012,7 @@ export namespace Prisma {
|
|
|
65866
66012
|
websites?: UserCreatewebsitesInput | string[]
|
|
65867
66013
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
65868
66014
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
66015
|
+
defaultRates?: XOR<DefaultRatesNullableCreateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
65869
66016
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
65870
66017
|
isUsingSharedCalendar?: boolean
|
|
65871
66018
|
timezone?: XOR<TimezoneObjectNullableCreateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -65924,6 +66071,7 @@ export namespace Prisma {
|
|
|
65924
66071
|
websites?: UserCreatewebsitesInput | string[]
|
|
65925
66072
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
65926
66073
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
66074
|
+
defaultRates?: XOR<DefaultRatesNullableCreateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
65927
66075
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
65928
66076
|
isUsingSharedCalendar?: boolean
|
|
65929
66077
|
timezone?: XOR<TimezoneObjectNullableCreateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -65987,6 +66135,7 @@ export namespace Prisma {
|
|
|
65987
66135
|
websites?: UserCreatewebsitesInput | string[]
|
|
65988
66136
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
65989
66137
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
66138
|
+
defaultRates?: XOR<DefaultRatesNullableCreateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
65990
66139
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
65991
66140
|
isUsingSharedCalendar?: boolean
|
|
65992
66141
|
timezone?: XOR<TimezoneObjectNullableCreateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -66045,6 +66194,7 @@ export namespace Prisma {
|
|
|
66045
66194
|
websites?: UserCreatewebsitesInput | string[]
|
|
66046
66195
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
66047
66196
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
66197
|
+
defaultRates?: XOR<DefaultRatesNullableCreateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
66048
66198
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
66049
66199
|
isUsingSharedCalendar?: boolean
|
|
66050
66200
|
timezone?: XOR<TimezoneObjectNullableCreateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -66306,6 +66456,7 @@ export namespace Prisma {
|
|
|
66306
66456
|
websites?: UserUpdatewebsitesInput | string[]
|
|
66307
66457
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
66308
66458
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
66459
|
+
defaultRates?: XOR<DefaultRatesNullableUpdateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
66309
66460
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
66310
66461
|
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
66311
66462
|
timezone?: XOR<TimezoneObjectNullableUpdateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -66363,6 +66514,7 @@ export namespace Prisma {
|
|
|
66363
66514
|
websites?: UserUpdatewebsitesInput | string[]
|
|
66364
66515
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
66365
66516
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
66517
|
+
defaultRates?: XOR<DefaultRatesNullableUpdateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
66366
66518
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
66367
66519
|
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
66368
66520
|
timezone?: XOR<TimezoneObjectNullableUpdateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -66431,6 +66583,7 @@ export namespace Prisma {
|
|
|
66431
66583
|
websites?: UserUpdatewebsitesInput | string[]
|
|
66432
66584
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
66433
66585
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
66586
|
+
defaultRates?: XOR<DefaultRatesNullableUpdateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
66434
66587
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
66435
66588
|
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
66436
66589
|
timezone?: XOR<TimezoneObjectNullableUpdateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -66488,6 +66641,7 @@ export namespace Prisma {
|
|
|
66488
66641
|
websites?: UserUpdatewebsitesInput | string[]
|
|
66489
66642
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
66490
66643
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
66644
|
+
defaultRates?: XOR<DefaultRatesNullableUpdateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
66491
66645
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
66492
66646
|
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
66493
66647
|
timezone?: XOR<TimezoneObjectNullableUpdateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -66918,6 +67072,7 @@ export namespace Prisma {
|
|
|
66918
67072
|
websites?: UserCreatewebsitesInput | string[]
|
|
66919
67073
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
66920
67074
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
67075
|
+
defaultRates?: XOR<DefaultRatesNullableCreateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
66921
67076
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
66922
67077
|
isUsingSharedCalendar?: boolean
|
|
66923
67078
|
timezone?: XOR<TimezoneObjectNullableCreateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -66976,6 +67131,7 @@ export namespace Prisma {
|
|
|
66976
67131
|
websites?: UserCreatewebsitesInput | string[]
|
|
66977
67132
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
66978
67133
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
67134
|
+
defaultRates?: XOR<DefaultRatesNullableCreateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
66979
67135
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
66980
67136
|
isUsingSharedCalendar?: boolean
|
|
66981
67137
|
timezone?: XOR<TimezoneObjectNullableCreateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -67217,6 +67373,7 @@ export namespace Prisma {
|
|
|
67217
67373
|
websites?: UserUpdatewebsitesInput | string[]
|
|
67218
67374
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
67219
67375
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
67376
|
+
defaultRates?: XOR<DefaultRatesNullableUpdateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
67220
67377
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
67221
67378
|
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
67222
67379
|
timezone?: XOR<TimezoneObjectNullableUpdateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -67274,6 +67431,7 @@ export namespace Prisma {
|
|
|
67274
67431
|
websites?: UserUpdatewebsitesInput | string[]
|
|
67275
67432
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
67276
67433
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
67434
|
+
defaultRates?: XOR<DefaultRatesNullableUpdateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
67277
67435
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
67278
67436
|
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
67279
67437
|
timezone?: XOR<TimezoneObjectNullableUpdateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -67364,6 +67522,7 @@ export namespace Prisma {
|
|
|
67364
67522
|
websites?: UserCreatewebsitesInput | string[]
|
|
67365
67523
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
67366
67524
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
67525
|
+
defaultRates?: XOR<DefaultRatesNullableCreateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
67367
67526
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
67368
67527
|
isUsingSharedCalendar?: boolean
|
|
67369
67528
|
timezone?: XOR<TimezoneObjectNullableCreateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -67422,6 +67581,7 @@ export namespace Prisma {
|
|
|
67422
67581
|
websites?: UserCreatewebsitesInput | string[]
|
|
67423
67582
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
67424
67583
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
67584
|
+
defaultRates?: XOR<DefaultRatesNullableCreateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
67425
67585
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
67426
67586
|
isUsingSharedCalendar?: boolean
|
|
67427
67587
|
timezone?: XOR<TimezoneObjectNullableCreateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -67508,6 +67668,7 @@ export namespace Prisma {
|
|
|
67508
67668
|
websites?: UserUpdatewebsitesInput | string[]
|
|
67509
67669
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
67510
67670
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
67671
|
+
defaultRates?: XOR<DefaultRatesNullableUpdateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
67511
67672
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
67512
67673
|
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
67513
67674
|
timezone?: XOR<TimezoneObjectNullableUpdateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -67565,6 +67726,7 @@ export namespace Prisma {
|
|
|
67565
67726
|
websites?: UserUpdatewebsitesInput | string[]
|
|
67566
67727
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
67567
67728
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
67729
|
+
defaultRates?: XOR<DefaultRatesNullableUpdateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
67568
67730
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
67569
67731
|
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
67570
67732
|
timezone?: XOR<TimezoneObjectNullableUpdateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -67737,6 +67899,7 @@ export namespace Prisma {
|
|
|
67737
67899
|
websites?: UserCreatewebsitesInput | string[]
|
|
67738
67900
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
67739
67901
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
67902
|
+
defaultRates?: XOR<DefaultRatesNullableCreateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
67740
67903
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
67741
67904
|
isUsingSharedCalendar?: boolean
|
|
67742
67905
|
timezone?: XOR<TimezoneObjectNullableCreateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -67795,6 +67958,7 @@ export namespace Prisma {
|
|
|
67795
67958
|
websites?: UserCreatewebsitesInput | string[]
|
|
67796
67959
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
67797
67960
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
67961
|
+
defaultRates?: XOR<DefaultRatesNullableCreateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
67798
67962
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
67799
67963
|
isUsingSharedCalendar?: boolean
|
|
67800
67964
|
timezone?: XOR<TimezoneObjectNullableCreateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -67923,6 +68087,7 @@ export namespace Prisma {
|
|
|
67923
68087
|
websites?: UserCreatewebsitesInput | string[]
|
|
67924
68088
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
67925
68089
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
68090
|
+
defaultRates?: XOR<DefaultRatesNullableCreateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
67926
68091
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
67927
68092
|
isUsingSharedCalendar?: boolean
|
|
67928
68093
|
timezone?: XOR<TimezoneObjectNullableCreateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -67981,6 +68146,7 @@ export namespace Prisma {
|
|
|
67981
68146
|
websites?: UserCreatewebsitesInput | string[]
|
|
67982
68147
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
67983
68148
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
68149
|
+
defaultRates?: XOR<DefaultRatesNullableCreateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
67984
68150
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
67985
68151
|
isUsingSharedCalendar?: boolean
|
|
67986
68152
|
timezone?: XOR<TimezoneObjectNullableCreateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -68310,6 +68476,7 @@ export namespace Prisma {
|
|
|
68310
68476
|
websites?: UserUpdatewebsitesInput | string[]
|
|
68311
68477
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
68312
68478
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
68479
|
+
defaultRates?: XOR<DefaultRatesNullableUpdateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
68313
68480
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
68314
68481
|
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
68315
68482
|
timezone?: XOR<TimezoneObjectNullableUpdateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -68367,6 +68534,7 @@ export namespace Prisma {
|
|
|
68367
68534
|
websites?: UserUpdatewebsitesInput | string[]
|
|
68368
68535
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
68369
68536
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
68537
|
+
defaultRates?: XOR<DefaultRatesNullableUpdateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
68370
68538
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
68371
68539
|
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
68372
68540
|
timezone?: XOR<TimezoneObjectNullableUpdateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -68504,6 +68672,7 @@ export namespace Prisma {
|
|
|
68504
68672
|
websites?: UserUpdatewebsitesInput | string[]
|
|
68505
68673
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
68506
68674
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
68675
|
+
defaultRates?: XOR<DefaultRatesNullableUpdateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
68507
68676
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
68508
68677
|
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
68509
68678
|
timezone?: XOR<TimezoneObjectNullableUpdateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -68561,6 +68730,7 @@ export namespace Prisma {
|
|
|
68561
68730
|
websites?: UserUpdatewebsitesInput | string[]
|
|
68562
68731
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
68563
68732
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
68733
|
+
defaultRates?: XOR<DefaultRatesNullableUpdateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
68564
68734
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
68565
68735
|
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
68566
68736
|
timezone?: XOR<TimezoneObjectNullableUpdateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -68737,6 +68907,7 @@ export namespace Prisma {
|
|
|
68737
68907
|
websites?: UserCreatewebsitesInput | string[]
|
|
68738
68908
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
68739
68909
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
68910
|
+
defaultRates?: XOR<DefaultRatesNullableCreateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
68740
68911
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
68741
68912
|
isUsingSharedCalendar?: boolean
|
|
68742
68913
|
timezone?: XOR<TimezoneObjectNullableCreateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -68795,6 +68966,7 @@ export namespace Prisma {
|
|
|
68795
68966
|
websites?: UserCreatewebsitesInput | string[]
|
|
68796
68967
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
68797
68968
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
68969
|
+
defaultRates?: XOR<DefaultRatesNullableCreateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
68798
68970
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
68799
68971
|
isUsingSharedCalendar?: boolean
|
|
68800
68972
|
timezone?: XOR<TimezoneObjectNullableCreateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -68930,6 +69102,7 @@ export namespace Prisma {
|
|
|
68930
69102
|
websites?: UserUpdatewebsitesInput | string[]
|
|
68931
69103
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
68932
69104
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
69105
|
+
defaultRates?: XOR<DefaultRatesNullableUpdateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
68933
69106
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
68934
69107
|
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
68935
69108
|
timezone?: XOR<TimezoneObjectNullableUpdateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -68987,6 +69160,7 @@ export namespace Prisma {
|
|
|
68987
69160
|
websites?: UserUpdatewebsitesInput | string[]
|
|
68988
69161
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
68989
69162
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
69163
|
+
defaultRates?: XOR<DefaultRatesNullableUpdateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
68990
69164
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
68991
69165
|
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
68992
69166
|
timezone?: XOR<TimezoneObjectNullableUpdateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -69053,6 +69227,7 @@ export namespace Prisma {
|
|
|
69053
69227
|
websites?: UserCreatewebsitesInput | string[]
|
|
69054
69228
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
69055
69229
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
69230
|
+
defaultRates?: XOR<DefaultRatesNullableCreateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
69056
69231
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
69057
69232
|
isUsingSharedCalendar?: boolean
|
|
69058
69233
|
timezone?: XOR<TimezoneObjectNullableCreateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -69111,6 +69286,7 @@ export namespace Prisma {
|
|
|
69111
69286
|
websites?: UserCreatewebsitesInput | string[]
|
|
69112
69287
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
69113
69288
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
69289
|
+
defaultRates?: XOR<DefaultRatesNullableCreateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
69114
69290
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
69115
69291
|
isUsingSharedCalendar?: boolean
|
|
69116
69292
|
timezone?: XOR<TimezoneObjectNullableCreateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -69193,6 +69369,7 @@ export namespace Prisma {
|
|
|
69193
69369
|
websites?: UserUpdatewebsitesInput | string[]
|
|
69194
69370
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
69195
69371
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
69372
|
+
defaultRates?: XOR<DefaultRatesNullableUpdateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
69196
69373
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
69197
69374
|
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
69198
69375
|
timezone?: XOR<TimezoneObjectNullableUpdateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -69250,6 +69427,7 @@ export namespace Prisma {
|
|
|
69250
69427
|
websites?: UserUpdatewebsitesInput | string[]
|
|
69251
69428
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
69252
69429
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
69430
|
+
defaultRates?: XOR<DefaultRatesNullableUpdateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
69253
69431
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
69254
69432
|
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
69255
69433
|
timezone?: XOR<TimezoneObjectNullableUpdateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -69364,6 +69542,7 @@ export namespace Prisma {
|
|
|
69364
69542
|
websites?: UserCreatewebsitesInput | string[]
|
|
69365
69543
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
69366
69544
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
69545
|
+
defaultRates?: XOR<DefaultRatesNullableCreateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
69367
69546
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
69368
69547
|
isUsingSharedCalendar?: boolean
|
|
69369
69548
|
timezone?: XOR<TimezoneObjectNullableCreateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -69422,6 +69601,7 @@ export namespace Prisma {
|
|
|
69422
69601
|
websites?: UserCreatewebsitesInput | string[]
|
|
69423
69602
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
69424
69603
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
69604
|
+
defaultRates?: XOR<DefaultRatesNullableCreateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
69425
69605
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
69426
69606
|
isUsingSharedCalendar?: boolean
|
|
69427
69607
|
timezone?: XOR<TimezoneObjectNullableCreateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -69520,6 +69700,7 @@ export namespace Prisma {
|
|
|
69520
69700
|
websites?: UserCreatewebsitesInput | string[]
|
|
69521
69701
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
69522
69702
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
69703
|
+
defaultRates?: XOR<DefaultRatesNullableCreateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
69523
69704
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
69524
69705
|
isUsingSharedCalendar?: boolean
|
|
69525
69706
|
timezone?: XOR<TimezoneObjectNullableCreateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -69578,6 +69759,7 @@ export namespace Prisma {
|
|
|
69578
69759
|
websites?: UserCreatewebsitesInput | string[]
|
|
69579
69760
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
69580
69761
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
69762
|
+
defaultRates?: XOR<DefaultRatesNullableCreateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
69581
69763
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
69582
69764
|
isUsingSharedCalendar?: boolean
|
|
69583
69765
|
timezone?: XOR<TimezoneObjectNullableCreateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -69909,6 +70091,7 @@ export namespace Prisma {
|
|
|
69909
70091
|
websites?: UserUpdatewebsitesInput | string[]
|
|
69910
70092
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
69911
70093
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
70094
|
+
defaultRates?: XOR<DefaultRatesNullableUpdateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
69912
70095
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
69913
70096
|
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
69914
70097
|
timezone?: XOR<TimezoneObjectNullableUpdateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -69966,6 +70149,7 @@ export namespace Prisma {
|
|
|
69966
70149
|
websites?: UserUpdatewebsitesInput | string[]
|
|
69967
70150
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
69968
70151
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
70152
|
+
defaultRates?: XOR<DefaultRatesNullableUpdateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
69969
70153
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
69970
70154
|
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
69971
70155
|
timezone?: XOR<TimezoneObjectNullableUpdateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -70073,6 +70257,7 @@ export namespace Prisma {
|
|
|
70073
70257
|
websites?: UserUpdatewebsitesInput | string[]
|
|
70074
70258
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
70075
70259
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
70260
|
+
defaultRates?: XOR<DefaultRatesNullableUpdateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
70076
70261
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
70077
70262
|
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
70078
70263
|
timezone?: XOR<TimezoneObjectNullableUpdateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -70130,6 +70315,7 @@ export namespace Prisma {
|
|
|
70130
70315
|
websites?: UserUpdatewebsitesInput | string[]
|
|
70131
70316
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
70132
70317
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
70318
|
+
defaultRates?: XOR<DefaultRatesNullableUpdateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
70133
70319
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
70134
70320
|
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
70135
70321
|
timezone?: XOR<TimezoneObjectNullableUpdateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -70334,6 +70520,7 @@ export namespace Prisma {
|
|
|
70334
70520
|
websites?: UserCreatewebsitesInput | string[]
|
|
70335
70521
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
70336
70522
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
70523
|
+
defaultRates?: XOR<DefaultRatesNullableCreateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
70337
70524
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
70338
70525
|
isUsingSharedCalendar?: boolean
|
|
70339
70526
|
timezone?: XOR<TimezoneObjectNullableCreateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -70392,6 +70579,7 @@ export namespace Prisma {
|
|
|
70392
70579
|
websites?: UserCreatewebsitesInput | string[]
|
|
70393
70580
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
70394
70581
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
70582
|
+
defaultRates?: XOR<DefaultRatesNullableCreateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
70395
70583
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
70396
70584
|
isUsingSharedCalendar?: boolean
|
|
70397
70585
|
timezone?: XOR<TimezoneObjectNullableCreateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -70562,6 +70750,7 @@ export namespace Prisma {
|
|
|
70562
70750
|
websites?: UserCreatewebsitesInput | string[]
|
|
70563
70751
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
70564
70752
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
70753
|
+
defaultRates?: XOR<DefaultRatesNullableCreateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
70565
70754
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
70566
70755
|
isUsingSharedCalendar?: boolean
|
|
70567
70756
|
timezone?: XOR<TimezoneObjectNullableCreateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -70620,6 +70809,7 @@ export namespace Prisma {
|
|
|
70620
70809
|
websites?: UserCreatewebsitesInput | string[]
|
|
70621
70810
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
70622
70811
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
70812
|
+
defaultRates?: XOR<DefaultRatesNullableCreateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
70623
70813
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
70624
70814
|
isUsingSharedCalendar?: boolean
|
|
70625
70815
|
timezone?: XOR<TimezoneObjectNullableCreateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -70748,6 +70938,7 @@ export namespace Prisma {
|
|
|
70748
70938
|
websites?: UserCreatewebsitesInput | string[]
|
|
70749
70939
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
70750
70940
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
70941
|
+
defaultRates?: XOR<DefaultRatesNullableCreateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
70751
70942
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
70752
70943
|
isUsingSharedCalendar?: boolean
|
|
70753
70944
|
timezone?: XOR<TimezoneObjectNullableCreateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -70806,6 +70997,7 @@ export namespace Prisma {
|
|
|
70806
70997
|
websites?: UserCreatewebsitesInput | string[]
|
|
70807
70998
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
70808
70999
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
71000
|
+
defaultRates?: XOR<DefaultRatesNullableCreateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
70809
71001
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
70810
71002
|
isUsingSharedCalendar?: boolean
|
|
70811
71003
|
timezone?: XOR<TimezoneObjectNullableCreateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -70978,6 +71170,7 @@ export namespace Prisma {
|
|
|
70978
71170
|
websites?: UserUpdatewebsitesInput | string[]
|
|
70979
71171
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
70980
71172
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
71173
|
+
defaultRates?: XOR<DefaultRatesNullableUpdateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
70981
71174
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
70982
71175
|
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
70983
71176
|
timezone?: XOR<TimezoneObjectNullableUpdateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -71035,6 +71228,7 @@ export namespace Prisma {
|
|
|
71035
71228
|
websites?: UserUpdatewebsitesInput | string[]
|
|
71036
71229
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
71037
71230
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
71231
|
+
defaultRates?: XOR<DefaultRatesNullableUpdateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
71038
71232
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
71039
71233
|
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
71040
71234
|
timezone?: XOR<TimezoneObjectNullableUpdateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -71214,6 +71408,7 @@ export namespace Prisma {
|
|
|
71214
71408
|
websites?: UserUpdatewebsitesInput | string[]
|
|
71215
71409
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
71216
71410
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
71411
|
+
defaultRates?: XOR<DefaultRatesNullableUpdateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
71217
71412
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
71218
71413
|
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
71219
71414
|
timezone?: XOR<TimezoneObjectNullableUpdateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -71271,6 +71466,7 @@ export namespace Prisma {
|
|
|
71271
71466
|
websites?: UserUpdatewebsitesInput | string[]
|
|
71272
71467
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
71273
71468
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
71469
|
+
defaultRates?: XOR<DefaultRatesNullableUpdateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
71274
71470
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
71275
71471
|
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
71276
71472
|
timezone?: XOR<TimezoneObjectNullableUpdateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -71408,6 +71604,7 @@ export namespace Prisma {
|
|
|
71408
71604
|
websites?: UserUpdatewebsitesInput | string[]
|
|
71409
71605
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
71410
71606
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
71607
|
+
defaultRates?: XOR<DefaultRatesNullableUpdateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
71411
71608
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
71412
71609
|
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
71413
71610
|
timezone?: XOR<TimezoneObjectNullableUpdateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -71465,6 +71662,7 @@ export namespace Prisma {
|
|
|
71465
71662
|
websites?: UserUpdatewebsitesInput | string[]
|
|
71466
71663
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
71467
71664
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
71665
|
+
defaultRates?: XOR<DefaultRatesNullableUpdateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
71468
71666
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
71469
71667
|
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
71470
71668
|
timezone?: XOR<TimezoneObjectNullableUpdateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -72902,6 +73100,11 @@ export namespace Prisma {
|
|
|
72902
73100
|
update: UserExclusiveApplicationUpdateInput
|
|
72903
73101
|
}
|
|
72904
73102
|
|
|
73103
|
+
export type DefaultRatesUpsertInput = {
|
|
73104
|
+
set: DefaultRatesCreateInput | null
|
|
73105
|
+
update: DefaultRatesUpdateInput
|
|
73106
|
+
}
|
|
73107
|
+
|
|
72905
73108
|
export type PlatformExperienceUpsertInput = {
|
|
72906
73109
|
set: PlatformExperienceCreateInput | null
|
|
72907
73110
|
update: PlatformExperienceUpdateInput
|
|
@@ -73387,6 +73590,7 @@ export namespace Prisma {
|
|
|
73387
73590
|
websites?: UserCreatewebsitesInput | string[]
|
|
73388
73591
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
73389
73592
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
73593
|
+
defaultRates?: XOR<DefaultRatesNullableCreateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
73390
73594
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
73391
73595
|
isUsingSharedCalendar?: boolean
|
|
73392
73596
|
timezone?: XOR<TimezoneObjectNullableCreateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -73445,6 +73649,7 @@ export namespace Prisma {
|
|
|
73445
73649
|
websites?: UserCreatewebsitesInput | string[]
|
|
73446
73650
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
73447
73651
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
73652
|
+
defaultRates?: XOR<DefaultRatesNullableCreateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
73448
73653
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
73449
73654
|
isUsingSharedCalendar?: boolean
|
|
73450
73655
|
timezone?: XOR<TimezoneObjectNullableCreateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -73527,6 +73732,7 @@ export namespace Prisma {
|
|
|
73527
73732
|
websites?: UserUpdatewebsitesInput | string[]
|
|
73528
73733
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
73529
73734
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
73735
|
+
defaultRates?: XOR<DefaultRatesNullableUpdateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
73530
73736
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
73531
73737
|
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
73532
73738
|
timezone?: XOR<TimezoneObjectNullableUpdateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -73584,6 +73790,7 @@ export namespace Prisma {
|
|
|
73584
73790
|
websites?: UserUpdatewebsitesInput | string[]
|
|
73585
73791
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
73586
73792
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
73793
|
+
defaultRates?: XOR<DefaultRatesNullableUpdateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
73587
73794
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
73588
73795
|
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
73589
73796
|
timezone?: XOR<TimezoneObjectNullableUpdateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -73681,6 +73888,7 @@ export namespace Prisma {
|
|
|
73681
73888
|
websites?: UserCreatewebsitesInput | string[]
|
|
73682
73889
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
73683
73890
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
73891
|
+
defaultRates?: XOR<DefaultRatesNullableCreateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
73684
73892
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
73685
73893
|
isUsingSharedCalendar?: boolean
|
|
73686
73894
|
timezone?: XOR<TimezoneObjectNullableCreateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -73739,6 +73947,7 @@ export namespace Prisma {
|
|
|
73739
73947
|
websites?: UserCreatewebsitesInput | string[]
|
|
73740
73948
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
73741
73949
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
73950
|
+
defaultRates?: XOR<DefaultRatesNullableCreateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
73742
73951
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
73743
73952
|
isUsingSharedCalendar?: boolean
|
|
73744
73953
|
timezone?: XOR<TimezoneObjectNullableCreateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -73802,6 +74011,7 @@ export namespace Prisma {
|
|
|
73802
74011
|
websites?: UserCreatewebsitesInput | string[]
|
|
73803
74012
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
73804
74013
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
74014
|
+
defaultRates?: XOR<DefaultRatesNullableCreateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
73805
74015
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
73806
74016
|
isUsingSharedCalendar?: boolean
|
|
73807
74017
|
timezone?: XOR<TimezoneObjectNullableCreateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -73860,6 +74070,7 @@ export namespace Prisma {
|
|
|
73860
74070
|
websites?: UserCreatewebsitesInput | string[]
|
|
73861
74071
|
location?: XOR<LocationNullableCreateEnvelopeInput, LocationCreateInput> | null
|
|
73862
74072
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableCreateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
74073
|
+
defaultRates?: XOR<DefaultRatesNullableCreateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
73863
74074
|
platformExperience?: XOR<PlatformExperienceNullableCreateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
73864
74075
|
isUsingSharedCalendar?: boolean
|
|
73865
74076
|
timezone?: XOR<TimezoneObjectNullableCreateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -74093,6 +74304,7 @@ export namespace Prisma {
|
|
|
74093
74304
|
websites?: UserUpdatewebsitesInput | string[]
|
|
74094
74305
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
74095
74306
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
74307
|
+
defaultRates?: XOR<DefaultRatesNullableUpdateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
74096
74308
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
74097
74309
|
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
74098
74310
|
timezone?: XOR<TimezoneObjectNullableUpdateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -74150,6 +74362,7 @@ export namespace Prisma {
|
|
|
74150
74362
|
websites?: UserUpdatewebsitesInput | string[]
|
|
74151
74363
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
74152
74364
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
74365
|
+
defaultRates?: XOR<DefaultRatesNullableUpdateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
74153
74366
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
74154
74367
|
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
74155
74368
|
timezone?: XOR<TimezoneObjectNullableUpdateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -74218,6 +74431,7 @@ export namespace Prisma {
|
|
|
74218
74431
|
websites?: UserUpdatewebsitesInput | string[]
|
|
74219
74432
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
74220
74433
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
74434
|
+
defaultRates?: XOR<DefaultRatesNullableUpdateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
74221
74435
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
74222
74436
|
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
74223
74437
|
timezone?: XOR<TimezoneObjectNullableUpdateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -74275,6 +74489,7 @@ export namespace Prisma {
|
|
|
74275
74489
|
websites?: UserUpdatewebsitesInput | string[]
|
|
74276
74490
|
location?: XOR<LocationNullableUpdateEnvelopeInput, LocationCreateInput> | null
|
|
74277
74491
|
exclusiveApplication?: XOR<UserExclusiveApplicationNullableUpdateEnvelopeInput, UserExclusiveApplicationCreateInput> | null
|
|
74492
|
+
defaultRates?: XOR<DefaultRatesNullableUpdateEnvelopeInput, DefaultRatesCreateInput> | null
|
|
74278
74493
|
platformExperience?: XOR<PlatformExperienceNullableUpdateEnvelopeInput, PlatformExperienceCreateInput> | null
|
|
74279
74494
|
isUsingSharedCalendar?: BoolFieldUpdateOperationsInput | boolean
|
|
74280
74495
|
timezone?: XOR<TimezoneObjectNullableUpdateEnvelopeInput, TimezoneObjectCreateInput> | null
|
|
@@ -76643,12 +76858,12 @@ export namespace Prisma {
|
|
|
76643
76858
|
}
|
|
76644
76859
|
|
|
76645
76860
|
export type WorkingHoursUpdateInput = {
|
|
76646
|
-
name?:
|
|
76647
|
-
utcOffset?:
|
|
76861
|
+
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
76862
|
+
utcOffset?: NullableIntFieldUpdateOperationsInput | number | null
|
|
76648
76863
|
daily?: XOR<LocalHourRangeListUpdateEnvelopeInput, LocalHourRangeCreateInput> | LocalHourRangeCreateInput[]
|
|
76649
76864
|
utcStandardHours?: XOR<LocalHourRangeListUpdateEnvelopeInput, LocalHourRangeCreateInput> | LocalHourRangeCreateInput[]
|
|
76650
76865
|
utcDaylightHours?: XOR<LocalHourRangeListUpdateEnvelopeInput, LocalHourRangeCreateInput> | LocalHourRangeCreateInput[]
|
|
76651
|
-
numberOfMinutesOverlap?:
|
|
76866
|
+
numberOfMinutesOverlap?: IntFieldUpdateOperationsInput | number
|
|
76652
76867
|
}
|
|
76653
76868
|
|
|
76654
76869
|
export type ProposalUpdateWithoutMissionSpecInput = {
|
|
@@ -77550,6 +77765,11 @@ export namespace Prisma {
|
|
|
77550
77765
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
77551
77766
|
}
|
|
77552
77767
|
|
|
77768
|
+
export type DefaultRatesUpdateInput = {
|
|
77769
|
+
hourlyRate?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
77770
|
+
monthlyRate?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
77771
|
+
}
|
|
77772
|
+
|
|
77553
77773
|
export type PlatformExperienceUpdateInput = {
|
|
77554
77774
|
billedMinutes?: FloatFieldUpdateOperationsInput | number
|
|
77555
77775
|
}
|
|
@@ -80449,6 +80669,10 @@ export namespace Prisma {
|
|
|
80449
80669
|
* @deprecated Use TimezoneObjectDefaultArgs instead
|
|
80450
80670
|
*/
|
|
80451
80671
|
export type TimezoneObjectArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = TimezoneObjectDefaultArgs<ExtArgs>
|
|
80672
|
+
/**
|
|
80673
|
+
* @deprecated Use WorkingHoursDefaultArgs instead
|
|
80674
|
+
*/
|
|
80675
|
+
export type WorkingHoursArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = WorkingHoursDefaultArgs<ExtArgs>
|
|
80452
80676
|
/**
|
|
80453
80677
|
* @deprecated Use StructuredEnrichmentDefaultArgs instead
|
|
80454
80678
|
*/
|
|
@@ -80629,10 +80853,6 @@ export namespace Prisma {
|
|
|
80629
80853
|
* @deprecated Use StatusTimeDefaultArgs instead
|
|
80630
80854
|
*/
|
|
80631
80855
|
export type StatusTimeArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = StatusTimeDefaultArgs<ExtArgs>
|
|
80632
|
-
/**
|
|
80633
|
-
* @deprecated Use WorkingHoursDefaultArgs instead
|
|
80634
|
-
*/
|
|
80635
|
-
export type WorkingHoursArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = WorkingHoursDefaultArgs<ExtArgs>
|
|
80636
80856
|
/**
|
|
80637
80857
|
* @deprecated Use ClientRoleQuestionDefaultArgs instead
|
|
80638
80858
|
*/
|
|
@@ -80773,6 +80993,10 @@ export namespace Prisma {
|
|
|
80773
80993
|
* @deprecated Use UserPortfolioDefaultArgs instead
|
|
80774
80994
|
*/
|
|
80775
80995
|
export type UserPortfolioArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = UserPortfolioDefaultArgs<ExtArgs>
|
|
80996
|
+
/**
|
|
80997
|
+
* @deprecated Use DefaultRatesDefaultArgs instead
|
|
80998
|
+
*/
|
|
80999
|
+
export type DefaultRatesArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = DefaultRatesDefaultArgs<ExtArgs>
|
|
80776
81000
|
/**
|
|
80777
81001
|
* @deprecated Use BookingFrequencyDefaultArgs instead
|
|
80778
81002
|
*/
|