@poolzfinance/api4 1.11.61 → 1.12.0
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/investProvider.d.ts +2 -2
- 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 -6
- package/package.json +1 -1
|
@@ -71,9 +71,9 @@ declare const documents: {
|
|
|
71
71
|
eip4361message: string;
|
|
72
72
|
signature: string;
|
|
73
73
|
}>>;
|
|
74
|
-
"\n query GenerateMyInvestSignature($
|
|
75
|
-
|
|
76
|
-
|
|
74
|
+
"\n query GenerateMyInvestSignature($projectId: String!, $weiAmount: String!) {\n generateMyInvestSignature(projectId: $projectId, weiAmount: $weiAmount) {\n Signature\n ValidUntil\n }\n }\n": DocumentNode<types.GenerateMyInvestSignatureQuery, types.Exact<{
|
|
75
|
+
projectId: string;
|
|
76
|
+
weiAmount: string;
|
|
77
77
|
}>>;
|
|
78
78
|
"\n query InvestedErc20($investedErc20Id: Int!) {\n investedErc20(id: $investedErc20Id) {\n Wallet\n AmountIn\n TokenOut\n }\n}": DocumentNode<types.InvestedErc20Query, types.Exact<{
|
|
79
79
|
investedErc20Id: number;
|
|
@@ -292,7 +292,7 @@ export declare function gql(source: "\nmutation GenerateTokenFromSignature($eip4
|
|
|
292
292
|
/**
|
|
293
293
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
294
294
|
*/
|
|
295
|
-
export declare function gql(source: "\n query GenerateMyInvestSignature($
|
|
295
|
+
export declare function gql(source: "\n query GenerateMyInvestSignature($projectId: String!, $weiAmount: String!) {\n generateMyInvestSignature(projectId: $projectId, weiAmount: $weiAmount) {\n Signature\n ValidUntil\n }\n }\n"): (typeof documents)["\n query GenerateMyInvestSignature($projectId: String!, $weiAmount: String!) {\n generateMyInvestSignature(projectId: $projectId, weiAmount: $weiAmount) {\n Signature\n ValidUntil\n }\n }\n"];
|
|
296
296
|
/**
|
|
297
297
|
* The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
|
|
298
298
|
*/
|
|
@@ -762,8 +762,8 @@ export type QueryDaoSenderHistoryArgs = {
|
|
|
762
762
|
page: Scalars['Int']['input'];
|
|
763
763
|
};
|
|
764
764
|
export type QueryGenerateMyInvestSignatureArgs = {
|
|
765
|
-
|
|
766
|
-
|
|
765
|
+
projectId: Scalars['String']['input'];
|
|
766
|
+
weiAmount: Scalars['String']['input'];
|
|
767
767
|
};
|
|
768
768
|
export type QueryInvestedErc20Args = {
|
|
769
769
|
id: Scalars['Int']['input'];
|
|
@@ -1354,8 +1354,8 @@ export type GenerateTokenFromSignatureMutation = {
|
|
|
1354
1354
|
};
|
|
1355
1355
|
};
|
|
1356
1356
|
export type GenerateMyInvestSignatureQueryVariables = Exact<{
|
|
1357
|
-
|
|
1358
|
-
|
|
1357
|
+
projectId: Scalars['String']['input'];
|
|
1358
|
+
weiAmount: Scalars['String']['input'];
|
|
1359
1359
|
}>;
|
|
1360
1360
|
export type GenerateMyInvestSignatureQuery = {
|
|
1361
1361
|
__typename?: 'Query';
|
|
@@ -1953,8 +1953,8 @@ export declare const GenerateTokenFromSignatureDocument: DocumentNode<GenerateTo
|
|
|
1953
1953
|
signature: Scalars['String']['input'];
|
|
1954
1954
|
}>>;
|
|
1955
1955
|
export declare const GenerateMyInvestSignatureDocument: DocumentNode<GenerateMyInvestSignatureQuery, Exact<{
|
|
1956
|
-
|
|
1957
|
-
|
|
1956
|
+
projectId: Scalars['String']['input'];
|
|
1957
|
+
weiAmount: Scalars['String']['input'];
|
|
1958
1958
|
}>>;
|
|
1959
1959
|
export declare const InvestedErc20Document: DocumentNode<InvestedErc20Query, Exact<{
|
|
1960
1960
|
investedErc20Id: Scalars['Int']['input'];
|