@poolzfinance/api4 1.11.37 → 1.11.39
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/signupV2.d.ts +1 -1
- 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 +3 -3
- package/dist/types/graphql/graphql.d.ts +2 -2
- package/package.json +1 -1
|
@@ -156,8 +156,8 @@ declare const documents: {
|
|
|
156
156
|
projectId: number;
|
|
157
157
|
minPoolxAmount: number;
|
|
158
158
|
}>>;
|
|
159
|
-
"\n mutation ProjectSignUpV2 {\n projectSignUpV2(projectId:
|
|
160
|
-
|
|
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:
|
|
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
|
-
|
|
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
|
-
|
|
1629
|
+
projectId: Scalars['Int']['input'];
|
|
1630
1630
|
}>>;
|
|
1631
1631
|
export declare const SimpleUrlShortenerDocument: DocumentNode<SimpleUrlShortenerQuery, Exact<{
|
|
1632
1632
|
input: TxHashChainIdInput;
|