@levrbet/shared 0.2.22 → 0.2.23

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.
@@ -9880,6 +9880,7 @@ export namespace Prisma {
9880
9880
  currentPeriod: number | null
9881
9881
  actualDuration: number | null
9882
9882
  normalizationFactor: number | null
9883
+ gameProgressBps: number | null
9883
9884
  }
9884
9885
 
9885
9886
  export type LevrGameSumAggregateOutputType = {
@@ -9888,6 +9889,7 @@ export namespace Prisma {
9888
9889
  currentPeriod: number | null
9889
9890
  actualDuration: number | null
9890
9891
  normalizationFactor: number | null
9892
+ gameProgressBps: number | null
9891
9893
  }
9892
9894
 
9893
9895
  export type LevrGameMinAggregateOutputType = {
@@ -9911,6 +9913,7 @@ export namespace Prisma {
9911
9913
  levrFixtureId: string | null
9912
9914
  opticOddsFixtureId: string | null
9913
9915
  lsportsFixtureId: string | null
9916
+ gameProgressBps: number | null
9914
9917
  sportGroup: $Enums.SportGroup | null
9915
9918
  fixtureObjectId: string | null
9916
9919
  tournamentObjectId: string | null
@@ -9940,6 +9943,7 @@ export namespace Prisma {
9940
9943
  levrFixtureId: string | null
9941
9944
  opticOddsFixtureId: string | null
9942
9945
  lsportsFixtureId: string | null
9946
+ gameProgressBps: number | null
9943
9947
  sportGroup: $Enums.SportGroup | null
9944
9948
  fixtureObjectId: string | null
9945
9949
  tournamentObjectId: string | null
@@ -9971,6 +9975,7 @@ export namespace Prisma {
9971
9975
  levrFixtureId: number
9972
9976
  opticOddsFixtureId: number
9973
9977
  lsportsFixtureId: number
9978
+ gameProgressBps: number
9974
9979
  sportGroup: number
9975
9980
  fixtureObjectId: number
9976
9981
  tournamentObjectId: number
@@ -9987,6 +9992,7 @@ export namespace Prisma {
9987
9992
  currentPeriod?: true
9988
9993
  actualDuration?: true
9989
9994
  normalizationFactor?: true
9995
+ gameProgressBps?: true
9990
9996
  }
9991
9997
 
9992
9998
  export type LevrGameSumAggregateInputType = {
@@ -9995,6 +10001,7 @@ export namespace Prisma {
9995
10001
  currentPeriod?: true
9996
10002
  actualDuration?: true
9997
10003
  normalizationFactor?: true
10004
+ gameProgressBps?: true
9998
10005
  }
9999
10006
 
10000
10007
  export type LevrGameMinAggregateInputType = {
@@ -10018,6 +10025,7 @@ export namespace Prisma {
10018
10025
  levrFixtureId?: true
10019
10026
  opticOddsFixtureId?: true
10020
10027
  lsportsFixtureId?: true
10028
+ gameProgressBps?: true
10021
10029
  sportGroup?: true
10022
10030
  fixtureObjectId?: true
10023
10031
  tournamentObjectId?: true
@@ -10047,6 +10055,7 @@ export namespace Prisma {
10047
10055
  levrFixtureId?: true
10048
10056
  opticOddsFixtureId?: true
10049
10057
  lsportsFixtureId?: true
10058
+ gameProgressBps?: true
10050
10059
  sportGroup?: true
10051
10060
  fixtureObjectId?: true
10052
10061
  tournamentObjectId?: true
@@ -10078,6 +10087,7 @@ export namespace Prisma {
10078
10087
  levrFixtureId?: true
10079
10088
  opticOddsFixtureId?: true
10080
10089
  lsportsFixtureId?: true
10090
+ gameProgressBps?: true
10081
10091
  sportGroup?: true
10082
10092
  fixtureObjectId?: true
10083
10093
  tournamentObjectId?: true
@@ -10196,6 +10206,7 @@ export namespace Prisma {
10196
10206
  levrFixtureId: string
10197
10207
  opticOddsFixtureId: string | null
10198
10208
  lsportsFixtureId: string | null
10209
+ gameProgressBps: number
10199
10210
  sportGroup: $Enums.SportGroup
10200
10211
  fixtureObjectId: string
10201
10212
  tournamentObjectId: string
@@ -10246,6 +10257,7 @@ export namespace Prisma {
10246
10257
  levrFixtureId?: boolean
10247
10258
  opticOddsFixtureId?: boolean
10248
10259
  lsportsFixtureId?: boolean
10260
+ gameProgressBps?: boolean
10249
10261
  sportGroup?: boolean
10250
10262
  fixtureObjectId?: boolean
10251
10263
  tournamentObjectId?: boolean
@@ -10285,6 +10297,7 @@ export namespace Prisma {
10285
10297
  levrFixtureId?: boolean
10286
10298
  opticOddsFixtureId?: boolean
10287
10299
  lsportsFixtureId?: boolean
10300
+ gameProgressBps?: boolean
10288
10301
  sportGroup?: boolean
10289
10302
  fixtureObjectId?: boolean
10290
10303
  tournamentObjectId?: boolean
@@ -10293,7 +10306,7 @@ export namespace Prisma {
10293
10306
  updatedAt?: boolean
10294
10307
  }
10295
10308
 
10296
- export type LevrGameOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"objectId" | "gameId" | "txHash" | "chainId" | "seasonType" | "venue" | "eventName" | "location" | "venueLocation" | "gameClock" | "paused" | "fixtureDate" | "wentLiveAt" | "homeTeam" | "awayTeam" | "currentPeriod" | "actualDuration" | "normalizationFactor" | "gamePhase" | "levrFixtureId" | "opticOddsFixtureId" | "lsportsFixtureId" | "sportGroup" | "fixtureObjectId" | "tournamentObjectId" | "leagueObjectId" | "createdAt" | "updatedAt", ExtArgs["result"]["levrGame"]>
10309
+ export type LevrGameOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"objectId" | "gameId" | "txHash" | "chainId" | "seasonType" | "venue" | "eventName" | "location" | "venueLocation" | "gameClock" | "paused" | "fixtureDate" | "wentLiveAt" | "homeTeam" | "awayTeam" | "currentPeriod" | "actualDuration" | "normalizationFactor" | "gamePhase" | "levrFixtureId" | "opticOddsFixtureId" | "lsportsFixtureId" | "gameProgressBps" | "sportGroup" | "fixtureObjectId" | "tournamentObjectId" | "leagueObjectId" | "createdAt" | "updatedAt", ExtArgs["result"]["levrGame"]>
10297
10310
  export type LevrGameInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
10298
10311
  fixture?: boolean | FixtureDefaultArgs<ExtArgs>
10299
10312
  tournament?: boolean | TournamentDefaultArgs<ExtArgs>
@@ -10335,6 +10348,7 @@ export namespace Prisma {
10335
10348
  levrFixtureId: string
10336
10349
  opticOddsFixtureId: string | null
10337
10350
  lsportsFixtureId: string | null
10351
+ gameProgressBps: number
10338
10352
  sportGroup: $Enums.SportGroup
10339
10353
  fixtureObjectId: string
10340
10354
  tournamentObjectId: string
@@ -10760,6 +10774,7 @@ export namespace Prisma {
10760
10774
  readonly levrFixtureId: FieldRef<"LevrGame", 'String'>
10761
10775
  readonly opticOddsFixtureId: FieldRef<"LevrGame", 'String'>
10762
10776
  readonly lsportsFixtureId: FieldRef<"LevrGame", 'String'>
10777
+ readonly gameProgressBps: FieldRef<"LevrGame", 'Int'>
10763
10778
  readonly sportGroup: FieldRef<"LevrGame", 'SportGroup'>
10764
10779
  readonly fixtureObjectId: FieldRef<"LevrGame", 'String'>
10765
10780
  readonly tournamentObjectId: FieldRef<"LevrGame", 'String'>
@@ -16695,6 +16710,7 @@ export namespace Prisma {
16695
16710
  levrFixtureId: 'levrFixtureId',
16696
16711
  opticOddsFixtureId: 'opticOddsFixtureId',
16697
16712
  lsportsFixtureId: 'lsportsFixtureId',
16713
+ gameProgressBps: 'gameProgressBps',
16698
16714
  sportGroup: 'sportGroup',
16699
16715
  fixtureObjectId: 'fixtureObjectId',
16700
16716
  tournamentObjectId: 'tournamentObjectId',
@@ -17683,6 +17699,7 @@ export namespace Prisma {
17683
17699
  levrFixtureId?: StringFilter<"LevrGame"> | string
17684
17700
  opticOddsFixtureId?: StringNullableFilter<"LevrGame"> | string | null
17685
17701
  lsportsFixtureId?: StringNullableFilter<"LevrGame"> | string | null
17702
+ gameProgressBps?: IntFilter<"LevrGame"> | number
17686
17703
  sportGroup?: EnumSportGroupFilter<"LevrGame"> | $Enums.SportGroup
17687
17704
  fixtureObjectId?: StringFilter<"LevrGame"> | string
17688
17705
  tournamentObjectId?: StringFilter<"LevrGame"> | string
@@ -17719,6 +17736,7 @@ export namespace Prisma {
17719
17736
  levrFixtureId?: SortOrder
17720
17737
  opticOddsFixtureId?: SortOrder
17721
17738
  lsportsFixtureId?: SortOrder
17739
+ gameProgressBps?: SortOrder
17722
17740
  sportGroup?: SortOrder
17723
17741
  fixtureObjectId?: SortOrder
17724
17742
  tournamentObjectId?: SortOrder
@@ -17760,6 +17778,7 @@ export namespace Prisma {
17760
17778
  levrFixtureId?: StringFilter<"LevrGame"> | string
17761
17779
  opticOddsFixtureId?: StringNullableFilter<"LevrGame"> | string | null
17762
17780
  lsportsFixtureId?: StringNullableFilter<"LevrGame"> | string | null
17781
+ gameProgressBps?: IntFilter<"LevrGame"> | number
17763
17782
  sportGroup?: EnumSportGroupFilter<"LevrGame"> | $Enums.SportGroup
17764
17783
  fixtureObjectId?: StringFilter<"LevrGame"> | string
17765
17784
  tournamentObjectId?: StringFilter<"LevrGame"> | string
@@ -17796,6 +17815,7 @@ export namespace Prisma {
17796
17815
  levrFixtureId?: SortOrder
17797
17816
  opticOddsFixtureId?: SortOrder
17798
17817
  lsportsFixtureId?: SortOrder
17818
+ gameProgressBps?: SortOrder
17799
17819
  sportGroup?: SortOrder
17800
17820
  fixtureObjectId?: SortOrder
17801
17821
  tournamentObjectId?: SortOrder
@@ -17835,6 +17855,7 @@ export namespace Prisma {
17835
17855
  levrFixtureId?: StringWithAggregatesFilter<"LevrGame"> | string
17836
17856
  opticOddsFixtureId?: StringNullableWithAggregatesFilter<"LevrGame"> | string | null
17837
17857
  lsportsFixtureId?: StringNullableWithAggregatesFilter<"LevrGame"> | string | null
17858
+ gameProgressBps?: IntWithAggregatesFilter<"LevrGame"> | number
17838
17859
  sportGroup?: EnumSportGroupWithAggregatesFilter<"LevrGame"> | $Enums.SportGroup
17839
17860
  fixtureObjectId?: StringWithAggregatesFilter<"LevrGame"> | string
17840
17861
  tournamentObjectId?: StringWithAggregatesFilter<"LevrGame"> | string
@@ -19056,6 +19077,7 @@ export namespace Prisma {
19056
19077
  levrFixtureId: string
19057
19078
  opticOddsFixtureId?: string | null
19058
19079
  lsportsFixtureId?: string | null
19080
+ gameProgressBps?: number
19059
19081
  sportGroup: $Enums.SportGroup
19060
19082
  createdAt?: Date | string
19061
19083
  updatedAt?: Date | string
@@ -19089,6 +19111,7 @@ export namespace Prisma {
19089
19111
  levrFixtureId: string
19090
19112
  opticOddsFixtureId?: string | null
19091
19113
  lsportsFixtureId?: string | null
19114
+ gameProgressBps?: number
19092
19115
  sportGroup: $Enums.SportGroup
19093
19116
  fixtureObjectId: string
19094
19117
  tournamentObjectId: string
@@ -19121,6 +19144,7 @@ export namespace Prisma {
19121
19144
  levrFixtureId?: StringFieldUpdateOperationsInput | string
19122
19145
  opticOddsFixtureId?: NullableStringFieldUpdateOperationsInput | string | null
19123
19146
  lsportsFixtureId?: NullableStringFieldUpdateOperationsInput | string | null
19147
+ gameProgressBps?: IntFieldUpdateOperationsInput | number
19124
19148
  sportGroup?: EnumSportGroupFieldUpdateOperationsInput | $Enums.SportGroup
19125
19149
  createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
19126
19150
  updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -19153,6 +19177,7 @@ export namespace Prisma {
19153
19177
  levrFixtureId?: StringFieldUpdateOperationsInput | string
19154
19178
  opticOddsFixtureId?: NullableStringFieldUpdateOperationsInput | string | null
19155
19179
  lsportsFixtureId?: NullableStringFieldUpdateOperationsInput | string | null
19180
+ gameProgressBps?: IntFieldUpdateOperationsInput | number
19156
19181
  sportGroup?: EnumSportGroupFieldUpdateOperationsInput | $Enums.SportGroup
19157
19182
  fixtureObjectId?: StringFieldUpdateOperationsInput | string
19158
19183
  tournamentObjectId?: StringFieldUpdateOperationsInput | string
@@ -19186,6 +19211,7 @@ export namespace Prisma {
19186
19211
  levrFixtureId: string
19187
19212
  opticOddsFixtureId?: string | null
19188
19213
  lsportsFixtureId?: string | null
19214
+ gameProgressBps?: number
19189
19215
  sportGroup: $Enums.SportGroup
19190
19216
  fixtureObjectId: string
19191
19217
  tournamentObjectId: string
@@ -19216,6 +19242,7 @@ export namespace Prisma {
19216
19242
  levrFixtureId?: StringFieldUpdateOperationsInput | string
19217
19243
  opticOddsFixtureId?: NullableStringFieldUpdateOperationsInput | string | null
19218
19244
  lsportsFixtureId?: NullableStringFieldUpdateOperationsInput | string | null
19245
+ gameProgressBps?: IntFieldUpdateOperationsInput | number
19219
19246
  sportGroup?: EnumSportGroupFieldUpdateOperationsInput | $Enums.SportGroup
19220
19247
  createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
19221
19248
  updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -19243,6 +19270,7 @@ export namespace Prisma {
19243
19270
  levrFixtureId?: StringFieldUpdateOperationsInput | string
19244
19271
  opticOddsFixtureId?: NullableStringFieldUpdateOperationsInput | string | null
19245
19272
  lsportsFixtureId?: NullableStringFieldUpdateOperationsInput | string | null
19273
+ gameProgressBps?: IntFieldUpdateOperationsInput | number
19246
19274
  sportGroup?: EnumSportGroupFieldUpdateOperationsInput | $Enums.SportGroup
19247
19275
  fixtureObjectId?: StringFieldUpdateOperationsInput | string
19248
19276
  tournamentObjectId?: StringFieldUpdateOperationsInput | string
@@ -20577,6 +20605,7 @@ export namespace Prisma {
20577
20605
  levrFixtureId?: SortOrder
20578
20606
  opticOddsFixtureId?: SortOrder
20579
20607
  lsportsFixtureId?: SortOrder
20608
+ gameProgressBps?: SortOrder
20580
20609
  sportGroup?: SortOrder
20581
20610
  fixtureObjectId?: SortOrder
20582
20611
  tournamentObjectId?: SortOrder
@@ -20591,6 +20620,7 @@ export namespace Prisma {
20591
20620
  currentPeriod?: SortOrder
20592
20621
  actualDuration?: SortOrder
20593
20622
  normalizationFactor?: SortOrder
20623
+ gameProgressBps?: SortOrder
20594
20624
  }
20595
20625
 
20596
20626
  export type LevrGameMaxOrderByAggregateInput = {
@@ -20614,6 +20644,7 @@ export namespace Prisma {
20614
20644
  levrFixtureId?: SortOrder
20615
20645
  opticOddsFixtureId?: SortOrder
20616
20646
  lsportsFixtureId?: SortOrder
20647
+ gameProgressBps?: SortOrder
20617
20648
  sportGroup?: SortOrder
20618
20649
  fixtureObjectId?: SortOrder
20619
20650
  tournamentObjectId?: SortOrder
@@ -20643,6 +20674,7 @@ export namespace Prisma {
20643
20674
  levrFixtureId?: SortOrder
20644
20675
  opticOddsFixtureId?: SortOrder
20645
20676
  lsportsFixtureId?: SortOrder
20677
+ gameProgressBps?: SortOrder
20646
20678
  sportGroup?: SortOrder
20647
20679
  fixtureObjectId?: SortOrder
20648
20680
  tournamentObjectId?: SortOrder
@@ -20657,6 +20689,7 @@ export namespace Prisma {
20657
20689
  currentPeriod?: SortOrder
20658
20690
  actualDuration?: SortOrder
20659
20691
  normalizationFactor?: SortOrder
20692
+ gameProgressBps?: SortOrder
20660
20693
  }
20661
20694
 
20662
20695
  export type DateTimeNullableWithAggregatesFilter<$PrismaModel = never> = {
@@ -22126,6 +22159,7 @@ export namespace Prisma {
22126
22159
  levrFixtureId: string
22127
22160
  opticOddsFixtureId?: string | null
22128
22161
  lsportsFixtureId?: string | null
22162
+ gameProgressBps?: number
22129
22163
  sportGroup: $Enums.SportGroup
22130
22164
  createdAt?: Date | string
22131
22165
  updatedAt?: Date | string
@@ -22158,6 +22192,7 @@ export namespace Prisma {
22158
22192
  levrFixtureId: string
22159
22193
  opticOddsFixtureId?: string | null
22160
22194
  lsportsFixtureId?: string | null
22195
+ gameProgressBps?: number
22161
22196
  sportGroup: $Enums.SportGroup
22162
22197
  fixtureObjectId: string
22163
22198
  leagueObjectId: string
@@ -22261,6 +22296,7 @@ export namespace Prisma {
22261
22296
  levrFixtureId?: StringFilter<"LevrGame"> | string
22262
22297
  opticOddsFixtureId?: StringNullableFilter<"LevrGame"> | string | null
22263
22298
  lsportsFixtureId?: StringNullableFilter<"LevrGame"> | string | null
22299
+ gameProgressBps?: IntFilter<"LevrGame"> | number
22264
22300
  sportGroup?: EnumSportGroupFilter<"LevrGame"> | $Enums.SportGroup
22265
22301
  fixtureObjectId?: StringFilter<"LevrGame"> | string
22266
22302
  tournamentObjectId?: StringFilter<"LevrGame"> | string
@@ -22453,6 +22489,7 @@ export namespace Prisma {
22453
22489
  levrFixtureId: string
22454
22490
  opticOddsFixtureId?: string | null
22455
22491
  lsportsFixtureId?: string | null
22492
+ gameProgressBps?: number
22456
22493
  sportGroup: $Enums.SportGroup
22457
22494
  createdAt?: Date | string
22458
22495
  updatedAt?: Date | string
@@ -22485,6 +22522,7 @@ export namespace Prisma {
22485
22522
  levrFixtureId: string
22486
22523
  opticOddsFixtureId?: string | null
22487
22524
  lsportsFixtureId?: string | null
22525
+ gameProgressBps?: number
22488
22526
  sportGroup: $Enums.SportGroup
22489
22527
  fixtureObjectId: string
22490
22528
  tournamentObjectId: string
@@ -22904,6 +22942,7 @@ export namespace Prisma {
22904
22942
  levrFixtureId: string
22905
22943
  opticOddsFixtureId?: string | null
22906
22944
  lsportsFixtureId?: string | null
22945
+ gameProgressBps?: number
22907
22946
  sportGroup: $Enums.SportGroup
22908
22947
  createdAt?: Date | string
22909
22948
  updatedAt?: Date | string
@@ -22936,6 +22975,7 @@ export namespace Prisma {
22936
22975
  levrFixtureId: string
22937
22976
  opticOddsFixtureId?: string | null
22938
22977
  lsportsFixtureId?: string | null
22978
+ gameProgressBps?: number
22939
22979
  sportGroup: $Enums.SportGroup
22940
22980
  tournamentObjectId: string
22941
22981
  leagueObjectId: string
@@ -23036,6 +23076,7 @@ export namespace Prisma {
23036
23076
  levrFixtureId: string
23037
23077
  opticOddsFixtureId?: string | null
23038
23078
  lsportsFixtureId?: string | null
23079
+ gameProgressBps?: number
23039
23080
  sportGroup: $Enums.SportGroup
23040
23081
  createdAt?: Date | string
23041
23082
  updatedAt?: Date | string
@@ -23068,6 +23109,7 @@ export namespace Prisma {
23068
23109
  levrFixtureId: string
23069
23110
  opticOddsFixtureId?: string | null
23070
23111
  lsportsFixtureId?: string | null
23112
+ gameProgressBps?: number
23071
23113
  sportGroup: $Enums.SportGroup
23072
23114
  fixtureObjectId: string
23073
23115
  tournamentObjectId: string
@@ -23115,6 +23157,7 @@ export namespace Prisma {
23115
23157
  levrFixtureId?: StringFieldUpdateOperationsInput | string
23116
23158
  opticOddsFixtureId?: NullableStringFieldUpdateOperationsInput | string | null
23117
23159
  lsportsFixtureId?: NullableStringFieldUpdateOperationsInput | string | null
23160
+ gameProgressBps?: IntFieldUpdateOperationsInput | number
23118
23161
  sportGroup?: EnumSportGroupFieldUpdateOperationsInput | $Enums.SportGroup
23119
23162
  createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
23120
23163
  updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -23146,6 +23189,7 @@ export namespace Prisma {
23146
23189
  levrFixtureId?: StringFieldUpdateOperationsInput | string
23147
23190
  opticOddsFixtureId?: NullableStringFieldUpdateOperationsInput | string | null
23148
23191
  lsportsFixtureId?: NullableStringFieldUpdateOperationsInput | string | null
23192
+ gameProgressBps?: IntFieldUpdateOperationsInput | number
23149
23193
  sportGroup?: EnumSportGroupFieldUpdateOperationsInput | $Enums.SportGroup
23150
23194
  fixtureObjectId?: StringFieldUpdateOperationsInput | string
23151
23195
  tournamentObjectId?: StringFieldUpdateOperationsInput | string
@@ -23689,6 +23733,7 @@ export namespace Prisma {
23689
23733
  levrFixtureId: string
23690
23734
  opticOddsFixtureId?: string | null
23691
23735
  lsportsFixtureId?: string | null
23736
+ gameProgressBps?: number
23692
23737
  sportGroup: $Enums.SportGroup
23693
23738
  createdAt?: Date | string
23694
23739
  updatedAt?: Date | string
@@ -23721,6 +23766,7 @@ export namespace Prisma {
23721
23766
  levrFixtureId: string
23722
23767
  opticOddsFixtureId?: string | null
23723
23768
  lsportsFixtureId?: string | null
23769
+ gameProgressBps?: number
23724
23770
  sportGroup: $Enums.SportGroup
23725
23771
  fixtureObjectId: string
23726
23772
  tournamentObjectId: string
@@ -23815,6 +23861,7 @@ export namespace Prisma {
23815
23861
  levrFixtureId?: StringFieldUpdateOperationsInput | string
23816
23862
  opticOddsFixtureId?: NullableStringFieldUpdateOperationsInput | string | null
23817
23863
  lsportsFixtureId?: NullableStringFieldUpdateOperationsInput | string | null
23864
+ gameProgressBps?: IntFieldUpdateOperationsInput | number
23818
23865
  sportGroup?: EnumSportGroupFieldUpdateOperationsInput | $Enums.SportGroup
23819
23866
  createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
23820
23867
  updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -23846,6 +23893,7 @@ export namespace Prisma {
23846
23893
  levrFixtureId?: StringFieldUpdateOperationsInput | string
23847
23894
  opticOddsFixtureId?: NullableStringFieldUpdateOperationsInput | string | null
23848
23895
  lsportsFixtureId?: NullableStringFieldUpdateOperationsInput | string | null
23896
+ gameProgressBps?: IntFieldUpdateOperationsInput | number
23849
23897
  sportGroup?: EnumSportGroupFieldUpdateOperationsInput | $Enums.SportGroup
23850
23898
  fixtureObjectId?: StringFieldUpdateOperationsInput | string
23851
23899
  tournamentObjectId?: StringFieldUpdateOperationsInput | string
@@ -23917,6 +23965,7 @@ export namespace Prisma {
23917
23965
  levrFixtureId: string
23918
23966
  opticOddsFixtureId?: string | null
23919
23967
  lsportsFixtureId?: string | null
23968
+ gameProgressBps?: number
23920
23969
  sportGroup: $Enums.SportGroup
23921
23970
  fixtureObjectId: string
23922
23971
  leagueObjectId: string
@@ -23960,6 +24009,7 @@ export namespace Prisma {
23960
24009
  levrFixtureId?: StringFieldUpdateOperationsInput | string
23961
24010
  opticOddsFixtureId?: NullableStringFieldUpdateOperationsInput | string | null
23962
24011
  lsportsFixtureId?: NullableStringFieldUpdateOperationsInput | string | null
24012
+ gameProgressBps?: IntFieldUpdateOperationsInput | number
23963
24013
  sportGroup?: EnumSportGroupFieldUpdateOperationsInput | $Enums.SportGroup
23964
24014
  createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
23965
24015
  updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -23991,6 +24041,7 @@ export namespace Prisma {
23991
24041
  levrFixtureId?: StringFieldUpdateOperationsInput | string
23992
24042
  opticOddsFixtureId?: NullableStringFieldUpdateOperationsInput | string | null
23993
24043
  lsportsFixtureId?: NullableStringFieldUpdateOperationsInput | string | null
24044
+ gameProgressBps?: IntFieldUpdateOperationsInput | number
23994
24045
  sportGroup?: EnumSportGroupFieldUpdateOperationsInput | $Enums.SportGroup
23995
24046
  fixtureObjectId?: StringFieldUpdateOperationsInput | string
23996
24047
  leagueObjectId?: StringFieldUpdateOperationsInput | string
@@ -24022,6 +24073,7 @@ export namespace Prisma {
24022
24073
  levrFixtureId?: StringFieldUpdateOperationsInput | string
24023
24074
  opticOddsFixtureId?: NullableStringFieldUpdateOperationsInput | string | null
24024
24075
  lsportsFixtureId?: NullableStringFieldUpdateOperationsInput | string | null
24076
+ gameProgressBps?: IntFieldUpdateOperationsInput | number
24025
24077
  sportGroup?: EnumSportGroupFieldUpdateOperationsInput | $Enums.SportGroup
24026
24078
  fixtureObjectId?: StringFieldUpdateOperationsInput | string
24027
24079
  leagueObjectId?: StringFieldUpdateOperationsInput | string
@@ -24156,6 +24208,7 @@ export namespace Prisma {
24156
24208
  levrFixtureId: string
24157
24209
  opticOddsFixtureId?: string | null
24158
24210
  lsportsFixtureId?: string | null
24211
+ gameProgressBps?: number
24159
24212
  sportGroup: $Enums.SportGroup
24160
24213
  fixtureObjectId: string
24161
24214
  tournamentObjectId: string
@@ -24220,6 +24273,7 @@ export namespace Prisma {
24220
24273
  levrFixtureId?: StringFieldUpdateOperationsInput | string
24221
24274
  opticOddsFixtureId?: NullableStringFieldUpdateOperationsInput | string | null
24222
24275
  lsportsFixtureId?: NullableStringFieldUpdateOperationsInput | string | null
24276
+ gameProgressBps?: IntFieldUpdateOperationsInput | number
24223
24277
  sportGroup?: EnumSportGroupFieldUpdateOperationsInput | $Enums.SportGroup
24224
24278
  createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
24225
24279
  updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -24251,6 +24305,7 @@ export namespace Prisma {
24251
24305
  levrFixtureId?: StringFieldUpdateOperationsInput | string
24252
24306
  opticOddsFixtureId?: NullableStringFieldUpdateOperationsInput | string | null
24253
24307
  lsportsFixtureId?: NullableStringFieldUpdateOperationsInput | string | null
24308
+ gameProgressBps?: IntFieldUpdateOperationsInput | number
24254
24309
  sportGroup?: EnumSportGroupFieldUpdateOperationsInput | $Enums.SportGroup
24255
24310
  fixtureObjectId?: StringFieldUpdateOperationsInput | string
24256
24311
  tournamentObjectId?: StringFieldUpdateOperationsInput | string
@@ -24282,6 +24337,7 @@ export namespace Prisma {
24282
24337
  levrFixtureId?: StringFieldUpdateOperationsInput | string
24283
24338
  opticOddsFixtureId?: NullableStringFieldUpdateOperationsInput | string | null
24284
24339
  lsportsFixtureId?: NullableStringFieldUpdateOperationsInput | string | null
24340
+ gameProgressBps?: IntFieldUpdateOperationsInput | number
24285
24341
  sportGroup?: EnumSportGroupFieldUpdateOperationsInput | $Enums.SportGroup
24286
24342
  fixtureObjectId?: StringFieldUpdateOperationsInput | string
24287
24343
  tournamentObjectId?: StringFieldUpdateOperationsInput | string
@@ -24413,6 +24469,7 @@ export namespace Prisma {
24413
24469
  levrFixtureId: string
24414
24470
  opticOddsFixtureId?: string | null
24415
24471
  lsportsFixtureId?: string | null
24472
+ gameProgressBps?: number
24416
24473
  sportGroup: $Enums.SportGroup
24417
24474
  tournamentObjectId: string
24418
24475
  leagueObjectId: string
@@ -24442,6 +24499,7 @@ export namespace Prisma {
24442
24499
  levrFixtureId?: StringFieldUpdateOperationsInput | string
24443
24500
  opticOddsFixtureId?: NullableStringFieldUpdateOperationsInput | string | null
24444
24501
  lsportsFixtureId?: NullableStringFieldUpdateOperationsInput | string | null
24502
+ gameProgressBps?: IntFieldUpdateOperationsInput | number
24445
24503
  sportGroup?: EnumSportGroupFieldUpdateOperationsInput | $Enums.SportGroup
24446
24504
  createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
24447
24505
  updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
@@ -24473,6 +24531,7 @@ export namespace Prisma {
24473
24531
  levrFixtureId?: StringFieldUpdateOperationsInput | string
24474
24532
  opticOddsFixtureId?: NullableStringFieldUpdateOperationsInput | string | null
24475
24533
  lsportsFixtureId?: NullableStringFieldUpdateOperationsInput | string | null
24534
+ gameProgressBps?: IntFieldUpdateOperationsInput | number
24476
24535
  sportGroup?: EnumSportGroupFieldUpdateOperationsInput | $Enums.SportGroup
24477
24536
  tournamentObjectId?: StringFieldUpdateOperationsInput | string
24478
24537
  leagueObjectId?: StringFieldUpdateOperationsInput | string
@@ -24504,6 +24563,7 @@ export namespace Prisma {
24504
24563
  levrFixtureId?: StringFieldUpdateOperationsInput | string
24505
24564
  opticOddsFixtureId?: NullableStringFieldUpdateOperationsInput | string | null
24506
24565
  lsportsFixtureId?: NullableStringFieldUpdateOperationsInput | string | null
24566
+ gameProgressBps?: IntFieldUpdateOperationsInput | number
24507
24567
  sportGroup?: EnumSportGroupFieldUpdateOperationsInput | $Enums.SportGroup
24508
24568
  tournamentObjectId?: StringFieldUpdateOperationsInput | string
24509
24569
  leagueObjectId?: StringFieldUpdateOperationsInput | string