@poolzfinance/api4 1.11.35 → 1.11.37

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.
@@ -48,9 +48,6 @@ declare const documents: {
48
48
  "\n query MyQuery {\n time\n}": DocumentNode<types.MyQueryQuery, types.Exact<{
49
49
  [key: string]: never;
50
50
  }>>;
51
- "\n query Downloader {\n downloader {\n ChainId\n ChainName\n RpcUrl\n CovalentLastBlock\n SecondsToWarning\n SecondsToError\n BlockPerSecond\n Events {\n ContractAddress\n EventHash\n Active\n StartingBlock\n EndingBlock\n MaxBatchSize\n ResponseType\n MaxPageNumber\n UrlSet\n Mapping {\n Id\n Path\n Converter\n Name\n }\n }\n }\n}": DocumentNode<types.DownloaderQuery, types.Exact<{
52
- [key: string]: never;
53
- }>>;
54
51
  "\nmutation GenerateTokenFromSignature($eip4361message: String!, $signature: String!) {\n generateTokenFromSignature(eip4361message: $eip4361message, signature: $signature){\n token\n validUntil\n }\n}": DocumentNode<types.GenerateTokenFromSignatureMutation, types.Exact<{
55
52
  eip4361message: string;
56
53
  signature: string;
@@ -130,20 +127,21 @@ declare const documents: {
130
127
  "\n query SeasonPass {\n seasonPass {\n Owner\n Amount\n ValidUntil\n Note\n }\n }\n": DocumentNode<types.SeasonPassQuery, types.Exact<{
131
128
  [key: string]: never;
132
129
  }>>;
133
- "\n mutation CreateSeasonPass($Owner: String!, $Amount: Float!, $ValidUntil: String!, $Note: String!) {\n createSeasonPass(\n seasonPass: { Owner: $Owner, Amount: $Amount, ValidUntil: $ValidUntil, Note: $Note }\n ) {\n Owner\n Amount\n ValidUntil\n Note\n }\n }\n": DocumentNode<types.CreateSeasonPassMutation, types.Exact<{
130
+ "\n mutation CreateSeasonPass($Owner: String!, $Amount: Float!, $ValidUntil: Int!, $Note: String!) {\n createSeasonPass(\n seasonPass: { Owner: $Owner, Amount: $Amount, ValidUntil: $ValidUntil, Note: $Note }\n ) {\n Owner\n Amount\n ValidUntil\n Note\n }\n }\n": DocumentNode<types.CreateSeasonPassMutation, types.Exact<{
134
131
  Owner: string;
135
132
  Amount: number;
136
- ValidUntil: string;
133
+ ValidUntil: number;
137
134
  Note: string;
138
135
  }>>;
139
- "\n mutation UpdateSeasonPass($Owner: String!, $Amount: Float!, $ValidUntil: String!, $Note: String!) {\n updateSeasonPass(\n seasonPass: { Owner: $Owner, Amount: $Amount, ValidUntil: $ValidUntil, Note: $Note }\n ) {\n Owner\n Amount\n ValidUntil\n Note\n }\n }\n": DocumentNode<types.UpdateSeasonPassMutation, types.Exact<{
136
+ "\n mutation UpdateSeasonPass($Owner: String!, $Amount: Float!, $ValidUntil: Int!, $Note: String!) {\n updateSeasonPass(\n seasonPass: { Owner: $Owner, Amount: $Amount, ValidUntil: $ValidUntil, Note: $Note }\n ) {\n Owner\n Amount\n ValidUntil\n Note\n }\n }\n": DocumentNode<types.UpdateSeasonPassMutation, types.Exact<{
140
137
  Owner: string;
141
138
  Amount: number;
142
- ValidUntil: string;
139
+ ValidUntil: number;
143
140
  Note: string;
144
141
  }>>;
145
- "\n mutation DeleteSeasonPass($owner: String!) {\n deleteSeasonPass(owner: $owner) {\n Owner\n Amount\n ValidUntil\n Note\n }\n }\n": DocumentNode<types.DeleteSeasonPassMutation, types.Exact<{
142
+ "\n mutation DeleteSeasonPass($owner: String!, $note: String!) {\n deleteSeasonPass(owner: $owner, note: $note) {\n Owner\n Amount\n ValidUntil\n Note\n }\n }\n": DocumentNode<types.DeleteSeasonPassMutation, types.Exact<{
146
143
  owner: string;
144
+ note: string;
147
145
  }>>;
148
146
  "\n query Signup($signUpId: Int!) {\n signUp(id: $signUpId) {\n Address\n Amount\n }\n}": DocumentNode<types.SignupQuery, types.Exact<{
149
147
  signUpId: number;
@@ -151,6 +149,16 @@ declare const documents: {
151
149
  "\n query MySignup {\n mySignup {\n SignupId\n }\n}": DocumentNode<types.MySignupQuery, types.Exact<{
152
150
  [key: string]: never;
153
151
  }>>;
152
+ "\n query MySignUpV2($projectIDs: [Int!]!) {\n mySignUpV2(projectIDs: $projectIDs) {\n ProjectId\n SignedUp\n }\n }\n": DocumentNode<types.MySignUpV2Query, types.Exact<{
153
+ projectIDs: number | number[];
154
+ }>>;
155
+ "\n query AdminSignUpV2($projectId: Int!, $minPoolxAmount: Int!) {\n adminSignUpV2(projectId: $projectId, minPoolxAmount: $minPoolxAmount) {\n Address\n Amount\n }\n }\n": DocumentNode<types.AdminSignUpV2Query, types.Exact<{
156
+ projectId: number;
157
+ minPoolxAmount: number;
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;
161
+ }>>;
154
162
  "\nquery SimpleUrlShortener($input: TxHashChainIdInput!) {\n simpleUrlShortener(input: $input) {\n ShortUrl\n ContainerText\n UrlToScan\n XPostText\n }\n}": DocumentNode<types.SimpleUrlShortenerQuery, types.Exact<{
155
163
  input: types.TxHashChainIdInput;
156
164
  }>>;
@@ -223,10 +231,6 @@ export declare function gql(source: "\n query DaoSenderHistory($page: Int!) {\n
223
231
  * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
224
232
  */
225
233
  export declare function gql(source: "\n query MyQuery {\n time\n}"): (typeof documents)["\n query MyQuery {\n time\n}"];
226
- /**
227
- * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
228
- */
229
- export declare function gql(source: "\n query Downloader {\n downloader {\n ChainId\n ChainName\n RpcUrl\n CovalentLastBlock\n SecondsToWarning\n SecondsToError\n BlockPerSecond\n Events {\n ContractAddress\n EventHash\n Active\n StartingBlock\n EndingBlock\n MaxBatchSize\n ResponseType\n MaxPageNumber\n UrlSet\n Mapping {\n Id\n Path\n Converter\n Name\n }\n }\n }\n}"): (typeof documents)["\n query Downloader {\n downloader {\n ChainId\n ChainName\n RpcUrl\n CovalentLastBlock\n SecondsToWarning\n SecondsToError\n BlockPerSecond\n Events {\n ContractAddress\n EventHash\n Active\n StartingBlock\n EndingBlock\n MaxBatchSize\n ResponseType\n MaxPageNumber\n UrlSet\n Mapping {\n Id\n Path\n Converter\n Name\n }\n }\n }\n}"];
230
234
  /**
231
235
  * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
232
236
  */
@@ -322,15 +326,15 @@ export declare function gql(source: "\n query SeasonPass {\n seasonPass {\n
322
326
  /**
323
327
  * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
324
328
  */
325
- export declare function gql(source: "\n mutation CreateSeasonPass($Owner: String!, $Amount: Float!, $ValidUntil: String!, $Note: String!) {\n createSeasonPass(\n seasonPass: { Owner: $Owner, Amount: $Amount, ValidUntil: $ValidUntil, Note: $Note }\n ) {\n Owner\n Amount\n ValidUntil\n Note\n }\n }\n"): (typeof documents)["\n mutation CreateSeasonPass($Owner: String!, $Amount: Float!, $ValidUntil: String!, $Note: String!) {\n createSeasonPass(\n seasonPass: { Owner: $Owner, Amount: $Amount, ValidUntil: $ValidUntil, Note: $Note }\n ) {\n Owner\n Amount\n ValidUntil\n Note\n }\n }\n"];
329
+ export declare function gql(source: "\n mutation CreateSeasonPass($Owner: String!, $Amount: Float!, $ValidUntil: Int!, $Note: String!) {\n createSeasonPass(\n seasonPass: { Owner: $Owner, Amount: $Amount, ValidUntil: $ValidUntil, Note: $Note }\n ) {\n Owner\n Amount\n ValidUntil\n Note\n }\n }\n"): (typeof documents)["\n mutation CreateSeasonPass($Owner: String!, $Amount: Float!, $ValidUntil: Int!, $Note: String!) {\n createSeasonPass(\n seasonPass: { Owner: $Owner, Amount: $Amount, ValidUntil: $ValidUntil, Note: $Note }\n ) {\n Owner\n Amount\n ValidUntil\n Note\n }\n }\n"];
326
330
  /**
327
331
  * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
328
332
  */
329
- export declare function gql(source: "\n mutation UpdateSeasonPass($Owner: String!, $Amount: Float!, $ValidUntil: String!, $Note: String!) {\n updateSeasonPass(\n seasonPass: { Owner: $Owner, Amount: $Amount, ValidUntil: $ValidUntil, Note: $Note }\n ) {\n Owner\n Amount\n ValidUntil\n Note\n }\n }\n"): (typeof documents)["\n mutation UpdateSeasonPass($Owner: String!, $Amount: Float!, $ValidUntil: String!, $Note: String!) {\n updateSeasonPass(\n seasonPass: { Owner: $Owner, Amount: $Amount, ValidUntil: $ValidUntil, Note: $Note }\n ) {\n Owner\n Amount\n ValidUntil\n Note\n }\n }\n"];
333
+ export declare function gql(source: "\n mutation UpdateSeasonPass($Owner: String!, $Amount: Float!, $ValidUntil: Int!, $Note: String!) {\n updateSeasonPass(\n seasonPass: { Owner: $Owner, Amount: $Amount, ValidUntil: $ValidUntil, Note: $Note }\n ) {\n Owner\n Amount\n ValidUntil\n Note\n }\n }\n"): (typeof documents)["\n mutation UpdateSeasonPass($Owner: String!, $Amount: Float!, $ValidUntil: Int!, $Note: String!) {\n updateSeasonPass(\n seasonPass: { Owner: $Owner, Amount: $Amount, ValidUntil: $ValidUntil, Note: $Note }\n ) {\n Owner\n Amount\n ValidUntil\n Note\n }\n }\n"];
330
334
  /**
331
335
  * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
332
336
  */
333
- export declare function gql(source: "\n mutation DeleteSeasonPass($owner: String!) {\n deleteSeasonPass(owner: $owner) {\n Owner\n Amount\n ValidUntil\n Note\n }\n }\n"): (typeof documents)["\n mutation DeleteSeasonPass($owner: String!) {\n deleteSeasonPass(owner: $owner) {\n Owner\n Amount\n ValidUntil\n Note\n }\n }\n"];
337
+ export declare function gql(source: "\n mutation DeleteSeasonPass($owner: String!, $note: String!) {\n deleteSeasonPass(owner: $owner, note: $note) {\n Owner\n Amount\n ValidUntil\n Note\n }\n }\n"): (typeof documents)["\n mutation DeleteSeasonPass($owner: String!, $note: String!) {\n deleteSeasonPass(owner: $owner, note: $note) {\n Owner\n Amount\n ValidUntil\n Note\n }\n }\n"];
334
338
  /**
335
339
  * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
336
340
  */
@@ -339,6 +343,18 @@ export declare function gql(source: "\n query Signup($signUpId: Int!) {\n si
339
343
  * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
340
344
  */
341
345
  export declare function gql(source: "\n query MySignup {\n mySignup {\n SignupId\n }\n}"): (typeof documents)["\n query MySignup {\n mySignup {\n SignupId\n }\n}"];
346
+ /**
347
+ * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
348
+ */
349
+ export declare function gql(source: "\n query MySignUpV2($projectIDs: [Int!]!) {\n mySignUpV2(projectIDs: $projectIDs) {\n ProjectId\n SignedUp\n }\n }\n"): (typeof documents)["\n query MySignUpV2($projectIDs: [Int!]!) {\n mySignUpV2(projectIDs: $projectIDs) {\n ProjectId\n SignedUp\n }\n }\n"];
350
+ /**
351
+ * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
352
+ */
353
+ export declare function gql(source: "\n query AdminSignUpV2($projectId: Int!, $minPoolxAmount: Int!) {\n adminSignUpV2(projectId: $projectId, minPoolxAmount: $minPoolxAmount) {\n Address\n Amount\n }\n }\n"): (typeof documents)["\n query AdminSignUpV2($projectId: Int!, $minPoolxAmount: Int!) {\n adminSignUpV2(projectId: $projectId, minPoolxAmount: $minPoolxAmount) {\n Address\n Amount\n }\n }\n"];
354
+ /**
355
+ * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
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"];
342
358
  /**
343
359
  * The gql function is used to parse GraphQL queries into a document that can be used by GraphQL clients.
344
360
  */