@poolzfinance/api4 1.12.3 → 1.12.4
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/adminCreatePoolzBackId.d.ts +1 -0
- 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 +2 -0
- package/package.json +1 -1
|
@@ -13,7 +13,7 @@ import { TypedDocumentNode as DocumentNode } from '@graphql-typed-document-node/
|
|
|
13
13
|
*/
|
|
14
14
|
type Documents = {
|
|
15
15
|
"\nmutation AdminCleanCache {\n adminCleanCache {\n result {\n id\n }\n messages {\n code\n message\n }\n errors {\n code\n message\n }\n success\n }\n}": typeof types.AdminCleanCacheDocument;
|
|
16
|
-
"\n mutation AdminCreatePoolzBackId($projectId: String!, $poolzBackId: Int!) {\n adminCreatePoolzBackId(projectId: $projectId, poolzBackId: $poolzBackId) {\n ProjectId\n PoolzBackId\n }\n }\n": typeof types.AdminCreatePoolzBackIdDocument;
|
|
16
|
+
"\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;
|
|
17
17
|
"\n query AdminListOfCollateral($chainId: Int!, $collateralAddress: String!, $limit: Int!, $page: Int!) {\n adminListOfCollateral(\n chainId: $chainId\n collateralAddress: $collateralAddress\n limit: $limit\n page: $page\n ) {\n PoolId\n TokenAmountInWei\n MainCoinAmountInWei\n FinishTime\n }\n}": typeof types.AdminListOfCollateralDocument;
|
|
18
18
|
"\n mutation AdminWriteAllocation($input: AdminWriteAllocation!) {\n adminWriteAllocation(input: $input)\n }\n": typeof types.AdminWriteAllocationDocument;
|
|
19
19
|
"\n query GetApprovedContracts($onlyApproved: Boolean!) {\n approvedContracts(onlyApproved: $onlyApproved) {\n ContractAddress\n Status\n }\n }": typeof types.GetApprovedContractsDocument;
|
|
@@ -88,7 +88,7 @@ export declare function gql(source: "\nmutation AdminCleanCache {\n adminCleanC
|
|
|
88
88
|
/**
|
|
89
89
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
90
90
|
*/
|
|
91
|
-
export declare function gql(source: "\n mutation AdminCreatePoolzBackId($projectId: String!, $poolzBackId: Int!) {\n adminCreatePoolzBackId(projectId: $projectId, poolzBackId: $poolzBackId) {\n ProjectId\n PoolzBackId\n }\n }\n"): (typeof documents)["\n mutation AdminCreatePoolzBackId($projectId: String!, $poolzBackId: Int!) {\n adminCreatePoolzBackId(projectId: $projectId, poolzBackId: $poolzBackId) {\n ProjectId\n PoolzBackId\n }\n }\n"];
|
|
91
|
+
export declare function gql(source: "\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 documents)["\n mutation AdminCreatePoolzBackId($projectId: String!, $poolzBackId: Int!, $chainId: Int!) {\n adminCreatePoolzBackId(projectId: $projectId, poolzBackId: $poolzBackId, chainId: $chainId) {\n ProjectId\n PoolzBackId\n }\n }\n"];
|
|
92
92
|
/**
|
|
93
93
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
94
94
|
*/
|
|
@@ -391,6 +391,7 @@ export type MutationAdminCreateAssetArgs = {
|
|
|
391
391
|
request: CreateAssetRequest;
|
|
392
392
|
};
|
|
393
393
|
export type MutationAdminCreatePoolzBackIdArgs = {
|
|
394
|
+
chainId: Scalars['Int']['input'];
|
|
394
395
|
poolzBackId: Scalars['Int']['input'];
|
|
395
396
|
projectId: Scalars['String']['input'];
|
|
396
397
|
};
|
|
@@ -1080,6 +1081,7 @@ export type AdminCleanCacheMutation = {
|
|
|
1080
1081
|
export type AdminCreatePoolzBackIdMutationVariables = Exact<{
|
|
1081
1082
|
projectId: Scalars['String']['input'];
|
|
1082
1083
|
poolzBackId: Scalars['Int']['input'];
|
|
1084
|
+
chainId: Scalars['Int']['input'];
|
|
1083
1085
|
}>;
|
|
1084
1086
|
export type AdminCreatePoolzBackIdMutation = {
|
|
1085
1087
|
__typename?: 'Mutation';
|