@ludo.ninja/api 2.8.96 → 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.
- package/build/config/index.js +3 -2
- package/build/cookies/index.d.ts +1 -1
- package/build/graphql_tools/__generated__/adminHost/schema.d.ts +34 -34
- 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 +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 +101 -65
- package/build/graphql_tools/__generated__/identityHost/schema.js +75 -33
- 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 +4 -4
- package/build/graphql_tools/__generated__/notificationsHost/schema.js +3 -3
- package/build/graphql_tools/__generated__/opportunitiesHost/schema.d.ts +7 -36
- package/build/graphql_tools/__generated__/opportunitiesHost/schema.js +11 -37
- 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 +52 -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 +1237 -587
- package/package.json +1 -1
- package/src/graphql_tools/__generated__/identityHost/schema.ts +75 -11
- package/src/graphql_tools/__generated__/opportunitiesHost/schema.ts +0 -37
- package/src/graphql_tools/__generated__/searchHost/schema.ts +4 -0
- 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
|
-
|
|
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']>;
|
|
@@ -309,6 +320,19 @@ export type IQueryFetchFollowingStatusArgs = {
|
|
|
309
320
|
export type IQueryFetchFollowingStatusesArgs = {
|
|
310
321
|
userIds: Array<Scalars['ID']>;
|
|
311
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
|
+
}
|
|
312
336
|
export declare enum IRole {
|
|
313
337
|
Admin = "admin",
|
|
314
338
|
Plain = "plain"
|
|
@@ -393,6 +417,7 @@ export type IResolversTypes = {
|
|
|
393
417
|
Profile: ResolverTypeWrapper<IProfile>;
|
|
394
418
|
Proof: IProof;
|
|
395
419
|
Query: ResolverTypeWrapper<{}>;
|
|
420
|
+
ReftypeColor: IReftypeColor;
|
|
396
421
|
Role: IRole;
|
|
397
422
|
Social: ResolverTypeWrapper<ISocial>;
|
|
398
423
|
TokenPair: ResolverTypeWrapper<ITokenPair>;
|
|
@@ -495,8 +520,9 @@ export type IIdentityResolvers<ContextType = any, ParentType extends IResolversP
|
|
|
495
520
|
role?: Resolver<IResolversTypes['Role'], ParentType, ContextType>;
|
|
496
521
|
newUser?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
497
522
|
inviteCode?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
498
|
-
|
|
523
|
+
reftypeId?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
|
499
524
|
reftypeName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
525
|
+
reftypeColor?: Resolver<Maybe<IResolversTypes['ReftypeColor']>, ParentType, ContextType>;
|
|
500
526
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
501
527
|
};
|
|
502
528
|
export type IInviteCodeResolvers<ContextType = any, ParentType extends IResolversParentTypes['InviteCode'] = IResolversParentTypes['InviteCode']> = {
|
|
@@ -573,6 +599,11 @@ export type IMyProfileV2Resolvers<ContextType = any, ParentType extends IResolve
|
|
|
573
599
|
levelMinXps?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
|
574
600
|
levelMaxXps?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
|
575
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>;
|
|
576
607
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
577
608
|
};
|
|
578
609
|
export type IProfileResolvers<ContextType = any, ParentType extends IResolversParentTypes['Profile'] = IResolversParentTypes['Profile']> = {
|
|
@@ -595,6 +626,11 @@ export type IProfileResolvers<ContextType = any, ParentType extends IResolversPa
|
|
|
595
626
|
wallets?: Resolver<Maybe<Array<Maybe<IResolversTypes['Wallet']>>>, ParentType, ContextType>;
|
|
596
627
|
xps?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
|
597
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>;
|
|
598
634
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
599
635
|
};
|
|
600
636
|
export type IQueryResolvers<ContextType = any, ParentType extends IResolversParentTypes['Query'] = IResolversParentTypes['Query']> = {
|
|
@@ -746,7 +782,7 @@ export type ISignInAdminMetamaskMutationVariables = Exact<{
|
|
|
746
782
|
chainId: Scalars['String'];
|
|
747
783
|
}>;
|
|
748
784
|
export type ISignInAdminMetamaskMutation = {
|
|
749
|
-
signInAdminMetamask: (Pick<IIdentity, 'userId' | 'wallets' | 'newUser' | 'inviteCode' | 'role'> & {
|
|
785
|
+
signInAdminMetamask: (Pick<IIdentity, 'userId' | 'wallets' | 'newUser' | 'inviteCode' | 'role' | 'reftypeId' | 'reftypeName' | 'reftypeColor'> & {
|
|
750
786
|
tokens: {
|
|
751
787
|
portalTokenPair: Pick<ITokenPair, 'authToken' | 'refreshToken'>;
|
|
752
788
|
extensionTokenPair: Pick<ITokenPair, 'authToken' | 'refreshToken'>;
|
|
@@ -758,7 +794,7 @@ export type ISignInElrondMutationVariables = Exact<{
|
|
|
758
794
|
address: Scalars['String'];
|
|
759
795
|
}>;
|
|
760
796
|
export type ISignInElrondMutation = {
|
|
761
|
-
signInElrond: (Pick<IIdentity, 'userId' | 'wallets' | 'newUser' | 'inviteCode' | 'role'> & {
|
|
797
|
+
signInElrond: (Pick<IIdentity, 'userId' | 'wallets' | 'newUser' | 'inviteCode' | 'role' | 'reftypeId' | 'reftypeName' | 'reftypeColor'> & {
|
|
762
798
|
tokens: {
|
|
763
799
|
portalTokenPair: Pick<ITokenPair, 'authToken' | 'refreshToken'>;
|
|
764
800
|
extensionTokenPair: Pick<ITokenPair, 'authToken' | 'refreshToken'>;
|
|
@@ -770,7 +806,7 @@ export type ISignInFlowMutationVariables = Exact<{
|
|
|
770
806
|
address: Scalars['String'];
|
|
771
807
|
}>;
|
|
772
808
|
export type ISignInFlowMutation = {
|
|
773
|
-
signInFlow: (Pick<IIdentity, 'userId' | 'wallets' | 'newUser' | 'inviteCode' | 'role'> & {
|
|
809
|
+
signInFlow: (Pick<IIdentity, 'userId' | 'wallets' | 'newUser' | 'inviteCode' | 'role' | 'reftypeId' | 'reftypeName' | 'reftypeColor'> & {
|
|
774
810
|
tokens: {
|
|
775
811
|
portalTokenPair: Pick<ITokenPair, 'authToken' | 'refreshToken'>;
|
|
776
812
|
extensionTokenPair: Pick<ITokenPair, 'authToken' | 'refreshToken'>;
|
|
@@ -783,7 +819,7 @@ export type ISignInMetamaskMutationVariables = Exact<{
|
|
|
783
819
|
chainId: Scalars['String'];
|
|
784
820
|
}>;
|
|
785
821
|
export type ISignInMetamaskMutation = {
|
|
786
|
-
signInMetamask: (Pick<IIdentity, 'userId' | 'wallets' | 'newUser' | 'inviteCode' | 'role'> & {
|
|
822
|
+
signInMetamask: (Pick<IIdentity, 'userId' | 'wallets' | 'newUser' | 'inviteCode' | 'role' | 'reftypeId' | 'reftypeName' | 'reftypeColor'> & {
|
|
787
823
|
tokens: {
|
|
788
824
|
portalTokenPair: Pick<ITokenPair, 'authToken' | 'refreshToken'>;
|
|
789
825
|
extensionTokenPair: Pick<ITokenPair, 'authToken' | 'refreshToken'>;
|
|
@@ -795,7 +831,7 @@ export type ISignInSolanaMutationVariables = Exact<{
|
|
|
795
831
|
pubkey: Scalars['String'];
|
|
796
832
|
}>;
|
|
797
833
|
export type ISignInSolanaMutation = {
|
|
798
|
-
signInSolana: (Pick<IIdentity, 'userId' | 'wallets' | 'newUser' | 'inviteCode' | 'role'> & {
|
|
834
|
+
signInSolana: (Pick<IIdentity, 'userId' | 'wallets' | 'newUser' | 'inviteCode' | 'role' | 'reftypeId' | 'reftypeName' | 'reftypeColor'> & {
|
|
799
835
|
tokens: {
|
|
800
836
|
portalTokenPair: Pick<ITokenPair, 'authToken' | 'refreshToken'>;
|
|
801
837
|
extensionTokenPair: Pick<ITokenPair, 'authToken' | 'refreshToken'>;
|
|
@@ -807,7 +843,7 @@ export type ISignInTezosMutationVariables = Exact<{
|
|
|
807
843
|
pubkey: Scalars['String'];
|
|
808
844
|
}>;
|
|
809
845
|
export type ISignInTezosMutation = {
|
|
810
|
-
signInTezos: (Pick<IIdentity, 'userId' | 'wallets' | 'newUser' | 'inviteCode' | 'role'> & {
|
|
846
|
+
signInTezos: (Pick<IIdentity, 'userId' | 'wallets' | 'newUser' | 'inviteCode' | 'role' | 'reftypeId' | 'reftypeName' | 'reftypeColor'> & {
|
|
811
847
|
tokens: {
|
|
812
848
|
portalTokenPair: Pick<ITokenPair, 'authToken' | 'refreshToken'>;
|
|
813
849
|
extensionTokenPair: Pick<ITokenPair, 'authToken' | 'refreshToken'>;
|
|
@@ -819,7 +855,7 @@ export type ISignInTonMutationVariables = Exact<{
|
|
|
819
855
|
restore?: Maybe<Scalars['Boolean']>;
|
|
820
856
|
}>;
|
|
821
857
|
export type ISignInTonMutation = {
|
|
822
|
-
signInTon: (Pick<IIdentity, 'userId' | 'wallets' | 'newUser' | 'inviteCode' | 'role'> & {
|
|
858
|
+
signInTon: (Pick<IIdentity, 'userId' | 'wallets' | 'newUser' | 'inviteCode' | 'role' | 'reftypeId' | 'reftypeName' | 'reftypeColor'> & {
|
|
823
859
|
tokens: {
|
|
824
860
|
portalTokenPair: Pick<ITokenPair, 'authToken' | 'refreshToken'>;
|
|
825
861
|
extensionTokenPair: Pick<ITokenPair, 'authToken' | 'refreshToken'>;
|
|
@@ -862,7 +898,7 @@ export type IFetchMyProfileV2QueryVariables = Exact<{
|
|
|
862
898
|
[key: string]: never;
|
|
863
899
|
}>;
|
|
864
900
|
export type IFetchMyProfileV2Query = {
|
|
865
|
-
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'> & {
|
|
866
902
|
social?: Maybe<Pick<ISocial, 'facebook' | 'twitter' | 'instagram' | 'website'>>;
|
|
867
903
|
wallets?: Maybe<Array<Maybe<Pick<IWallet, 'userId' | 'address' | 'walletName' | 'blockchain' | 'chainId'>>>>;
|
|
868
904
|
inviteCodes?: Maybe<Array<Maybe<(Pick<IInviteCode, 'inviteCode' | 'isUsed' | 'maxUsagesLimit' | 'codeUsersNum'> & {
|
|
@@ -874,7 +910,7 @@ export type IFetchProfileQueryVariables = Exact<{
|
|
|
874
910
|
userId: Scalars['ID'];
|
|
875
911
|
}>;
|
|
876
912
|
export type IFetchProfileQuery = {
|
|
877
|
-
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'> & {
|
|
878
914
|
social?: Maybe<Pick<ISocial, 'facebook' | 'twitter' | 'instagram' | 'website'>>;
|
|
879
915
|
wallets?: Maybe<Array<Maybe<Pick<IWallet, 'userId' | 'address' | 'walletName' | 'blockchain' | 'chainId'>>>>;
|
|
880
916
|
});
|
|
@@ -906,8 +942,8 @@ export type IAddWalletElrondMutationFn = Apollo.MutationFunction<IAddWalletElron
|
|
|
906
942
|
* });
|
|
907
943
|
*/
|
|
908
944
|
export declare function useAddWalletElrondMutation(baseOptions?: Apollo.MutationHookOptions<IAddWalletElrondMutation, IAddWalletElrondMutationVariables>): Apollo.MutationTuple<IAddWalletElrondMutation, Exact<{
|
|
909
|
-
signature:
|
|
910
|
-
address:
|
|
945
|
+
signature: string;
|
|
946
|
+
address: string;
|
|
911
947
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
912
948
|
export type AddWalletElrondMutationHookResult = ReturnType<typeof useAddWalletElrondMutation>;
|
|
913
949
|
export type AddWalletElrondMutationResult = Apollo.MutationResult<IAddWalletElrondMutation>;
|
|
@@ -933,8 +969,8 @@ export type IAddWalletFlowMutationFn = Apollo.MutationFunction<IAddWalletFlowMut
|
|
|
933
969
|
* });
|
|
934
970
|
*/
|
|
935
971
|
export declare function useAddWalletFlowMutation(baseOptions?: Apollo.MutationHookOptions<IAddWalletFlowMutation, IAddWalletFlowMutationVariables>): Apollo.MutationTuple<IAddWalletFlowMutation, Exact<{
|
|
936
|
-
signature:
|
|
937
|
-
address:
|
|
972
|
+
signature: string;
|
|
973
|
+
address: string;
|
|
938
974
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
939
975
|
export type AddWalletFlowMutationHookResult = ReturnType<typeof useAddWalletFlowMutation>;
|
|
940
976
|
export type AddWalletFlowMutationResult = Apollo.MutationResult<IAddWalletFlowMutation>;
|
|
@@ -961,9 +997,9 @@ export type IAddWalletMetamaskMutationFn = Apollo.MutationFunction<IAddWalletMet
|
|
|
961
997
|
* });
|
|
962
998
|
*/
|
|
963
999
|
export declare function useAddWalletMetamaskMutation(baseOptions?: Apollo.MutationHookOptions<IAddWalletMetamaskMutation, IAddWalletMetamaskMutationVariables>): Apollo.MutationTuple<IAddWalletMetamaskMutation, Exact<{
|
|
964
|
-
signature:
|
|
965
|
-
address:
|
|
966
|
-
chainId:
|
|
1000
|
+
signature: string;
|
|
1001
|
+
address: string;
|
|
1002
|
+
chainId: string;
|
|
967
1003
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
968
1004
|
export type AddWalletMetamaskMutationHookResult = ReturnType<typeof useAddWalletMetamaskMutation>;
|
|
969
1005
|
export type AddWalletMetamaskMutationResult = Apollo.MutationResult<IAddWalletMetamaskMutation>;
|
|
@@ -989,8 +1025,8 @@ export type IAddWalletSolanaMutationFn = Apollo.MutationFunction<IAddWalletSolan
|
|
|
989
1025
|
* });
|
|
990
1026
|
*/
|
|
991
1027
|
export declare function useAddWalletSolanaMutation(baseOptions?: Apollo.MutationHookOptions<IAddWalletSolanaMutation, IAddWalletSolanaMutationVariables>): Apollo.MutationTuple<IAddWalletSolanaMutation, Exact<{
|
|
992
|
-
signature:
|
|
993
|
-
pubkey:
|
|
1028
|
+
signature: string;
|
|
1029
|
+
pubkey: string;
|
|
994
1030
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
995
1031
|
export type AddWalletSolanaMutationHookResult = ReturnType<typeof useAddWalletSolanaMutation>;
|
|
996
1032
|
export type AddWalletSolanaMutationResult = Apollo.MutationResult<IAddWalletSolanaMutation>;
|
|
@@ -1016,8 +1052,8 @@ export type IAddWalletTezosMutationFn = Apollo.MutationFunction<IAddWalletTezosM
|
|
|
1016
1052
|
* });
|
|
1017
1053
|
*/
|
|
1018
1054
|
export declare function useAddWalletTezosMutation(baseOptions?: Apollo.MutationHookOptions<IAddWalletTezosMutation, IAddWalletTezosMutationVariables>): Apollo.MutationTuple<IAddWalletTezosMutation, Exact<{
|
|
1019
|
-
signature:
|
|
1020
|
-
pubkey:
|
|
1055
|
+
signature: string;
|
|
1056
|
+
pubkey: string;
|
|
1021
1057
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1022
1058
|
export type AddWalletTezosMutationHookResult = ReturnType<typeof useAddWalletTezosMutation>;
|
|
1023
1059
|
export type AddWalletTezosMutationResult = Apollo.MutationResult<IAddWalletTezosMutation>;
|
|
@@ -1093,9 +1129,9 @@ export type ICreateNonceMutationFn = Apollo.MutationFunction<ICreateNonceMutatio
|
|
|
1093
1129
|
* });
|
|
1094
1130
|
*/
|
|
1095
1131
|
export declare function useCreateNonceMutation(baseOptions?: Apollo.MutationHookOptions<ICreateNonceMutation, ICreateNonceMutationVariables>): Apollo.MutationTuple<ICreateNonceMutation, Exact<{
|
|
1096
|
-
address:
|
|
1097
|
-
blockchain:
|
|
1098
|
-
chainId?: Maybe<
|
|
1132
|
+
address: string;
|
|
1133
|
+
blockchain: string;
|
|
1134
|
+
chainId?: Maybe<string> | undefined;
|
|
1099
1135
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1100
1136
|
export type CreateNonceMutationHookResult = ReturnType<typeof useCreateNonceMutation>;
|
|
1101
1137
|
export type CreateNonceMutationResult = Apollo.MutationResult<ICreateNonceMutation>;
|
|
@@ -1144,7 +1180,7 @@ export type IGenerateNewInviteCodesMutationFn = Apollo.MutationFunction<IGenerat
|
|
|
1144
1180
|
* });
|
|
1145
1181
|
*/
|
|
1146
1182
|
export declare function useGenerateNewInviteCodesMutation(baseOptions?: Apollo.MutationHookOptions<IGenerateNewInviteCodesMutation, IGenerateNewInviteCodesMutationVariables>): Apollo.MutationTuple<IGenerateNewInviteCodesMutation, Exact<{
|
|
1147
|
-
codesNum:
|
|
1183
|
+
codesNum: number;
|
|
1148
1184
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1149
1185
|
export type GenerateNewInviteCodesMutationHookResult = ReturnType<typeof useGenerateNewInviteCodesMutation>;
|
|
1150
1186
|
export type GenerateNewInviteCodesMutationResult = Apollo.MutationResult<IGenerateNewInviteCodesMutation>;
|
|
@@ -1169,7 +1205,7 @@ export type IUseInviteCodeMutationFn = Apollo.MutationFunction<IUseInviteCodeMut
|
|
|
1169
1205
|
* });
|
|
1170
1206
|
*/
|
|
1171
1207
|
export declare function useUseInviteCodeMutation(baseOptions?: Apollo.MutationHookOptions<IUseInviteCodeMutation, IUseInviteCodeMutationVariables>): Apollo.MutationTuple<IUseInviteCodeMutation, Exact<{
|
|
1172
|
-
inviteCode:
|
|
1208
|
+
inviteCode: string;
|
|
1173
1209
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1174
1210
|
export type UseInviteCodeMutationHookResult = ReturnType<typeof useUseInviteCodeMutation>;
|
|
1175
1211
|
export type UseInviteCodeMutationResult = Apollo.MutationResult<IUseInviteCodeMutation>;
|
|
@@ -1196,9 +1232,9 @@ export type IRemoveWalletMutationFn = Apollo.MutationFunction<IRemoveWalletMutat
|
|
|
1196
1232
|
* });
|
|
1197
1233
|
*/
|
|
1198
1234
|
export declare function useRemoveWalletMutation(baseOptions?: Apollo.MutationHookOptions<IRemoveWalletMutation, IRemoveWalletMutationVariables>): Apollo.MutationTuple<IRemoveWalletMutation, Exact<{
|
|
1199
|
-
blockchain:
|
|
1200
|
-
address:
|
|
1201
|
-
chainId?: Maybe<
|
|
1235
|
+
blockchain: string;
|
|
1236
|
+
address: string;
|
|
1237
|
+
chainId?: Maybe<string> | undefined;
|
|
1202
1238
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1203
1239
|
export type RemoveWalletMutationHookResult = ReturnType<typeof useRemoveWalletMutation>;
|
|
1204
1240
|
export type RemoveWalletMutationResult = Apollo.MutationResult<IRemoveWalletMutation>;
|
|
@@ -1224,8 +1260,8 @@ export type ISaveEmailOfJoinerMutationFn = Apollo.MutationFunction<ISaveEmailOfJ
|
|
|
1224
1260
|
* });
|
|
1225
1261
|
*/
|
|
1226
1262
|
export declare function useSaveEmailOfJoinerMutation(baseOptions?: Apollo.MutationHookOptions<ISaveEmailOfJoinerMutation, ISaveEmailOfJoinerMutationVariables>): Apollo.MutationTuple<ISaveEmailOfJoinerMutation, Exact<{
|
|
1227
|
-
email:
|
|
1228
|
-
isSubscribed:
|
|
1263
|
+
email: string;
|
|
1264
|
+
isSubscribed: boolean;
|
|
1229
1265
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1230
1266
|
export type SaveEmailOfJoinerMutationHookResult = ReturnType<typeof useSaveEmailOfJoinerMutation>;
|
|
1231
1267
|
export type SaveEmailOfJoinerMutationResult = Apollo.MutationResult<ISaveEmailOfJoinerMutation>;
|
|
@@ -1252,9 +1288,9 @@ export type ISetMainWalletMutationFn = Apollo.MutationFunction<ISetMainWalletMut
|
|
|
1252
1288
|
* });
|
|
1253
1289
|
*/
|
|
1254
1290
|
export declare function useSetMainWalletMutation(baseOptions?: Apollo.MutationHookOptions<ISetMainWalletMutation, ISetMainWalletMutationVariables>): Apollo.MutationTuple<ISetMainWalletMutation, Exact<{
|
|
1255
|
-
blockchain:
|
|
1256
|
-
address:
|
|
1257
|
-
chainId?: Maybe<
|
|
1291
|
+
blockchain: string;
|
|
1292
|
+
address: string;
|
|
1293
|
+
chainId?: Maybe<string> | undefined;
|
|
1258
1294
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1259
1295
|
export type SetMainWalletMutationHookResult = ReturnType<typeof useSetMainWalletMutation>;
|
|
1260
1296
|
export type SetMainWalletMutationResult = Apollo.MutationResult<ISetMainWalletMutation>;
|
|
@@ -1281,9 +1317,9 @@ export type ISignInAdminMetamaskMutationFn = Apollo.MutationFunction<ISignInAdmi
|
|
|
1281
1317
|
* });
|
|
1282
1318
|
*/
|
|
1283
1319
|
export declare function useSignInAdminMetamaskMutation(baseOptions?: Apollo.MutationHookOptions<ISignInAdminMetamaskMutation, ISignInAdminMetamaskMutationVariables>): Apollo.MutationTuple<ISignInAdminMetamaskMutation, Exact<{
|
|
1284
|
-
signature:
|
|
1285
|
-
address:
|
|
1286
|
-
chainId:
|
|
1320
|
+
signature: string;
|
|
1321
|
+
address: string;
|
|
1322
|
+
chainId: string;
|
|
1287
1323
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1288
1324
|
export type SignInAdminMetamaskMutationHookResult = ReturnType<typeof useSignInAdminMetamaskMutation>;
|
|
1289
1325
|
export type SignInAdminMetamaskMutationResult = Apollo.MutationResult<ISignInAdminMetamaskMutation>;
|
|
@@ -1309,8 +1345,8 @@ export type ISignInElrondMutationFn = Apollo.MutationFunction<ISignInElrondMutat
|
|
|
1309
1345
|
* });
|
|
1310
1346
|
*/
|
|
1311
1347
|
export declare function useSignInElrondMutation(baseOptions?: Apollo.MutationHookOptions<ISignInElrondMutation, ISignInElrondMutationVariables>): Apollo.MutationTuple<ISignInElrondMutation, Exact<{
|
|
1312
|
-
signature:
|
|
1313
|
-
address:
|
|
1348
|
+
signature: string;
|
|
1349
|
+
address: string;
|
|
1314
1350
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1315
1351
|
export type SignInElrondMutationHookResult = ReturnType<typeof useSignInElrondMutation>;
|
|
1316
1352
|
export type SignInElrondMutationResult = Apollo.MutationResult<ISignInElrondMutation>;
|
|
@@ -1336,8 +1372,8 @@ export type ISignInFlowMutationFn = Apollo.MutationFunction<ISignInFlowMutation,
|
|
|
1336
1372
|
* });
|
|
1337
1373
|
*/
|
|
1338
1374
|
export declare function useSignInFlowMutation(baseOptions?: Apollo.MutationHookOptions<ISignInFlowMutation, ISignInFlowMutationVariables>): Apollo.MutationTuple<ISignInFlowMutation, Exact<{
|
|
1339
|
-
signature:
|
|
1340
|
-
address:
|
|
1375
|
+
signature: string;
|
|
1376
|
+
address: string;
|
|
1341
1377
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1342
1378
|
export type SignInFlowMutationHookResult = ReturnType<typeof useSignInFlowMutation>;
|
|
1343
1379
|
export type SignInFlowMutationResult = Apollo.MutationResult<ISignInFlowMutation>;
|
|
@@ -1364,9 +1400,9 @@ export type ISignInMetamaskMutationFn = Apollo.MutationFunction<ISignInMetamaskM
|
|
|
1364
1400
|
* });
|
|
1365
1401
|
*/
|
|
1366
1402
|
export declare function useSignInMetamaskMutation(baseOptions?: Apollo.MutationHookOptions<ISignInMetamaskMutation, ISignInMetamaskMutationVariables>): Apollo.MutationTuple<ISignInMetamaskMutation, Exact<{
|
|
1367
|
-
signature:
|
|
1368
|
-
address:
|
|
1369
|
-
chainId:
|
|
1403
|
+
signature: string;
|
|
1404
|
+
address: string;
|
|
1405
|
+
chainId: string;
|
|
1370
1406
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1371
1407
|
export type SignInMetamaskMutationHookResult = ReturnType<typeof useSignInMetamaskMutation>;
|
|
1372
1408
|
export type SignInMetamaskMutationResult = Apollo.MutationResult<ISignInMetamaskMutation>;
|
|
@@ -1392,8 +1428,8 @@ export type ISignInSolanaMutationFn = Apollo.MutationFunction<ISignInSolanaMutat
|
|
|
1392
1428
|
* });
|
|
1393
1429
|
*/
|
|
1394
1430
|
export declare function useSignInSolanaMutation(baseOptions?: Apollo.MutationHookOptions<ISignInSolanaMutation, ISignInSolanaMutationVariables>): Apollo.MutationTuple<ISignInSolanaMutation, Exact<{
|
|
1395
|
-
signature:
|
|
1396
|
-
pubkey:
|
|
1431
|
+
signature: string;
|
|
1432
|
+
pubkey: string;
|
|
1397
1433
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1398
1434
|
export type SignInSolanaMutationHookResult = ReturnType<typeof useSignInSolanaMutation>;
|
|
1399
1435
|
export type SignInSolanaMutationResult = Apollo.MutationResult<ISignInSolanaMutation>;
|
|
@@ -1419,8 +1455,8 @@ export type ISignInTezosMutationFn = Apollo.MutationFunction<ISignInTezosMutatio
|
|
|
1419
1455
|
* });
|
|
1420
1456
|
*/
|
|
1421
1457
|
export declare function useSignInTezosMutation(baseOptions?: Apollo.MutationHookOptions<ISignInTezosMutation, ISignInTezosMutationVariables>): Apollo.MutationTuple<ISignInTezosMutation, Exact<{
|
|
1422
|
-
signature:
|
|
1423
|
-
pubkey:
|
|
1458
|
+
signature: string;
|
|
1459
|
+
pubkey: string;
|
|
1424
1460
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1425
1461
|
export type SignInTezosMutationHookResult = ReturnType<typeof useSignInTezosMutation>;
|
|
1426
1462
|
export type SignInTezosMutationResult = Apollo.MutationResult<ISignInTezosMutation>;
|
|
@@ -1447,7 +1483,7 @@ export type ISignInTonMutationFn = Apollo.MutationFunction<ISignInTonMutation, I
|
|
|
1447
1483
|
*/
|
|
1448
1484
|
export declare function useSignInTonMutation(baseOptions?: Apollo.MutationHookOptions<ISignInTonMutation, ISignInTonMutationVariables>): Apollo.MutationTuple<ISignInTonMutation, Exact<{
|
|
1449
1485
|
request: ICheckTonProofRequest;
|
|
1450
|
-
restore?: Maybe<
|
|
1486
|
+
restore?: Maybe<boolean> | undefined;
|
|
1451
1487
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1452
1488
|
export type SignInTonMutationHookResult = ReturnType<typeof useSignInTonMutation>;
|
|
1453
1489
|
export type SignInTonMutationResult = Apollo.MutationResult<ISignInTonMutation>;
|
|
@@ -1478,13 +1514,13 @@ export type IUpdateProfileMutationFn = Apollo.MutationFunction<IUpdateProfileMut
|
|
|
1478
1514
|
* });
|
|
1479
1515
|
*/
|
|
1480
1516
|
export declare function useUpdateProfileMutation(baseOptions?: Apollo.MutationHookOptions<IUpdateProfileMutation, IUpdateProfileMutationVariables>): Apollo.MutationTuple<IUpdateProfileMutation, Exact<{
|
|
1481
|
-
username?: Maybe<
|
|
1482
|
-
about?: Maybe<
|
|
1483
|
-
facebook?: Maybe<
|
|
1484
|
-
twitter?: Maybe<
|
|
1485
|
-
instagram?: Maybe<
|
|
1486
|
-
website?: Maybe<
|
|
1487
|
-
showNsfw?: Maybe<
|
|
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;
|
|
1488
1524
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1489
1525
|
export type UpdateProfileMutationHookResult = ReturnType<typeof useUpdateProfileMutation>;
|
|
1490
1526
|
export type UpdateProfileMutationResult = Apollo.MutationResult<IUpdateProfileMutation>;
|
|
@@ -1507,10 +1543,10 @@ export declare const FetchAggregatedMultiversxAuditDocument: Apollo.DocumentNode
|
|
|
1507
1543
|
* });
|
|
1508
1544
|
*/
|
|
1509
1545
|
export declare function useFetchAggregatedMultiversxAuditQuery(baseOptions: Apollo.QueryHookOptions<IFetchAggregatedMultiversxAuditQuery, IFetchAggregatedMultiversxAuditQueryVariables>): Apollo.QueryResult<IFetchAggregatedMultiversxAuditQuery, Exact<{
|
|
1510
|
-
userId:
|
|
1546
|
+
userId: string;
|
|
1511
1547
|
}>>;
|
|
1512
1548
|
export declare function useFetchAggregatedMultiversxAuditLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchAggregatedMultiversxAuditQuery, IFetchAggregatedMultiversxAuditQueryVariables>): Apollo.LazyQueryResultTuple<IFetchAggregatedMultiversxAuditQuery, Exact<{
|
|
1513
|
-
userId:
|
|
1549
|
+
userId: string;
|
|
1514
1550
|
}>>;
|
|
1515
1551
|
export type FetchAggregatedMultiversxAuditQueryHookResult = ReturnType<typeof useFetchAggregatedMultiversxAuditQuery>;
|
|
1516
1552
|
export type FetchAggregatedMultiversxAuditLazyQueryHookResult = ReturnType<typeof useFetchAggregatedMultiversxAuditLazyQuery>;
|
|
@@ -1533,10 +1569,10 @@ export declare const FetchMultiversXAuditDocument: Apollo.DocumentNode;
|
|
|
1533
1569
|
* });
|
|
1534
1570
|
*/
|
|
1535
1571
|
export declare function useFetchMultiversXAuditQuery(baseOptions: Apollo.QueryHookOptions<IFetchMultiversXAuditQuery, IFetchMultiversXAuditQueryVariables>): Apollo.QueryResult<IFetchMultiversXAuditQuery, Exact<{
|
|
1536
|
-
wallet:
|
|
1572
|
+
wallet: string;
|
|
1537
1573
|
}>>;
|
|
1538
1574
|
export declare function useFetchMultiversXAuditLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchMultiversXAuditQuery, IFetchMultiversXAuditQueryVariables>): Apollo.LazyQueryResultTuple<IFetchMultiversXAuditQuery, Exact<{
|
|
1539
|
-
wallet:
|
|
1575
|
+
wallet: string;
|
|
1540
1576
|
}>>;
|
|
1541
1577
|
export type FetchMultiversXAuditQueryHookResult = ReturnType<typeof useFetchMultiversXAuditQuery>;
|
|
1542
1578
|
export type FetchMultiversXAuditLazyQueryHookResult = ReturnType<typeof useFetchMultiversXAuditLazyQuery>;
|
|
@@ -1584,10 +1620,10 @@ export declare const FetchProfileDocument: Apollo.DocumentNode;
|
|
|
1584
1620
|
* });
|
|
1585
1621
|
*/
|
|
1586
1622
|
export declare function useFetchProfileQuery(baseOptions: Apollo.QueryHookOptions<IFetchProfileQuery, IFetchProfileQueryVariables>): Apollo.QueryResult<IFetchProfileQuery, Exact<{
|
|
1587
|
-
userId:
|
|
1623
|
+
userId: string;
|
|
1588
1624
|
}>>;
|
|
1589
1625
|
export declare function useFetchProfileLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchProfileQuery, IFetchProfileQueryVariables>): Apollo.LazyQueryResultTuple<IFetchProfileQuery, Exact<{
|
|
1590
|
-
userId:
|
|
1626
|
+
userId: string;
|
|
1591
1627
|
}>>;
|
|
1592
1628
|
export type FetchProfileQueryHookResult = ReturnType<typeof useFetchProfileQuery>;
|
|
1593
1629
|
export type FetchProfileLazyQueryHookResult = ReturnType<typeof useFetchProfileLazyQuery>;
|
|
@@ -1610,10 +1646,10 @@ export declare const FetchUserWalletsDocument: Apollo.DocumentNode;
|
|
|
1610
1646
|
* });
|
|
1611
1647
|
*/
|
|
1612
1648
|
export declare function useFetchUserWalletsQuery(baseOptions: Apollo.QueryHookOptions<IFetchUserWalletsQuery, IFetchUserWalletsQueryVariables>): Apollo.QueryResult<IFetchUserWalletsQuery, Exact<{
|
|
1613
|
-
userId:
|
|
1649
|
+
userId: string;
|
|
1614
1650
|
}>>;
|
|
1615
1651
|
export declare function useFetchUserWalletsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchUserWalletsQuery, IFetchUserWalletsQueryVariables>): Apollo.LazyQueryResultTuple<IFetchUserWalletsQuery, Exact<{
|
|
1616
|
-
userId:
|
|
1652
|
+
userId: string;
|
|
1617
1653
|
}>>;
|
|
1618
1654
|
export type FetchUserWalletsQueryHookResult = ReturnType<typeof useFetchUserWalletsQuery>;
|
|
1619
1655
|
export type FetchUserWalletsLazyQueryHookResult = ReturnType<typeof useFetchUserWalletsLazyQuery>;
|