@azuro-org/toolkit 4.5.0-beta.2 → 4.5.0-beta.3

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.
@@ -39,5 +39,9 @@ export type LiveBetFragment = {
39
39
  };
40
40
  };
41
41
  }>;
42
+ cashout?: {
43
+ __typename?: 'Cashout';
44
+ payout: string;
45
+ } | null;
42
46
  };
43
47
  export declare const LiveBetFragmentDoc: import("@apollo/client").DocumentNode;
@@ -74,5 +74,9 @@ export type PrematchBetFragment = {
74
74
  freebetId: string;
75
75
  contractAddress: string;
76
76
  } | null;
77
+ cashout?: {
78
+ __typename?: 'Cashout';
79
+ payout: string;
80
+ } | null;
77
81
  };
78
82
  export declare const PrematchBetFragmentDoc: import("@apollo/client").DocumentNode;
@@ -49,6 +49,10 @@ export type LiveBetsQuery = {
49
49
  };
50
50
  };
51
51
  }>;
52
+ cashout?: {
53
+ __typename?: 'Cashout';
54
+ payout: string;
55
+ } | null;
52
56
  }>;
53
57
  };
54
58
  export declare const LiveBetsDocument: Apollo.DocumentNode;
@@ -84,6 +84,10 @@ export type PrematchBetsQuery = {
84
84
  freebetId: string;
85
85
  contractAddress: string;
86
86
  } | null;
87
+ cashout?: {
88
+ __typename?: 'Cashout';
89
+ payout: string;
90
+ } | null;
87
91
  }>;
88
92
  };
89
93
  export declare const PrematchBetsDocument: Apollo.DocumentNode;
package/dist/index.js CHANGED
@@ -4271,6 +4271,9 @@ const chainsDataByEnv = {
4271
4271
  }
4272
4272
  }
4273
4273
  }
4274
+ cashout {
4275
+ payout
4276
+ }
4274
4277
  }
4275
4278
  `;const MainGameInfoFragmentDoc = gql `
4276
4279
  fragment MainGameInfo on Game {
@@ -4340,6 +4343,9 @@ const chainsDataByEnv = {
4340
4343
  freebetId
4341
4344
  contractAddress: freebetContractAddress
4342
4345
  }
4346
+ cashout {
4347
+ payout
4348
+ }
4343
4349
  }
4344
4350
  ${MainGameInfoFragmentDoc}`;const BettorsDocument = gql `
4345
4351
  query Bettors($where: Bettor_filter!) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@azuro-org/toolkit",
3
- "version": "4.5.0-beta.2",
3
+ "version": "4.5.0-beta.3",
4
4
  "description": "Set of helpers to work with Azuro protocol",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",