@ludo.ninja/api 2.8.95 → 2.8.97

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.
Files changed (37) hide show
  1. package/build/config/index.js +3 -2
  2. package/build/cookies/index.d.ts +1 -1
  3. package/build/graphql_tools/__generated__/adminHost/schema.d.ts +34 -34
  4. package/build/graphql_tools/__generated__/adminHost/schema.js +68 -66
  5. package/build/graphql_tools/__generated__/assetsHost/schema.d.ts +2 -2
  6. package/build/graphql_tools/__generated__/assetsHost/schema.js +3 -3
  7. package/build/graphql_tools/__generated__/authHost/schema.d.ts +2 -2
  8. package/build/graphql_tools/__generated__/authHost/schema.js +3 -3
  9. package/build/graphql_tools/__generated__/collectionsHost/schema.d.ts +2 -2
  10. package/build/graphql_tools/__generated__/collectionsHost/schema.js +3 -3
  11. package/build/graphql_tools/__generated__/experiencesHost/schema.d.ts +9 -9
  12. package/build/graphql_tools/__generated__/experiencesHost/schema.js +10 -10
  13. package/build/graphql_tools/__generated__/extensionHost/schema.d.ts +28 -28
  14. package/build/graphql_tools/__generated__/extensionHost/schema.js +18 -18
  15. package/build/graphql_tools/__generated__/formsHost/schema.js +8 -8
  16. package/build/graphql_tools/__generated__/galleriesHost/schema.d.ts +46 -46
  17. package/build/graphql_tools/__generated__/galleriesHost/schema.js +21 -21
  18. package/build/graphql_tools/__generated__/identityHost/schema.d.ts +141 -63
  19. package/build/graphql_tools/__generated__/identityHost/schema.js +121 -31
  20. package/build/graphql_tools/__generated__/mediasHost/schema.d.ts +5 -5
  21. package/build/graphql_tools/__generated__/mediasHost/schema.js +5 -5
  22. package/build/graphql_tools/__generated__/notificationsHost/schema.d.ts +4 -4
  23. package/build/graphql_tools/__generated__/notificationsHost/schema.js +3 -3
  24. package/build/graphql_tools/__generated__/opportunitiesHost/schema.d.ts +7 -36
  25. package/build/graphql_tools/__generated__/opportunitiesHost/schema.js +11 -37
  26. package/build/graphql_tools/__generated__/preferencesHost/schema.d.ts +2 -2
  27. package/build/graphql_tools/__generated__/preferencesHost/schema.js +23 -23
  28. package/build/graphql_tools/__generated__/searchHost/schema.d.ts +52 -48
  29. package/build/graphql_tools/__generated__/searchHost/schema.js +33 -33
  30. package/build/graphql_tools/__generated__/tapHost/schema.d.ts +6 -6
  31. package/build/graphql_tools/__generated__/tapHost/schema.js +12 -12
  32. package/build/index.d.ts +1238 -581
  33. package/package.json +1 -1
  34. package/src/graphql_tools/__generated__/identityHost/schema.ts +145 -11
  35. package/src/graphql_tools/__generated__/opportunitiesHost/schema.ts +0 -37
  36. package/src/graphql_tools/__generated__/searchHost/schema.ts +4 -0
  37. package/tsconfig.tsbuildinfo +1 -1
@@ -71,8 +71,9 @@ export type IIdentity = {
71
71
  role: IRole;
72
72
  newUser?: Maybe<Scalars['Boolean']>;
73
73
  inviteCode?: Maybe<Scalars['String']>;
74
- refypeId?: Maybe<Scalars['ID']>;
74
+ reftypeId?: Maybe<Scalars['ID']>;
75
75
  reftypeName?: Maybe<Scalars['String']>;
76
+ reftypeColor?: Maybe<IReftypeColor>;
76
77
  };
77
78
  export type IInputProfile = {
78
79
  username?: Maybe<Scalars['String']>;
@@ -248,6 +249,11 @@ export type IMyProfileV2 = {
248
249
  levelMinXps?: Maybe<Scalars['Int']>;
249
250
  levelMaxXps?: Maybe<Scalars['Int']>;
250
251
  inviteCodes?: Maybe<Array<Maybe<IInviteCode>>>;
252
+ referralTypeId?: Maybe<Scalars['ID']>;
253
+ referralTypeName?: Maybe<Scalars['String']>;
254
+ referralTypeColor?: Maybe<IReftypeColor>;
255
+ tierId?: Maybe<Scalars['String']>;
256
+ tierName?: Maybe<Scalars['String']>;
251
257
  };
252
258
  export type IProfile = {
253
259
  userId: Scalars['ID'];
@@ -269,6 +275,11 @@ export type IProfile = {
269
275
  wallets?: Maybe<Array<Maybe<IWallet>>>;
270
276
  xps?: Maybe<Scalars['Int']>;
271
277
  level?: Maybe<Scalars['Int']>;
278
+ referralTypeId?: Maybe<Scalars['ID']>;
279
+ referralTypeName?: Maybe<Scalars['String']>;
280
+ referralTypeColor?: Maybe<IReftypeColor>;
281
+ tierId?: Maybe<Scalars['String']>;
282
+ tierName?: Maybe<Scalars['String']>;
272
283
  };
273
284
  export type IProof = {
274
285
  timestamp?: Maybe<Scalars['Long']>;
@@ -281,6 +292,7 @@ export type IQuery = {
281
292
  getDummy: Scalars['String'];
282
293
  fetchUserWallets: Array<Maybe<IWallet>>;
283
294
  fetchMultiversxAudit?: Maybe<IMultiversxAudit>;
295
+ fetchAggregatedMultiversxAudit?: Maybe<IMultiversxAudit>;
284
296
  fetchInviteCode: IInviteCode;
285
297
  fetchMyProfileV2: IMyProfileV2;
286
298
  fetchProfile: IProfile;
@@ -293,6 +305,9 @@ export type IQueryFetchUserWalletsArgs = {
293
305
  export type IQueryFetchMultiversxAuditArgs = {
294
306
  wallet: Scalars['String'];
295
307
  };
308
+ export type IQueryFetchAggregatedMultiversxAuditArgs = {
309
+ userId: Scalars['ID'];
310
+ };
296
311
  export type IQueryFetchInviteCodeArgs = {
297
312
  inviteCode: Scalars['String'];
298
313
  };
@@ -305,6 +320,19 @@ export type IQueryFetchFollowingStatusArgs = {
305
320
  export type IQueryFetchFollowingStatusesArgs = {
306
321
  userIds: Array<Scalars['ID']>;
307
322
  };
323
+ /** Sync with ReftypeColor.java */
324
+ export declare enum IReftypeColor {
325
+ Red = "RED",
326
+ Green = "GREEN",
327
+ Blue = "BLUE",
328
+ Yellow = "YELLOW",
329
+ Orange = "ORANGE",
330
+ White = "WHITE",
331
+ Black = "BLACK",
332
+ Grey = "GREY",
333
+ Purple = "PURPLE",
334
+ Gold = "GOLD"
335
+ }
308
336
  export declare enum IRole {
309
337
  Admin = "admin",
310
338
  Plain = "plain"
@@ -389,6 +417,7 @@ export type IResolversTypes = {
389
417
  Profile: ResolverTypeWrapper<IProfile>;
390
418
  Proof: IProof;
391
419
  Query: ResolverTypeWrapper<{}>;
420
+ ReftypeColor: IReftypeColor;
392
421
  Role: IRole;
393
422
  Social: ResolverTypeWrapper<ISocial>;
394
423
  TokenPair: ResolverTypeWrapper<ITokenPair>;
@@ -491,8 +520,9 @@ export type IIdentityResolvers<ContextType = any, ParentType extends IResolversP
491
520
  role?: Resolver<IResolversTypes['Role'], ParentType, ContextType>;
492
521
  newUser?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
493
522
  inviteCode?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
494
- refypeId?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
523
+ reftypeId?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
495
524
  reftypeName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
525
+ reftypeColor?: Resolver<Maybe<IResolversTypes['ReftypeColor']>, ParentType, ContextType>;
496
526
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
497
527
  };
498
528
  export type IInviteCodeResolvers<ContextType = any, ParentType extends IResolversParentTypes['InviteCode'] = IResolversParentTypes['InviteCode']> = {
@@ -569,6 +599,11 @@ export type IMyProfileV2Resolvers<ContextType = any, ParentType extends IResolve
569
599
  levelMinXps?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
570
600
  levelMaxXps?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
571
601
  inviteCodes?: Resolver<Maybe<Array<Maybe<IResolversTypes['InviteCode']>>>, ParentType, ContextType>;
602
+ referralTypeId?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
603
+ referralTypeName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
604
+ referralTypeColor?: Resolver<Maybe<IResolversTypes['ReftypeColor']>, ParentType, ContextType>;
605
+ tierId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
606
+ tierName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
572
607
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
573
608
  };
574
609
  export type IProfileResolvers<ContextType = any, ParentType extends IResolversParentTypes['Profile'] = IResolversParentTypes['Profile']> = {
@@ -591,12 +626,18 @@ export type IProfileResolvers<ContextType = any, ParentType extends IResolversPa
591
626
  wallets?: Resolver<Maybe<Array<Maybe<IResolversTypes['Wallet']>>>, ParentType, ContextType>;
592
627
  xps?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
593
628
  level?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
629
+ referralTypeId?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
630
+ referralTypeName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
631
+ referralTypeColor?: Resolver<Maybe<IResolversTypes['ReftypeColor']>, ParentType, ContextType>;
632
+ tierId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
633
+ tierName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
594
634
  __isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
595
635
  };
596
636
  export type IQueryResolvers<ContextType = any, ParentType extends IResolversParentTypes['Query'] = IResolversParentTypes['Query']> = {
597
637
  getDummy?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
598
638
  fetchUserWallets?: Resolver<Array<Maybe<IResolversTypes['Wallet']>>, ParentType, ContextType, RequireFields<IQueryFetchUserWalletsArgs, 'userId'>>;
599
639
  fetchMultiversxAudit?: Resolver<Maybe<IResolversTypes['MultiversxAudit']>, ParentType, ContextType, RequireFields<IQueryFetchMultiversxAuditArgs, 'wallet'>>;
640
+ fetchAggregatedMultiversxAudit?: Resolver<Maybe<IResolversTypes['MultiversxAudit']>, ParentType, ContextType, RequireFields<IQueryFetchAggregatedMultiversxAuditArgs, 'userId'>>;
600
641
  fetchInviteCode?: Resolver<IResolversTypes['InviteCode'], ParentType, ContextType, RequireFields<IQueryFetchInviteCodeArgs, 'inviteCode'>>;
601
642
  fetchMyProfileV2?: Resolver<IResolversTypes['MyProfileV2'], ParentType, ContextType>;
602
643
  fetchProfile?: Resolver<IResolversTypes['Profile'], ParentType, ContextType, RequireFields<IQueryFetchProfileArgs, 'userId'>>;
@@ -741,7 +782,7 @@ export type ISignInAdminMetamaskMutationVariables = Exact<{
741
782
  chainId: Scalars['String'];
742
783
  }>;
743
784
  export type ISignInAdminMetamaskMutation = {
744
- signInAdminMetamask: (Pick<IIdentity, 'userId' | 'wallets' | 'newUser' | 'inviteCode' | 'role'> & {
785
+ signInAdminMetamask: (Pick<IIdentity, 'userId' | 'wallets' | 'newUser' | 'inviteCode' | 'role' | 'reftypeId' | 'reftypeName' | 'reftypeColor'> & {
745
786
  tokens: {
746
787
  portalTokenPair: Pick<ITokenPair, 'authToken' | 'refreshToken'>;
747
788
  extensionTokenPair: Pick<ITokenPair, 'authToken' | 'refreshToken'>;
@@ -753,7 +794,7 @@ export type ISignInElrondMutationVariables = Exact<{
753
794
  address: Scalars['String'];
754
795
  }>;
755
796
  export type ISignInElrondMutation = {
756
- signInElrond: (Pick<IIdentity, 'userId' | 'wallets' | 'newUser' | 'inviteCode' | 'role'> & {
797
+ signInElrond: (Pick<IIdentity, 'userId' | 'wallets' | 'newUser' | 'inviteCode' | 'role' | 'reftypeId' | 'reftypeName' | 'reftypeColor'> & {
757
798
  tokens: {
758
799
  portalTokenPair: Pick<ITokenPair, 'authToken' | 'refreshToken'>;
759
800
  extensionTokenPair: Pick<ITokenPair, 'authToken' | 'refreshToken'>;
@@ -765,7 +806,7 @@ export type ISignInFlowMutationVariables = Exact<{
765
806
  address: Scalars['String'];
766
807
  }>;
767
808
  export type ISignInFlowMutation = {
768
- signInFlow: (Pick<IIdentity, 'userId' | 'wallets' | 'newUser' | 'inviteCode' | 'role'> & {
809
+ signInFlow: (Pick<IIdentity, 'userId' | 'wallets' | 'newUser' | 'inviteCode' | 'role' | 'reftypeId' | 'reftypeName' | 'reftypeColor'> & {
769
810
  tokens: {
770
811
  portalTokenPair: Pick<ITokenPair, 'authToken' | 'refreshToken'>;
771
812
  extensionTokenPair: Pick<ITokenPair, 'authToken' | 'refreshToken'>;
@@ -778,7 +819,7 @@ export type ISignInMetamaskMutationVariables = Exact<{
778
819
  chainId: Scalars['String'];
779
820
  }>;
780
821
  export type ISignInMetamaskMutation = {
781
- signInMetamask: (Pick<IIdentity, 'userId' | 'wallets' | 'newUser' | 'inviteCode' | 'role'> & {
822
+ signInMetamask: (Pick<IIdentity, 'userId' | 'wallets' | 'newUser' | 'inviteCode' | 'role' | 'reftypeId' | 'reftypeName' | 'reftypeColor'> & {
782
823
  tokens: {
783
824
  portalTokenPair: Pick<ITokenPair, 'authToken' | 'refreshToken'>;
784
825
  extensionTokenPair: Pick<ITokenPair, 'authToken' | 'refreshToken'>;
@@ -790,7 +831,7 @@ export type ISignInSolanaMutationVariables = Exact<{
790
831
  pubkey: Scalars['String'];
791
832
  }>;
792
833
  export type ISignInSolanaMutation = {
793
- signInSolana: (Pick<IIdentity, 'userId' | 'wallets' | 'newUser' | 'inviteCode' | 'role'> & {
834
+ signInSolana: (Pick<IIdentity, 'userId' | 'wallets' | 'newUser' | 'inviteCode' | 'role' | 'reftypeId' | 'reftypeName' | 'reftypeColor'> & {
794
835
  tokens: {
795
836
  portalTokenPair: Pick<ITokenPair, 'authToken' | 'refreshToken'>;
796
837
  extensionTokenPair: Pick<ITokenPair, 'authToken' | 'refreshToken'>;
@@ -802,7 +843,7 @@ export type ISignInTezosMutationVariables = Exact<{
802
843
  pubkey: Scalars['String'];
803
844
  }>;
804
845
  export type ISignInTezosMutation = {
805
- signInTezos: (Pick<IIdentity, 'userId' | 'wallets' | 'newUser' | 'inviteCode' | 'role'> & {
846
+ signInTezos: (Pick<IIdentity, 'userId' | 'wallets' | 'newUser' | 'inviteCode' | 'role' | 'reftypeId' | 'reftypeName' | 'reftypeColor'> & {
806
847
  tokens: {
807
848
  portalTokenPair: Pick<ITokenPair, 'authToken' | 'refreshToken'>;
808
849
  extensionTokenPair: Pick<ITokenPair, 'authToken' | 'refreshToken'>;
@@ -814,7 +855,7 @@ export type ISignInTonMutationVariables = Exact<{
814
855
  restore?: Maybe<Scalars['Boolean']>;
815
856
  }>;
816
857
  export type ISignInTonMutation = {
817
- signInTon: (Pick<IIdentity, 'userId' | 'wallets' | 'newUser' | 'inviteCode' | 'role'> & {
858
+ signInTon: (Pick<IIdentity, 'userId' | 'wallets' | 'newUser' | 'inviteCode' | 'role' | 'reftypeId' | 'reftypeName' | 'reftypeColor'> & {
818
859
  tokens: {
819
860
  portalTokenPair: Pick<ITokenPair, 'authToken' | 'refreshToken'>;
820
861
  extensionTokenPair: Pick<ITokenPair, 'authToken' | 'refreshToken'>;
@@ -831,6 +872,17 @@ export type IUpdateProfileMutationVariables = Exact<{
831
872
  showNsfw?: Maybe<Scalars['Boolean']>;
832
873
  }>;
833
874
  export type IUpdateProfileMutation = Pick<IMutation, 'updateProfile'>;
875
+ export type IFetchAggregatedMultiversxAuditQueryVariables = Exact<{
876
+ userId: Scalars['ID'];
877
+ }>;
878
+ export type IFetchAggregatedMultiversxAuditQuery = {
879
+ fetchAggregatedMultiversxAudit?: Maybe<(Pick<IMultiversxAudit, 'delegated' | 'nativeBalance' | 'tokenValue'> & {
880
+ interests?: Maybe<Array<Pick<IAuditInterest, 'name' | 'items' | 'percentage'>>>;
881
+ nftBalance?: Maybe<(Pick<IAuditNftBalance, 'nativeValue' | 'totalNfts'> & {
882
+ collections?: Maybe<Array<Pick<IAuditBalanceCollection, 'collection' | 'type' | 'name' | 'balance'>>>;
883
+ })>;
884
+ })>;
885
+ };
834
886
  export type IFetchMultiversXAuditQueryVariables = Exact<{
835
887
  wallet: Scalars['String'];
836
888
  }>;
@@ -846,7 +898,7 @@ export type IFetchMyProfileV2QueryVariables = Exact<{
846
898
  [key: string]: never;
847
899
  }>;
848
900
  export type IFetchMyProfileV2Query = {
849
- fetchMyProfileV2: (Pick<IMyProfileV2, 'userId' | 'username' | 'about' | 'userpic' | 'following' | 'followings' | 'followers' | 'views' | 'createdAt' | 'deletedAt' | 'visible' | 'active' | 'deleted' | 'showNsfw' | 'rank' | 'xps' | 'level' | 'levelMinXps' | 'levelMaxXps'> & {
901
+ 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'> & {
850
902
  social?: Maybe<Pick<ISocial, 'facebook' | 'twitter' | 'instagram' | 'website'>>;
851
903
  wallets?: Maybe<Array<Maybe<Pick<IWallet, 'userId' | 'address' | 'walletName' | 'blockchain' | 'chainId'>>>>;
852
904
  inviteCodes?: Maybe<Array<Maybe<(Pick<IInviteCode, 'inviteCode' | 'isUsed' | 'maxUsagesLimit' | 'codeUsersNum'> & {
@@ -858,7 +910,7 @@ export type IFetchProfileQueryVariables = Exact<{
858
910
  userId: Scalars['ID'];
859
911
  }>;
860
912
  export type IFetchProfileQuery = {
861
- fetchProfile: (Pick<IProfile, 'userId' | 'username' | 'about' | 'userpic' | 'following' | 'followings' | 'followers' | 'rank' | 'views' | 'createdAt' | 'deletedAt' | 'visible' | 'active' | 'deleted' | 'showNsfw'> & {
913
+ fetchProfile: (Pick<IProfile, 'userId' | 'username' | 'about' | 'userpic' | 'following' | 'followings' | 'followers' | 'rank' | 'views' | 'createdAt' | 'deletedAt' | 'visible' | 'active' | 'deleted' | 'showNsfw' | 'referralTypeId' | 'referralTypeName' | 'referralTypeColor'> & {
862
914
  social?: Maybe<Pick<ISocial, 'facebook' | 'twitter' | 'instagram' | 'website'>>;
863
915
  wallets?: Maybe<Array<Maybe<Pick<IWallet, 'userId' | 'address' | 'walletName' | 'blockchain' | 'chainId'>>>>;
864
916
  });
@@ -890,8 +942,8 @@ export type IAddWalletElrondMutationFn = Apollo.MutationFunction<IAddWalletElron
890
942
  * });
891
943
  */
892
944
  export declare function useAddWalletElrondMutation(baseOptions?: Apollo.MutationHookOptions<IAddWalletElrondMutation, IAddWalletElrondMutationVariables>): Apollo.MutationTuple<IAddWalletElrondMutation, Exact<{
893
- signature: Scalars["String"];
894
- address: Scalars["String"];
945
+ signature: string;
946
+ address: string;
895
947
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
896
948
  export type AddWalletElrondMutationHookResult = ReturnType<typeof useAddWalletElrondMutation>;
897
949
  export type AddWalletElrondMutationResult = Apollo.MutationResult<IAddWalletElrondMutation>;
@@ -917,8 +969,8 @@ export type IAddWalletFlowMutationFn = Apollo.MutationFunction<IAddWalletFlowMut
917
969
  * });
918
970
  */
919
971
  export declare function useAddWalletFlowMutation(baseOptions?: Apollo.MutationHookOptions<IAddWalletFlowMutation, IAddWalletFlowMutationVariables>): Apollo.MutationTuple<IAddWalletFlowMutation, Exact<{
920
- signature: Scalars["String"];
921
- address: Scalars["String"];
972
+ signature: string;
973
+ address: string;
922
974
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
923
975
  export type AddWalletFlowMutationHookResult = ReturnType<typeof useAddWalletFlowMutation>;
924
976
  export type AddWalletFlowMutationResult = Apollo.MutationResult<IAddWalletFlowMutation>;
@@ -945,9 +997,9 @@ export type IAddWalletMetamaskMutationFn = Apollo.MutationFunction<IAddWalletMet
945
997
  * });
946
998
  */
947
999
  export declare function useAddWalletMetamaskMutation(baseOptions?: Apollo.MutationHookOptions<IAddWalletMetamaskMutation, IAddWalletMetamaskMutationVariables>): Apollo.MutationTuple<IAddWalletMetamaskMutation, Exact<{
948
- signature: Scalars["String"];
949
- address: Scalars["String"];
950
- chainId: Scalars["String"];
1000
+ signature: string;
1001
+ address: string;
1002
+ chainId: string;
951
1003
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
952
1004
  export type AddWalletMetamaskMutationHookResult = ReturnType<typeof useAddWalletMetamaskMutation>;
953
1005
  export type AddWalletMetamaskMutationResult = Apollo.MutationResult<IAddWalletMetamaskMutation>;
@@ -973,8 +1025,8 @@ export type IAddWalletSolanaMutationFn = Apollo.MutationFunction<IAddWalletSolan
973
1025
  * });
974
1026
  */
975
1027
  export declare function useAddWalletSolanaMutation(baseOptions?: Apollo.MutationHookOptions<IAddWalletSolanaMutation, IAddWalletSolanaMutationVariables>): Apollo.MutationTuple<IAddWalletSolanaMutation, Exact<{
976
- signature: Scalars["String"];
977
- pubkey: Scalars["String"];
1028
+ signature: string;
1029
+ pubkey: string;
978
1030
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
979
1031
  export type AddWalletSolanaMutationHookResult = ReturnType<typeof useAddWalletSolanaMutation>;
980
1032
  export type AddWalletSolanaMutationResult = Apollo.MutationResult<IAddWalletSolanaMutation>;
@@ -1000,8 +1052,8 @@ export type IAddWalletTezosMutationFn = Apollo.MutationFunction<IAddWalletTezosM
1000
1052
  * });
1001
1053
  */
1002
1054
  export declare function useAddWalletTezosMutation(baseOptions?: Apollo.MutationHookOptions<IAddWalletTezosMutation, IAddWalletTezosMutationVariables>): Apollo.MutationTuple<IAddWalletTezosMutation, Exact<{
1003
- signature: Scalars["String"];
1004
- pubkey: Scalars["String"];
1055
+ signature: string;
1056
+ pubkey: string;
1005
1057
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
1006
1058
  export type AddWalletTezosMutationHookResult = ReturnType<typeof useAddWalletTezosMutation>;
1007
1059
  export type AddWalletTezosMutationResult = Apollo.MutationResult<IAddWalletTezosMutation>;
@@ -1077,9 +1129,9 @@ export type ICreateNonceMutationFn = Apollo.MutationFunction<ICreateNonceMutatio
1077
1129
  * });
1078
1130
  */
1079
1131
  export declare function useCreateNonceMutation(baseOptions?: Apollo.MutationHookOptions<ICreateNonceMutation, ICreateNonceMutationVariables>): Apollo.MutationTuple<ICreateNonceMutation, Exact<{
1080
- address: Scalars["String"];
1081
- blockchain: Scalars["String"];
1082
- chainId?: Maybe<Scalars["String"]>;
1132
+ address: string;
1133
+ blockchain: string;
1134
+ chainId?: Maybe<string> | undefined;
1083
1135
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
1084
1136
  export type CreateNonceMutationHookResult = ReturnType<typeof useCreateNonceMutation>;
1085
1137
  export type CreateNonceMutationResult = Apollo.MutationResult<ICreateNonceMutation>;
@@ -1128,7 +1180,7 @@ export type IGenerateNewInviteCodesMutationFn = Apollo.MutationFunction<IGenerat
1128
1180
  * });
1129
1181
  */
1130
1182
  export declare function useGenerateNewInviteCodesMutation(baseOptions?: Apollo.MutationHookOptions<IGenerateNewInviteCodesMutation, IGenerateNewInviteCodesMutationVariables>): Apollo.MutationTuple<IGenerateNewInviteCodesMutation, Exact<{
1131
- codesNum: Scalars["Int"];
1183
+ codesNum: number;
1132
1184
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
1133
1185
  export type GenerateNewInviteCodesMutationHookResult = ReturnType<typeof useGenerateNewInviteCodesMutation>;
1134
1186
  export type GenerateNewInviteCodesMutationResult = Apollo.MutationResult<IGenerateNewInviteCodesMutation>;
@@ -1153,7 +1205,7 @@ export type IUseInviteCodeMutationFn = Apollo.MutationFunction<IUseInviteCodeMut
1153
1205
  * });
1154
1206
  */
1155
1207
  export declare function useUseInviteCodeMutation(baseOptions?: Apollo.MutationHookOptions<IUseInviteCodeMutation, IUseInviteCodeMutationVariables>): Apollo.MutationTuple<IUseInviteCodeMutation, Exact<{
1156
- inviteCode: Scalars["String"];
1208
+ inviteCode: string;
1157
1209
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
1158
1210
  export type UseInviteCodeMutationHookResult = ReturnType<typeof useUseInviteCodeMutation>;
1159
1211
  export type UseInviteCodeMutationResult = Apollo.MutationResult<IUseInviteCodeMutation>;
@@ -1180,9 +1232,9 @@ export type IRemoveWalletMutationFn = Apollo.MutationFunction<IRemoveWalletMutat
1180
1232
  * });
1181
1233
  */
1182
1234
  export declare function useRemoveWalletMutation(baseOptions?: Apollo.MutationHookOptions<IRemoveWalletMutation, IRemoveWalletMutationVariables>): Apollo.MutationTuple<IRemoveWalletMutation, Exact<{
1183
- blockchain: Scalars["String"];
1184
- address: Scalars["String"];
1185
- chainId?: Maybe<Scalars["String"]>;
1235
+ blockchain: string;
1236
+ address: string;
1237
+ chainId?: Maybe<string> | undefined;
1186
1238
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
1187
1239
  export type RemoveWalletMutationHookResult = ReturnType<typeof useRemoveWalletMutation>;
1188
1240
  export type RemoveWalletMutationResult = Apollo.MutationResult<IRemoveWalletMutation>;
@@ -1208,8 +1260,8 @@ export type ISaveEmailOfJoinerMutationFn = Apollo.MutationFunction<ISaveEmailOfJ
1208
1260
  * });
1209
1261
  */
1210
1262
  export declare function useSaveEmailOfJoinerMutation(baseOptions?: Apollo.MutationHookOptions<ISaveEmailOfJoinerMutation, ISaveEmailOfJoinerMutationVariables>): Apollo.MutationTuple<ISaveEmailOfJoinerMutation, Exact<{
1211
- email: Scalars["String"];
1212
- isSubscribed: Scalars["Boolean"];
1263
+ email: string;
1264
+ isSubscribed: boolean;
1213
1265
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
1214
1266
  export type SaveEmailOfJoinerMutationHookResult = ReturnType<typeof useSaveEmailOfJoinerMutation>;
1215
1267
  export type SaveEmailOfJoinerMutationResult = Apollo.MutationResult<ISaveEmailOfJoinerMutation>;
@@ -1236,9 +1288,9 @@ export type ISetMainWalletMutationFn = Apollo.MutationFunction<ISetMainWalletMut
1236
1288
  * });
1237
1289
  */
1238
1290
  export declare function useSetMainWalletMutation(baseOptions?: Apollo.MutationHookOptions<ISetMainWalletMutation, ISetMainWalletMutationVariables>): Apollo.MutationTuple<ISetMainWalletMutation, Exact<{
1239
- blockchain: Scalars["String"];
1240
- address: Scalars["String"];
1241
- chainId?: Maybe<Scalars["String"]>;
1291
+ blockchain: string;
1292
+ address: string;
1293
+ chainId?: Maybe<string> | undefined;
1242
1294
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
1243
1295
  export type SetMainWalletMutationHookResult = ReturnType<typeof useSetMainWalletMutation>;
1244
1296
  export type SetMainWalletMutationResult = Apollo.MutationResult<ISetMainWalletMutation>;
@@ -1265,9 +1317,9 @@ export type ISignInAdminMetamaskMutationFn = Apollo.MutationFunction<ISignInAdmi
1265
1317
  * });
1266
1318
  */
1267
1319
  export declare function useSignInAdminMetamaskMutation(baseOptions?: Apollo.MutationHookOptions<ISignInAdminMetamaskMutation, ISignInAdminMetamaskMutationVariables>): Apollo.MutationTuple<ISignInAdminMetamaskMutation, Exact<{
1268
- signature: Scalars["String"];
1269
- address: Scalars["String"];
1270
- chainId: Scalars["String"];
1320
+ signature: string;
1321
+ address: string;
1322
+ chainId: string;
1271
1323
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
1272
1324
  export type SignInAdminMetamaskMutationHookResult = ReturnType<typeof useSignInAdminMetamaskMutation>;
1273
1325
  export type SignInAdminMetamaskMutationResult = Apollo.MutationResult<ISignInAdminMetamaskMutation>;
@@ -1293,8 +1345,8 @@ export type ISignInElrondMutationFn = Apollo.MutationFunction<ISignInElrondMutat
1293
1345
  * });
1294
1346
  */
1295
1347
  export declare function useSignInElrondMutation(baseOptions?: Apollo.MutationHookOptions<ISignInElrondMutation, ISignInElrondMutationVariables>): Apollo.MutationTuple<ISignInElrondMutation, Exact<{
1296
- signature: Scalars["String"];
1297
- address: Scalars["String"];
1348
+ signature: string;
1349
+ address: string;
1298
1350
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
1299
1351
  export type SignInElrondMutationHookResult = ReturnType<typeof useSignInElrondMutation>;
1300
1352
  export type SignInElrondMutationResult = Apollo.MutationResult<ISignInElrondMutation>;
@@ -1320,8 +1372,8 @@ export type ISignInFlowMutationFn = Apollo.MutationFunction<ISignInFlowMutation,
1320
1372
  * });
1321
1373
  */
1322
1374
  export declare function useSignInFlowMutation(baseOptions?: Apollo.MutationHookOptions<ISignInFlowMutation, ISignInFlowMutationVariables>): Apollo.MutationTuple<ISignInFlowMutation, Exact<{
1323
- signature: Scalars["String"];
1324
- address: Scalars["String"];
1375
+ signature: string;
1376
+ address: string;
1325
1377
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
1326
1378
  export type SignInFlowMutationHookResult = ReturnType<typeof useSignInFlowMutation>;
1327
1379
  export type SignInFlowMutationResult = Apollo.MutationResult<ISignInFlowMutation>;
@@ -1348,9 +1400,9 @@ export type ISignInMetamaskMutationFn = Apollo.MutationFunction<ISignInMetamaskM
1348
1400
  * });
1349
1401
  */
1350
1402
  export declare function useSignInMetamaskMutation(baseOptions?: Apollo.MutationHookOptions<ISignInMetamaskMutation, ISignInMetamaskMutationVariables>): Apollo.MutationTuple<ISignInMetamaskMutation, Exact<{
1351
- signature: Scalars["String"];
1352
- address: Scalars["String"];
1353
- chainId: Scalars["String"];
1403
+ signature: string;
1404
+ address: string;
1405
+ chainId: string;
1354
1406
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
1355
1407
  export type SignInMetamaskMutationHookResult = ReturnType<typeof useSignInMetamaskMutation>;
1356
1408
  export type SignInMetamaskMutationResult = Apollo.MutationResult<ISignInMetamaskMutation>;
@@ -1376,8 +1428,8 @@ export type ISignInSolanaMutationFn = Apollo.MutationFunction<ISignInSolanaMutat
1376
1428
  * });
1377
1429
  */
1378
1430
  export declare function useSignInSolanaMutation(baseOptions?: Apollo.MutationHookOptions<ISignInSolanaMutation, ISignInSolanaMutationVariables>): Apollo.MutationTuple<ISignInSolanaMutation, Exact<{
1379
- signature: Scalars["String"];
1380
- pubkey: Scalars["String"];
1431
+ signature: string;
1432
+ pubkey: string;
1381
1433
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
1382
1434
  export type SignInSolanaMutationHookResult = ReturnType<typeof useSignInSolanaMutation>;
1383
1435
  export type SignInSolanaMutationResult = Apollo.MutationResult<ISignInSolanaMutation>;
@@ -1403,8 +1455,8 @@ export type ISignInTezosMutationFn = Apollo.MutationFunction<ISignInTezosMutatio
1403
1455
  * });
1404
1456
  */
1405
1457
  export declare function useSignInTezosMutation(baseOptions?: Apollo.MutationHookOptions<ISignInTezosMutation, ISignInTezosMutationVariables>): Apollo.MutationTuple<ISignInTezosMutation, Exact<{
1406
- signature: Scalars["String"];
1407
- pubkey: Scalars["String"];
1458
+ signature: string;
1459
+ pubkey: string;
1408
1460
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
1409
1461
  export type SignInTezosMutationHookResult = ReturnType<typeof useSignInTezosMutation>;
1410
1462
  export type SignInTezosMutationResult = Apollo.MutationResult<ISignInTezosMutation>;
@@ -1431,7 +1483,7 @@ export type ISignInTonMutationFn = Apollo.MutationFunction<ISignInTonMutation, I
1431
1483
  */
1432
1484
  export declare function useSignInTonMutation(baseOptions?: Apollo.MutationHookOptions<ISignInTonMutation, ISignInTonMutationVariables>): Apollo.MutationTuple<ISignInTonMutation, Exact<{
1433
1485
  request: ICheckTonProofRequest;
1434
- restore?: Maybe<Scalars["Boolean"]>;
1486
+ restore?: Maybe<boolean> | undefined;
1435
1487
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
1436
1488
  export type SignInTonMutationHookResult = ReturnType<typeof useSignInTonMutation>;
1437
1489
  export type SignInTonMutationResult = Apollo.MutationResult<ISignInTonMutation>;
@@ -1462,17 +1514,43 @@ export type IUpdateProfileMutationFn = Apollo.MutationFunction<IUpdateProfileMut
1462
1514
  * });
1463
1515
  */
1464
1516
  export declare function useUpdateProfileMutation(baseOptions?: Apollo.MutationHookOptions<IUpdateProfileMutation, IUpdateProfileMutationVariables>): Apollo.MutationTuple<IUpdateProfileMutation, Exact<{
1465
- username?: Maybe<Scalars["String"]>;
1466
- about?: Maybe<Scalars["String"]>;
1467
- facebook?: Maybe<Scalars["String"]>;
1468
- twitter?: Maybe<Scalars["String"]>;
1469
- instagram?: Maybe<Scalars["String"]>;
1470
- website?: Maybe<Scalars["String"]>;
1471
- showNsfw?: Maybe<Scalars["Boolean"]>;
1517
+ username?: Maybe<string> | undefined;
1518
+ about?: Maybe<string> | undefined;
1519
+ facebook?: Maybe<string> | undefined;
1520
+ twitter?: Maybe<string> | undefined;
1521
+ instagram?: Maybe<string> | undefined;
1522
+ website?: Maybe<string> | undefined;
1523
+ showNsfw?: Maybe<boolean> | undefined;
1472
1524
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
1473
1525
  export type UpdateProfileMutationHookResult = ReturnType<typeof useUpdateProfileMutation>;
1474
1526
  export type UpdateProfileMutationResult = Apollo.MutationResult<IUpdateProfileMutation>;
1475
1527
  export type UpdateProfileMutationOptions = Apollo.BaseMutationOptions<IUpdateProfileMutation, IUpdateProfileMutationVariables>;
1528
+ export declare const FetchAggregatedMultiversxAuditDocument: Apollo.DocumentNode;
1529
+ /**
1530
+ * __useFetchAggregatedMultiversxAuditQuery__
1531
+ *
1532
+ * To run a query within a React component, call `useFetchAggregatedMultiversxAuditQuery` and pass it any options that fit your needs.
1533
+ * When your component renders, `useFetchAggregatedMultiversxAuditQuery` returns an object from Apollo Client that contains loading, error, and data properties
1534
+ * you can use to render your UI.
1535
+ *
1536
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
1537
+ *
1538
+ * @example
1539
+ * const { data, loading, error } = useFetchAggregatedMultiversxAuditQuery({
1540
+ * variables: {
1541
+ * userId: // value for 'userId'
1542
+ * },
1543
+ * });
1544
+ */
1545
+ export declare function useFetchAggregatedMultiversxAuditQuery(baseOptions: Apollo.QueryHookOptions<IFetchAggregatedMultiversxAuditQuery, IFetchAggregatedMultiversxAuditQueryVariables>): Apollo.QueryResult<IFetchAggregatedMultiversxAuditQuery, Exact<{
1546
+ userId: string;
1547
+ }>>;
1548
+ export declare function useFetchAggregatedMultiversxAuditLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchAggregatedMultiversxAuditQuery, IFetchAggregatedMultiversxAuditQueryVariables>): Apollo.LazyQueryResultTuple<IFetchAggregatedMultiversxAuditQuery, Exact<{
1549
+ userId: string;
1550
+ }>>;
1551
+ export type FetchAggregatedMultiversxAuditQueryHookResult = ReturnType<typeof useFetchAggregatedMultiversxAuditQuery>;
1552
+ export type FetchAggregatedMultiversxAuditLazyQueryHookResult = ReturnType<typeof useFetchAggregatedMultiversxAuditLazyQuery>;
1553
+ export type FetchAggregatedMultiversxAuditQueryResult = Apollo.QueryResult<IFetchAggregatedMultiversxAuditQuery, IFetchAggregatedMultiversxAuditQueryVariables>;
1476
1554
  export declare const FetchMultiversXAuditDocument: Apollo.DocumentNode;
1477
1555
  /**
1478
1556
  * __useFetchMultiversXAuditQuery__
@@ -1491,10 +1569,10 @@ export declare const FetchMultiversXAuditDocument: Apollo.DocumentNode;
1491
1569
  * });
1492
1570
  */
1493
1571
  export declare function useFetchMultiversXAuditQuery(baseOptions: Apollo.QueryHookOptions<IFetchMultiversXAuditQuery, IFetchMultiversXAuditQueryVariables>): Apollo.QueryResult<IFetchMultiversXAuditQuery, Exact<{
1494
- wallet: Scalars["String"];
1572
+ wallet: string;
1495
1573
  }>>;
1496
1574
  export declare function useFetchMultiversXAuditLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchMultiversXAuditQuery, IFetchMultiversXAuditQueryVariables>): Apollo.LazyQueryResultTuple<IFetchMultiversXAuditQuery, Exact<{
1497
- wallet: Scalars["String"];
1575
+ wallet: string;
1498
1576
  }>>;
1499
1577
  export type FetchMultiversXAuditQueryHookResult = ReturnType<typeof useFetchMultiversXAuditQuery>;
1500
1578
  export type FetchMultiversXAuditLazyQueryHookResult = ReturnType<typeof useFetchMultiversXAuditLazyQuery>;
@@ -1542,10 +1620,10 @@ export declare const FetchProfileDocument: Apollo.DocumentNode;
1542
1620
  * });
1543
1621
  */
1544
1622
  export declare function useFetchProfileQuery(baseOptions: Apollo.QueryHookOptions<IFetchProfileQuery, IFetchProfileQueryVariables>): Apollo.QueryResult<IFetchProfileQuery, Exact<{
1545
- userId: Scalars["ID"];
1623
+ userId: string;
1546
1624
  }>>;
1547
1625
  export declare function useFetchProfileLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchProfileQuery, IFetchProfileQueryVariables>): Apollo.LazyQueryResultTuple<IFetchProfileQuery, Exact<{
1548
- userId: Scalars["ID"];
1626
+ userId: string;
1549
1627
  }>>;
1550
1628
  export type FetchProfileQueryHookResult = ReturnType<typeof useFetchProfileQuery>;
1551
1629
  export type FetchProfileLazyQueryHookResult = ReturnType<typeof useFetchProfileLazyQuery>;
@@ -1568,10 +1646,10 @@ export declare const FetchUserWalletsDocument: Apollo.DocumentNode;
1568
1646
  * });
1569
1647
  */
1570
1648
  export declare function useFetchUserWalletsQuery(baseOptions: Apollo.QueryHookOptions<IFetchUserWalletsQuery, IFetchUserWalletsQueryVariables>): Apollo.QueryResult<IFetchUserWalletsQuery, Exact<{
1571
- userId: Scalars["ID"];
1649
+ userId: string;
1572
1650
  }>>;
1573
1651
  export declare function useFetchUserWalletsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchUserWalletsQuery, IFetchUserWalletsQueryVariables>): Apollo.LazyQueryResultTuple<IFetchUserWalletsQuery, Exact<{
1574
- userId: Scalars["ID"];
1652
+ userId: string;
1575
1653
  }>>;
1576
1654
  export type FetchUserWalletsQueryHookResult = ReturnType<typeof useFetchUserWalletsQuery>;
1577
1655
  export type FetchUserWalletsLazyQueryHookResult = ReturnType<typeof useFetchUserWalletsLazyQuery>;