@azuro-org/toolkit 5.0.0-beta.6 → 5.0.0-beta.7

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.
@@ -13,6 +13,11 @@ export type GameInfoFragment = {
13
13
  sportId: string;
14
14
  slug: string;
15
15
  name: string;
16
+ sporthub: {
17
+ __typename?: 'SportHub';
18
+ id: string;
19
+ slug: string;
20
+ };
16
21
  };
17
22
  league: {
18
23
  __typename?: 'League';
@@ -18,6 +18,11 @@ export type GameQuery = {
18
18
  sportId: string;
19
19
  slug: string;
20
20
  name: string;
21
+ sporthub: {
22
+ __typename?: 'SportHub';
23
+ id: string;
24
+ slug: string;
25
+ };
21
26
  };
22
27
  league: {
23
28
  __typename?: 'League';
@@ -22,6 +22,11 @@ export type GamesQuery = {
22
22
  sportId: string;
23
23
  slug: string;
24
24
  name: string;
25
+ sporthub: {
26
+ __typename?: 'SportHub';
27
+ id: string;
28
+ slug: string;
29
+ };
25
30
  };
26
31
  league: {
27
32
  __typename?: 'League';
@@ -19,6 +19,7 @@ export type NavigationQuery = {
19
19
  sporthub: {
20
20
  __typename?: 'SportHub';
21
21
  id: string;
22
+ slug: string;
22
23
  };
23
24
  countries: Array<{
24
25
  __typename?: 'Country';
@@ -41,6 +41,11 @@ export type SportsQuery = {
41
41
  sportId: string;
42
42
  slug: string;
43
43
  name: string;
44
+ sporthub: {
45
+ __typename?: 'SportHub';
46
+ id: string;
47
+ slug: string;
48
+ };
44
49
  };
45
50
  league: {
46
51
  __typename?: 'League';
@@ -17,6 +17,7 @@ export type SportsNavigationQuery = {
17
17
  sporthub: {
18
18
  __typename?: 'SportHub';
19
19
  id: string;
20
+ slug: string;
20
21
  };
21
22
  }>;
22
23
  };
@@ -12,6 +12,7 @@ export type LegacyLiveGamesQuery = {
12
12
  __typename?: 'Game';
13
13
  id: string;
14
14
  gameId: string;
15
+ slug?: string | null;
15
16
  title?: string | null;
16
17
  startsAt: string;
17
18
  status: Types.GameStatus;
@@ -20,6 +21,11 @@ export type LegacyLiveGamesQuery = {
20
21
  sportId: string;
21
22
  slug: string;
22
23
  name: string;
24
+ sporthub: {
25
+ __typename?: 'SportHub';
26
+ id: string;
27
+ slug: string;
28
+ };
23
29
  };
24
30
  league: {
25
31
  __typename?: 'League';
package/dist/index.js CHANGED
@@ -5139,6 +5139,10 @@ ${LegacyLiveBetFragmentDoc}`;const GameBetsDocument = gql `
5139
5139
  sportId
5140
5140
  slug
5141
5141
  name
5142
+ sporthub {
5143
+ id
5144
+ slug
5145
+ }
5142
5146
  }
5143
5147
  league {
5144
5148
  slug
@@ -5212,6 +5216,7 @@ ${LegacyLiveBetFragmentDoc}`;const GameBetsDocument = gql `
5212
5216
  sportId
5213
5217
  sporthub {
5214
5218
  id
5219
+ slug
5215
5220
  }
5216
5221
  activeGamesCount
5217
5222
  activeLiveGamesCount
@@ -5278,6 +5283,7 @@ ${LegacyLiveBetFragmentDoc}`;const GameBetsDocument = gql `
5278
5283
  sportId
5279
5284
  sporthub {
5280
5285
  id
5286
+ slug
5281
5287
  }
5282
5288
  activeGamesCount
5283
5289
  activeLiveGamesCount
@@ -5296,6 +5302,7 @@ ${LegacyLiveBetFragmentDoc}`;const GameBetsDocument = gql `
5296
5302
  ) {
5297
5303
  id
5298
5304
  gameId
5305
+ slug
5299
5306
  title
5300
5307
  startsAt
5301
5308
  status
@@ -5303,6 +5310,10 @@ ${LegacyLiveBetFragmentDoc}`;const GameBetsDocument = gql `
5303
5310
  sportId
5304
5311
  slug
5305
5312
  name
5313
+ sporthub {
5314
+ id
5315
+ slug
5316
+ }
5306
5317
  }
5307
5318
  league {
5308
5319
  slug
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@azuro-org/toolkit",
3
- "version": "5.0.0-beta.6",
3
+ "version": "5.0.0-beta.7",
4
4
  "description": "Set of helpers to work with Azuro protocol",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",