@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.
@@ -71,9 +71,9 @@ declare const documents: {
71
71
  eip4361message: string;
72
72
  signature: string;
73
73
  }>>;
74
- "\n query GenerateMyInvestSignature($phaseId: String!, $WeiAmount: String!) {\n generateMyInvestSignature(phaseId: $phaseId, WeiAmount: $WeiAmount) {\n Signature\n ValidUntil\n }\n }\n": DocumentNode<types.GenerateMyInvestSignatureQuery, types.Exact<{
75
- phaseId: string;
76
- WeiAmount: string;
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($phaseId: String!, $WeiAmount: String!) {\n generateMyInvestSignature(phaseId: $phaseId, WeiAmount: $WeiAmount) {\n Signature\n ValidUntil\n }\n }\n"): (typeof documents)["\n query GenerateMyInvestSignature($phaseId: String!, $WeiAmount: String!) {\n generateMyInvestSignature(phaseId: $phaseId, WeiAmount: $WeiAmount) {\n Signature\n ValidUntil\n }\n }\n"];
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
- WeiAmount: Scalars['String']['input'];
766
- phaseId: Scalars['String']['input'];
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
- phaseId: Scalars['String']['input'];
1358
- WeiAmount: Scalars['String']['input'];
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
- phaseId: Scalars['String']['input'];
1957
- WeiAmount: Scalars['String']['input'];
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'];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@poolzfinance/api4",
3
- "version": "1.11.61",
3
+ "version": "1.12.0",
4
4
  "description": "Bridge between front and back",
5
5
  "type": "module",
6
6
  "source": "src/index.ts",