@a_team/prisma 3.12.7-win → 3.12.8-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 +8 -6
- package/dist/client/index-browser.js +4 -2
- package/dist/client/index.d.ts +413 -3
- package/dist/client/index.js +10 -8
- package/dist/client/{query_engine-windows.dll.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 +4 -0
- package/dist/client/wasm.js +4 -2
- package/package.json +2 -2
package/dist/client/index.d.ts
CHANGED
|
@@ -593,7 +593,8 @@ export const EventStatus: {
|
|
|
593
593
|
accepted: 'accepted',
|
|
594
594
|
rejected: 'rejected',
|
|
595
595
|
rescheduled: 'rescheduled',
|
|
596
|
-
deleted: 'deleted'
|
|
596
|
+
deleted: 'deleted',
|
|
597
|
+
canceled: 'canceled'
|
|
597
598
|
};
|
|
598
599
|
|
|
599
600
|
export type EventStatus = (typeof EventStatus)[keyof typeof EventStatus]
|
|
@@ -14571,6 +14572,7 @@ export namespace Prisma {
|
|
|
14571
14572
|
calendar?: boolean | CalendarDefaultArgs<ExtArgs>
|
|
14572
14573
|
eventType?: boolean | CalendarEventTypeDefaultArgs<ExtArgs>
|
|
14573
14574
|
reschedulingUser?: boolean | CalendarEvent$reschedulingUserArgs<ExtArgs>
|
|
14575
|
+
clientInterview?: boolean | CalendarEvent$clientInterviewArgs<ExtArgs>
|
|
14574
14576
|
}, ExtArgs["result"]["calendarEvent"]>
|
|
14575
14577
|
|
|
14576
14578
|
|
|
@@ -14599,6 +14601,7 @@ export namespace Prisma {
|
|
|
14599
14601
|
calendar?: boolean | CalendarDefaultArgs<ExtArgs>
|
|
14600
14602
|
eventType?: boolean | CalendarEventTypeDefaultArgs<ExtArgs>
|
|
14601
14603
|
reschedulingUser?: boolean | CalendarEvent$reschedulingUserArgs<ExtArgs>
|
|
14604
|
+
clientInterview?: boolean | CalendarEvent$clientInterviewArgs<ExtArgs>
|
|
14602
14605
|
}
|
|
14603
14606
|
|
|
14604
14607
|
export type $CalendarEventPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -14608,6 +14611,7 @@ export namespace Prisma {
|
|
|
14608
14611
|
calendar: Prisma.$CalendarPayload<ExtArgs>
|
|
14609
14612
|
eventType: Prisma.$CalendarEventTypePayload<ExtArgs>
|
|
14610
14613
|
reschedulingUser: Prisma.$UserPayload<ExtArgs> | null
|
|
14614
|
+
clientInterview: Prisma.$ClientInterviewPayload<ExtArgs> | null
|
|
14611
14615
|
}
|
|
14612
14616
|
scalars: $Extensions.GetPayloadResult<{
|
|
14613
14617
|
id: string
|
|
@@ -14996,6 +15000,7 @@ export namespace Prisma {
|
|
|
14996
15000
|
calendar<T extends CalendarDefaultArgs<ExtArgs> = {}>(args?: Subset<T, CalendarDefaultArgs<ExtArgs>>): Prisma__CalendarClient<$Result.GetResult<Prisma.$CalendarPayload<ExtArgs>, T, "findUniqueOrThrow"> | Null, Null, ExtArgs>
|
|
14997
15001
|
eventType<T extends CalendarEventTypeDefaultArgs<ExtArgs> = {}>(args?: Subset<T, CalendarEventTypeDefaultArgs<ExtArgs>>): Prisma__CalendarEventTypeClient<$Result.GetResult<Prisma.$CalendarEventTypePayload<ExtArgs>, T, "findUniqueOrThrow"> | Null, Null, ExtArgs>
|
|
14998
15002
|
reschedulingUser<T extends CalendarEvent$reschedulingUserArgs<ExtArgs> = {}>(args?: Subset<T, CalendarEvent$reschedulingUserArgs<ExtArgs>>): Prisma__UserClient<$Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, "findUniqueOrThrow"> | null, null, ExtArgs>
|
|
15003
|
+
clientInterview<T extends CalendarEvent$clientInterviewArgs<ExtArgs> = {}>(args?: Subset<T, CalendarEvent$clientInterviewArgs<ExtArgs>>): Prisma__ClientInterviewClient<$Result.GetResult<Prisma.$ClientInterviewPayload<ExtArgs>, T, "findUniqueOrThrow"> | null, null, ExtArgs>
|
|
14999
15004
|
/**
|
|
15000
15005
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
15001
15006
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -15382,6 +15387,21 @@ export namespace Prisma {
|
|
|
15382
15387
|
where?: UserWhereInput
|
|
15383
15388
|
}
|
|
15384
15389
|
|
|
15390
|
+
/**
|
|
15391
|
+
* CalendarEvent.clientInterview
|
|
15392
|
+
*/
|
|
15393
|
+
export type CalendarEvent$clientInterviewArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
15394
|
+
/**
|
|
15395
|
+
* Select specific fields to fetch from the ClientInterview
|
|
15396
|
+
*/
|
|
15397
|
+
select?: ClientInterviewSelect<ExtArgs> | null
|
|
15398
|
+
/**
|
|
15399
|
+
* Choose, which related nodes to fetch as well
|
|
15400
|
+
*/
|
|
15401
|
+
include?: ClientInterviewInclude<ExtArgs> | null
|
|
15402
|
+
where?: ClientInterviewWhereInput
|
|
15403
|
+
}
|
|
15404
|
+
|
|
15385
15405
|
/**
|
|
15386
15406
|
* CalendarEvent without action
|
|
15387
15407
|
*/
|
|
@@ -17594,6 +17614,7 @@ export namespace Prisma {
|
|
|
17594
17614
|
interviewRequestExpireAt: Date | null
|
|
17595
17615
|
slackThreadMessageId: string | null
|
|
17596
17616
|
proposalId: string | null
|
|
17617
|
+
calendarEventId: string | null
|
|
17597
17618
|
}
|
|
17598
17619
|
|
|
17599
17620
|
export type ClientInterviewMaxAggregateOutputType = {
|
|
@@ -17622,6 +17643,7 @@ export namespace Prisma {
|
|
|
17622
17643
|
interviewRequestExpireAt: Date | null
|
|
17623
17644
|
slackThreadMessageId: string | null
|
|
17624
17645
|
proposalId: string | null
|
|
17646
|
+
calendarEventId: string | null
|
|
17625
17647
|
}
|
|
17626
17648
|
|
|
17627
17649
|
export type ClientInterviewCountAggregateOutputType = {
|
|
@@ -17650,6 +17672,7 @@ export namespace Prisma {
|
|
|
17650
17672
|
interviewRequestExpireAt: number
|
|
17651
17673
|
slackThreadMessageId: number
|
|
17652
17674
|
proposalId: number
|
|
17675
|
+
calendarEventId: number
|
|
17653
17676
|
_all: number
|
|
17654
17677
|
}
|
|
17655
17678
|
|
|
@@ -17694,6 +17717,7 @@ export namespace Prisma {
|
|
|
17694
17717
|
interviewRequestExpireAt?: true
|
|
17695
17718
|
slackThreadMessageId?: true
|
|
17696
17719
|
proposalId?: true
|
|
17720
|
+
calendarEventId?: true
|
|
17697
17721
|
}
|
|
17698
17722
|
|
|
17699
17723
|
export type ClientInterviewMaxAggregateInputType = {
|
|
@@ -17722,6 +17746,7 @@ export namespace Prisma {
|
|
|
17722
17746
|
interviewRequestExpireAt?: true
|
|
17723
17747
|
slackThreadMessageId?: true
|
|
17724
17748
|
proposalId?: true
|
|
17749
|
+
calendarEventId?: true
|
|
17725
17750
|
}
|
|
17726
17751
|
|
|
17727
17752
|
export type ClientInterviewCountAggregateInputType = {
|
|
@@ -17750,6 +17775,7 @@ export namespace Prisma {
|
|
|
17750
17775
|
interviewRequestExpireAt?: true
|
|
17751
17776
|
slackThreadMessageId?: true
|
|
17752
17777
|
proposalId?: true
|
|
17778
|
+
calendarEventId?: true
|
|
17753
17779
|
_all?: true
|
|
17754
17780
|
}
|
|
17755
17781
|
|
|
@@ -17865,6 +17891,7 @@ export namespace Prisma {
|
|
|
17865
17891
|
interviewRequestExpireAt: Date | null
|
|
17866
17892
|
slackThreadMessageId: string | null
|
|
17867
17893
|
proposalId: string | null
|
|
17894
|
+
calendarEventId: string | null
|
|
17868
17895
|
_count: ClientInterviewCountAggregateOutputType | null
|
|
17869
17896
|
_avg: ClientInterviewAvgAggregateOutputType | null
|
|
17870
17897
|
_sum: ClientInterviewSumAggregateOutputType | null
|
|
@@ -17915,10 +17942,12 @@ export namespace Prisma {
|
|
|
17915
17942
|
proposalId?: boolean
|
|
17916
17943
|
feedback?: boolean | ClientInterviewFeedbackDefaultArgs<ExtArgs>
|
|
17917
17944
|
rescheduledBy?: boolean | ClientInterviewRescheduledByDataDefaultArgs<ExtArgs>
|
|
17945
|
+
calendarEventId?: boolean
|
|
17918
17946
|
account?: boolean | AccountDefaultArgs<ExtArgs>
|
|
17919
17947
|
client?: boolean | UserDefaultArgs<ExtArgs>
|
|
17920
17948
|
builder?: boolean | UserDefaultArgs<ExtArgs>
|
|
17921
17949
|
proposal?: boolean | ClientInterview$proposalArgs<ExtArgs>
|
|
17950
|
+
calendarEvent?: boolean | ClientInterview$calendarEventArgs<ExtArgs>
|
|
17922
17951
|
}, ExtArgs["result"]["clientInterview"]>
|
|
17923
17952
|
|
|
17924
17953
|
|
|
@@ -17948,6 +17977,7 @@ export namespace Prisma {
|
|
|
17948
17977
|
interviewRequestExpireAt?: boolean
|
|
17949
17978
|
slackThreadMessageId?: boolean
|
|
17950
17979
|
proposalId?: boolean
|
|
17980
|
+
calendarEventId?: boolean
|
|
17951
17981
|
}
|
|
17952
17982
|
|
|
17953
17983
|
export type ClientInterviewInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -17955,6 +17985,7 @@ export namespace Prisma {
|
|
|
17955
17985
|
client?: boolean | UserDefaultArgs<ExtArgs>
|
|
17956
17986
|
builder?: boolean | UserDefaultArgs<ExtArgs>
|
|
17957
17987
|
proposal?: boolean | ClientInterview$proposalArgs<ExtArgs>
|
|
17988
|
+
calendarEvent?: boolean | ClientInterview$calendarEventArgs<ExtArgs>
|
|
17958
17989
|
}
|
|
17959
17990
|
|
|
17960
17991
|
export type $ClientInterviewPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -17964,6 +17995,7 @@ export namespace Prisma {
|
|
|
17964
17995
|
client: Prisma.$UserPayload<ExtArgs>
|
|
17965
17996
|
builder: Prisma.$UserPayload<ExtArgs>
|
|
17966
17997
|
proposal: Prisma.$ProposalPayload<ExtArgs> | null
|
|
17998
|
+
calendarEvent: Prisma.$CalendarEventPayload<ExtArgs> | null
|
|
17967
17999
|
}
|
|
17968
18000
|
scalars: $Extensions.GetPayloadResult<{
|
|
17969
18001
|
id: string
|
|
@@ -17991,6 +18023,7 @@ export namespace Prisma {
|
|
|
17991
18023
|
interviewRequestExpireAt: Date | null
|
|
17992
18024
|
slackThreadMessageId: string | null
|
|
17993
18025
|
proposalId: string | null
|
|
18026
|
+
calendarEventId: string | null
|
|
17994
18027
|
}, ExtArgs["result"]["clientInterview"]>
|
|
17995
18028
|
composites: {
|
|
17996
18029
|
transcripts: Prisma.$ClientInterviewTranscriptDataPayload[]
|
|
@@ -18362,6 +18395,7 @@ export namespace Prisma {
|
|
|
18362
18395
|
client<T extends UserDefaultArgs<ExtArgs> = {}>(args?: Subset<T, UserDefaultArgs<ExtArgs>>): Prisma__UserClient<$Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, "findUniqueOrThrow"> | Null, Null, ExtArgs>
|
|
18363
18396
|
builder<T extends UserDefaultArgs<ExtArgs> = {}>(args?: Subset<T, UserDefaultArgs<ExtArgs>>): Prisma__UserClient<$Result.GetResult<Prisma.$UserPayload<ExtArgs>, T, "findUniqueOrThrow"> | Null, Null, ExtArgs>
|
|
18364
18397
|
proposal<T extends ClientInterview$proposalArgs<ExtArgs> = {}>(args?: Subset<T, ClientInterview$proposalArgs<ExtArgs>>): Prisma__ProposalClient<$Result.GetResult<Prisma.$ProposalPayload<ExtArgs>, T, "findUniqueOrThrow"> | null, null, ExtArgs>
|
|
18398
|
+
calendarEvent<T extends ClientInterview$calendarEventArgs<ExtArgs> = {}>(args?: Subset<T, ClientInterview$calendarEventArgs<ExtArgs>>): Prisma__CalendarEventClient<$Result.GetResult<Prisma.$CalendarEventPayload<ExtArgs>, T, "findUniqueOrThrow"> | null, null, ExtArgs>
|
|
18365
18399
|
/**
|
|
18366
18400
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
18367
18401
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -18416,6 +18450,7 @@ export namespace Prisma {
|
|
|
18416
18450
|
readonly interviewRequestExpireAt: FieldRef<"ClientInterview", 'DateTime'>
|
|
18417
18451
|
readonly slackThreadMessageId: FieldRef<"ClientInterview", 'String'>
|
|
18418
18452
|
readonly proposalId: FieldRef<"ClientInterview", 'String'>
|
|
18453
|
+
readonly calendarEventId: FieldRef<"ClientInterview", 'String'>
|
|
18419
18454
|
}
|
|
18420
18455
|
|
|
18421
18456
|
|
|
@@ -18756,6 +18791,21 @@ export namespace Prisma {
|
|
|
18756
18791
|
where?: ProposalWhereInput
|
|
18757
18792
|
}
|
|
18758
18793
|
|
|
18794
|
+
/**
|
|
18795
|
+
* ClientInterview.calendarEvent
|
|
18796
|
+
*/
|
|
18797
|
+
export type ClientInterview$calendarEventArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
18798
|
+
/**
|
|
18799
|
+
* Select specific fields to fetch from the CalendarEvent
|
|
18800
|
+
*/
|
|
18801
|
+
select?: CalendarEventSelect<ExtArgs> | null
|
|
18802
|
+
/**
|
|
18803
|
+
* Choose, which related nodes to fetch as well
|
|
18804
|
+
*/
|
|
18805
|
+
include?: CalendarEventInclude<ExtArgs> | null
|
|
18806
|
+
where?: CalendarEventWhereInput
|
|
18807
|
+
}
|
|
18808
|
+
|
|
18759
18809
|
/**
|
|
18760
18810
|
* ClientInterview without action
|
|
18761
18811
|
*/
|
|
@@ -36305,7 +36355,8 @@ export namespace Prisma {
|
|
|
36305
36355
|
canceledFromClientApp: 'canceledFromClientApp',
|
|
36306
36356
|
interviewRequestExpireAt: 'interviewRequestExpireAt',
|
|
36307
36357
|
slackThreadMessageId: 'slackThreadMessageId',
|
|
36308
|
-
proposalId: 'proposalId'
|
|
36358
|
+
proposalId: 'proposalId',
|
|
36359
|
+
calendarEventId: 'calendarEventId'
|
|
36309
36360
|
};
|
|
36310
36361
|
|
|
36311
36362
|
export type ClientInterviewScalarFieldEnum = (typeof ClientInterviewScalarFieldEnum)[keyof typeof ClientInterviewScalarFieldEnum]
|
|
@@ -37544,6 +37595,7 @@ export namespace Prisma {
|
|
|
37544
37595
|
calendar?: XOR<CalendarRelationFilter, CalendarWhereInput>
|
|
37545
37596
|
eventType?: XOR<CalendarEventTypeRelationFilter, CalendarEventTypeWhereInput>
|
|
37546
37597
|
reschedulingUser?: XOR<UserNullableRelationFilter, UserWhereInput> | null
|
|
37598
|
+
clientInterview?: XOR<ClientInterviewNullableRelationFilter, ClientInterviewWhereInput> | null
|
|
37547
37599
|
}
|
|
37548
37600
|
|
|
37549
37601
|
export type CalendarEventOrderByWithRelationInput = {
|
|
@@ -37569,6 +37621,7 @@ export namespace Prisma {
|
|
|
37569
37621
|
calendar?: CalendarOrderByWithRelationInput
|
|
37570
37622
|
eventType?: CalendarEventTypeOrderByWithRelationInput
|
|
37571
37623
|
reschedulingUser?: UserOrderByWithRelationInput
|
|
37624
|
+
clientInterview?: ClientInterviewOrderByWithRelationInput
|
|
37572
37625
|
}
|
|
37573
37626
|
|
|
37574
37627
|
export type CalendarEventWhereUniqueInput = Prisma.AtLeast<{
|
|
@@ -37597,6 +37650,7 @@ export namespace Prisma {
|
|
|
37597
37650
|
calendar?: XOR<CalendarRelationFilter, CalendarWhereInput>
|
|
37598
37651
|
eventType?: XOR<CalendarEventTypeRelationFilter, CalendarEventTypeWhereInput>
|
|
37599
37652
|
reschedulingUser?: XOR<UserNullableRelationFilter, UserWhereInput> | null
|
|
37653
|
+
clientInterview?: XOR<ClientInterviewNullableRelationFilter, ClientInterviewWhereInput> | null
|
|
37600
37654
|
}, "id" | "calendarEventId">
|
|
37601
37655
|
|
|
37602
37656
|
export type CalendarEventOrderByWithAggregationInput = {
|
|
@@ -37853,10 +37907,12 @@ export namespace Prisma {
|
|
|
37853
37907
|
proposalId?: StringNullableFilter<"ClientInterview"> | string | null
|
|
37854
37908
|
feedback?: XOR<ClientInterviewFeedbackNullableCompositeFilter, ClientInterviewFeedbackObjectEqualityInput> | null
|
|
37855
37909
|
rescheduledBy?: XOR<ClientInterviewRescheduledByDataNullableCompositeFilter, ClientInterviewRescheduledByDataObjectEqualityInput> | null
|
|
37910
|
+
calendarEventId?: StringNullableFilter<"ClientInterview"> | string | null
|
|
37856
37911
|
account?: XOR<AccountRelationFilter, AccountWhereInput>
|
|
37857
37912
|
client?: XOR<UserRelationFilter, UserWhereInput>
|
|
37858
37913
|
builder?: XOR<UserRelationFilter, UserWhereInput>
|
|
37859
37914
|
proposal?: XOR<ProposalNullableRelationFilter, ProposalWhereInput> | null
|
|
37915
|
+
calendarEvent?: XOR<CalendarEventNullableRelationFilter, CalendarEventWhereInput> | null
|
|
37860
37916
|
}
|
|
37861
37917
|
|
|
37862
37918
|
export type ClientInterviewOrderByWithRelationInput = {
|
|
@@ -37888,14 +37944,17 @@ export namespace Prisma {
|
|
|
37888
37944
|
proposalId?: SortOrder
|
|
37889
37945
|
feedback?: ClientInterviewFeedbackOrderByInput
|
|
37890
37946
|
rescheduledBy?: ClientInterviewRescheduledByDataOrderByInput
|
|
37947
|
+
calendarEventId?: SortOrder
|
|
37891
37948
|
account?: AccountOrderByWithRelationInput
|
|
37892
37949
|
client?: UserOrderByWithRelationInput
|
|
37893
37950
|
builder?: UserOrderByWithRelationInput
|
|
37894
37951
|
proposal?: ProposalOrderByWithRelationInput
|
|
37952
|
+
calendarEvent?: CalendarEventOrderByWithRelationInput
|
|
37895
37953
|
}
|
|
37896
37954
|
|
|
37897
37955
|
export type ClientInterviewWhereUniqueInput = Prisma.AtLeast<{
|
|
37898
37956
|
id?: string
|
|
37957
|
+
calendarEventId?: string
|
|
37899
37958
|
AND?: ClientInterviewWhereInput | ClientInterviewWhereInput[]
|
|
37900
37959
|
OR?: ClientInterviewWhereInput[]
|
|
37901
37960
|
NOT?: ClientInterviewWhereInput | ClientInterviewWhereInput[]
|
|
@@ -37930,7 +37989,8 @@ export namespace Prisma {
|
|
|
37930
37989
|
client?: XOR<UserRelationFilter, UserWhereInput>
|
|
37931
37990
|
builder?: XOR<UserRelationFilter, UserWhereInput>
|
|
37932
37991
|
proposal?: XOR<ProposalNullableRelationFilter, ProposalWhereInput> | null
|
|
37933
|
-
|
|
37992
|
+
calendarEvent?: XOR<CalendarEventNullableRelationFilter, CalendarEventWhereInput> | null
|
|
37993
|
+
}, "id" | "calendarEventId">
|
|
37934
37994
|
|
|
37935
37995
|
export type ClientInterviewOrderByWithAggregationInput = {
|
|
37936
37996
|
id?: SortOrder
|
|
@@ -37958,6 +38018,7 @@ export namespace Prisma {
|
|
|
37958
38018
|
interviewRequestExpireAt?: SortOrder
|
|
37959
38019
|
slackThreadMessageId?: SortOrder
|
|
37960
38020
|
proposalId?: SortOrder
|
|
38021
|
+
calendarEventId?: SortOrder
|
|
37961
38022
|
_count?: ClientInterviewCountOrderByAggregateInput
|
|
37962
38023
|
_avg?: ClientInterviewAvgOrderByAggregateInput
|
|
37963
38024
|
_max?: ClientInterviewMaxOrderByAggregateInput
|
|
@@ -37994,6 +38055,7 @@ export namespace Prisma {
|
|
|
37994
38055
|
interviewRequestExpireAt?: DateTimeNullableWithAggregatesFilter<"ClientInterview"> | Date | string | null
|
|
37995
38056
|
slackThreadMessageId?: StringNullableWithAggregatesFilter<"ClientInterview"> | string | null
|
|
37996
38057
|
proposalId?: StringNullableWithAggregatesFilter<"ClientInterview"> | string | null
|
|
38058
|
+
calendarEventId?: StringNullableWithAggregatesFilter<"ClientInterview"> | string | null
|
|
37997
38059
|
}
|
|
37998
38060
|
|
|
37999
38061
|
export type CompanyWhereInput = {
|
|
@@ -40177,6 +40239,7 @@ export namespace Prisma {
|
|
|
40177
40239
|
calendar: CalendarCreateNestedOneWithoutEventsInput
|
|
40178
40240
|
eventType: CalendarEventTypeCreateNestedOneWithoutEventsInput
|
|
40179
40241
|
reschedulingUser?: UserCreateNestedOneWithoutRescheduledInterviewsInput
|
|
40242
|
+
clientInterview?: ClientInterviewCreateNestedOneWithoutCalendarEventInput
|
|
40180
40243
|
}
|
|
40181
40244
|
|
|
40182
40245
|
export type CalendarEventUncheckedCreateInput = {
|
|
@@ -40198,6 +40261,7 @@ export namespace Prisma {
|
|
|
40198
40261
|
cancellationReason?: string | null
|
|
40199
40262
|
createdAt: Date | string
|
|
40200
40263
|
updatedAt: Date | string
|
|
40264
|
+
clientInterview?: ClientInterviewUncheckedCreateNestedOneWithoutCalendarEventInput
|
|
40201
40265
|
}
|
|
40202
40266
|
|
|
40203
40267
|
export type CalendarEventUpdateInput = {
|
|
@@ -40218,6 +40282,7 @@ export namespace Prisma {
|
|
|
40218
40282
|
calendar?: CalendarUpdateOneRequiredWithoutEventsNestedInput
|
|
40219
40283
|
eventType?: CalendarEventTypeUpdateOneRequiredWithoutEventsNestedInput
|
|
40220
40284
|
reschedulingUser?: UserUpdateOneWithoutRescheduledInterviewsNestedInput
|
|
40285
|
+
clientInterview?: ClientInterviewUpdateOneWithoutCalendarEventNestedInput
|
|
40221
40286
|
}
|
|
40222
40287
|
|
|
40223
40288
|
export type CalendarEventUncheckedUpdateInput = {
|
|
@@ -40238,6 +40303,7 @@ export namespace Prisma {
|
|
|
40238
40303
|
cancellationReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
40239
40304
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
40240
40305
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
40306
|
+
clientInterview?: ClientInterviewUncheckedUpdateOneWithoutCalendarEventNestedInput
|
|
40241
40307
|
}
|
|
40242
40308
|
|
|
40243
40309
|
export type CalendarEventCreateManyInput = {
|
|
@@ -40527,6 +40593,7 @@ export namespace Prisma {
|
|
|
40527
40593
|
client: UserCreateNestedOneWithoutClientInterviewsInput
|
|
40528
40594
|
builder: UserCreateNestedOneWithoutBuilderInterviewsInput
|
|
40529
40595
|
proposal?: ProposalCreateNestedOneWithoutClientInterviewsInput
|
|
40596
|
+
calendarEvent?: CalendarEventCreateNestedOneWithoutClientInterviewInput
|
|
40530
40597
|
}
|
|
40531
40598
|
|
|
40532
40599
|
export type ClientInterviewUncheckedCreateInput = {
|
|
@@ -40558,6 +40625,7 @@ export namespace Prisma {
|
|
|
40558
40625
|
proposalId?: string | null
|
|
40559
40626
|
feedback?: XOR<ClientInterviewFeedbackNullableCreateEnvelopeInput, ClientInterviewFeedbackCreateInput> | null
|
|
40560
40627
|
rescheduledBy?: XOR<ClientInterviewRescheduledByDataNullableCreateEnvelopeInput, ClientInterviewRescheduledByDataCreateInput> | null
|
|
40628
|
+
calendarEventId?: string | null
|
|
40561
40629
|
}
|
|
40562
40630
|
|
|
40563
40631
|
export type ClientInterviewUpdateInput = {
|
|
@@ -40588,6 +40656,7 @@ export namespace Prisma {
|
|
|
40588
40656
|
client?: UserUpdateOneRequiredWithoutClientInterviewsNestedInput
|
|
40589
40657
|
builder?: UserUpdateOneRequiredWithoutBuilderInterviewsNestedInput
|
|
40590
40658
|
proposal?: ProposalUpdateOneWithoutClientInterviewsNestedInput
|
|
40659
|
+
calendarEvent?: CalendarEventUpdateOneWithoutClientInterviewNestedInput
|
|
40591
40660
|
}
|
|
40592
40661
|
|
|
40593
40662
|
export type ClientInterviewUncheckedUpdateInput = {
|
|
@@ -40618,6 +40687,7 @@ export namespace Prisma {
|
|
|
40618
40687
|
proposalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
40619
40688
|
feedback?: XOR<ClientInterviewFeedbackNullableUpdateEnvelopeInput, ClientInterviewFeedbackCreateInput> | null
|
|
40620
40689
|
rescheduledBy?: XOR<ClientInterviewRescheduledByDataNullableUpdateEnvelopeInput, ClientInterviewRescheduledByDataCreateInput> | null
|
|
40690
|
+
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
40621
40691
|
}
|
|
40622
40692
|
|
|
40623
40693
|
export type ClientInterviewCreateManyInput = {
|
|
@@ -40649,6 +40719,7 @@ export namespace Prisma {
|
|
|
40649
40719
|
proposalId?: string | null
|
|
40650
40720
|
feedback?: XOR<ClientInterviewFeedbackNullableCreateEnvelopeInput, ClientInterviewFeedbackCreateInput> | null
|
|
40651
40721
|
rescheduledBy?: XOR<ClientInterviewRescheduledByDataNullableCreateEnvelopeInput, ClientInterviewRescheduledByDataCreateInput> | null
|
|
40722
|
+
calendarEventId?: string | null
|
|
40652
40723
|
}
|
|
40653
40724
|
|
|
40654
40725
|
export type ClientInterviewUpdateManyMutationInput = {
|
|
@@ -40705,6 +40776,7 @@ export namespace Prisma {
|
|
|
40705
40776
|
proposalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
40706
40777
|
feedback?: XOR<ClientInterviewFeedbackNullableUpdateEnvelopeInput, ClientInterviewFeedbackCreateInput> | null
|
|
40707
40778
|
rescheduledBy?: XOR<ClientInterviewRescheduledByDataNullableUpdateEnvelopeInput, ClientInterviewRescheduledByDataCreateInput> | null
|
|
40779
|
+
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
40708
40780
|
}
|
|
40709
40781
|
|
|
40710
40782
|
export type CompanyCreateInput = {
|
|
@@ -43480,6 +43552,11 @@ export namespace Prisma {
|
|
|
43480
43552
|
isNot?: UserWhereInput | null
|
|
43481
43553
|
}
|
|
43482
43554
|
|
|
43555
|
+
export type ClientInterviewNullableRelationFilter = {
|
|
43556
|
+
is?: ClientInterviewWhereInput | null
|
|
43557
|
+
isNot?: ClientInterviewWhereInput | null
|
|
43558
|
+
}
|
|
43559
|
+
|
|
43483
43560
|
export type AttendeeOrderByCompositeAggregateInput = {
|
|
43484
43561
|
_count?: SortOrder
|
|
43485
43562
|
}
|
|
@@ -43816,6 +43893,11 @@ export namespace Prisma {
|
|
|
43816
43893
|
isNot?: ProposalWhereInput | null
|
|
43817
43894
|
}
|
|
43818
43895
|
|
|
43896
|
+
export type CalendarEventNullableRelationFilter = {
|
|
43897
|
+
is?: CalendarEventWhereInput | null
|
|
43898
|
+
isNot?: CalendarEventWhereInput | null
|
|
43899
|
+
}
|
|
43900
|
+
|
|
43819
43901
|
export type ClientInterviewTranscriptDataOrderByCompositeAggregateInput = {
|
|
43820
43902
|
_count?: SortOrder
|
|
43821
43903
|
}
|
|
@@ -43859,6 +43941,7 @@ export namespace Prisma {
|
|
|
43859
43941
|
interviewRequestExpireAt?: SortOrder
|
|
43860
43942
|
slackThreadMessageId?: SortOrder
|
|
43861
43943
|
proposalId?: SortOrder
|
|
43944
|
+
calendarEventId?: SortOrder
|
|
43862
43945
|
}
|
|
43863
43946
|
|
|
43864
43947
|
export type ClientInterviewAvgOrderByAggregateInput = {
|
|
@@ -43894,6 +43977,7 @@ export namespace Prisma {
|
|
|
43894
43977
|
interviewRequestExpireAt?: SortOrder
|
|
43895
43978
|
slackThreadMessageId?: SortOrder
|
|
43896
43979
|
proposalId?: SortOrder
|
|
43980
|
+
calendarEventId?: SortOrder
|
|
43897
43981
|
}
|
|
43898
43982
|
|
|
43899
43983
|
export type ClientInterviewMinOrderByAggregateInput = {
|
|
@@ -43922,6 +44006,7 @@ export namespace Prisma {
|
|
|
43922
44006
|
interviewRequestExpireAt?: SortOrder
|
|
43923
44007
|
slackThreadMessageId?: SortOrder
|
|
43924
44008
|
proposalId?: SortOrder
|
|
44009
|
+
calendarEventId?: SortOrder
|
|
43925
44010
|
}
|
|
43926
44011
|
|
|
43927
44012
|
export type ClientInterviewSumOrderByAggregateInput = {
|
|
@@ -46750,6 +46835,18 @@ export namespace Prisma {
|
|
|
46750
46835
|
connect?: UserWhereUniqueInput
|
|
46751
46836
|
}
|
|
46752
46837
|
|
|
46838
|
+
export type ClientInterviewCreateNestedOneWithoutCalendarEventInput = {
|
|
46839
|
+
create?: XOR<ClientInterviewCreateWithoutCalendarEventInput, ClientInterviewUncheckedCreateWithoutCalendarEventInput>
|
|
46840
|
+
connectOrCreate?: ClientInterviewCreateOrConnectWithoutCalendarEventInput
|
|
46841
|
+
connect?: ClientInterviewWhereUniqueInput
|
|
46842
|
+
}
|
|
46843
|
+
|
|
46844
|
+
export type ClientInterviewUncheckedCreateNestedOneWithoutCalendarEventInput = {
|
|
46845
|
+
create?: XOR<ClientInterviewCreateWithoutCalendarEventInput, ClientInterviewUncheckedCreateWithoutCalendarEventInput>
|
|
46846
|
+
connectOrCreate?: ClientInterviewCreateOrConnectWithoutCalendarEventInput
|
|
46847
|
+
connect?: ClientInterviewWhereUniqueInput
|
|
46848
|
+
}
|
|
46849
|
+
|
|
46753
46850
|
export type AttendeeListUpdateEnvelopeInput = {
|
|
46754
46851
|
set?: AttendeeCreateInput | AttendeeCreateInput[]
|
|
46755
46852
|
push?: AttendeeCreateInput | AttendeeCreateInput[]
|
|
@@ -46799,6 +46896,26 @@ export namespace Prisma {
|
|
|
46799
46896
|
update?: XOR<XOR<UserUpdateToOneWithWhereWithoutRescheduledInterviewsInput, UserUpdateWithoutRescheduledInterviewsInput>, UserUncheckedUpdateWithoutRescheduledInterviewsInput>
|
|
46800
46897
|
}
|
|
46801
46898
|
|
|
46899
|
+
export type ClientInterviewUpdateOneWithoutCalendarEventNestedInput = {
|
|
46900
|
+
create?: XOR<ClientInterviewCreateWithoutCalendarEventInput, ClientInterviewUncheckedCreateWithoutCalendarEventInput>
|
|
46901
|
+
connectOrCreate?: ClientInterviewCreateOrConnectWithoutCalendarEventInput
|
|
46902
|
+
upsert?: ClientInterviewUpsertWithoutCalendarEventInput
|
|
46903
|
+
disconnect?: ClientInterviewWhereInput | boolean
|
|
46904
|
+
delete?: ClientInterviewWhereInput | boolean
|
|
46905
|
+
connect?: ClientInterviewWhereUniqueInput
|
|
46906
|
+
update?: XOR<XOR<ClientInterviewUpdateToOneWithWhereWithoutCalendarEventInput, ClientInterviewUpdateWithoutCalendarEventInput>, ClientInterviewUncheckedUpdateWithoutCalendarEventInput>
|
|
46907
|
+
}
|
|
46908
|
+
|
|
46909
|
+
export type ClientInterviewUncheckedUpdateOneWithoutCalendarEventNestedInput = {
|
|
46910
|
+
create?: XOR<ClientInterviewCreateWithoutCalendarEventInput, ClientInterviewUncheckedCreateWithoutCalendarEventInput>
|
|
46911
|
+
connectOrCreate?: ClientInterviewCreateOrConnectWithoutCalendarEventInput
|
|
46912
|
+
upsert?: ClientInterviewUpsertWithoutCalendarEventInput
|
|
46913
|
+
disconnect?: ClientInterviewWhereInput | boolean
|
|
46914
|
+
delete?: ClientInterviewWhereInput | boolean
|
|
46915
|
+
connect?: ClientInterviewWhereUniqueInput
|
|
46916
|
+
update?: XOR<XOR<ClientInterviewUpdateToOneWithWhereWithoutCalendarEventInput, ClientInterviewUpdateWithoutCalendarEventInput>, ClientInterviewUncheckedUpdateWithoutCalendarEventInput>
|
|
46917
|
+
}
|
|
46918
|
+
|
|
46802
46919
|
export type CalendarEventTypeCreateremindersInput = {
|
|
46803
46920
|
set: number[]
|
|
46804
46921
|
}
|
|
@@ -47086,6 +47203,12 @@ export namespace Prisma {
|
|
|
47086
47203
|
connect?: ProposalWhereUniqueInput
|
|
47087
47204
|
}
|
|
47088
47205
|
|
|
47206
|
+
export type CalendarEventCreateNestedOneWithoutClientInterviewInput = {
|
|
47207
|
+
create?: XOR<CalendarEventCreateWithoutClientInterviewInput, CalendarEventUncheckedCreateWithoutClientInterviewInput>
|
|
47208
|
+
connectOrCreate?: CalendarEventCreateOrConnectWithoutClientInterviewInput
|
|
47209
|
+
connect?: CalendarEventWhereUniqueInput
|
|
47210
|
+
}
|
|
47211
|
+
|
|
47089
47212
|
export type EnumClientInterviewTypeFieldUpdateOperationsInput = {
|
|
47090
47213
|
set?: $Enums.ClientInterviewType
|
|
47091
47214
|
}
|
|
@@ -47166,6 +47289,16 @@ export namespace Prisma {
|
|
|
47166
47289
|
update?: XOR<XOR<ProposalUpdateToOneWithWhereWithoutClientInterviewsInput, ProposalUpdateWithoutClientInterviewsInput>, ProposalUncheckedUpdateWithoutClientInterviewsInput>
|
|
47167
47290
|
}
|
|
47168
47291
|
|
|
47292
|
+
export type CalendarEventUpdateOneWithoutClientInterviewNestedInput = {
|
|
47293
|
+
create?: XOR<CalendarEventCreateWithoutClientInterviewInput, CalendarEventUncheckedCreateWithoutClientInterviewInput>
|
|
47294
|
+
connectOrCreate?: CalendarEventCreateOrConnectWithoutClientInterviewInput
|
|
47295
|
+
upsert?: CalendarEventUpsertWithoutClientInterviewInput
|
|
47296
|
+
disconnect?: boolean
|
|
47297
|
+
delete?: CalendarEventWhereInput | boolean
|
|
47298
|
+
connect?: CalendarEventWhereUniqueInput
|
|
47299
|
+
update?: XOR<XOR<CalendarEventUpdateToOneWithWhereWithoutClientInterviewInput, CalendarEventUpdateWithoutClientInterviewInput>, CalendarEventUncheckedUpdateWithoutClientInterviewInput>
|
|
47300
|
+
}
|
|
47301
|
+
|
|
47169
47302
|
export type CompanyEnrichmentCreateEnvelopeInput = {
|
|
47170
47303
|
set?: CompanyEnrichmentCreateInput
|
|
47171
47304
|
}
|
|
@@ -51519,6 +51652,7 @@ export namespace Prisma {
|
|
|
51519
51652
|
client: UserCreateNestedOneWithoutClientInterviewsInput
|
|
51520
51653
|
builder: UserCreateNestedOneWithoutBuilderInterviewsInput
|
|
51521
51654
|
proposal?: ProposalCreateNestedOneWithoutClientInterviewsInput
|
|
51655
|
+
calendarEvent?: CalendarEventCreateNestedOneWithoutClientInterviewInput
|
|
51522
51656
|
}
|
|
51523
51657
|
|
|
51524
51658
|
export type ClientInterviewUncheckedCreateWithoutAccountInput = {
|
|
@@ -51549,6 +51683,7 @@ export namespace Prisma {
|
|
|
51549
51683
|
proposalId?: string | null
|
|
51550
51684
|
feedback?: XOR<ClientInterviewFeedbackNullableCreateEnvelopeInput, ClientInterviewFeedbackCreateInput> | null
|
|
51551
51685
|
rescheduledBy?: XOR<ClientInterviewRescheduledByDataNullableCreateEnvelopeInput, ClientInterviewRescheduledByDataCreateInput> | null
|
|
51686
|
+
calendarEventId?: string | null
|
|
51552
51687
|
}
|
|
51553
51688
|
|
|
51554
51689
|
export type ClientInterviewCreateOrConnectWithoutAccountInput = {
|
|
@@ -51897,6 +52032,7 @@ export namespace Prisma {
|
|
|
51897
52032
|
interviewRequestExpireAt?: DateTimeNullableFilter<"ClientInterview"> | Date | string | null
|
|
51898
52033
|
slackThreadMessageId?: StringNullableFilter<"ClientInterview"> | string | null
|
|
51899
52034
|
proposalId?: StringNullableFilter<"ClientInterview"> | string | null
|
|
52035
|
+
calendarEventId?: StringNullableFilter<"ClientInterview"> | string | null
|
|
51900
52036
|
}
|
|
51901
52037
|
|
|
51902
52038
|
export type ClientCompanyCreateWithoutBillingAccountInput = {
|
|
@@ -52190,6 +52326,7 @@ export namespace Prisma {
|
|
|
52190
52326
|
eventOwner: UserCreateNestedOneWithoutInterviewsInput
|
|
52191
52327
|
eventType: CalendarEventTypeCreateNestedOneWithoutEventsInput
|
|
52192
52328
|
reschedulingUser?: UserCreateNestedOneWithoutRescheduledInterviewsInput
|
|
52329
|
+
clientInterview?: ClientInterviewCreateNestedOneWithoutCalendarEventInput
|
|
52193
52330
|
}
|
|
52194
52331
|
|
|
52195
52332
|
export type CalendarEventUncheckedCreateWithoutCalendarInput = {
|
|
@@ -52210,6 +52347,7 @@ export namespace Prisma {
|
|
|
52210
52347
|
cancellationReason?: string | null
|
|
52211
52348
|
createdAt: Date | string
|
|
52212
52349
|
updatedAt: Date | string
|
|
52350
|
+
clientInterview?: ClientInterviewUncheckedCreateNestedOneWithoutCalendarEventInput
|
|
52213
52351
|
}
|
|
52214
52352
|
|
|
52215
52353
|
export type CalendarEventCreateOrConnectWithoutCalendarInput = {
|
|
@@ -52968,6 +53106,73 @@ export namespace Prisma {
|
|
|
52968
53106
|
create: XOR<UserCreateWithoutRescheduledInterviewsInput, UserUncheckedCreateWithoutRescheduledInterviewsInput>
|
|
52969
53107
|
}
|
|
52970
53108
|
|
|
53109
|
+
export type ClientInterviewCreateWithoutCalendarEventInput = {
|
|
53110
|
+
id?: string
|
|
53111
|
+
createdAt?: Date | string
|
|
53112
|
+
updatedAt?: Date | string
|
|
53113
|
+
type: $Enums.ClientInterviewType
|
|
53114
|
+
interviewRoleDescription?: string | null
|
|
53115
|
+
calComBookingId: number
|
|
53116
|
+
calComBookingUid: string
|
|
53117
|
+
calComDailyMeetingId?: string | null
|
|
53118
|
+
startDate: Date | string
|
|
53119
|
+
endDate: Date | string
|
|
53120
|
+
builderTimezone: string
|
|
53121
|
+
clientMinHourlyRate?: number | null
|
|
53122
|
+
clientMaxHourlyRate?: number | null
|
|
53123
|
+
builderHourlyRate?: number | null
|
|
53124
|
+
status: $Enums.ClientInterviewStatus
|
|
53125
|
+
declineReason?: $Enums.ClientInterviewDeclineReason | null
|
|
53126
|
+
declineOtherReasonDetails?: string | null
|
|
53127
|
+
cancelReasonAfterAccepted?: string | null
|
|
53128
|
+
canceledFromClientApp?: boolean | null
|
|
53129
|
+
interviewRequestExpireAt?: Date | string | null
|
|
53130
|
+
slackThreadMessageId?: string | null
|
|
53131
|
+
transcripts?: XOR<ClientInterviewTranscriptDataListCreateEnvelopeInput, ClientInterviewTranscriptDataCreateInput> | ClientInterviewTranscriptDataCreateInput[]
|
|
53132
|
+
feedback?: XOR<ClientInterviewFeedbackNullableCreateEnvelopeInput, ClientInterviewFeedbackCreateInput> | null
|
|
53133
|
+
rescheduledBy?: XOR<ClientInterviewRescheduledByDataNullableCreateEnvelopeInput, ClientInterviewRescheduledByDataCreateInput> | null
|
|
53134
|
+
account: AccountCreateNestedOneWithoutClientInterviewsInput
|
|
53135
|
+
client: UserCreateNestedOneWithoutClientInterviewsInput
|
|
53136
|
+
builder: UserCreateNestedOneWithoutBuilderInterviewsInput
|
|
53137
|
+
proposal?: ProposalCreateNestedOneWithoutClientInterviewsInput
|
|
53138
|
+
}
|
|
53139
|
+
|
|
53140
|
+
export type ClientInterviewUncheckedCreateWithoutCalendarEventInput = {
|
|
53141
|
+
id?: string
|
|
53142
|
+
createdAt?: Date | string
|
|
53143
|
+
updatedAt?: Date | string
|
|
53144
|
+
accountId: string
|
|
53145
|
+
type: $Enums.ClientInterviewType
|
|
53146
|
+
clientId: string
|
|
53147
|
+
builderId: string
|
|
53148
|
+
interviewRoleDescription?: string | null
|
|
53149
|
+
calComBookingId: number
|
|
53150
|
+
calComBookingUid: string
|
|
53151
|
+
calComDailyMeetingId?: string | null
|
|
53152
|
+
startDate: Date | string
|
|
53153
|
+
endDate: Date | string
|
|
53154
|
+
builderTimezone: string
|
|
53155
|
+
clientMinHourlyRate?: number | null
|
|
53156
|
+
clientMaxHourlyRate?: number | null
|
|
53157
|
+
builderHourlyRate?: number | null
|
|
53158
|
+
status: $Enums.ClientInterviewStatus
|
|
53159
|
+
declineReason?: $Enums.ClientInterviewDeclineReason | null
|
|
53160
|
+
declineOtherReasonDetails?: string | null
|
|
53161
|
+
cancelReasonAfterAccepted?: string | null
|
|
53162
|
+
canceledFromClientApp?: boolean | null
|
|
53163
|
+
interviewRequestExpireAt?: Date | string | null
|
|
53164
|
+
slackThreadMessageId?: string | null
|
|
53165
|
+
transcripts?: XOR<ClientInterviewTranscriptDataListCreateEnvelopeInput, ClientInterviewTranscriptDataCreateInput> | ClientInterviewTranscriptDataCreateInput[]
|
|
53166
|
+
proposalId?: string | null
|
|
53167
|
+
feedback?: XOR<ClientInterviewFeedbackNullableCreateEnvelopeInput, ClientInterviewFeedbackCreateInput> | null
|
|
53168
|
+
rescheduledBy?: XOR<ClientInterviewRescheduledByDataNullableCreateEnvelopeInput, ClientInterviewRescheduledByDataCreateInput> | null
|
|
53169
|
+
}
|
|
53170
|
+
|
|
53171
|
+
export type ClientInterviewCreateOrConnectWithoutCalendarEventInput = {
|
|
53172
|
+
where: ClientInterviewWhereUniqueInput
|
|
53173
|
+
create: XOR<ClientInterviewCreateWithoutCalendarEventInput, ClientInterviewUncheckedCreateWithoutCalendarEventInput>
|
|
53174
|
+
}
|
|
53175
|
+
|
|
52971
53176
|
export type AttendeeUpdateManyInput = {
|
|
52972
53177
|
where: AttendeeWhereInput
|
|
52973
53178
|
data: AttendeeUpdateInput
|
|
@@ -53275,6 +53480,77 @@ export namespace Prisma {
|
|
|
53275
53480
|
proposalsAsTeamAdvisor?: ProposalUncheckedUpdateManyWithoutTeamAdvisorNestedInput
|
|
53276
53481
|
}
|
|
53277
53482
|
|
|
53483
|
+
export type ClientInterviewUpsertWithoutCalendarEventInput = {
|
|
53484
|
+
update: XOR<ClientInterviewUpdateWithoutCalendarEventInput, ClientInterviewUncheckedUpdateWithoutCalendarEventInput>
|
|
53485
|
+
create: XOR<ClientInterviewCreateWithoutCalendarEventInput, ClientInterviewUncheckedCreateWithoutCalendarEventInput>
|
|
53486
|
+
where?: ClientInterviewWhereInput
|
|
53487
|
+
}
|
|
53488
|
+
|
|
53489
|
+
export type ClientInterviewUpdateToOneWithWhereWithoutCalendarEventInput = {
|
|
53490
|
+
where?: ClientInterviewWhereInput
|
|
53491
|
+
data: XOR<ClientInterviewUpdateWithoutCalendarEventInput, ClientInterviewUncheckedUpdateWithoutCalendarEventInput>
|
|
53492
|
+
}
|
|
53493
|
+
|
|
53494
|
+
export type ClientInterviewUpdateWithoutCalendarEventInput = {
|
|
53495
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
53496
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
53497
|
+
type?: EnumClientInterviewTypeFieldUpdateOperationsInput | $Enums.ClientInterviewType
|
|
53498
|
+
interviewRoleDescription?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53499
|
+
calComBookingId?: IntFieldUpdateOperationsInput | number
|
|
53500
|
+
calComBookingUid?: StringFieldUpdateOperationsInput | string
|
|
53501
|
+
calComDailyMeetingId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53502
|
+
startDate?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
53503
|
+
endDate?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
53504
|
+
builderTimezone?: StringFieldUpdateOperationsInput | string
|
|
53505
|
+
clientMinHourlyRate?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
53506
|
+
clientMaxHourlyRate?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
53507
|
+
builderHourlyRate?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
53508
|
+
status?: EnumClientInterviewStatusFieldUpdateOperationsInput | $Enums.ClientInterviewStatus
|
|
53509
|
+
declineReason?: NullableEnumClientInterviewDeclineReasonFieldUpdateOperationsInput | $Enums.ClientInterviewDeclineReason | null
|
|
53510
|
+
declineOtherReasonDetails?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53511
|
+
cancelReasonAfterAccepted?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53512
|
+
canceledFromClientApp?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
53513
|
+
interviewRequestExpireAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
53514
|
+
slackThreadMessageId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53515
|
+
transcripts?: XOR<ClientInterviewTranscriptDataListUpdateEnvelopeInput, ClientInterviewTranscriptDataCreateInput> | ClientInterviewTranscriptDataCreateInput[]
|
|
53516
|
+
feedback?: XOR<ClientInterviewFeedbackNullableUpdateEnvelopeInput, ClientInterviewFeedbackCreateInput> | null
|
|
53517
|
+
rescheduledBy?: XOR<ClientInterviewRescheduledByDataNullableUpdateEnvelopeInput, ClientInterviewRescheduledByDataCreateInput> | null
|
|
53518
|
+
account?: AccountUpdateOneRequiredWithoutClientInterviewsNestedInput
|
|
53519
|
+
client?: UserUpdateOneRequiredWithoutClientInterviewsNestedInput
|
|
53520
|
+
builder?: UserUpdateOneRequiredWithoutBuilderInterviewsNestedInput
|
|
53521
|
+
proposal?: ProposalUpdateOneWithoutClientInterviewsNestedInput
|
|
53522
|
+
}
|
|
53523
|
+
|
|
53524
|
+
export type ClientInterviewUncheckedUpdateWithoutCalendarEventInput = {
|
|
53525
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
53526
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
53527
|
+
accountId?: StringFieldUpdateOperationsInput | string
|
|
53528
|
+
type?: EnumClientInterviewTypeFieldUpdateOperationsInput | $Enums.ClientInterviewType
|
|
53529
|
+
clientId?: StringFieldUpdateOperationsInput | string
|
|
53530
|
+
builderId?: StringFieldUpdateOperationsInput | string
|
|
53531
|
+
interviewRoleDescription?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53532
|
+
calComBookingId?: IntFieldUpdateOperationsInput | number
|
|
53533
|
+
calComBookingUid?: StringFieldUpdateOperationsInput | string
|
|
53534
|
+
calComDailyMeetingId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53535
|
+
startDate?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
53536
|
+
endDate?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
53537
|
+
builderTimezone?: StringFieldUpdateOperationsInput | string
|
|
53538
|
+
clientMinHourlyRate?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
53539
|
+
clientMaxHourlyRate?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
53540
|
+
builderHourlyRate?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
53541
|
+
status?: EnumClientInterviewStatusFieldUpdateOperationsInput | $Enums.ClientInterviewStatus
|
|
53542
|
+
declineReason?: NullableEnumClientInterviewDeclineReasonFieldUpdateOperationsInput | $Enums.ClientInterviewDeclineReason | null
|
|
53543
|
+
declineOtherReasonDetails?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53544
|
+
cancelReasonAfterAccepted?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53545
|
+
canceledFromClientApp?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
53546
|
+
interviewRequestExpireAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
53547
|
+
slackThreadMessageId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53548
|
+
transcripts?: XOR<ClientInterviewTranscriptDataListUpdateEnvelopeInput, ClientInterviewTranscriptDataCreateInput> | ClientInterviewTranscriptDataCreateInput[]
|
|
53549
|
+
proposalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
53550
|
+
feedback?: XOR<ClientInterviewFeedbackNullableUpdateEnvelopeInput, ClientInterviewFeedbackCreateInput> | null
|
|
53551
|
+
rescheduledBy?: XOR<ClientInterviewRescheduledByDataNullableUpdateEnvelopeInput, ClientInterviewRescheduledByDataCreateInput> | null
|
|
53552
|
+
}
|
|
53553
|
+
|
|
53278
53554
|
export type CalendarEventCreateWithoutEventTypeInput = {
|
|
53279
53555
|
id?: string
|
|
53280
53556
|
calendarEventId?: string | null
|
|
@@ -53293,6 +53569,7 @@ export namespace Prisma {
|
|
|
53293
53569
|
eventOwner: UserCreateNestedOneWithoutInterviewsInput
|
|
53294
53570
|
calendar: CalendarCreateNestedOneWithoutEventsInput
|
|
53295
53571
|
reschedulingUser?: UserCreateNestedOneWithoutRescheduledInterviewsInput
|
|
53572
|
+
clientInterview?: ClientInterviewCreateNestedOneWithoutCalendarEventInput
|
|
53296
53573
|
}
|
|
53297
53574
|
|
|
53298
53575
|
export type CalendarEventUncheckedCreateWithoutEventTypeInput = {
|
|
@@ -53313,6 +53590,7 @@ export namespace Prisma {
|
|
|
53313
53590
|
cancellationReason?: string | null
|
|
53314
53591
|
createdAt: Date | string
|
|
53315
53592
|
updatedAt: Date | string
|
|
53593
|
+
clientInterview?: ClientInterviewUncheckedCreateNestedOneWithoutCalendarEventInput
|
|
53316
53594
|
}
|
|
53317
53595
|
|
|
53318
53596
|
export type CalendarEventCreateOrConnectWithoutEventTypeInput = {
|
|
@@ -53958,6 +54236,53 @@ export namespace Prisma {
|
|
|
53958
54236
|
create: XOR<ProposalCreateWithoutClientInterviewsInput, ProposalUncheckedCreateWithoutClientInterviewsInput>
|
|
53959
54237
|
}
|
|
53960
54238
|
|
|
54239
|
+
export type CalendarEventCreateWithoutClientInterviewInput = {
|
|
54240
|
+
id?: string
|
|
54241
|
+
calendarEventId?: string | null
|
|
54242
|
+
attendees?: XOR<AttendeeListCreateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
54243
|
+
status: $Enums.EventStatus
|
|
54244
|
+
startTime: Date | string
|
|
54245
|
+
endTime: Date | string
|
|
54246
|
+
summary?: string | null
|
|
54247
|
+
description?: string | null
|
|
54248
|
+
callUrl?: string | null
|
|
54249
|
+
callId?: string | null
|
|
54250
|
+
clientRecordingOptOut?: boolean
|
|
54251
|
+
cancellationReason?: string | null
|
|
54252
|
+
createdAt: Date | string
|
|
54253
|
+
updatedAt: Date | string
|
|
54254
|
+
eventOwner: UserCreateNestedOneWithoutInterviewsInput
|
|
54255
|
+
calendar: CalendarCreateNestedOneWithoutEventsInput
|
|
54256
|
+
eventType: CalendarEventTypeCreateNestedOneWithoutEventsInput
|
|
54257
|
+
reschedulingUser?: UserCreateNestedOneWithoutRescheduledInterviewsInput
|
|
54258
|
+
}
|
|
54259
|
+
|
|
54260
|
+
export type CalendarEventUncheckedCreateWithoutClientInterviewInput = {
|
|
54261
|
+
id?: string
|
|
54262
|
+
calendarEventId?: string | null
|
|
54263
|
+
userId: string
|
|
54264
|
+
calendarId: string
|
|
54265
|
+
eventTypeId: string
|
|
54266
|
+
attendees?: XOR<AttendeeListCreateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
54267
|
+
rescheduledBy?: string | null
|
|
54268
|
+
status: $Enums.EventStatus
|
|
54269
|
+
startTime: Date | string
|
|
54270
|
+
endTime: Date | string
|
|
54271
|
+
summary?: string | null
|
|
54272
|
+
description?: string | null
|
|
54273
|
+
callUrl?: string | null
|
|
54274
|
+
callId?: string | null
|
|
54275
|
+
clientRecordingOptOut?: boolean
|
|
54276
|
+
cancellationReason?: string | null
|
|
54277
|
+
createdAt: Date | string
|
|
54278
|
+
updatedAt: Date | string
|
|
54279
|
+
}
|
|
54280
|
+
|
|
54281
|
+
export type CalendarEventCreateOrConnectWithoutClientInterviewInput = {
|
|
54282
|
+
where: CalendarEventWhereUniqueInput
|
|
54283
|
+
create: XOR<CalendarEventCreateWithoutClientInterviewInput, CalendarEventUncheckedCreateWithoutClientInterviewInput>
|
|
54284
|
+
}
|
|
54285
|
+
|
|
53961
54286
|
export type ClientInterviewTranscriptDataUpdateManyInput = {
|
|
53962
54287
|
where: ClientInterviewTranscriptDataWhereInput
|
|
53963
54288
|
data: ClientInterviewTranscriptDataUpdateInput
|
|
@@ -54325,6 +54650,57 @@ export namespace Prisma {
|
|
|
54325
54650
|
teamAdvisorId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
54326
54651
|
}
|
|
54327
54652
|
|
|
54653
|
+
export type CalendarEventUpsertWithoutClientInterviewInput = {
|
|
54654
|
+
update: XOR<CalendarEventUpdateWithoutClientInterviewInput, CalendarEventUncheckedUpdateWithoutClientInterviewInput>
|
|
54655
|
+
create: XOR<CalendarEventCreateWithoutClientInterviewInput, CalendarEventUncheckedCreateWithoutClientInterviewInput>
|
|
54656
|
+
where?: CalendarEventWhereInput
|
|
54657
|
+
}
|
|
54658
|
+
|
|
54659
|
+
export type CalendarEventUpdateToOneWithWhereWithoutClientInterviewInput = {
|
|
54660
|
+
where?: CalendarEventWhereInput
|
|
54661
|
+
data: XOR<CalendarEventUpdateWithoutClientInterviewInput, CalendarEventUncheckedUpdateWithoutClientInterviewInput>
|
|
54662
|
+
}
|
|
54663
|
+
|
|
54664
|
+
export type CalendarEventUpdateWithoutClientInterviewInput = {
|
|
54665
|
+
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
54666
|
+
attendees?: XOR<AttendeeListUpdateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
54667
|
+
status?: EnumEventStatusFieldUpdateOperationsInput | $Enums.EventStatus
|
|
54668
|
+
startTime?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
54669
|
+
endTime?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
54670
|
+
summary?: NullableStringFieldUpdateOperationsInput | string | null
|
|
54671
|
+
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
54672
|
+
callUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
54673
|
+
callId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
54674
|
+
clientRecordingOptOut?: BoolFieldUpdateOperationsInput | boolean
|
|
54675
|
+
cancellationReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
54676
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
54677
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
54678
|
+
eventOwner?: UserUpdateOneRequiredWithoutInterviewsNestedInput
|
|
54679
|
+
calendar?: CalendarUpdateOneRequiredWithoutEventsNestedInput
|
|
54680
|
+
eventType?: CalendarEventTypeUpdateOneRequiredWithoutEventsNestedInput
|
|
54681
|
+
reschedulingUser?: UserUpdateOneWithoutRescheduledInterviewsNestedInput
|
|
54682
|
+
}
|
|
54683
|
+
|
|
54684
|
+
export type CalendarEventUncheckedUpdateWithoutClientInterviewInput = {
|
|
54685
|
+
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
54686
|
+
userId?: StringFieldUpdateOperationsInput | string
|
|
54687
|
+
calendarId?: StringFieldUpdateOperationsInput | string
|
|
54688
|
+
eventTypeId?: StringFieldUpdateOperationsInput | string
|
|
54689
|
+
attendees?: XOR<AttendeeListUpdateEnvelopeInput, AttendeeCreateInput> | AttendeeCreateInput[]
|
|
54690
|
+
rescheduledBy?: NullableStringFieldUpdateOperationsInput | string | null
|
|
54691
|
+
status?: EnumEventStatusFieldUpdateOperationsInput | $Enums.EventStatus
|
|
54692
|
+
startTime?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
54693
|
+
endTime?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
54694
|
+
summary?: NullableStringFieldUpdateOperationsInput | string | null
|
|
54695
|
+
description?: NullableStringFieldUpdateOperationsInput | string | null
|
|
54696
|
+
callUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
54697
|
+
callId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
54698
|
+
clientRecordingOptOut?: BoolFieldUpdateOperationsInput | boolean
|
|
54699
|
+
cancellationReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
54700
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
54701
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
54702
|
+
}
|
|
54703
|
+
|
|
54328
54704
|
export type StructuredEnrichmentCreateInput = {
|
|
54329
54705
|
name?: string | null
|
|
54330
54706
|
countryCode?: string | null
|
|
@@ -58104,6 +58480,7 @@ export namespace Prisma {
|
|
|
58104
58480
|
account: AccountCreateNestedOneWithoutClientInterviewsInput
|
|
58105
58481
|
client: UserCreateNestedOneWithoutClientInterviewsInput
|
|
58106
58482
|
builder: UserCreateNestedOneWithoutBuilderInterviewsInput
|
|
58483
|
+
calendarEvent?: CalendarEventCreateNestedOneWithoutClientInterviewInput
|
|
58107
58484
|
}
|
|
58108
58485
|
|
|
58109
58486
|
export type ClientInterviewUncheckedCreateWithoutProposalInput = {
|
|
@@ -58134,6 +58511,7 @@ export namespace Prisma {
|
|
|
58134
58511
|
transcripts?: XOR<ClientInterviewTranscriptDataListCreateEnvelopeInput, ClientInterviewTranscriptDataCreateInput> | ClientInterviewTranscriptDataCreateInput[]
|
|
58135
58512
|
feedback?: XOR<ClientInterviewFeedbackNullableCreateEnvelopeInput, ClientInterviewFeedbackCreateInput> | null
|
|
58136
58513
|
rescheduledBy?: XOR<ClientInterviewRescheduledByDataNullableCreateEnvelopeInput, ClientInterviewRescheduledByDataCreateInput> | null
|
|
58514
|
+
calendarEventId?: string | null
|
|
58137
58515
|
}
|
|
58138
58516
|
|
|
58139
58517
|
export type ClientInterviewCreateOrConnectWithoutProposalInput = {
|
|
@@ -59534,6 +59912,7 @@ export namespace Prisma {
|
|
|
59534
59912
|
calendar: CalendarCreateNestedOneWithoutEventsInput
|
|
59535
59913
|
eventType: CalendarEventTypeCreateNestedOneWithoutEventsInput
|
|
59536
59914
|
reschedulingUser?: UserCreateNestedOneWithoutRescheduledInterviewsInput
|
|
59915
|
+
clientInterview?: ClientInterviewCreateNestedOneWithoutCalendarEventInput
|
|
59537
59916
|
}
|
|
59538
59917
|
|
|
59539
59918
|
export type CalendarEventUncheckedCreateWithoutEventOwnerInput = {
|
|
@@ -59554,6 +59933,7 @@ export namespace Prisma {
|
|
|
59554
59933
|
cancellationReason?: string | null
|
|
59555
59934
|
createdAt: Date | string
|
|
59556
59935
|
updatedAt: Date | string
|
|
59936
|
+
clientInterview?: ClientInterviewUncheckedCreateNestedOneWithoutCalendarEventInput
|
|
59557
59937
|
}
|
|
59558
59938
|
|
|
59559
59939
|
export type CalendarEventCreateOrConnectWithoutEventOwnerInput = {
|
|
@@ -59633,6 +60013,7 @@ export namespace Prisma {
|
|
|
59633
60013
|
eventOwner: UserCreateNestedOneWithoutInterviewsInput
|
|
59634
60014
|
calendar: CalendarCreateNestedOneWithoutEventsInput
|
|
59635
60015
|
eventType: CalendarEventTypeCreateNestedOneWithoutEventsInput
|
|
60016
|
+
clientInterview?: ClientInterviewCreateNestedOneWithoutCalendarEventInput
|
|
59636
60017
|
}
|
|
59637
60018
|
|
|
59638
60019
|
export type CalendarEventUncheckedCreateWithoutReschedulingUserInput = {
|
|
@@ -59653,6 +60034,7 @@ export namespace Prisma {
|
|
|
59653
60034
|
cancellationReason?: string | null
|
|
59654
60035
|
createdAt: Date | string
|
|
59655
60036
|
updatedAt: Date | string
|
|
60037
|
+
clientInterview?: ClientInterviewUncheckedCreateNestedOneWithoutCalendarEventInput
|
|
59656
60038
|
}
|
|
59657
60039
|
|
|
59658
60040
|
export type CalendarEventCreateOrConnectWithoutReschedulingUserInput = {
|
|
@@ -59692,6 +60074,7 @@ export namespace Prisma {
|
|
|
59692
60074
|
account: AccountCreateNestedOneWithoutClientInterviewsInput
|
|
59693
60075
|
builder: UserCreateNestedOneWithoutBuilderInterviewsInput
|
|
59694
60076
|
proposal?: ProposalCreateNestedOneWithoutClientInterviewsInput
|
|
60077
|
+
calendarEvent?: CalendarEventCreateNestedOneWithoutClientInterviewInput
|
|
59695
60078
|
}
|
|
59696
60079
|
|
|
59697
60080
|
export type ClientInterviewUncheckedCreateWithoutClientInput = {
|
|
@@ -59722,6 +60105,7 @@ export namespace Prisma {
|
|
|
59722
60105
|
proposalId?: string | null
|
|
59723
60106
|
feedback?: XOR<ClientInterviewFeedbackNullableCreateEnvelopeInput, ClientInterviewFeedbackCreateInput> | null
|
|
59724
60107
|
rescheduledBy?: XOR<ClientInterviewRescheduledByDataNullableCreateEnvelopeInput, ClientInterviewRescheduledByDataCreateInput> | null
|
|
60108
|
+
calendarEventId?: string | null
|
|
59725
60109
|
}
|
|
59726
60110
|
|
|
59727
60111
|
export type ClientInterviewCreateOrConnectWithoutClientInput = {
|
|
@@ -59761,6 +60145,7 @@ export namespace Prisma {
|
|
|
59761
60145
|
account: AccountCreateNestedOneWithoutClientInterviewsInput
|
|
59762
60146
|
client: UserCreateNestedOneWithoutClientInterviewsInput
|
|
59763
60147
|
proposal?: ProposalCreateNestedOneWithoutClientInterviewsInput
|
|
60148
|
+
calendarEvent?: CalendarEventCreateNestedOneWithoutClientInterviewInput
|
|
59764
60149
|
}
|
|
59765
60150
|
|
|
59766
60151
|
export type ClientInterviewUncheckedCreateWithoutBuilderInput = {
|
|
@@ -59791,6 +60176,7 @@ export namespace Prisma {
|
|
|
59791
60176
|
proposalId?: string | null
|
|
59792
60177
|
feedback?: XOR<ClientInterviewFeedbackNullableCreateEnvelopeInput, ClientInterviewFeedbackCreateInput> | null
|
|
59793
60178
|
rescheduledBy?: XOR<ClientInterviewRescheduledByDataNullableCreateEnvelopeInput, ClientInterviewRescheduledByDataCreateInput> | null
|
|
60179
|
+
calendarEventId?: string | null
|
|
59794
60180
|
}
|
|
59795
60181
|
|
|
59796
60182
|
export type ClientInterviewCreateOrConnectWithoutBuilderInput = {
|
|
@@ -61816,6 +62202,7 @@ export namespace Prisma {
|
|
|
61816
62202
|
proposalId?: string | null
|
|
61817
62203
|
feedback?: XOR<ClientInterviewFeedbackNullableCreateEnvelopeInput, ClientInterviewFeedbackCreateInput> | null
|
|
61818
62204
|
rescheduledBy?: XOR<ClientInterviewRescheduledByDataNullableCreateEnvelopeInput, ClientInterviewRescheduledByDataCreateInput> | null
|
|
62205
|
+
calendarEventId?: string | null
|
|
61819
62206
|
}
|
|
61820
62207
|
|
|
61821
62208
|
export type AccountsMemberUpdateInput = {
|
|
@@ -62198,6 +62585,7 @@ export namespace Prisma {
|
|
|
62198
62585
|
client?: UserUpdateOneRequiredWithoutClientInterviewsNestedInput
|
|
62199
62586
|
builder?: UserUpdateOneRequiredWithoutBuilderInterviewsNestedInput
|
|
62200
62587
|
proposal?: ProposalUpdateOneWithoutClientInterviewsNestedInput
|
|
62588
|
+
calendarEvent?: CalendarEventUpdateOneWithoutClientInterviewNestedInput
|
|
62201
62589
|
}
|
|
62202
62590
|
|
|
62203
62591
|
export type ClientInterviewUncheckedUpdateWithoutAccountInput = {
|
|
@@ -62227,6 +62615,7 @@ export namespace Prisma {
|
|
|
62227
62615
|
proposalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
62228
62616
|
feedback?: XOR<ClientInterviewFeedbackNullableUpdateEnvelopeInput, ClientInterviewFeedbackCreateInput> | null
|
|
62229
62617
|
rescheduledBy?: XOR<ClientInterviewRescheduledByDataNullableUpdateEnvelopeInput, ClientInterviewRescheduledByDataCreateInput> | null
|
|
62618
|
+
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
62230
62619
|
}
|
|
62231
62620
|
|
|
62232
62621
|
export type ClientInterviewUncheckedUpdateManyWithoutAccountInput = {
|
|
@@ -62256,6 +62645,7 @@ export namespace Prisma {
|
|
|
62256
62645
|
proposalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
62257
62646
|
feedback?: XOR<ClientInterviewFeedbackNullableUpdateEnvelopeInput, ClientInterviewFeedbackCreateInput> | null
|
|
62258
62647
|
rescheduledBy?: XOR<ClientInterviewRescheduledByDataNullableUpdateEnvelopeInput, ClientInterviewRescheduledByDataCreateInput> | null
|
|
62648
|
+
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
62259
62649
|
}
|
|
62260
62650
|
|
|
62261
62651
|
export type AccountCreateManyBillingAccountModelInput = {
|
|
@@ -62365,6 +62755,7 @@ export namespace Prisma {
|
|
|
62365
62755
|
eventOwner?: UserUpdateOneRequiredWithoutInterviewsNestedInput
|
|
62366
62756
|
eventType?: CalendarEventTypeUpdateOneRequiredWithoutEventsNestedInput
|
|
62367
62757
|
reschedulingUser?: UserUpdateOneWithoutRescheduledInterviewsNestedInput
|
|
62758
|
+
clientInterview?: ClientInterviewUpdateOneWithoutCalendarEventNestedInput
|
|
62368
62759
|
}
|
|
62369
62760
|
|
|
62370
62761
|
export type CalendarEventUncheckedUpdateWithoutCalendarInput = {
|
|
@@ -62384,6 +62775,7 @@ export namespace Prisma {
|
|
|
62384
62775
|
cancellationReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
62385
62776
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
62386
62777
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
62778
|
+
clientInterview?: ClientInterviewUncheckedUpdateOneWithoutCalendarEventNestedInput
|
|
62387
62779
|
}
|
|
62388
62780
|
|
|
62389
62781
|
export type CalendarEventUncheckedUpdateManyWithoutCalendarInput = {
|
|
@@ -62459,6 +62851,7 @@ export namespace Prisma {
|
|
|
62459
62851
|
eventOwner?: UserUpdateOneRequiredWithoutInterviewsNestedInput
|
|
62460
62852
|
calendar?: CalendarUpdateOneRequiredWithoutEventsNestedInput
|
|
62461
62853
|
reschedulingUser?: UserUpdateOneWithoutRescheduledInterviewsNestedInput
|
|
62854
|
+
clientInterview?: ClientInterviewUpdateOneWithoutCalendarEventNestedInput
|
|
62462
62855
|
}
|
|
62463
62856
|
|
|
62464
62857
|
export type CalendarEventUncheckedUpdateWithoutEventTypeInput = {
|
|
@@ -62478,6 +62871,7 @@ export namespace Prisma {
|
|
|
62478
62871
|
cancellationReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
62479
62872
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
62480
62873
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
62874
|
+
clientInterview?: ClientInterviewUncheckedUpdateOneWithoutCalendarEventNestedInput
|
|
62481
62875
|
}
|
|
62482
62876
|
|
|
62483
62877
|
export type CalendarEventUncheckedUpdateManyWithoutEventTypeInput = {
|
|
@@ -63500,6 +63894,7 @@ export namespace Prisma {
|
|
|
63500
63894
|
transcripts?: XOR<ClientInterviewTranscriptDataListCreateEnvelopeInput, ClientInterviewTranscriptDataCreateInput> | ClientInterviewTranscriptDataCreateInput[]
|
|
63501
63895
|
feedback?: XOR<ClientInterviewFeedbackNullableCreateEnvelopeInput, ClientInterviewFeedbackCreateInput> | null
|
|
63502
63896
|
rescheduledBy?: XOR<ClientInterviewRescheduledByDataNullableCreateEnvelopeInput, ClientInterviewRescheduledByDataCreateInput> | null
|
|
63897
|
+
calendarEventId?: string | null
|
|
63503
63898
|
}
|
|
63504
63899
|
|
|
63505
63900
|
export type ProposalTemplateMapUpdateInput = {
|
|
@@ -63575,6 +63970,7 @@ export namespace Prisma {
|
|
|
63575
63970
|
account?: AccountUpdateOneRequiredWithoutClientInterviewsNestedInput
|
|
63576
63971
|
client?: UserUpdateOneRequiredWithoutClientInterviewsNestedInput
|
|
63577
63972
|
builder?: UserUpdateOneRequiredWithoutBuilderInterviewsNestedInput
|
|
63973
|
+
calendarEvent?: CalendarEventUpdateOneWithoutClientInterviewNestedInput
|
|
63578
63974
|
}
|
|
63579
63975
|
|
|
63580
63976
|
export type ClientInterviewUncheckedUpdateWithoutProposalInput = {
|
|
@@ -63604,6 +64000,7 @@ export namespace Prisma {
|
|
|
63604
64000
|
transcripts?: XOR<ClientInterviewTranscriptDataListUpdateEnvelopeInput, ClientInterviewTranscriptDataCreateInput> | ClientInterviewTranscriptDataCreateInput[]
|
|
63605
64001
|
feedback?: XOR<ClientInterviewFeedbackNullableUpdateEnvelopeInput, ClientInterviewFeedbackCreateInput> | null
|
|
63606
64002
|
rescheduledBy?: XOR<ClientInterviewRescheduledByDataNullableUpdateEnvelopeInput, ClientInterviewRescheduledByDataCreateInput> | null
|
|
64003
|
+
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63607
64004
|
}
|
|
63608
64005
|
|
|
63609
64006
|
export type ClientInterviewUncheckedUpdateManyWithoutProposalInput = {
|
|
@@ -63633,6 +64030,7 @@ export namespace Prisma {
|
|
|
63633
64030
|
transcripts?: XOR<ClientInterviewTranscriptDataListUpdateEnvelopeInput, ClientInterviewTranscriptDataCreateInput> | ClientInterviewTranscriptDataCreateInput[]
|
|
63634
64031
|
feedback?: XOR<ClientInterviewFeedbackNullableUpdateEnvelopeInput, ClientInterviewFeedbackCreateInput> | null
|
|
63635
64032
|
rescheduledBy?: XOR<ClientInterviewRescheduledByDataNullableUpdateEnvelopeInput, ClientInterviewRescheduledByDataCreateInput> | null
|
|
64033
|
+
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
63636
64034
|
}
|
|
63637
64035
|
|
|
63638
64036
|
export type RoleUpdateInput = {
|
|
@@ -64039,6 +64437,7 @@ export namespace Prisma {
|
|
|
64039
64437
|
proposalId?: string | null
|
|
64040
64438
|
feedback?: XOR<ClientInterviewFeedbackNullableCreateEnvelopeInput, ClientInterviewFeedbackCreateInput> | null
|
|
64041
64439
|
rescheduledBy?: XOR<ClientInterviewRescheduledByDataNullableCreateEnvelopeInput, ClientInterviewRescheduledByDataCreateInput> | null
|
|
64440
|
+
calendarEventId?: string | null
|
|
64042
64441
|
}
|
|
64043
64442
|
|
|
64044
64443
|
export type ClientInterviewCreateManyBuilderInput = {
|
|
@@ -64069,6 +64468,7 @@ export namespace Prisma {
|
|
|
64069
64468
|
proposalId?: string | null
|
|
64070
64469
|
feedback?: XOR<ClientInterviewFeedbackNullableCreateEnvelopeInput, ClientInterviewFeedbackCreateInput> | null
|
|
64071
64470
|
rescheduledBy?: XOR<ClientInterviewRescheduledByDataNullableCreateEnvelopeInput, ClientInterviewRescheduledByDataCreateInput> | null
|
|
64471
|
+
calendarEventId?: string | null
|
|
64072
64472
|
}
|
|
64073
64473
|
|
|
64074
64474
|
export type ProposalCreateManyTeamAdvisorInput = {
|
|
@@ -65109,6 +65509,7 @@ export namespace Prisma {
|
|
|
65109
65509
|
calendar?: CalendarUpdateOneRequiredWithoutEventsNestedInput
|
|
65110
65510
|
eventType?: CalendarEventTypeUpdateOneRequiredWithoutEventsNestedInput
|
|
65111
65511
|
reschedulingUser?: UserUpdateOneWithoutRescheduledInterviewsNestedInput
|
|
65512
|
+
clientInterview?: ClientInterviewUpdateOneWithoutCalendarEventNestedInput
|
|
65112
65513
|
}
|
|
65113
65514
|
|
|
65114
65515
|
export type CalendarEventUncheckedUpdateWithoutEventOwnerInput = {
|
|
@@ -65128,6 +65529,7 @@ export namespace Prisma {
|
|
|
65128
65529
|
cancellationReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
65129
65530
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
65130
65531
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
65532
|
+
clientInterview?: ClientInterviewUncheckedUpdateOneWithoutCalendarEventNestedInput
|
|
65131
65533
|
}
|
|
65132
65534
|
|
|
65133
65535
|
export type CalendarEventUncheckedUpdateManyWithoutEventOwnerInput = {
|
|
@@ -65196,6 +65598,7 @@ export namespace Prisma {
|
|
|
65196
65598
|
eventOwner?: UserUpdateOneRequiredWithoutInterviewsNestedInput
|
|
65197
65599
|
calendar?: CalendarUpdateOneRequiredWithoutEventsNestedInput
|
|
65198
65600
|
eventType?: CalendarEventTypeUpdateOneRequiredWithoutEventsNestedInput
|
|
65601
|
+
clientInterview?: ClientInterviewUpdateOneWithoutCalendarEventNestedInput
|
|
65199
65602
|
}
|
|
65200
65603
|
|
|
65201
65604
|
export type CalendarEventUncheckedUpdateWithoutReschedulingUserInput = {
|
|
@@ -65215,6 +65618,7 @@ export namespace Prisma {
|
|
|
65215
65618
|
cancellationReason?: NullableStringFieldUpdateOperationsInput | string | null
|
|
65216
65619
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
65217
65620
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
65621
|
+
clientInterview?: ClientInterviewUncheckedUpdateOneWithoutCalendarEventNestedInput
|
|
65218
65622
|
}
|
|
65219
65623
|
|
|
65220
65624
|
export type CalendarEventUncheckedUpdateManyWithoutReschedulingUserInput = {
|
|
@@ -65263,6 +65667,7 @@ export namespace Prisma {
|
|
|
65263
65667
|
account?: AccountUpdateOneRequiredWithoutClientInterviewsNestedInput
|
|
65264
65668
|
builder?: UserUpdateOneRequiredWithoutBuilderInterviewsNestedInput
|
|
65265
65669
|
proposal?: ProposalUpdateOneWithoutClientInterviewsNestedInput
|
|
65670
|
+
calendarEvent?: CalendarEventUpdateOneWithoutClientInterviewNestedInput
|
|
65266
65671
|
}
|
|
65267
65672
|
|
|
65268
65673
|
export type ClientInterviewUncheckedUpdateWithoutClientInput = {
|
|
@@ -65292,6 +65697,7 @@ export namespace Prisma {
|
|
|
65292
65697
|
proposalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
65293
65698
|
feedback?: XOR<ClientInterviewFeedbackNullableUpdateEnvelopeInput, ClientInterviewFeedbackCreateInput> | null
|
|
65294
65699
|
rescheduledBy?: XOR<ClientInterviewRescheduledByDataNullableUpdateEnvelopeInput, ClientInterviewRescheduledByDataCreateInput> | null
|
|
65700
|
+
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
65295
65701
|
}
|
|
65296
65702
|
|
|
65297
65703
|
export type ClientInterviewUncheckedUpdateManyWithoutClientInput = {
|
|
@@ -65321,6 +65727,7 @@ export namespace Prisma {
|
|
|
65321
65727
|
proposalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
65322
65728
|
feedback?: XOR<ClientInterviewFeedbackNullableUpdateEnvelopeInput, ClientInterviewFeedbackCreateInput> | null
|
|
65323
65729
|
rescheduledBy?: XOR<ClientInterviewRescheduledByDataNullableUpdateEnvelopeInput, ClientInterviewRescheduledByDataCreateInput> | null
|
|
65730
|
+
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
65324
65731
|
}
|
|
65325
65732
|
|
|
65326
65733
|
export type ClientInterviewUpdateWithoutBuilderInput = {
|
|
@@ -65350,6 +65757,7 @@ export namespace Prisma {
|
|
|
65350
65757
|
account?: AccountUpdateOneRequiredWithoutClientInterviewsNestedInput
|
|
65351
65758
|
client?: UserUpdateOneRequiredWithoutClientInterviewsNestedInput
|
|
65352
65759
|
proposal?: ProposalUpdateOneWithoutClientInterviewsNestedInput
|
|
65760
|
+
calendarEvent?: CalendarEventUpdateOneWithoutClientInterviewNestedInput
|
|
65353
65761
|
}
|
|
65354
65762
|
|
|
65355
65763
|
export type ClientInterviewUncheckedUpdateWithoutBuilderInput = {
|
|
@@ -65379,6 +65787,7 @@ export namespace Prisma {
|
|
|
65379
65787
|
proposalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
65380
65788
|
feedback?: XOR<ClientInterviewFeedbackNullableUpdateEnvelopeInput, ClientInterviewFeedbackCreateInput> | null
|
|
65381
65789
|
rescheduledBy?: XOR<ClientInterviewRescheduledByDataNullableUpdateEnvelopeInput, ClientInterviewRescheduledByDataCreateInput> | null
|
|
65790
|
+
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
65382
65791
|
}
|
|
65383
65792
|
|
|
65384
65793
|
export type ClientInterviewUncheckedUpdateManyWithoutBuilderInput = {
|
|
@@ -65408,6 +65817,7 @@ export namespace Prisma {
|
|
|
65408
65817
|
proposalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
65409
65818
|
feedback?: XOR<ClientInterviewFeedbackNullableUpdateEnvelopeInput, ClientInterviewFeedbackCreateInput> | null
|
|
65410
65819
|
rescheduledBy?: XOR<ClientInterviewRescheduledByDataNullableUpdateEnvelopeInput, ClientInterviewRescheduledByDataCreateInput> | null
|
|
65820
|
+
calendarEventId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
65411
65821
|
}
|
|
65412
65822
|
|
|
65413
65823
|
export type ProposalUpdateWithoutTeamAdvisorInput = {
|