@ludo.ninja/api 2.8.88 → 2.8.90
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/config/index.js +3 -2
- package/build/cookies/index.d.ts +1 -1
- package/build/graphql_tools/__generated__/adminHost/schema.d.ts +33 -33
- package/build/graphql_tools/__generated__/adminHost/schema.js +68 -66
- package/build/graphql_tools/__generated__/assetsHost/schema.d.ts +2 -2
- package/build/graphql_tools/__generated__/assetsHost/schema.js +3 -3
- package/build/graphql_tools/__generated__/authHost/schema.d.ts +2 -2
- package/build/graphql_tools/__generated__/authHost/schema.js +3 -3
- package/build/graphql_tools/__generated__/collectionsHost/schema.d.ts +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 +56 -52
- package/build/graphql_tools/__generated__/identityHost/schema.js +32 -31
- package/build/graphql_tools/__generated__/mediasHost/schema.d.ts +5 -5
- package/build/graphql_tools/__generated__/mediasHost/schema.js +5 -5
- package/build/graphql_tools/__generated__/notificationsHost/schema.d.ts +4 -4
- package/build/graphql_tools/__generated__/notificationsHost/schema.js +3 -3
- package/build/graphql_tools/__generated__/opportunitiesHost/schema.d.ts +7 -7
- package/build/graphql_tools/__generated__/opportunitiesHost/schema.js +11 -11
- package/build/graphql_tools/__generated__/preferencesHost/schema.d.ts +2 -2
- package/build/graphql_tools/__generated__/preferencesHost/schema.js +23 -23
- package/build/graphql_tools/__generated__/searchHost/schema.d.ts +48 -48
- package/build/graphql_tools/__generated__/searchHost/schema.js +33 -33
- package/build/graphql_tools/__generated__/tapHost/schema.d.ts +20 -10
- package/build/graphql_tools/__generated__/tapHost/schema.js +22 -12
- package/build/index.d.ts +1222 -573
- package/package.json +1 -1
- package/src/graphql_tools/__generated__/identityHost/schema.ts +4 -0
- package/src/graphql_tools/__generated__/tapHost/schema.ts +22 -2
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -71,6 +71,8 @@ export type IIdentity = {
|
|
|
71
71
|
role: IRole;
|
|
72
72
|
newUser?: Maybe<Scalars['Boolean']>;
|
|
73
73
|
inviteCode?: Maybe<Scalars['String']>;
|
|
74
|
+
refypeId?: Maybe<Scalars['ID']>;
|
|
75
|
+
reftypeName?: Maybe<Scalars['String']>;
|
|
74
76
|
};
|
|
75
77
|
export type IInputProfile = {
|
|
76
78
|
username?: Maybe<Scalars['String']>;
|
|
@@ -489,6 +491,8 @@ export type IIdentityResolvers<ContextType = any, ParentType extends IResolversP
|
|
|
489
491
|
role?: Resolver<IResolversTypes['Role'], ParentType, ContextType>;
|
|
490
492
|
newUser?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
491
493
|
inviteCode?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
494
|
+
refypeId?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
|
495
|
+
reftypeName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
492
496
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
493
497
|
};
|
|
494
498
|
export type IInviteCodeResolvers<ContextType = any, ParentType extends IResolversParentTypes['InviteCode'] = IResolversParentTypes['InviteCode']> = {
|
|
@@ -886,8 +890,8 @@ export type IAddWalletElrondMutationFn = Apollo.MutationFunction<IAddWalletElron
|
|
|
886
890
|
* });
|
|
887
891
|
*/
|
|
888
892
|
export declare function useAddWalletElrondMutation(baseOptions?: Apollo.MutationHookOptions<IAddWalletElrondMutation, IAddWalletElrondMutationVariables>): Apollo.MutationTuple<IAddWalletElrondMutation, Exact<{
|
|
889
|
-
signature:
|
|
890
|
-
address:
|
|
893
|
+
signature: string;
|
|
894
|
+
address: string;
|
|
891
895
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
892
896
|
export type AddWalletElrondMutationHookResult = ReturnType<typeof useAddWalletElrondMutation>;
|
|
893
897
|
export type AddWalletElrondMutationResult = Apollo.MutationResult<IAddWalletElrondMutation>;
|
|
@@ -913,8 +917,8 @@ export type IAddWalletFlowMutationFn = Apollo.MutationFunction<IAddWalletFlowMut
|
|
|
913
917
|
* });
|
|
914
918
|
*/
|
|
915
919
|
export declare function useAddWalletFlowMutation(baseOptions?: Apollo.MutationHookOptions<IAddWalletFlowMutation, IAddWalletFlowMutationVariables>): Apollo.MutationTuple<IAddWalletFlowMutation, Exact<{
|
|
916
|
-
signature:
|
|
917
|
-
address:
|
|
920
|
+
signature: string;
|
|
921
|
+
address: string;
|
|
918
922
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
919
923
|
export type AddWalletFlowMutationHookResult = ReturnType<typeof useAddWalletFlowMutation>;
|
|
920
924
|
export type AddWalletFlowMutationResult = Apollo.MutationResult<IAddWalletFlowMutation>;
|
|
@@ -941,9 +945,9 @@ export type IAddWalletMetamaskMutationFn = Apollo.MutationFunction<IAddWalletMet
|
|
|
941
945
|
* });
|
|
942
946
|
*/
|
|
943
947
|
export declare function useAddWalletMetamaskMutation(baseOptions?: Apollo.MutationHookOptions<IAddWalletMetamaskMutation, IAddWalletMetamaskMutationVariables>): Apollo.MutationTuple<IAddWalletMetamaskMutation, Exact<{
|
|
944
|
-
signature:
|
|
945
|
-
address:
|
|
946
|
-
chainId:
|
|
948
|
+
signature: string;
|
|
949
|
+
address: string;
|
|
950
|
+
chainId: string;
|
|
947
951
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
948
952
|
export type AddWalletMetamaskMutationHookResult = ReturnType<typeof useAddWalletMetamaskMutation>;
|
|
949
953
|
export type AddWalletMetamaskMutationResult = Apollo.MutationResult<IAddWalletMetamaskMutation>;
|
|
@@ -969,8 +973,8 @@ export type IAddWalletSolanaMutationFn = Apollo.MutationFunction<IAddWalletSolan
|
|
|
969
973
|
* });
|
|
970
974
|
*/
|
|
971
975
|
export declare function useAddWalletSolanaMutation(baseOptions?: Apollo.MutationHookOptions<IAddWalletSolanaMutation, IAddWalletSolanaMutationVariables>): Apollo.MutationTuple<IAddWalletSolanaMutation, Exact<{
|
|
972
|
-
signature:
|
|
973
|
-
pubkey:
|
|
976
|
+
signature: string;
|
|
977
|
+
pubkey: string;
|
|
974
978
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
975
979
|
export type AddWalletSolanaMutationHookResult = ReturnType<typeof useAddWalletSolanaMutation>;
|
|
976
980
|
export type AddWalletSolanaMutationResult = Apollo.MutationResult<IAddWalletSolanaMutation>;
|
|
@@ -996,8 +1000,8 @@ export type IAddWalletTezosMutationFn = Apollo.MutationFunction<IAddWalletTezosM
|
|
|
996
1000
|
* });
|
|
997
1001
|
*/
|
|
998
1002
|
export declare function useAddWalletTezosMutation(baseOptions?: Apollo.MutationHookOptions<IAddWalletTezosMutation, IAddWalletTezosMutationVariables>): Apollo.MutationTuple<IAddWalletTezosMutation, Exact<{
|
|
999
|
-
signature:
|
|
1000
|
-
pubkey:
|
|
1003
|
+
signature: string;
|
|
1004
|
+
pubkey: string;
|
|
1001
1005
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1002
1006
|
export type AddWalletTezosMutationHookResult = ReturnType<typeof useAddWalletTezosMutation>;
|
|
1003
1007
|
export type AddWalletTezosMutationResult = Apollo.MutationResult<IAddWalletTezosMutation>;
|
|
@@ -1073,9 +1077,9 @@ export type ICreateNonceMutationFn = Apollo.MutationFunction<ICreateNonceMutatio
|
|
|
1073
1077
|
* });
|
|
1074
1078
|
*/
|
|
1075
1079
|
export declare function useCreateNonceMutation(baseOptions?: Apollo.MutationHookOptions<ICreateNonceMutation, ICreateNonceMutationVariables>): Apollo.MutationTuple<ICreateNonceMutation, Exact<{
|
|
1076
|
-
address:
|
|
1077
|
-
blockchain:
|
|
1078
|
-
chainId?: Maybe<
|
|
1080
|
+
address: string;
|
|
1081
|
+
blockchain: string;
|
|
1082
|
+
chainId?: Maybe<string> | undefined;
|
|
1079
1083
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1080
1084
|
export type CreateNonceMutationHookResult = ReturnType<typeof useCreateNonceMutation>;
|
|
1081
1085
|
export type CreateNonceMutationResult = Apollo.MutationResult<ICreateNonceMutation>;
|
|
@@ -1124,7 +1128,7 @@ export type IGenerateNewInviteCodesMutationFn = Apollo.MutationFunction<IGenerat
|
|
|
1124
1128
|
* });
|
|
1125
1129
|
*/
|
|
1126
1130
|
export declare function useGenerateNewInviteCodesMutation(baseOptions?: Apollo.MutationHookOptions<IGenerateNewInviteCodesMutation, IGenerateNewInviteCodesMutationVariables>): Apollo.MutationTuple<IGenerateNewInviteCodesMutation, Exact<{
|
|
1127
|
-
codesNum:
|
|
1131
|
+
codesNum: number;
|
|
1128
1132
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1129
1133
|
export type GenerateNewInviteCodesMutationHookResult = ReturnType<typeof useGenerateNewInviteCodesMutation>;
|
|
1130
1134
|
export type GenerateNewInviteCodesMutationResult = Apollo.MutationResult<IGenerateNewInviteCodesMutation>;
|
|
@@ -1149,7 +1153,7 @@ export type IUseInviteCodeMutationFn = Apollo.MutationFunction<IUseInviteCodeMut
|
|
|
1149
1153
|
* });
|
|
1150
1154
|
*/
|
|
1151
1155
|
export declare function useUseInviteCodeMutation(baseOptions?: Apollo.MutationHookOptions<IUseInviteCodeMutation, IUseInviteCodeMutationVariables>): Apollo.MutationTuple<IUseInviteCodeMutation, Exact<{
|
|
1152
|
-
inviteCode:
|
|
1156
|
+
inviteCode: string;
|
|
1153
1157
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1154
1158
|
export type UseInviteCodeMutationHookResult = ReturnType<typeof useUseInviteCodeMutation>;
|
|
1155
1159
|
export type UseInviteCodeMutationResult = Apollo.MutationResult<IUseInviteCodeMutation>;
|
|
@@ -1176,9 +1180,9 @@ export type IRemoveWalletMutationFn = Apollo.MutationFunction<IRemoveWalletMutat
|
|
|
1176
1180
|
* });
|
|
1177
1181
|
*/
|
|
1178
1182
|
export declare function useRemoveWalletMutation(baseOptions?: Apollo.MutationHookOptions<IRemoveWalletMutation, IRemoveWalletMutationVariables>): Apollo.MutationTuple<IRemoveWalletMutation, Exact<{
|
|
1179
|
-
blockchain:
|
|
1180
|
-
address:
|
|
1181
|
-
chainId?: Maybe<
|
|
1183
|
+
blockchain: string;
|
|
1184
|
+
address: string;
|
|
1185
|
+
chainId?: Maybe<string> | undefined;
|
|
1182
1186
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1183
1187
|
export type RemoveWalletMutationHookResult = ReturnType<typeof useRemoveWalletMutation>;
|
|
1184
1188
|
export type RemoveWalletMutationResult = Apollo.MutationResult<IRemoveWalletMutation>;
|
|
@@ -1204,8 +1208,8 @@ export type ISaveEmailOfJoinerMutationFn = Apollo.MutationFunction<ISaveEmailOfJ
|
|
|
1204
1208
|
* });
|
|
1205
1209
|
*/
|
|
1206
1210
|
export declare function useSaveEmailOfJoinerMutation(baseOptions?: Apollo.MutationHookOptions<ISaveEmailOfJoinerMutation, ISaveEmailOfJoinerMutationVariables>): Apollo.MutationTuple<ISaveEmailOfJoinerMutation, Exact<{
|
|
1207
|
-
email:
|
|
1208
|
-
isSubscribed:
|
|
1211
|
+
email: string;
|
|
1212
|
+
isSubscribed: boolean;
|
|
1209
1213
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1210
1214
|
export type SaveEmailOfJoinerMutationHookResult = ReturnType<typeof useSaveEmailOfJoinerMutation>;
|
|
1211
1215
|
export type SaveEmailOfJoinerMutationResult = Apollo.MutationResult<ISaveEmailOfJoinerMutation>;
|
|
@@ -1232,9 +1236,9 @@ export type ISetMainWalletMutationFn = Apollo.MutationFunction<ISetMainWalletMut
|
|
|
1232
1236
|
* });
|
|
1233
1237
|
*/
|
|
1234
1238
|
export declare function useSetMainWalletMutation(baseOptions?: Apollo.MutationHookOptions<ISetMainWalletMutation, ISetMainWalletMutationVariables>): Apollo.MutationTuple<ISetMainWalletMutation, Exact<{
|
|
1235
|
-
blockchain:
|
|
1236
|
-
address:
|
|
1237
|
-
chainId?: Maybe<
|
|
1239
|
+
blockchain: string;
|
|
1240
|
+
address: string;
|
|
1241
|
+
chainId?: Maybe<string> | undefined;
|
|
1238
1242
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1239
1243
|
export type SetMainWalletMutationHookResult = ReturnType<typeof useSetMainWalletMutation>;
|
|
1240
1244
|
export type SetMainWalletMutationResult = Apollo.MutationResult<ISetMainWalletMutation>;
|
|
@@ -1261,9 +1265,9 @@ export type ISignInAdminMetamaskMutationFn = Apollo.MutationFunction<ISignInAdmi
|
|
|
1261
1265
|
* });
|
|
1262
1266
|
*/
|
|
1263
1267
|
export declare function useSignInAdminMetamaskMutation(baseOptions?: Apollo.MutationHookOptions<ISignInAdminMetamaskMutation, ISignInAdminMetamaskMutationVariables>): Apollo.MutationTuple<ISignInAdminMetamaskMutation, Exact<{
|
|
1264
|
-
signature:
|
|
1265
|
-
address:
|
|
1266
|
-
chainId:
|
|
1268
|
+
signature: string;
|
|
1269
|
+
address: string;
|
|
1270
|
+
chainId: string;
|
|
1267
1271
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1268
1272
|
export type SignInAdminMetamaskMutationHookResult = ReturnType<typeof useSignInAdminMetamaskMutation>;
|
|
1269
1273
|
export type SignInAdminMetamaskMutationResult = Apollo.MutationResult<ISignInAdminMetamaskMutation>;
|
|
@@ -1289,8 +1293,8 @@ export type ISignInElrondMutationFn = Apollo.MutationFunction<ISignInElrondMutat
|
|
|
1289
1293
|
* });
|
|
1290
1294
|
*/
|
|
1291
1295
|
export declare function useSignInElrondMutation(baseOptions?: Apollo.MutationHookOptions<ISignInElrondMutation, ISignInElrondMutationVariables>): Apollo.MutationTuple<ISignInElrondMutation, Exact<{
|
|
1292
|
-
signature:
|
|
1293
|
-
address:
|
|
1296
|
+
signature: string;
|
|
1297
|
+
address: string;
|
|
1294
1298
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1295
1299
|
export type SignInElrondMutationHookResult = ReturnType<typeof useSignInElrondMutation>;
|
|
1296
1300
|
export type SignInElrondMutationResult = Apollo.MutationResult<ISignInElrondMutation>;
|
|
@@ -1316,8 +1320,8 @@ export type ISignInFlowMutationFn = Apollo.MutationFunction<ISignInFlowMutation,
|
|
|
1316
1320
|
* });
|
|
1317
1321
|
*/
|
|
1318
1322
|
export declare function useSignInFlowMutation(baseOptions?: Apollo.MutationHookOptions<ISignInFlowMutation, ISignInFlowMutationVariables>): Apollo.MutationTuple<ISignInFlowMutation, Exact<{
|
|
1319
|
-
signature:
|
|
1320
|
-
address:
|
|
1323
|
+
signature: string;
|
|
1324
|
+
address: string;
|
|
1321
1325
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1322
1326
|
export type SignInFlowMutationHookResult = ReturnType<typeof useSignInFlowMutation>;
|
|
1323
1327
|
export type SignInFlowMutationResult = Apollo.MutationResult<ISignInFlowMutation>;
|
|
@@ -1344,9 +1348,9 @@ export type ISignInMetamaskMutationFn = Apollo.MutationFunction<ISignInMetamaskM
|
|
|
1344
1348
|
* });
|
|
1345
1349
|
*/
|
|
1346
1350
|
export declare function useSignInMetamaskMutation(baseOptions?: Apollo.MutationHookOptions<ISignInMetamaskMutation, ISignInMetamaskMutationVariables>): Apollo.MutationTuple<ISignInMetamaskMutation, Exact<{
|
|
1347
|
-
signature:
|
|
1348
|
-
address:
|
|
1349
|
-
chainId:
|
|
1351
|
+
signature: string;
|
|
1352
|
+
address: string;
|
|
1353
|
+
chainId: string;
|
|
1350
1354
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1351
1355
|
export type SignInMetamaskMutationHookResult = ReturnType<typeof useSignInMetamaskMutation>;
|
|
1352
1356
|
export type SignInMetamaskMutationResult = Apollo.MutationResult<ISignInMetamaskMutation>;
|
|
@@ -1372,8 +1376,8 @@ export type ISignInSolanaMutationFn = Apollo.MutationFunction<ISignInSolanaMutat
|
|
|
1372
1376
|
* });
|
|
1373
1377
|
*/
|
|
1374
1378
|
export declare function useSignInSolanaMutation(baseOptions?: Apollo.MutationHookOptions<ISignInSolanaMutation, ISignInSolanaMutationVariables>): Apollo.MutationTuple<ISignInSolanaMutation, Exact<{
|
|
1375
|
-
signature:
|
|
1376
|
-
pubkey:
|
|
1379
|
+
signature: string;
|
|
1380
|
+
pubkey: string;
|
|
1377
1381
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1378
1382
|
export type SignInSolanaMutationHookResult = ReturnType<typeof useSignInSolanaMutation>;
|
|
1379
1383
|
export type SignInSolanaMutationResult = Apollo.MutationResult<ISignInSolanaMutation>;
|
|
@@ -1399,8 +1403,8 @@ export type ISignInTezosMutationFn = Apollo.MutationFunction<ISignInTezosMutatio
|
|
|
1399
1403
|
* });
|
|
1400
1404
|
*/
|
|
1401
1405
|
export declare function useSignInTezosMutation(baseOptions?: Apollo.MutationHookOptions<ISignInTezosMutation, ISignInTezosMutationVariables>): Apollo.MutationTuple<ISignInTezosMutation, Exact<{
|
|
1402
|
-
signature:
|
|
1403
|
-
pubkey:
|
|
1406
|
+
signature: string;
|
|
1407
|
+
pubkey: string;
|
|
1404
1408
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1405
1409
|
export type SignInTezosMutationHookResult = ReturnType<typeof useSignInTezosMutation>;
|
|
1406
1410
|
export type SignInTezosMutationResult = Apollo.MutationResult<ISignInTezosMutation>;
|
|
@@ -1427,7 +1431,7 @@ export type ISignInTonMutationFn = Apollo.MutationFunction<ISignInTonMutation, I
|
|
|
1427
1431
|
*/
|
|
1428
1432
|
export declare function useSignInTonMutation(baseOptions?: Apollo.MutationHookOptions<ISignInTonMutation, ISignInTonMutationVariables>): Apollo.MutationTuple<ISignInTonMutation, Exact<{
|
|
1429
1433
|
request: ICheckTonProofRequest;
|
|
1430
|
-
restore?: Maybe<
|
|
1434
|
+
restore?: Maybe<boolean> | undefined;
|
|
1431
1435
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1432
1436
|
export type SignInTonMutationHookResult = ReturnType<typeof useSignInTonMutation>;
|
|
1433
1437
|
export type SignInTonMutationResult = Apollo.MutationResult<ISignInTonMutation>;
|
|
@@ -1458,13 +1462,13 @@ export type IUpdateProfileMutationFn = Apollo.MutationFunction<IUpdateProfileMut
|
|
|
1458
1462
|
* });
|
|
1459
1463
|
*/
|
|
1460
1464
|
export declare function useUpdateProfileMutation(baseOptions?: Apollo.MutationHookOptions<IUpdateProfileMutation, IUpdateProfileMutationVariables>): Apollo.MutationTuple<IUpdateProfileMutation, Exact<{
|
|
1461
|
-
username?: Maybe<
|
|
1462
|
-
about?: Maybe<
|
|
1463
|
-
facebook?: Maybe<
|
|
1464
|
-
twitter?: Maybe<
|
|
1465
|
-
instagram?: Maybe<
|
|
1466
|
-
website?: Maybe<
|
|
1467
|
-
showNsfw?: Maybe<
|
|
1465
|
+
username?: Maybe<string> | undefined;
|
|
1466
|
+
about?: Maybe<string> | undefined;
|
|
1467
|
+
facebook?: Maybe<string> | undefined;
|
|
1468
|
+
twitter?: Maybe<string> | undefined;
|
|
1469
|
+
instagram?: Maybe<string> | undefined;
|
|
1470
|
+
website?: Maybe<string> | undefined;
|
|
1471
|
+
showNsfw?: Maybe<boolean> | undefined;
|
|
1468
1472
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
1469
1473
|
export type UpdateProfileMutationHookResult = ReturnType<typeof useUpdateProfileMutation>;
|
|
1470
1474
|
export type UpdateProfileMutationResult = Apollo.MutationResult<IUpdateProfileMutation>;
|
|
@@ -1487,10 +1491,10 @@ export declare const FetchMultiversXAuditDocument: Apollo.DocumentNode;
|
|
|
1487
1491
|
* });
|
|
1488
1492
|
*/
|
|
1489
1493
|
export declare function useFetchMultiversXAuditQuery(baseOptions: Apollo.QueryHookOptions<IFetchMultiversXAuditQuery, IFetchMultiversXAuditQueryVariables>): Apollo.QueryResult<IFetchMultiversXAuditQuery, Exact<{
|
|
1490
|
-
wallet:
|
|
1494
|
+
wallet: string;
|
|
1491
1495
|
}>>;
|
|
1492
1496
|
export declare function useFetchMultiversXAuditLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchMultiversXAuditQuery, IFetchMultiversXAuditQueryVariables>): Apollo.LazyQueryResultTuple<IFetchMultiversXAuditQuery, Exact<{
|
|
1493
|
-
wallet:
|
|
1497
|
+
wallet: string;
|
|
1494
1498
|
}>>;
|
|
1495
1499
|
export type FetchMultiversXAuditQueryHookResult = ReturnType<typeof useFetchMultiversXAuditQuery>;
|
|
1496
1500
|
export type FetchMultiversXAuditLazyQueryHookResult = ReturnType<typeof useFetchMultiversXAuditLazyQuery>;
|
|
@@ -1538,10 +1542,10 @@ export declare const FetchProfileDocument: Apollo.DocumentNode;
|
|
|
1538
1542
|
* });
|
|
1539
1543
|
*/
|
|
1540
1544
|
export declare function useFetchProfileQuery(baseOptions: Apollo.QueryHookOptions<IFetchProfileQuery, IFetchProfileQueryVariables>): Apollo.QueryResult<IFetchProfileQuery, Exact<{
|
|
1541
|
-
userId:
|
|
1545
|
+
userId: string;
|
|
1542
1546
|
}>>;
|
|
1543
1547
|
export declare function useFetchProfileLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchProfileQuery, IFetchProfileQueryVariables>): Apollo.LazyQueryResultTuple<IFetchProfileQuery, Exact<{
|
|
1544
|
-
userId:
|
|
1548
|
+
userId: string;
|
|
1545
1549
|
}>>;
|
|
1546
1550
|
export type FetchProfileQueryHookResult = ReturnType<typeof useFetchProfileQuery>;
|
|
1547
1551
|
export type FetchProfileLazyQueryHookResult = ReturnType<typeof useFetchProfileLazyQuery>;
|
|
@@ -1564,10 +1568,10 @@ export declare const FetchUserWalletsDocument: Apollo.DocumentNode;
|
|
|
1564
1568
|
* });
|
|
1565
1569
|
*/
|
|
1566
1570
|
export declare function useFetchUserWalletsQuery(baseOptions: Apollo.QueryHookOptions<IFetchUserWalletsQuery, IFetchUserWalletsQueryVariables>): Apollo.QueryResult<IFetchUserWalletsQuery, Exact<{
|
|
1567
|
-
userId:
|
|
1571
|
+
userId: string;
|
|
1568
1572
|
}>>;
|
|
1569
1573
|
export declare function useFetchUserWalletsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchUserWalletsQuery, IFetchUserWalletsQueryVariables>): Apollo.LazyQueryResultTuple<IFetchUserWalletsQuery, Exact<{
|
|
1570
|
-
userId:
|
|
1574
|
+
userId: string;
|
|
1571
1575
|
}>>;
|
|
1572
1576
|
export type FetchUserWalletsQueryHookResult = ReturnType<typeof useFetchUserWalletsQuery>;
|
|
1573
1577
|
export type FetchUserWalletsLazyQueryHookResult = ReturnType<typeof useFetchUserWalletsLazyQuery>;
|
|
@@ -23,37 +23,8 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
23
23
|
return result;
|
|
24
24
|
};
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
exports.
|
|
27
|
-
exports.
|
|
28
|
-
exports.useAddWalletFlowMutation = useAddWalletFlowMutation;
|
|
29
|
-
exports.useAddWalletMetamaskMutation = useAddWalletMetamaskMutation;
|
|
30
|
-
exports.useAddWalletSolanaMutation = useAddWalletSolanaMutation;
|
|
31
|
-
exports.useAddWalletTezosMutation = useAddWalletTezosMutation;
|
|
32
|
-
exports.useAddWalletTonMutation = useAddWalletTonMutation;
|
|
33
|
-
exports.useCreateEvmNonceMutation = useCreateEvmNonceMutation;
|
|
34
|
-
exports.useCreateNonceMutation = useCreateNonceMutation;
|
|
35
|
-
exports.useCreateTonNonceMutation = useCreateTonNonceMutation;
|
|
36
|
-
exports.useGenerateNewInviteCodesMutation = useGenerateNewInviteCodesMutation;
|
|
37
|
-
exports.useUseInviteCodeMutation = useUseInviteCodeMutation;
|
|
38
|
-
exports.useRemoveWalletMutation = useRemoveWalletMutation;
|
|
39
|
-
exports.useSaveEmailOfJoinerMutation = useSaveEmailOfJoinerMutation;
|
|
40
|
-
exports.useSetMainWalletMutation = useSetMainWalletMutation;
|
|
41
|
-
exports.useSignInAdminMetamaskMutation = useSignInAdminMetamaskMutation;
|
|
42
|
-
exports.useSignInElrondMutation = useSignInElrondMutation;
|
|
43
|
-
exports.useSignInFlowMutation = useSignInFlowMutation;
|
|
44
|
-
exports.useSignInMetamaskMutation = useSignInMetamaskMutation;
|
|
45
|
-
exports.useSignInSolanaMutation = useSignInSolanaMutation;
|
|
46
|
-
exports.useSignInTezosMutation = useSignInTezosMutation;
|
|
47
|
-
exports.useSignInTonMutation = useSignInTonMutation;
|
|
48
|
-
exports.useUpdateProfileMutation = useUpdateProfileMutation;
|
|
49
|
-
exports.useFetchMultiversXAuditQuery = useFetchMultiversXAuditQuery;
|
|
50
|
-
exports.useFetchMultiversXAuditLazyQuery = useFetchMultiversXAuditLazyQuery;
|
|
51
|
-
exports.useFetchMyProfileV2Query = useFetchMyProfileV2Query;
|
|
52
|
-
exports.useFetchMyProfileV2LazyQuery = useFetchMyProfileV2LazyQuery;
|
|
53
|
-
exports.useFetchProfileQuery = useFetchProfileQuery;
|
|
54
|
-
exports.useFetchProfileLazyQuery = useFetchProfileLazyQuery;
|
|
55
|
-
exports.useFetchUserWalletsQuery = useFetchUserWalletsQuery;
|
|
56
|
-
exports.useFetchUserWalletsLazyQuery = useFetchUserWalletsLazyQuery;
|
|
26
|
+
exports.useFetchMyProfileV2Query = exports.FetchMyProfileV2Document = exports.useFetchMultiversXAuditLazyQuery = exports.useFetchMultiversXAuditQuery = exports.FetchMultiversXAuditDocument = exports.useUpdateProfileMutation = exports.UpdateProfileDocument = exports.useSignInTonMutation = exports.SignInTonDocument = exports.useSignInTezosMutation = exports.SignInTezosDocument = exports.useSignInSolanaMutation = exports.SignInSolanaDocument = exports.useSignInMetamaskMutation = exports.SignInMetamaskDocument = exports.useSignInFlowMutation = exports.SignInFlowDocument = exports.useSignInElrondMutation = exports.SignInElrondDocument = exports.useSignInAdminMetamaskMutation = exports.SignInAdminMetamaskDocument = exports.useSetMainWalletMutation = exports.SetMainWalletDocument = exports.useSaveEmailOfJoinerMutation = exports.SaveEmailOfJoinerDocument = exports.useRemoveWalletMutation = exports.RemoveWalletDocument = exports.useUseInviteCodeMutation = exports.UseInviteCodeDocument = exports.useGenerateNewInviteCodesMutation = exports.GenerateNewInviteCodesDocument = exports.useCreateTonNonceMutation = exports.CreateTonNonceDocument = exports.useCreateNonceMutation = exports.CreateNonceDocument = exports.useCreateEvmNonceMutation = exports.CreateEvmNonceDocument = exports.useAddWalletTonMutation = exports.AddWalletTonDocument = exports.useAddWalletTezosMutation = exports.AddWalletTezosDocument = exports.useAddWalletSolanaMutation = exports.AddWalletSolanaDocument = exports.useAddWalletMetamaskMutation = exports.AddWalletMetamaskDocument = exports.useAddWalletFlowMutation = exports.AddWalletFlowDocument = exports.useAddWalletElrondMutation = exports.AddWalletElrondDocument = exports.IRole = void 0;
|
|
27
|
+
exports.useFetchUserWalletsLazyQuery = exports.useFetchUserWalletsQuery = exports.FetchUserWalletsDocument = exports.useFetchProfileLazyQuery = exports.useFetchProfileQuery = exports.FetchProfileDocument = exports.useFetchMyProfileV2LazyQuery = void 0;
|
|
57
28
|
const client_1 = require("@apollo/client");
|
|
58
29
|
const Apollo = __importStar(require("@apollo/client"));
|
|
59
30
|
var IRole;
|
|
@@ -87,6 +58,7 @@ exports.AddWalletElrondDocument = (0, client_1.gql) `
|
|
|
87
58
|
function useAddWalletElrondMutation(baseOptions) {
|
|
88
59
|
return Apollo.useMutation(exports.AddWalletElrondDocument, baseOptions);
|
|
89
60
|
}
|
|
61
|
+
exports.useAddWalletElrondMutation = useAddWalletElrondMutation;
|
|
90
62
|
exports.AddWalletFlowDocument = (0, client_1.gql) `
|
|
91
63
|
mutation AddWalletFlow($signature: String!, $address: String!) {
|
|
92
64
|
addWalletFlow(signature: $signature, address: $address)
|
|
@@ -113,6 +85,7 @@ exports.AddWalletFlowDocument = (0, client_1.gql) `
|
|
|
113
85
|
function useAddWalletFlowMutation(baseOptions) {
|
|
114
86
|
return Apollo.useMutation(exports.AddWalletFlowDocument, baseOptions);
|
|
115
87
|
}
|
|
88
|
+
exports.useAddWalletFlowMutation = useAddWalletFlowMutation;
|
|
116
89
|
exports.AddWalletMetamaskDocument = (0, client_1.gql) `
|
|
117
90
|
mutation AddWalletMetamask($signature: String!, $address: String!, $chainId: String!) {
|
|
118
91
|
addWalletMetamask(signature: $signature, address: $address, chainId: $chainId)
|
|
@@ -140,6 +113,7 @@ exports.AddWalletMetamaskDocument = (0, client_1.gql) `
|
|
|
140
113
|
function useAddWalletMetamaskMutation(baseOptions) {
|
|
141
114
|
return Apollo.useMutation(exports.AddWalletMetamaskDocument, baseOptions);
|
|
142
115
|
}
|
|
116
|
+
exports.useAddWalletMetamaskMutation = useAddWalletMetamaskMutation;
|
|
143
117
|
exports.AddWalletSolanaDocument = (0, client_1.gql) `
|
|
144
118
|
mutation AddWalletSolana($signature: String!, $pubkey: String!) {
|
|
145
119
|
addWalletSolana(signature: $signature, pubkey: $pubkey)
|
|
@@ -166,6 +140,7 @@ exports.AddWalletSolanaDocument = (0, client_1.gql) `
|
|
|
166
140
|
function useAddWalletSolanaMutation(baseOptions) {
|
|
167
141
|
return Apollo.useMutation(exports.AddWalletSolanaDocument, baseOptions);
|
|
168
142
|
}
|
|
143
|
+
exports.useAddWalletSolanaMutation = useAddWalletSolanaMutation;
|
|
169
144
|
exports.AddWalletTezosDocument = (0, client_1.gql) `
|
|
170
145
|
mutation AddWalletTezos($signature: String!, $pubkey: String!) {
|
|
171
146
|
addWalletTezos(signature: $signature, pubkey: $pubkey)
|
|
@@ -192,6 +167,7 @@ exports.AddWalletTezosDocument = (0, client_1.gql) `
|
|
|
192
167
|
function useAddWalletTezosMutation(baseOptions) {
|
|
193
168
|
return Apollo.useMutation(exports.AddWalletTezosDocument, baseOptions);
|
|
194
169
|
}
|
|
170
|
+
exports.useAddWalletTezosMutation = useAddWalletTezosMutation;
|
|
195
171
|
exports.AddWalletTonDocument = (0, client_1.gql) `
|
|
196
172
|
mutation AddWalletTon($request: CheckTonProofRequest!) {
|
|
197
173
|
addWalletTon(request: $request)
|
|
@@ -217,6 +193,7 @@ exports.AddWalletTonDocument = (0, client_1.gql) `
|
|
|
217
193
|
function useAddWalletTonMutation(baseOptions) {
|
|
218
194
|
return Apollo.useMutation(exports.AddWalletTonDocument, baseOptions);
|
|
219
195
|
}
|
|
196
|
+
exports.useAddWalletTonMutation = useAddWalletTonMutation;
|
|
220
197
|
exports.CreateEvmNonceDocument = (0, client_1.gql) `
|
|
221
198
|
mutation CreateEvmNonce {
|
|
222
199
|
createEvmNonce
|
|
@@ -241,6 +218,7 @@ exports.CreateEvmNonceDocument = (0, client_1.gql) `
|
|
|
241
218
|
function useCreateEvmNonceMutation(baseOptions) {
|
|
242
219
|
return Apollo.useMutation(exports.CreateEvmNonceDocument, baseOptions);
|
|
243
220
|
}
|
|
221
|
+
exports.useCreateEvmNonceMutation = useCreateEvmNonceMutation;
|
|
244
222
|
exports.CreateNonceDocument = (0, client_1.gql) `
|
|
245
223
|
mutation CreateNonce($address: String!, $blockchain: String!, $chainId: String) {
|
|
246
224
|
createNonce(address: $address, blockchain: $blockchain, chainId: $chainId)
|
|
@@ -268,6 +246,7 @@ exports.CreateNonceDocument = (0, client_1.gql) `
|
|
|
268
246
|
function useCreateNonceMutation(baseOptions) {
|
|
269
247
|
return Apollo.useMutation(exports.CreateNonceDocument, baseOptions);
|
|
270
248
|
}
|
|
249
|
+
exports.useCreateNonceMutation = useCreateNonceMutation;
|
|
271
250
|
exports.CreateTonNonceDocument = (0, client_1.gql) `
|
|
272
251
|
mutation CreateTonNonce {
|
|
273
252
|
createTonNonce
|
|
@@ -292,6 +271,7 @@ exports.CreateTonNonceDocument = (0, client_1.gql) `
|
|
|
292
271
|
function useCreateTonNonceMutation(baseOptions) {
|
|
293
272
|
return Apollo.useMutation(exports.CreateTonNonceDocument, baseOptions);
|
|
294
273
|
}
|
|
274
|
+
exports.useCreateTonNonceMutation = useCreateTonNonceMutation;
|
|
295
275
|
exports.GenerateNewInviteCodesDocument = (0, client_1.gql) `
|
|
296
276
|
mutation GenerateNewInviteCodes($codesNum: Int!) {
|
|
297
277
|
generateNewInviteCodes(codesNum: $codesNum) {
|
|
@@ -322,6 +302,7 @@ exports.GenerateNewInviteCodesDocument = (0, client_1.gql) `
|
|
|
322
302
|
function useGenerateNewInviteCodesMutation(baseOptions) {
|
|
323
303
|
return Apollo.useMutation(exports.GenerateNewInviteCodesDocument, baseOptions);
|
|
324
304
|
}
|
|
305
|
+
exports.useGenerateNewInviteCodesMutation = useGenerateNewInviteCodesMutation;
|
|
325
306
|
exports.UseInviteCodeDocument = (0, client_1.gql) `
|
|
326
307
|
mutation UseInviteCode($inviteCode: String!) {
|
|
327
308
|
useInviteCode(inviteCode: $inviteCode)
|
|
@@ -347,6 +328,7 @@ exports.UseInviteCodeDocument = (0, client_1.gql) `
|
|
|
347
328
|
function useUseInviteCodeMutation(baseOptions) {
|
|
348
329
|
return Apollo.useMutation(exports.UseInviteCodeDocument, baseOptions);
|
|
349
330
|
}
|
|
331
|
+
exports.useUseInviteCodeMutation = useUseInviteCodeMutation;
|
|
350
332
|
exports.RemoveWalletDocument = (0, client_1.gql) `
|
|
351
333
|
mutation RemoveWallet($blockchain: String!, $address: String!, $chainId: String) {
|
|
352
334
|
removeWallet(blockchain: $blockchain, address: $address, chainId: $chainId)
|
|
@@ -374,6 +356,7 @@ exports.RemoveWalletDocument = (0, client_1.gql) `
|
|
|
374
356
|
function useRemoveWalletMutation(baseOptions) {
|
|
375
357
|
return Apollo.useMutation(exports.RemoveWalletDocument, baseOptions);
|
|
376
358
|
}
|
|
359
|
+
exports.useRemoveWalletMutation = useRemoveWalletMutation;
|
|
377
360
|
exports.SaveEmailOfJoinerDocument = (0, client_1.gql) `
|
|
378
361
|
mutation SaveEmailOfJoiner($email: String!, $isSubscribed: Boolean!) {
|
|
379
362
|
saveEmailOfJoiner(email: $email, isSubscribed: $isSubscribed)
|
|
@@ -400,6 +383,7 @@ exports.SaveEmailOfJoinerDocument = (0, client_1.gql) `
|
|
|
400
383
|
function useSaveEmailOfJoinerMutation(baseOptions) {
|
|
401
384
|
return Apollo.useMutation(exports.SaveEmailOfJoinerDocument, baseOptions);
|
|
402
385
|
}
|
|
386
|
+
exports.useSaveEmailOfJoinerMutation = useSaveEmailOfJoinerMutation;
|
|
403
387
|
exports.SetMainWalletDocument = (0, client_1.gql) `
|
|
404
388
|
mutation SetMainWallet($blockchain: String!, $address: String!, $chainId: String) {
|
|
405
389
|
setMainWallet(blockchain: $blockchain, address: $address, chainId: $chainId)
|
|
@@ -427,6 +411,7 @@ exports.SetMainWalletDocument = (0, client_1.gql) `
|
|
|
427
411
|
function useSetMainWalletMutation(baseOptions) {
|
|
428
412
|
return Apollo.useMutation(exports.SetMainWalletDocument, baseOptions);
|
|
429
413
|
}
|
|
414
|
+
exports.useSetMainWalletMutation = useSetMainWalletMutation;
|
|
430
415
|
exports.SignInAdminMetamaskDocument = (0, client_1.gql) `
|
|
431
416
|
mutation SignInAdminMetamask($signature: String!, $address: String!, $chainId: String!) {
|
|
432
417
|
signInAdminMetamask(signature: $signature, address: $address, chainId: $chainId) {
|
|
@@ -470,6 +455,7 @@ exports.SignInAdminMetamaskDocument = (0, client_1.gql) `
|
|
|
470
455
|
function useSignInAdminMetamaskMutation(baseOptions) {
|
|
471
456
|
return Apollo.useMutation(exports.SignInAdminMetamaskDocument, baseOptions);
|
|
472
457
|
}
|
|
458
|
+
exports.useSignInAdminMetamaskMutation = useSignInAdminMetamaskMutation;
|
|
473
459
|
exports.SignInElrondDocument = (0, client_1.gql) `
|
|
474
460
|
mutation SignInElrond($signature: String!, $address: String!) {
|
|
475
461
|
signInElrond(signature: $signature, address: $address) {
|
|
@@ -512,6 +498,7 @@ exports.SignInElrondDocument = (0, client_1.gql) `
|
|
|
512
498
|
function useSignInElrondMutation(baseOptions) {
|
|
513
499
|
return Apollo.useMutation(exports.SignInElrondDocument, baseOptions);
|
|
514
500
|
}
|
|
501
|
+
exports.useSignInElrondMutation = useSignInElrondMutation;
|
|
515
502
|
exports.SignInFlowDocument = (0, client_1.gql) `
|
|
516
503
|
mutation SignInFlow($signature: String!, $address: String!) {
|
|
517
504
|
signInFlow(signature: $signature, address: $address) {
|
|
@@ -554,6 +541,7 @@ exports.SignInFlowDocument = (0, client_1.gql) `
|
|
|
554
541
|
function useSignInFlowMutation(baseOptions) {
|
|
555
542
|
return Apollo.useMutation(exports.SignInFlowDocument, baseOptions);
|
|
556
543
|
}
|
|
544
|
+
exports.useSignInFlowMutation = useSignInFlowMutation;
|
|
557
545
|
exports.SignInMetamaskDocument = (0, client_1.gql) `
|
|
558
546
|
mutation SignInMetamask($signature: String!, $address: String!, $chainId: String!) {
|
|
559
547
|
signInMetamask(signature: $signature, address: $address, chainId: $chainId) {
|
|
@@ -597,6 +585,7 @@ exports.SignInMetamaskDocument = (0, client_1.gql) `
|
|
|
597
585
|
function useSignInMetamaskMutation(baseOptions) {
|
|
598
586
|
return Apollo.useMutation(exports.SignInMetamaskDocument, baseOptions);
|
|
599
587
|
}
|
|
588
|
+
exports.useSignInMetamaskMutation = useSignInMetamaskMutation;
|
|
600
589
|
exports.SignInSolanaDocument = (0, client_1.gql) `
|
|
601
590
|
mutation SignInSolana($signature: String!, $pubkey: String!) {
|
|
602
591
|
signInSolana(signature: $signature, pubkey: $pubkey) {
|
|
@@ -639,6 +628,7 @@ exports.SignInSolanaDocument = (0, client_1.gql) `
|
|
|
639
628
|
function useSignInSolanaMutation(baseOptions) {
|
|
640
629
|
return Apollo.useMutation(exports.SignInSolanaDocument, baseOptions);
|
|
641
630
|
}
|
|
631
|
+
exports.useSignInSolanaMutation = useSignInSolanaMutation;
|
|
642
632
|
exports.SignInTezosDocument = (0, client_1.gql) `
|
|
643
633
|
mutation SignInTezos($signature: String!, $pubkey: String!) {
|
|
644
634
|
signInTezos(signature: $signature, pubkey: $pubkey) {
|
|
@@ -681,6 +671,7 @@ exports.SignInTezosDocument = (0, client_1.gql) `
|
|
|
681
671
|
function useSignInTezosMutation(baseOptions) {
|
|
682
672
|
return Apollo.useMutation(exports.SignInTezosDocument, baseOptions);
|
|
683
673
|
}
|
|
674
|
+
exports.useSignInTezosMutation = useSignInTezosMutation;
|
|
684
675
|
exports.SignInTonDocument = (0, client_1.gql) `
|
|
685
676
|
mutation SignInTon($request: CheckTonProofRequest!, $restore: Boolean) {
|
|
686
677
|
signInTon(request: $request, restore: $restore) {
|
|
@@ -723,6 +714,7 @@ exports.SignInTonDocument = (0, client_1.gql) `
|
|
|
723
714
|
function useSignInTonMutation(baseOptions) {
|
|
724
715
|
return Apollo.useMutation(exports.SignInTonDocument, baseOptions);
|
|
725
716
|
}
|
|
717
|
+
exports.useSignInTonMutation = useSignInTonMutation;
|
|
726
718
|
exports.UpdateProfileDocument = (0, client_1.gql) `
|
|
727
719
|
mutation UpdateProfile($username: String, $about: String, $facebook: String, $twitter: String, $instagram: String, $website: String, $showNsfw: Boolean) {
|
|
728
720
|
updateProfile(
|
|
@@ -756,6 +748,7 @@ exports.UpdateProfileDocument = (0, client_1.gql) `
|
|
|
756
748
|
function useUpdateProfileMutation(baseOptions) {
|
|
757
749
|
return Apollo.useMutation(exports.UpdateProfileDocument, baseOptions);
|
|
758
750
|
}
|
|
751
|
+
exports.useUpdateProfileMutation = useUpdateProfileMutation;
|
|
759
752
|
exports.FetchMultiversXAuditDocument = (0, client_1.gql) `
|
|
760
753
|
query FetchMultiversXAudit($wallet: String!) {
|
|
761
754
|
fetchMultiversxAudit(wallet: $wallet) {
|
|
@@ -799,9 +792,11 @@ exports.FetchMultiversXAuditDocument = (0, client_1.gql) `
|
|
|
799
792
|
function useFetchMultiversXAuditQuery(baseOptions) {
|
|
800
793
|
return Apollo.useQuery(exports.FetchMultiversXAuditDocument, baseOptions);
|
|
801
794
|
}
|
|
795
|
+
exports.useFetchMultiversXAuditQuery = useFetchMultiversXAuditQuery;
|
|
802
796
|
function useFetchMultiversXAuditLazyQuery(baseOptions) {
|
|
803
797
|
return Apollo.useLazyQuery(exports.FetchMultiversXAuditDocument, baseOptions);
|
|
804
798
|
}
|
|
799
|
+
exports.useFetchMultiversXAuditLazyQuery = useFetchMultiversXAuditLazyQuery;
|
|
805
800
|
exports.FetchMyProfileV2Document = (0, client_1.gql) `
|
|
806
801
|
query FetchMyProfileV2 {
|
|
807
802
|
fetchMyProfileV2 {
|
|
@@ -868,9 +863,11 @@ exports.FetchMyProfileV2Document = (0, client_1.gql) `
|
|
|
868
863
|
function useFetchMyProfileV2Query(baseOptions) {
|
|
869
864
|
return Apollo.useQuery(exports.FetchMyProfileV2Document, baseOptions);
|
|
870
865
|
}
|
|
866
|
+
exports.useFetchMyProfileV2Query = useFetchMyProfileV2Query;
|
|
871
867
|
function useFetchMyProfileV2LazyQuery(baseOptions) {
|
|
872
868
|
return Apollo.useLazyQuery(exports.FetchMyProfileV2Document, baseOptions);
|
|
873
869
|
}
|
|
870
|
+
exports.useFetchMyProfileV2LazyQuery = useFetchMyProfileV2LazyQuery;
|
|
874
871
|
exports.FetchProfileDocument = (0, client_1.gql) `
|
|
875
872
|
query FetchProfile($userId: ID!) {
|
|
876
873
|
fetchProfile(userId: $userId) {
|
|
@@ -924,9 +921,11 @@ exports.FetchProfileDocument = (0, client_1.gql) `
|
|
|
924
921
|
function useFetchProfileQuery(baseOptions) {
|
|
925
922
|
return Apollo.useQuery(exports.FetchProfileDocument, baseOptions);
|
|
926
923
|
}
|
|
924
|
+
exports.useFetchProfileQuery = useFetchProfileQuery;
|
|
927
925
|
function useFetchProfileLazyQuery(baseOptions) {
|
|
928
926
|
return Apollo.useLazyQuery(exports.FetchProfileDocument, baseOptions);
|
|
929
927
|
}
|
|
928
|
+
exports.useFetchProfileLazyQuery = useFetchProfileLazyQuery;
|
|
930
929
|
exports.FetchUserWalletsDocument = (0, client_1.gql) `
|
|
931
930
|
query FetchUserWallets($userId: ID!) {
|
|
932
931
|
fetchUserWallets(userId: $userId) {
|
|
@@ -958,6 +957,8 @@ exports.FetchUserWalletsDocument = (0, client_1.gql) `
|
|
|
958
957
|
function useFetchUserWalletsQuery(baseOptions) {
|
|
959
958
|
return Apollo.useQuery(exports.FetchUserWalletsDocument, baseOptions);
|
|
960
959
|
}
|
|
960
|
+
exports.useFetchUserWalletsQuery = useFetchUserWalletsQuery;
|
|
961
961
|
function useFetchUserWalletsLazyQuery(baseOptions) {
|
|
962
962
|
return Apollo.useLazyQuery(exports.FetchUserWalletsDocument, baseOptions);
|
|
963
963
|
}
|
|
964
|
+
exports.useFetchUserWalletsLazyQuery = useFetchUserWalletsLazyQuery;
|
|
@@ -189,7 +189,7 @@ export type IDeleteGalleryBannerMutationFn = Apollo.MutationFunction<IDeleteGall
|
|
|
189
189
|
* });
|
|
190
190
|
*/
|
|
191
191
|
export declare function useDeleteGalleryBannerMutation(baseOptions?: Apollo.MutationHookOptions<IDeleteGalleryBannerMutation, IDeleteGalleryBannerMutationVariables>): Apollo.MutationTuple<IDeleteGalleryBannerMutation, Exact<{
|
|
192
|
-
galleryId:
|
|
192
|
+
galleryId: string;
|
|
193
193
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
194
194
|
export type DeleteGalleryBannerMutationHookResult = ReturnType<typeof useDeleteGalleryBannerMutation>;
|
|
195
195
|
export type DeleteGalleryBannerMutationResult = Apollo.MutationResult<IDeleteGalleryBannerMutation>;
|
|
@@ -215,8 +215,8 @@ export type IUploadGalleryBannerMutationFn = Apollo.MutationFunction<IUploadGall
|
|
|
215
215
|
* });
|
|
216
216
|
*/
|
|
217
217
|
export declare function useUploadGalleryBannerMutation(baseOptions?: Apollo.MutationHookOptions<IUploadGalleryBannerMutation, IUploadGalleryBannerMutationVariables>): Apollo.MutationTuple<IUploadGalleryBannerMutation, Exact<{
|
|
218
|
-
galleryId:
|
|
219
|
-
file:
|
|
218
|
+
galleryId: string;
|
|
219
|
+
file: any;
|
|
220
220
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
221
221
|
export type UploadGalleryBannerMutationHookResult = ReturnType<typeof useUploadGalleryBannerMutation>;
|
|
222
222
|
export type UploadGalleryBannerMutationResult = Apollo.MutationResult<IUploadGalleryBannerMutation>;
|
|
@@ -239,10 +239,10 @@ export declare const FetchUserpicDocument: Apollo.DocumentNode;
|
|
|
239
239
|
* });
|
|
240
240
|
*/
|
|
241
241
|
export declare function useFetchUserpicQuery(baseOptions: Apollo.QueryHookOptions<IFetchUserpicQuery, IFetchUserpicQueryVariables>): Apollo.QueryResult<IFetchUserpicQuery, Exact<{
|
|
242
|
-
userId:
|
|
242
|
+
userId: string;
|
|
243
243
|
}>>;
|
|
244
244
|
export declare function useFetchUserpicLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchUserpicQuery, IFetchUserpicQueryVariables>): Apollo.LazyQueryResultTuple<IFetchUserpicQuery, Exact<{
|
|
245
|
-
userId:
|
|
245
|
+
userId: string;
|
|
246
246
|
}>>;
|
|
247
247
|
export type FetchUserpicQueryHookResult = ReturnType<typeof useFetchUserpicQuery>;
|
|
248
248
|
export type FetchUserpicLazyQueryHookResult = ReturnType<typeof useFetchUserpicLazyQuery>;
|
|
@@ -23,11 +23,7 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
23
23
|
return result;
|
|
24
24
|
};
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
exports.FetchUserpicDocument = exports.UploadGalleryBannerDocument = exports.DeleteGalleryBannerDocument = void 0;
|
|
27
|
-
exports.useDeleteGalleryBannerMutation = useDeleteGalleryBannerMutation;
|
|
28
|
-
exports.useUploadGalleryBannerMutation = useUploadGalleryBannerMutation;
|
|
29
|
-
exports.useFetchUserpicQuery = useFetchUserpicQuery;
|
|
30
|
-
exports.useFetchUserpicLazyQuery = useFetchUserpicLazyQuery;
|
|
26
|
+
exports.useFetchUserpicLazyQuery = exports.useFetchUserpicQuery = exports.FetchUserpicDocument = exports.useUploadGalleryBannerMutation = exports.UploadGalleryBannerDocument = exports.useDeleteGalleryBannerMutation = exports.DeleteGalleryBannerDocument = void 0;
|
|
31
27
|
const client_1 = require("@apollo/client");
|
|
32
28
|
const Apollo = __importStar(require("@apollo/client"));
|
|
33
29
|
exports.DeleteGalleryBannerDocument = (0, client_1.gql) `
|
|
@@ -55,6 +51,7 @@ exports.DeleteGalleryBannerDocument = (0, client_1.gql) `
|
|
|
55
51
|
function useDeleteGalleryBannerMutation(baseOptions) {
|
|
56
52
|
return Apollo.useMutation(exports.DeleteGalleryBannerDocument, baseOptions);
|
|
57
53
|
}
|
|
54
|
+
exports.useDeleteGalleryBannerMutation = useDeleteGalleryBannerMutation;
|
|
58
55
|
exports.UploadGalleryBannerDocument = (0, client_1.gql) `
|
|
59
56
|
mutation UploadGalleryBanner($galleryId: ID!, $file: Upload!) {
|
|
60
57
|
uploadGalleryBanner(galleryId: $galleryId, file: $file)
|
|
@@ -81,6 +78,7 @@ exports.UploadGalleryBannerDocument = (0, client_1.gql) `
|
|
|
81
78
|
function useUploadGalleryBannerMutation(baseOptions) {
|
|
82
79
|
return Apollo.useMutation(exports.UploadGalleryBannerDocument, baseOptions);
|
|
83
80
|
}
|
|
81
|
+
exports.useUploadGalleryBannerMutation = useUploadGalleryBannerMutation;
|
|
84
82
|
exports.FetchUserpicDocument = (0, client_1.gql) `
|
|
85
83
|
query FetchUserpic($userId: ID!) {
|
|
86
84
|
fetchUserpic(userId: $userId)
|
|
@@ -105,6 +103,8 @@ exports.FetchUserpicDocument = (0, client_1.gql) `
|
|
|
105
103
|
function useFetchUserpicQuery(baseOptions) {
|
|
106
104
|
return Apollo.useQuery(exports.FetchUserpicDocument, baseOptions);
|
|
107
105
|
}
|
|
106
|
+
exports.useFetchUserpicQuery = useFetchUserpicQuery;
|
|
108
107
|
function useFetchUserpicLazyQuery(baseOptions) {
|
|
109
108
|
return Apollo.useLazyQuery(exports.FetchUserpicDocument, baseOptions);
|
|
110
109
|
}
|
|
110
|
+
exports.useFetchUserpicLazyQuery = useFetchUserpicLazyQuery;
|
|
@@ -182,7 +182,7 @@ export type IReadNotificationMutationFn = Apollo.MutationFunction<IReadNotificat
|
|
|
182
182
|
* });
|
|
183
183
|
*/
|
|
184
184
|
export declare function useReadNotificationMutation(baseOptions?: Apollo.MutationHookOptions<IReadNotificationMutation, IReadNotificationMutationVariables>): Apollo.MutationTuple<IReadNotificationMutation, Exact<{
|
|
185
|
-
notificationId:
|
|
185
|
+
notificationId: string;
|
|
186
186
|
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
187
187
|
export type ReadNotificationMutationHookResult = ReturnType<typeof useReadNotificationMutation>;
|
|
188
188
|
export type ReadNotificationMutationResult = Apollo.MutationResult<IReadNotificationMutation>;
|
|
@@ -209,10 +209,10 @@ export declare function useOnNotificationSubscription(baseOptions: Apollo.Subscr
|
|
|
209
209
|
restart(): void;
|
|
210
210
|
loading: boolean;
|
|
211
211
|
data?: IOnNotificationSubscription | undefined;
|
|
212
|
-
error?: Apollo.ApolloError;
|
|
212
|
+
error?: Apollo.ApolloError | undefined;
|
|
213
213
|
variables?: Exact<{
|
|
214
|
-
authToken:
|
|
215
|
-
notificationTypes:
|
|
214
|
+
authToken: string;
|
|
215
|
+
notificationTypes: INotificationType[];
|
|
216
216
|
}> | undefined;
|
|
217
217
|
};
|
|
218
218
|
export type OnNotificationSubscriptionHookResult = ReturnType<typeof useOnNotificationSubscription>;
|