@poolzfinance/api4 1.11.25 → 1.11.26
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/index.cjs +1 -1
- package/dist/index.cjs.map +1 -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 +4 -4
- package/dist/types/graphql/graphql.d.ts +6 -0
- package/package.json +1 -1
|
@@ -36,10 +36,10 @@ declare const documents: {
|
|
|
36
36
|
"\n mutation deleteAutoSignUp($address: String!) {\n deleteAutoSignUp(address: $address) {\n Address\n PoolzAmount\n Note\n }\n }": DocumentNode<types.DeleteAutoSignUpMutation, types.Exact<{
|
|
37
37
|
address: string;
|
|
38
38
|
}>>;
|
|
39
|
-
"\n query BoostProxyData($campaignCodes: [String!]!) {\n boostProxy(campaignCodes: $campaignCodes) {\n TotalUsers\n DataKey\n CampaignName\n TotalEntries\n CampaignCode\n }\n}": DocumentNode<types.BoostProxyDataQuery, types.Exact<{
|
|
39
|
+
"\n query BoostProxyData($campaignCodes: [String!]!) {\n boostProxy(campaignCodes: $campaignCodes) {\n Actions\n Participants\n TotalUsers\n DataKey\n CampaignName\n TotalEntries\n CampaignCode\n }\n}": DocumentNode<types.BoostProxyDataQuery, types.Exact<{
|
|
40
40
|
campaignCodes: string | string[];
|
|
41
41
|
}>>;
|
|
42
|
-
"\n query BoostProxyUsers($campaignCodes: [String!]!) {\n boostProxy(campaignCodes: $campaignCodes) {\n TotalUsers\n CampaignName\n TotalEntries\n CampaignCode\n DataKey\n Users {\n Address\n Entries\n }\n }\n}": DocumentNode<types.BoostProxyUsersQuery, types.Exact<{
|
|
42
|
+
"\n query BoostProxyUsers($campaignCodes: [String!]!) {\n boostProxy(campaignCodes: $campaignCodes) {\n Actions\n Participants\n TotalUsers\n CampaignName\n TotalEntries\n CampaignCode\n DataKey\n Users {\n Address\n Entries\n }\n }\n}": DocumentNode<types.BoostProxyUsersQuery, types.Exact<{
|
|
43
43
|
campaignCodes: string | string[];
|
|
44
44
|
}>>;
|
|
45
45
|
"\n query MyQuery {\n time\n}": DocumentNode<types.MyQueryQuery, types.Exact<{
|
|
@@ -180,11 +180,11 @@ export declare function gql(source: "\n mutation deleteAutoSignUp($address: Str
|
|
|
180
180
|
/**
|
|
181
181
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
182
182
|
*/
|
|
183
|
-
export declare function gql(source: "\n query BoostProxyData($campaignCodes: [String!]!) {\n boostProxy(campaignCodes: $campaignCodes) {\n TotalUsers\n DataKey\n CampaignName\n TotalEntries\n CampaignCode\n }\n}"): (typeof documents)["\n query BoostProxyData($campaignCodes: [String!]!) {\n boostProxy(campaignCodes: $campaignCodes) {\n TotalUsers\n DataKey\n CampaignName\n TotalEntries\n CampaignCode\n }\n}"];
|
|
183
|
+
export declare function gql(source: "\n query BoostProxyData($campaignCodes: [String!]!) {\n boostProxy(campaignCodes: $campaignCodes) {\n Actions\n Participants\n TotalUsers\n DataKey\n CampaignName\n TotalEntries\n CampaignCode\n }\n}"): (typeof documents)["\n query BoostProxyData($campaignCodes: [String!]!) {\n boostProxy(campaignCodes: $campaignCodes) {\n Actions\n Participants\n TotalUsers\n DataKey\n CampaignName\n TotalEntries\n CampaignCode\n }\n}"];
|
|
184
184
|
/**
|
|
185
185
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
186
186
|
*/
|
|
187
|
-
export declare function gql(source: "\n query BoostProxyUsers($campaignCodes: [String!]!) {\n boostProxy(campaignCodes: $campaignCodes) {\n TotalUsers\n CampaignName\n TotalEntries\n CampaignCode\n DataKey\n Users {\n Address\n Entries\n }\n }\n}"): (typeof documents)["\n query BoostProxyUsers($campaignCodes: [String!]!) {\n boostProxy(campaignCodes: $campaignCodes) {\n TotalUsers\n CampaignName\n TotalEntries\n CampaignCode\n DataKey\n Users {\n Address\n Entries\n }\n }\n}"];
|
|
187
|
+
export declare function gql(source: "\n query BoostProxyUsers($campaignCodes: [String!]!) {\n boostProxy(campaignCodes: $campaignCodes) {\n Actions\n Participants\n TotalUsers\n CampaignName\n TotalEntries\n CampaignCode\n DataKey\n Users {\n Address\n Entries\n }\n }\n}"): (typeof documents)["\n query BoostProxyUsers($campaignCodes: [String!]!) {\n boostProxy(campaignCodes: $campaignCodes) {\n Actions\n Participants\n TotalUsers\n CampaignName\n TotalEntries\n CampaignCode\n DataKey\n Users {\n Address\n Entries\n }\n }\n}"];
|
|
188
188
|
/**
|
|
189
189
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
190
190
|
*/
|
|
@@ -123,9 +123,11 @@ export type ApprovedContracts = {
|
|
|
123
123
|
};
|
|
124
124
|
export type BoostProxy = {
|
|
125
125
|
__typename?: 'BoostProxy';
|
|
126
|
+
Actions: Scalars['Int']['output'];
|
|
126
127
|
CampaignCode: Scalars['String']['output'];
|
|
127
128
|
CampaignName: Scalars['String']['output'];
|
|
128
129
|
DataKey: Scalars['String']['output'];
|
|
130
|
+
Participants: Scalars['Int']['output'];
|
|
129
131
|
TotalEntries: Scalars['Int']['output'];
|
|
130
132
|
TotalUsers: Scalars['Int']['output'];
|
|
131
133
|
Users: Array<BoostProxyUser>;
|
|
@@ -799,6 +801,8 @@ export type BoostProxyDataQuery = {
|
|
|
799
801
|
__typename?: 'Query';
|
|
800
802
|
boostProxy: Array<{
|
|
801
803
|
__typename?: 'BoostProxy';
|
|
804
|
+
Actions: number;
|
|
805
|
+
Participants: number;
|
|
802
806
|
TotalUsers: number;
|
|
803
807
|
DataKey: string;
|
|
804
808
|
CampaignName: string;
|
|
@@ -813,6 +817,8 @@ export type BoostProxyUsersQuery = {
|
|
|
813
817
|
__typename?: 'Query';
|
|
814
818
|
boostProxy: Array<{
|
|
815
819
|
__typename?: 'BoostProxy';
|
|
820
|
+
Actions: number;
|
|
821
|
+
Participants: number;
|
|
816
822
|
TotalUsers: number;
|
|
817
823
|
CampaignName: string;
|
|
818
824
|
TotalEntries: number;
|