@poolzfinance/api4 1.11.40 → 1.11.41
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/endpoints/logout.d.ts +7 -0
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +3 -1
- package/dist/index.modern.js +1 -1
- package/dist/index.modern.js.map +1 -1
- package/dist/index.module.js +1 -1
- package/dist/index.module.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/dist/types/graphql/gql.d.ts +7 -0
- package/dist/types/graphql/graphql.d.ts +22 -1
- package/package.json +1 -1
|
@@ -61,6 +61,9 @@ declare const documents: {
|
|
|
61
61
|
"\n query getLeaderboard {\n leaderBoard {\n Rank\n Owner\n Amount\n }\n}": DocumentNode<types.GetLeaderboardQuery, types.Exact<{
|
|
62
62
|
[key: string]: never;
|
|
63
63
|
}>>;
|
|
64
|
+
"\n mutation Logout {\n logout\n }\n": DocumentNode<types.LogoutMutation, types.Exact<{
|
|
65
|
+
[key: string]: never;
|
|
66
|
+
}>>;
|
|
64
67
|
"\n mutation setMyAgree {\n setMyAgree\n}": DocumentNode<types.SetMyAgreeMutation, types.Exact<{
|
|
65
68
|
[key: string]: never;
|
|
66
69
|
}>>;
|
|
@@ -247,6 +250,10 @@ export declare function gql(source: "\n query getLeaderboardByAddress($address:
|
|
|
247
250
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
248
251
|
*/
|
|
249
252
|
export declare function gql(source: "\n query getLeaderboard {\n leaderBoard {\n Rank\n Owner\n Amount\n }\n}"): (typeof documents)["\n query getLeaderboard {\n leaderBoard {\n Rank\n Owner\n Amount\n }\n}"];
|
|
253
|
+
/**
|
|
254
|
+
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
255
|
+
*/
|
|
256
|
+
export declare function gql(source: "\n mutation Logout {\n logout\n }\n"): (typeof documents)["\n mutation Logout {\n logout\n }\n"];
|
|
250
257
|
/**
|
|
251
258
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
252
259
|
*/
|
|
@@ -760,9 +760,20 @@ export type TokenRefundsLDv2 = {
|
|
|
760
760
|
};
|
|
761
761
|
export type TokenRefundsNft = {
|
|
762
762
|
__typename?: 'TokenRefundsNFT';
|
|
763
|
-
Amount: Scalars['Float']['output'];
|
|
764
763
|
BlockSignedAt: Scalars['Int']['output'];
|
|
765
764
|
From: Scalars['String']['output'];
|
|
765
|
+
TokenOut: TokenRefundsNft_TokenOut;
|
|
766
|
+
TokensRefunded: TokenRefundsNft_TokensRefunded;
|
|
767
|
+
TxHash: Scalars['String']['output'];
|
|
768
|
+
};
|
|
769
|
+
export type TokenRefundsNft_TokenOut = {
|
|
770
|
+
__typename?: 'TokenRefundsNFT_TokenOut';
|
|
771
|
+
Amount: Scalars['Float']['output'];
|
|
772
|
+
TokenId: Scalars['Int']['output'];
|
|
773
|
+
};
|
|
774
|
+
export type TokenRefundsNft_TokensRefunded = {
|
|
775
|
+
__typename?: 'TokenRefundsNFT_TokensRefunded';
|
|
776
|
+
Amount: Scalars['Float']['output'];
|
|
766
777
|
TokenId: Scalars['Int']['output'];
|
|
767
778
|
};
|
|
768
779
|
export type TxHashChainIdInput = {
|
|
@@ -1033,6 +1044,13 @@ export type GetLeaderboardQuery = {
|
|
|
1033
1044
|
Amount: number;
|
|
1034
1045
|
}>;
|
|
1035
1046
|
};
|
|
1047
|
+
export type LogoutMutationVariables = Exact<{
|
|
1048
|
+
[key: string]: never;
|
|
1049
|
+
}>;
|
|
1050
|
+
export type LogoutMutation = {
|
|
1051
|
+
__typename?: 'Mutation';
|
|
1052
|
+
logout: boolean;
|
|
1053
|
+
};
|
|
1036
1054
|
export type SetMyAgreeMutationVariables = Exact<{
|
|
1037
1055
|
[key: string]: never;
|
|
1038
1056
|
}>;
|
|
@@ -1530,6 +1548,9 @@ export declare const GetLeaderboardByAddressDocument: DocumentNode<GetLeaderboar
|
|
|
1530
1548
|
export declare const GetLeaderboardDocument: DocumentNode<GetLeaderboardQuery, Exact<{
|
|
1531
1549
|
[key: string]: never;
|
|
1532
1550
|
}>>;
|
|
1551
|
+
export declare const LogoutDocument: DocumentNode<LogoutMutation, Exact<{
|
|
1552
|
+
[key: string]: never;
|
|
1553
|
+
}>>;
|
|
1533
1554
|
export declare const SetMyAgreeDocument: DocumentNode<SetMyAgreeMutation, Exact<{
|
|
1534
1555
|
[key: string]: never;
|
|
1535
1556
|
}>>;
|