@ludo.ninja/api 2.9.3 → 2.9.5
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 +85 -37
- package/build/graphql_tools/__generated__/adminHost/schema.js +101 -67
- 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 +2 -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 +73 -56
- package/build/graphql_tools/__generated__/identityHost/schema.js +42 -35
- 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__/mintInfoHost/schema.d.ts +3 -1
- package/build/graphql_tools/__generated__/mintInfoHost/schema.js +3 -3
- package/build/graphql_tools/__generated__/notificationsHost/schema.d.ts +4 -4
- package/build/graphql_tools/__generated__/notificationsHost/schema.js +3 -3
- package/build/graphql_tools/__generated__/opportunitiesHost/schema.d.ts +10 -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 +6 -6
- package/build/graphql_tools/__generated__/tapHost/schema.js +12 -12
- package/build/index.d.ts +1264 -588
- package/package.json +1 -1
- package/src/graphql_tools/__generated__/adminHost/schema.ts +59 -1
- package/src/graphql_tools/__generated__/identityHost/schema.ts +25 -4
- package/src/graphql_tools/__generated__/mintInfoHost/schema.ts +3 -1
- package/src/graphql_tools/__generated__/opportunitiesHost/schema.ts +3 -0
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -86,6 +86,8 @@ export type IInputSocial = {
|
|
|
86
86
|
twitter?: Maybe<Scalars['String']>;
|
|
87
87
|
instagram?: Maybe<Scalars['String']>;
|
|
88
88
|
website?: Maybe<Scalars['String']>;
|
|
89
|
+
discordNickname?: Maybe<Scalars['String']>;
|
|
90
|
+
discordServer?: Maybe<Scalars['String']>;
|
|
89
91
|
};
|
|
90
92
|
export type IInviteCode = {
|
|
91
93
|
inviteCode: Scalars['String'];
|
|
@@ -296,6 +298,7 @@ export type IQuery = {
|
|
|
296
298
|
fetchInviteCode: IInviteCode;
|
|
297
299
|
fetchMyProfileV2: IMyProfileV2;
|
|
298
300
|
fetchProfile: IProfile;
|
|
301
|
+
fetchProfileV2: IMyProfileV2;
|
|
299
302
|
fetchFollowingStatus: IFollowingStatus;
|
|
300
303
|
fetchFollowingStatuses: Array<Maybe<IFollowingStatus>>;
|
|
301
304
|
};
|
|
@@ -314,6 +317,9 @@ export type IQueryFetchInviteCodeArgs = {
|
|
|
314
317
|
export type IQueryFetchProfileArgs = {
|
|
315
318
|
userId: Scalars['ID'];
|
|
316
319
|
};
|
|
320
|
+
export type IQueryFetchProfileV2Args = {
|
|
321
|
+
userId: Scalars['ID'];
|
|
322
|
+
};
|
|
317
323
|
export type IQueryFetchFollowingStatusArgs = {
|
|
318
324
|
userId: Scalars['ID'];
|
|
319
325
|
};
|
|
@@ -342,6 +348,8 @@ export type ISocial = {
|
|
|
342
348
|
twitter?: Maybe<Scalars['String']>;
|
|
343
349
|
instagram?: Maybe<Scalars['String']>;
|
|
344
350
|
website?: Maybe<Scalars['String']>;
|
|
351
|
+
discordNickname?: Maybe<Scalars['String']>;
|
|
352
|
+
discordServer?: Maybe<Scalars['String']>;
|
|
345
353
|
};
|
|
346
354
|
export type ITokenPair = {
|
|
347
355
|
authToken: Scalars['String'];
|
|
@@ -641,6 +649,7 @@ export type IQueryResolvers<ContextType = any, ParentType extends IResolversPare
|
|
|
641
649
|
fetchInviteCode?: Resolver<IResolversTypes['InviteCode'], ParentType, ContextType, RequireFields<IQueryFetchInviteCodeArgs, 'inviteCode'>>;
|
|
642
650
|
fetchMyProfileV2?: Resolver<IResolversTypes['MyProfileV2'], ParentType, ContextType>;
|
|
643
651
|
fetchProfile?: Resolver<IResolversTypes['Profile'], ParentType, ContextType, RequireFields<IQueryFetchProfileArgs, 'userId'>>;
|
|
652
|
+
fetchProfileV2?: Resolver<IResolversTypes['MyProfileV2'], ParentType, ContextType, RequireFields<IQueryFetchProfileV2Args, 'userId'>>;
|
|
644
653
|
fetchFollowingStatus?: Resolver<IResolversTypes['FollowingStatus'], ParentType, ContextType, RequireFields<IQueryFetchFollowingStatusArgs, 'userId'>>;
|
|
645
654
|
fetchFollowingStatuses?: Resolver<Array<Maybe<IResolversTypes['FollowingStatus']>>, ParentType, ContextType, RequireFields<IQueryFetchFollowingStatusesArgs, 'userIds'>>;
|
|
646
655
|
};
|
|
@@ -649,6 +658,8 @@ export type ISocialResolvers<ContextType = any, ParentType extends IResolversPar
|
|
|
649
658
|
twitter?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
650
659
|
instagram?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
651
660
|
website?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
661
|
+
discordNickname?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
662
|
+
discordServer?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
652
663
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
653
664
|
};
|
|
654
665
|
export type ITokenPairResolvers<ContextType = any, ParentType extends IResolversParentTypes['TokenPair'] = IResolversParentTypes['TokenPair']> = {
|
|
@@ -870,6 +881,8 @@ export type IUpdateProfileMutationVariables = Exact<{
|
|
|
870
881
|
instagram?: Maybe<Scalars['String']>;
|
|
871
882
|
website?: Maybe<Scalars['String']>;
|
|
872
883
|
showNsfw?: Maybe<Scalars['Boolean']>;
|
|
884
|
+
discordNickname?: Maybe<Scalars['String']>;
|
|
885
|
+
discordServer?: Maybe<Scalars['String']>;
|
|
873
886
|
}>;
|
|
874
887
|
export type IUpdateProfileMutation = Pick<IMutation, 'updateProfile'>;
|
|
875
888
|
export type IFetchAggregatedMultiversxAuditQueryVariables = Exact<{
|
|
@@ -899,7 +912,7 @@ export type IFetchMyProfileV2QueryVariables = Exact<{
|
|
|
899
912
|
}>;
|
|
900
913
|
export type IFetchMyProfileV2Query = {
|
|
901
914
|
fetchMyProfileV2: (Pick<IMyProfileV2, 'userId' | 'username' | 'about' | 'userpic' | 'following' | 'followings' | 'followers' | 'views' | 'createdAt' | 'deletedAt' | 'visible' | 'active' | 'deleted' | 'showNsfw' | 'rank' | 'xps' | 'level' | 'levelMinXps' | 'levelMaxXps' | 'referralTypeId' | 'referralTypeName' | 'referralTypeColor'> & {
|
|
902
|
-
social?: Maybe<Pick<ISocial, 'facebook' | 'twitter' | 'instagram' | 'website'>>;
|
|
915
|
+
social?: Maybe<Pick<ISocial, 'facebook' | 'twitter' | 'instagram' | 'website' | 'discordServer' | 'discordNickname'>>;
|
|
903
916
|
wallets?: Maybe<Array<Maybe<Pick<IWallet, 'userId' | 'address' | 'walletName' | 'blockchain' | 'chainId'>>>>;
|
|
904
917
|
inviteCodes?: Maybe<Array<Maybe<(Pick<IInviteCode, 'inviteCode' | 'isUsed' | 'maxUsagesLimit' | 'codeUsersNum'> & {
|
|
905
918
|
codeUsers: Array<Pick<IInviteCodeUser, 'inviteeId' | 'usedAt'>>;
|
|
@@ -911,7 +924,7 @@ export type IFetchProfileQueryVariables = Exact<{
|
|
|
911
924
|
}>;
|
|
912
925
|
export type IFetchProfileQuery = {
|
|
913
926
|
fetchProfile: (Pick<IProfile, 'userId' | 'username' | 'about' | 'userpic' | 'following' | 'followings' | 'followers' | 'rank' | 'views' | 'createdAt' | 'deletedAt' | 'visible' | 'active' | 'deleted' | 'showNsfw' | 'referralTypeId' | 'referralTypeName' | 'referralTypeColor'> & {
|
|
914
|
-
social?: Maybe<Pick<ISocial, 'facebook' | 'twitter' | 'instagram' | 'website'>>;
|
|
927
|
+
social?: Maybe<Pick<ISocial, 'facebook' | 'twitter' | 'instagram' | 'website' | 'discordNickname' | 'discordServer'>>;
|
|
915
928
|
wallets?: Maybe<Array<Maybe<Pick<IWallet, 'userId' | 'address' | 'walletName' | 'blockchain' | 'chainId'>>>>;
|
|
916
929
|
});
|
|
917
930
|
};
|
|
@@ -942,8 +955,8 @@ export type IAddWalletElrondMutationFn = Apollo.MutationFunction<IAddWalletElron
|
|
|
942
955
|
* });
|
|
943
956
|
*/
|
|
944
957
|
export declare function useAddWalletElrondMutation(baseOptions?: Apollo.MutationHookOptions<IAddWalletElrondMutation, IAddWalletElrondMutationVariables>): Apollo.MutationTuple<IAddWalletElrondMutation, Exact<{
|
|
945
|
-
signature:
|
|
946
|
-
address:
|
|
958
|
+
signature: string;
|
|
959
|
+
address: string;
|
|
947
960
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
948
961
|
export type AddWalletElrondMutationHookResult = ReturnType<typeof useAddWalletElrondMutation>;
|
|
949
962
|
export type AddWalletElrondMutationResult = Apollo.MutationResult<IAddWalletElrondMutation>;
|
|
@@ -969,8 +982,8 @@ export type IAddWalletFlowMutationFn = Apollo.MutationFunction<IAddWalletFlowMut
|
|
|
969
982
|
* });
|
|
970
983
|
*/
|
|
971
984
|
export declare function useAddWalletFlowMutation(baseOptions?: Apollo.MutationHookOptions<IAddWalletFlowMutation, IAddWalletFlowMutationVariables>): Apollo.MutationTuple<IAddWalletFlowMutation, Exact<{
|
|
972
|
-
signature:
|
|
973
|
-
address:
|
|
985
|
+
signature: string;
|
|
986
|
+
address: string;
|
|
974
987
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
975
988
|
export type AddWalletFlowMutationHookResult = ReturnType<typeof useAddWalletFlowMutation>;
|
|
976
989
|
export type AddWalletFlowMutationResult = Apollo.MutationResult<IAddWalletFlowMutation>;
|
|
@@ -997,9 +1010,9 @@ export type IAddWalletMetamaskMutationFn = Apollo.MutationFunction<IAddWalletMet
|
|
|
997
1010
|
* });
|
|
998
1011
|
*/
|
|
999
1012
|
export declare function useAddWalletMetamaskMutation(baseOptions?: Apollo.MutationHookOptions<IAddWalletMetamaskMutation, IAddWalletMetamaskMutationVariables>): Apollo.MutationTuple<IAddWalletMetamaskMutation, Exact<{
|
|
1000
|
-
signature:
|
|
1001
|
-
address:
|
|
1002
|
-
chainId:
|
|
1013
|
+
signature: string;
|
|
1014
|
+
address: string;
|
|
1015
|
+
chainId: string;
|
|
1003
1016
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1004
1017
|
export type AddWalletMetamaskMutationHookResult = ReturnType<typeof useAddWalletMetamaskMutation>;
|
|
1005
1018
|
export type AddWalletMetamaskMutationResult = Apollo.MutationResult<IAddWalletMetamaskMutation>;
|
|
@@ -1025,8 +1038,8 @@ export type IAddWalletSolanaMutationFn = Apollo.MutationFunction<IAddWalletSolan
|
|
|
1025
1038
|
* });
|
|
1026
1039
|
*/
|
|
1027
1040
|
export declare function useAddWalletSolanaMutation(baseOptions?: Apollo.MutationHookOptions<IAddWalletSolanaMutation, IAddWalletSolanaMutationVariables>): Apollo.MutationTuple<IAddWalletSolanaMutation, Exact<{
|
|
1028
|
-
signature:
|
|
1029
|
-
pubkey:
|
|
1041
|
+
signature: string;
|
|
1042
|
+
pubkey: string;
|
|
1030
1043
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1031
1044
|
export type AddWalletSolanaMutationHookResult = ReturnType<typeof useAddWalletSolanaMutation>;
|
|
1032
1045
|
export type AddWalletSolanaMutationResult = Apollo.MutationResult<IAddWalletSolanaMutation>;
|
|
@@ -1052,8 +1065,8 @@ export type IAddWalletTezosMutationFn = Apollo.MutationFunction<IAddWalletTezosM
|
|
|
1052
1065
|
* });
|
|
1053
1066
|
*/
|
|
1054
1067
|
export declare function useAddWalletTezosMutation(baseOptions?: Apollo.MutationHookOptions<IAddWalletTezosMutation, IAddWalletTezosMutationVariables>): Apollo.MutationTuple<IAddWalletTezosMutation, Exact<{
|
|
1055
|
-
signature:
|
|
1056
|
-
pubkey:
|
|
1068
|
+
signature: string;
|
|
1069
|
+
pubkey: string;
|
|
1057
1070
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1058
1071
|
export type AddWalletTezosMutationHookResult = ReturnType<typeof useAddWalletTezosMutation>;
|
|
1059
1072
|
export type AddWalletTezosMutationResult = Apollo.MutationResult<IAddWalletTezosMutation>;
|
|
@@ -1129,9 +1142,9 @@ export type ICreateNonceMutationFn = Apollo.MutationFunction<ICreateNonceMutatio
|
|
|
1129
1142
|
* });
|
|
1130
1143
|
*/
|
|
1131
1144
|
export declare function useCreateNonceMutation(baseOptions?: Apollo.MutationHookOptions<ICreateNonceMutation, ICreateNonceMutationVariables>): Apollo.MutationTuple<ICreateNonceMutation, Exact<{
|
|
1132
|
-
address:
|
|
1133
|
-
blockchain:
|
|
1134
|
-
chainId?: Maybe<
|
|
1145
|
+
address: string;
|
|
1146
|
+
blockchain: string;
|
|
1147
|
+
chainId?: Maybe<string> | undefined;
|
|
1135
1148
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1136
1149
|
export type CreateNonceMutationHookResult = ReturnType<typeof useCreateNonceMutation>;
|
|
1137
1150
|
export type CreateNonceMutationResult = Apollo.MutationResult<ICreateNonceMutation>;
|
|
@@ -1180,7 +1193,7 @@ export type IGenerateNewInviteCodesMutationFn = Apollo.MutationFunction<IGenerat
|
|
|
1180
1193
|
* });
|
|
1181
1194
|
*/
|
|
1182
1195
|
export declare function useGenerateNewInviteCodesMutation(baseOptions?: Apollo.MutationHookOptions<IGenerateNewInviteCodesMutation, IGenerateNewInviteCodesMutationVariables>): Apollo.MutationTuple<IGenerateNewInviteCodesMutation, Exact<{
|
|
1183
|
-
codesNum:
|
|
1196
|
+
codesNum: number;
|
|
1184
1197
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1185
1198
|
export type GenerateNewInviteCodesMutationHookResult = ReturnType<typeof useGenerateNewInviteCodesMutation>;
|
|
1186
1199
|
export type GenerateNewInviteCodesMutationResult = Apollo.MutationResult<IGenerateNewInviteCodesMutation>;
|
|
@@ -1205,7 +1218,7 @@ export type IUseInviteCodeMutationFn = Apollo.MutationFunction<IUseInviteCodeMut
|
|
|
1205
1218
|
* });
|
|
1206
1219
|
*/
|
|
1207
1220
|
export declare function useUseInviteCodeMutation(baseOptions?: Apollo.MutationHookOptions<IUseInviteCodeMutation, IUseInviteCodeMutationVariables>): Apollo.MutationTuple<IUseInviteCodeMutation, Exact<{
|
|
1208
|
-
inviteCode:
|
|
1221
|
+
inviteCode: string;
|
|
1209
1222
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1210
1223
|
export type UseInviteCodeMutationHookResult = ReturnType<typeof useUseInviteCodeMutation>;
|
|
1211
1224
|
export type UseInviteCodeMutationResult = Apollo.MutationResult<IUseInviteCodeMutation>;
|
|
@@ -1232,9 +1245,9 @@ export type IRemoveWalletMutationFn = Apollo.MutationFunction<IRemoveWalletMutat
|
|
|
1232
1245
|
* });
|
|
1233
1246
|
*/
|
|
1234
1247
|
export declare function useRemoveWalletMutation(baseOptions?: Apollo.MutationHookOptions<IRemoveWalletMutation, IRemoveWalletMutationVariables>): Apollo.MutationTuple<IRemoveWalletMutation, Exact<{
|
|
1235
|
-
blockchain:
|
|
1236
|
-
address:
|
|
1237
|
-
chainId?: Maybe<
|
|
1248
|
+
blockchain: string;
|
|
1249
|
+
address: string;
|
|
1250
|
+
chainId?: Maybe<string> | undefined;
|
|
1238
1251
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1239
1252
|
export type RemoveWalletMutationHookResult = ReturnType<typeof useRemoveWalletMutation>;
|
|
1240
1253
|
export type RemoveWalletMutationResult = Apollo.MutationResult<IRemoveWalletMutation>;
|
|
@@ -1260,8 +1273,8 @@ export type ISaveEmailOfJoinerMutationFn = Apollo.MutationFunction<ISaveEmailOfJ
|
|
|
1260
1273
|
* });
|
|
1261
1274
|
*/
|
|
1262
1275
|
export declare function useSaveEmailOfJoinerMutation(baseOptions?: Apollo.MutationHookOptions<ISaveEmailOfJoinerMutation, ISaveEmailOfJoinerMutationVariables>): Apollo.MutationTuple<ISaveEmailOfJoinerMutation, Exact<{
|
|
1263
|
-
email:
|
|
1264
|
-
isSubscribed:
|
|
1276
|
+
email: string;
|
|
1277
|
+
isSubscribed: boolean;
|
|
1265
1278
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1266
1279
|
export type SaveEmailOfJoinerMutationHookResult = ReturnType<typeof useSaveEmailOfJoinerMutation>;
|
|
1267
1280
|
export type SaveEmailOfJoinerMutationResult = Apollo.MutationResult<ISaveEmailOfJoinerMutation>;
|
|
@@ -1288,9 +1301,9 @@ export type ISetMainWalletMutationFn = Apollo.MutationFunction<ISetMainWalletMut
|
|
|
1288
1301
|
* });
|
|
1289
1302
|
*/
|
|
1290
1303
|
export declare function useSetMainWalletMutation(baseOptions?: Apollo.MutationHookOptions<ISetMainWalletMutation, ISetMainWalletMutationVariables>): Apollo.MutationTuple<ISetMainWalletMutation, Exact<{
|
|
1291
|
-
blockchain:
|
|
1292
|
-
address:
|
|
1293
|
-
chainId?: Maybe<
|
|
1304
|
+
blockchain: string;
|
|
1305
|
+
address: string;
|
|
1306
|
+
chainId?: Maybe<string> | undefined;
|
|
1294
1307
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1295
1308
|
export type SetMainWalletMutationHookResult = ReturnType<typeof useSetMainWalletMutation>;
|
|
1296
1309
|
export type SetMainWalletMutationResult = Apollo.MutationResult<ISetMainWalletMutation>;
|
|
@@ -1317,9 +1330,9 @@ export type ISignInAdminMetamaskMutationFn = Apollo.MutationFunction<ISignInAdmi
|
|
|
1317
1330
|
* });
|
|
1318
1331
|
*/
|
|
1319
1332
|
export declare function useSignInAdminMetamaskMutation(baseOptions?: Apollo.MutationHookOptions<ISignInAdminMetamaskMutation, ISignInAdminMetamaskMutationVariables>): Apollo.MutationTuple<ISignInAdminMetamaskMutation, Exact<{
|
|
1320
|
-
signature:
|
|
1321
|
-
address:
|
|
1322
|
-
chainId:
|
|
1333
|
+
signature: string;
|
|
1334
|
+
address: string;
|
|
1335
|
+
chainId: string;
|
|
1323
1336
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1324
1337
|
export type SignInAdminMetamaskMutationHookResult = ReturnType<typeof useSignInAdminMetamaskMutation>;
|
|
1325
1338
|
export type SignInAdminMetamaskMutationResult = Apollo.MutationResult<ISignInAdminMetamaskMutation>;
|
|
@@ -1345,8 +1358,8 @@ export type ISignInElrondMutationFn = Apollo.MutationFunction<ISignInElrondMutat
|
|
|
1345
1358
|
* });
|
|
1346
1359
|
*/
|
|
1347
1360
|
export declare function useSignInElrondMutation(baseOptions?: Apollo.MutationHookOptions<ISignInElrondMutation, ISignInElrondMutationVariables>): Apollo.MutationTuple<ISignInElrondMutation, Exact<{
|
|
1348
|
-
signature:
|
|
1349
|
-
address:
|
|
1361
|
+
signature: string;
|
|
1362
|
+
address: string;
|
|
1350
1363
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1351
1364
|
export type SignInElrondMutationHookResult = ReturnType<typeof useSignInElrondMutation>;
|
|
1352
1365
|
export type SignInElrondMutationResult = Apollo.MutationResult<ISignInElrondMutation>;
|
|
@@ -1372,8 +1385,8 @@ export type ISignInFlowMutationFn = Apollo.MutationFunction<ISignInFlowMutation,
|
|
|
1372
1385
|
* });
|
|
1373
1386
|
*/
|
|
1374
1387
|
export declare function useSignInFlowMutation(baseOptions?: Apollo.MutationHookOptions<ISignInFlowMutation, ISignInFlowMutationVariables>): Apollo.MutationTuple<ISignInFlowMutation, Exact<{
|
|
1375
|
-
signature:
|
|
1376
|
-
address:
|
|
1388
|
+
signature: string;
|
|
1389
|
+
address: string;
|
|
1377
1390
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1378
1391
|
export type SignInFlowMutationHookResult = ReturnType<typeof useSignInFlowMutation>;
|
|
1379
1392
|
export type SignInFlowMutationResult = Apollo.MutationResult<ISignInFlowMutation>;
|
|
@@ -1400,9 +1413,9 @@ export type ISignInMetamaskMutationFn = Apollo.MutationFunction<ISignInMetamaskM
|
|
|
1400
1413
|
* });
|
|
1401
1414
|
*/
|
|
1402
1415
|
export declare function useSignInMetamaskMutation(baseOptions?: Apollo.MutationHookOptions<ISignInMetamaskMutation, ISignInMetamaskMutationVariables>): Apollo.MutationTuple<ISignInMetamaskMutation, Exact<{
|
|
1403
|
-
signature:
|
|
1404
|
-
address:
|
|
1405
|
-
chainId:
|
|
1416
|
+
signature: string;
|
|
1417
|
+
address: string;
|
|
1418
|
+
chainId: string;
|
|
1406
1419
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1407
1420
|
export type SignInMetamaskMutationHookResult = ReturnType<typeof useSignInMetamaskMutation>;
|
|
1408
1421
|
export type SignInMetamaskMutationResult = Apollo.MutationResult<ISignInMetamaskMutation>;
|
|
@@ -1428,8 +1441,8 @@ export type ISignInSolanaMutationFn = Apollo.MutationFunction<ISignInSolanaMutat
|
|
|
1428
1441
|
* });
|
|
1429
1442
|
*/
|
|
1430
1443
|
export declare function useSignInSolanaMutation(baseOptions?: Apollo.MutationHookOptions<ISignInSolanaMutation, ISignInSolanaMutationVariables>): Apollo.MutationTuple<ISignInSolanaMutation, Exact<{
|
|
1431
|
-
signature:
|
|
1432
|
-
pubkey:
|
|
1444
|
+
signature: string;
|
|
1445
|
+
pubkey: string;
|
|
1433
1446
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1434
1447
|
export type SignInSolanaMutationHookResult = ReturnType<typeof useSignInSolanaMutation>;
|
|
1435
1448
|
export type SignInSolanaMutationResult = Apollo.MutationResult<ISignInSolanaMutation>;
|
|
@@ -1455,8 +1468,8 @@ export type ISignInTezosMutationFn = Apollo.MutationFunction<ISignInTezosMutatio
|
|
|
1455
1468
|
* });
|
|
1456
1469
|
*/
|
|
1457
1470
|
export declare function useSignInTezosMutation(baseOptions?: Apollo.MutationHookOptions<ISignInTezosMutation, ISignInTezosMutationVariables>): Apollo.MutationTuple<ISignInTezosMutation, Exact<{
|
|
1458
|
-
signature:
|
|
1459
|
-
pubkey:
|
|
1471
|
+
signature: string;
|
|
1472
|
+
pubkey: string;
|
|
1460
1473
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1461
1474
|
export type SignInTezosMutationHookResult = ReturnType<typeof useSignInTezosMutation>;
|
|
1462
1475
|
export type SignInTezosMutationResult = Apollo.MutationResult<ISignInTezosMutation>;
|
|
@@ -1483,7 +1496,7 @@ export type ISignInTonMutationFn = Apollo.MutationFunction<ISignInTonMutation, I
|
|
|
1483
1496
|
*/
|
|
1484
1497
|
export declare function useSignInTonMutation(baseOptions?: Apollo.MutationHookOptions<ISignInTonMutation, ISignInTonMutationVariables>): Apollo.MutationTuple<ISignInTonMutation, Exact<{
|
|
1485
1498
|
request: ICheckTonProofRequest;
|
|
1486
|
-
restore?: Maybe<
|
|
1499
|
+
restore?: Maybe<boolean> | undefined;
|
|
1487
1500
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1488
1501
|
export type SignInTonMutationHookResult = ReturnType<typeof useSignInTonMutation>;
|
|
1489
1502
|
export type SignInTonMutationResult = Apollo.MutationResult<ISignInTonMutation>;
|
|
@@ -1510,17 +1523,21 @@ export type IUpdateProfileMutationFn = Apollo.MutationFunction<IUpdateProfileMut
|
|
|
1510
1523
|
* instagram: // value for 'instagram'
|
|
1511
1524
|
* website: // value for 'website'
|
|
1512
1525
|
* showNsfw: // value for 'showNsfw'
|
|
1526
|
+
* discordNickname: // value for 'discordNickname'
|
|
1527
|
+
* discordServer: // value for 'discordServer'
|
|
1513
1528
|
* },
|
|
1514
1529
|
* });
|
|
1515
1530
|
*/
|
|
1516
1531
|
export declare function useUpdateProfileMutation(baseOptions?: Apollo.MutationHookOptions<IUpdateProfileMutation, IUpdateProfileMutationVariables>): Apollo.MutationTuple<IUpdateProfileMutation, Exact<{
|
|
1517
|
-
username?: Maybe<
|
|
1518
|
-
about?: Maybe<
|
|
1519
|
-
facebook?: Maybe<
|
|
1520
|
-
twitter?: Maybe<
|
|
1521
|
-
instagram?: Maybe<
|
|
1522
|
-
website?: Maybe<
|
|
1523
|
-
showNsfw?: Maybe<
|
|
1532
|
+
username?: Maybe<string> | undefined;
|
|
1533
|
+
about?: Maybe<string> | undefined;
|
|
1534
|
+
facebook?: Maybe<string> | undefined;
|
|
1535
|
+
twitter?: Maybe<string> | undefined;
|
|
1536
|
+
instagram?: Maybe<string> | undefined;
|
|
1537
|
+
website?: Maybe<string> | undefined;
|
|
1538
|
+
showNsfw?: Maybe<boolean> | undefined;
|
|
1539
|
+
discordNickname?: Maybe<string> | undefined;
|
|
1540
|
+
discordServer?: Maybe<string> | undefined;
|
|
1524
1541
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1525
1542
|
export type UpdateProfileMutationHookResult = ReturnType<typeof useUpdateProfileMutation>;
|
|
1526
1543
|
export type UpdateProfileMutationResult = Apollo.MutationResult<IUpdateProfileMutation>;
|
|
@@ -1543,10 +1560,10 @@ export declare const FetchAggregatedMultiversxAuditDocument: Apollo.DocumentNode
|
|
|
1543
1560
|
* });
|
|
1544
1561
|
*/
|
|
1545
1562
|
export declare function useFetchAggregatedMultiversxAuditQuery(baseOptions: Apollo.QueryHookOptions<IFetchAggregatedMultiversxAuditQuery, IFetchAggregatedMultiversxAuditQueryVariables>): Apollo.QueryResult<IFetchAggregatedMultiversxAuditQuery, Exact<{
|
|
1546
|
-
userId:
|
|
1563
|
+
userId: string;
|
|
1547
1564
|
}>>;
|
|
1548
1565
|
export declare function useFetchAggregatedMultiversxAuditLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchAggregatedMultiversxAuditQuery, IFetchAggregatedMultiversxAuditQueryVariables>): Apollo.LazyQueryResultTuple<IFetchAggregatedMultiversxAuditQuery, Exact<{
|
|
1549
|
-
userId:
|
|
1566
|
+
userId: string;
|
|
1550
1567
|
}>>;
|
|
1551
1568
|
export type FetchAggregatedMultiversxAuditQueryHookResult = ReturnType<typeof useFetchAggregatedMultiversxAuditQuery>;
|
|
1552
1569
|
export type FetchAggregatedMultiversxAuditLazyQueryHookResult = ReturnType<typeof useFetchAggregatedMultiversxAuditLazyQuery>;
|
|
@@ -1569,10 +1586,10 @@ export declare const FetchMultiversXAuditDocument: Apollo.DocumentNode;
|
|
|
1569
1586
|
* });
|
|
1570
1587
|
*/
|
|
1571
1588
|
export declare function useFetchMultiversXAuditQuery(baseOptions: Apollo.QueryHookOptions<IFetchMultiversXAuditQuery, IFetchMultiversXAuditQueryVariables>): Apollo.QueryResult<IFetchMultiversXAuditQuery, Exact<{
|
|
1572
|
-
wallet:
|
|
1589
|
+
wallet: string;
|
|
1573
1590
|
}>>;
|
|
1574
1591
|
export declare function useFetchMultiversXAuditLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchMultiversXAuditQuery, IFetchMultiversXAuditQueryVariables>): Apollo.LazyQueryResultTuple<IFetchMultiversXAuditQuery, Exact<{
|
|
1575
|
-
wallet:
|
|
1592
|
+
wallet: string;
|
|
1576
1593
|
}>>;
|
|
1577
1594
|
export type FetchMultiversXAuditQueryHookResult = ReturnType<typeof useFetchMultiversXAuditQuery>;
|
|
1578
1595
|
export type FetchMultiversXAuditLazyQueryHookResult = ReturnType<typeof useFetchMultiversXAuditLazyQuery>;
|
|
@@ -1620,10 +1637,10 @@ export declare const FetchProfileDocument: Apollo.DocumentNode;
|
|
|
1620
1637
|
* });
|
|
1621
1638
|
*/
|
|
1622
1639
|
export declare function useFetchProfileQuery(baseOptions: Apollo.QueryHookOptions<IFetchProfileQuery, IFetchProfileQueryVariables>): Apollo.QueryResult<IFetchProfileQuery, Exact<{
|
|
1623
|
-
userId:
|
|
1640
|
+
userId: string;
|
|
1624
1641
|
}>>;
|
|
1625
1642
|
export declare function useFetchProfileLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchProfileQuery, IFetchProfileQueryVariables>): Apollo.LazyQueryResultTuple<IFetchProfileQuery, Exact<{
|
|
1626
|
-
userId:
|
|
1643
|
+
userId: string;
|
|
1627
1644
|
}>>;
|
|
1628
1645
|
export type FetchProfileQueryHookResult = ReturnType<typeof useFetchProfileQuery>;
|
|
1629
1646
|
export type FetchProfileLazyQueryHookResult = ReturnType<typeof useFetchProfileLazyQuery>;
|
|
@@ -1646,10 +1663,10 @@ export declare const FetchUserWalletsDocument: Apollo.DocumentNode;
|
|
|
1646
1663
|
* });
|
|
1647
1664
|
*/
|
|
1648
1665
|
export declare function useFetchUserWalletsQuery(baseOptions: Apollo.QueryHookOptions<IFetchUserWalletsQuery, IFetchUserWalletsQueryVariables>): Apollo.QueryResult<IFetchUserWalletsQuery, Exact<{
|
|
1649
|
-
userId:
|
|
1666
|
+
userId: string;
|
|
1650
1667
|
}>>;
|
|
1651
1668
|
export declare function useFetchUserWalletsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchUserWalletsQuery, IFetchUserWalletsQueryVariables>): Apollo.LazyQueryResultTuple<IFetchUserWalletsQuery, Exact<{
|
|
1652
|
-
userId:
|
|
1669
|
+
userId: string;
|
|
1653
1670
|
}>>;
|
|
1654
1671
|
export type FetchUserWalletsQueryHookResult = ReturnType<typeof useFetchUserWalletsQuery>;
|
|
1655
1672
|
export type FetchUserWalletsLazyQueryHookResult = ReturnType<typeof useFetchUserWalletsLazyQuery>;
|