@a_team/prisma 3.16.2-macos-docker-linux → 3.16.3-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.
@@ -19253,8 +19253,8 @@ export namespace Prisma {
19253
19253
  clientId: string
19254
19254
  builderId: string
19255
19255
  interviewRoleDescription: string | null
19256
- calComBookingId: number
19257
- calComBookingUid: string
19256
+ calComBookingId: number | null
19257
+ calComBookingUid: string | null
19258
19258
  calComDailyMeetingId: string | null
19259
19259
  startDate: Date
19260
19260
  endDate: Date
@@ -19385,8 +19385,17 @@ export namespace Prisma {
19385
19385
  clientId: string
19386
19386
  builderId: string
19387
19387
  interviewRoleDescription: string | null
19388
- calComBookingId: number
19389
- calComBookingUid: string
19388
+ /**
19389
+ * @deprecated Use `calendarEventId` moving forward
19390
+ */
19391
+ calComBookingId: number | null
19392
+ /**
19393
+ * @deprecated Use `calendarEventId` moving forward
19394
+ */
19395
+ calComBookingUid: string | null
19396
+ /**
19397
+ * @deprecated Use `calendarEventId` moving forward
19398
+ */
19390
19399
  calComDailyMeetingId: string | null
19391
19400
  startDate: Date
19392
19401
  endDate: Date
@@ -19402,6 +19411,9 @@ export namespace Prisma {
19402
19411
  interviewRequestExpireAt: Date | null
19403
19412
  slackThreadMessageId: string | null
19404
19413
  proposalId: string | null
19414
+ /**
19415
+ * Make this required once Interview Scheduler is GA
19416
+ */
19405
19417
  calendarEventId: string | null
19406
19418
  }, ExtArgs["result"]["clientInterview"]>
19407
19419
  composites: {
@@ -43613,8 +43625,8 @@ export namespace Prisma {
43613
43625
  clientId?: StringFilter<"ClientInterview"> | string
43614
43626
  builderId?: StringFilter<"ClientInterview"> | string
43615
43627
  interviewRoleDescription?: StringNullableFilter<"ClientInterview"> | string | null
43616
- calComBookingId?: IntFilter<"ClientInterview"> | number
43617
- calComBookingUid?: StringFilter<"ClientInterview"> | string
43628
+ calComBookingId?: IntNullableFilter<"ClientInterview"> | number | null
43629
+ calComBookingUid?: StringNullableFilter<"ClientInterview"> | string | null
43618
43630
  calComDailyMeetingId?: StringNullableFilter<"ClientInterview"> | string | null
43619
43631
  startDate?: DateTimeFilter<"ClientInterview"> | Date | string
43620
43632
  endDate?: DateTimeFilter<"ClientInterview"> | Date | string
@@ -43691,8 +43703,8 @@ export namespace Prisma {
43691
43703
  clientId?: StringFilter<"ClientInterview"> | string
43692
43704
  builderId?: StringFilter<"ClientInterview"> | string
43693
43705
  interviewRoleDescription?: StringNullableFilter<"ClientInterview"> | string | null
43694
- calComBookingId?: IntFilter<"ClientInterview"> | number
43695
- calComBookingUid?: StringFilter<"ClientInterview"> | string
43706
+ calComBookingId?: IntNullableFilter<"ClientInterview"> | number | null
43707
+ calComBookingUid?: StringNullableFilter<"ClientInterview"> | string | null
43696
43708
  calComDailyMeetingId?: StringNullableFilter<"ClientInterview"> | string | null
43697
43709
  startDate?: DateTimeFilter<"ClientInterview"> | Date | string
43698
43710
  endDate?: DateTimeFilter<"ClientInterview"> | Date | string
@@ -43764,8 +43776,8 @@ export namespace Prisma {
43764
43776
  clientId?: StringWithAggregatesFilter<"ClientInterview"> | string
43765
43777
  builderId?: StringWithAggregatesFilter<"ClientInterview"> | string
43766
43778
  interviewRoleDescription?: StringNullableWithAggregatesFilter<"ClientInterview"> | string | null
43767
- calComBookingId?: IntWithAggregatesFilter<"ClientInterview"> | number
43768
- calComBookingUid?: StringWithAggregatesFilter<"ClientInterview"> | string
43779
+ calComBookingId?: IntNullableWithAggregatesFilter<"ClientInterview"> | number | null
43780
+ calComBookingUid?: StringNullableWithAggregatesFilter<"ClientInterview"> | string | null
43769
43781
  calComDailyMeetingId?: StringNullableWithAggregatesFilter<"ClientInterview"> | string | null
43770
43782
  startDate?: DateTimeWithAggregatesFilter<"ClientInterview"> | Date | string
43771
43783
  endDate?: DateTimeWithAggregatesFilter<"ClientInterview"> | Date | string
@@ -46753,8 +46765,8 @@ export namespace Prisma {
46753
46765
  updatedAt?: Date | string
46754
46766
  type: $Enums.ClientInterviewType
46755
46767
  interviewRoleDescription?: string | null
46756
- calComBookingId: number
46757
- calComBookingUid: string
46768
+ calComBookingId?: number | null
46769
+ calComBookingUid?: string | null
46758
46770
  calComDailyMeetingId?: string | null
46759
46771
  startDate: Date | string
46760
46772
  endDate: Date | string
@@ -46788,8 +46800,8 @@ export namespace Prisma {
46788
46800
  clientId: string
46789
46801
  builderId: string
46790
46802
  interviewRoleDescription?: string | null
46791
- calComBookingId: number
46792
- calComBookingUid: string
46803
+ calComBookingId?: number | null
46804
+ calComBookingUid?: string | null
46793
46805
  calComDailyMeetingId?: string | null
46794
46806
  startDate: Date | string
46795
46807
  endDate: Date | string
@@ -46816,8 +46828,8 @@ export namespace Prisma {
46816
46828
  updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
46817
46829
  type?: EnumClientInterviewTypeFieldUpdateOperationsInput | $Enums.ClientInterviewType
46818
46830
  interviewRoleDescription?: NullableStringFieldUpdateOperationsInput | string | null
46819
- calComBookingId?: IntFieldUpdateOperationsInput | number
46820
- calComBookingUid?: StringFieldUpdateOperationsInput | string
46831
+ calComBookingId?: NullableIntFieldUpdateOperationsInput | number | null
46832
+ calComBookingUid?: NullableStringFieldUpdateOperationsInput | string | null
46821
46833
  calComDailyMeetingId?: NullableStringFieldUpdateOperationsInput | string | null
46822
46834
  startDate?: DateTimeFieldUpdateOperationsInput | Date | string
46823
46835
  endDate?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -46850,8 +46862,8 @@ export namespace Prisma {
46850
46862
  clientId?: StringFieldUpdateOperationsInput | string
46851
46863
  builderId?: StringFieldUpdateOperationsInput | string
46852
46864
  interviewRoleDescription?: NullableStringFieldUpdateOperationsInput | string | null
46853
- calComBookingId?: IntFieldUpdateOperationsInput | number
46854
- calComBookingUid?: StringFieldUpdateOperationsInput | string
46865
+ calComBookingId?: NullableIntFieldUpdateOperationsInput | number | null
46866
+ calComBookingUid?: NullableStringFieldUpdateOperationsInput | string | null
46855
46867
  calComDailyMeetingId?: NullableStringFieldUpdateOperationsInput | string | null
46856
46868
  startDate?: DateTimeFieldUpdateOperationsInput | Date | string
46857
46869
  endDate?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -46882,8 +46894,8 @@ export namespace Prisma {
46882
46894
  clientId: string
46883
46895
  builderId: string
46884
46896
  interviewRoleDescription?: string | null
46885
- calComBookingId: number
46886
- calComBookingUid: string
46897
+ calComBookingId?: number | null
46898
+ calComBookingUid?: string | null
46887
46899
  calComDailyMeetingId?: string | null
46888
46900
  startDate: Date | string
46889
46901
  endDate: Date | string
@@ -46910,8 +46922,8 @@ export namespace Prisma {
46910
46922
  updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
46911
46923
  type?: EnumClientInterviewTypeFieldUpdateOperationsInput | $Enums.ClientInterviewType
46912
46924
  interviewRoleDescription?: NullableStringFieldUpdateOperationsInput | string | null
46913
- calComBookingId?: IntFieldUpdateOperationsInput | number
46914
- calComBookingUid?: StringFieldUpdateOperationsInput | string
46925
+ calComBookingId?: NullableIntFieldUpdateOperationsInput | number | null
46926
+ calComBookingUid?: NullableStringFieldUpdateOperationsInput | string | null
46915
46927
  calComDailyMeetingId?: NullableStringFieldUpdateOperationsInput | string | null
46916
46928
  startDate?: DateTimeFieldUpdateOperationsInput | Date | string
46917
46929
  endDate?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -46939,8 +46951,8 @@ export namespace Prisma {
46939
46951
  clientId?: StringFieldUpdateOperationsInput | string
46940
46952
  builderId?: StringFieldUpdateOperationsInput | string
46941
46953
  interviewRoleDescription?: NullableStringFieldUpdateOperationsInput | string | null
46942
- calComBookingId?: IntFieldUpdateOperationsInput | number
46943
- calComBookingUid?: StringFieldUpdateOperationsInput | string
46954
+ calComBookingId?: NullableIntFieldUpdateOperationsInput | number | null
46955
+ calComBookingUid?: NullableStringFieldUpdateOperationsInput | string | null
46944
46956
  calComDailyMeetingId?: NullableStringFieldUpdateOperationsInput | string | null
46945
46957
  startDate?: DateTimeFieldUpdateOperationsInput | Date | string
46946
46958
  endDate?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -50601,6 +50613,18 @@ export namespace Prisma {
50601
50613
  not?: NestedEnumClientInterviewTypeFilter<$PrismaModel> | $Enums.ClientInterviewType
50602
50614
  }
50603
50615
 
50616
+ export type IntNullableFilter<$PrismaModel = never> = {
50617
+ equals?: number | IntFieldRefInput<$PrismaModel> | null
50618
+ in?: number[] | ListIntFieldRefInput<$PrismaModel> | null
50619
+ notIn?: number[] | ListIntFieldRefInput<$PrismaModel> | null
50620
+ lt?: number | IntFieldRefInput<$PrismaModel>
50621
+ lte?: number | IntFieldRefInput<$PrismaModel>
50622
+ gt?: number | IntFieldRefInput<$PrismaModel>
50623
+ gte?: number | IntFieldRefInput<$PrismaModel>
50624
+ not?: NestedIntNullableFilter<$PrismaModel> | number | null
50625
+ isSet?: boolean
50626
+ }
50627
+
50604
50628
  export type FloatNullableFilter<$PrismaModel = never> = {
50605
50629
  equals?: number | FloatFieldRefInput<$PrismaModel> | null
50606
50630
  in?: number[] | ListFloatFieldRefInput<$PrismaModel> | null
@@ -50820,6 +50844,23 @@ export namespace Prisma {
50820
50844
  _max?: NestedEnumClientInterviewTypeFilter<$PrismaModel>
50821
50845
  }
50822
50846
 
50847
+ export type IntNullableWithAggregatesFilter<$PrismaModel = never> = {
50848
+ equals?: number | IntFieldRefInput<$PrismaModel> | null
50849
+ in?: number[] | ListIntFieldRefInput<$PrismaModel> | null
50850
+ notIn?: number[] | ListIntFieldRefInput<$PrismaModel> | null
50851
+ lt?: number | IntFieldRefInput<$PrismaModel>
50852
+ lte?: number | IntFieldRefInput<$PrismaModel>
50853
+ gt?: number | IntFieldRefInput<$PrismaModel>
50854
+ gte?: number | IntFieldRefInput<$PrismaModel>
50855
+ not?: NestedIntNullableWithAggregatesFilter<$PrismaModel> | number | null
50856
+ _count?: NestedIntNullableFilter<$PrismaModel>
50857
+ _avg?: NestedFloatNullableFilter<$PrismaModel>
50858
+ _sum?: NestedIntNullableFilter<$PrismaModel>
50859
+ _min?: NestedIntNullableFilter<$PrismaModel>
50860
+ _max?: NestedIntNullableFilter<$PrismaModel>
50861
+ isSet?: boolean
50862
+ }
50863
+
50823
50864
  export type FloatNullableWithAggregatesFilter<$PrismaModel = never> = {
50824
50865
  equals?: number | FloatFieldRefInput<$PrismaModel> | null
50825
50866
  in?: number[] | ListFloatFieldRefInput<$PrismaModel> | null
@@ -51416,18 +51457,6 @@ export namespace Prisma {
51416
51457
  websiteURL: string
51417
51458
  }
51418
51459
 
51419
- export type IntNullableFilter<$PrismaModel = never> = {
51420
- equals?: number | IntFieldRefInput<$PrismaModel> | null
51421
- in?: number[] | ListIntFieldRefInput<$PrismaModel> | null
51422
- notIn?: number[] | ListIntFieldRefInput<$PrismaModel> | null
51423
- lt?: number | IntFieldRefInput<$PrismaModel>
51424
- lte?: number | IntFieldRefInput<$PrismaModel>
51425
- gt?: number | IntFieldRefInput<$PrismaModel>
51426
- gte?: number | IntFieldRefInput<$PrismaModel>
51427
- not?: NestedIntNullableFilter<$PrismaModel> | number | null
51428
- isSet?: boolean
51429
- }
51430
-
51431
51460
  export type MissionsInvoicingNullableCompositeFilter = {
51432
51461
  equals?: MissionsInvoicingObjectEqualityInput | null
51433
51462
  is?: MissionsInvoicingWhereInput | null
@@ -51711,23 +51740,6 @@ export namespace Prisma {
51711
51740
  overlapMinutes?: SortOrder
51712
51741
  }
51713
51742
 
51714
- export type IntNullableWithAggregatesFilter<$PrismaModel = never> = {
51715
- equals?: number | IntFieldRefInput<$PrismaModel> | null
51716
- in?: number[] | ListIntFieldRefInput<$PrismaModel> | null
51717
- notIn?: number[] | ListIntFieldRefInput<$PrismaModel> | null
51718
- lt?: number | IntFieldRefInput<$PrismaModel>
51719
- lte?: number | IntFieldRefInput<$PrismaModel>
51720
- gt?: number | IntFieldRefInput<$PrismaModel>
51721
- gte?: number | IntFieldRefInput<$PrismaModel>
51722
- not?: NestedIntNullableWithAggregatesFilter<$PrismaModel> | number | null
51723
- _count?: NestedIntNullableFilter<$PrismaModel>
51724
- _avg?: NestedFloatNullableFilter<$PrismaModel>
51725
- _sum?: NestedIntNullableFilter<$PrismaModel>
51726
- _min?: NestedIntNullableFilter<$PrismaModel>
51727
- _max?: NestedIntNullableFilter<$PrismaModel>
51728
- isSet?: boolean
51729
- }
51730
-
51731
51743
  export type EnumMissionStatusWithAggregatesFilter<$PrismaModel = never> = {
51732
51744
  equals?: $Enums.MissionStatus | EnumMissionStatusFieldRefInput<$PrismaModel>
51733
51745
  in?: $Enums.MissionStatus[] | ListEnumMissionStatusFieldRefInput<$PrismaModel>
@@ -54526,6 +54538,15 @@ export namespace Prisma {
54526
54538
  set?: $Enums.ClientInterviewType
54527
54539
  }
54528
54540
 
54541
+ export type NullableIntFieldUpdateOperationsInput = {
54542
+ set?: number | null
54543
+ increment?: number
54544
+ decrement?: number
54545
+ multiply?: number
54546
+ divide?: number
54547
+ unset?: boolean
54548
+ }
54549
+
54529
54550
  export type NullableFloatFieldUpdateOperationsInput = {
54530
54551
  set?: number | null
54531
54552
  increment?: number
@@ -55109,15 +55130,6 @@ export namespace Prisma {
55109
55130
  unset?: boolean
55110
55131
  }
55111
55132
 
55112
- export type NullableIntFieldUpdateOperationsInput = {
55113
- set?: number | null
55114
- increment?: number
55115
- decrement?: number
55116
- multiply?: number
55117
- divide?: number
55118
- unset?: boolean
55119
- }
55120
-
55121
55133
  export type MissionsInvoicingNullableUpdateEnvelopeInput = {
55122
55134
  set?: MissionsInvoicingCreateInput | null
55123
55135
  upsert?: MissionsInvoicingUpsertInput
@@ -57890,6 +57902,23 @@ export namespace Prisma {
57890
57902
  _max?: NestedEnumClientInterviewTypeFilter<$PrismaModel>
57891
57903
  }
57892
57904
 
57905
+ export type NestedIntNullableWithAggregatesFilter<$PrismaModel = never> = {
57906
+ equals?: number | IntFieldRefInput<$PrismaModel> | null
57907
+ in?: number[] | ListIntFieldRefInput<$PrismaModel> | null
57908
+ notIn?: number[] | ListIntFieldRefInput<$PrismaModel> | null
57909
+ lt?: number | IntFieldRefInput<$PrismaModel>
57910
+ lte?: number | IntFieldRefInput<$PrismaModel>
57911
+ gt?: number | IntFieldRefInput<$PrismaModel>
57912
+ gte?: number | IntFieldRefInput<$PrismaModel>
57913
+ not?: NestedIntNullableWithAggregatesFilter<$PrismaModel> | number | null
57914
+ _count?: NestedIntNullableFilter<$PrismaModel>
57915
+ _avg?: NestedFloatNullableFilter<$PrismaModel>
57916
+ _sum?: NestedIntNullableFilter<$PrismaModel>
57917
+ _min?: NestedIntNullableFilter<$PrismaModel>
57918
+ _max?: NestedIntNullableFilter<$PrismaModel>
57919
+ isSet?: boolean
57920
+ }
57921
+
57893
57922
  export type NestedFloatNullableWithAggregatesFilter<$PrismaModel = never> = {
57894
57923
  equals?: number | FloatFieldRefInput<$PrismaModel> | null
57895
57924
  in?: number[] | ListFloatFieldRefInput<$PrismaModel> | null
@@ -58341,23 +58370,6 @@ export namespace Prisma {
58341
58370
  type?: StringFilter<"MissionsTesting"> | string
58342
58371
  }
58343
58372
 
58344
- export type NestedIntNullableWithAggregatesFilter<$PrismaModel = never> = {
58345
- equals?: number | IntFieldRefInput<$PrismaModel> | null
58346
- in?: number[] | ListIntFieldRefInput<$PrismaModel> | null
58347
- notIn?: number[] | ListIntFieldRefInput<$PrismaModel> | null
58348
- lt?: number | IntFieldRefInput<$PrismaModel>
58349
- lte?: number | IntFieldRefInput<$PrismaModel>
58350
- gt?: number | IntFieldRefInput<$PrismaModel>
58351
- gte?: number | IntFieldRefInput<$PrismaModel>
58352
- not?: NestedIntNullableWithAggregatesFilter<$PrismaModel> | number | null
58353
- _count?: NestedIntNullableFilter<$PrismaModel>
58354
- _avg?: NestedFloatNullableFilter<$PrismaModel>
58355
- _sum?: NestedIntNullableFilter<$PrismaModel>
58356
- _min?: NestedIntNullableFilter<$PrismaModel>
58357
- _max?: NestedIntNullableFilter<$PrismaModel>
58358
- isSet?: boolean
58359
- }
58360
-
58361
58373
  export type NestedEnumMissionStatusWithAggregatesFilter<$PrismaModel = never> = {
58362
58374
  equals?: $Enums.MissionStatus | EnumMissionStatusFieldRefInput<$PrismaModel>
58363
58375
  in?: $Enums.MissionStatus[] | ListEnumMissionStatusFieldRefInput<$PrismaModel>
@@ -59444,8 +59456,8 @@ export namespace Prisma {
59444
59456
  updatedAt?: Date | string
59445
59457
  type: $Enums.ClientInterviewType
59446
59458
  interviewRoleDescription?: string | null
59447
- calComBookingId: number
59448
- calComBookingUid: string
59459
+ calComBookingId?: number | null
59460
+ calComBookingUid?: string | null
59449
59461
  calComDailyMeetingId?: string | null
59450
59462
  startDate: Date | string
59451
59463
  endDate: Date | string
@@ -59477,8 +59489,8 @@ export namespace Prisma {
59477
59489
  clientId: string
59478
59490
  builderId: string
59479
59491
  interviewRoleDescription?: string | null
59480
- calComBookingId: number
59481
- calComBookingUid: string
59492
+ calComBookingId?: number | null
59493
+ calComBookingUid?: string | null
59482
59494
  calComDailyMeetingId?: string | null
59483
59495
  startDate: Date | string
59484
59496
  endDate: Date | string
@@ -59830,8 +59842,8 @@ export namespace Prisma {
59830
59842
  clientId?: StringFilter<"ClientInterview"> | string
59831
59843
  builderId?: StringFilter<"ClientInterview"> | string
59832
59844
  interviewRoleDescription?: StringNullableFilter<"ClientInterview"> | string | null
59833
- calComBookingId?: IntFilter<"ClientInterview"> | number
59834
- calComBookingUid?: StringFilter<"ClientInterview"> | string
59845
+ calComBookingId?: IntNullableFilter<"ClientInterview"> | number | null
59846
+ calComBookingUid?: StringNullableFilter<"ClientInterview"> | string | null
59835
59847
  calComDailyMeetingId?: StringNullableFilter<"ClientInterview"> | string | null
59836
59848
  startDate?: DateTimeFilter<"ClientInterview"> | Date | string
59837
59849
  endDate?: DateTimeFilter<"ClientInterview"> | Date | string
@@ -60995,8 +61007,8 @@ export namespace Prisma {
60995
61007
  updatedAt?: Date | string
60996
61008
  type: $Enums.ClientInterviewType
60997
61009
  interviewRoleDescription?: string | null
60998
- calComBookingId: number
60999
- calComBookingUid: string
61010
+ calComBookingId?: number | null
61011
+ calComBookingUid?: string | null
61000
61012
  calComDailyMeetingId?: string | null
61001
61013
  startDate: Date | string
61002
61014
  endDate: Date | string
@@ -61029,8 +61041,8 @@ export namespace Prisma {
61029
61041
  clientId: string
61030
61042
  builderId: string
61031
61043
  interviewRoleDescription?: string | null
61032
- calComBookingId: number
61033
- calComBookingUid: string
61044
+ calComBookingId?: number | null
61045
+ calComBookingUid?: string | null
61034
61046
  calComDailyMeetingId?: string | null
61035
61047
  startDate: Date | string
61036
61048
  endDate: Date | string
@@ -61423,8 +61435,8 @@ export namespace Prisma {
61423
61435
  updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
61424
61436
  type?: EnumClientInterviewTypeFieldUpdateOperationsInput | $Enums.ClientInterviewType
61425
61437
  interviewRoleDescription?: NullableStringFieldUpdateOperationsInput | string | null
61426
- calComBookingId?: IntFieldUpdateOperationsInput | number
61427
- calComBookingUid?: StringFieldUpdateOperationsInput | string
61438
+ calComBookingId?: NullableIntFieldUpdateOperationsInput | number | null
61439
+ calComBookingUid?: NullableStringFieldUpdateOperationsInput | string | null
61428
61440
  calComDailyMeetingId?: NullableStringFieldUpdateOperationsInput | string | null
61429
61441
  startDate?: DateTimeFieldUpdateOperationsInput | Date | string
61430
61442
  endDate?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -61456,8 +61468,8 @@ export namespace Prisma {
61456
61468
  clientId?: StringFieldUpdateOperationsInput | string
61457
61469
  builderId?: StringFieldUpdateOperationsInput | string
61458
61470
  interviewRoleDescription?: NullableStringFieldUpdateOperationsInput | string | null
61459
- calComBookingId?: IntFieldUpdateOperationsInput | number
61460
- calComBookingUid?: StringFieldUpdateOperationsInput | string
61471
+ calComBookingId?: NullableIntFieldUpdateOperationsInput | number | null
61472
+ calComBookingUid?: NullableStringFieldUpdateOperationsInput | string | null
61461
61473
  calComDailyMeetingId?: NullableStringFieldUpdateOperationsInput | string | null
61462
61474
  startDate?: DateTimeFieldUpdateOperationsInput | Date | string
61463
61475
  endDate?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -66836,8 +66848,8 @@ export namespace Prisma {
66836
66848
  updatedAt?: Date | string
66837
66849
  type: $Enums.ClientInterviewType
66838
66850
  interviewRoleDescription?: string | null
66839
- calComBookingId: number
66840
- calComBookingUid: string
66851
+ calComBookingId?: number | null
66852
+ calComBookingUid?: string | null
66841
66853
  calComDailyMeetingId?: string | null
66842
66854
  startDate: Date | string
66843
66855
  endDate: Date | string
@@ -66870,8 +66882,8 @@ export namespace Prisma {
66870
66882
  clientId: string
66871
66883
  builderId: string
66872
66884
  interviewRoleDescription?: string | null
66873
- calComBookingId: number
66874
- calComBookingUid: string
66885
+ calComBookingId?: number | null
66886
+ calComBookingUid?: string | null
66875
66887
  calComDailyMeetingId?: string | null
66876
66888
  startDate: Date | string
66877
66889
  endDate: Date | string
@@ -68499,8 +68511,8 @@ export namespace Prisma {
68499
68511
  updatedAt?: Date | string
68500
68512
  type: $Enums.ClientInterviewType
68501
68513
  interviewRoleDescription?: string | null
68502
- calComBookingId: number
68503
- calComBookingUid: string
68514
+ calComBookingId?: number | null
68515
+ calComBookingUid?: string | null
68504
68516
  calComDailyMeetingId?: string | null
68505
68517
  startDate: Date | string
68506
68518
  endDate: Date | string
@@ -68532,8 +68544,8 @@ export namespace Prisma {
68532
68544
  type: $Enums.ClientInterviewType
68533
68545
  builderId: string
68534
68546
  interviewRoleDescription?: string | null
68535
- calComBookingId: number
68536
- calComBookingUid: string
68547
+ calComBookingId?: number | null
68548
+ calComBookingUid?: string | null
68537
68549
  calComDailyMeetingId?: string | null
68538
68550
  startDate: Date | string
68539
68551
  endDate: Date | string
@@ -68570,8 +68582,8 @@ export namespace Prisma {
68570
68582
  updatedAt?: Date | string
68571
68583
  type: $Enums.ClientInterviewType
68572
68584
  interviewRoleDescription?: string | null
68573
- calComBookingId: number
68574
- calComBookingUid: string
68585
+ calComBookingId?: number | null
68586
+ calComBookingUid?: string | null
68575
68587
  calComDailyMeetingId?: string | null
68576
68588
  startDate: Date | string
68577
68589
  endDate: Date | string
@@ -68603,8 +68615,8 @@ export namespace Prisma {
68603
68615
  type: $Enums.ClientInterviewType
68604
68616
  clientId: string
68605
68617
  interviewRoleDescription?: string | null
68606
- calComBookingId: number
68607
- calComBookingUid: string
68618
+ calComBookingId?: number | null
68619
+ calComBookingUid?: string | null
68608
68620
  calComDailyMeetingId?: string | null
68609
68621
  startDate: Date | string
68610
68622
  endDate: Date | string
@@ -70787,8 +70799,8 @@ export namespace Prisma {
70787
70799
  clientId: string
70788
70800
  builderId: string
70789
70801
  interviewRoleDescription?: string | null
70790
- calComBookingId: number
70791
- calComBookingUid: string
70802
+ calComBookingId?: number | null
70803
+ calComBookingUid?: string | null
70792
70804
  calComDailyMeetingId?: string | null
70793
70805
  startDate: Date | string
70794
70806
  endDate: Date | string
@@ -71171,8 +71183,8 @@ export namespace Prisma {
71171
71183
  updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
71172
71184
  type?: EnumClientInterviewTypeFieldUpdateOperationsInput | $Enums.ClientInterviewType
71173
71185
  interviewRoleDescription?: NullableStringFieldUpdateOperationsInput | string | null
71174
- calComBookingId?: IntFieldUpdateOperationsInput | number
71175
- calComBookingUid?: StringFieldUpdateOperationsInput | string
71186
+ calComBookingId?: NullableIntFieldUpdateOperationsInput | number | null
71187
+ calComBookingUid?: NullableStringFieldUpdateOperationsInput | string | null
71176
71188
  calComDailyMeetingId?: NullableStringFieldUpdateOperationsInput | string | null
71177
71189
  startDate?: DateTimeFieldUpdateOperationsInput | Date | string
71178
71190
  endDate?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -71203,8 +71215,8 @@ export namespace Prisma {
71203
71215
  clientId?: StringFieldUpdateOperationsInput | string
71204
71216
  builderId?: StringFieldUpdateOperationsInput | string
71205
71217
  interviewRoleDescription?: NullableStringFieldUpdateOperationsInput | string | null
71206
- calComBookingId?: IntFieldUpdateOperationsInput | number
71207
- calComBookingUid?: StringFieldUpdateOperationsInput | string
71218
+ calComBookingId?: NullableIntFieldUpdateOperationsInput | number | null
71219
+ calComBookingUid?: NullableStringFieldUpdateOperationsInput | string | null
71208
71220
  calComDailyMeetingId?: NullableStringFieldUpdateOperationsInput | string | null
71209
71221
  startDate?: DateTimeFieldUpdateOperationsInput | Date | string
71210
71222
  endDate?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -71233,8 +71245,8 @@ export namespace Prisma {
71233
71245
  clientId?: StringFieldUpdateOperationsInput | string
71234
71246
  builderId?: StringFieldUpdateOperationsInput | string
71235
71247
  interviewRoleDescription?: NullableStringFieldUpdateOperationsInput | string | null
71236
- calComBookingId?: IntFieldUpdateOperationsInput | number
71237
- calComBookingUid?: StringFieldUpdateOperationsInput | string
71248
+ calComBookingId?: NullableIntFieldUpdateOperationsInput | number | null
71249
+ calComBookingUid?: NullableStringFieldUpdateOperationsInput | string | null
71238
71250
  calComDailyMeetingId?: NullableStringFieldUpdateOperationsInput | string | null
71239
71251
  startDate?: DateTimeFieldUpdateOperationsInput | Date | string
71240
71252
  endDate?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -72569,8 +72581,8 @@ export namespace Prisma {
72569
72581
  clientId: string
72570
72582
  builderId: string
72571
72583
  interviewRoleDescription?: string | null
72572
- calComBookingId: number
72573
- calComBookingUid: string
72584
+ calComBookingId?: number | null
72585
+ calComBookingUid?: string | null
72574
72586
  calComDailyMeetingId?: string | null
72575
72587
  startDate: Date | string
72576
72588
  endDate: Date | string
@@ -72646,8 +72658,8 @@ export namespace Prisma {
72646
72658
  updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
72647
72659
  type?: EnumClientInterviewTypeFieldUpdateOperationsInput | $Enums.ClientInterviewType
72648
72660
  interviewRoleDescription?: NullableStringFieldUpdateOperationsInput | string | null
72649
- calComBookingId?: IntFieldUpdateOperationsInput | number
72650
- calComBookingUid?: StringFieldUpdateOperationsInput | string
72661
+ calComBookingId?: NullableIntFieldUpdateOperationsInput | number | null
72662
+ calComBookingUid?: NullableStringFieldUpdateOperationsInput | string | null
72651
72663
  calComDailyMeetingId?: NullableStringFieldUpdateOperationsInput | string | null
72652
72664
  startDate?: DateTimeFieldUpdateOperationsInput | Date | string
72653
72665
  endDate?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -72679,8 +72691,8 @@ export namespace Prisma {
72679
72691
  clientId?: StringFieldUpdateOperationsInput | string
72680
72692
  builderId?: StringFieldUpdateOperationsInput | string
72681
72693
  interviewRoleDescription?: NullableStringFieldUpdateOperationsInput | string | null
72682
- calComBookingId?: IntFieldUpdateOperationsInput | number
72683
- calComBookingUid?: StringFieldUpdateOperationsInput | string
72694
+ calComBookingId?: NullableIntFieldUpdateOperationsInput | number | null
72695
+ calComBookingUid?: NullableStringFieldUpdateOperationsInput | string | null
72684
72696
  calComDailyMeetingId?: NullableStringFieldUpdateOperationsInput | string | null
72685
72697
  startDate?: DateTimeFieldUpdateOperationsInput | Date | string
72686
72698
  endDate?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -72709,8 +72721,8 @@ export namespace Prisma {
72709
72721
  clientId?: StringFieldUpdateOperationsInput | string
72710
72722
  builderId?: StringFieldUpdateOperationsInput | string
72711
72723
  interviewRoleDescription?: NullableStringFieldUpdateOperationsInput | string | null
72712
- calComBookingId?: IntFieldUpdateOperationsInput | number
72713
- calComBookingUid?: StringFieldUpdateOperationsInput | string
72724
+ calComBookingId?: NullableIntFieldUpdateOperationsInput | number | null
72725
+ calComBookingUid?: NullableStringFieldUpdateOperationsInput | string | null
72714
72726
  calComDailyMeetingId?: NullableStringFieldUpdateOperationsInput | string | null
72715
72727
  startDate?: DateTimeFieldUpdateOperationsInput | Date | string
72716
72728
  endDate?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -73144,8 +73156,8 @@ export namespace Prisma {
73144
73156
  type: $Enums.ClientInterviewType
73145
73157
  builderId: string
73146
73158
  interviewRoleDescription?: string | null
73147
- calComBookingId: number
73148
- calComBookingUid: string
73159
+ calComBookingId?: number | null
73160
+ calComBookingUid?: string | null
73149
73161
  calComDailyMeetingId?: string | null
73150
73162
  startDate: Date | string
73151
73163
  endDate: Date | string
@@ -73175,8 +73187,8 @@ export namespace Prisma {
73175
73187
  type: $Enums.ClientInterviewType
73176
73188
  clientId: string
73177
73189
  interviewRoleDescription?: string | null
73178
- calComBookingId: number
73179
- calComBookingUid: string
73190
+ calComBookingId?: number | null
73191
+ calComBookingUid?: string | null
73180
73192
  calComDailyMeetingId?: string | null
73181
73193
  startDate: Date | string
73182
73194
  endDate: Date | string
@@ -74430,8 +74442,8 @@ export namespace Prisma {
74430
74442
  updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
74431
74443
  type?: EnumClientInterviewTypeFieldUpdateOperationsInput | $Enums.ClientInterviewType
74432
74444
  interviewRoleDescription?: NullableStringFieldUpdateOperationsInput | string | null
74433
- calComBookingId?: IntFieldUpdateOperationsInput | number
74434
- calComBookingUid?: StringFieldUpdateOperationsInput | string
74445
+ calComBookingId?: NullableIntFieldUpdateOperationsInput | number | null
74446
+ calComBookingUid?: NullableStringFieldUpdateOperationsInput | string | null
74435
74447
  calComDailyMeetingId?: NullableStringFieldUpdateOperationsInput | string | null
74436
74448
  startDate?: DateTimeFieldUpdateOperationsInput | Date | string
74437
74449
  endDate?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -74462,8 +74474,8 @@ export namespace Prisma {
74462
74474
  type?: EnumClientInterviewTypeFieldUpdateOperationsInput | $Enums.ClientInterviewType
74463
74475
  builderId?: StringFieldUpdateOperationsInput | string
74464
74476
  interviewRoleDescription?: NullableStringFieldUpdateOperationsInput | string | null
74465
- calComBookingId?: IntFieldUpdateOperationsInput | number
74466
- calComBookingUid?: StringFieldUpdateOperationsInput | string
74477
+ calComBookingId?: NullableIntFieldUpdateOperationsInput | number | null
74478
+ calComBookingUid?: NullableStringFieldUpdateOperationsInput | string | null
74467
74479
  calComDailyMeetingId?: NullableStringFieldUpdateOperationsInput | string | null
74468
74480
  startDate?: DateTimeFieldUpdateOperationsInput | Date | string
74469
74481
  endDate?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -74492,8 +74504,8 @@ export namespace Prisma {
74492
74504
  type?: EnumClientInterviewTypeFieldUpdateOperationsInput | $Enums.ClientInterviewType
74493
74505
  builderId?: StringFieldUpdateOperationsInput | string
74494
74506
  interviewRoleDescription?: NullableStringFieldUpdateOperationsInput | string | null
74495
- calComBookingId?: IntFieldUpdateOperationsInput | number
74496
- calComBookingUid?: StringFieldUpdateOperationsInput | string
74507
+ calComBookingId?: NullableIntFieldUpdateOperationsInput | number | null
74508
+ calComBookingUid?: NullableStringFieldUpdateOperationsInput | string | null
74497
74509
  calComDailyMeetingId?: NullableStringFieldUpdateOperationsInput | string | null
74498
74510
  startDate?: DateTimeFieldUpdateOperationsInput | Date | string
74499
74511
  endDate?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -74520,8 +74532,8 @@ export namespace Prisma {
74520
74532
  updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
74521
74533
  type?: EnumClientInterviewTypeFieldUpdateOperationsInput | $Enums.ClientInterviewType
74522
74534
  interviewRoleDescription?: NullableStringFieldUpdateOperationsInput | string | null
74523
- calComBookingId?: IntFieldUpdateOperationsInput | number
74524
- calComBookingUid?: StringFieldUpdateOperationsInput | string
74535
+ calComBookingId?: NullableIntFieldUpdateOperationsInput | number | null
74536
+ calComBookingUid?: NullableStringFieldUpdateOperationsInput | string | null
74525
74537
  calComDailyMeetingId?: NullableStringFieldUpdateOperationsInput | string | null
74526
74538
  startDate?: DateTimeFieldUpdateOperationsInput | Date | string
74527
74539
  endDate?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -74552,8 +74564,8 @@ export namespace Prisma {
74552
74564
  type?: EnumClientInterviewTypeFieldUpdateOperationsInput | $Enums.ClientInterviewType
74553
74565
  clientId?: StringFieldUpdateOperationsInput | string
74554
74566
  interviewRoleDescription?: NullableStringFieldUpdateOperationsInput | string | null
74555
- calComBookingId?: IntFieldUpdateOperationsInput | number
74556
- calComBookingUid?: StringFieldUpdateOperationsInput | string
74567
+ calComBookingId?: NullableIntFieldUpdateOperationsInput | number | null
74568
+ calComBookingUid?: NullableStringFieldUpdateOperationsInput | string | null
74557
74569
  calComDailyMeetingId?: NullableStringFieldUpdateOperationsInput | string | null
74558
74570
  startDate?: DateTimeFieldUpdateOperationsInput | Date | string
74559
74571
  endDate?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -74582,8 +74594,8 @@ export namespace Prisma {
74582
74594
  type?: EnumClientInterviewTypeFieldUpdateOperationsInput | $Enums.ClientInterviewType
74583
74595
  clientId?: StringFieldUpdateOperationsInput | string
74584
74596
  interviewRoleDescription?: NullableStringFieldUpdateOperationsInput | string | null
74585
- calComBookingId?: IntFieldUpdateOperationsInput | number
74586
- calComBookingUid?: StringFieldUpdateOperationsInput | string
74597
+ calComBookingId?: NullableIntFieldUpdateOperationsInput | number | null
74598
+ calComBookingUid?: NullableStringFieldUpdateOperationsInput | string | null
74587
74599
  calComDailyMeetingId?: NullableStringFieldUpdateOperationsInput | string | null
74588
74600
  startDate?: DateTimeFieldUpdateOperationsInput | Date | string
74589
74601
  endDate?: DateTimeFieldUpdateOperationsInput | Date | string