@levrbet/shared 0.2.7 → 0.2.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/core/prisma/generated/edge.js +6 -4
- package/dist/core/prisma/generated/index-browser.js +3 -1
- package/dist/core/prisma/generated/index.d.ts +403 -221
- package/dist/core/prisma/generated/index.js +6 -4
- package/dist/core/prisma/generated/package.json +1 -1
- package/dist/core/prisma/generated/schema.prisma +7 -5
- package/dist/core/prisma/generated/wasm.js +6 -4
- package/dist/core/types/oracle/fixture.types.d.ts +0 -6
- package/dist/core/types/oracle/game/game.types.d.ts +1 -5
- package/dist/core/types/oracle/game/game.types.js.map +1 -1
- package/dist/core/types/oracle/requests/game.request.types.d.ts +4 -4
- package/dist/core/types/oracle/requests/game.request.types.js +4 -4
- package/dist/core/types/oracle/requests/game.request.types.js.map +1 -1
- package/package.json +1 -1
|
@@ -7637,10 +7637,20 @@ export namespace Prisma {
|
|
|
7637
7637
|
|
|
7638
7638
|
export type AggregateFixture = {
|
|
7639
7639
|
_count: FixtureCountAggregateOutputType | null
|
|
7640
|
+
_avg: FixtureAvgAggregateOutputType | null
|
|
7641
|
+
_sum: FixtureSumAggregateOutputType | null
|
|
7640
7642
|
_min: FixtureMinAggregateOutputType | null
|
|
7641
7643
|
_max: FixtureMaxAggregateOutputType | null
|
|
7642
7644
|
}
|
|
7643
7645
|
|
|
7646
|
+
export type FixtureAvgAggregateOutputType = {
|
|
7647
|
+
registeredChainIds: number | null
|
|
7648
|
+
}
|
|
7649
|
+
|
|
7650
|
+
export type FixtureSumAggregateOutputType = {
|
|
7651
|
+
registeredChainIds: number[]
|
|
7652
|
+
}
|
|
7653
|
+
|
|
7644
7654
|
export type FixtureMinAggregateOutputType = {
|
|
7645
7655
|
objectId: string | null
|
|
7646
7656
|
levrFixtureId: string | null
|
|
@@ -7692,6 +7702,7 @@ export namespace Prisma {
|
|
|
7692
7702
|
homeTeam: number
|
|
7693
7703
|
awayTeam: number
|
|
7694
7704
|
fixtureStatus: number
|
|
7705
|
+
registeredChainIds: number
|
|
7695
7706
|
leagueObjectId: number
|
|
7696
7707
|
createdAt: number
|
|
7697
7708
|
updatedAt: number
|
|
@@ -7699,6 +7710,14 @@ export namespace Prisma {
|
|
|
7699
7710
|
}
|
|
7700
7711
|
|
|
7701
7712
|
|
|
7713
|
+
export type FixtureAvgAggregateInputType = {
|
|
7714
|
+
registeredChainIds?: true
|
|
7715
|
+
}
|
|
7716
|
+
|
|
7717
|
+
export type FixtureSumAggregateInputType = {
|
|
7718
|
+
registeredChainIds?: true
|
|
7719
|
+
}
|
|
7720
|
+
|
|
7702
7721
|
export type FixtureMinAggregateInputType = {
|
|
7703
7722
|
objectId?: true
|
|
7704
7723
|
levrFixtureId?: true
|
|
@@ -7750,6 +7769,7 @@ export namespace Prisma {
|
|
|
7750
7769
|
homeTeam?: true
|
|
7751
7770
|
awayTeam?: true
|
|
7752
7771
|
fixtureStatus?: true
|
|
7772
|
+
registeredChainIds?: true
|
|
7753
7773
|
leagueObjectId?: true
|
|
7754
7774
|
createdAt?: true
|
|
7755
7775
|
updatedAt?: true
|
|
@@ -7791,6 +7811,18 @@ export namespace Prisma {
|
|
|
7791
7811
|
* Count returned Fixtures
|
|
7792
7812
|
**/
|
|
7793
7813
|
_count?: true | FixtureCountAggregateInputType
|
|
7814
|
+
/**
|
|
7815
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
7816
|
+
*
|
|
7817
|
+
* Select which fields to average
|
|
7818
|
+
**/
|
|
7819
|
+
_avg?: FixtureAvgAggregateInputType
|
|
7820
|
+
/**
|
|
7821
|
+
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
7822
|
+
*
|
|
7823
|
+
* Select which fields to sum
|
|
7824
|
+
**/
|
|
7825
|
+
_sum?: FixtureSumAggregateInputType
|
|
7794
7826
|
/**
|
|
7795
7827
|
* {@link https://www.prisma.io/docs/concepts/components/prisma-client/aggregations Aggregation Docs}
|
|
7796
7828
|
*
|
|
@@ -7824,6 +7856,8 @@ export namespace Prisma {
|
|
|
7824
7856
|
take?: number
|
|
7825
7857
|
skip?: number
|
|
7826
7858
|
_count?: FixtureCountAggregateInputType | true
|
|
7859
|
+
_avg?: FixtureAvgAggregateInputType
|
|
7860
|
+
_sum?: FixtureSumAggregateInputType
|
|
7827
7861
|
_min?: FixtureMinAggregateInputType
|
|
7828
7862
|
_max?: FixtureMaxAggregateInputType
|
|
7829
7863
|
}
|
|
@@ -7843,10 +7877,13 @@ export namespace Prisma {
|
|
|
7843
7877
|
homeTeam: JsonValue
|
|
7844
7878
|
awayTeam: JsonValue
|
|
7845
7879
|
fixtureStatus: $Enums.FixtureStatus
|
|
7880
|
+
registeredChainIds: number[]
|
|
7846
7881
|
leagueObjectId: string
|
|
7847
7882
|
createdAt: Date
|
|
7848
7883
|
updatedAt: Date
|
|
7849
7884
|
_count: FixtureCountAggregateOutputType | null
|
|
7885
|
+
_avg: FixtureAvgAggregateOutputType | null
|
|
7886
|
+
_sum: FixtureSumAggregateOutputType | null
|
|
7850
7887
|
_min: FixtureMinAggregateOutputType | null
|
|
7851
7888
|
_max: FixtureMaxAggregateOutputType | null
|
|
7852
7889
|
}
|
|
@@ -7880,11 +7917,11 @@ export namespace Prisma {
|
|
|
7880
7917
|
homeTeam?: boolean
|
|
7881
7918
|
awayTeam?: boolean
|
|
7882
7919
|
fixtureStatus?: boolean
|
|
7920
|
+
registeredChainIds?: boolean
|
|
7883
7921
|
leagueObjectId?: boolean
|
|
7884
7922
|
createdAt?: boolean
|
|
7885
7923
|
updatedAt?: boolean
|
|
7886
7924
|
league?: boolean | LeagueDefaultArgs<ExtArgs>
|
|
7887
|
-
scores?: boolean | Fixture$scoresArgs<ExtArgs>
|
|
7888
7925
|
LevrGame?: boolean | Fixture$LevrGameArgs<ExtArgs>
|
|
7889
7926
|
_count?: boolean | FixtureCountOutputTypeDefaultArgs<ExtArgs>
|
|
7890
7927
|
}, ExtArgs["result"]["fixture"]>
|
|
@@ -7906,15 +7943,15 @@ export namespace Prisma {
|
|
|
7906
7943
|
homeTeam?: boolean
|
|
7907
7944
|
awayTeam?: boolean
|
|
7908
7945
|
fixtureStatus?: boolean
|
|
7946
|
+
registeredChainIds?: boolean
|
|
7909
7947
|
leagueObjectId?: boolean
|
|
7910
7948
|
createdAt?: boolean
|
|
7911
7949
|
updatedAt?: boolean
|
|
7912
7950
|
}
|
|
7913
7951
|
|
|
7914
|
-
export type FixtureOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"objectId" | "levrFixtureId" | "opticOddsFixtureId" | "lsportsFixtureId" | "seasonType" | "venue" | "eventName" | "location" | "venueLocation" | "fixtureDate" | "lastUpdated" | "homeTeam" | "awayTeam" | "fixtureStatus" | "leagueObjectId" | "createdAt" | "updatedAt", ExtArgs["result"]["fixture"]>
|
|
7952
|
+
export type FixtureOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"objectId" | "levrFixtureId" | "opticOddsFixtureId" | "lsportsFixtureId" | "seasonType" | "venue" | "eventName" | "location" | "venueLocation" | "fixtureDate" | "lastUpdated" | "homeTeam" | "awayTeam" | "fixtureStatus" | "registeredChainIds" | "leagueObjectId" | "createdAt" | "updatedAt", ExtArgs["result"]["fixture"]>
|
|
7915
7953
|
export type FixtureInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
7916
7954
|
league?: boolean | LeagueDefaultArgs<ExtArgs>
|
|
7917
|
-
scores?: boolean | Fixture$scoresArgs<ExtArgs>
|
|
7918
7955
|
LevrGame?: boolean | Fixture$LevrGameArgs<ExtArgs>
|
|
7919
7956
|
_count?: boolean | FixtureCountOutputTypeDefaultArgs<ExtArgs>
|
|
7920
7957
|
}
|
|
@@ -7923,7 +7960,6 @@ export namespace Prisma {
|
|
|
7923
7960
|
name: "Fixture"
|
|
7924
7961
|
objects: {
|
|
7925
7962
|
league: Prisma.$LeaguePayload<ExtArgs>
|
|
7926
|
-
scores: Prisma.$ScoresPayload<ExtArgs> | null
|
|
7927
7963
|
LevrGame: Prisma.$LevrGamePayload<ExtArgs>[]
|
|
7928
7964
|
}
|
|
7929
7965
|
scalars: $Extensions.GetPayloadResult<{
|
|
@@ -7941,6 +7977,7 @@ export namespace Prisma {
|
|
|
7941
7977
|
homeTeam: Prisma.JsonValue
|
|
7942
7978
|
awayTeam: Prisma.JsonValue
|
|
7943
7979
|
fixtureStatus: $Enums.FixtureStatus
|
|
7980
|
+
registeredChainIds: number[]
|
|
7944
7981
|
leagueObjectId: string
|
|
7945
7982
|
createdAt: Date
|
|
7946
7983
|
updatedAt: Date
|
|
@@ -8308,7 +8345,6 @@ export namespace Prisma {
|
|
|
8308
8345
|
export interface Prisma__FixtureClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs, GlobalOmitOptions = {}> extends Prisma.PrismaPromise<T> {
|
|
8309
8346
|
readonly [Symbol.toStringTag]: "PrismaPromise"
|
|
8310
8347
|
league<T extends LeagueDefaultArgs<ExtArgs> = {}>(args?: Subset<T, LeagueDefaultArgs<ExtArgs>>): Prisma__LeagueClient<$Result.GetResult<Prisma.$LeaguePayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions>
|
|
8311
|
-
scores<T extends Fixture$scoresArgs<ExtArgs> = {}>(args?: Subset<T, Fixture$scoresArgs<ExtArgs>>): Prisma__ScoresClient<$Result.GetResult<Prisma.$ScoresPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
|
8312
8348
|
LevrGame<T extends Fixture$LevrGameArgs<ExtArgs> = {}>(args?: Subset<T, Fixture$LevrGameArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$LevrGamePayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
8313
8349
|
/**
|
|
8314
8350
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
@@ -8353,6 +8389,7 @@ export namespace Prisma {
|
|
|
8353
8389
|
readonly homeTeam: FieldRef<"Fixture", 'Json'>
|
|
8354
8390
|
readonly awayTeam: FieldRef<"Fixture", 'Json'>
|
|
8355
8391
|
readonly fixtureStatus: FieldRef<"Fixture", 'FixtureStatus'>
|
|
8392
|
+
readonly registeredChainIds: FieldRef<"Fixture", 'Int[]'>
|
|
8356
8393
|
readonly leagueObjectId: FieldRef<"Fixture", 'String'>
|
|
8357
8394
|
readonly createdAt: FieldRef<"Fixture", 'DateTime'>
|
|
8358
8395
|
readonly updatedAt: FieldRef<"Fixture", 'DateTime'>
|
|
@@ -8725,25 +8762,6 @@ export namespace Prisma {
|
|
|
8725
8762
|
options?: InputJsonValue
|
|
8726
8763
|
}
|
|
8727
8764
|
|
|
8728
|
-
/**
|
|
8729
|
-
* Fixture.scores
|
|
8730
|
-
*/
|
|
8731
|
-
export type Fixture$scoresArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
8732
|
-
/**
|
|
8733
|
-
* Select specific fields to fetch from the Scores
|
|
8734
|
-
*/
|
|
8735
|
-
select?: ScoresSelect<ExtArgs> | null
|
|
8736
|
-
/**
|
|
8737
|
-
* Omit specific fields from the Scores
|
|
8738
|
-
*/
|
|
8739
|
-
omit?: ScoresOmit<ExtArgs> | null
|
|
8740
|
-
/**
|
|
8741
|
-
* Choose, which related nodes to fetch as well
|
|
8742
|
-
*/
|
|
8743
|
-
include?: ScoresInclude<ExtArgs> | null
|
|
8744
|
-
where?: ScoresWhereInput
|
|
8745
|
-
}
|
|
8746
|
-
|
|
8747
8765
|
/**
|
|
8748
8766
|
* Fixture.LevrGame
|
|
8749
8767
|
*/
|
|
@@ -8802,18 +8820,21 @@ export namespace Prisma {
|
|
|
8802
8820
|
export type ScoresAvgAggregateOutputType = {
|
|
8803
8821
|
totalScoresHome: number | null
|
|
8804
8822
|
totalScoresAway: number | null
|
|
8823
|
+
chainId: number | null
|
|
8805
8824
|
}
|
|
8806
8825
|
|
|
8807
8826
|
export type ScoresSumAggregateOutputType = {
|
|
8808
8827
|
totalScoresHome: number | null
|
|
8809
8828
|
totalScoresAway: number | null
|
|
8829
|
+
chainId: number | null
|
|
8810
8830
|
}
|
|
8811
8831
|
|
|
8812
8832
|
export type ScoresMinAggregateOutputType = {
|
|
8813
8833
|
objectId: string | null
|
|
8814
8834
|
totalScoresHome: number | null
|
|
8815
8835
|
totalScoresAway: number | null
|
|
8816
|
-
|
|
8836
|
+
chainId: number | null
|
|
8837
|
+
gameObjectId: string | null
|
|
8817
8838
|
createdAt: Date | null
|
|
8818
8839
|
updatedAt: Date | null
|
|
8819
8840
|
}
|
|
@@ -8822,7 +8843,8 @@ export namespace Prisma {
|
|
|
8822
8843
|
objectId: string | null
|
|
8823
8844
|
totalScoresHome: number | null
|
|
8824
8845
|
totalScoresAway: number | null
|
|
8825
|
-
|
|
8846
|
+
chainId: number | null
|
|
8847
|
+
gameObjectId: string | null
|
|
8826
8848
|
createdAt: Date | null
|
|
8827
8849
|
updatedAt: Date | null
|
|
8828
8850
|
}
|
|
@@ -8833,7 +8855,8 @@ export namespace Prisma {
|
|
|
8833
8855
|
scoresByPeriodAway: number
|
|
8834
8856
|
totalScoresHome: number
|
|
8835
8857
|
totalScoresAway: number
|
|
8836
|
-
|
|
8858
|
+
chainId: number
|
|
8859
|
+
gameObjectId: number
|
|
8837
8860
|
createdAt: number
|
|
8838
8861
|
updatedAt: number
|
|
8839
8862
|
_all: number
|
|
@@ -8843,18 +8866,21 @@ export namespace Prisma {
|
|
|
8843
8866
|
export type ScoresAvgAggregateInputType = {
|
|
8844
8867
|
totalScoresHome?: true
|
|
8845
8868
|
totalScoresAway?: true
|
|
8869
|
+
chainId?: true
|
|
8846
8870
|
}
|
|
8847
8871
|
|
|
8848
8872
|
export type ScoresSumAggregateInputType = {
|
|
8849
8873
|
totalScoresHome?: true
|
|
8850
8874
|
totalScoresAway?: true
|
|
8875
|
+
chainId?: true
|
|
8851
8876
|
}
|
|
8852
8877
|
|
|
8853
8878
|
export type ScoresMinAggregateInputType = {
|
|
8854
8879
|
objectId?: true
|
|
8855
8880
|
totalScoresHome?: true
|
|
8856
8881
|
totalScoresAway?: true
|
|
8857
|
-
|
|
8882
|
+
chainId?: true
|
|
8883
|
+
gameObjectId?: true
|
|
8858
8884
|
createdAt?: true
|
|
8859
8885
|
updatedAt?: true
|
|
8860
8886
|
}
|
|
@@ -8863,7 +8889,8 @@ export namespace Prisma {
|
|
|
8863
8889
|
objectId?: true
|
|
8864
8890
|
totalScoresHome?: true
|
|
8865
8891
|
totalScoresAway?: true
|
|
8866
|
-
|
|
8892
|
+
chainId?: true
|
|
8893
|
+
gameObjectId?: true
|
|
8867
8894
|
createdAt?: true
|
|
8868
8895
|
updatedAt?: true
|
|
8869
8896
|
}
|
|
@@ -8874,7 +8901,8 @@ export namespace Prisma {
|
|
|
8874
8901
|
scoresByPeriodAway?: true
|
|
8875
8902
|
totalScoresHome?: true
|
|
8876
8903
|
totalScoresAway?: true
|
|
8877
|
-
|
|
8904
|
+
chainId?: true
|
|
8905
|
+
gameObjectId?: true
|
|
8878
8906
|
createdAt?: true
|
|
8879
8907
|
updatedAt?: true
|
|
8880
8908
|
_all?: true
|
|
@@ -8972,7 +9000,8 @@ export namespace Prisma {
|
|
|
8972
9000
|
scoresByPeriodAway: JsonValue
|
|
8973
9001
|
totalScoresHome: number
|
|
8974
9002
|
totalScoresAway: number
|
|
8975
|
-
|
|
9003
|
+
chainId: number
|
|
9004
|
+
gameObjectId: string
|
|
8976
9005
|
createdAt: Date
|
|
8977
9006
|
updatedAt: Date
|
|
8978
9007
|
_count: ScoresCountAggregateOutputType | null
|
|
@@ -9002,10 +9031,11 @@ export namespace Prisma {
|
|
|
9002
9031
|
scoresByPeriodAway?: boolean
|
|
9003
9032
|
totalScoresHome?: boolean
|
|
9004
9033
|
totalScoresAway?: boolean
|
|
9005
|
-
|
|
9034
|
+
chainId?: boolean
|
|
9035
|
+
gameObjectId?: boolean
|
|
9006
9036
|
createdAt?: boolean
|
|
9007
9037
|
updatedAt?: boolean
|
|
9008
|
-
|
|
9038
|
+
LevrGame?: boolean | LevrGameDefaultArgs<ExtArgs>
|
|
9009
9039
|
}, ExtArgs["result"]["scores"]>
|
|
9010
9040
|
|
|
9011
9041
|
|
|
@@ -9016,20 +9046,21 @@ export namespace Prisma {
|
|
|
9016
9046
|
scoresByPeriodAway?: boolean
|
|
9017
9047
|
totalScoresHome?: boolean
|
|
9018
9048
|
totalScoresAway?: boolean
|
|
9019
|
-
|
|
9049
|
+
chainId?: boolean
|
|
9050
|
+
gameObjectId?: boolean
|
|
9020
9051
|
createdAt?: boolean
|
|
9021
9052
|
updatedAt?: boolean
|
|
9022
9053
|
}
|
|
9023
9054
|
|
|
9024
|
-
export type ScoresOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"objectId" | "scoresByPeriodHome" | "scoresByPeriodAway" | "totalScoresHome" | "totalScoresAway" | "
|
|
9055
|
+
export type ScoresOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"objectId" | "scoresByPeriodHome" | "scoresByPeriodAway" | "totalScoresHome" | "totalScoresAway" | "chainId" | "gameObjectId" | "createdAt" | "updatedAt", ExtArgs["result"]["scores"]>
|
|
9025
9056
|
export type ScoresInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
9026
|
-
|
|
9057
|
+
LevrGame?: boolean | LevrGameDefaultArgs<ExtArgs>
|
|
9027
9058
|
}
|
|
9028
9059
|
|
|
9029
9060
|
export type $ScoresPayload<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
9030
9061
|
name: "Scores"
|
|
9031
9062
|
objects: {
|
|
9032
|
-
|
|
9063
|
+
LevrGame: Prisma.$LevrGamePayload<ExtArgs>
|
|
9033
9064
|
}
|
|
9034
9065
|
scalars: $Extensions.GetPayloadResult<{
|
|
9035
9066
|
objectId: string
|
|
@@ -9037,7 +9068,8 @@ export namespace Prisma {
|
|
|
9037
9068
|
scoresByPeriodAway: Prisma.JsonValue
|
|
9038
9069
|
totalScoresHome: number
|
|
9039
9070
|
totalScoresAway: number
|
|
9040
|
-
|
|
9071
|
+
chainId: number
|
|
9072
|
+
gameObjectId: string
|
|
9041
9073
|
createdAt: Date
|
|
9042
9074
|
updatedAt: Date
|
|
9043
9075
|
}, ExtArgs["result"]["scores"]>
|
|
@@ -9403,7 +9435,7 @@ export namespace Prisma {
|
|
|
9403
9435
|
*/
|
|
9404
9436
|
export interface Prisma__ScoresClient<T, Null = never, ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs, GlobalOmitOptions = {}> extends Prisma.PrismaPromise<T> {
|
|
9405
9437
|
readonly [Symbol.toStringTag]: "PrismaPromise"
|
|
9406
|
-
|
|
9438
|
+
LevrGame<T extends LevrGameDefaultArgs<ExtArgs> = {}>(args?: Subset<T, LevrGameDefaultArgs<ExtArgs>>): Prisma__LevrGameClient<$Result.GetResult<Prisma.$LevrGamePayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions>
|
|
9407
9439
|
/**
|
|
9408
9440
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
9409
9441
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -9438,7 +9470,8 @@ export namespace Prisma {
|
|
|
9438
9470
|
readonly scoresByPeriodAway: FieldRef<"Scores", 'Json'>
|
|
9439
9471
|
readonly totalScoresHome: FieldRef<"Scores", 'Float'>
|
|
9440
9472
|
readonly totalScoresAway: FieldRef<"Scores", 'Float'>
|
|
9441
|
-
readonly
|
|
9473
|
+
readonly chainId: FieldRef<"Scores", 'Int'>
|
|
9474
|
+
readonly gameObjectId: FieldRef<"Scores", 'String'>
|
|
9442
9475
|
readonly createdAt: FieldRef<"Scores", 'DateTime'>
|
|
9443
9476
|
readonly updatedAt: FieldRef<"Scores", 'DateTime'>
|
|
9444
9477
|
}
|
|
@@ -10222,6 +10255,7 @@ export namespace Prisma {
|
|
|
10222
10255
|
fixture?: boolean | FixtureDefaultArgs<ExtArgs>
|
|
10223
10256
|
tournament?: boolean | TournamentDefaultArgs<ExtArgs>
|
|
10224
10257
|
league?: boolean | LeagueDefaultArgs<ExtArgs>
|
|
10258
|
+
scores?: boolean | LevrGame$scoresArgs<ExtArgs>
|
|
10225
10259
|
markets?: boolean | LevrGame$marketsArgs<ExtArgs>
|
|
10226
10260
|
_count?: boolean | LevrGameCountOutputTypeDefaultArgs<ExtArgs>
|
|
10227
10261
|
}, ExtArgs["result"]["levrGame"]>
|
|
@@ -10264,6 +10298,7 @@ export namespace Prisma {
|
|
|
10264
10298
|
fixture?: boolean | FixtureDefaultArgs<ExtArgs>
|
|
10265
10299
|
tournament?: boolean | TournamentDefaultArgs<ExtArgs>
|
|
10266
10300
|
league?: boolean | LeagueDefaultArgs<ExtArgs>
|
|
10301
|
+
scores?: boolean | LevrGame$scoresArgs<ExtArgs>
|
|
10267
10302
|
markets?: boolean | LevrGame$marketsArgs<ExtArgs>
|
|
10268
10303
|
_count?: boolean | LevrGameCountOutputTypeDefaultArgs<ExtArgs>
|
|
10269
10304
|
}
|
|
@@ -10274,6 +10309,7 @@ export namespace Prisma {
|
|
|
10274
10309
|
fixture: Prisma.$FixturePayload<ExtArgs>
|
|
10275
10310
|
tournament: Prisma.$TournamentPayload<ExtArgs>
|
|
10276
10311
|
league: Prisma.$LeaguePayload<ExtArgs>
|
|
10312
|
+
scores: Prisma.$ScoresPayload<ExtArgs> | null
|
|
10277
10313
|
markets: Prisma.$MarketPayload<ExtArgs>[]
|
|
10278
10314
|
}
|
|
10279
10315
|
scalars: $Extensions.GetPayloadResult<{
|
|
@@ -10671,6 +10707,7 @@ export namespace Prisma {
|
|
|
10671
10707
|
fixture<T extends FixtureDefaultArgs<ExtArgs> = {}>(args?: Subset<T, FixtureDefaultArgs<ExtArgs>>): Prisma__FixtureClient<$Result.GetResult<Prisma.$FixturePayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions>
|
|
10672
10708
|
tournament<T extends TournamentDefaultArgs<ExtArgs> = {}>(args?: Subset<T, TournamentDefaultArgs<ExtArgs>>): Prisma__TournamentClient<$Result.GetResult<Prisma.$TournamentPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions>
|
|
10673
10709
|
league<T extends LeagueDefaultArgs<ExtArgs> = {}>(args?: Subset<T, LeagueDefaultArgs<ExtArgs>>): Prisma__LeagueClient<$Result.GetResult<Prisma.$LeaguePayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | Null, Null, ExtArgs, GlobalOmitOptions>
|
|
10710
|
+
scores<T extends LevrGame$scoresArgs<ExtArgs> = {}>(args?: Subset<T, LevrGame$scoresArgs<ExtArgs>>): Prisma__ScoresClient<$Result.GetResult<Prisma.$ScoresPayload<ExtArgs>, T, "findUniqueOrThrow", GlobalOmitOptions> | null, null, ExtArgs, GlobalOmitOptions>
|
|
10674
10711
|
markets<T extends LevrGame$marketsArgs<ExtArgs> = {}>(args?: Subset<T, LevrGame$marketsArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$MarketPayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
10675
10712
|
/**
|
|
10676
10713
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
@@ -11098,6 +11135,25 @@ export namespace Prisma {
|
|
|
11098
11135
|
options?: InputJsonValue
|
|
11099
11136
|
}
|
|
11100
11137
|
|
|
11138
|
+
/**
|
|
11139
|
+
* LevrGame.scores
|
|
11140
|
+
*/
|
|
11141
|
+
export type LevrGame$scoresArgs<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
11142
|
+
/**
|
|
11143
|
+
* Select specific fields to fetch from the Scores
|
|
11144
|
+
*/
|
|
11145
|
+
select?: ScoresSelect<ExtArgs> | null
|
|
11146
|
+
/**
|
|
11147
|
+
* Omit specific fields from the Scores
|
|
11148
|
+
*/
|
|
11149
|
+
omit?: ScoresOmit<ExtArgs> | null
|
|
11150
|
+
/**
|
|
11151
|
+
* Choose, which related nodes to fetch as well
|
|
11152
|
+
*/
|
|
11153
|
+
include?: ScoresInclude<ExtArgs> | null
|
|
11154
|
+
where?: ScoresWhereInput
|
|
11155
|
+
}
|
|
11156
|
+
|
|
11101
11157
|
/**
|
|
11102
11158
|
* LevrGame.markets
|
|
11103
11159
|
*/
|
|
@@ -16592,6 +16648,7 @@ export namespace Prisma {
|
|
|
16592
16648
|
homeTeam: 'homeTeam',
|
|
16593
16649
|
awayTeam: 'awayTeam',
|
|
16594
16650
|
fixtureStatus: 'fixtureStatus',
|
|
16651
|
+
registeredChainIds: 'registeredChainIds',
|
|
16595
16652
|
leagueObjectId: 'leagueObjectId',
|
|
16596
16653
|
createdAt: 'createdAt',
|
|
16597
16654
|
updatedAt: 'updatedAt'
|
|
@@ -16606,7 +16663,8 @@ export namespace Prisma {
|
|
|
16606
16663
|
scoresByPeriodAway: 'scoresByPeriodAway',
|
|
16607
16664
|
totalScoresHome: 'totalScoresHome',
|
|
16608
16665
|
totalScoresAway: 'totalScoresAway',
|
|
16609
|
-
|
|
16666
|
+
chainId: 'chainId',
|
|
16667
|
+
gameObjectId: 'gameObjectId',
|
|
16610
16668
|
createdAt: 'createdAt',
|
|
16611
16669
|
updatedAt: 'updatedAt'
|
|
16612
16670
|
};
|
|
@@ -17415,11 +17473,11 @@ export namespace Prisma {
|
|
|
17415
17473
|
homeTeam?: JsonFilter<"Fixture">
|
|
17416
17474
|
awayTeam?: JsonFilter<"Fixture">
|
|
17417
17475
|
fixtureStatus?: EnumFixtureStatusFilter<"Fixture"> | $Enums.FixtureStatus
|
|
17476
|
+
registeredChainIds?: IntNullableListFilter<"Fixture">
|
|
17418
17477
|
leagueObjectId?: StringFilter<"Fixture"> | string
|
|
17419
17478
|
createdAt?: DateTimeFilter<"Fixture"> | Date | string
|
|
17420
17479
|
updatedAt?: DateTimeFilter<"Fixture"> | Date | string
|
|
17421
17480
|
league?: XOR<LeagueScalarRelationFilter, LeagueWhereInput>
|
|
17422
|
-
scores?: XOR<ScoresNullableScalarRelationFilter, ScoresWhereInput> | null
|
|
17423
17481
|
LevrGame?: LevrGameListRelationFilter
|
|
17424
17482
|
}
|
|
17425
17483
|
|
|
@@ -17438,11 +17496,11 @@ export namespace Prisma {
|
|
|
17438
17496
|
homeTeam?: SortOrder
|
|
17439
17497
|
awayTeam?: SortOrder
|
|
17440
17498
|
fixtureStatus?: SortOrder
|
|
17499
|
+
registeredChainIds?: SortOrder
|
|
17441
17500
|
leagueObjectId?: SortOrder
|
|
17442
17501
|
createdAt?: SortOrder
|
|
17443
17502
|
updatedAt?: SortOrder
|
|
17444
17503
|
league?: LeagueOrderByWithRelationInput
|
|
17445
|
-
scores?: ScoresOrderByWithRelationInput
|
|
17446
17504
|
LevrGame?: LevrGameOrderByRelationAggregateInput
|
|
17447
17505
|
}
|
|
17448
17506
|
|
|
@@ -17464,11 +17522,11 @@ export namespace Prisma {
|
|
|
17464
17522
|
homeTeam?: JsonFilter<"Fixture">
|
|
17465
17523
|
awayTeam?: JsonFilter<"Fixture">
|
|
17466
17524
|
fixtureStatus?: EnumFixtureStatusFilter<"Fixture"> | $Enums.FixtureStatus
|
|
17525
|
+
registeredChainIds?: IntNullableListFilter<"Fixture">
|
|
17467
17526
|
leagueObjectId?: StringFilter<"Fixture"> | string
|
|
17468
17527
|
createdAt?: DateTimeFilter<"Fixture"> | Date | string
|
|
17469
17528
|
updatedAt?: DateTimeFilter<"Fixture"> | Date | string
|
|
17470
17529
|
league?: XOR<LeagueScalarRelationFilter, LeagueWhereInput>
|
|
17471
|
-
scores?: XOR<ScoresNullableScalarRelationFilter, ScoresWhereInput> | null
|
|
17472
17530
|
LevrGame?: LevrGameListRelationFilter
|
|
17473
17531
|
}, "objectId" | "levrFixtureId" | "opticOddsFixtureId" | "lsportsFixtureId">
|
|
17474
17532
|
|
|
@@ -17487,12 +17545,15 @@ export namespace Prisma {
|
|
|
17487
17545
|
homeTeam?: SortOrder
|
|
17488
17546
|
awayTeam?: SortOrder
|
|
17489
17547
|
fixtureStatus?: SortOrder
|
|
17548
|
+
registeredChainIds?: SortOrder
|
|
17490
17549
|
leagueObjectId?: SortOrder
|
|
17491
17550
|
createdAt?: SortOrder
|
|
17492
17551
|
updatedAt?: SortOrder
|
|
17493
17552
|
_count?: FixtureCountOrderByAggregateInput
|
|
17553
|
+
_avg?: FixtureAvgOrderByAggregateInput
|
|
17494
17554
|
_max?: FixtureMaxOrderByAggregateInput
|
|
17495
17555
|
_min?: FixtureMinOrderByAggregateInput
|
|
17556
|
+
_sum?: FixtureSumOrderByAggregateInput
|
|
17496
17557
|
}
|
|
17497
17558
|
|
|
17498
17559
|
export type FixtureScalarWhereWithAggregatesInput = {
|
|
@@ -17513,6 +17574,7 @@ export namespace Prisma {
|
|
|
17513
17574
|
homeTeam?: JsonWithAggregatesFilter<"Fixture">
|
|
17514
17575
|
awayTeam?: JsonWithAggregatesFilter<"Fixture">
|
|
17515
17576
|
fixtureStatus?: EnumFixtureStatusWithAggregatesFilter<"Fixture"> | $Enums.FixtureStatus
|
|
17577
|
+
registeredChainIds?: IntNullableListFilter<"Fixture">
|
|
17516
17578
|
leagueObjectId?: StringWithAggregatesFilter<"Fixture"> | string
|
|
17517
17579
|
createdAt?: DateTimeWithAggregatesFilter<"Fixture"> | Date | string
|
|
17518
17580
|
updatedAt?: DateTimeWithAggregatesFilter<"Fixture"> | Date | string
|
|
@@ -17527,10 +17589,11 @@ export namespace Prisma {
|
|
|
17527
17589
|
scoresByPeriodAway?: JsonFilter<"Scores">
|
|
17528
17590
|
totalScoresHome?: FloatFilter<"Scores"> | number
|
|
17529
17591
|
totalScoresAway?: FloatFilter<"Scores"> | number
|
|
17530
|
-
|
|
17592
|
+
chainId?: IntFilter<"Scores"> | number
|
|
17593
|
+
gameObjectId?: StringFilter<"Scores"> | string
|
|
17531
17594
|
createdAt?: DateTimeFilter<"Scores"> | Date | string
|
|
17532
17595
|
updatedAt?: DateTimeFilter<"Scores"> | Date | string
|
|
17533
|
-
|
|
17596
|
+
LevrGame?: XOR<LevrGameScalarRelationFilter, LevrGameWhereInput>
|
|
17534
17597
|
}
|
|
17535
17598
|
|
|
17536
17599
|
export type ScoresOrderByWithRelationInput = {
|
|
@@ -17539,15 +17602,16 @@ export namespace Prisma {
|
|
|
17539
17602
|
scoresByPeriodAway?: SortOrder
|
|
17540
17603
|
totalScoresHome?: SortOrder
|
|
17541
17604
|
totalScoresAway?: SortOrder
|
|
17542
|
-
|
|
17605
|
+
chainId?: SortOrder
|
|
17606
|
+
gameObjectId?: SortOrder
|
|
17543
17607
|
createdAt?: SortOrder
|
|
17544
17608
|
updatedAt?: SortOrder
|
|
17545
|
-
|
|
17609
|
+
LevrGame?: LevrGameOrderByWithRelationInput
|
|
17546
17610
|
}
|
|
17547
17611
|
|
|
17548
17612
|
export type ScoresWhereUniqueInput = Prisma.AtLeast<{
|
|
17549
17613
|
objectId?: string
|
|
17550
|
-
|
|
17614
|
+
gameObjectId?: string
|
|
17551
17615
|
AND?: ScoresWhereInput | ScoresWhereInput[]
|
|
17552
17616
|
OR?: ScoresWhereInput[]
|
|
17553
17617
|
NOT?: ScoresWhereInput | ScoresWhereInput[]
|
|
@@ -17555,10 +17619,11 @@ export namespace Prisma {
|
|
|
17555
17619
|
scoresByPeriodAway?: JsonFilter<"Scores">
|
|
17556
17620
|
totalScoresHome?: FloatFilter<"Scores"> | number
|
|
17557
17621
|
totalScoresAway?: FloatFilter<"Scores"> | number
|
|
17622
|
+
chainId?: IntFilter<"Scores"> | number
|
|
17558
17623
|
createdAt?: DateTimeFilter<"Scores"> | Date | string
|
|
17559
17624
|
updatedAt?: DateTimeFilter<"Scores"> | Date | string
|
|
17560
|
-
|
|
17561
|
-
}, "objectId" | "
|
|
17625
|
+
LevrGame?: XOR<LevrGameScalarRelationFilter, LevrGameWhereInput>
|
|
17626
|
+
}, "objectId" | "gameObjectId">
|
|
17562
17627
|
|
|
17563
17628
|
export type ScoresOrderByWithAggregationInput = {
|
|
17564
17629
|
objectId?: SortOrder
|
|
@@ -17566,7 +17631,8 @@ export namespace Prisma {
|
|
|
17566
17631
|
scoresByPeriodAway?: SortOrder
|
|
17567
17632
|
totalScoresHome?: SortOrder
|
|
17568
17633
|
totalScoresAway?: SortOrder
|
|
17569
|
-
|
|
17634
|
+
chainId?: SortOrder
|
|
17635
|
+
gameObjectId?: SortOrder
|
|
17570
17636
|
createdAt?: SortOrder
|
|
17571
17637
|
updatedAt?: SortOrder
|
|
17572
17638
|
_count?: ScoresCountOrderByAggregateInput
|
|
@@ -17585,7 +17651,8 @@ export namespace Prisma {
|
|
|
17585
17651
|
scoresByPeriodAway?: JsonWithAggregatesFilter<"Scores">
|
|
17586
17652
|
totalScoresHome?: FloatWithAggregatesFilter<"Scores"> | number
|
|
17587
17653
|
totalScoresAway?: FloatWithAggregatesFilter<"Scores"> | number
|
|
17588
|
-
|
|
17654
|
+
chainId?: IntWithAggregatesFilter<"Scores"> | number
|
|
17655
|
+
gameObjectId?: StringWithAggregatesFilter<"Scores"> | string
|
|
17589
17656
|
createdAt?: DateTimeWithAggregatesFilter<"Scores"> | Date | string
|
|
17590
17657
|
updatedAt?: DateTimeWithAggregatesFilter<"Scores"> | Date | string
|
|
17591
17658
|
}
|
|
@@ -17625,6 +17692,7 @@ export namespace Prisma {
|
|
|
17625
17692
|
fixture?: XOR<FixtureScalarRelationFilter, FixtureWhereInput>
|
|
17626
17693
|
tournament?: XOR<TournamentScalarRelationFilter, TournamentWhereInput>
|
|
17627
17694
|
league?: XOR<LeagueScalarRelationFilter, LeagueWhereInput>
|
|
17695
|
+
scores?: XOR<ScoresNullableScalarRelationFilter, ScoresWhereInput> | null
|
|
17628
17696
|
markets?: MarketListRelationFilter
|
|
17629
17697
|
}
|
|
17630
17698
|
|
|
@@ -17660,6 +17728,7 @@ export namespace Prisma {
|
|
|
17660
17728
|
fixture?: FixtureOrderByWithRelationInput
|
|
17661
17729
|
tournament?: TournamentOrderByWithRelationInput
|
|
17662
17730
|
league?: LeagueOrderByWithRelationInput
|
|
17731
|
+
scores?: ScoresOrderByWithRelationInput
|
|
17663
17732
|
markets?: MarketOrderByRelationAggregateInput
|
|
17664
17733
|
}
|
|
17665
17734
|
|
|
@@ -17700,6 +17769,7 @@ export namespace Prisma {
|
|
|
17700
17769
|
fixture?: XOR<FixtureScalarRelationFilter, FixtureWhereInput>
|
|
17701
17770
|
tournament?: XOR<TournamentScalarRelationFilter, TournamentWhereInput>
|
|
17702
17771
|
league?: XOR<LeagueScalarRelationFilter, LeagueWhereInput>
|
|
17772
|
+
scores?: XOR<ScoresNullableScalarRelationFilter, ScoresWhereInput> | null
|
|
17703
17773
|
markets?: MarketListRelationFilter
|
|
17704
17774
|
}, "objectId" | "gameId" | "txHash" | "chainId_levrFixtureId" | "chainId_gameId">
|
|
17705
17775
|
|
|
@@ -18753,10 +18823,10 @@ export namespace Prisma {
|
|
|
18753
18823
|
homeTeam: InputJsonValue
|
|
18754
18824
|
awayTeam: InputJsonValue
|
|
18755
18825
|
fixtureStatus: $Enums.FixtureStatus
|
|
18826
|
+
registeredChainIds?: FixtureCreateregisteredChainIdsInput | number[]
|
|
18756
18827
|
createdAt?: Date | string
|
|
18757
18828
|
updatedAt?: Date | string
|
|
18758
18829
|
league: LeagueCreateNestedOneWithoutFixturesInput
|
|
18759
|
-
scores?: ScoresCreateNestedOneWithoutFixtureInput
|
|
18760
18830
|
LevrGame?: LevrGameCreateNestedManyWithoutFixtureInput
|
|
18761
18831
|
}
|
|
18762
18832
|
|
|
@@ -18775,10 +18845,10 @@ export namespace Prisma {
|
|
|
18775
18845
|
homeTeam: InputJsonValue
|
|
18776
18846
|
awayTeam: InputJsonValue
|
|
18777
18847
|
fixtureStatus: $Enums.FixtureStatus
|
|
18848
|
+
registeredChainIds?: FixtureCreateregisteredChainIdsInput | number[]
|
|
18778
18849
|
leagueObjectId: string
|
|
18779
18850
|
createdAt?: Date | string
|
|
18780
18851
|
updatedAt?: Date | string
|
|
18781
|
-
scores?: ScoresUncheckedCreateNestedOneWithoutFixtureInput
|
|
18782
18852
|
LevrGame?: LevrGameUncheckedCreateNestedManyWithoutFixtureInput
|
|
18783
18853
|
}
|
|
18784
18854
|
|
|
@@ -18796,10 +18866,10 @@ export namespace Prisma {
|
|
|
18796
18866
|
homeTeam?: InputJsonValue | InputJsonValue
|
|
18797
18867
|
awayTeam?: InputJsonValue | InputJsonValue
|
|
18798
18868
|
fixtureStatus?: EnumFixtureStatusFieldUpdateOperationsInput | $Enums.FixtureStatus
|
|
18869
|
+
registeredChainIds?: FixtureUpdateregisteredChainIdsInput | number[]
|
|
18799
18870
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
18800
18871
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
18801
18872
|
league?: LeagueUpdateOneRequiredWithoutFixturesNestedInput
|
|
18802
|
-
scores?: ScoresUpdateOneWithoutFixtureNestedInput
|
|
18803
18873
|
LevrGame?: LevrGameUpdateManyWithoutFixtureNestedInput
|
|
18804
18874
|
}
|
|
18805
18875
|
|
|
@@ -18817,10 +18887,10 @@ export namespace Prisma {
|
|
|
18817
18887
|
homeTeam?: InputJsonValue | InputJsonValue
|
|
18818
18888
|
awayTeam?: InputJsonValue | InputJsonValue
|
|
18819
18889
|
fixtureStatus?: EnumFixtureStatusFieldUpdateOperationsInput | $Enums.FixtureStatus
|
|
18890
|
+
registeredChainIds?: FixtureUpdateregisteredChainIdsInput | number[]
|
|
18820
18891
|
leagueObjectId?: StringFieldUpdateOperationsInput | string
|
|
18821
18892
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
18822
18893
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
18823
|
-
scores?: ScoresUncheckedUpdateOneWithoutFixtureNestedInput
|
|
18824
18894
|
LevrGame?: LevrGameUncheckedUpdateManyWithoutFixtureNestedInput
|
|
18825
18895
|
}
|
|
18826
18896
|
|
|
@@ -18839,6 +18909,7 @@ export namespace Prisma {
|
|
|
18839
18909
|
homeTeam: InputJsonValue
|
|
18840
18910
|
awayTeam: InputJsonValue
|
|
18841
18911
|
fixtureStatus: $Enums.FixtureStatus
|
|
18912
|
+
registeredChainIds?: FixtureCreateregisteredChainIdsInput | number[]
|
|
18842
18913
|
leagueObjectId: string
|
|
18843
18914
|
createdAt?: Date | string
|
|
18844
18915
|
updatedAt?: Date | string
|
|
@@ -18858,6 +18929,7 @@ export namespace Prisma {
|
|
|
18858
18929
|
homeTeam?: InputJsonValue | InputJsonValue
|
|
18859
18930
|
awayTeam?: InputJsonValue | InputJsonValue
|
|
18860
18931
|
fixtureStatus?: EnumFixtureStatusFieldUpdateOperationsInput | $Enums.FixtureStatus
|
|
18932
|
+
registeredChainIds?: FixtureUpdateregisteredChainIdsInput | number[]
|
|
18861
18933
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
18862
18934
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
18863
18935
|
}
|
|
@@ -18876,6 +18948,7 @@ export namespace Prisma {
|
|
|
18876
18948
|
homeTeam?: InputJsonValue | InputJsonValue
|
|
18877
18949
|
awayTeam?: InputJsonValue | InputJsonValue
|
|
18878
18950
|
fixtureStatus?: EnumFixtureStatusFieldUpdateOperationsInput | $Enums.FixtureStatus
|
|
18951
|
+
registeredChainIds?: FixtureUpdateregisteredChainIdsInput | number[]
|
|
18879
18952
|
leagueObjectId?: StringFieldUpdateOperationsInput | string
|
|
18880
18953
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
18881
18954
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
@@ -18887,9 +18960,10 @@ export namespace Prisma {
|
|
|
18887
18960
|
scoresByPeriodAway: InputJsonValue
|
|
18888
18961
|
totalScoresHome: number
|
|
18889
18962
|
totalScoresAway: number
|
|
18963
|
+
chainId: number
|
|
18890
18964
|
createdAt?: Date | string
|
|
18891
18965
|
updatedAt?: Date | string
|
|
18892
|
-
|
|
18966
|
+
LevrGame: LevrGameCreateNestedOneWithoutScoresInput
|
|
18893
18967
|
}
|
|
18894
18968
|
|
|
18895
18969
|
export type ScoresUncheckedCreateInput = {
|
|
@@ -18898,7 +18972,8 @@ export namespace Prisma {
|
|
|
18898
18972
|
scoresByPeriodAway: InputJsonValue
|
|
18899
18973
|
totalScoresHome: number
|
|
18900
18974
|
totalScoresAway: number
|
|
18901
|
-
|
|
18975
|
+
chainId: number
|
|
18976
|
+
gameObjectId: string
|
|
18902
18977
|
createdAt?: Date | string
|
|
18903
18978
|
updatedAt?: Date | string
|
|
18904
18979
|
}
|
|
@@ -18908,9 +18983,10 @@ export namespace Prisma {
|
|
|
18908
18983
|
scoresByPeriodAway?: InputJsonValue | InputJsonValue
|
|
18909
18984
|
totalScoresHome?: FloatFieldUpdateOperationsInput | number
|
|
18910
18985
|
totalScoresAway?: FloatFieldUpdateOperationsInput | number
|
|
18986
|
+
chainId?: IntFieldUpdateOperationsInput | number
|
|
18911
18987
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
18912
18988
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
18913
|
-
|
|
18989
|
+
LevrGame?: LevrGameUpdateOneRequiredWithoutScoresNestedInput
|
|
18914
18990
|
}
|
|
18915
18991
|
|
|
18916
18992
|
export type ScoresUncheckedUpdateInput = {
|
|
@@ -18918,7 +18994,8 @@ export namespace Prisma {
|
|
|
18918
18994
|
scoresByPeriodAway?: InputJsonValue | InputJsonValue
|
|
18919
18995
|
totalScoresHome?: FloatFieldUpdateOperationsInput | number
|
|
18920
18996
|
totalScoresAway?: FloatFieldUpdateOperationsInput | number
|
|
18921
|
-
|
|
18997
|
+
chainId?: IntFieldUpdateOperationsInput | number
|
|
18998
|
+
gameObjectId?: StringFieldUpdateOperationsInput | string
|
|
18922
18999
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
18923
19000
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
18924
19001
|
}
|
|
@@ -18929,7 +19006,8 @@ export namespace Prisma {
|
|
|
18929
19006
|
scoresByPeriodAway: InputJsonValue
|
|
18930
19007
|
totalScoresHome: number
|
|
18931
19008
|
totalScoresAway: number
|
|
18932
|
-
|
|
19009
|
+
chainId: number
|
|
19010
|
+
gameObjectId: string
|
|
18933
19011
|
createdAt?: Date | string
|
|
18934
19012
|
updatedAt?: Date | string
|
|
18935
19013
|
}
|
|
@@ -18939,6 +19017,7 @@ export namespace Prisma {
|
|
|
18939
19017
|
scoresByPeriodAway?: InputJsonValue | InputJsonValue
|
|
18940
19018
|
totalScoresHome?: FloatFieldUpdateOperationsInput | number
|
|
18941
19019
|
totalScoresAway?: FloatFieldUpdateOperationsInput | number
|
|
19020
|
+
chainId?: IntFieldUpdateOperationsInput | number
|
|
18942
19021
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
18943
19022
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
18944
19023
|
}
|
|
@@ -18948,7 +19027,8 @@ export namespace Prisma {
|
|
|
18948
19027
|
scoresByPeriodAway?: InputJsonValue | InputJsonValue
|
|
18949
19028
|
totalScoresHome?: FloatFieldUpdateOperationsInput | number
|
|
18950
19029
|
totalScoresAway?: FloatFieldUpdateOperationsInput | number
|
|
18951
|
-
|
|
19030
|
+
chainId?: IntFieldUpdateOperationsInput | number
|
|
19031
|
+
gameObjectId?: StringFieldUpdateOperationsInput | string
|
|
18952
19032
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
18953
19033
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
18954
19034
|
}
|
|
@@ -18982,6 +19062,7 @@ export namespace Prisma {
|
|
|
18982
19062
|
fixture: FixtureCreateNestedOneWithoutLevrGameInput
|
|
18983
19063
|
tournament: TournamentCreateNestedOneWithoutGamesInput
|
|
18984
19064
|
league: LeagueCreateNestedOneWithoutGamesInput
|
|
19065
|
+
scores?: ScoresCreateNestedOneWithoutLevrGameInput
|
|
18985
19066
|
markets?: MarketCreateNestedManyWithoutLevrGameInput
|
|
18986
19067
|
}
|
|
18987
19068
|
|
|
@@ -19014,6 +19095,7 @@ export namespace Prisma {
|
|
|
19014
19095
|
leagueObjectId: string
|
|
19015
19096
|
createdAt?: Date | string
|
|
19016
19097
|
updatedAt?: Date | string
|
|
19098
|
+
scores?: ScoresUncheckedCreateNestedOneWithoutLevrGameInput
|
|
19017
19099
|
markets?: MarketUncheckedCreateNestedManyWithoutLevrGameInput
|
|
19018
19100
|
}
|
|
19019
19101
|
|
|
@@ -19045,6 +19127,7 @@ export namespace Prisma {
|
|
|
19045
19127
|
fixture?: FixtureUpdateOneRequiredWithoutLevrGameNestedInput
|
|
19046
19128
|
tournament?: TournamentUpdateOneRequiredWithoutGamesNestedInput
|
|
19047
19129
|
league?: LeagueUpdateOneRequiredWithoutGamesNestedInput
|
|
19130
|
+
scores?: ScoresUpdateOneWithoutLevrGameNestedInput
|
|
19048
19131
|
markets?: MarketUpdateManyWithoutLevrGameNestedInput
|
|
19049
19132
|
}
|
|
19050
19133
|
|
|
@@ -19076,6 +19159,7 @@ export namespace Prisma {
|
|
|
19076
19159
|
leagueObjectId?: StringFieldUpdateOperationsInput | string
|
|
19077
19160
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
19078
19161
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
19162
|
+
scores?: ScoresUncheckedUpdateOneWithoutLevrGameNestedInput
|
|
19079
19163
|
markets?: MarketUncheckedUpdateManyWithoutLevrGameNestedInput
|
|
19080
19164
|
}
|
|
19081
19165
|
|
|
@@ -20229,9 +20313,12 @@ export namespace Prisma {
|
|
|
20229
20313
|
not?: NestedEnumFixtureStatusFilter<$PrismaModel> | $Enums.FixtureStatus
|
|
20230
20314
|
}
|
|
20231
20315
|
|
|
20232
|
-
export type
|
|
20233
|
-
|
|
20234
|
-
|
|
20316
|
+
export type IntNullableListFilter<$PrismaModel = never> = {
|
|
20317
|
+
equals?: number[] | ListIntFieldRefInput<$PrismaModel> | null
|
|
20318
|
+
has?: number | IntFieldRefInput<$PrismaModel> | null
|
|
20319
|
+
hasEvery?: number[] | ListIntFieldRefInput<$PrismaModel>
|
|
20320
|
+
hasSome?: number[] | ListIntFieldRefInput<$PrismaModel>
|
|
20321
|
+
isEmpty?: boolean
|
|
20235
20322
|
}
|
|
20236
20323
|
|
|
20237
20324
|
export type FixtureCountOrderByAggregateInput = {
|
|
@@ -20249,11 +20336,16 @@ export namespace Prisma {
|
|
|
20249
20336
|
homeTeam?: SortOrder
|
|
20250
20337
|
awayTeam?: SortOrder
|
|
20251
20338
|
fixtureStatus?: SortOrder
|
|
20339
|
+
registeredChainIds?: SortOrder
|
|
20252
20340
|
leagueObjectId?: SortOrder
|
|
20253
20341
|
createdAt?: SortOrder
|
|
20254
20342
|
updatedAt?: SortOrder
|
|
20255
20343
|
}
|
|
20256
20344
|
|
|
20345
|
+
export type FixtureAvgOrderByAggregateInput = {
|
|
20346
|
+
registeredChainIds?: SortOrder
|
|
20347
|
+
}
|
|
20348
|
+
|
|
20257
20349
|
export type FixtureMaxOrderByAggregateInput = {
|
|
20258
20350
|
objectId?: SortOrder
|
|
20259
20351
|
levrFixtureId?: SortOrder
|
|
@@ -20290,6 +20382,10 @@ export namespace Prisma {
|
|
|
20290
20382
|
updatedAt?: SortOrder
|
|
20291
20383
|
}
|
|
20292
20384
|
|
|
20385
|
+
export type FixtureSumOrderByAggregateInput = {
|
|
20386
|
+
registeredChainIds?: SortOrder
|
|
20387
|
+
}
|
|
20388
|
+
|
|
20293
20389
|
export type StringNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
20294
20390
|
equals?: string | StringFieldRefInput<$PrismaModel> | null
|
|
20295
20391
|
in?: string[] | ListStringFieldRefInput<$PrismaModel> | null
|
|
@@ -20344,9 +20440,9 @@ export namespace Prisma {
|
|
|
20344
20440
|
not?: NestedFloatFilter<$PrismaModel> | number
|
|
20345
20441
|
}
|
|
20346
20442
|
|
|
20347
|
-
export type
|
|
20348
|
-
is?:
|
|
20349
|
-
isNot?:
|
|
20443
|
+
export type LevrGameScalarRelationFilter = {
|
|
20444
|
+
is?: LevrGameWhereInput
|
|
20445
|
+
isNot?: LevrGameWhereInput
|
|
20350
20446
|
}
|
|
20351
20447
|
|
|
20352
20448
|
export type ScoresCountOrderByAggregateInput = {
|
|
@@ -20355,7 +20451,8 @@ export namespace Prisma {
|
|
|
20355
20451
|
scoresByPeriodAway?: SortOrder
|
|
20356
20452
|
totalScoresHome?: SortOrder
|
|
20357
20453
|
totalScoresAway?: SortOrder
|
|
20358
|
-
|
|
20454
|
+
chainId?: SortOrder
|
|
20455
|
+
gameObjectId?: SortOrder
|
|
20359
20456
|
createdAt?: SortOrder
|
|
20360
20457
|
updatedAt?: SortOrder
|
|
20361
20458
|
}
|
|
@@ -20363,13 +20460,15 @@ export namespace Prisma {
|
|
|
20363
20460
|
export type ScoresAvgOrderByAggregateInput = {
|
|
20364
20461
|
totalScoresHome?: SortOrder
|
|
20365
20462
|
totalScoresAway?: SortOrder
|
|
20463
|
+
chainId?: SortOrder
|
|
20366
20464
|
}
|
|
20367
20465
|
|
|
20368
20466
|
export type ScoresMaxOrderByAggregateInput = {
|
|
20369
20467
|
objectId?: SortOrder
|
|
20370
20468
|
totalScoresHome?: SortOrder
|
|
20371
20469
|
totalScoresAway?: SortOrder
|
|
20372
|
-
|
|
20470
|
+
chainId?: SortOrder
|
|
20471
|
+
gameObjectId?: SortOrder
|
|
20373
20472
|
createdAt?: SortOrder
|
|
20374
20473
|
updatedAt?: SortOrder
|
|
20375
20474
|
}
|
|
@@ -20378,7 +20477,8 @@ export namespace Prisma {
|
|
|
20378
20477
|
objectId?: SortOrder
|
|
20379
20478
|
totalScoresHome?: SortOrder
|
|
20380
20479
|
totalScoresAway?: SortOrder
|
|
20381
|
-
|
|
20480
|
+
chainId?: SortOrder
|
|
20481
|
+
gameObjectId?: SortOrder
|
|
20382
20482
|
createdAt?: SortOrder
|
|
20383
20483
|
updatedAt?: SortOrder
|
|
20384
20484
|
}
|
|
@@ -20386,6 +20486,7 @@ export namespace Prisma {
|
|
|
20386
20486
|
export type ScoresSumOrderByAggregateInput = {
|
|
20387
20487
|
totalScoresHome?: SortOrder
|
|
20388
20488
|
totalScoresAway?: SortOrder
|
|
20489
|
+
chainId?: SortOrder
|
|
20389
20490
|
}
|
|
20390
20491
|
|
|
20391
20492
|
export type FloatWithAggregatesFilter<$PrismaModel = never> = {
|
|
@@ -20423,6 +20524,16 @@ export namespace Prisma {
|
|
|
20423
20524
|
not?: NestedEnumGamePhaseFilter<$PrismaModel> | $Enums.GamePhase
|
|
20424
20525
|
}
|
|
20425
20526
|
|
|
20527
|
+
export type FixtureScalarRelationFilter = {
|
|
20528
|
+
is?: FixtureWhereInput
|
|
20529
|
+
isNot?: FixtureWhereInput
|
|
20530
|
+
}
|
|
20531
|
+
|
|
20532
|
+
export type ScoresNullableScalarRelationFilter = {
|
|
20533
|
+
is?: ScoresWhereInput | null
|
|
20534
|
+
isNot?: ScoresWhereInput | null
|
|
20535
|
+
}
|
|
20536
|
+
|
|
20426
20537
|
export type MarketListRelationFilter = {
|
|
20427
20538
|
every?: MarketWhereInput
|
|
20428
20539
|
some?: MarketWhereInput
|
|
@@ -20705,11 +20816,6 @@ export namespace Prisma {
|
|
|
20705
20816
|
_max?: NestedEnumMarketStatusFilter<$PrismaModel>
|
|
20706
20817
|
}
|
|
20707
20818
|
|
|
20708
|
-
export type LevrGameScalarRelationFilter = {
|
|
20709
|
-
is?: LevrGameWhereInput
|
|
20710
|
-
isNot?: LevrGameWhereInput
|
|
20711
|
-
}
|
|
20712
|
-
|
|
20713
20819
|
export type OddsListRelationFilter = {
|
|
20714
20820
|
every?: OddsWhereInput
|
|
20715
20821
|
some?: OddsWhereInput
|
|
@@ -21295,18 +21401,16 @@ export namespace Prisma {
|
|
|
21295
21401
|
update?: XOR<XOR<LeagueUpdateToOneWithWhereWithoutTeamsInput, LeagueUpdateWithoutTeamsInput>, LeagueUncheckedUpdateWithoutTeamsInput>
|
|
21296
21402
|
}
|
|
21297
21403
|
|
|
21404
|
+
export type FixtureCreateregisteredChainIdsInput = {
|
|
21405
|
+
set: number[]
|
|
21406
|
+
}
|
|
21407
|
+
|
|
21298
21408
|
export type LeagueCreateNestedOneWithoutFixturesInput = {
|
|
21299
21409
|
create?: XOR<LeagueCreateWithoutFixturesInput, LeagueUncheckedCreateWithoutFixturesInput>
|
|
21300
21410
|
connectOrCreate?: LeagueCreateOrConnectWithoutFixturesInput
|
|
21301
21411
|
connect?: LeagueWhereUniqueInput
|
|
21302
21412
|
}
|
|
21303
21413
|
|
|
21304
|
-
export type ScoresCreateNestedOneWithoutFixtureInput = {
|
|
21305
|
-
create?: XOR<ScoresCreateWithoutFixtureInput, ScoresUncheckedCreateWithoutFixtureInput>
|
|
21306
|
-
connectOrCreate?: ScoresCreateOrConnectWithoutFixtureInput
|
|
21307
|
-
connect?: ScoresWhereUniqueInput
|
|
21308
|
-
}
|
|
21309
|
-
|
|
21310
21414
|
export type LevrGameCreateNestedManyWithoutFixtureInput = {
|
|
21311
21415
|
create?: XOR<LevrGameCreateWithoutFixtureInput, LevrGameUncheckedCreateWithoutFixtureInput> | LevrGameCreateWithoutFixtureInput[] | LevrGameUncheckedCreateWithoutFixtureInput[]
|
|
21312
21416
|
connectOrCreate?: LevrGameCreateOrConnectWithoutFixtureInput | LevrGameCreateOrConnectWithoutFixtureInput[]
|
|
@@ -21314,12 +21418,6 @@ export namespace Prisma {
|
|
|
21314
21418
|
connect?: LevrGameWhereUniqueInput | LevrGameWhereUniqueInput[]
|
|
21315
21419
|
}
|
|
21316
21420
|
|
|
21317
|
-
export type ScoresUncheckedCreateNestedOneWithoutFixtureInput = {
|
|
21318
|
-
create?: XOR<ScoresCreateWithoutFixtureInput, ScoresUncheckedCreateWithoutFixtureInput>
|
|
21319
|
-
connectOrCreate?: ScoresCreateOrConnectWithoutFixtureInput
|
|
21320
|
-
connect?: ScoresWhereUniqueInput
|
|
21321
|
-
}
|
|
21322
|
-
|
|
21323
21421
|
export type LevrGameUncheckedCreateNestedManyWithoutFixtureInput = {
|
|
21324
21422
|
create?: XOR<LevrGameCreateWithoutFixtureInput, LevrGameUncheckedCreateWithoutFixtureInput> | LevrGameCreateWithoutFixtureInput[] | LevrGameUncheckedCreateWithoutFixtureInput[]
|
|
21325
21423
|
connectOrCreate?: LevrGameCreateOrConnectWithoutFixtureInput | LevrGameCreateOrConnectWithoutFixtureInput[]
|
|
@@ -21336,6 +21434,11 @@ export namespace Prisma {
|
|
|
21336
21434
|
set?: $Enums.FixtureStatus
|
|
21337
21435
|
}
|
|
21338
21436
|
|
|
21437
|
+
export type FixtureUpdateregisteredChainIdsInput = {
|
|
21438
|
+
set?: number[]
|
|
21439
|
+
push?: number | number[]
|
|
21440
|
+
}
|
|
21441
|
+
|
|
21339
21442
|
export type LeagueUpdateOneRequiredWithoutFixturesNestedInput = {
|
|
21340
21443
|
create?: XOR<LeagueCreateWithoutFixturesInput, LeagueUncheckedCreateWithoutFixturesInput>
|
|
21341
21444
|
connectOrCreate?: LeagueCreateOrConnectWithoutFixturesInput
|
|
@@ -21344,16 +21447,6 @@ export namespace Prisma {
|
|
|
21344
21447
|
update?: XOR<XOR<LeagueUpdateToOneWithWhereWithoutFixturesInput, LeagueUpdateWithoutFixturesInput>, LeagueUncheckedUpdateWithoutFixturesInput>
|
|
21345
21448
|
}
|
|
21346
21449
|
|
|
21347
|
-
export type ScoresUpdateOneWithoutFixtureNestedInput = {
|
|
21348
|
-
create?: XOR<ScoresCreateWithoutFixtureInput, ScoresUncheckedCreateWithoutFixtureInput>
|
|
21349
|
-
connectOrCreate?: ScoresCreateOrConnectWithoutFixtureInput
|
|
21350
|
-
upsert?: ScoresUpsertWithoutFixtureInput
|
|
21351
|
-
disconnect?: ScoresWhereInput | boolean
|
|
21352
|
-
delete?: ScoresWhereInput | boolean
|
|
21353
|
-
connect?: ScoresWhereUniqueInput
|
|
21354
|
-
update?: XOR<XOR<ScoresUpdateToOneWithWhereWithoutFixtureInput, ScoresUpdateWithoutFixtureInput>, ScoresUncheckedUpdateWithoutFixtureInput>
|
|
21355
|
-
}
|
|
21356
|
-
|
|
21357
21450
|
export type LevrGameUpdateManyWithoutFixtureNestedInput = {
|
|
21358
21451
|
create?: XOR<LevrGameCreateWithoutFixtureInput, LevrGameUncheckedCreateWithoutFixtureInput> | LevrGameCreateWithoutFixtureInput[] | LevrGameUncheckedCreateWithoutFixtureInput[]
|
|
21359
21452
|
connectOrCreate?: LevrGameCreateOrConnectWithoutFixtureInput | LevrGameCreateOrConnectWithoutFixtureInput[]
|
|
@@ -21368,16 +21461,6 @@ export namespace Prisma {
|
|
|
21368
21461
|
deleteMany?: LevrGameScalarWhereInput | LevrGameScalarWhereInput[]
|
|
21369
21462
|
}
|
|
21370
21463
|
|
|
21371
|
-
export type ScoresUncheckedUpdateOneWithoutFixtureNestedInput = {
|
|
21372
|
-
create?: XOR<ScoresCreateWithoutFixtureInput, ScoresUncheckedCreateWithoutFixtureInput>
|
|
21373
|
-
connectOrCreate?: ScoresCreateOrConnectWithoutFixtureInput
|
|
21374
|
-
upsert?: ScoresUpsertWithoutFixtureInput
|
|
21375
|
-
disconnect?: ScoresWhereInput | boolean
|
|
21376
|
-
delete?: ScoresWhereInput | boolean
|
|
21377
|
-
connect?: ScoresWhereUniqueInput
|
|
21378
|
-
update?: XOR<XOR<ScoresUpdateToOneWithWhereWithoutFixtureInput, ScoresUpdateWithoutFixtureInput>, ScoresUncheckedUpdateWithoutFixtureInput>
|
|
21379
|
-
}
|
|
21380
|
-
|
|
21381
21464
|
export type LevrGameUncheckedUpdateManyWithoutFixtureNestedInput = {
|
|
21382
21465
|
create?: XOR<LevrGameCreateWithoutFixtureInput, LevrGameUncheckedCreateWithoutFixtureInput> | LevrGameCreateWithoutFixtureInput[] | LevrGameUncheckedCreateWithoutFixtureInput[]
|
|
21383
21466
|
connectOrCreate?: LevrGameCreateOrConnectWithoutFixtureInput | LevrGameCreateOrConnectWithoutFixtureInput[]
|
|
@@ -21392,10 +21475,10 @@ export namespace Prisma {
|
|
|
21392
21475
|
deleteMany?: LevrGameScalarWhereInput | LevrGameScalarWhereInput[]
|
|
21393
21476
|
}
|
|
21394
21477
|
|
|
21395
|
-
export type
|
|
21396
|
-
create?: XOR<
|
|
21397
|
-
connectOrCreate?:
|
|
21398
|
-
connect?:
|
|
21478
|
+
export type LevrGameCreateNestedOneWithoutScoresInput = {
|
|
21479
|
+
create?: XOR<LevrGameCreateWithoutScoresInput, LevrGameUncheckedCreateWithoutScoresInput>
|
|
21480
|
+
connectOrCreate?: LevrGameCreateOrConnectWithoutScoresInput
|
|
21481
|
+
connect?: LevrGameWhereUniqueInput
|
|
21399
21482
|
}
|
|
21400
21483
|
|
|
21401
21484
|
export type FloatFieldUpdateOperationsInput = {
|
|
@@ -21406,12 +21489,12 @@ export namespace Prisma {
|
|
|
21406
21489
|
divide?: number
|
|
21407
21490
|
}
|
|
21408
21491
|
|
|
21409
|
-
export type
|
|
21410
|
-
create?: XOR<
|
|
21411
|
-
connectOrCreate?:
|
|
21412
|
-
upsert?:
|
|
21413
|
-
connect?:
|
|
21414
|
-
update?: XOR<XOR<
|
|
21492
|
+
export type LevrGameUpdateOneRequiredWithoutScoresNestedInput = {
|
|
21493
|
+
create?: XOR<LevrGameCreateWithoutScoresInput, LevrGameUncheckedCreateWithoutScoresInput>
|
|
21494
|
+
connectOrCreate?: LevrGameCreateOrConnectWithoutScoresInput
|
|
21495
|
+
upsert?: LevrGameUpsertWithoutScoresInput
|
|
21496
|
+
connect?: LevrGameWhereUniqueInput
|
|
21497
|
+
update?: XOR<XOR<LevrGameUpdateToOneWithWhereWithoutScoresInput, LevrGameUpdateWithoutScoresInput>, LevrGameUncheckedUpdateWithoutScoresInput>
|
|
21415
21498
|
}
|
|
21416
21499
|
|
|
21417
21500
|
export type FixtureCreateNestedOneWithoutLevrGameInput = {
|
|
@@ -21432,6 +21515,12 @@ export namespace Prisma {
|
|
|
21432
21515
|
connect?: LeagueWhereUniqueInput
|
|
21433
21516
|
}
|
|
21434
21517
|
|
|
21518
|
+
export type ScoresCreateNestedOneWithoutLevrGameInput = {
|
|
21519
|
+
create?: XOR<ScoresCreateWithoutLevrGameInput, ScoresUncheckedCreateWithoutLevrGameInput>
|
|
21520
|
+
connectOrCreate?: ScoresCreateOrConnectWithoutLevrGameInput
|
|
21521
|
+
connect?: ScoresWhereUniqueInput
|
|
21522
|
+
}
|
|
21523
|
+
|
|
21435
21524
|
export type MarketCreateNestedManyWithoutLevrGameInput = {
|
|
21436
21525
|
create?: XOR<MarketCreateWithoutLevrGameInput, MarketUncheckedCreateWithoutLevrGameInput> | MarketCreateWithoutLevrGameInput[] | MarketUncheckedCreateWithoutLevrGameInput[]
|
|
21437
21526
|
connectOrCreate?: MarketCreateOrConnectWithoutLevrGameInput | MarketCreateOrConnectWithoutLevrGameInput[]
|
|
@@ -21439,6 +21528,12 @@ export namespace Prisma {
|
|
|
21439
21528
|
connect?: MarketWhereUniqueInput | MarketWhereUniqueInput[]
|
|
21440
21529
|
}
|
|
21441
21530
|
|
|
21531
|
+
export type ScoresUncheckedCreateNestedOneWithoutLevrGameInput = {
|
|
21532
|
+
create?: XOR<ScoresCreateWithoutLevrGameInput, ScoresUncheckedCreateWithoutLevrGameInput>
|
|
21533
|
+
connectOrCreate?: ScoresCreateOrConnectWithoutLevrGameInput
|
|
21534
|
+
connect?: ScoresWhereUniqueInput
|
|
21535
|
+
}
|
|
21536
|
+
|
|
21442
21537
|
export type MarketUncheckedCreateNestedManyWithoutLevrGameInput = {
|
|
21443
21538
|
create?: XOR<MarketCreateWithoutLevrGameInput, MarketUncheckedCreateWithoutLevrGameInput> | MarketCreateWithoutLevrGameInput[] | MarketUncheckedCreateWithoutLevrGameInput[]
|
|
21444
21539
|
connectOrCreate?: MarketCreateOrConnectWithoutLevrGameInput | MarketCreateOrConnectWithoutLevrGameInput[]
|
|
@@ -21479,6 +21574,16 @@ export namespace Prisma {
|
|
|
21479
21574
|
update?: XOR<XOR<LeagueUpdateToOneWithWhereWithoutGamesInput, LeagueUpdateWithoutGamesInput>, LeagueUncheckedUpdateWithoutGamesInput>
|
|
21480
21575
|
}
|
|
21481
21576
|
|
|
21577
|
+
export type ScoresUpdateOneWithoutLevrGameNestedInput = {
|
|
21578
|
+
create?: XOR<ScoresCreateWithoutLevrGameInput, ScoresUncheckedCreateWithoutLevrGameInput>
|
|
21579
|
+
connectOrCreate?: ScoresCreateOrConnectWithoutLevrGameInput
|
|
21580
|
+
upsert?: ScoresUpsertWithoutLevrGameInput
|
|
21581
|
+
disconnect?: ScoresWhereInput | boolean
|
|
21582
|
+
delete?: ScoresWhereInput | boolean
|
|
21583
|
+
connect?: ScoresWhereUniqueInput
|
|
21584
|
+
update?: XOR<XOR<ScoresUpdateToOneWithWhereWithoutLevrGameInput, ScoresUpdateWithoutLevrGameInput>, ScoresUncheckedUpdateWithoutLevrGameInput>
|
|
21585
|
+
}
|
|
21586
|
+
|
|
21482
21587
|
export type MarketUpdateManyWithoutLevrGameNestedInput = {
|
|
21483
21588
|
create?: XOR<MarketCreateWithoutLevrGameInput, MarketUncheckedCreateWithoutLevrGameInput> | MarketCreateWithoutLevrGameInput[] | MarketUncheckedCreateWithoutLevrGameInput[]
|
|
21484
21589
|
connectOrCreate?: MarketCreateOrConnectWithoutLevrGameInput | MarketCreateOrConnectWithoutLevrGameInput[]
|
|
@@ -21493,6 +21598,16 @@ export namespace Prisma {
|
|
|
21493
21598
|
deleteMany?: MarketScalarWhereInput | MarketScalarWhereInput[]
|
|
21494
21599
|
}
|
|
21495
21600
|
|
|
21601
|
+
export type ScoresUncheckedUpdateOneWithoutLevrGameNestedInput = {
|
|
21602
|
+
create?: XOR<ScoresCreateWithoutLevrGameInput, ScoresUncheckedCreateWithoutLevrGameInput>
|
|
21603
|
+
connectOrCreate?: ScoresCreateOrConnectWithoutLevrGameInput
|
|
21604
|
+
upsert?: ScoresUpsertWithoutLevrGameInput
|
|
21605
|
+
disconnect?: ScoresWhereInput | boolean
|
|
21606
|
+
delete?: ScoresWhereInput | boolean
|
|
21607
|
+
connect?: ScoresWhereUniqueInput
|
|
21608
|
+
update?: XOR<XOR<ScoresUpdateToOneWithWhereWithoutLevrGameInput, ScoresUpdateWithoutLevrGameInput>, ScoresUncheckedUpdateWithoutLevrGameInput>
|
|
21609
|
+
}
|
|
21610
|
+
|
|
21496
21611
|
export type MarketUncheckedUpdateManyWithoutLevrGameNestedInput = {
|
|
21497
21612
|
create?: XOR<MarketCreateWithoutLevrGameInput, MarketUncheckedCreateWithoutLevrGameInput> | MarketCreateWithoutLevrGameInput[] | MarketUncheckedCreateWithoutLevrGameInput[]
|
|
21498
21613
|
connectOrCreate?: MarketCreateOrConnectWithoutLevrGameInput | MarketCreateOrConnectWithoutLevrGameInput[]
|
|
@@ -22016,6 +22131,7 @@ export namespace Prisma {
|
|
|
22016
22131
|
updatedAt?: Date | string
|
|
22017
22132
|
fixture: FixtureCreateNestedOneWithoutLevrGameInput
|
|
22018
22133
|
league: LeagueCreateNestedOneWithoutGamesInput
|
|
22134
|
+
scores?: ScoresCreateNestedOneWithoutLevrGameInput
|
|
22019
22135
|
markets?: MarketCreateNestedManyWithoutLevrGameInput
|
|
22020
22136
|
}
|
|
22021
22137
|
|
|
@@ -22047,6 +22163,7 @@ export namespace Prisma {
|
|
|
22047
22163
|
leagueObjectId: string
|
|
22048
22164
|
createdAt?: Date | string
|
|
22049
22165
|
updatedAt?: Date | string
|
|
22166
|
+
scores?: ScoresUncheckedCreateNestedOneWithoutLevrGameInput
|
|
22050
22167
|
markets?: MarketUncheckedCreateNestedManyWithoutLevrGameInput
|
|
22051
22168
|
}
|
|
22052
22169
|
|
|
@@ -22341,6 +22458,7 @@ export namespace Prisma {
|
|
|
22341
22458
|
updatedAt?: Date | string
|
|
22342
22459
|
fixture: FixtureCreateNestedOneWithoutLevrGameInput
|
|
22343
22460
|
tournament: TournamentCreateNestedOneWithoutGamesInput
|
|
22461
|
+
scores?: ScoresCreateNestedOneWithoutLevrGameInput
|
|
22344
22462
|
markets?: MarketCreateNestedManyWithoutLevrGameInput
|
|
22345
22463
|
}
|
|
22346
22464
|
|
|
@@ -22372,6 +22490,7 @@ export namespace Prisma {
|
|
|
22372
22490
|
tournamentObjectId: string
|
|
22373
22491
|
createdAt?: Date | string
|
|
22374
22492
|
updatedAt?: Date | string
|
|
22493
|
+
scores?: ScoresUncheckedCreateNestedOneWithoutLevrGameInput
|
|
22375
22494
|
markets?: MarketUncheckedCreateNestedManyWithoutLevrGameInput
|
|
22376
22495
|
}
|
|
22377
22496
|
|
|
@@ -22399,9 +22518,9 @@ export namespace Prisma {
|
|
|
22399
22518
|
homeTeam: InputJsonValue
|
|
22400
22519
|
awayTeam: InputJsonValue
|
|
22401
22520
|
fixtureStatus: $Enums.FixtureStatus
|
|
22521
|
+
registeredChainIds?: FixtureCreateregisteredChainIdsInput | number[]
|
|
22402
22522
|
createdAt?: Date | string
|
|
22403
22523
|
updatedAt?: Date | string
|
|
22404
|
-
scores?: ScoresCreateNestedOneWithoutFixtureInput
|
|
22405
22524
|
LevrGame?: LevrGameCreateNestedManyWithoutFixtureInput
|
|
22406
22525
|
}
|
|
22407
22526
|
|
|
@@ -22420,9 +22539,9 @@ export namespace Prisma {
|
|
|
22420
22539
|
homeTeam: InputJsonValue
|
|
22421
22540
|
awayTeam: InputJsonValue
|
|
22422
22541
|
fixtureStatus: $Enums.FixtureStatus
|
|
22542
|
+
registeredChainIds?: FixtureCreateregisteredChainIdsInput | number[]
|
|
22423
22543
|
createdAt?: Date | string
|
|
22424
22544
|
updatedAt?: Date | string
|
|
22425
|
-
scores?: ScoresUncheckedCreateNestedOneWithoutFixtureInput
|
|
22426
22545
|
LevrGame?: LevrGameUncheckedCreateNestedManyWithoutFixtureInput
|
|
22427
22546
|
}
|
|
22428
22547
|
|
|
@@ -22600,6 +22719,7 @@ export namespace Prisma {
|
|
|
22600
22719
|
homeTeam?: JsonFilter<"Fixture">
|
|
22601
22720
|
awayTeam?: JsonFilter<"Fixture">
|
|
22602
22721
|
fixtureStatus?: EnumFixtureStatusFilter<"Fixture"> | $Enums.FixtureStatus
|
|
22722
|
+
registeredChainIds?: IntNullableListFilter<"Fixture">
|
|
22603
22723
|
leagueObjectId?: StringFilter<"Fixture"> | string
|
|
22604
22724
|
createdAt?: DateTimeFilter<"Fixture"> | Date | string
|
|
22605
22725
|
updatedAt?: DateTimeFilter<"Fixture"> | Date | string
|
|
@@ -22761,31 +22881,6 @@ export namespace Prisma {
|
|
|
22761
22881
|
create: XOR<LeagueCreateWithoutFixturesInput, LeagueUncheckedCreateWithoutFixturesInput>
|
|
22762
22882
|
}
|
|
22763
22883
|
|
|
22764
|
-
export type ScoresCreateWithoutFixtureInput = {
|
|
22765
|
-
objectId?: string
|
|
22766
|
-
scoresByPeriodHome: InputJsonValue
|
|
22767
|
-
scoresByPeriodAway: InputJsonValue
|
|
22768
|
-
totalScoresHome: number
|
|
22769
|
-
totalScoresAway: number
|
|
22770
|
-
createdAt?: Date | string
|
|
22771
|
-
updatedAt?: Date | string
|
|
22772
|
-
}
|
|
22773
|
-
|
|
22774
|
-
export type ScoresUncheckedCreateWithoutFixtureInput = {
|
|
22775
|
-
objectId?: string
|
|
22776
|
-
scoresByPeriodHome: InputJsonValue
|
|
22777
|
-
scoresByPeriodAway: InputJsonValue
|
|
22778
|
-
totalScoresHome: number
|
|
22779
|
-
totalScoresAway: number
|
|
22780
|
-
createdAt?: Date | string
|
|
22781
|
-
updatedAt?: Date | string
|
|
22782
|
-
}
|
|
22783
|
-
|
|
22784
|
-
export type ScoresCreateOrConnectWithoutFixtureInput = {
|
|
22785
|
-
where: ScoresWhereUniqueInput
|
|
22786
|
-
create: XOR<ScoresCreateWithoutFixtureInput, ScoresUncheckedCreateWithoutFixtureInput>
|
|
22787
|
-
}
|
|
22788
|
-
|
|
22789
22884
|
export type LevrGameCreateWithoutFixtureInput = {
|
|
22790
22885
|
objectId?: string
|
|
22791
22886
|
gameId: number
|
|
@@ -22814,6 +22909,7 @@ export namespace Prisma {
|
|
|
22814
22909
|
updatedAt?: Date | string
|
|
22815
22910
|
tournament: TournamentCreateNestedOneWithoutGamesInput
|
|
22816
22911
|
league: LeagueCreateNestedOneWithoutGamesInput
|
|
22912
|
+
scores?: ScoresCreateNestedOneWithoutLevrGameInput
|
|
22817
22913
|
markets?: MarketCreateNestedManyWithoutLevrGameInput
|
|
22818
22914
|
}
|
|
22819
22915
|
|
|
@@ -22845,6 +22941,7 @@ export namespace Prisma {
|
|
|
22845
22941
|
leagueObjectId: string
|
|
22846
22942
|
createdAt?: Date | string
|
|
22847
22943
|
updatedAt?: Date | string
|
|
22944
|
+
scores?: ScoresUncheckedCreateNestedOneWithoutLevrGameInput
|
|
22848
22945
|
markets?: MarketUncheckedCreateNestedManyWithoutLevrGameInput
|
|
22849
22946
|
}
|
|
22850
22947
|
|
|
@@ -22900,35 +22997,6 @@ export namespace Prisma {
|
|
|
22900
22997
|
teams?: TeamDataUncheckedUpdateManyWithoutLeagueNestedInput
|
|
22901
22998
|
}
|
|
22902
22999
|
|
|
22903
|
-
export type ScoresUpsertWithoutFixtureInput = {
|
|
22904
|
-
update: XOR<ScoresUpdateWithoutFixtureInput, ScoresUncheckedUpdateWithoutFixtureInput>
|
|
22905
|
-
create: XOR<ScoresCreateWithoutFixtureInput, ScoresUncheckedCreateWithoutFixtureInput>
|
|
22906
|
-
where?: ScoresWhereInput
|
|
22907
|
-
}
|
|
22908
|
-
|
|
22909
|
-
export type ScoresUpdateToOneWithWhereWithoutFixtureInput = {
|
|
22910
|
-
where?: ScoresWhereInput
|
|
22911
|
-
data: XOR<ScoresUpdateWithoutFixtureInput, ScoresUncheckedUpdateWithoutFixtureInput>
|
|
22912
|
-
}
|
|
22913
|
-
|
|
22914
|
-
export type ScoresUpdateWithoutFixtureInput = {
|
|
22915
|
-
scoresByPeriodHome?: InputJsonValue | InputJsonValue
|
|
22916
|
-
scoresByPeriodAway?: InputJsonValue | InputJsonValue
|
|
22917
|
-
totalScoresHome?: FloatFieldUpdateOperationsInput | number
|
|
22918
|
-
totalScoresAway?: FloatFieldUpdateOperationsInput | number
|
|
22919
|
-
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
22920
|
-
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
22921
|
-
}
|
|
22922
|
-
|
|
22923
|
-
export type ScoresUncheckedUpdateWithoutFixtureInput = {
|
|
22924
|
-
scoresByPeriodHome?: InputJsonValue | InputJsonValue
|
|
22925
|
-
scoresByPeriodAway?: InputJsonValue | InputJsonValue
|
|
22926
|
-
totalScoresHome?: FloatFieldUpdateOperationsInput | number
|
|
22927
|
-
totalScoresAway?: FloatFieldUpdateOperationsInput | number
|
|
22928
|
-
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
22929
|
-
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
22930
|
-
}
|
|
22931
|
-
|
|
22932
23000
|
export type LevrGameUpsertWithWhereUniqueWithoutFixtureInput = {
|
|
22933
23001
|
where: LevrGameWhereUniqueInput
|
|
22934
23002
|
update: XOR<LevrGameUpdateWithoutFixtureInput, LevrGameUncheckedUpdateWithoutFixtureInput>
|
|
@@ -22945,102 +23013,146 @@ export namespace Prisma {
|
|
|
22945
23013
|
data: XOR<LevrGameUpdateManyMutationInput, LevrGameUncheckedUpdateManyWithoutFixtureInput>
|
|
22946
23014
|
}
|
|
22947
23015
|
|
|
22948
|
-
export type
|
|
23016
|
+
export type LevrGameCreateWithoutScoresInput = {
|
|
22949
23017
|
objectId?: string
|
|
22950
|
-
|
|
22951
|
-
|
|
22952
|
-
|
|
23018
|
+
gameId: number
|
|
23019
|
+
txHash: string
|
|
23020
|
+
chainId: number
|
|
22953
23021
|
seasonType: string
|
|
22954
23022
|
venue: string
|
|
22955
23023
|
eventName: string
|
|
22956
23024
|
location: string
|
|
22957
23025
|
venueLocation: string
|
|
23026
|
+
gameClock: string
|
|
23027
|
+
paused?: boolean
|
|
22958
23028
|
fixtureDate: Date | string
|
|
22959
|
-
|
|
23029
|
+
wentLiveAt?: Date | string | null
|
|
22960
23030
|
homeTeam: InputJsonValue
|
|
22961
23031
|
awayTeam: InputJsonValue
|
|
22962
|
-
|
|
23032
|
+
currentPeriod?: number
|
|
23033
|
+
actualDuration?: number
|
|
23034
|
+
normalizationFactor: number
|
|
23035
|
+
gamePhase?: $Enums.GamePhase
|
|
23036
|
+
levrFixtureId: string
|
|
23037
|
+
opticOddsFixtureId?: string | null
|
|
23038
|
+
lsportsFixtureId?: string | null
|
|
23039
|
+
sportGroup: $Enums.SportGroup
|
|
22963
23040
|
createdAt?: Date | string
|
|
22964
23041
|
updatedAt?: Date | string
|
|
22965
|
-
|
|
22966
|
-
|
|
23042
|
+
fixture: FixtureCreateNestedOneWithoutLevrGameInput
|
|
23043
|
+
tournament: TournamentCreateNestedOneWithoutGamesInput
|
|
23044
|
+
league: LeagueCreateNestedOneWithoutGamesInput
|
|
23045
|
+
markets?: MarketCreateNestedManyWithoutLevrGameInput
|
|
22967
23046
|
}
|
|
22968
23047
|
|
|
22969
|
-
export type
|
|
23048
|
+
export type LevrGameUncheckedCreateWithoutScoresInput = {
|
|
22970
23049
|
objectId?: string
|
|
22971
|
-
|
|
22972
|
-
|
|
22973
|
-
|
|
23050
|
+
gameId: number
|
|
23051
|
+
txHash: string
|
|
23052
|
+
chainId: number
|
|
22974
23053
|
seasonType: string
|
|
22975
23054
|
venue: string
|
|
22976
23055
|
eventName: string
|
|
22977
23056
|
location: string
|
|
22978
23057
|
venueLocation: string
|
|
23058
|
+
gameClock: string
|
|
23059
|
+
paused?: boolean
|
|
22979
23060
|
fixtureDate: Date | string
|
|
22980
|
-
|
|
23061
|
+
wentLiveAt?: Date | string | null
|
|
22981
23062
|
homeTeam: InputJsonValue
|
|
22982
23063
|
awayTeam: InputJsonValue
|
|
22983
|
-
|
|
23064
|
+
currentPeriod?: number
|
|
23065
|
+
actualDuration?: number
|
|
23066
|
+
normalizationFactor: number
|
|
23067
|
+
gamePhase?: $Enums.GamePhase
|
|
23068
|
+
levrFixtureId: string
|
|
23069
|
+
opticOddsFixtureId?: string | null
|
|
23070
|
+
lsportsFixtureId?: string | null
|
|
23071
|
+
sportGroup: $Enums.SportGroup
|
|
23072
|
+
fixtureObjectId: string
|
|
23073
|
+
tournamentObjectId: string
|
|
22984
23074
|
leagueObjectId: string
|
|
22985
23075
|
createdAt?: Date | string
|
|
22986
23076
|
updatedAt?: Date | string
|
|
22987
|
-
|
|
23077
|
+
markets?: MarketUncheckedCreateNestedManyWithoutLevrGameInput
|
|
22988
23078
|
}
|
|
22989
23079
|
|
|
22990
|
-
export type
|
|
22991
|
-
where:
|
|
22992
|
-
create: XOR<
|
|
23080
|
+
export type LevrGameCreateOrConnectWithoutScoresInput = {
|
|
23081
|
+
where: LevrGameWhereUniqueInput
|
|
23082
|
+
create: XOR<LevrGameCreateWithoutScoresInput, LevrGameUncheckedCreateWithoutScoresInput>
|
|
22993
23083
|
}
|
|
22994
23084
|
|
|
22995
|
-
export type
|
|
22996
|
-
update: XOR<
|
|
22997
|
-
create: XOR<
|
|
22998
|
-
where?:
|
|
23085
|
+
export type LevrGameUpsertWithoutScoresInput = {
|
|
23086
|
+
update: XOR<LevrGameUpdateWithoutScoresInput, LevrGameUncheckedUpdateWithoutScoresInput>
|
|
23087
|
+
create: XOR<LevrGameCreateWithoutScoresInput, LevrGameUncheckedCreateWithoutScoresInput>
|
|
23088
|
+
where?: LevrGameWhereInput
|
|
22999
23089
|
}
|
|
23000
23090
|
|
|
23001
|
-
export type
|
|
23002
|
-
where?:
|
|
23003
|
-
data: XOR<
|
|
23091
|
+
export type LevrGameUpdateToOneWithWhereWithoutScoresInput = {
|
|
23092
|
+
where?: LevrGameWhereInput
|
|
23093
|
+
data: XOR<LevrGameUpdateWithoutScoresInput, LevrGameUncheckedUpdateWithoutScoresInput>
|
|
23004
23094
|
}
|
|
23005
23095
|
|
|
23006
|
-
export type
|
|
23007
|
-
|
|
23008
|
-
|
|
23009
|
-
|
|
23096
|
+
export type LevrGameUpdateWithoutScoresInput = {
|
|
23097
|
+
gameId?: IntFieldUpdateOperationsInput | number
|
|
23098
|
+
txHash?: StringFieldUpdateOperationsInput | string
|
|
23099
|
+
chainId?: IntFieldUpdateOperationsInput | number
|
|
23010
23100
|
seasonType?: StringFieldUpdateOperationsInput | string
|
|
23011
23101
|
venue?: StringFieldUpdateOperationsInput | string
|
|
23012
23102
|
eventName?: StringFieldUpdateOperationsInput | string
|
|
23013
23103
|
location?: StringFieldUpdateOperationsInput | string
|
|
23014
23104
|
venueLocation?: StringFieldUpdateOperationsInput | string
|
|
23105
|
+
gameClock?: StringFieldUpdateOperationsInput | string
|
|
23106
|
+
paused?: BoolFieldUpdateOperationsInput | boolean
|
|
23015
23107
|
fixtureDate?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
23016
|
-
|
|
23108
|
+
wentLiveAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
23017
23109
|
homeTeam?: InputJsonValue | InputJsonValue
|
|
23018
23110
|
awayTeam?: InputJsonValue | InputJsonValue
|
|
23019
|
-
|
|
23111
|
+
currentPeriod?: IntFieldUpdateOperationsInput | number
|
|
23112
|
+
actualDuration?: FloatFieldUpdateOperationsInput | number
|
|
23113
|
+
normalizationFactor?: FloatFieldUpdateOperationsInput | number
|
|
23114
|
+
gamePhase?: EnumGamePhaseFieldUpdateOperationsInput | $Enums.GamePhase
|
|
23115
|
+
levrFixtureId?: StringFieldUpdateOperationsInput | string
|
|
23116
|
+
opticOddsFixtureId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23117
|
+
lsportsFixtureId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23118
|
+
sportGroup?: EnumSportGroupFieldUpdateOperationsInput | $Enums.SportGroup
|
|
23020
23119
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
23021
23120
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
23022
|
-
|
|
23023
|
-
|
|
23121
|
+
fixture?: FixtureUpdateOneRequiredWithoutLevrGameNestedInput
|
|
23122
|
+
tournament?: TournamentUpdateOneRequiredWithoutGamesNestedInput
|
|
23123
|
+
league?: LeagueUpdateOneRequiredWithoutGamesNestedInput
|
|
23124
|
+
markets?: MarketUpdateManyWithoutLevrGameNestedInput
|
|
23024
23125
|
}
|
|
23025
23126
|
|
|
23026
|
-
export type
|
|
23027
|
-
|
|
23028
|
-
|
|
23029
|
-
|
|
23127
|
+
export type LevrGameUncheckedUpdateWithoutScoresInput = {
|
|
23128
|
+
gameId?: IntFieldUpdateOperationsInput | number
|
|
23129
|
+
txHash?: StringFieldUpdateOperationsInput | string
|
|
23130
|
+
chainId?: IntFieldUpdateOperationsInput | number
|
|
23030
23131
|
seasonType?: StringFieldUpdateOperationsInput | string
|
|
23031
23132
|
venue?: StringFieldUpdateOperationsInput | string
|
|
23032
23133
|
eventName?: StringFieldUpdateOperationsInput | string
|
|
23033
23134
|
location?: StringFieldUpdateOperationsInput | string
|
|
23034
23135
|
venueLocation?: StringFieldUpdateOperationsInput | string
|
|
23136
|
+
gameClock?: StringFieldUpdateOperationsInput | string
|
|
23137
|
+
paused?: BoolFieldUpdateOperationsInput | boolean
|
|
23035
23138
|
fixtureDate?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
23036
|
-
|
|
23139
|
+
wentLiveAt?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
23037
23140
|
homeTeam?: InputJsonValue | InputJsonValue
|
|
23038
23141
|
awayTeam?: InputJsonValue | InputJsonValue
|
|
23039
|
-
|
|
23142
|
+
currentPeriod?: IntFieldUpdateOperationsInput | number
|
|
23143
|
+
actualDuration?: FloatFieldUpdateOperationsInput | number
|
|
23144
|
+
normalizationFactor?: FloatFieldUpdateOperationsInput | number
|
|
23145
|
+
gamePhase?: EnumGamePhaseFieldUpdateOperationsInput | $Enums.GamePhase
|
|
23146
|
+
levrFixtureId?: StringFieldUpdateOperationsInput | string
|
|
23147
|
+
opticOddsFixtureId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23148
|
+
lsportsFixtureId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23149
|
+
sportGroup?: EnumSportGroupFieldUpdateOperationsInput | $Enums.SportGroup
|
|
23150
|
+
fixtureObjectId?: StringFieldUpdateOperationsInput | string
|
|
23151
|
+
tournamentObjectId?: StringFieldUpdateOperationsInput | string
|
|
23040
23152
|
leagueObjectId?: StringFieldUpdateOperationsInput | string
|
|
23041
23153
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
23042
23154
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
23043
|
-
|
|
23155
|
+
markets?: MarketUncheckedUpdateManyWithoutLevrGameNestedInput
|
|
23044
23156
|
}
|
|
23045
23157
|
|
|
23046
23158
|
export type FixtureCreateWithoutLevrGameInput = {
|
|
@@ -23058,10 +23170,10 @@ export namespace Prisma {
|
|
|
23058
23170
|
homeTeam: InputJsonValue
|
|
23059
23171
|
awayTeam: InputJsonValue
|
|
23060
23172
|
fixtureStatus: $Enums.FixtureStatus
|
|
23173
|
+
registeredChainIds?: FixtureCreateregisteredChainIdsInput | number[]
|
|
23061
23174
|
createdAt?: Date | string
|
|
23062
23175
|
updatedAt?: Date | string
|
|
23063
23176
|
league: LeagueCreateNestedOneWithoutFixturesInput
|
|
23064
|
-
scores?: ScoresCreateNestedOneWithoutFixtureInput
|
|
23065
23177
|
}
|
|
23066
23178
|
|
|
23067
23179
|
export type FixtureUncheckedCreateWithoutLevrGameInput = {
|
|
@@ -23079,10 +23191,10 @@ export namespace Prisma {
|
|
|
23079
23191
|
homeTeam: InputJsonValue
|
|
23080
23192
|
awayTeam: InputJsonValue
|
|
23081
23193
|
fixtureStatus: $Enums.FixtureStatus
|
|
23194
|
+
registeredChainIds?: FixtureCreateregisteredChainIdsInput | number[]
|
|
23082
23195
|
leagueObjectId: string
|
|
23083
23196
|
createdAt?: Date | string
|
|
23084
23197
|
updatedAt?: Date | string
|
|
23085
|
-
scores?: ScoresUncheckedCreateNestedOneWithoutFixtureInput
|
|
23086
23198
|
}
|
|
23087
23199
|
|
|
23088
23200
|
export type FixtureCreateOrConnectWithoutLevrGameInput = {
|
|
@@ -23162,6 +23274,33 @@ export namespace Prisma {
|
|
|
23162
23274
|
create: XOR<LeagueCreateWithoutGamesInput, LeagueUncheckedCreateWithoutGamesInput>
|
|
23163
23275
|
}
|
|
23164
23276
|
|
|
23277
|
+
export type ScoresCreateWithoutLevrGameInput = {
|
|
23278
|
+
objectId?: string
|
|
23279
|
+
scoresByPeriodHome: InputJsonValue
|
|
23280
|
+
scoresByPeriodAway: InputJsonValue
|
|
23281
|
+
totalScoresHome: number
|
|
23282
|
+
totalScoresAway: number
|
|
23283
|
+
chainId: number
|
|
23284
|
+
createdAt?: Date | string
|
|
23285
|
+
updatedAt?: Date | string
|
|
23286
|
+
}
|
|
23287
|
+
|
|
23288
|
+
export type ScoresUncheckedCreateWithoutLevrGameInput = {
|
|
23289
|
+
objectId?: string
|
|
23290
|
+
scoresByPeriodHome: InputJsonValue
|
|
23291
|
+
scoresByPeriodAway: InputJsonValue
|
|
23292
|
+
totalScoresHome: number
|
|
23293
|
+
totalScoresAway: number
|
|
23294
|
+
chainId: number
|
|
23295
|
+
createdAt?: Date | string
|
|
23296
|
+
updatedAt?: Date | string
|
|
23297
|
+
}
|
|
23298
|
+
|
|
23299
|
+
export type ScoresCreateOrConnectWithoutLevrGameInput = {
|
|
23300
|
+
where: ScoresWhereUniqueInput
|
|
23301
|
+
create: XOR<ScoresCreateWithoutLevrGameInput, ScoresUncheckedCreateWithoutLevrGameInput>
|
|
23302
|
+
}
|
|
23303
|
+
|
|
23165
23304
|
export type MarketCreateWithoutLevrGameInput = {
|
|
23166
23305
|
objectId?: string
|
|
23167
23306
|
chainId: number
|
|
@@ -23242,10 +23381,10 @@ export namespace Prisma {
|
|
|
23242
23381
|
homeTeam?: InputJsonValue | InputJsonValue
|
|
23243
23382
|
awayTeam?: InputJsonValue | InputJsonValue
|
|
23244
23383
|
fixtureStatus?: EnumFixtureStatusFieldUpdateOperationsInput | $Enums.FixtureStatus
|
|
23384
|
+
registeredChainIds?: FixtureUpdateregisteredChainIdsInput | number[]
|
|
23245
23385
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
23246
23386
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
23247
23387
|
league?: LeagueUpdateOneRequiredWithoutFixturesNestedInput
|
|
23248
|
-
scores?: ScoresUpdateOneWithoutFixtureNestedInput
|
|
23249
23388
|
}
|
|
23250
23389
|
|
|
23251
23390
|
export type FixtureUncheckedUpdateWithoutLevrGameInput = {
|
|
@@ -23262,10 +23401,10 @@ export namespace Prisma {
|
|
|
23262
23401
|
homeTeam?: InputJsonValue | InputJsonValue
|
|
23263
23402
|
awayTeam?: InputJsonValue | InputJsonValue
|
|
23264
23403
|
fixtureStatus?: EnumFixtureStatusFieldUpdateOperationsInput | $Enums.FixtureStatus
|
|
23404
|
+
registeredChainIds?: FixtureUpdateregisteredChainIdsInput | number[]
|
|
23265
23405
|
leagueObjectId?: StringFieldUpdateOperationsInput | string
|
|
23266
23406
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
23267
23407
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
23268
|
-
scores?: ScoresUncheckedUpdateOneWithoutFixtureNestedInput
|
|
23269
23408
|
}
|
|
23270
23409
|
|
|
23271
23410
|
export type TournamentUpsertWithoutGamesInput = {
|
|
@@ -23348,6 +23487,37 @@ export namespace Prisma {
|
|
|
23348
23487
|
teams?: TeamDataUncheckedUpdateManyWithoutLeagueNestedInput
|
|
23349
23488
|
}
|
|
23350
23489
|
|
|
23490
|
+
export type ScoresUpsertWithoutLevrGameInput = {
|
|
23491
|
+
update: XOR<ScoresUpdateWithoutLevrGameInput, ScoresUncheckedUpdateWithoutLevrGameInput>
|
|
23492
|
+
create: XOR<ScoresCreateWithoutLevrGameInput, ScoresUncheckedCreateWithoutLevrGameInput>
|
|
23493
|
+
where?: ScoresWhereInput
|
|
23494
|
+
}
|
|
23495
|
+
|
|
23496
|
+
export type ScoresUpdateToOneWithWhereWithoutLevrGameInput = {
|
|
23497
|
+
where?: ScoresWhereInput
|
|
23498
|
+
data: XOR<ScoresUpdateWithoutLevrGameInput, ScoresUncheckedUpdateWithoutLevrGameInput>
|
|
23499
|
+
}
|
|
23500
|
+
|
|
23501
|
+
export type ScoresUpdateWithoutLevrGameInput = {
|
|
23502
|
+
scoresByPeriodHome?: InputJsonValue | InputJsonValue
|
|
23503
|
+
scoresByPeriodAway?: InputJsonValue | InputJsonValue
|
|
23504
|
+
totalScoresHome?: FloatFieldUpdateOperationsInput | number
|
|
23505
|
+
totalScoresAway?: FloatFieldUpdateOperationsInput | number
|
|
23506
|
+
chainId?: IntFieldUpdateOperationsInput | number
|
|
23507
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
23508
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
23509
|
+
}
|
|
23510
|
+
|
|
23511
|
+
export type ScoresUncheckedUpdateWithoutLevrGameInput = {
|
|
23512
|
+
scoresByPeriodHome?: InputJsonValue | InputJsonValue
|
|
23513
|
+
scoresByPeriodAway?: InputJsonValue | InputJsonValue
|
|
23514
|
+
totalScoresHome?: FloatFieldUpdateOperationsInput | number
|
|
23515
|
+
totalScoresAway?: FloatFieldUpdateOperationsInput | number
|
|
23516
|
+
chainId?: IntFieldUpdateOperationsInput | number
|
|
23517
|
+
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
23518
|
+
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
23519
|
+
}
|
|
23520
|
+
|
|
23351
23521
|
export type MarketUpsertWithWhereUniqueWithoutLevrGameInput = {
|
|
23352
23522
|
where: MarketWhereUniqueInput
|
|
23353
23523
|
update: XOR<MarketUpdateWithoutLevrGameInput, MarketUncheckedUpdateWithoutLevrGameInput>
|
|
@@ -23525,6 +23695,7 @@ export namespace Prisma {
|
|
|
23525
23695
|
fixture: FixtureCreateNestedOneWithoutLevrGameInput
|
|
23526
23696
|
tournament: TournamentCreateNestedOneWithoutGamesInput
|
|
23527
23697
|
league: LeagueCreateNestedOneWithoutGamesInput
|
|
23698
|
+
scores?: ScoresCreateNestedOneWithoutLevrGameInput
|
|
23528
23699
|
}
|
|
23529
23700
|
|
|
23530
23701
|
export type LevrGameUncheckedCreateWithoutMarketsInput = {
|
|
@@ -23556,6 +23727,7 @@ export namespace Prisma {
|
|
|
23556
23727
|
leagueObjectId: string
|
|
23557
23728
|
createdAt?: Date | string
|
|
23558
23729
|
updatedAt?: Date | string
|
|
23730
|
+
scores?: ScoresUncheckedCreateNestedOneWithoutLevrGameInput
|
|
23559
23731
|
}
|
|
23560
23732
|
|
|
23561
23733
|
export type LevrGameCreateOrConnectWithoutMarketsInput = {
|
|
@@ -23649,6 +23821,7 @@ export namespace Prisma {
|
|
|
23649
23821
|
fixture?: FixtureUpdateOneRequiredWithoutLevrGameNestedInput
|
|
23650
23822
|
tournament?: TournamentUpdateOneRequiredWithoutGamesNestedInput
|
|
23651
23823
|
league?: LeagueUpdateOneRequiredWithoutGamesNestedInput
|
|
23824
|
+
scores?: ScoresUpdateOneWithoutLevrGameNestedInput
|
|
23652
23825
|
}
|
|
23653
23826
|
|
|
23654
23827
|
export type LevrGameUncheckedUpdateWithoutMarketsInput = {
|
|
@@ -23679,6 +23852,7 @@ export namespace Prisma {
|
|
|
23679
23852
|
leagueObjectId?: StringFieldUpdateOperationsInput | string
|
|
23680
23853
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
23681
23854
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
23855
|
+
scores?: ScoresUncheckedUpdateOneWithoutLevrGameNestedInput
|
|
23682
23856
|
}
|
|
23683
23857
|
|
|
23684
23858
|
export type OddsUpsertWithWhereUniqueWithoutMarketInput = {
|
|
@@ -23791,6 +23965,7 @@ export namespace Prisma {
|
|
|
23791
23965
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
23792
23966
|
fixture?: FixtureUpdateOneRequiredWithoutLevrGameNestedInput
|
|
23793
23967
|
league?: LeagueUpdateOneRequiredWithoutGamesNestedInput
|
|
23968
|
+
scores?: ScoresUpdateOneWithoutLevrGameNestedInput
|
|
23794
23969
|
markets?: MarketUpdateManyWithoutLevrGameNestedInput
|
|
23795
23970
|
}
|
|
23796
23971
|
|
|
@@ -23821,6 +23996,7 @@ export namespace Prisma {
|
|
|
23821
23996
|
leagueObjectId?: StringFieldUpdateOperationsInput | string
|
|
23822
23997
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
23823
23998
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
23999
|
+
scores?: ScoresUncheckedUpdateOneWithoutLevrGameNestedInput
|
|
23824
24000
|
markets?: MarketUncheckedUpdateManyWithoutLevrGameNestedInput
|
|
23825
24001
|
}
|
|
23826
24002
|
|
|
@@ -24002,6 +24178,7 @@ export namespace Prisma {
|
|
|
24002
24178
|
homeTeam: InputJsonValue
|
|
24003
24179
|
awayTeam: InputJsonValue
|
|
24004
24180
|
fixtureStatus: $Enums.FixtureStatus
|
|
24181
|
+
registeredChainIds?: FixtureCreateregisteredChainIdsInput | number[]
|
|
24005
24182
|
createdAt?: Date | string
|
|
24006
24183
|
updatedAt?: Date | string
|
|
24007
24184
|
}
|
|
@@ -24048,6 +24225,7 @@ export namespace Prisma {
|
|
|
24048
24225
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
24049
24226
|
fixture?: FixtureUpdateOneRequiredWithoutLevrGameNestedInput
|
|
24050
24227
|
tournament?: TournamentUpdateOneRequiredWithoutGamesNestedInput
|
|
24228
|
+
scores?: ScoresUpdateOneWithoutLevrGameNestedInput
|
|
24051
24229
|
markets?: MarketUpdateManyWithoutLevrGameNestedInput
|
|
24052
24230
|
}
|
|
24053
24231
|
|
|
@@ -24078,6 +24256,7 @@ export namespace Prisma {
|
|
|
24078
24256
|
tournamentObjectId?: StringFieldUpdateOperationsInput | string
|
|
24079
24257
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
24080
24258
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
24259
|
+
scores?: ScoresUncheckedUpdateOneWithoutLevrGameNestedInput
|
|
24081
24260
|
markets?: MarketUncheckedUpdateManyWithoutLevrGameNestedInput
|
|
24082
24261
|
}
|
|
24083
24262
|
|
|
@@ -24124,9 +24303,9 @@ export namespace Prisma {
|
|
|
24124
24303
|
homeTeam?: InputJsonValue | InputJsonValue
|
|
24125
24304
|
awayTeam?: InputJsonValue | InputJsonValue
|
|
24126
24305
|
fixtureStatus?: EnumFixtureStatusFieldUpdateOperationsInput | $Enums.FixtureStatus
|
|
24306
|
+
registeredChainIds?: FixtureUpdateregisteredChainIdsInput | number[]
|
|
24127
24307
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
24128
24308
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
24129
|
-
scores?: ScoresUpdateOneWithoutFixtureNestedInput
|
|
24130
24309
|
LevrGame?: LevrGameUpdateManyWithoutFixtureNestedInput
|
|
24131
24310
|
}
|
|
24132
24311
|
|
|
@@ -24144,9 +24323,9 @@ export namespace Prisma {
|
|
|
24144
24323
|
homeTeam?: InputJsonValue | InputJsonValue
|
|
24145
24324
|
awayTeam?: InputJsonValue | InputJsonValue
|
|
24146
24325
|
fixtureStatus?: EnumFixtureStatusFieldUpdateOperationsInput | $Enums.FixtureStatus
|
|
24326
|
+
registeredChainIds?: FixtureUpdateregisteredChainIdsInput | number[]
|
|
24147
24327
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
24148
24328
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
24149
|
-
scores?: ScoresUncheckedUpdateOneWithoutFixtureNestedInput
|
|
24150
24329
|
LevrGame?: LevrGameUncheckedUpdateManyWithoutFixtureNestedInput
|
|
24151
24330
|
}
|
|
24152
24331
|
|
|
@@ -24164,6 +24343,7 @@ export namespace Prisma {
|
|
|
24164
24343
|
homeTeam?: InputJsonValue | InputJsonValue
|
|
24165
24344
|
awayTeam?: InputJsonValue | InputJsonValue
|
|
24166
24345
|
fixtureStatus?: EnumFixtureStatusFieldUpdateOperationsInput | $Enums.FixtureStatus
|
|
24346
|
+
registeredChainIds?: FixtureUpdateregisteredChainIdsInput | number[]
|
|
24167
24347
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
24168
24348
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
24169
24349
|
}
|
|
@@ -24267,6 +24447,7 @@ export namespace Prisma {
|
|
|
24267
24447
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
24268
24448
|
tournament?: TournamentUpdateOneRequiredWithoutGamesNestedInput
|
|
24269
24449
|
league?: LeagueUpdateOneRequiredWithoutGamesNestedInput
|
|
24450
|
+
scores?: ScoresUpdateOneWithoutLevrGameNestedInput
|
|
24270
24451
|
markets?: MarketUpdateManyWithoutLevrGameNestedInput
|
|
24271
24452
|
}
|
|
24272
24453
|
|
|
@@ -24297,6 +24478,7 @@ export namespace Prisma {
|
|
|
24297
24478
|
leagueObjectId?: StringFieldUpdateOperationsInput | string
|
|
24298
24479
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
24299
24480
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
24481
|
+
scores?: ScoresUncheckedUpdateOneWithoutLevrGameNestedInput
|
|
24300
24482
|
markets?: MarketUncheckedUpdateManyWithoutLevrGameNestedInput
|
|
24301
24483
|
}
|
|
24302
24484
|
|