telescope-prisma-client 0.0.42 → 0.0.48

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.
@@ -107,6 +107,7 @@ exports.Prisma.TransactionIsolationLevel = makeStrictEnum({
107
107
 
108
108
  exports.Prisma.UserScalarFieldEnum = {
109
109
  id: 'id',
110
+ old_user_id: 'old_user_id',
110
111
  is_nlp_icp_enabled: 'is_nlp_icp_enabled',
111
112
  is_linkedin_outreach_enabled: 'is_linkedin_outreach_enabled',
112
113
  first_name: 'first_name',
@@ -407,6 +408,7 @@ exports.Prisma.NullsOrder = {
407
408
 
408
409
  exports.Prisma.UserOrderByRelevanceFieldEnum = {
409
410
  id: 'id',
411
+ old_user_id: 'old_user_id',
410
412
  first_name: 'first_name',
411
413
  last_name: 'last_name',
412
414
  email: 'email',
@@ -218,6 +218,7 @@ export type UserPayload<ExtArgs extends $Extensions.Args = $Extensions.DefaultAr
218
218
  }
219
219
  scalars: $Extensions.GetResult<{
220
220
  id: string
221
+ old_user_id: string | null
221
222
  is_nlp_icp_enabled: boolean | null
222
223
  is_linkedin_outreach_enabled: boolean | null
223
224
  first_name: string | null
@@ -3517,6 +3518,7 @@ export namespace Prisma {
3517
3518
 
3518
3519
  export type UserMinAggregateOutputType = {
3519
3520
  id: string | null
3521
+ old_user_id: string | null
3520
3522
  is_nlp_icp_enabled: boolean | null
3521
3523
  is_linkedin_outreach_enabled: boolean | null
3522
3524
  first_name: string | null
@@ -3536,6 +3538,7 @@ export namespace Prisma {
3536
3538
 
3537
3539
  export type UserMaxAggregateOutputType = {
3538
3540
  id: string | null
3541
+ old_user_id: string | null
3539
3542
  is_nlp_icp_enabled: boolean | null
3540
3543
  is_linkedin_outreach_enabled: boolean | null
3541
3544
  first_name: string | null
@@ -3555,6 +3558,7 @@ export namespace Prisma {
3555
3558
 
3556
3559
  export type UserCountAggregateOutputType = {
3557
3560
  id: number
3561
+ old_user_id: number
3558
3562
  is_nlp_icp_enabled: number
3559
3563
  is_linkedin_outreach_enabled: number
3560
3564
  first_name: number
@@ -3576,6 +3580,7 @@ export namespace Prisma {
3576
3580
 
3577
3581
  export type UserMinAggregateInputType = {
3578
3582
  id?: true
3583
+ old_user_id?: true
3579
3584
  is_nlp_icp_enabled?: true
3580
3585
  is_linkedin_outreach_enabled?: true
3581
3586
  first_name?: true
@@ -3595,6 +3600,7 @@ export namespace Prisma {
3595
3600
 
3596
3601
  export type UserMaxAggregateInputType = {
3597
3602
  id?: true
3603
+ old_user_id?: true
3598
3604
  is_nlp_icp_enabled?: true
3599
3605
  is_linkedin_outreach_enabled?: true
3600
3606
  first_name?: true
@@ -3614,6 +3620,7 @@ export namespace Prisma {
3614
3620
 
3615
3621
  export type UserCountAggregateInputType = {
3616
3622
  id?: true
3623
+ old_user_id?: true
3617
3624
  is_nlp_icp_enabled?: true
3618
3625
  is_linkedin_outreach_enabled?: true
3619
3626
  first_name?: true
@@ -3707,6 +3714,7 @@ export namespace Prisma {
3707
3714
 
3708
3715
  export type UserGroupByOutputType = {
3709
3716
  id: string
3717
+ old_user_id: string | null
3710
3718
  is_nlp_icp_enabled: boolean | null
3711
3719
  is_linkedin_outreach_enabled: boolean | null
3712
3720
  first_name: string | null
@@ -3743,6 +3751,7 @@ export namespace Prisma {
3743
3751
 
3744
3752
  export type UserSelect<ExtArgs extends $Extensions.Args = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
3745
3753
  id?: boolean
3754
+ old_user_id?: boolean
3746
3755
  is_nlp_icp_enabled?: boolean
3747
3756
  is_linkedin_outreach_enabled?: boolean
3748
3757
  first_name?: boolean
@@ -3774,6 +3783,7 @@ export namespace Prisma {
3774
3783
 
3775
3784
  export type UserSelectScalar = {
3776
3785
  id?: boolean
3786
+ old_user_id?: boolean
3777
3787
  is_nlp_icp_enabled?: boolean
3778
3788
  is_linkedin_outreach_enabled?: boolean
3779
3789
  first_name?: boolean
@@ -19944,6 +19954,7 @@ export namespace Prisma {
19944
19954
 
19945
19955
  export const UserScalarFieldEnum: {
19946
19956
  id: 'id',
19957
+ old_user_id: 'old_user_id',
19947
19958
  is_nlp_icp_enabled: 'is_nlp_icp_enabled',
19948
19959
  is_linkedin_outreach_enabled: 'is_linkedin_outreach_enabled',
19949
19960
  first_name: 'first_name',
@@ -20304,6 +20315,7 @@ export namespace Prisma {
20304
20315
 
20305
20316
  export const UserOrderByRelevanceFieldEnum: {
20306
20317
  id: 'id',
20318
+ old_user_id: 'old_user_id',
20307
20319
  first_name: 'first_name',
20308
20320
  last_name: 'last_name',
20309
20321
  email: 'email',
@@ -20545,6 +20557,7 @@ export namespace Prisma {
20545
20557
  OR?: Enumerable<UserWhereInput>
20546
20558
  NOT?: Enumerable<UserWhereInput>
20547
20559
  id?: StringFilter | string
20560
+ old_user_id?: StringNullableFilter | string | null
20548
20561
  is_nlp_icp_enabled?: BoolNullableFilter | boolean | null
20549
20562
  is_linkedin_outreach_enabled?: BoolNullableFilter | boolean | null
20550
20563
  first_name?: StringNullableFilter | string | null
@@ -20575,6 +20588,7 @@ export namespace Prisma {
20575
20588
 
20576
20589
  export type UserOrderByWithRelationAndSearchRelevanceInput = {
20577
20590
  id?: SortOrder
20591
+ old_user_id?: SortOrderInput | SortOrder
20578
20592
  is_nlp_icp_enabled?: SortOrderInput | SortOrder
20579
20593
  is_linkedin_outreach_enabled?: SortOrderInput | SortOrder
20580
20594
  first_name?: SortOrderInput | SortOrder
@@ -20610,6 +20624,7 @@ export namespace Prisma {
20610
20624
 
20611
20625
  export type UserOrderByWithAggregationInput = {
20612
20626
  id?: SortOrder
20627
+ old_user_id?: SortOrderInput | SortOrder
20613
20628
  is_nlp_icp_enabled?: SortOrderInput | SortOrder
20614
20629
  is_linkedin_outreach_enabled?: SortOrderInput | SortOrder
20615
20630
  first_name?: SortOrderInput | SortOrder
@@ -20635,6 +20650,7 @@ export namespace Prisma {
20635
20650
  OR?: Enumerable<UserScalarWhereWithAggregatesInput>
20636
20651
  NOT?: Enumerable<UserScalarWhereWithAggregatesInput>
20637
20652
  id?: StringWithAggregatesFilter | string
20653
+ old_user_id?: StringNullableWithAggregatesFilter | string | null
20638
20654
  is_nlp_icp_enabled?: BoolNullableWithAggregatesFilter | boolean | null
20639
20655
  is_linkedin_outreach_enabled?: BoolNullableWithAggregatesFilter | boolean | null
20640
20656
  first_name?: StringNullableWithAggregatesFilter | string | null
@@ -22034,6 +22050,7 @@ export namespace Prisma {
22034
22050
 
22035
22051
  export type UserCreateInput = {
22036
22052
  id: string
22053
+ old_user_id?: string | null
22037
22054
  is_nlp_icp_enabled?: boolean | null
22038
22055
  is_linkedin_outreach_enabled?: boolean | null
22039
22056
  first_name?: string | null
@@ -22064,6 +22081,7 @@ export namespace Prisma {
22064
22081
 
22065
22082
  export type UserUncheckedCreateInput = {
22066
22083
  id: string
22084
+ old_user_id?: string | null
22067
22085
  is_nlp_icp_enabled?: boolean | null
22068
22086
  is_linkedin_outreach_enabled?: boolean | null
22069
22087
  first_name?: string | null
@@ -22094,6 +22112,7 @@ export namespace Prisma {
22094
22112
 
22095
22113
  export type UserUpdateInput = {
22096
22114
  id?: StringFieldUpdateOperationsInput | string
22115
+ old_user_id?: NullableStringFieldUpdateOperationsInput | string | null
22097
22116
  is_nlp_icp_enabled?: NullableBoolFieldUpdateOperationsInput | boolean | null
22098
22117
  is_linkedin_outreach_enabled?: NullableBoolFieldUpdateOperationsInput | boolean | null
22099
22118
  first_name?: NullableStringFieldUpdateOperationsInput | string | null
@@ -22124,6 +22143,7 @@ export namespace Prisma {
22124
22143
 
22125
22144
  export type UserUncheckedUpdateInput = {
22126
22145
  id?: StringFieldUpdateOperationsInput | string
22146
+ old_user_id?: NullableStringFieldUpdateOperationsInput | string | null
22127
22147
  is_nlp_icp_enabled?: NullableBoolFieldUpdateOperationsInput | boolean | null
22128
22148
  is_linkedin_outreach_enabled?: NullableBoolFieldUpdateOperationsInput | boolean | null
22129
22149
  first_name?: NullableStringFieldUpdateOperationsInput | string | null
@@ -22154,6 +22174,7 @@ export namespace Prisma {
22154
22174
 
22155
22175
  export type UserCreateManyInput = {
22156
22176
  id: string
22177
+ old_user_id?: string | null
22157
22178
  is_nlp_icp_enabled?: boolean | null
22158
22179
  is_linkedin_outreach_enabled?: boolean | null
22159
22180
  first_name?: string | null
@@ -22173,6 +22194,7 @@ export namespace Prisma {
22173
22194
 
22174
22195
  export type UserUpdateManyMutationInput = {
22175
22196
  id?: StringFieldUpdateOperationsInput | string
22197
+ old_user_id?: NullableStringFieldUpdateOperationsInput | string | null
22176
22198
  is_nlp_icp_enabled?: NullableBoolFieldUpdateOperationsInput | boolean | null
22177
22199
  is_linkedin_outreach_enabled?: NullableBoolFieldUpdateOperationsInput | boolean | null
22178
22200
  first_name?: NullableStringFieldUpdateOperationsInput | string | null
@@ -22192,6 +22214,7 @@ export namespace Prisma {
22192
22214
 
22193
22215
  export type UserUncheckedUpdateManyInput = {
22194
22216
  id?: StringFieldUpdateOperationsInput | string
22217
+ old_user_id?: NullableStringFieldUpdateOperationsInput | string | null
22195
22218
  is_nlp_icp_enabled?: NullableBoolFieldUpdateOperationsInput | boolean | null
22196
22219
  is_linkedin_outreach_enabled?: NullableBoolFieldUpdateOperationsInput | boolean | null
22197
22220
  first_name?: NullableStringFieldUpdateOperationsInput | string | null
@@ -24100,11 +24123,6 @@ export namespace Prisma {
24100
24123
  not?: NestedStringFilter | string
24101
24124
  }
24102
24125
 
24103
- export type BoolNullableFilter = {
24104
- equals?: boolean | null
24105
- not?: NestedBoolNullableFilter | boolean | null
24106
- }
24107
-
24108
24126
  export type StringNullableFilter = {
24109
24127
  equals?: string | null
24110
24128
  in?: Enumerable<string> | string | null
@@ -24121,6 +24139,11 @@ export namespace Prisma {
24121
24139
  not?: NestedStringNullableFilter | string | null
24122
24140
  }
24123
24141
 
24142
+ export type BoolNullableFilter = {
24143
+ equals?: boolean | null
24144
+ not?: NestedBoolNullableFilter | boolean | null
24145
+ }
24146
+
24124
24147
  export type DateTimeNullableFilter = {
24125
24148
  equals?: Date | string | null
24126
24149
  in?: Enumerable<Date> | Enumerable<string> | Date | string | null
@@ -24255,6 +24278,7 @@ export namespace Prisma {
24255
24278
 
24256
24279
  export type UserCountOrderByAggregateInput = {
24257
24280
  id?: SortOrder
24281
+ old_user_id?: SortOrder
24258
24282
  is_nlp_icp_enabled?: SortOrder
24259
24283
  is_linkedin_outreach_enabled?: SortOrder
24260
24284
  first_name?: SortOrder
@@ -24274,6 +24298,7 @@ export namespace Prisma {
24274
24298
 
24275
24299
  export type UserMaxOrderByAggregateInput = {
24276
24300
  id?: SortOrder
24301
+ old_user_id?: SortOrder
24277
24302
  is_nlp_icp_enabled?: SortOrder
24278
24303
  is_linkedin_outreach_enabled?: SortOrder
24279
24304
  first_name?: SortOrder
@@ -24293,6 +24318,7 @@ export namespace Prisma {
24293
24318
 
24294
24319
  export type UserMinOrderByAggregateInput = {
24295
24320
  id?: SortOrder
24321
+ old_user_id?: SortOrder
24296
24322
  is_nlp_icp_enabled?: SortOrder
24297
24323
  is_linkedin_outreach_enabled?: SortOrder
24298
24324
  first_name?: SortOrder
@@ -24329,14 +24355,6 @@ export namespace Prisma {
24329
24355
  _max?: NestedStringFilter
24330
24356
  }
24331
24357
 
24332
- export type BoolNullableWithAggregatesFilter = {
24333
- equals?: boolean | null
24334
- not?: NestedBoolNullableWithAggregatesFilter | boolean | null
24335
- _count?: NestedIntNullableFilter
24336
- _min?: NestedBoolNullableFilter
24337
- _max?: NestedBoolNullableFilter
24338
- }
24339
-
24340
24358
  export type StringNullableWithAggregatesFilter = {
24341
24359
  equals?: string | null
24342
24360
  in?: Enumerable<string> | string | null
@@ -24356,6 +24374,14 @@ export namespace Prisma {
24356
24374
  _max?: NestedStringNullableFilter
24357
24375
  }
24358
24376
 
24377
+ export type BoolNullableWithAggregatesFilter = {
24378
+ equals?: boolean | null
24379
+ not?: NestedBoolNullableWithAggregatesFilter | boolean | null
24380
+ _count?: NestedIntNullableFilter
24381
+ _min?: NestedBoolNullableFilter
24382
+ _max?: NestedBoolNullableFilter
24383
+ }
24384
+
24359
24385
  export type DateTimeNullableWithAggregatesFilter = {
24360
24386
  equals?: Date | string | null
24361
24387
  in?: Enumerable<Date> | Enumerable<string> | Date | string | null
@@ -25904,14 +25930,14 @@ export namespace Prisma {
25904
25930
  set?: string
25905
25931
  }
25906
25932
 
25907
- export type NullableBoolFieldUpdateOperationsInput = {
25908
- set?: boolean | null
25909
- }
25910
-
25911
25933
  export type NullableStringFieldUpdateOperationsInput = {
25912
25934
  set?: string | null
25913
25935
  }
25914
25936
 
25937
+ export type NullableBoolFieldUpdateOperationsInput = {
25938
+ set?: boolean | null
25939
+ }
25940
+
25915
25941
  export type NullableDateTimeFieldUpdateOperationsInput = {
25916
25942
  set?: Date | string | null
25917
25943
  }
@@ -28146,11 +28172,6 @@ export namespace Prisma {
28146
28172
  not?: NestedStringFilter | string
28147
28173
  }
28148
28174
 
28149
- export type NestedBoolNullableFilter = {
28150
- equals?: boolean | null
28151
- not?: NestedBoolNullableFilter | boolean | null
28152
- }
28153
-
28154
28175
  export type NestedStringNullableFilter = {
28155
28176
  equals?: string | null
28156
28177
  in?: Enumerable<string> | string | null
@@ -28166,6 +28187,11 @@ export namespace Prisma {
28166
28187
  not?: NestedStringNullableFilter | string | null
28167
28188
  }
28168
28189
 
28190
+ export type NestedBoolNullableFilter = {
28191
+ equals?: boolean | null
28192
+ not?: NestedBoolNullableFilter | boolean | null
28193
+ }
28194
+
28169
28195
  export type NestedDateTimeNullableFilter = {
28170
28196
  equals?: Date | string | null
28171
28197
  in?: Enumerable<Date> | Enumerable<string> | Date | string | null
@@ -28206,25 +28232,6 @@ export namespace Prisma {
28206
28232
  not?: NestedIntFilter | number
28207
28233
  }
28208
28234
 
28209
- export type NestedBoolNullableWithAggregatesFilter = {
28210
- equals?: boolean | null
28211
- not?: NestedBoolNullableWithAggregatesFilter | boolean | null
28212
- _count?: NestedIntNullableFilter
28213
- _min?: NestedBoolNullableFilter
28214
- _max?: NestedBoolNullableFilter
28215
- }
28216
-
28217
- export type NestedIntNullableFilter = {
28218
- equals?: number | null
28219
- in?: Enumerable<number> | number | null
28220
- notIn?: Enumerable<number> | number | null
28221
- lt?: number
28222
- lte?: number
28223
- gt?: number
28224
- gte?: number
28225
- not?: NestedIntNullableFilter | number | null
28226
- }
28227
-
28228
28235
  export type NestedStringNullableWithAggregatesFilter = {
28229
28236
  equals?: string | null
28230
28237
  in?: Enumerable<string> | string | null
@@ -28243,6 +28250,25 @@ export namespace Prisma {
28243
28250
  _max?: NestedStringNullableFilter
28244
28251
  }
28245
28252
 
28253
+ export type NestedIntNullableFilter = {
28254
+ equals?: number | null
28255
+ in?: Enumerable<number> | number | null
28256
+ notIn?: Enumerable<number> | number | null
28257
+ lt?: number
28258
+ lte?: number
28259
+ gt?: number
28260
+ gte?: number
28261
+ not?: NestedIntNullableFilter | number | null
28262
+ }
28263
+
28264
+ export type NestedBoolNullableWithAggregatesFilter = {
28265
+ equals?: boolean | null
28266
+ not?: NestedBoolNullableWithAggregatesFilter | boolean | null
28267
+ _count?: NestedIntNullableFilter
28268
+ _min?: NestedBoolNullableFilter
28269
+ _max?: NestedBoolNullableFilter
28270
+ }
28271
+
28246
28272
  export type NestedDateTimeNullableWithAggregatesFilter = {
28247
28273
  equals?: Date | string | null
28248
28274
  in?: Enumerable<Date> | Enumerable<string> | Date | string | null
@@ -29556,6 +29582,7 @@ export namespace Prisma {
29556
29582
 
29557
29583
  export type UserCreateWithoutMerge_connectionInput = {
29558
29584
  id: string
29585
+ old_user_id?: string | null
29559
29586
  is_nlp_icp_enabled?: boolean | null
29560
29587
  is_linkedin_outreach_enabled?: boolean | null
29561
29588
  first_name?: string | null
@@ -29585,6 +29612,7 @@ export namespace Prisma {
29585
29612
 
29586
29613
  export type UserUncheckedCreateWithoutMerge_connectionInput = {
29587
29614
  id: string
29615
+ old_user_id?: string | null
29588
29616
  is_nlp_icp_enabled?: boolean | null
29589
29617
  is_linkedin_outreach_enabled?: boolean | null
29590
29618
  first_name?: string | null
@@ -29768,6 +29796,7 @@ export namespace Prisma {
29768
29796
 
29769
29797
  export type UserUpdateWithoutMerge_connectionInput = {
29770
29798
  id?: StringFieldUpdateOperationsInput | string
29799
+ old_user_id?: NullableStringFieldUpdateOperationsInput | string | null
29771
29800
  is_nlp_icp_enabled?: NullableBoolFieldUpdateOperationsInput | boolean | null
29772
29801
  is_linkedin_outreach_enabled?: NullableBoolFieldUpdateOperationsInput | boolean | null
29773
29802
  first_name?: NullableStringFieldUpdateOperationsInput | string | null
@@ -29797,6 +29826,7 @@ export namespace Prisma {
29797
29826
 
29798
29827
  export type UserUncheckedUpdateWithoutMerge_connectionInput = {
29799
29828
  id?: StringFieldUpdateOperationsInput | string
29829
+ old_user_id?: NullableStringFieldUpdateOperationsInput | string | null
29800
29830
  is_nlp_icp_enabled?: NullableBoolFieldUpdateOperationsInput | boolean | null
29801
29831
  is_linkedin_outreach_enabled?: NullableBoolFieldUpdateOperationsInput | boolean | null
29802
29832
  first_name?: NullableStringFieldUpdateOperationsInput | string | null
@@ -31142,6 +31172,7 @@ export namespace Prisma {
31142
31172
 
31143
31173
  export type UserCreateWithoutCampaignsInput = {
31144
31174
  id: string
31175
+ old_user_id?: string | null
31145
31176
  is_nlp_icp_enabled?: boolean | null
31146
31177
  is_linkedin_outreach_enabled?: boolean | null
31147
31178
  first_name?: string | null
@@ -31171,6 +31202,7 @@ export namespace Prisma {
31171
31202
 
31172
31203
  export type UserUncheckedCreateWithoutCampaignsInput = {
31173
31204
  id: string
31205
+ old_user_id?: string | null
31174
31206
  is_nlp_icp_enabled?: boolean | null
31175
31207
  is_linkedin_outreach_enabled?: boolean | null
31176
31208
  first_name?: string | null
@@ -31564,6 +31596,7 @@ export namespace Prisma {
31564
31596
 
31565
31597
  export type UserUpdateWithoutCampaignsInput = {
31566
31598
  id?: StringFieldUpdateOperationsInput | string
31599
+ old_user_id?: NullableStringFieldUpdateOperationsInput | string | null
31567
31600
  is_nlp_icp_enabled?: NullableBoolFieldUpdateOperationsInput | boolean | null
31568
31601
  is_linkedin_outreach_enabled?: NullableBoolFieldUpdateOperationsInput | boolean | null
31569
31602
  first_name?: NullableStringFieldUpdateOperationsInput | string | null
@@ -31593,6 +31626,7 @@ export namespace Prisma {
31593
31626
 
31594
31627
  export type UserUncheckedUpdateWithoutCampaignsInput = {
31595
31628
  id?: StringFieldUpdateOperationsInput | string
31629
+ old_user_id?: NullableStringFieldUpdateOperationsInput | string | null
31596
31630
  is_nlp_icp_enabled?: NullableBoolFieldUpdateOperationsInput | boolean | null
31597
31631
  is_linkedin_outreach_enabled?: NullableBoolFieldUpdateOperationsInput | boolean | null
31598
31632
  first_name?: NullableStringFieldUpdateOperationsInput | string | null
@@ -31939,6 +31973,7 @@ export namespace Prisma {
31939
31973
 
31940
31974
  export type UserCreateWithoutProspectsInput = {
31941
31975
  id: string
31976
+ old_user_id?: string | null
31942
31977
  is_nlp_icp_enabled?: boolean | null
31943
31978
  is_linkedin_outreach_enabled?: boolean | null
31944
31979
  first_name?: string | null
@@ -31968,6 +32003,7 @@ export namespace Prisma {
31968
32003
 
31969
32004
  export type UserUncheckedCreateWithoutProspectsInput = {
31970
32005
  id: string
32006
+ old_user_id?: string | null
31971
32007
  is_nlp_icp_enabled?: boolean | null
31972
32008
  is_linkedin_outreach_enabled?: boolean | null
31973
32009
  first_name?: string | null
@@ -32354,6 +32390,7 @@ export namespace Prisma {
32354
32390
 
32355
32391
  export type UserUpdateWithoutProspectsInput = {
32356
32392
  id?: StringFieldUpdateOperationsInput | string
32393
+ old_user_id?: NullableStringFieldUpdateOperationsInput | string | null
32357
32394
  is_nlp_icp_enabled?: NullableBoolFieldUpdateOperationsInput | boolean | null
32358
32395
  is_linkedin_outreach_enabled?: NullableBoolFieldUpdateOperationsInput | boolean | null
32359
32396
  first_name?: NullableStringFieldUpdateOperationsInput | string | null
@@ -32383,6 +32420,7 @@ export namespace Prisma {
32383
32420
 
32384
32421
  export type UserUncheckedUpdateWithoutProspectsInput = {
32385
32422
  id?: StringFieldUpdateOperationsInput | string
32423
+ old_user_id?: NullableStringFieldUpdateOperationsInput | string | null
32386
32424
  is_nlp_icp_enabled?: NullableBoolFieldUpdateOperationsInput | boolean | null
32387
32425
  is_linkedin_outreach_enabled?: NullableBoolFieldUpdateOperationsInput | boolean | null
32388
32426
  first_name?: NullableStringFieldUpdateOperationsInput | string | null
@@ -32540,6 +32578,7 @@ export namespace Prisma {
32540
32578
 
32541
32579
  export type UserCreateWithoutCampaign_log_eventsInput = {
32542
32580
  id: string
32581
+ old_user_id?: string | null
32543
32582
  is_nlp_icp_enabled?: boolean | null
32544
32583
  is_linkedin_outreach_enabled?: boolean | null
32545
32584
  first_name?: string | null
@@ -32569,6 +32608,7 @@ export namespace Prisma {
32569
32608
 
32570
32609
  export type UserUncheckedCreateWithoutCampaign_log_eventsInput = {
32571
32610
  id: string
32611
+ old_user_id?: string | null
32572
32612
  is_nlp_icp_enabled?: boolean | null
32573
32613
  is_linkedin_outreach_enabled?: boolean | null
32574
32614
  first_name?: string | null
@@ -32802,6 +32842,7 @@ export namespace Prisma {
32802
32842
 
32803
32843
  export type UserUpdateWithoutCampaign_log_eventsInput = {
32804
32844
  id?: StringFieldUpdateOperationsInput | string
32845
+ old_user_id?: NullableStringFieldUpdateOperationsInput | string | null
32805
32846
  is_nlp_icp_enabled?: NullableBoolFieldUpdateOperationsInput | boolean | null
32806
32847
  is_linkedin_outreach_enabled?: NullableBoolFieldUpdateOperationsInput | boolean | null
32807
32848
  first_name?: NullableStringFieldUpdateOperationsInput | string | null
@@ -32831,6 +32872,7 @@ export namespace Prisma {
32831
32872
 
32832
32873
  export type UserUncheckedUpdateWithoutCampaign_log_eventsInput = {
32833
32874
  id?: StringFieldUpdateOperationsInput | string
32875
+ old_user_id?: NullableStringFieldUpdateOperationsInput | string | null
32834
32876
  is_nlp_icp_enabled?: NullableBoolFieldUpdateOperationsInput | boolean | null
32835
32877
  is_linkedin_outreach_enabled?: NullableBoolFieldUpdateOperationsInput | boolean | null
32836
32878
  first_name?: NullableStringFieldUpdateOperationsInput | string | null
@@ -33340,6 +33382,7 @@ export namespace Prisma {
33340
33382
 
33341
33383
  export type UserCreateWithoutRecommendationsInput = {
33342
33384
  id: string
33385
+ old_user_id?: string | null
33343
33386
  is_nlp_icp_enabled?: boolean | null
33344
33387
  is_linkedin_outreach_enabled?: boolean | null
33345
33388
  first_name?: string | null
@@ -33369,6 +33412,7 @@ export namespace Prisma {
33369
33412
 
33370
33413
  export type UserUncheckedCreateWithoutRecommendationsInput = {
33371
33414
  id: string
33415
+ old_user_id?: string | null
33372
33416
  is_nlp_icp_enabled?: boolean | null
33373
33417
  is_linkedin_outreach_enabled?: boolean | null
33374
33418
  first_name?: string | null
@@ -33655,6 +33699,7 @@ export namespace Prisma {
33655
33699
 
33656
33700
  export type UserUpdateWithoutRecommendationsInput = {
33657
33701
  id?: StringFieldUpdateOperationsInput | string
33702
+ old_user_id?: NullableStringFieldUpdateOperationsInput | string | null
33658
33703
  is_nlp_icp_enabled?: NullableBoolFieldUpdateOperationsInput | boolean | null
33659
33704
  is_linkedin_outreach_enabled?: NullableBoolFieldUpdateOperationsInput | boolean | null
33660
33705
  first_name?: NullableStringFieldUpdateOperationsInput | string | null
@@ -33684,6 +33729,7 @@ export namespace Prisma {
33684
33729
 
33685
33730
  export type UserUncheckedUpdateWithoutRecommendationsInput = {
33686
33731
  id?: StringFieldUpdateOperationsInput | string
33732
+ old_user_id?: NullableStringFieldUpdateOperationsInput | string | null
33687
33733
  is_nlp_icp_enabled?: NullableBoolFieldUpdateOperationsInput | boolean | null
33688
33734
  is_linkedin_outreach_enabled?: NullableBoolFieldUpdateOperationsInput | boolean | null
33689
33735
  first_name?: NullableStringFieldUpdateOperationsInput | string | null
@@ -33787,6 +33833,7 @@ export namespace Prisma {
33787
33833
 
33788
33834
  export type UserCreateWithoutIdeal_customer_profilesInput = {
33789
33835
  id: string
33836
+ old_user_id?: string | null
33790
33837
  is_nlp_icp_enabled?: boolean | null
33791
33838
  is_linkedin_outreach_enabled?: boolean | null
33792
33839
  first_name?: string | null
@@ -33816,6 +33863,7 @@ export namespace Prisma {
33816
33863
 
33817
33864
  export type UserUncheckedCreateWithoutIdeal_customer_profilesInput = {
33818
33865
  id: string
33866
+ old_user_id?: string | null
33819
33867
  is_nlp_icp_enabled?: boolean | null
33820
33868
  is_linkedin_outreach_enabled?: boolean | null
33821
33869
  first_name?: string | null
@@ -33993,6 +34041,7 @@ export namespace Prisma {
33993
34041
 
33994
34042
  export type UserUpdateWithoutIdeal_customer_profilesInput = {
33995
34043
  id?: StringFieldUpdateOperationsInput | string
34044
+ old_user_id?: NullableStringFieldUpdateOperationsInput | string | null
33996
34045
  is_nlp_icp_enabled?: NullableBoolFieldUpdateOperationsInput | boolean | null
33997
34046
  is_linkedin_outreach_enabled?: NullableBoolFieldUpdateOperationsInput | boolean | null
33998
34047
  first_name?: NullableStringFieldUpdateOperationsInput | string | null
@@ -34022,6 +34071,7 @@ export namespace Prisma {
34022
34071
 
34023
34072
  export type UserUncheckedUpdateWithoutIdeal_customer_profilesInput = {
34024
34073
  id?: StringFieldUpdateOperationsInput | string
34074
+ old_user_id?: NullableStringFieldUpdateOperationsInput | string | null
34025
34075
  is_nlp_icp_enabled?: NullableBoolFieldUpdateOperationsInput | boolean | null
34026
34076
  is_linkedin_outreach_enabled?: NullableBoolFieldUpdateOperationsInput | boolean | null
34027
34077
  first_name?: NullableStringFieldUpdateOperationsInput | string | null
@@ -34067,6 +34117,7 @@ export namespace Prisma {
34067
34117
 
34068
34118
  export type UserCreateWithoutConnected_mailboxesInput = {
34069
34119
  id: string
34120
+ old_user_id?: string | null
34070
34121
  is_nlp_icp_enabled?: boolean | null
34071
34122
  is_linkedin_outreach_enabled?: boolean | null
34072
34123
  first_name?: string | null
@@ -34096,6 +34147,7 @@ export namespace Prisma {
34096
34147
 
34097
34148
  export type UserUncheckedCreateWithoutConnected_mailboxesInput = {
34098
34149
  id: string
34150
+ old_user_id?: string | null
34099
34151
  is_nlp_icp_enabled?: boolean | null
34100
34152
  is_linkedin_outreach_enabled?: boolean | null
34101
34153
  first_name?: string | null
@@ -34191,6 +34243,7 @@ export namespace Prisma {
34191
34243
 
34192
34244
  export type UserUpdateWithoutConnected_mailboxesInput = {
34193
34245
  id?: StringFieldUpdateOperationsInput | string
34246
+ old_user_id?: NullableStringFieldUpdateOperationsInput | string | null
34194
34247
  is_nlp_icp_enabled?: NullableBoolFieldUpdateOperationsInput | boolean | null
34195
34248
  is_linkedin_outreach_enabled?: NullableBoolFieldUpdateOperationsInput | boolean | null
34196
34249
  first_name?: NullableStringFieldUpdateOperationsInput | string | null
@@ -34220,6 +34273,7 @@ export namespace Prisma {
34220
34273
 
34221
34274
  export type UserUncheckedUpdateWithoutConnected_mailboxesInput = {
34222
34275
  id?: StringFieldUpdateOperationsInput | string
34276
+ old_user_id?: NullableStringFieldUpdateOperationsInput | string | null
34223
34277
  is_nlp_icp_enabled?: NullableBoolFieldUpdateOperationsInput | boolean | null
34224
34278
  is_linkedin_outreach_enabled?: NullableBoolFieldUpdateOperationsInput | boolean | null
34225
34279
  first_name?: NullableStringFieldUpdateOperationsInput | string | null
@@ -34307,6 +34361,7 @@ export namespace Prisma {
34307
34361
 
34308
34362
  export type UserCreateWithoutSequencesInput = {
34309
34363
  id: string
34364
+ old_user_id?: string | null
34310
34365
  is_nlp_icp_enabled?: boolean | null
34311
34366
  is_linkedin_outreach_enabled?: boolean | null
34312
34367
  first_name?: string | null
@@ -34336,6 +34391,7 @@ export namespace Prisma {
34336
34391
 
34337
34392
  export type UserUncheckedCreateWithoutSequencesInput = {
34338
34393
  id: string
34394
+ old_user_id?: string | null
34339
34395
  is_nlp_icp_enabled?: boolean | null
34340
34396
  is_linkedin_outreach_enabled?: boolean | null
34341
34397
  first_name?: string | null
@@ -34433,6 +34489,7 @@ export namespace Prisma {
34433
34489
 
34434
34490
  export type UserUpdateWithoutSequencesInput = {
34435
34491
  id?: StringFieldUpdateOperationsInput | string
34492
+ old_user_id?: NullableStringFieldUpdateOperationsInput | string | null
34436
34493
  is_nlp_icp_enabled?: NullableBoolFieldUpdateOperationsInput | boolean | null
34437
34494
  is_linkedin_outreach_enabled?: NullableBoolFieldUpdateOperationsInput | boolean | null
34438
34495
  first_name?: NullableStringFieldUpdateOperationsInput | string | null
@@ -34462,6 +34519,7 @@ export namespace Prisma {
34462
34519
 
34463
34520
  export type UserUncheckedUpdateWithoutSequencesInput = {
34464
34521
  id?: StringFieldUpdateOperationsInput | string
34522
+ old_user_id?: NullableStringFieldUpdateOperationsInput | string | null
34465
34523
  is_nlp_icp_enabled?: NullableBoolFieldUpdateOperationsInput | boolean | null
34466
34524
  is_linkedin_outreach_enabled?: NullableBoolFieldUpdateOperationsInput | boolean | null
34467
34525
  first_name?: NullableStringFieldUpdateOperationsInput | string | null
@@ -34605,6 +34663,7 @@ export namespace Prisma {
34605
34663
 
34606
34664
  export type UserCreateWithoutSequenceStepInput = {
34607
34665
  id: string
34666
+ old_user_id?: string | null
34608
34667
  is_nlp_icp_enabled?: boolean | null
34609
34668
  is_linkedin_outreach_enabled?: boolean | null
34610
34669
  first_name?: string | null
@@ -34634,6 +34693,7 @@ export namespace Prisma {
34634
34693
 
34635
34694
  export type UserUncheckedCreateWithoutSequenceStepInput = {
34636
34695
  id: string
34696
+ old_user_id?: string | null
34637
34697
  is_nlp_icp_enabled?: boolean | null
34638
34698
  is_linkedin_outreach_enabled?: boolean | null
34639
34699
  first_name?: string | null
@@ -34734,6 +34794,7 @@ export namespace Prisma {
34734
34794
 
34735
34795
  export type UserUpdateWithoutSequenceStepInput = {
34736
34796
  id?: StringFieldUpdateOperationsInput | string
34797
+ old_user_id?: NullableStringFieldUpdateOperationsInput | string | null
34737
34798
  is_nlp_icp_enabled?: NullableBoolFieldUpdateOperationsInput | boolean | null
34738
34799
  is_linkedin_outreach_enabled?: NullableBoolFieldUpdateOperationsInput | boolean | null
34739
34800
  first_name?: NullableStringFieldUpdateOperationsInput | string | null
@@ -34763,6 +34824,7 @@ export namespace Prisma {
34763
34824
 
34764
34825
  export type UserUncheckedUpdateWithoutSequenceStepInput = {
34765
34826
  id?: StringFieldUpdateOperationsInput | string
34827
+ old_user_id?: NullableStringFieldUpdateOperationsInput | string | null
34766
34828
  is_nlp_icp_enabled?: NullableBoolFieldUpdateOperationsInput | boolean | null
34767
34829
  is_linkedin_outreach_enabled?: NullableBoolFieldUpdateOperationsInput | boolean | null
34768
34830
  first_name?: NullableStringFieldUpdateOperationsInput | string | null
@@ -34908,6 +34970,7 @@ export namespace Prisma {
34908
34970
 
34909
34971
  export type UserCreateWithoutProspectSequenceStepInput = {
34910
34972
  id: string
34973
+ old_user_id?: string | null
34911
34974
  is_nlp_icp_enabled?: boolean | null
34912
34975
  is_linkedin_outreach_enabled?: boolean | null
34913
34976
  first_name?: string | null
@@ -34937,6 +35000,7 @@ export namespace Prisma {
34937
35000
 
34938
35001
  export type UserUncheckedCreateWithoutProspectSequenceStepInput = {
34939
35002
  id: string
35003
+ old_user_id?: string | null
34940
35004
  is_nlp_icp_enabled?: boolean | null
34941
35005
  is_linkedin_outreach_enabled?: boolean | null
34942
35006
  first_name?: string | null
@@ -35127,6 +35191,7 @@ export namespace Prisma {
35127
35191
 
35128
35192
  export type UserUpdateWithoutProspectSequenceStepInput = {
35129
35193
  id?: StringFieldUpdateOperationsInput | string
35194
+ old_user_id?: NullableStringFieldUpdateOperationsInput | string | null
35130
35195
  is_nlp_icp_enabled?: NullableBoolFieldUpdateOperationsInput | boolean | null
35131
35196
  is_linkedin_outreach_enabled?: NullableBoolFieldUpdateOperationsInput | boolean | null
35132
35197
  first_name?: NullableStringFieldUpdateOperationsInput | string | null
@@ -35156,6 +35221,7 @@ export namespace Prisma {
35156
35221
 
35157
35222
  export type UserUncheckedUpdateWithoutProspectSequenceStepInput = {
35158
35223
  id?: StringFieldUpdateOperationsInput | string
35224
+ old_user_id?: NullableStringFieldUpdateOperationsInput | string | null
35159
35225
  is_nlp_icp_enabled?: NullableBoolFieldUpdateOperationsInput | boolean | null
35160
35226
  is_linkedin_outreach_enabled?: NullableBoolFieldUpdateOperationsInput | boolean | null
35161
35227
  first_name?: NullableStringFieldUpdateOperationsInput | string | null
@@ -35371,6 +35437,7 @@ export namespace Prisma {
35371
35437
 
35372
35438
  export type UserCreateWithoutProspect_interaction_eventsInput = {
35373
35439
  id: string
35440
+ old_user_id?: string | null
35374
35441
  is_nlp_icp_enabled?: boolean | null
35375
35442
  is_linkedin_outreach_enabled?: boolean | null
35376
35443
  first_name?: string | null
@@ -35400,6 +35467,7 @@ export namespace Prisma {
35400
35467
 
35401
35468
  export type UserUncheckedCreateWithoutProspect_interaction_eventsInput = {
35402
35469
  id: string
35470
+ old_user_id?: string | null
35403
35471
  is_nlp_icp_enabled?: boolean | null
35404
35472
  is_linkedin_outreach_enabled?: boolean | null
35405
35473
  first_name?: string | null
@@ -35588,6 +35656,7 @@ export namespace Prisma {
35588
35656
 
35589
35657
  export type UserUpdateWithoutProspect_interaction_eventsInput = {
35590
35658
  id?: StringFieldUpdateOperationsInput | string
35659
+ old_user_id?: NullableStringFieldUpdateOperationsInput | string | null
35591
35660
  is_nlp_icp_enabled?: NullableBoolFieldUpdateOperationsInput | boolean | null
35592
35661
  is_linkedin_outreach_enabled?: NullableBoolFieldUpdateOperationsInput | boolean | null
35593
35662
  first_name?: NullableStringFieldUpdateOperationsInput | string | null
@@ -35617,6 +35686,7 @@ export namespace Prisma {
35617
35686
 
35618
35687
  export type UserUncheckedUpdateWithoutProspect_interaction_eventsInput = {
35619
35688
  id?: StringFieldUpdateOperationsInput | string
35689
+ old_user_id?: NullableStringFieldUpdateOperationsInput | string | null
35620
35690
  is_nlp_icp_enabled?: NullableBoolFieldUpdateOperationsInput | boolean | null
35621
35691
  is_linkedin_outreach_enabled?: NullableBoolFieldUpdateOperationsInput | boolean | null
35622
35692
  first_name?: NullableStringFieldUpdateOperationsInput | string | null