@azuro-org/toolkit 6.0.0-beta.9 → 6.0.0
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/README.md +1 -2
- package/dist/docs/bets/bets.d.ts +2 -1
- package/dist/docs/bets/bettors.d.ts +1 -1
- package/dist/docs/bets/fragments/bet.d.ts +2 -1
- package/dist/docs/bets/fragments/bettor.d.ts +1 -1
- package/dist/docs/bets/fragments/legacyLiveBet.d.ts +1 -1
- package/dist/docs/bets/fragments/legacyPrematchBet.d.ts +1 -1
- package/dist/docs/bets/gameBets.d.ts +2 -2
- package/dist/docs/bets/legacyBets.d.ts +1 -1
- package/dist/docs/bets/types.d.ts +10 -10
- package/dist/docs/legacy-live-feed/games.d.ts +1 -1
- package/dist/docs/legacy-live-feed/types.d.ts +10 -10
- package/dist/index.js +5 -4
- package/dist/index.js.map +1 -1
- package/package.json +11 -12
- package/dist/docs/feed/condition.d.ts +0 -33
- package/dist/docs/feed/conditions.d.ts +0 -36
- package/dist/docs/feed/conditionsBatch.d.ts +0 -19
- package/dist/docs/feed/fragments/condition.d.ts +0 -27
- package/dist/docs/feed/fragments/gameInfo.d.ts +0 -40
- package/dist/docs/feed/game.d.ts +0 -46
- package/dist/docs/feed/games.d.ts +0 -50
- package/dist/docs/feed/navigation.d.ts +0 -45
- package/dist/docs/feed/sports.d.ts +0 -72
- package/dist/docs/feed/sportsNavigation.d.ts +0 -23
- package/dist/docs/feed/types.d.ts +0 -2415
- package/dist/helpers/gqlRequest.d.ts +0 -8
|
@@ -1,72 +0,0 @@
|
|
|
1
|
-
import * as Types from './types';
|
|
2
|
-
export type SportsQueryVariables = Types.Exact<{
|
|
3
|
-
first?: Types.InputMaybe<Types.Scalars['Int']['input']>;
|
|
4
|
-
sportFilter?: Types.InputMaybe<Types.Sport_Filter>;
|
|
5
|
-
countryFilter?: Types.InputMaybe<Types.Country_Filter>;
|
|
6
|
-
leagueFilter?: Types.InputMaybe<Types.League_Filter>;
|
|
7
|
-
gameFilter?: Types.InputMaybe<Types.Game_Filter>;
|
|
8
|
-
gameOrderBy?: Types.InputMaybe<Types.Game_OrderBy>;
|
|
9
|
-
gameOrderDirection?: Types.InputMaybe<Types.OrderDirection>;
|
|
10
|
-
}>;
|
|
11
|
-
export type SportsQuery = {
|
|
12
|
-
__typename?: 'Query';
|
|
13
|
-
sports: Array<{
|
|
14
|
-
__typename?: 'Sport';
|
|
15
|
-
id: string;
|
|
16
|
-
slug: string;
|
|
17
|
-
name: string;
|
|
18
|
-
sportId: string;
|
|
19
|
-
turnover: string;
|
|
20
|
-
countries: Array<{
|
|
21
|
-
__typename?: 'Country';
|
|
22
|
-
slug: string;
|
|
23
|
-
name: string;
|
|
24
|
-
turnover: string;
|
|
25
|
-
leagues: Array<{
|
|
26
|
-
__typename?: 'League';
|
|
27
|
-
slug: string;
|
|
28
|
-
name: string;
|
|
29
|
-
turnover: string;
|
|
30
|
-
games: Array<{
|
|
31
|
-
__typename?: 'Game';
|
|
32
|
-
id: string;
|
|
33
|
-
gameId: string;
|
|
34
|
-
slug: string;
|
|
35
|
-
title: string;
|
|
36
|
-
startsAt: string;
|
|
37
|
-
state: Types.GameState;
|
|
38
|
-
turnover: string;
|
|
39
|
-
sport: {
|
|
40
|
-
__typename?: 'Sport';
|
|
41
|
-
sportId: string;
|
|
42
|
-
slug: string;
|
|
43
|
-
name: string;
|
|
44
|
-
sporthub: {
|
|
45
|
-
__typename?: 'SportHub';
|
|
46
|
-
id: string;
|
|
47
|
-
slug: string;
|
|
48
|
-
};
|
|
49
|
-
};
|
|
50
|
-
league: {
|
|
51
|
-
__typename?: 'League';
|
|
52
|
-
id: string;
|
|
53
|
-
slug: string;
|
|
54
|
-
name: string;
|
|
55
|
-
};
|
|
56
|
-
country: {
|
|
57
|
-
__typename?: 'Country';
|
|
58
|
-
id: string;
|
|
59
|
-
slug: string;
|
|
60
|
-
name: string;
|
|
61
|
-
};
|
|
62
|
-
participants: Array<{
|
|
63
|
-
__typename?: 'Participant';
|
|
64
|
-
image?: string | null;
|
|
65
|
-
name: string;
|
|
66
|
-
}>;
|
|
67
|
-
}>;
|
|
68
|
-
}>;
|
|
69
|
-
}>;
|
|
70
|
-
}>;
|
|
71
|
-
};
|
|
72
|
-
export declare const SportsDocument: import("graphql").DocumentNode;
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import * as Types from './types';
|
|
2
|
-
export type SportsNavigationQueryVariables = Types.Exact<{
|
|
3
|
-
sportFilter?: Types.InputMaybe<Types.Sport_Filter>;
|
|
4
|
-
}>;
|
|
5
|
-
export type SportsNavigationQuery = {
|
|
6
|
-
__typename?: 'Query';
|
|
7
|
-
sports: Array<{
|
|
8
|
-
__typename?: 'Sport';
|
|
9
|
-
id: string;
|
|
10
|
-
slug: string;
|
|
11
|
-
name: string;
|
|
12
|
-
sportId: string;
|
|
13
|
-
activeGamesCount: number;
|
|
14
|
-
activeLiveGamesCount: number;
|
|
15
|
-
activePrematchGamesCount: number;
|
|
16
|
-
sporthub: {
|
|
17
|
-
__typename?: 'SportHub';
|
|
18
|
-
id: string;
|
|
19
|
-
slug: string;
|
|
20
|
-
};
|
|
21
|
-
}>;
|
|
22
|
-
};
|
|
23
|
-
export declare const SportsNavigationDocument: import("graphql").DocumentNode;
|