@poolzfinance/api4 1.13.1 → 1.13.2
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 +2 -2
- package/dist/types/graphql/graphql.d.ts +0 -4
- package/package.json +1 -1
|
@@ -15,7 +15,7 @@ type Documents = {
|
|
|
15
15
|
"\n mutation AdminCreatePoolzBackId($projectId: String!, $poolzBackId: Int!, $chainId: Int!) {\n adminCreatePoolzBackId(projectId: $projectId, poolzBackId: $poolzBackId, chainId: $chainId) {\n ProjectId\n PoolzBackId\n }\n }\n": typeof types.AdminCreatePoolzBackIdDocument;
|
|
16
16
|
"\n query AdminGetAllocation($projectId: String!) {\n adminGetAllocation(projectId: $projectId) {\n PhaseId\n WhiteList {\n UserAddress\n Amount\n }\n }\n }\n": typeof types.AdminGetAllocationDocument;
|
|
17
17
|
"\n query AdminListOfPoolzBackId($projectIDs: [String!]!) {\n adminListOfPoolzBackId(projectIDs: $projectIDs) {\n ProjectId\n PoolzBackId\n }\n}": typeof types.AdminListOfPoolzBackIdDocument;
|
|
18
|
-
"\n query AdminReadAssets($request: [ReadAssetsRequest!]!) {\n adminReadAssets(request: $request) {\n Assets {\n ChainId\n PoolId\n Dispensers {\n IsTaken\n UserAddress\n
|
|
18
|
+
"\n query AdminReadAssets($request: [ReadAssetsRequest!]!) {\n adminReadAssets(request: $request) {\n Assets {\n ChainId\n PoolId\n Dispensers {\n IsTaken\n UserAddress\n Builders {\n WeiAmount\n }\n }\n }\n }\n}": typeof types.AdminReadAssetsDocument;
|
|
19
19
|
"\n mutation AdminWriteAllocation($input: AdminWriteAllocation!) {\n adminWriteAllocation(input: $input)\n }\n": typeof types.AdminWriteAllocationDocument;
|
|
20
20
|
"\n query GetApprovedContracts($onlyApproved: Boolean!) {\n approvedContracts(onlyApproved: $onlyApproved) {\n ContractAddress\n Status\n }\n }": typeof types.GetApprovedContractsDocument;
|
|
21
21
|
"\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 types.BoostProxyDataDocument;
|
|
@@ -81,7 +81,7 @@ export declare function gql(source: "\n query AdminListOfPoolzBackId($projectID
|
|
|
81
81
|
/**
|
|
82
82
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
83
83
|
*/
|
|
84
|
-
export declare function gql(source: "\n query AdminReadAssets($request: [ReadAssetsRequest!]!) {\n adminReadAssets(request: $request) {\n Assets {\n ChainId\n PoolId\n Dispensers {\n IsTaken\n UserAddress\n
|
|
84
|
+
export declare function gql(source: "\n query AdminReadAssets($request: [ReadAssetsRequest!]!) {\n adminReadAssets(request: $request) {\n Assets {\n ChainId\n PoolId\n Dispensers {\n IsTaken\n UserAddress\n Builders {\n WeiAmount\n }\n }\n }\n }\n}"): (typeof documents)["\n query AdminReadAssets($request: [ReadAssetsRequest!]!) {\n adminReadAssets(request: $request) {\n Assets {\n ChainId\n PoolId\n Dispensers {\n IsTaken\n UserAddress\n Builders {\n WeiAmount\n }\n }\n }\n }\n}"];
|
|
85
85
|
/**
|
|
86
86
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
87
87
|
*/
|
|
@@ -1143,13 +1143,9 @@ export type AdminReadAssetsQuery = {
|
|
|
1143
1143
|
__typename?: 'ReadAssetResponse_Dispenser';
|
|
1144
1144
|
IsTaken: boolean;
|
|
1145
1145
|
UserAddress: string;
|
|
1146
|
-
RefundFinishTime?: number | null;
|
|
1147
1146
|
Builders: Array<{
|
|
1148
1147
|
__typename?: 'ReadAssetResponse_Builder';
|
|
1149
|
-
ProviderAddress: string;
|
|
1150
1148
|
WeiAmount: string;
|
|
1151
|
-
StartTime?: number | null;
|
|
1152
|
-
FinishTime?: number | null;
|
|
1153
1149
|
}>;
|
|
1154
1150
|
}>;
|
|
1155
1151
|
}>;
|