@poolzfinance/api4 1.11.37 → 1.11.38

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.
@@ -156,8 +156,8 @@ declare const documents: {
156
156
  projectId: number;
157
157
  minPoolxAmount: number;
158
158
  }>>;
159
- "\n mutation ProjectSignUpV2 {\n projectSignUpV2(projectId: 14) {\n ProjectId\n UserAddress\n JoinedTime\n }\n }\n": DocumentNode<types.ProjectSignUpV2Mutation, types.Exact<{
160
- [key: string]: never;
159
+ "\n mutation ProjectSignUpV2($projectId: Int!) {\n projectSignUpV2(projectId: $projectId) {\n ProjectId\n UserAddress\n JoinedTime\n }\n }\n": DocumentNode<types.ProjectSignUpV2Mutation, types.Exact<{
160
+ projectId: number;
161
161
  }>>;
162
162
  "\nquery SimpleUrlShortener($input: TxHashChainIdInput!) {\n simpleUrlShortener(input: $input) {\n ShortUrl\n ContainerText\n UrlToScan\n XPostText\n }\n}": DocumentNode<types.SimpleUrlShortenerQuery, types.Exact<{
163
163
  input: types.TxHashChainIdInput;
@@ -354,7 +354,7 @@ export declare function gql(source: "\n query AdminSignUpV2($projectId: Int!, $
354
354
  /**
355
355
  * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
356
356
  */
357
- export declare function gql(source: "\n mutation ProjectSignUpV2 {\n projectSignUpV2(projectId: 14) {\n ProjectId\n UserAddress\n JoinedTime\n }\n }\n"): (typeof documents)["\n mutation ProjectSignUpV2 {\n projectSignUpV2(projectId: 14) {\n ProjectId\n UserAddress\n JoinedTime\n }\n }\n"];
357
+ export declare function gql(source: "\n mutation ProjectSignUpV2($projectId: Int!) {\n projectSignUpV2(projectId: $projectId) {\n ProjectId\n UserAddress\n JoinedTime\n }\n }\n"): (typeof documents)["\n mutation ProjectSignUpV2($projectId: Int!) {\n projectSignUpV2(projectId: $projectId) {\n ProjectId\n UserAddress\n JoinedTime\n }\n }\n"];
358
358
  /**
359
359
  * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
360
360
  */
@@ -1391,7 +1391,7 @@ export type AdminSignUpV2Query = {
1391
1391
  }>;
1392
1392
  };
1393
1393
  export type ProjectSignUpV2MutationVariables = Exact<{
1394
- [key: string]: never;
1394
+ projectId: Scalars['Int']['input'];
1395
1395
  }>;
1396
1396
  export type ProjectSignUpV2Mutation = {
1397
1397
  __typename?: 'Mutation';
@@ -1626,7 +1626,7 @@ export declare const AdminSignUpV2Document: DocumentNode<AdminSignUpV2Query, Exa
1626
1626
  minPoolxAmount: Scalars['Int']['input'];
1627
1627
  }>>;
1628
1628
  export declare const ProjectSignUpV2Document: DocumentNode<ProjectSignUpV2Mutation, Exact<{
1629
- [key: string]: never;
1629
+ projectId: Scalars['Int']['input'];
1630
1630
  }>>;
1631
1631
  export declare const SimpleUrlShortenerDocument: DocumentNode<SimpleUrlShortenerQuery, Exact<{
1632
1632
  input: TxHashChainIdInput;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@poolzfinance/api4",
3
- "version": "1.11.37",
3
+ "version": "1.11.38",
4
4
  "description": "Bridge between front and back",
5
5
  "type": "module",
6
6
  "source": "src/index.ts",