@poolzfinance/api4 1.11.24 → 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/endpoints/simpleUrlShortener.d.ts +3 -0
- package/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +6 -5
- 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 +11 -4
- package/dist/types/graphql/graphql.d.ts +31 -2
- 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<{
|
|
@@ -121,6 +121,9 @@ declare const documents: {
|
|
|
121
121
|
"\n query MySignup {\n mySignup {\n SignupId\n }\n}": DocumentNode<types.MySignupQuery, types.Exact<{
|
|
122
122
|
[key: string]: never;
|
|
123
123
|
}>>;
|
|
124
|
+
"\n query SimpleUrlShortener($hashKey: String!) {\n simpleUrlShortener(hashKey: $hashKey) {\n ShortUrl\n ErrorMessage\n }\n}": DocumentNode<types.SimpleUrlShortenerQuery, types.Exact<{
|
|
125
|
+
hashKey: string;
|
|
126
|
+
}>>;
|
|
124
127
|
"\nquery Status {\n status {\n ChainId\n ChainName\n RpcUrl\n CovalentLastBlock\n SecondsToWarning\n SecondsToError\n BlockPerSecond\n Events {\n Active\n StartingBlock\n EndingBlock\n ResponseType\n }\n }\n }": DocumentNode<types.StatusQuery, types.Exact<{
|
|
125
128
|
[key: string]: never;
|
|
126
129
|
}>>;
|
|
@@ -177,11 +180,11 @@ export declare function gql(source: "\n mutation deleteAutoSignUp($address: Str
|
|
|
177
180
|
/**
|
|
178
181
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
179
182
|
*/
|
|
180
|
-
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}"];
|
|
181
184
|
/**
|
|
182
185
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
183
186
|
*/
|
|
184
|
-
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}"];
|
|
185
188
|
/**
|
|
186
189
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
187
190
|
*/
|
|
@@ -274,6 +277,10 @@ export declare function gql(source: "\n query Signup($signUpId: Int!) {\n si
|
|
|
274
277
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
275
278
|
*/
|
|
276
279
|
export declare function gql(source: "\n query MySignup {\n mySignup {\n SignupId\n }\n}"): (typeof documents)["\n query MySignup {\n mySignup {\n SignupId\n }\n}"];
|
|
280
|
+
/**
|
|
281
|
+
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
282
|
+
*/
|
|
283
|
+
export declare function gql(source: "\n query SimpleUrlShortener($hashKey: String!) {\n simpleUrlShortener(hashKey: $hashKey) {\n ShortUrl\n ErrorMessage\n }\n}"): (typeof documents)["\n query SimpleUrlShortener($hashKey: String!) {\n simpleUrlShortener(hashKey: $hashKey) {\n ShortUrl\n ErrorMessage\n }\n}"];
|
|
277
284
|
/**
|
|
278
285
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
279
286
|
*/
|
|
@@ -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>;
|
|
@@ -415,7 +417,7 @@ export type PoolxTokenomicsTrade = {
|
|
|
415
417
|
Mexc: Scalars['Float']['output'];
|
|
416
418
|
PancakeSwapV2: Scalars['Float']['output'];
|
|
417
419
|
PancakeSwapV3: Scalars['Float']['output'];
|
|
418
|
-
PancakeSwapV3_01
|
|
420
|
+
PancakeSwapV3_01: Scalars['Float']['output'];
|
|
419
421
|
Sum: Scalars['Float']['output'];
|
|
420
422
|
};
|
|
421
423
|
export type PutMyDataNonEvmWallet = {
|
|
@@ -451,6 +453,7 @@ export type Query = {
|
|
|
451
453
|
signUpCheck: Array<SignUpCheck>;
|
|
452
454
|
signUpList: Array<SignUpList>;
|
|
453
455
|
signUpsTimes: Array<SignUpsTimes>;
|
|
456
|
+
simpleUrlShortener?: Maybe<SimpleUrlShortener>;
|
|
454
457
|
splitDataEncoder: Scalars['String']['output'];
|
|
455
458
|
status: Array<Status>;
|
|
456
459
|
time: Scalars['Int']['output'];
|
|
@@ -528,6 +531,9 @@ export type QuerySignUpCheckArgs = {
|
|
|
528
531
|
export type QuerySignUpListArgs = {
|
|
529
532
|
id: Scalars['Int']['input'];
|
|
530
533
|
};
|
|
534
|
+
export type QuerySimpleUrlShortenerArgs = {
|
|
535
|
+
hashKey: Scalars['String']['input'];
|
|
536
|
+
};
|
|
531
537
|
export type QuerySplitDataEncoderArgs = {
|
|
532
538
|
address: Scalars['String']['input'];
|
|
533
539
|
ratio: Scalars['Float']['input'];
|
|
@@ -590,6 +596,11 @@ export type SignUpsTimes = {
|
|
|
590
596
|
StartBlock: Scalars['Int']['output'];
|
|
591
597
|
StartTime: Scalars['String']['output'];
|
|
592
598
|
};
|
|
599
|
+
export type SimpleUrlShortener = {
|
|
600
|
+
__typename?: 'SimpleUrlShortener';
|
|
601
|
+
ErrorMessage?: Maybe<Scalars['String']['output']>;
|
|
602
|
+
ShortUrl: Scalars['String']['output'];
|
|
603
|
+
};
|
|
593
604
|
export type Status = {
|
|
594
605
|
__typename?: 'Status';
|
|
595
606
|
BlockPerSecond: Scalars['Float']['output'];
|
|
@@ -790,6 +801,8 @@ export type BoostProxyDataQuery = {
|
|
|
790
801
|
__typename?: 'Query';
|
|
791
802
|
boostProxy: Array<{
|
|
792
803
|
__typename?: 'BoostProxy';
|
|
804
|
+
Actions: number;
|
|
805
|
+
Participants: number;
|
|
793
806
|
TotalUsers: number;
|
|
794
807
|
DataKey: string;
|
|
795
808
|
CampaignName: string;
|
|
@@ -804,6 +817,8 @@ export type BoostProxyUsersQuery = {
|
|
|
804
817
|
__typename?: 'Query';
|
|
805
818
|
boostProxy: Array<{
|
|
806
819
|
__typename?: 'BoostProxy';
|
|
820
|
+
Actions: number;
|
|
821
|
+
Participants: number;
|
|
807
822
|
TotalUsers: number;
|
|
808
823
|
CampaignName: string;
|
|
809
824
|
TotalEntries: number;
|
|
@@ -1084,7 +1099,7 @@ export type GetPoolxTokenomicsQuery = {
|
|
|
1084
1099
|
Sum: number;
|
|
1085
1100
|
Huobi: number;
|
|
1086
1101
|
GateIO: number;
|
|
1087
|
-
PancakeSwapV3_01
|
|
1102
|
+
PancakeSwapV3_01: number;
|
|
1088
1103
|
PancakeSwapV3: number;
|
|
1089
1104
|
Mexc: number;
|
|
1090
1105
|
};
|
|
@@ -1111,6 +1126,17 @@ export type MySignupQuery = {
|
|
|
1111
1126
|
SignupId: number;
|
|
1112
1127
|
}>;
|
|
1113
1128
|
};
|
|
1129
|
+
export type SimpleUrlShortenerQueryVariables = Exact<{
|
|
1130
|
+
hashKey: Scalars['String']['input'];
|
|
1131
|
+
}>;
|
|
1132
|
+
export type SimpleUrlShortenerQuery = {
|
|
1133
|
+
__typename?: 'Query';
|
|
1134
|
+
simpleUrlShortener?: {
|
|
1135
|
+
__typename?: 'SimpleUrlShortener';
|
|
1136
|
+
ShortUrl: string;
|
|
1137
|
+
ErrorMessage?: string | null;
|
|
1138
|
+
} | null;
|
|
1139
|
+
};
|
|
1114
1140
|
export type StatusQueryVariables = Exact<{
|
|
1115
1141
|
[key: string]: never;
|
|
1116
1142
|
}>;
|
|
@@ -1286,6 +1312,9 @@ export declare const SignupDocument: DocumentNode<SignupQuery, Exact<{
|
|
|
1286
1312
|
export declare const MySignupDocument: DocumentNode<MySignupQuery, Exact<{
|
|
1287
1313
|
[key: string]: never;
|
|
1288
1314
|
}>>;
|
|
1315
|
+
export declare const SimpleUrlShortenerDocument: DocumentNode<SimpleUrlShortenerQuery, Exact<{
|
|
1316
|
+
hashKey: Scalars['String']['input'];
|
|
1317
|
+
}>>;
|
|
1289
1318
|
export declare const StatusDocument: DocumentNode<StatusQuery, Exact<{
|
|
1290
1319
|
[key: string]: never;
|
|
1291
1320
|
}>>;
|