@ludo.ninja/api 2.8.85 → 2.8.86
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/build/config/index.js +3 -2
- package/build/cookies/index.d.ts +1 -1
- package/build/graphql_tools/__generated__/adminHost/schema.d.ts +33 -33
- package/build/graphql_tools/__generated__/adminHost/schema.js +68 -66
- package/build/graphql_tools/__generated__/assetsHost/schema.d.ts +2 -2
- package/build/graphql_tools/__generated__/assetsHost/schema.js +3 -3
- package/build/graphql_tools/__generated__/authHost/schema.d.ts +2 -2
- package/build/graphql_tools/__generated__/authHost/schema.js +3 -3
- package/build/graphql_tools/__generated__/collectionsHost/schema.d.ts +4 -2
- package/build/graphql_tools/__generated__/collectionsHost/schema.js +3 -3
- package/build/graphql_tools/__generated__/experiencesHost/schema.d.ts +9 -9
- package/build/graphql_tools/__generated__/experiencesHost/schema.js +10 -10
- package/build/graphql_tools/__generated__/extensionHost/schema.d.ts +28 -28
- package/build/graphql_tools/__generated__/extensionHost/schema.js +18 -18
- package/build/graphql_tools/__generated__/formsHost/schema.js +8 -8
- package/build/graphql_tools/__generated__/galleriesHost/schema.d.ts +46 -46
- package/build/graphql_tools/__generated__/galleriesHost/schema.js +21 -21
- package/build/graphql_tools/__generated__/identityHost/schema.d.ts +52 -62
- package/build/graphql_tools/__generated__/identityHost/schema.js +32 -31
- package/build/graphql_tools/__generated__/mediasHost/schema.d.ts +5 -5
- package/build/graphql_tools/__generated__/mediasHost/schema.js +5 -5
- package/build/graphql_tools/__generated__/notificationsHost/schema.d.ts +14 -5
- package/build/graphql_tools/__generated__/notificationsHost/schema.js +2 -2
- package/build/graphql_tools/__generated__/opportunitiesHost/schema.d.ts +7 -7
- package/build/graphql_tools/__generated__/opportunitiesHost/schema.js +11 -11
- package/build/graphql_tools/__generated__/preferencesHost/schema.d.ts +2 -2
- package/build/graphql_tools/__generated__/preferencesHost/schema.js +23 -23
- package/build/graphql_tools/__generated__/searchHost/schema.d.ts +48 -48
- package/build/graphql_tools/__generated__/searchHost/schema.js +33 -33
- package/build/graphql_tools/__generated__/tapHost/schema.d.ts +13 -9
- package/build/graphql_tools/__generated__/tapHost/schema.js +14 -12
- package/build/index.d.ts +1217 -570
- package/package.json +1 -1
- package/src/graphql_tools/__generated__/collectionsHost/schema.ts +2 -0
- package/src/graphql_tools/__generated__/identityHost/schema.ts +0 -12
- package/src/graphql_tools/__generated__/notificationsHost/schema.ts +13 -2
- package/src/graphql_tools/__generated__/tapHost/schema.ts +10 -1
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -145,31 +145,26 @@ export type IMutationSignInMetamaskArgs = {
|
|
|
145
145
|
address: Scalars['String'];
|
|
146
146
|
chainId: Scalars['String'];
|
|
147
147
|
restore?: Maybe<Scalars['Boolean']>;
|
|
148
|
-
inviteCode?: Maybe<Scalars['String']>;
|
|
149
148
|
};
|
|
150
149
|
export type IMutationSignInTezosArgs = {
|
|
151
150
|
signature: Scalars['String'];
|
|
152
151
|
pubkey: Scalars['String'];
|
|
153
152
|
restore?: Maybe<Scalars['Boolean']>;
|
|
154
|
-
inviteCode?: Maybe<Scalars['String']>;
|
|
155
153
|
};
|
|
156
154
|
export type IMutationSignInSolanaArgs = {
|
|
157
155
|
signature: Scalars['String'];
|
|
158
156
|
pubkey: Scalars['String'];
|
|
159
157
|
restore?: Maybe<Scalars['Boolean']>;
|
|
160
|
-
inviteCode?: Maybe<Scalars['String']>;
|
|
161
158
|
};
|
|
162
159
|
export type IMutationSignInElrondArgs = {
|
|
163
160
|
signature: Scalars['String'];
|
|
164
161
|
address: Scalars['String'];
|
|
165
162
|
restore?: Maybe<Scalars['Boolean']>;
|
|
166
|
-
inviteCode?: Maybe<Scalars['String']>;
|
|
167
163
|
};
|
|
168
164
|
export type IMutationSignInFlowArgs = {
|
|
169
165
|
signature: Scalars['String'];
|
|
170
166
|
address: Scalars['String'];
|
|
171
167
|
restore?: Maybe<Scalars['Boolean']>;
|
|
172
|
-
inviteCode?: Maybe<Scalars['String']>;
|
|
173
168
|
};
|
|
174
169
|
export type IMutationSignInTonArgs = {
|
|
175
170
|
request: ICheckTonProofRequest;
|
|
@@ -284,7 +279,6 @@ export type IQuery = {
|
|
|
284
279
|
getDummy: Scalars['String'];
|
|
285
280
|
fetchUserWallets: Array<Maybe<IWallet>>;
|
|
286
281
|
fetchMultiversxAudit?: Maybe<IMultiversxAudit>;
|
|
287
|
-
isInviteCodeAvailable: Scalars['Boolean'];
|
|
288
282
|
fetchInviteCode: IInviteCode;
|
|
289
283
|
fetchMyProfileV2: IMyProfileV2;
|
|
290
284
|
fetchProfile: IProfile;
|
|
@@ -297,9 +291,6 @@ export type IQueryFetchUserWalletsArgs = {
|
|
|
297
291
|
export type IQueryFetchMultiversxAuditArgs = {
|
|
298
292
|
wallet: Scalars['String'];
|
|
299
293
|
};
|
|
300
|
-
export type IQueryIsInviteCodeAvailableArgs = {
|
|
301
|
-
inviteCode: Scalars['String'];
|
|
302
|
-
};
|
|
303
294
|
export type IQueryFetchInviteCodeArgs = {
|
|
304
295
|
inviteCode: Scalars['String'];
|
|
305
296
|
};
|
|
@@ -602,7 +593,6 @@ export type IQueryResolvers<ContextType = any, ParentType extends IResolversPare
|
|
|
602
593
|
getDummy?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
603
594
|
fetchUserWallets?: Resolver<Array<Maybe<IResolversTypes['Wallet']>>, ParentType, ContextType, RequireFields<IQueryFetchUserWalletsArgs, 'userId'>>;
|
|
604
595
|
fetchMultiversxAudit?: Resolver<Maybe<IResolversTypes['MultiversxAudit']>, ParentType, ContextType, RequireFields<IQueryFetchMultiversxAuditArgs, 'wallet'>>;
|
|
605
|
-
isInviteCodeAvailable?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IQueryIsInviteCodeAvailableArgs, 'inviteCode'>>;
|
|
606
596
|
fetchInviteCode?: Resolver<IResolversTypes['InviteCode'], ParentType, ContextType, RequireFields<IQueryFetchInviteCodeArgs, 'inviteCode'>>;
|
|
607
597
|
fetchMyProfileV2?: Resolver<IResolversTypes['MyProfileV2'], ParentType, ContextType>;
|
|
608
598
|
fetchProfile?: Resolver<IResolversTypes['Profile'], ParentType, ContextType, RequireFields<IQueryFetchProfileArgs, 'userId'>>;
|
|
@@ -896,8 +886,8 @@ export type IAddWalletElrondMutationFn = Apollo.MutationFunction<IAddWalletElron
|
|
|
896
886
|
* });
|
|
897
887
|
*/
|
|
898
888
|
export declare function useAddWalletElrondMutation(baseOptions?: Apollo.MutationHookOptions<IAddWalletElrondMutation, IAddWalletElrondMutationVariables>): Apollo.MutationTuple<IAddWalletElrondMutation, Exact<{
|
|
899
|
-
signature:
|
|
900
|
-
address:
|
|
889
|
+
signature: string;
|
|
890
|
+
address: string;
|
|
901
891
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
902
892
|
export type AddWalletElrondMutationHookResult = ReturnType<typeof useAddWalletElrondMutation>;
|
|
903
893
|
export type AddWalletElrondMutationResult = Apollo.MutationResult<IAddWalletElrondMutation>;
|
|
@@ -923,8 +913,8 @@ export type IAddWalletFlowMutationFn = Apollo.MutationFunction<IAddWalletFlowMut
|
|
|
923
913
|
* });
|
|
924
914
|
*/
|
|
925
915
|
export declare function useAddWalletFlowMutation(baseOptions?: Apollo.MutationHookOptions<IAddWalletFlowMutation, IAddWalletFlowMutationVariables>): Apollo.MutationTuple<IAddWalletFlowMutation, Exact<{
|
|
926
|
-
signature:
|
|
927
|
-
address:
|
|
916
|
+
signature: string;
|
|
917
|
+
address: string;
|
|
928
918
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
929
919
|
export type AddWalletFlowMutationHookResult = ReturnType<typeof useAddWalletFlowMutation>;
|
|
930
920
|
export type AddWalletFlowMutationResult = Apollo.MutationResult<IAddWalletFlowMutation>;
|
|
@@ -951,9 +941,9 @@ export type IAddWalletMetamaskMutationFn = Apollo.MutationFunction<IAddWalletMet
|
|
|
951
941
|
* });
|
|
952
942
|
*/
|
|
953
943
|
export declare function useAddWalletMetamaskMutation(baseOptions?: Apollo.MutationHookOptions<IAddWalletMetamaskMutation, IAddWalletMetamaskMutationVariables>): Apollo.MutationTuple<IAddWalletMetamaskMutation, Exact<{
|
|
954
|
-
signature:
|
|
955
|
-
address:
|
|
956
|
-
chainId:
|
|
944
|
+
signature: string;
|
|
945
|
+
address: string;
|
|
946
|
+
chainId: string;
|
|
957
947
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
958
948
|
export type AddWalletMetamaskMutationHookResult = ReturnType<typeof useAddWalletMetamaskMutation>;
|
|
959
949
|
export type AddWalletMetamaskMutationResult = Apollo.MutationResult<IAddWalletMetamaskMutation>;
|
|
@@ -979,8 +969,8 @@ export type IAddWalletSolanaMutationFn = Apollo.MutationFunction<IAddWalletSolan
|
|
|
979
969
|
* });
|
|
980
970
|
*/
|
|
981
971
|
export declare function useAddWalletSolanaMutation(baseOptions?: Apollo.MutationHookOptions<IAddWalletSolanaMutation, IAddWalletSolanaMutationVariables>): Apollo.MutationTuple<IAddWalletSolanaMutation, Exact<{
|
|
982
|
-
signature:
|
|
983
|
-
pubkey:
|
|
972
|
+
signature: string;
|
|
973
|
+
pubkey: string;
|
|
984
974
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
985
975
|
export type AddWalletSolanaMutationHookResult = ReturnType<typeof useAddWalletSolanaMutation>;
|
|
986
976
|
export type AddWalletSolanaMutationResult = Apollo.MutationResult<IAddWalletSolanaMutation>;
|
|
@@ -1006,8 +996,8 @@ export type IAddWalletTezosMutationFn = Apollo.MutationFunction<IAddWalletTezosM
|
|
|
1006
996
|
* });
|
|
1007
997
|
*/
|
|
1008
998
|
export declare function useAddWalletTezosMutation(baseOptions?: Apollo.MutationHookOptions<IAddWalletTezosMutation, IAddWalletTezosMutationVariables>): Apollo.MutationTuple<IAddWalletTezosMutation, Exact<{
|
|
1009
|
-
signature:
|
|
1010
|
-
pubkey:
|
|
999
|
+
signature: string;
|
|
1000
|
+
pubkey: string;
|
|
1011
1001
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1012
1002
|
export type AddWalletTezosMutationHookResult = ReturnType<typeof useAddWalletTezosMutation>;
|
|
1013
1003
|
export type AddWalletTezosMutationResult = Apollo.MutationResult<IAddWalletTezosMutation>;
|
|
@@ -1083,9 +1073,9 @@ export type ICreateNonceMutationFn = Apollo.MutationFunction<ICreateNonceMutatio
|
|
|
1083
1073
|
* });
|
|
1084
1074
|
*/
|
|
1085
1075
|
export declare function useCreateNonceMutation(baseOptions?: Apollo.MutationHookOptions<ICreateNonceMutation, ICreateNonceMutationVariables>): Apollo.MutationTuple<ICreateNonceMutation, Exact<{
|
|
1086
|
-
address:
|
|
1087
|
-
blockchain:
|
|
1088
|
-
chainId?: Maybe<
|
|
1076
|
+
address: string;
|
|
1077
|
+
blockchain: string;
|
|
1078
|
+
chainId?: Maybe<string> | undefined;
|
|
1089
1079
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1090
1080
|
export type CreateNonceMutationHookResult = ReturnType<typeof useCreateNonceMutation>;
|
|
1091
1081
|
export type CreateNonceMutationResult = Apollo.MutationResult<ICreateNonceMutation>;
|
|
@@ -1134,7 +1124,7 @@ export type IGenerateNewInviteCodesMutationFn = Apollo.MutationFunction<IGenerat
|
|
|
1134
1124
|
* });
|
|
1135
1125
|
*/
|
|
1136
1126
|
export declare function useGenerateNewInviteCodesMutation(baseOptions?: Apollo.MutationHookOptions<IGenerateNewInviteCodesMutation, IGenerateNewInviteCodesMutationVariables>): Apollo.MutationTuple<IGenerateNewInviteCodesMutation, Exact<{
|
|
1137
|
-
codesNum:
|
|
1127
|
+
codesNum: number;
|
|
1138
1128
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1139
1129
|
export type GenerateNewInviteCodesMutationHookResult = ReturnType<typeof useGenerateNewInviteCodesMutation>;
|
|
1140
1130
|
export type GenerateNewInviteCodesMutationResult = Apollo.MutationResult<IGenerateNewInviteCodesMutation>;
|
|
@@ -1159,7 +1149,7 @@ export type IUseInviteCodeMutationFn = Apollo.MutationFunction<IUseInviteCodeMut
|
|
|
1159
1149
|
* });
|
|
1160
1150
|
*/
|
|
1161
1151
|
export declare function useUseInviteCodeMutation(baseOptions?: Apollo.MutationHookOptions<IUseInviteCodeMutation, IUseInviteCodeMutationVariables>): Apollo.MutationTuple<IUseInviteCodeMutation, Exact<{
|
|
1162
|
-
inviteCode:
|
|
1152
|
+
inviteCode: string;
|
|
1163
1153
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1164
1154
|
export type UseInviteCodeMutationHookResult = ReturnType<typeof useUseInviteCodeMutation>;
|
|
1165
1155
|
export type UseInviteCodeMutationResult = Apollo.MutationResult<IUseInviteCodeMutation>;
|
|
@@ -1186,9 +1176,9 @@ export type IRemoveWalletMutationFn = Apollo.MutationFunction<IRemoveWalletMutat
|
|
|
1186
1176
|
* });
|
|
1187
1177
|
*/
|
|
1188
1178
|
export declare function useRemoveWalletMutation(baseOptions?: Apollo.MutationHookOptions<IRemoveWalletMutation, IRemoveWalletMutationVariables>): Apollo.MutationTuple<IRemoveWalletMutation, Exact<{
|
|
1189
|
-
blockchain:
|
|
1190
|
-
address:
|
|
1191
|
-
chainId?: Maybe<
|
|
1179
|
+
blockchain: string;
|
|
1180
|
+
address: string;
|
|
1181
|
+
chainId?: Maybe<string> | undefined;
|
|
1192
1182
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1193
1183
|
export type RemoveWalletMutationHookResult = ReturnType<typeof useRemoveWalletMutation>;
|
|
1194
1184
|
export type RemoveWalletMutationResult = Apollo.MutationResult<IRemoveWalletMutation>;
|
|
@@ -1214,8 +1204,8 @@ export type ISaveEmailOfJoinerMutationFn = Apollo.MutationFunction<ISaveEmailOfJ
|
|
|
1214
1204
|
* });
|
|
1215
1205
|
*/
|
|
1216
1206
|
export declare function useSaveEmailOfJoinerMutation(baseOptions?: Apollo.MutationHookOptions<ISaveEmailOfJoinerMutation, ISaveEmailOfJoinerMutationVariables>): Apollo.MutationTuple<ISaveEmailOfJoinerMutation, Exact<{
|
|
1217
|
-
email:
|
|
1218
|
-
isSubscribed:
|
|
1207
|
+
email: string;
|
|
1208
|
+
isSubscribed: boolean;
|
|
1219
1209
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1220
1210
|
export type SaveEmailOfJoinerMutationHookResult = ReturnType<typeof useSaveEmailOfJoinerMutation>;
|
|
1221
1211
|
export type SaveEmailOfJoinerMutationResult = Apollo.MutationResult<ISaveEmailOfJoinerMutation>;
|
|
@@ -1242,9 +1232,9 @@ export type ISetMainWalletMutationFn = Apollo.MutationFunction<ISetMainWalletMut
|
|
|
1242
1232
|
* });
|
|
1243
1233
|
*/
|
|
1244
1234
|
export declare function useSetMainWalletMutation(baseOptions?: Apollo.MutationHookOptions<ISetMainWalletMutation, ISetMainWalletMutationVariables>): Apollo.MutationTuple<ISetMainWalletMutation, Exact<{
|
|
1245
|
-
blockchain:
|
|
1246
|
-
address:
|
|
1247
|
-
chainId?: Maybe<
|
|
1235
|
+
blockchain: string;
|
|
1236
|
+
address: string;
|
|
1237
|
+
chainId?: Maybe<string> | undefined;
|
|
1248
1238
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1249
1239
|
export type SetMainWalletMutationHookResult = ReturnType<typeof useSetMainWalletMutation>;
|
|
1250
1240
|
export type SetMainWalletMutationResult = Apollo.MutationResult<ISetMainWalletMutation>;
|
|
@@ -1271,9 +1261,9 @@ export type ISignInAdminMetamaskMutationFn = Apollo.MutationFunction<ISignInAdmi
|
|
|
1271
1261
|
* });
|
|
1272
1262
|
*/
|
|
1273
1263
|
export declare function useSignInAdminMetamaskMutation(baseOptions?: Apollo.MutationHookOptions<ISignInAdminMetamaskMutation, ISignInAdminMetamaskMutationVariables>): Apollo.MutationTuple<ISignInAdminMetamaskMutation, Exact<{
|
|
1274
|
-
signature:
|
|
1275
|
-
address:
|
|
1276
|
-
chainId:
|
|
1264
|
+
signature: string;
|
|
1265
|
+
address: string;
|
|
1266
|
+
chainId: string;
|
|
1277
1267
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1278
1268
|
export type SignInAdminMetamaskMutationHookResult = ReturnType<typeof useSignInAdminMetamaskMutation>;
|
|
1279
1269
|
export type SignInAdminMetamaskMutationResult = Apollo.MutationResult<ISignInAdminMetamaskMutation>;
|
|
@@ -1299,8 +1289,8 @@ export type ISignInElrondMutationFn = Apollo.MutationFunction<ISignInElrondMutat
|
|
|
1299
1289
|
* });
|
|
1300
1290
|
*/
|
|
1301
1291
|
export declare function useSignInElrondMutation(baseOptions?: Apollo.MutationHookOptions<ISignInElrondMutation, ISignInElrondMutationVariables>): Apollo.MutationTuple<ISignInElrondMutation, Exact<{
|
|
1302
|
-
signature:
|
|
1303
|
-
address:
|
|
1292
|
+
signature: string;
|
|
1293
|
+
address: string;
|
|
1304
1294
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1305
1295
|
export type SignInElrondMutationHookResult = ReturnType<typeof useSignInElrondMutation>;
|
|
1306
1296
|
export type SignInElrondMutationResult = Apollo.MutationResult<ISignInElrondMutation>;
|
|
@@ -1326,8 +1316,8 @@ export type ISignInFlowMutationFn = Apollo.MutationFunction<ISignInFlowMutation,
|
|
|
1326
1316
|
* });
|
|
1327
1317
|
*/
|
|
1328
1318
|
export declare function useSignInFlowMutation(baseOptions?: Apollo.MutationHookOptions<ISignInFlowMutation, ISignInFlowMutationVariables>): Apollo.MutationTuple<ISignInFlowMutation, Exact<{
|
|
1329
|
-
signature:
|
|
1330
|
-
address:
|
|
1319
|
+
signature: string;
|
|
1320
|
+
address: string;
|
|
1331
1321
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1332
1322
|
export type SignInFlowMutationHookResult = ReturnType<typeof useSignInFlowMutation>;
|
|
1333
1323
|
export type SignInFlowMutationResult = Apollo.MutationResult<ISignInFlowMutation>;
|
|
@@ -1354,9 +1344,9 @@ export type ISignInMetamaskMutationFn = Apollo.MutationFunction<ISignInMetamaskM
|
|
|
1354
1344
|
* });
|
|
1355
1345
|
*/
|
|
1356
1346
|
export declare function useSignInMetamaskMutation(baseOptions?: Apollo.MutationHookOptions<ISignInMetamaskMutation, ISignInMetamaskMutationVariables>): Apollo.MutationTuple<ISignInMetamaskMutation, Exact<{
|
|
1357
|
-
signature:
|
|
1358
|
-
address:
|
|
1359
|
-
chainId:
|
|
1347
|
+
signature: string;
|
|
1348
|
+
address: string;
|
|
1349
|
+
chainId: string;
|
|
1360
1350
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1361
1351
|
export type SignInMetamaskMutationHookResult = ReturnType<typeof useSignInMetamaskMutation>;
|
|
1362
1352
|
export type SignInMetamaskMutationResult = Apollo.MutationResult<ISignInMetamaskMutation>;
|
|
@@ -1382,8 +1372,8 @@ export type ISignInSolanaMutationFn = Apollo.MutationFunction<ISignInSolanaMutat
|
|
|
1382
1372
|
* });
|
|
1383
1373
|
*/
|
|
1384
1374
|
export declare function useSignInSolanaMutation(baseOptions?: Apollo.MutationHookOptions<ISignInSolanaMutation, ISignInSolanaMutationVariables>): Apollo.MutationTuple<ISignInSolanaMutation, Exact<{
|
|
1385
|
-
signature:
|
|
1386
|
-
pubkey:
|
|
1375
|
+
signature: string;
|
|
1376
|
+
pubkey: string;
|
|
1387
1377
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1388
1378
|
export type SignInSolanaMutationHookResult = ReturnType<typeof useSignInSolanaMutation>;
|
|
1389
1379
|
export type SignInSolanaMutationResult = Apollo.MutationResult<ISignInSolanaMutation>;
|
|
@@ -1409,8 +1399,8 @@ export type ISignInTezosMutationFn = Apollo.MutationFunction<ISignInTezosMutatio
|
|
|
1409
1399
|
* });
|
|
1410
1400
|
*/
|
|
1411
1401
|
export declare function useSignInTezosMutation(baseOptions?: Apollo.MutationHookOptions<ISignInTezosMutation, ISignInTezosMutationVariables>): Apollo.MutationTuple<ISignInTezosMutation, Exact<{
|
|
1412
|
-
signature:
|
|
1413
|
-
pubkey:
|
|
1402
|
+
signature: string;
|
|
1403
|
+
pubkey: string;
|
|
1414
1404
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1415
1405
|
export type SignInTezosMutationHookResult = ReturnType<typeof useSignInTezosMutation>;
|
|
1416
1406
|
export type SignInTezosMutationResult = Apollo.MutationResult<ISignInTezosMutation>;
|
|
@@ -1437,7 +1427,7 @@ export type ISignInTonMutationFn = Apollo.MutationFunction<ISignInTonMutation, I
|
|
|
1437
1427
|
*/
|
|
1438
1428
|
export declare function useSignInTonMutation(baseOptions?: Apollo.MutationHookOptions<ISignInTonMutation, ISignInTonMutationVariables>): Apollo.MutationTuple<ISignInTonMutation, Exact<{
|
|
1439
1429
|
request: ICheckTonProofRequest;
|
|
1440
|
-
restore?: Maybe<
|
|
1430
|
+
restore?: Maybe<boolean> | undefined;
|
|
1441
1431
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1442
1432
|
export type SignInTonMutationHookResult = ReturnType<typeof useSignInTonMutation>;
|
|
1443
1433
|
export type SignInTonMutationResult = Apollo.MutationResult<ISignInTonMutation>;
|
|
@@ -1468,13 +1458,13 @@ export type IUpdateProfileMutationFn = Apollo.MutationFunction<IUpdateProfileMut
|
|
|
1468
1458
|
* });
|
|
1469
1459
|
*/
|
|
1470
1460
|
export declare function useUpdateProfileMutation(baseOptions?: Apollo.MutationHookOptions<IUpdateProfileMutation, IUpdateProfileMutationVariables>): Apollo.MutationTuple<IUpdateProfileMutation, Exact<{
|
|
1471
|
-
username?: Maybe<
|
|
1472
|
-
about?: Maybe<
|
|
1473
|
-
facebook?: Maybe<
|
|
1474
|
-
twitter?: Maybe<
|
|
1475
|
-
instagram?: Maybe<
|
|
1476
|
-
website?: Maybe<
|
|
1477
|
-
showNsfw?: Maybe<
|
|
1461
|
+
username?: Maybe<string> | undefined;
|
|
1462
|
+
about?: Maybe<string> | undefined;
|
|
1463
|
+
facebook?: Maybe<string> | undefined;
|
|
1464
|
+
twitter?: Maybe<string> | undefined;
|
|
1465
|
+
instagram?: Maybe<string> | undefined;
|
|
1466
|
+
website?: Maybe<string> | undefined;
|
|
1467
|
+
showNsfw?: Maybe<boolean> | undefined;
|
|
1478
1468
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1479
1469
|
export type UpdateProfileMutationHookResult = ReturnType<typeof useUpdateProfileMutation>;
|
|
1480
1470
|
export type UpdateProfileMutationResult = Apollo.MutationResult<IUpdateProfileMutation>;
|
|
@@ -1497,10 +1487,10 @@ export declare const FetchMultiversXAuditDocument: Apollo.DocumentNode;
|
|
|
1497
1487
|
* });
|
|
1498
1488
|
*/
|
|
1499
1489
|
export declare function useFetchMultiversXAuditQuery(baseOptions: Apollo.QueryHookOptions<IFetchMultiversXAuditQuery, IFetchMultiversXAuditQueryVariables>): Apollo.QueryResult<IFetchMultiversXAuditQuery, Exact<{
|
|
1500
|
-
wallet:
|
|
1490
|
+
wallet: string;
|
|
1501
1491
|
}>>;
|
|
1502
1492
|
export declare function useFetchMultiversXAuditLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchMultiversXAuditQuery, IFetchMultiversXAuditQueryVariables>): Apollo.LazyQueryResultTuple<IFetchMultiversXAuditQuery, Exact<{
|
|
1503
|
-
wallet:
|
|
1493
|
+
wallet: string;
|
|
1504
1494
|
}>>;
|
|
1505
1495
|
export type FetchMultiversXAuditQueryHookResult = ReturnType<typeof useFetchMultiversXAuditQuery>;
|
|
1506
1496
|
export type FetchMultiversXAuditLazyQueryHookResult = ReturnType<typeof useFetchMultiversXAuditLazyQuery>;
|
|
@@ -1548,10 +1538,10 @@ export declare const FetchProfileDocument: Apollo.DocumentNode;
|
|
|
1548
1538
|
* });
|
|
1549
1539
|
*/
|
|
1550
1540
|
export declare function useFetchProfileQuery(baseOptions: Apollo.QueryHookOptions<IFetchProfileQuery, IFetchProfileQueryVariables>): Apollo.QueryResult<IFetchProfileQuery, Exact<{
|
|
1551
|
-
userId:
|
|
1541
|
+
userId: string;
|
|
1552
1542
|
}>>;
|
|
1553
1543
|
export declare function useFetchProfileLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchProfileQuery, IFetchProfileQueryVariables>): Apollo.LazyQueryResultTuple<IFetchProfileQuery, Exact<{
|
|
1554
|
-
userId:
|
|
1544
|
+
userId: string;
|
|
1555
1545
|
}>>;
|
|
1556
1546
|
export type FetchProfileQueryHookResult = ReturnType<typeof useFetchProfileQuery>;
|
|
1557
1547
|
export type FetchProfileLazyQueryHookResult = ReturnType<typeof useFetchProfileLazyQuery>;
|
|
@@ -1574,10 +1564,10 @@ export declare const FetchUserWalletsDocument: Apollo.DocumentNode;
|
|
|
1574
1564
|
* });
|
|
1575
1565
|
*/
|
|
1576
1566
|
export declare function useFetchUserWalletsQuery(baseOptions: Apollo.QueryHookOptions<IFetchUserWalletsQuery, IFetchUserWalletsQueryVariables>): Apollo.QueryResult<IFetchUserWalletsQuery, Exact<{
|
|
1577
|
-
userId:
|
|
1567
|
+
userId: string;
|
|
1578
1568
|
}>>;
|
|
1579
1569
|
export declare function useFetchUserWalletsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchUserWalletsQuery, IFetchUserWalletsQueryVariables>): Apollo.LazyQueryResultTuple<IFetchUserWalletsQuery, Exact<{
|
|
1580
|
-
userId:
|
|
1570
|
+
userId: string;
|
|
1581
1571
|
}>>;
|
|
1582
1572
|
export type FetchUserWalletsQueryHookResult = ReturnType<typeof useFetchUserWalletsQuery>;
|
|
1583
1573
|
export type FetchUserWalletsLazyQueryHookResult = ReturnType<typeof useFetchUserWalletsLazyQuery>;
|
|
@@ -23,37 +23,8 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
23
23
|
return result;
|
|
24
24
|
};
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
exports.
|
|
27
|
-
exports.
|
|
28
|
-
exports.useAddWalletFlowMutation = useAddWalletFlowMutation;
|
|
29
|
-
exports.useAddWalletMetamaskMutation = useAddWalletMetamaskMutation;
|
|
30
|
-
exports.useAddWalletSolanaMutation = useAddWalletSolanaMutation;
|
|
31
|
-
exports.useAddWalletTezosMutation = useAddWalletTezosMutation;
|
|
32
|
-
exports.useAddWalletTonMutation = useAddWalletTonMutation;
|
|
33
|
-
exports.useCreateEvmNonceMutation = useCreateEvmNonceMutation;
|
|
34
|
-
exports.useCreateNonceMutation = useCreateNonceMutation;
|
|
35
|
-
exports.useCreateTonNonceMutation = useCreateTonNonceMutation;
|
|
36
|
-
exports.useGenerateNewInviteCodesMutation = useGenerateNewInviteCodesMutation;
|
|
37
|
-
exports.useUseInviteCodeMutation = useUseInviteCodeMutation;
|
|
38
|
-
exports.useRemoveWalletMutation = useRemoveWalletMutation;
|
|
39
|
-
exports.useSaveEmailOfJoinerMutation = useSaveEmailOfJoinerMutation;
|
|
40
|
-
exports.useSetMainWalletMutation = useSetMainWalletMutation;
|
|
41
|
-
exports.useSignInAdminMetamaskMutation = useSignInAdminMetamaskMutation;
|
|
42
|
-
exports.useSignInElrondMutation = useSignInElrondMutation;
|
|
43
|
-
exports.useSignInFlowMutation = useSignInFlowMutation;
|
|
44
|
-
exports.useSignInMetamaskMutation = useSignInMetamaskMutation;
|
|
45
|
-
exports.useSignInSolanaMutation = useSignInSolanaMutation;
|
|
46
|
-
exports.useSignInTezosMutation = useSignInTezosMutation;
|
|
47
|
-
exports.useSignInTonMutation = useSignInTonMutation;
|
|
48
|
-
exports.useUpdateProfileMutation = useUpdateProfileMutation;
|
|
49
|
-
exports.useFetchMultiversXAuditQuery = useFetchMultiversXAuditQuery;
|
|
50
|
-
exports.useFetchMultiversXAuditLazyQuery = useFetchMultiversXAuditLazyQuery;
|
|
51
|
-
exports.useFetchMyProfileV2Query = useFetchMyProfileV2Query;
|
|
52
|
-
exports.useFetchMyProfileV2LazyQuery = useFetchMyProfileV2LazyQuery;
|
|
53
|
-
exports.useFetchProfileQuery = useFetchProfileQuery;
|
|
54
|
-
exports.useFetchProfileLazyQuery = useFetchProfileLazyQuery;
|
|
55
|
-
exports.useFetchUserWalletsQuery = useFetchUserWalletsQuery;
|
|
56
|
-
exports.useFetchUserWalletsLazyQuery = useFetchUserWalletsLazyQuery;
|
|
26
|
+
exports.useFetchMyProfileV2Query = exports.FetchMyProfileV2Document = exports.useFetchMultiversXAuditLazyQuery = exports.useFetchMultiversXAuditQuery = exports.FetchMultiversXAuditDocument = exports.useUpdateProfileMutation = exports.UpdateProfileDocument = exports.useSignInTonMutation = exports.SignInTonDocument = exports.useSignInTezosMutation = exports.SignInTezosDocument = exports.useSignInSolanaMutation = exports.SignInSolanaDocument = exports.useSignInMetamaskMutation = exports.SignInMetamaskDocument = exports.useSignInFlowMutation = exports.SignInFlowDocument = exports.useSignInElrondMutation = exports.SignInElrondDocument = exports.useSignInAdminMetamaskMutation = exports.SignInAdminMetamaskDocument = exports.useSetMainWalletMutation = exports.SetMainWalletDocument = exports.useSaveEmailOfJoinerMutation = exports.SaveEmailOfJoinerDocument = exports.useRemoveWalletMutation = exports.RemoveWalletDocument = exports.useUseInviteCodeMutation = exports.UseInviteCodeDocument = exports.useGenerateNewInviteCodesMutation = exports.GenerateNewInviteCodesDocument = exports.useCreateTonNonceMutation = exports.CreateTonNonceDocument = exports.useCreateNonceMutation = exports.CreateNonceDocument = exports.useCreateEvmNonceMutation = exports.CreateEvmNonceDocument = exports.useAddWalletTonMutation = exports.AddWalletTonDocument = exports.useAddWalletTezosMutation = exports.AddWalletTezosDocument = exports.useAddWalletSolanaMutation = exports.AddWalletSolanaDocument = exports.useAddWalletMetamaskMutation = exports.AddWalletMetamaskDocument = exports.useAddWalletFlowMutation = exports.AddWalletFlowDocument = exports.useAddWalletElrondMutation = exports.AddWalletElrondDocument = exports.IRole = void 0;
|
|
27
|
+
exports.useFetchUserWalletsLazyQuery = exports.useFetchUserWalletsQuery = exports.FetchUserWalletsDocument = exports.useFetchProfileLazyQuery = exports.useFetchProfileQuery = exports.FetchProfileDocument = exports.useFetchMyProfileV2LazyQuery = void 0;
|
|
57
28
|
const client_1 = require("@apollo/client");
|
|
58
29
|
const Apollo = __importStar(require("@apollo/client"));
|
|
59
30
|
var IRole;
|
|
@@ -87,6 +58,7 @@ exports.AddWalletElrondDocument = (0, client_1.gql) `
|
|
|
87
58
|
function useAddWalletElrondMutation(baseOptions) {
|
|
88
59
|
return Apollo.useMutation(exports.AddWalletElrondDocument, baseOptions);
|
|
89
60
|
}
|
|
61
|
+
exports.useAddWalletElrondMutation = useAddWalletElrondMutation;
|
|
90
62
|
exports.AddWalletFlowDocument = (0, client_1.gql) `
|
|
91
63
|
mutation AddWalletFlow($signature: String!, $address: String!) {
|
|
92
64
|
addWalletFlow(signature: $signature, address: $address)
|
|
@@ -113,6 +85,7 @@ exports.AddWalletFlowDocument = (0, client_1.gql) `
|
|
|
113
85
|
function useAddWalletFlowMutation(baseOptions) {
|
|
114
86
|
return Apollo.useMutation(exports.AddWalletFlowDocument, baseOptions);
|
|
115
87
|
}
|
|
88
|
+
exports.useAddWalletFlowMutation = useAddWalletFlowMutation;
|
|
116
89
|
exports.AddWalletMetamaskDocument = (0, client_1.gql) `
|
|
117
90
|
mutation AddWalletMetamask($signature: String!, $address: String!, $chainId: String!) {
|
|
118
91
|
addWalletMetamask(signature: $signature, address: $address, chainId: $chainId)
|
|
@@ -140,6 +113,7 @@ exports.AddWalletMetamaskDocument = (0, client_1.gql) `
|
|
|
140
113
|
function useAddWalletMetamaskMutation(baseOptions) {
|
|
141
114
|
return Apollo.useMutation(exports.AddWalletMetamaskDocument, baseOptions);
|
|
142
115
|
}
|
|
116
|
+
exports.useAddWalletMetamaskMutation = useAddWalletMetamaskMutation;
|
|
143
117
|
exports.AddWalletSolanaDocument = (0, client_1.gql) `
|
|
144
118
|
mutation AddWalletSolana($signature: String!, $pubkey: String!) {
|
|
145
119
|
addWalletSolana(signature: $signature, pubkey: $pubkey)
|
|
@@ -166,6 +140,7 @@ exports.AddWalletSolanaDocument = (0, client_1.gql) `
|
|
|
166
140
|
function useAddWalletSolanaMutation(baseOptions) {
|
|
167
141
|
return Apollo.useMutation(exports.AddWalletSolanaDocument, baseOptions);
|
|
168
142
|
}
|
|
143
|
+
exports.useAddWalletSolanaMutation = useAddWalletSolanaMutation;
|
|
169
144
|
exports.AddWalletTezosDocument = (0, client_1.gql) `
|
|
170
145
|
mutation AddWalletTezos($signature: String!, $pubkey: String!) {
|
|
171
146
|
addWalletTezos(signature: $signature, pubkey: $pubkey)
|
|
@@ -192,6 +167,7 @@ exports.AddWalletTezosDocument = (0, client_1.gql) `
|
|
|
192
167
|
function useAddWalletTezosMutation(baseOptions) {
|
|
193
168
|
return Apollo.useMutation(exports.AddWalletTezosDocument, baseOptions);
|
|
194
169
|
}
|
|
170
|
+
exports.useAddWalletTezosMutation = useAddWalletTezosMutation;
|
|
195
171
|
exports.AddWalletTonDocument = (0, client_1.gql) `
|
|
196
172
|
mutation AddWalletTon($request: CheckTonProofRequest!) {
|
|
197
173
|
addWalletTon(request: $request)
|
|
@@ -217,6 +193,7 @@ exports.AddWalletTonDocument = (0, client_1.gql) `
|
|
|
217
193
|
function useAddWalletTonMutation(baseOptions) {
|
|
218
194
|
return Apollo.useMutation(exports.AddWalletTonDocument, baseOptions);
|
|
219
195
|
}
|
|
196
|
+
exports.useAddWalletTonMutation = useAddWalletTonMutation;
|
|
220
197
|
exports.CreateEvmNonceDocument = (0, client_1.gql) `
|
|
221
198
|
mutation CreateEvmNonce {
|
|
222
199
|
createEvmNonce
|
|
@@ -241,6 +218,7 @@ exports.CreateEvmNonceDocument = (0, client_1.gql) `
|
|
|
241
218
|
function useCreateEvmNonceMutation(baseOptions) {
|
|
242
219
|
return Apollo.useMutation(exports.CreateEvmNonceDocument, baseOptions);
|
|
243
220
|
}
|
|
221
|
+
exports.useCreateEvmNonceMutation = useCreateEvmNonceMutation;
|
|
244
222
|
exports.CreateNonceDocument = (0, client_1.gql) `
|
|
245
223
|
mutation CreateNonce($address: String!, $blockchain: String!, $chainId: String) {
|
|
246
224
|
createNonce(address: $address, blockchain: $blockchain, chainId: $chainId)
|
|
@@ -268,6 +246,7 @@ exports.CreateNonceDocument = (0, client_1.gql) `
|
|
|
268
246
|
function useCreateNonceMutation(baseOptions) {
|
|
269
247
|
return Apollo.useMutation(exports.CreateNonceDocument, baseOptions);
|
|
270
248
|
}
|
|
249
|
+
exports.useCreateNonceMutation = useCreateNonceMutation;
|
|
271
250
|
exports.CreateTonNonceDocument = (0, client_1.gql) `
|
|
272
251
|
mutation CreateTonNonce {
|
|
273
252
|
createTonNonce
|
|
@@ -292,6 +271,7 @@ exports.CreateTonNonceDocument = (0, client_1.gql) `
|
|
|
292
271
|
function useCreateTonNonceMutation(baseOptions) {
|
|
293
272
|
return Apollo.useMutation(exports.CreateTonNonceDocument, baseOptions);
|
|
294
273
|
}
|
|
274
|
+
exports.useCreateTonNonceMutation = useCreateTonNonceMutation;
|
|
295
275
|
exports.GenerateNewInviteCodesDocument = (0, client_1.gql) `
|
|
296
276
|
mutation GenerateNewInviteCodes($codesNum: Int!) {
|
|
297
277
|
generateNewInviteCodes(codesNum: $codesNum) {
|
|
@@ -322,6 +302,7 @@ exports.GenerateNewInviteCodesDocument = (0, client_1.gql) `
|
|
|
322
302
|
function useGenerateNewInviteCodesMutation(baseOptions) {
|
|
323
303
|
return Apollo.useMutation(exports.GenerateNewInviteCodesDocument, baseOptions);
|
|
324
304
|
}
|
|
305
|
+
exports.useGenerateNewInviteCodesMutation = useGenerateNewInviteCodesMutation;
|
|
325
306
|
exports.UseInviteCodeDocument = (0, client_1.gql) `
|
|
326
307
|
mutation UseInviteCode($inviteCode: String!) {
|
|
327
308
|
useInviteCode(inviteCode: $inviteCode)
|
|
@@ -347,6 +328,7 @@ exports.UseInviteCodeDocument = (0, client_1.gql) `
|
|
|
347
328
|
function useUseInviteCodeMutation(baseOptions) {
|
|
348
329
|
return Apollo.useMutation(exports.UseInviteCodeDocument, baseOptions);
|
|
349
330
|
}
|
|
331
|
+
exports.useUseInviteCodeMutation = useUseInviteCodeMutation;
|
|
350
332
|
exports.RemoveWalletDocument = (0, client_1.gql) `
|
|
351
333
|
mutation RemoveWallet($blockchain: String!, $address: String!, $chainId: String) {
|
|
352
334
|
removeWallet(blockchain: $blockchain, address: $address, chainId: $chainId)
|
|
@@ -374,6 +356,7 @@ exports.RemoveWalletDocument = (0, client_1.gql) `
|
|
|
374
356
|
function useRemoveWalletMutation(baseOptions) {
|
|
375
357
|
return Apollo.useMutation(exports.RemoveWalletDocument, baseOptions);
|
|
376
358
|
}
|
|
359
|
+
exports.useRemoveWalletMutation = useRemoveWalletMutation;
|
|
377
360
|
exports.SaveEmailOfJoinerDocument = (0, client_1.gql) `
|
|
378
361
|
mutation SaveEmailOfJoiner($email: String!, $isSubscribed: Boolean!) {
|
|
379
362
|
saveEmailOfJoiner(email: $email, isSubscribed: $isSubscribed)
|
|
@@ -400,6 +383,7 @@ exports.SaveEmailOfJoinerDocument = (0, client_1.gql) `
|
|
|
400
383
|
function useSaveEmailOfJoinerMutation(baseOptions) {
|
|
401
384
|
return Apollo.useMutation(exports.SaveEmailOfJoinerDocument, baseOptions);
|
|
402
385
|
}
|
|
386
|
+
exports.useSaveEmailOfJoinerMutation = useSaveEmailOfJoinerMutation;
|
|
403
387
|
exports.SetMainWalletDocument = (0, client_1.gql) `
|
|
404
388
|
mutation SetMainWallet($blockchain: String!, $address: String!, $chainId: String) {
|
|
405
389
|
setMainWallet(blockchain: $blockchain, address: $address, chainId: $chainId)
|
|
@@ -427,6 +411,7 @@ exports.SetMainWalletDocument = (0, client_1.gql) `
|
|
|
427
411
|
function useSetMainWalletMutation(baseOptions) {
|
|
428
412
|
return Apollo.useMutation(exports.SetMainWalletDocument, baseOptions);
|
|
429
413
|
}
|
|
414
|
+
exports.useSetMainWalletMutation = useSetMainWalletMutation;
|
|
430
415
|
exports.SignInAdminMetamaskDocument = (0, client_1.gql) `
|
|
431
416
|
mutation SignInAdminMetamask($signature: String!, $address: String!, $chainId: String!) {
|
|
432
417
|
signInAdminMetamask(signature: $signature, address: $address, chainId: $chainId) {
|
|
@@ -470,6 +455,7 @@ exports.SignInAdminMetamaskDocument = (0, client_1.gql) `
|
|
|
470
455
|
function useSignInAdminMetamaskMutation(baseOptions) {
|
|
471
456
|
return Apollo.useMutation(exports.SignInAdminMetamaskDocument, baseOptions);
|
|
472
457
|
}
|
|
458
|
+
exports.useSignInAdminMetamaskMutation = useSignInAdminMetamaskMutation;
|
|
473
459
|
exports.SignInElrondDocument = (0, client_1.gql) `
|
|
474
460
|
mutation SignInElrond($signature: String!, $address: String!) {
|
|
475
461
|
signInElrond(signature: $signature, address: $address) {
|
|
@@ -512,6 +498,7 @@ exports.SignInElrondDocument = (0, client_1.gql) `
|
|
|
512
498
|
function useSignInElrondMutation(baseOptions) {
|
|
513
499
|
return Apollo.useMutation(exports.SignInElrondDocument, baseOptions);
|
|
514
500
|
}
|
|
501
|
+
exports.useSignInElrondMutation = useSignInElrondMutation;
|
|
515
502
|
exports.SignInFlowDocument = (0, client_1.gql) `
|
|
516
503
|
mutation SignInFlow($signature: String!, $address: String!) {
|
|
517
504
|
signInFlow(signature: $signature, address: $address) {
|
|
@@ -554,6 +541,7 @@ exports.SignInFlowDocument = (0, client_1.gql) `
|
|
|
554
541
|
function useSignInFlowMutation(baseOptions) {
|
|
555
542
|
return Apollo.useMutation(exports.SignInFlowDocument, baseOptions);
|
|
556
543
|
}
|
|
544
|
+
exports.useSignInFlowMutation = useSignInFlowMutation;
|
|
557
545
|
exports.SignInMetamaskDocument = (0, client_1.gql) `
|
|
558
546
|
mutation SignInMetamask($signature: String!, $address: String!, $chainId: String!) {
|
|
559
547
|
signInMetamask(signature: $signature, address: $address, chainId: $chainId) {
|
|
@@ -597,6 +585,7 @@ exports.SignInMetamaskDocument = (0, client_1.gql) `
|
|
|
597
585
|
function useSignInMetamaskMutation(baseOptions) {
|
|
598
586
|
return Apollo.useMutation(exports.SignInMetamaskDocument, baseOptions);
|
|
599
587
|
}
|
|
588
|
+
exports.useSignInMetamaskMutation = useSignInMetamaskMutation;
|
|
600
589
|
exports.SignInSolanaDocument = (0, client_1.gql) `
|
|
601
590
|
mutation SignInSolana($signature: String!, $pubkey: String!) {
|
|
602
591
|
signInSolana(signature: $signature, pubkey: $pubkey) {
|
|
@@ -639,6 +628,7 @@ exports.SignInSolanaDocument = (0, client_1.gql) `
|
|
|
639
628
|
function useSignInSolanaMutation(baseOptions) {
|
|
640
629
|
return Apollo.useMutation(exports.SignInSolanaDocument, baseOptions);
|
|
641
630
|
}
|
|
631
|
+
exports.useSignInSolanaMutation = useSignInSolanaMutation;
|
|
642
632
|
exports.SignInTezosDocument = (0, client_1.gql) `
|
|
643
633
|
mutation SignInTezos($signature: String!, $pubkey: String!) {
|
|
644
634
|
signInTezos(signature: $signature, pubkey: $pubkey) {
|
|
@@ -681,6 +671,7 @@ exports.SignInTezosDocument = (0, client_1.gql) `
|
|
|
681
671
|
function useSignInTezosMutation(baseOptions) {
|
|
682
672
|
return Apollo.useMutation(exports.SignInTezosDocument, baseOptions);
|
|
683
673
|
}
|
|
674
|
+
exports.useSignInTezosMutation = useSignInTezosMutation;
|
|
684
675
|
exports.SignInTonDocument = (0, client_1.gql) `
|
|
685
676
|
mutation SignInTon($request: CheckTonProofRequest!, $restore: Boolean) {
|
|
686
677
|
signInTon(request: $request, restore: $restore) {
|
|
@@ -723,6 +714,7 @@ exports.SignInTonDocument = (0, client_1.gql) `
|
|
|
723
714
|
function useSignInTonMutation(baseOptions) {
|
|
724
715
|
return Apollo.useMutation(exports.SignInTonDocument, baseOptions);
|
|
725
716
|
}
|
|
717
|
+
exports.useSignInTonMutation = useSignInTonMutation;
|
|
726
718
|
exports.UpdateProfileDocument = (0, client_1.gql) `
|
|
727
719
|
mutation UpdateProfile($username: String, $about: String, $facebook: String, $twitter: String, $instagram: String, $website: String, $showNsfw: Boolean) {
|
|
728
720
|
updateProfile(
|
|
@@ -756,6 +748,7 @@ exports.UpdateProfileDocument = (0, client_1.gql) `
|
|
|
756
748
|
function useUpdateProfileMutation(baseOptions) {
|
|
757
749
|
return Apollo.useMutation(exports.UpdateProfileDocument, baseOptions);
|
|
758
750
|
}
|
|
751
|
+
exports.useUpdateProfileMutation = useUpdateProfileMutation;
|
|
759
752
|
exports.FetchMultiversXAuditDocument = (0, client_1.gql) `
|
|
760
753
|
query FetchMultiversXAudit($wallet: String!) {
|
|
761
754
|
fetchMultiversxAudit(wallet: $wallet) {
|
|
@@ -799,9 +792,11 @@ exports.FetchMultiversXAuditDocument = (0, client_1.gql) `
|
|
|
799
792
|
function useFetchMultiversXAuditQuery(baseOptions) {
|
|
800
793
|
return Apollo.useQuery(exports.FetchMultiversXAuditDocument, baseOptions);
|
|
801
794
|
}
|
|
795
|
+
exports.useFetchMultiversXAuditQuery = useFetchMultiversXAuditQuery;
|
|
802
796
|
function useFetchMultiversXAuditLazyQuery(baseOptions) {
|
|
803
797
|
return Apollo.useLazyQuery(exports.FetchMultiversXAuditDocument, baseOptions);
|
|
804
798
|
}
|
|
799
|
+
exports.useFetchMultiversXAuditLazyQuery = useFetchMultiversXAuditLazyQuery;
|
|
805
800
|
exports.FetchMyProfileV2Document = (0, client_1.gql) `
|
|
806
801
|
query FetchMyProfileV2 {
|
|
807
802
|
fetchMyProfileV2 {
|
|
@@ -868,9 +863,11 @@ exports.FetchMyProfileV2Document = (0, client_1.gql) `
|
|
|
868
863
|
function useFetchMyProfileV2Query(baseOptions) {
|
|
869
864
|
return Apollo.useQuery(exports.FetchMyProfileV2Document, baseOptions);
|
|
870
865
|
}
|
|
866
|
+
exports.useFetchMyProfileV2Query = useFetchMyProfileV2Query;
|
|
871
867
|
function useFetchMyProfileV2LazyQuery(baseOptions) {
|
|
872
868
|
return Apollo.useLazyQuery(exports.FetchMyProfileV2Document, baseOptions);
|
|
873
869
|
}
|
|
870
|
+
exports.useFetchMyProfileV2LazyQuery = useFetchMyProfileV2LazyQuery;
|
|
874
871
|
exports.FetchProfileDocument = (0, client_1.gql) `
|
|
875
872
|
query FetchProfile($userId: ID!) {
|
|
876
873
|
fetchProfile(userId: $userId) {
|
|
@@ -924,9 +921,11 @@ exports.FetchProfileDocument = (0, client_1.gql) `
|
|
|
924
921
|
function useFetchProfileQuery(baseOptions) {
|
|
925
922
|
return Apollo.useQuery(exports.FetchProfileDocument, baseOptions);
|
|
926
923
|
}
|
|
924
|
+
exports.useFetchProfileQuery = useFetchProfileQuery;
|
|
927
925
|
function useFetchProfileLazyQuery(baseOptions) {
|
|
928
926
|
return Apollo.useLazyQuery(exports.FetchProfileDocument, baseOptions);
|
|
929
927
|
}
|
|
928
|
+
exports.useFetchProfileLazyQuery = useFetchProfileLazyQuery;
|
|
930
929
|
exports.FetchUserWalletsDocument = (0, client_1.gql) `
|
|
931
930
|
query FetchUserWallets($userId: ID!) {
|
|
932
931
|
fetchUserWallets(userId: $userId) {
|
|
@@ -958,6 +957,8 @@ exports.FetchUserWalletsDocument = (0, client_1.gql) `
|
|
|
958
957
|
function useFetchUserWalletsQuery(baseOptions) {
|
|
959
958
|
return Apollo.useQuery(exports.FetchUserWalletsDocument, baseOptions);
|
|
960
959
|
}
|
|
960
|
+
exports.useFetchUserWalletsQuery = useFetchUserWalletsQuery;
|
|
961
961
|
function useFetchUserWalletsLazyQuery(baseOptions) {
|
|
962
962
|
return Apollo.useLazyQuery(exports.FetchUserWalletsDocument, baseOptions);
|
|
963
963
|
}
|
|
964
|
+
exports.useFetchUserWalletsLazyQuery = useFetchUserWalletsLazyQuery;
|
|
@@ -189,7 +189,7 @@ export type IDeleteGalleryBannerMutationFn = Apollo.MutationFunction<IDeleteGall
|
|
|
189
189
|
* });
|
|
190
190
|
*/
|
|
191
191
|
export declare function useDeleteGalleryBannerMutation(baseOptions?: Apollo.MutationHookOptions<IDeleteGalleryBannerMutation, IDeleteGalleryBannerMutationVariables>): Apollo.MutationTuple<IDeleteGalleryBannerMutation, Exact<{
|
|
192
|
-
galleryId:
|
|
192
|
+
galleryId: string;
|
|
193
193
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
194
194
|
export type DeleteGalleryBannerMutationHookResult = ReturnType<typeof useDeleteGalleryBannerMutation>;
|
|
195
195
|
export type DeleteGalleryBannerMutationResult = Apollo.MutationResult<IDeleteGalleryBannerMutation>;
|
|
@@ -215,8 +215,8 @@ export type IUploadGalleryBannerMutationFn = Apollo.MutationFunction<IUploadGall
|
|
|
215
215
|
* });
|
|
216
216
|
*/
|
|
217
217
|
export declare function useUploadGalleryBannerMutation(baseOptions?: Apollo.MutationHookOptions<IUploadGalleryBannerMutation, IUploadGalleryBannerMutationVariables>): Apollo.MutationTuple<IUploadGalleryBannerMutation, Exact<{
|
|
218
|
-
galleryId:
|
|
219
|
-
file:
|
|
218
|
+
galleryId: string;
|
|
219
|
+
file: any;
|
|
220
220
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
221
221
|
export type UploadGalleryBannerMutationHookResult = ReturnType<typeof useUploadGalleryBannerMutation>;
|
|
222
222
|
export type UploadGalleryBannerMutationResult = Apollo.MutationResult<IUploadGalleryBannerMutation>;
|
|
@@ -239,10 +239,10 @@ export declare const FetchUserpicDocument: Apollo.DocumentNode;
|
|
|
239
239
|
* });
|
|
240
240
|
*/
|
|
241
241
|
export declare function useFetchUserpicQuery(baseOptions: Apollo.QueryHookOptions<IFetchUserpicQuery, IFetchUserpicQueryVariables>): Apollo.QueryResult<IFetchUserpicQuery, Exact<{
|
|
242
|
-
userId:
|
|
242
|
+
userId: string;
|
|
243
243
|
}>>;
|
|
244
244
|
export declare function useFetchUserpicLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchUserpicQuery, IFetchUserpicQueryVariables>): Apollo.LazyQueryResultTuple<IFetchUserpicQuery, Exact<{
|
|
245
|
-
userId:
|
|
245
|
+
userId: string;
|
|
246
246
|
}>>;
|
|
247
247
|
export type FetchUserpicQueryHookResult = ReturnType<typeof useFetchUserpicQuery>;
|
|
248
248
|
export type FetchUserpicLazyQueryHookResult = ReturnType<typeof useFetchUserpicLazyQuery>;
|
|
@@ -23,11 +23,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
23
23
|
return result;
|
|
24
24
|
};
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
exports.FetchUserpicDocument = exports.UploadGalleryBannerDocument = exports.DeleteGalleryBannerDocument = void 0;
|
|
27
|
-
exports.useDeleteGalleryBannerMutation = useDeleteGalleryBannerMutation;
|
|
28
|
-
exports.useUploadGalleryBannerMutation = useUploadGalleryBannerMutation;
|
|
29
|
-
exports.useFetchUserpicQuery = useFetchUserpicQuery;
|
|
30
|
-
exports.useFetchUserpicLazyQuery = useFetchUserpicLazyQuery;
|
|
26
|
+
exports.useFetchUserpicLazyQuery = exports.useFetchUserpicQuery = exports.FetchUserpicDocument = exports.useUploadGalleryBannerMutation = exports.UploadGalleryBannerDocument = exports.useDeleteGalleryBannerMutation = exports.DeleteGalleryBannerDocument = void 0;
|
|
31
27
|
const client_1 = require("@apollo/client");
|
|
32
28
|
const Apollo = __importStar(require("@apollo/client"));
|
|
33
29
|
exports.DeleteGalleryBannerDocument = (0, client_1.gql) `
|
|
@@ -55,6 +51,7 @@ exports.DeleteGalleryBannerDocument = (0, client_1.gql) `
|
|
|
55
51
|
function useDeleteGalleryBannerMutation(baseOptions) {
|
|
56
52
|
return Apollo.useMutation(exports.DeleteGalleryBannerDocument, baseOptions);
|
|
57
53
|
}
|
|
54
|
+
exports.useDeleteGalleryBannerMutation = useDeleteGalleryBannerMutation;
|
|
58
55
|
exports.UploadGalleryBannerDocument = (0, client_1.gql) `
|
|
59
56
|
mutation UploadGalleryBanner($galleryId: ID!, $file: Upload!) {
|
|
60
57
|
uploadGalleryBanner(galleryId: $galleryId, file: $file)
|
|
@@ -81,6 +78,7 @@ exports.UploadGalleryBannerDocument = (0, client_1.gql) `
|
|
|
81
78
|
function useUploadGalleryBannerMutation(baseOptions) {
|
|
82
79
|
return Apollo.useMutation(exports.UploadGalleryBannerDocument, baseOptions);
|
|
83
80
|
}
|
|
81
|
+
exports.useUploadGalleryBannerMutation = useUploadGalleryBannerMutation;
|
|
84
82
|
exports.FetchUserpicDocument = (0, client_1.gql) `
|
|
85
83
|
query FetchUserpic($userId: ID!) {
|
|
86
84
|
fetchUserpic(userId: $userId)
|
|
@@ -105,6 +103,8 @@ exports.FetchUserpicDocument = (0, client_1.gql) `
|
|
|
105
103
|
function useFetchUserpicQuery(baseOptions) {
|
|
106
104
|
return Apollo.useQuery(exports.FetchUserpicDocument, baseOptions);
|
|
107
105
|
}
|
|
106
|
+
exports.useFetchUserpicQuery = useFetchUserpicQuery;
|
|
108
107
|
function useFetchUserpicLazyQuery(baseOptions) {
|
|
109
108
|
return Apollo.useLazyQuery(exports.FetchUserpicDocument, baseOptions);
|
|
110
109
|
}
|
|
110
|
+
exports.useFetchUserpicLazyQuery = useFetchUserpicLazyQuery;
|