@creator.co/creatorco-prisma-client 1.0.57-alpha-fe4a8b1 → 1.0.57

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/index.d.ts CHANGED
@@ -64291,6 +64291,7 @@ export namespace Prisma {
64291
64291
  id: number | null
64292
64292
  event: string | null
64293
64293
  created: Date | null
64294
+ updatedAt: Date | null
64294
64295
  visitorIp: string | null
64295
64296
  urlPath: string | null
64296
64297
  revenue: number | null
@@ -64306,6 +64307,7 @@ export namespace Prisma {
64306
64307
  id: number | null
64307
64308
  event: string | null
64308
64309
  created: Date | null
64310
+ updatedAt: Date | null
64309
64311
  visitorIp: string | null
64310
64312
  urlPath: string | null
64311
64313
  revenue: number | null
@@ -64321,6 +64323,7 @@ export namespace Prisma {
64321
64323
  id: number
64322
64324
  event: number
64323
64325
  created: number
64326
+ updatedAt: number
64324
64327
  visitorIp: number
64325
64328
  urlPath: number
64326
64329
  revenue: number
@@ -64357,6 +64360,7 @@ export namespace Prisma {
64357
64360
  id?: true
64358
64361
  event?: true
64359
64362
  created?: true
64363
+ updatedAt?: true
64360
64364
  visitorIp?: true
64361
64365
  urlPath?: true
64362
64366
  revenue?: true
@@ -64372,6 +64376,7 @@ export namespace Prisma {
64372
64376
  id?: true
64373
64377
  event?: true
64374
64378
  created?: true
64379
+ updatedAt?: true
64375
64380
  visitorIp?: true
64376
64381
  urlPath?: true
64377
64382
  revenue?: true
@@ -64387,6 +64392,7 @@ export namespace Prisma {
64387
64392
  id?: true
64388
64393
  event?: true
64389
64394
  created?: true
64395
+ updatedAt?: true
64390
64396
  visitorIp?: true
64391
64397
  urlPath?: true
64392
64398
  revenue?: true
@@ -64490,6 +64496,7 @@ export namespace Prisma {
64490
64496
  id: number
64491
64497
  event: string
64492
64498
  created: Date
64499
+ updatedAt: Date | null
64493
64500
  visitorIp: string | null
64494
64501
  urlPath: string | null
64495
64502
  revenue: number | null
@@ -64525,6 +64532,7 @@ export namespace Prisma {
64525
64532
  id?: boolean
64526
64533
  event?: boolean
64527
64534
  created?: boolean
64535
+ updatedAt?: boolean
64528
64536
  visitorIp?: boolean
64529
64537
  urlPath?: boolean
64530
64538
  revenue?: boolean
@@ -64543,6 +64551,7 @@ export namespace Prisma {
64543
64551
  id?: boolean
64544
64552
  event?: boolean
64545
64553
  created?: boolean
64554
+ updatedAt?: boolean
64546
64555
  visitorIp?: boolean
64547
64556
  urlPath?: boolean
64548
64557
  revenue?: boolean
@@ -64561,6 +64570,7 @@ export namespace Prisma {
64561
64570
  id?: boolean
64562
64571
  event?: boolean
64563
64572
  created?: boolean
64573
+ updatedAt?: boolean
64564
64574
  visitorIp?: boolean
64565
64575
  urlPath?: boolean
64566
64576
  revenue?: boolean
@@ -64592,6 +64602,7 @@ export namespace Prisma {
64592
64602
  id: number
64593
64603
  event: string
64594
64604
  created: Date
64605
+ updatedAt: Date | null
64595
64606
  visitorIp: string | null
64596
64607
  urlPath: string | null
64597
64608
  revenue: number | null
@@ -65027,6 +65038,7 @@ export namespace Prisma {
65027
65038
  readonly id: FieldRef<"AffiliateEvent", 'Int'>
65028
65039
  readonly event: FieldRef<"AffiliateEvent", 'String'>
65029
65040
  readonly created: FieldRef<"AffiliateEvent", 'DateTime'>
65041
+ readonly updatedAt: FieldRef<"AffiliateEvent", 'DateTime'>
65030
65042
  readonly visitorIp: FieldRef<"AffiliateEvent", 'String'>
65031
65043
  readonly urlPath: FieldRef<"AffiliateEvent", 'String'>
65032
65044
  readonly revenue: FieldRef<"AffiliateEvent", 'Float'>
@@ -65423,21 +65435,24 @@ export namespace Prisma {
65423
65435
 
65424
65436
  export type AffiliatePayoutBatchMinAggregateOutputType = {
65425
65437
  id: number | null
65426
- created: Date | null
65438
+ createdAt: Date | null
65439
+ updatedAt: Date | null
65427
65440
  trolleyBatchId: string | null
65428
65441
  userId: number | null
65429
65442
  }
65430
65443
 
65431
65444
  export type AffiliatePayoutBatchMaxAggregateOutputType = {
65432
65445
  id: number | null
65433
- created: Date | null
65446
+ createdAt: Date | null
65447
+ updatedAt: Date | null
65434
65448
  trolleyBatchId: string | null
65435
65449
  userId: number | null
65436
65450
  }
65437
65451
 
65438
65452
  export type AffiliatePayoutBatchCountAggregateOutputType = {
65439
65453
  id: number
65440
- created: number
65454
+ createdAt: number
65455
+ updatedAt: number
65441
65456
  metaData: number
65442
65457
  trolleyBatchId: number
65443
65458
  userId: number
@@ -65457,21 +65472,24 @@ export namespace Prisma {
65457
65472
 
65458
65473
  export type AffiliatePayoutBatchMinAggregateInputType = {
65459
65474
  id?: true
65460
- created?: true
65475
+ createdAt?: true
65476
+ updatedAt?: true
65461
65477
  trolleyBatchId?: true
65462
65478
  userId?: true
65463
65479
  }
65464
65480
 
65465
65481
  export type AffiliatePayoutBatchMaxAggregateInputType = {
65466
65482
  id?: true
65467
- created?: true
65483
+ createdAt?: true
65484
+ updatedAt?: true
65468
65485
  trolleyBatchId?: true
65469
65486
  userId?: true
65470
65487
  }
65471
65488
 
65472
65489
  export type AffiliatePayoutBatchCountAggregateInputType = {
65473
65490
  id?: true
65474
- created?: true
65491
+ createdAt?: true
65492
+ updatedAt?: true
65475
65493
  metaData?: true
65476
65494
  trolleyBatchId?: true
65477
65495
  userId?: true
@@ -65566,7 +65584,8 @@ export namespace Prisma {
65566
65584
 
65567
65585
  export type AffiliatePayoutBatchGroupByOutputType = {
65568
65586
  id: number
65569
- created: Date
65587
+ createdAt: Date
65588
+ updatedAt: Date
65570
65589
  metaData: JsonValue
65571
65590
  trolleyBatchId: string | null
65572
65591
  userId: number
@@ -65593,7 +65612,8 @@ export namespace Prisma {
65593
65612
 
65594
65613
  export type AffiliatePayoutBatchSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
65595
65614
  id?: boolean
65596
- created?: boolean
65615
+ createdAt?: boolean
65616
+ updatedAt?: boolean
65597
65617
  metaData?: boolean
65598
65618
  trolleyBatchId?: boolean
65599
65619
  userId?: boolean
@@ -65604,7 +65624,8 @@ export namespace Prisma {
65604
65624
 
65605
65625
  export type AffiliatePayoutBatchSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
65606
65626
  id?: boolean
65607
- created?: boolean
65627
+ createdAt?: boolean
65628
+ updatedAt?: boolean
65608
65629
  metaData?: boolean
65609
65630
  trolleyBatchId?: boolean
65610
65631
  userId?: boolean
@@ -65613,7 +65634,8 @@ export namespace Prisma {
65613
65634
 
65614
65635
  export type AffiliatePayoutBatchSelectScalar = {
65615
65636
  id?: boolean
65616
- created?: boolean
65637
+ createdAt?: boolean
65638
+ updatedAt?: boolean
65617
65639
  metaData?: boolean
65618
65640
  trolleyBatchId?: boolean
65619
65641
  userId?: boolean
@@ -65636,7 +65658,8 @@ export namespace Prisma {
65636
65658
  }
65637
65659
  scalars: $Extensions.GetPayloadResult<{
65638
65660
  id: number
65639
- created: Date
65661
+ createdAt: Date
65662
+ updatedAt: Date
65640
65663
  metaData: Prisma.JsonValue
65641
65664
  trolleyBatchId: string | null
65642
65665
  userId: number
@@ -66063,7 +66086,8 @@ export namespace Prisma {
66063
66086
  */
66064
66087
  interface AffiliatePayoutBatchFieldRefs {
66065
66088
  readonly id: FieldRef<"AffiliatePayoutBatch", 'Int'>
66066
- readonly created: FieldRef<"AffiliatePayoutBatch", 'DateTime'>
66089
+ readonly createdAt: FieldRef<"AffiliatePayoutBatch", 'DateTime'>
66090
+ readonly updatedAt: FieldRef<"AffiliatePayoutBatch", 'DateTime'>
66067
66091
  readonly metaData: FieldRef<"AffiliatePayoutBatch", 'Json'>
66068
66092
  readonly trolleyBatchId: FieldRef<"AffiliatePayoutBatch", 'String'>
66069
66093
  readonly userId: FieldRef<"AffiliatePayoutBatch", 'Int'>
@@ -95740,6 +95764,7 @@ export namespace Prisma {
95740
95764
  id: 'id',
95741
95765
  event: 'event',
95742
95766
  created: 'created',
95767
+ updatedAt: 'updatedAt',
95743
95768
  visitorIp: 'visitorIp',
95744
95769
  urlPath: 'urlPath',
95745
95770
  revenue: 'revenue',
@@ -95757,7 +95782,8 @@ export namespace Prisma {
95757
95782
 
95758
95783
  export const AffiliatePayoutBatchScalarFieldEnum: {
95759
95784
  id: 'id',
95760
- created: 'created',
95785
+ createdAt: 'createdAt',
95786
+ updatedAt: 'updatedAt',
95761
95787
  metaData: 'metaData',
95762
95788
  trolleyBatchId: 'trolleyBatchId',
95763
95789
  userId: 'userId'
@@ -101291,6 +101317,7 @@ export namespace Prisma {
101291
101317
  id?: IntFilter<"AffiliateEvent"> | number
101292
101318
  event?: StringFilter<"AffiliateEvent"> | string
101293
101319
  created?: DateTimeFilter<"AffiliateEvent"> | Date | string
101320
+ updatedAt?: DateTimeNullableFilter<"AffiliateEvent"> | Date | string | null
101294
101321
  visitorIp?: StringNullableFilter<"AffiliateEvent"> | string | null
101295
101322
  urlPath?: StringNullableFilter<"AffiliateEvent"> | string | null
101296
101323
  revenue?: FloatNullableFilter<"AffiliateEvent"> | number | null
@@ -101309,6 +101336,7 @@ export namespace Prisma {
101309
101336
  id?: SortOrder
101310
101337
  event?: SortOrder
101311
101338
  created?: SortOrder
101339
+ updatedAt?: SortOrderInput | SortOrder
101312
101340
  visitorIp?: SortOrderInput | SortOrder
101313
101341
  urlPath?: SortOrderInput | SortOrder
101314
101342
  revenue?: SortOrderInput | SortOrder
@@ -101332,6 +101360,7 @@ export namespace Prisma {
101332
101360
  NOT?: AffiliateEventWhereInput | AffiliateEventWhereInput[]
101333
101361
  event?: StringFilter<"AffiliateEvent"> | string
101334
101362
  created?: DateTimeFilter<"AffiliateEvent"> | Date | string
101363
+ updatedAt?: DateTimeNullableFilter<"AffiliateEvent"> | Date | string | null
101335
101364
  visitorIp?: StringNullableFilter<"AffiliateEvent"> | string | null
101336
101365
  urlPath?: StringNullableFilter<"AffiliateEvent"> | string | null
101337
101366
  revenue?: FloatNullableFilter<"AffiliateEvent"> | number | null
@@ -101350,6 +101379,7 @@ export namespace Prisma {
101350
101379
  id?: SortOrder
101351
101380
  event?: SortOrder
101352
101381
  created?: SortOrder
101382
+ updatedAt?: SortOrderInput | SortOrder
101353
101383
  visitorIp?: SortOrderInput | SortOrder
101354
101384
  urlPath?: SortOrderInput | SortOrder
101355
101385
  revenue?: SortOrderInput | SortOrder
@@ -101374,6 +101404,7 @@ export namespace Prisma {
101374
101404
  id?: IntWithAggregatesFilter<"AffiliateEvent"> | number
101375
101405
  event?: StringWithAggregatesFilter<"AffiliateEvent"> | string
101376
101406
  created?: DateTimeWithAggregatesFilter<"AffiliateEvent"> | Date | string
101407
+ updatedAt?: DateTimeNullableWithAggregatesFilter<"AffiliateEvent"> | Date | string | null
101377
101408
  visitorIp?: StringNullableWithAggregatesFilter<"AffiliateEvent"> | string | null
101378
101409
  urlPath?: StringNullableWithAggregatesFilter<"AffiliateEvent"> | string | null
101379
101410
  revenue?: FloatNullableWithAggregatesFilter<"AffiliateEvent"> | number | null
@@ -101391,7 +101422,8 @@ export namespace Prisma {
101391
101422
  OR?: AffiliatePayoutBatchWhereInput[]
101392
101423
  NOT?: AffiliatePayoutBatchWhereInput | AffiliatePayoutBatchWhereInput[]
101393
101424
  id?: IntFilter<"AffiliatePayoutBatch"> | number
101394
- created?: DateTimeFilter<"AffiliatePayoutBatch"> | Date | string
101425
+ createdAt?: DateTimeFilter<"AffiliatePayoutBatch"> | Date | string
101426
+ updatedAt?: DateTimeFilter<"AffiliatePayoutBatch"> | Date | string
101395
101427
  metaData?: JsonFilter<"AffiliatePayoutBatch">
101396
101428
  trolleyBatchId?: StringNullableFilter<"AffiliatePayoutBatch"> | string | null
101397
101429
  userId?: IntFilter<"AffiliatePayoutBatch"> | number
@@ -101401,7 +101433,8 @@ export namespace Prisma {
101401
101433
 
101402
101434
  export type AffiliatePayoutBatchOrderByWithRelationAndSearchRelevanceInput = {
101403
101435
  id?: SortOrder
101404
- created?: SortOrder
101436
+ createdAt?: SortOrder
101437
+ updatedAt?: SortOrder
101405
101438
  metaData?: SortOrder
101406
101439
  trolleyBatchId?: SortOrderInput | SortOrder
101407
101440
  userId?: SortOrder
@@ -101416,7 +101449,8 @@ export namespace Prisma {
101416
101449
  AND?: AffiliatePayoutBatchWhereInput | AffiliatePayoutBatchWhereInput[]
101417
101450
  OR?: AffiliatePayoutBatchWhereInput[]
101418
101451
  NOT?: AffiliatePayoutBatchWhereInput | AffiliatePayoutBatchWhereInput[]
101419
- created?: DateTimeFilter<"AffiliatePayoutBatch"> | Date | string
101452
+ createdAt?: DateTimeFilter<"AffiliatePayoutBatch"> | Date | string
101453
+ updatedAt?: DateTimeFilter<"AffiliatePayoutBatch"> | Date | string
101420
101454
  metaData?: JsonFilter<"AffiliatePayoutBatch">
101421
101455
  userId?: IntFilter<"AffiliatePayoutBatch"> | number
101422
101456
  user?: XOR<UserRelationFilter, UserWhereInput>
@@ -101425,7 +101459,8 @@ export namespace Prisma {
101425
101459
 
101426
101460
  export type AffiliatePayoutBatchOrderByWithAggregationInput = {
101427
101461
  id?: SortOrder
101428
- created?: SortOrder
101462
+ createdAt?: SortOrder
101463
+ updatedAt?: SortOrder
101429
101464
  metaData?: SortOrder
101430
101465
  trolleyBatchId?: SortOrderInput | SortOrder
101431
101466
  userId?: SortOrder
@@ -101441,7 +101476,8 @@ export namespace Prisma {
101441
101476
  OR?: AffiliatePayoutBatchScalarWhereWithAggregatesInput[]
101442
101477
  NOT?: AffiliatePayoutBatchScalarWhereWithAggregatesInput | AffiliatePayoutBatchScalarWhereWithAggregatesInput[]
101443
101478
  id?: IntWithAggregatesFilter<"AffiliatePayoutBatch"> | number
101444
- created?: DateTimeWithAggregatesFilter<"AffiliatePayoutBatch"> | Date | string
101479
+ createdAt?: DateTimeWithAggregatesFilter<"AffiliatePayoutBatch"> | Date | string
101480
+ updatedAt?: DateTimeWithAggregatesFilter<"AffiliatePayoutBatch"> | Date | string
101445
101481
  metaData?: JsonWithAggregatesFilter<"AffiliatePayoutBatch">
101446
101482
  trolleyBatchId?: StringNullableWithAggregatesFilter<"AffiliatePayoutBatch"> | string | null
101447
101483
  userId?: IntWithAggregatesFilter<"AffiliatePayoutBatch"> | number
@@ -108033,6 +108069,7 @@ export namespace Prisma {
108033
108069
  export type AffiliateEventCreateInput = {
108034
108070
  event: string
108035
108071
  created?: Date | string
108072
+ updatedAt?: Date | string | null
108036
108073
  visitorIp?: string | null
108037
108074
  urlPath?: string | null
108038
108075
  revenue?: number | null
@@ -108049,6 +108086,7 @@ export namespace Prisma {
108049
108086
  id?: number
108050
108087
  event: string
108051
108088
  created?: Date | string
108089
+ updatedAt?: Date | string | null
108052
108090
  visitorIp?: string | null
108053
108091
  urlPath?: string | null
108054
108092
  revenue?: number | null
@@ -108064,6 +108102,7 @@ export namespace Prisma {
108064
108102
  export type AffiliateEventUpdateInput = {
108065
108103
  event?: StringFieldUpdateOperationsInput | string
108066
108104
  created?: DateTimeFieldUpdateOperationsInput | Date | string
108105
+ updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
108067
108106
  visitorIp?: NullableStringFieldUpdateOperationsInput | string | null
108068
108107
  urlPath?: NullableStringFieldUpdateOperationsInput | string | null
108069
108108
  revenue?: NullableFloatFieldUpdateOperationsInput | number | null
@@ -108080,6 +108119,7 @@ export namespace Prisma {
108080
108119
  id?: IntFieldUpdateOperationsInput | number
108081
108120
  event?: StringFieldUpdateOperationsInput | string
108082
108121
  created?: DateTimeFieldUpdateOperationsInput | Date | string
108122
+ updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
108083
108123
  visitorIp?: NullableStringFieldUpdateOperationsInput | string | null
108084
108124
  urlPath?: NullableStringFieldUpdateOperationsInput | string | null
108085
108125
  revenue?: NullableFloatFieldUpdateOperationsInput | number | null
@@ -108096,6 +108136,7 @@ export namespace Prisma {
108096
108136
  id?: number
108097
108137
  event: string
108098
108138
  created?: Date | string
108139
+ updatedAt?: Date | string | null
108099
108140
  visitorIp?: string | null
108100
108141
  urlPath?: string | null
108101
108142
  revenue?: number | null
@@ -108111,6 +108152,7 @@ export namespace Prisma {
108111
108152
  export type AffiliateEventUpdateManyMutationInput = {
108112
108153
  event?: StringFieldUpdateOperationsInput | string
108113
108154
  created?: DateTimeFieldUpdateOperationsInput | Date | string
108155
+ updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
108114
108156
  visitorIp?: NullableStringFieldUpdateOperationsInput | string | null
108115
108157
  urlPath?: NullableStringFieldUpdateOperationsInput | string | null
108116
108158
  revenue?: NullableFloatFieldUpdateOperationsInput | number | null
@@ -108125,6 +108167,7 @@ export namespace Prisma {
108125
108167
  id?: IntFieldUpdateOperationsInput | number
108126
108168
  event?: StringFieldUpdateOperationsInput | string
108127
108169
  created?: DateTimeFieldUpdateOperationsInput | Date | string
108170
+ updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
108128
108171
  visitorIp?: NullableStringFieldUpdateOperationsInput | string | null
108129
108172
  urlPath?: NullableStringFieldUpdateOperationsInput | string | null
108130
108173
  revenue?: NullableFloatFieldUpdateOperationsInput | number | null
@@ -108138,7 +108181,8 @@ export namespace Prisma {
108138
108181
  }
108139
108182
 
108140
108183
  export type AffiliatePayoutBatchCreateInput = {
108141
- created?: Date | string
108184
+ createdAt?: Date | string
108185
+ updatedAt?: Date | string
108142
108186
  metaData?: JsonNullValueInput | InputJsonValue
108143
108187
  trolleyBatchId?: string | null
108144
108188
  user: UserCreateNestedOneWithoutAffiliatePayoutBatchesInput
@@ -108147,7 +108191,8 @@ export namespace Prisma {
108147
108191
 
108148
108192
  export type AffiliatePayoutBatchUncheckedCreateInput = {
108149
108193
  id?: number
108150
- created?: Date | string
108194
+ createdAt?: Date | string
108195
+ updatedAt?: Date | string
108151
108196
  metaData?: JsonNullValueInput | InputJsonValue
108152
108197
  trolleyBatchId?: string | null
108153
108198
  userId: number
@@ -108155,7 +108200,8 @@ export namespace Prisma {
108155
108200
  }
108156
108201
 
108157
108202
  export type AffiliatePayoutBatchUpdateInput = {
108158
- created?: DateTimeFieldUpdateOperationsInput | Date | string
108203
+ createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
108204
+ updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
108159
108205
  metaData?: JsonNullValueInput | InputJsonValue
108160
108206
  trolleyBatchId?: NullableStringFieldUpdateOperationsInput | string | null
108161
108207
  user?: UserUpdateOneRequiredWithoutAffiliatePayoutBatchesNestedInput
@@ -108164,7 +108210,8 @@ export namespace Prisma {
108164
108210
 
108165
108211
  export type AffiliatePayoutBatchUncheckedUpdateInput = {
108166
108212
  id?: IntFieldUpdateOperationsInput | number
108167
- created?: DateTimeFieldUpdateOperationsInput | Date | string
108213
+ createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
108214
+ updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
108168
108215
  metaData?: JsonNullValueInput | InputJsonValue
108169
108216
  trolleyBatchId?: NullableStringFieldUpdateOperationsInput | string | null
108170
108217
  userId?: IntFieldUpdateOperationsInput | number
@@ -108173,21 +108220,24 @@ export namespace Prisma {
108173
108220
 
108174
108221
  export type AffiliatePayoutBatchCreateManyInput = {
108175
108222
  id?: number
108176
- created?: Date | string
108223
+ createdAt?: Date | string
108224
+ updatedAt?: Date | string
108177
108225
  metaData?: JsonNullValueInput | InputJsonValue
108178
108226
  trolleyBatchId?: string | null
108179
108227
  userId: number
108180
108228
  }
108181
108229
 
108182
108230
  export type AffiliatePayoutBatchUpdateManyMutationInput = {
108183
- created?: DateTimeFieldUpdateOperationsInput | Date | string
108231
+ createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
108232
+ updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
108184
108233
  metaData?: JsonNullValueInput | InputJsonValue
108185
108234
  trolleyBatchId?: NullableStringFieldUpdateOperationsInput | string | null
108186
108235
  }
108187
108236
 
108188
108237
  export type AffiliatePayoutBatchUncheckedUpdateManyInput = {
108189
108238
  id?: IntFieldUpdateOperationsInput | number
108190
- created?: DateTimeFieldUpdateOperationsInput | Date | string
108239
+ createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
108240
+ updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
108191
108241
  metaData?: JsonNullValueInput | InputJsonValue
108192
108242
  trolleyBatchId?: NullableStringFieldUpdateOperationsInput | string | null
108193
108243
  userId?: IntFieldUpdateOperationsInput | number
@@ -113992,6 +114042,7 @@ export namespace Prisma {
113992
114042
  id?: SortOrder
113993
114043
  event?: SortOrder
113994
114044
  created?: SortOrder
114045
+ updatedAt?: SortOrder
113995
114046
  visitorIp?: SortOrder
113996
114047
  urlPath?: SortOrder
113997
114048
  revenue?: SortOrder
@@ -114017,6 +114068,7 @@ export namespace Prisma {
114017
114068
  id?: SortOrder
114018
114069
  event?: SortOrder
114019
114070
  created?: SortOrder
114071
+ updatedAt?: SortOrder
114020
114072
  visitorIp?: SortOrder
114021
114073
  urlPath?: SortOrder
114022
114074
  revenue?: SortOrder
@@ -114032,6 +114084,7 @@ export namespace Prisma {
114032
114084
  id?: SortOrder
114033
114085
  event?: SortOrder
114034
114086
  created?: SortOrder
114087
+ updatedAt?: SortOrder
114035
114088
  visitorIp?: SortOrder
114036
114089
  urlPath?: SortOrder
114037
114090
  revenue?: SortOrder
@@ -114060,7 +114113,8 @@ export namespace Prisma {
114060
114113
 
114061
114114
  export type AffiliatePayoutBatchCountOrderByAggregateInput = {
114062
114115
  id?: SortOrder
114063
- created?: SortOrder
114116
+ createdAt?: SortOrder
114117
+ updatedAt?: SortOrder
114064
114118
  metaData?: SortOrder
114065
114119
  trolleyBatchId?: SortOrder
114066
114120
  userId?: SortOrder
@@ -114073,14 +114127,16 @@ export namespace Prisma {
114073
114127
 
114074
114128
  export type AffiliatePayoutBatchMaxOrderByAggregateInput = {
114075
114129
  id?: SortOrder
114076
- created?: SortOrder
114130
+ createdAt?: SortOrder
114131
+ updatedAt?: SortOrder
114077
114132
  trolleyBatchId?: SortOrder
114078
114133
  userId?: SortOrder
114079
114134
  }
114080
114135
 
114081
114136
  export type AffiliatePayoutBatchMinOrderByAggregateInput = {
114082
114137
  id?: SortOrder
114083
- created?: SortOrder
114138
+ createdAt?: SortOrder
114139
+ updatedAt?: SortOrder
114084
114140
  trolleyBatchId?: SortOrder
114085
114141
  userId?: SortOrder
114086
114142
  }
@@ -124115,7 +124171,8 @@ export namespace Prisma {
124115
124171
  }
124116
124172
 
124117
124173
  export type AffiliatePayoutBatchCreateWithoutUserInput = {
124118
- created?: Date | string
124174
+ createdAt?: Date | string
124175
+ updatedAt?: Date | string
124119
124176
  metaData?: JsonNullValueInput | InputJsonValue
124120
124177
  trolleyBatchId?: string | null
124121
124178
  affiliateEvents?: AffiliateEventCreateNestedManyWithoutAffiliatePayoutBatchInput
@@ -124123,7 +124180,8 @@ export namespace Prisma {
124123
124180
 
124124
124181
  export type AffiliatePayoutBatchUncheckedCreateWithoutUserInput = {
124125
124182
  id?: number
124126
- created?: Date | string
124183
+ createdAt?: Date | string
124184
+ updatedAt?: Date | string
124127
124185
  metaData?: JsonNullValueInput | InputJsonValue
124128
124186
  trolleyBatchId?: string | null
124129
124187
  affiliateEvents?: AffiliateEventUncheckedCreateNestedManyWithoutAffiliatePayoutBatchInput
@@ -125167,7 +125225,8 @@ export namespace Prisma {
125167
125225
  OR?: AffiliatePayoutBatchScalarWhereInput[]
125168
125226
  NOT?: AffiliatePayoutBatchScalarWhereInput | AffiliatePayoutBatchScalarWhereInput[]
125169
125227
  id?: IntFilter<"AffiliatePayoutBatch"> | number
125170
- created?: DateTimeFilter<"AffiliatePayoutBatch"> | Date | string
125228
+ createdAt?: DateTimeFilter<"AffiliatePayoutBatch"> | Date | string
125229
+ updatedAt?: DateTimeFilter<"AffiliatePayoutBatch"> | Date | string
125171
125230
  metaData?: JsonFilter<"AffiliatePayoutBatch">
125172
125231
  trolleyBatchId?: StringNullableFilter<"AffiliatePayoutBatch"> | string | null
125173
125232
  userId?: IntFilter<"AffiliatePayoutBatch"> | number
@@ -141266,6 +141325,7 @@ export namespace Prisma {
141266
141325
  export type AffiliateEventCreateWithoutAffiliateClickInput = {
141267
141326
  event: string
141268
141327
  created?: Date | string
141328
+ updatedAt?: Date | string | null
141269
141329
  visitorIp?: string | null
141270
141330
  urlPath?: string | null
141271
141331
  revenue?: number | null
@@ -141281,6 +141341,7 @@ export namespace Prisma {
141281
141341
  id?: number
141282
141342
  event: string
141283
141343
  created?: Date | string
141344
+ updatedAt?: Date | string | null
141284
141345
  visitorIp?: string | null
141285
141346
  urlPath?: string | null
141286
141347
  revenue?: number | null
@@ -141429,6 +141490,7 @@ export namespace Prisma {
141429
141490
  id?: IntFilter<"AffiliateEvent"> | number
141430
141491
  event?: StringFilter<"AffiliateEvent"> | string
141431
141492
  created?: DateTimeFilter<"AffiliateEvent"> | Date | string
141493
+ updatedAt?: DateTimeNullableFilter<"AffiliateEvent"> | Date | string | null
141432
141494
  visitorIp?: StringNullableFilter<"AffiliateEvent"> | string | null
141433
141495
  urlPath?: StringNullableFilter<"AffiliateEvent"> | string | null
141434
141496
  revenue?: FloatNullableFilter<"AffiliateEvent"> | number | null
@@ -141466,7 +141528,8 @@ export namespace Prisma {
141466
141528
  }
141467
141529
 
141468
141530
  export type AffiliatePayoutBatchCreateWithoutAffiliateEventsInput = {
141469
- created?: Date | string
141531
+ createdAt?: Date | string
141532
+ updatedAt?: Date | string
141470
141533
  metaData?: JsonNullValueInput | InputJsonValue
141471
141534
  trolleyBatchId?: string | null
141472
141535
  user: UserCreateNestedOneWithoutAffiliatePayoutBatchesInput
@@ -141474,7 +141537,8 @@ export namespace Prisma {
141474
141537
 
141475
141538
  export type AffiliatePayoutBatchUncheckedCreateWithoutAffiliateEventsInput = {
141476
141539
  id?: number
141477
- created?: Date | string
141540
+ createdAt?: Date | string
141541
+ updatedAt?: Date | string
141478
141542
  metaData?: JsonNullValueInput | InputJsonValue
141479
141543
  trolleyBatchId?: string | null
141480
141544
  userId: number
@@ -141527,7 +141591,8 @@ export namespace Prisma {
141527
141591
  }
141528
141592
 
141529
141593
  export type AffiliatePayoutBatchUpdateWithoutAffiliateEventsInput = {
141530
- created?: DateTimeFieldUpdateOperationsInput | Date | string
141594
+ createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
141595
+ updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
141531
141596
  metaData?: JsonNullValueInput | InputJsonValue
141532
141597
  trolleyBatchId?: NullableStringFieldUpdateOperationsInput | string | null
141533
141598
  user?: UserUpdateOneRequiredWithoutAffiliatePayoutBatchesNestedInput
@@ -141535,7 +141600,8 @@ export namespace Prisma {
141535
141600
 
141536
141601
  export type AffiliatePayoutBatchUncheckedUpdateWithoutAffiliateEventsInput = {
141537
141602
  id?: IntFieldUpdateOperationsInput | number
141538
- created?: DateTimeFieldUpdateOperationsInput | Date | string
141603
+ createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
141604
+ updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
141539
141605
  metaData?: JsonNullValueInput | InputJsonValue
141540
141606
  trolleyBatchId?: NullableStringFieldUpdateOperationsInput | string | null
141541
141607
  userId?: IntFieldUpdateOperationsInput | number
@@ -141646,6 +141712,7 @@ export namespace Prisma {
141646
141712
  export type AffiliateEventCreateWithoutAffiliatePayoutBatchInput = {
141647
141713
  event: string
141648
141714
  created?: Date | string
141715
+ updatedAt?: Date | string | null
141649
141716
  visitorIp?: string | null
141650
141717
  urlPath?: string | null
141651
141718
  revenue?: number | null
@@ -141661,6 +141728,7 @@ export namespace Prisma {
141661
141728
  id?: number
141662
141729
  event: string
141663
141730
  created?: Date | string
141731
+ updatedAt?: Date | string | null
141664
141732
  visitorIp?: string | null
141665
141733
  urlPath?: string | null
141666
141734
  revenue?: number | null
@@ -149909,7 +149977,8 @@ export namespace Prisma {
149909
149977
 
149910
149978
  export type AffiliatePayoutBatchCreateManyUserInput = {
149911
149979
  id?: number
149912
- created?: Date | string
149980
+ createdAt?: Date | string
149981
+ updatedAt?: Date | string
149913
149982
  metaData?: JsonNullValueInput | InputJsonValue
149914
149983
  trolleyBatchId?: string | null
149915
149984
  }
@@ -150731,7 +150800,8 @@ export namespace Prisma {
150731
150800
  }
150732
150801
 
150733
150802
  export type AffiliatePayoutBatchUpdateWithoutUserInput = {
150734
- created?: DateTimeFieldUpdateOperationsInput | Date | string
150803
+ createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
150804
+ updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
150735
150805
  metaData?: JsonNullValueInput | InputJsonValue
150736
150806
  trolleyBatchId?: NullableStringFieldUpdateOperationsInput | string | null
150737
150807
  affiliateEvents?: AffiliateEventUpdateManyWithoutAffiliatePayoutBatchNestedInput
@@ -150739,7 +150809,8 @@ export namespace Prisma {
150739
150809
 
150740
150810
  export type AffiliatePayoutBatchUncheckedUpdateWithoutUserInput = {
150741
150811
  id?: IntFieldUpdateOperationsInput | number
150742
- created?: DateTimeFieldUpdateOperationsInput | Date | string
150812
+ createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
150813
+ updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
150743
150814
  metaData?: JsonNullValueInput | InputJsonValue
150744
150815
  trolleyBatchId?: NullableStringFieldUpdateOperationsInput | string | null
150745
150816
  affiliateEvents?: AffiliateEventUncheckedUpdateManyWithoutAffiliatePayoutBatchNestedInput
@@ -150747,7 +150818,8 @@ export namespace Prisma {
150747
150818
 
150748
150819
  export type AffiliatePayoutBatchUncheckedUpdateManyWithoutUserInput = {
150749
150820
  id?: IntFieldUpdateOperationsInput | number
150750
- created?: DateTimeFieldUpdateOperationsInput | Date | string
150821
+ createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
150822
+ updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
150751
150823
  metaData?: JsonNullValueInput | InputJsonValue
150752
150824
  trolleyBatchId?: NullableStringFieldUpdateOperationsInput | string | null
150753
150825
  }
@@ -153547,6 +153619,7 @@ export namespace Prisma {
153547
153619
  id?: number
153548
153620
  event: string
153549
153621
  created?: Date | string
153622
+ updatedAt?: Date | string | null
153550
153623
  visitorIp?: string | null
153551
153624
  urlPath?: string | null
153552
153625
  revenue?: number | null
@@ -153561,6 +153634,7 @@ export namespace Prisma {
153561
153634
  export type AffiliateEventUpdateWithoutAffiliateClickInput = {
153562
153635
  event?: StringFieldUpdateOperationsInput | string
153563
153636
  created?: DateTimeFieldUpdateOperationsInput | Date | string
153637
+ updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
153564
153638
  visitorIp?: NullableStringFieldUpdateOperationsInput | string | null
153565
153639
  urlPath?: NullableStringFieldUpdateOperationsInput | string | null
153566
153640
  revenue?: NullableFloatFieldUpdateOperationsInput | number | null
@@ -153576,6 +153650,7 @@ export namespace Prisma {
153576
153650
  id?: IntFieldUpdateOperationsInput | number
153577
153651
  event?: StringFieldUpdateOperationsInput | string
153578
153652
  created?: DateTimeFieldUpdateOperationsInput | Date | string
153653
+ updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
153579
153654
  visitorIp?: NullableStringFieldUpdateOperationsInput | string | null
153580
153655
  urlPath?: NullableStringFieldUpdateOperationsInput | string | null
153581
153656
  revenue?: NullableFloatFieldUpdateOperationsInput | number | null
@@ -153591,6 +153666,7 @@ export namespace Prisma {
153591
153666
  id?: IntFieldUpdateOperationsInput | number
153592
153667
  event?: StringFieldUpdateOperationsInput | string
153593
153668
  created?: DateTimeFieldUpdateOperationsInput | Date | string
153669
+ updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
153594
153670
  visitorIp?: NullableStringFieldUpdateOperationsInput | string | null
153595
153671
  urlPath?: NullableStringFieldUpdateOperationsInput | string | null
153596
153672
  revenue?: NullableFloatFieldUpdateOperationsInput | number | null
@@ -153606,6 +153682,7 @@ export namespace Prisma {
153606
153682
  id?: number
153607
153683
  event: string
153608
153684
  created?: Date | string
153685
+ updatedAt?: Date | string | null
153609
153686
  visitorIp?: string | null
153610
153687
  urlPath?: string | null
153611
153688
  revenue?: number | null
@@ -153620,6 +153697,7 @@ export namespace Prisma {
153620
153697
  export type AffiliateEventUpdateWithoutAffiliatePayoutBatchInput = {
153621
153698
  event?: StringFieldUpdateOperationsInput | string
153622
153699
  created?: DateTimeFieldUpdateOperationsInput | Date | string
153700
+ updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
153623
153701
  visitorIp?: NullableStringFieldUpdateOperationsInput | string | null
153624
153702
  urlPath?: NullableStringFieldUpdateOperationsInput | string | null
153625
153703
  revenue?: NullableFloatFieldUpdateOperationsInput | number | null
@@ -153635,6 +153713,7 @@ export namespace Prisma {
153635
153713
  id?: IntFieldUpdateOperationsInput | number
153636
153714
  event?: StringFieldUpdateOperationsInput | string
153637
153715
  created?: DateTimeFieldUpdateOperationsInput | Date | string
153716
+ updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
153638
153717
  visitorIp?: NullableStringFieldUpdateOperationsInput | string | null
153639
153718
  urlPath?: NullableStringFieldUpdateOperationsInput | string | null
153640
153719
  revenue?: NullableFloatFieldUpdateOperationsInput | number | null
@@ -153650,6 +153729,7 @@ export namespace Prisma {
153650
153729
  id?: IntFieldUpdateOperationsInput | number
153651
153730
  event?: StringFieldUpdateOperationsInput | string
153652
153731
  created?: DateTimeFieldUpdateOperationsInput | Date | string
153732
+ updatedAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
153653
153733
  visitorIp?: NullableStringFieldUpdateOperationsInput | string | null
153654
153734
  urlPath?: NullableStringFieldUpdateOperationsInput | string | null
153655
153735
  revenue?: NullableFloatFieldUpdateOperationsInput | number | null