@ludo.ninja/api 2.9.3 → 2.9.4

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 (39) 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 +85 -37
  4. package/build/graphql_tools/__generated__/adminHost/schema.js +101 -67
  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 +54 -54
  19. package/build/graphql_tools/__generated__/identityHost/schema.js +34 -33
  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__/mintInfoHost/schema.d.ts +3 -1
  23. package/build/graphql_tools/__generated__/mintInfoHost/schema.js +3 -3
  24. package/build/graphql_tools/__generated__/notificationsHost/schema.d.ts +4 -4
  25. package/build/graphql_tools/__generated__/notificationsHost/schema.js +3 -3
  26. package/build/graphql_tools/__generated__/opportunitiesHost/schema.d.ts +10 -7
  27. package/build/graphql_tools/__generated__/opportunitiesHost/schema.js +11 -11
  28. package/build/graphql_tools/__generated__/preferencesHost/schema.d.ts +2 -2
  29. package/build/graphql_tools/__generated__/preferencesHost/schema.js +23 -23
  30. package/build/graphql_tools/__generated__/searchHost/schema.d.ts +48 -48
  31. package/build/graphql_tools/__generated__/searchHost/schema.js +33 -33
  32. package/build/graphql_tools/__generated__/tapHost/schema.d.ts +6 -6
  33. package/build/graphql_tools/__generated__/tapHost/schema.js +12 -12
  34. package/build/index.d.ts +1260 -588
  35. package/package.json +1 -1
  36. package/src/graphql_tools/__generated__/adminHost/schema.ts +59 -1
  37. package/src/graphql_tools/__generated__/mintInfoHost/schema.ts +3 -1
  38. package/src/graphql_tools/__generated__/opportunitiesHost/schema.ts +3 -0
  39. package/tsconfig.tsbuildinfo +1 -1
@@ -387,8 +387,8 @@ export type IAddAssetsToGalleryV2MutationFn = Apollo.MutationFunction<IAddAssets
387
387
  * });
388
388
  */
389
389
  export declare function useAddAssetsToGalleryV2Mutation(baseOptions?: Apollo.MutationHookOptions<IAddAssetsToGalleryV2Mutation, IAddAssetsToGalleryV2MutationVariables>): Apollo.MutationTuple<IAddAssetsToGalleryV2Mutation, Exact<{
390
- galleryId: Scalars["ID"];
391
- assetIds: Array<Scalars["String"]>;
390
+ galleryId: string;
391
+ assetIds: string[];
392
392
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
393
393
  export type AddAssetsToGalleryV2MutationHookResult = ReturnType<typeof useAddAssetsToGalleryV2Mutation>;
394
394
  export type AddAssetsToGalleryV2MutationResult = Apollo.MutationResult<IAddAssetsToGalleryV2Mutation>;
@@ -414,8 +414,8 @@ export type IAddCollectionsToGalleryV2MutationFn = Apollo.MutationFunction<IAddC
414
414
  * });
415
415
  */
416
416
  export declare function useAddCollectionsToGalleryV2Mutation(baseOptions?: Apollo.MutationHookOptions<IAddCollectionsToGalleryV2Mutation, IAddCollectionsToGalleryV2MutationVariables>): Apollo.MutationTuple<IAddCollectionsToGalleryV2Mutation, Exact<{
417
- galleryId: Scalars["ID"];
418
- collectionIds: Array<Scalars["String"]>;
417
+ galleryId: string;
418
+ collectionIds: string[];
419
419
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
420
420
  export type AddCollectionsToGalleryV2MutationHookResult = ReturnType<typeof useAddCollectionsToGalleryV2Mutation>;
421
421
  export type AddCollectionsToGalleryV2MutationResult = Apollo.MutationResult<IAddCollectionsToGalleryV2Mutation>;
@@ -441,8 +441,8 @@ export type IAddCreationsToGalleryV2MutationFn = Apollo.MutationFunction<IAddCre
441
441
  * });
442
442
  */
443
443
  export declare function useAddCreationsToGalleryV2Mutation(baseOptions?: Apollo.MutationHookOptions<IAddCreationsToGalleryV2Mutation, IAddCreationsToGalleryV2MutationVariables>): Apollo.MutationTuple<IAddCreationsToGalleryV2Mutation, Exact<{
444
- galleryId: Scalars["ID"];
445
- creationIds: Array<Scalars["String"]>;
444
+ galleryId: string;
445
+ creationIds: string[];
446
446
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
447
447
  export type AddCreationsToGalleryV2MutationHookResult = ReturnType<typeof useAddCreationsToGalleryV2Mutation>;
448
448
  export type AddCreationsToGalleryV2MutationResult = Apollo.MutationResult<IAddCreationsToGalleryV2Mutation>;
@@ -470,10 +470,10 @@ export type ICreateFavoriteListV2MutationFn = Apollo.MutationFunction<ICreateFav
470
470
  * });
471
471
  */
472
472
  export declare function useCreateFavoriteListV2Mutation(baseOptions?: Apollo.MutationHookOptions<ICreateFavoriteListV2Mutation, ICreateFavoriteListV2MutationVariables>): Apollo.MutationTuple<ICreateFavoriteListV2Mutation, Exact<{
473
- name: Scalars["String"];
474
- description?: Maybe<Scalars["String"]>;
475
- publicAccessible?: Maybe<Scalars["Boolean"]>;
476
- creationIds?: Maybe<Array<Maybe<Scalars["String"]>>>;
473
+ name: string;
474
+ description?: Maybe<string> | undefined;
475
+ publicAccessible?: Maybe<boolean> | undefined;
476
+ creationIds?: Maybe<Maybe<string>[]> | undefined;
477
477
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
478
478
  export type CreateFavoriteListV2MutationHookResult = ReturnType<typeof useCreateFavoriteListV2Mutation>;
479
479
  export type CreateFavoriteListV2MutationResult = Apollo.MutationResult<ICreateFavoriteListV2Mutation>;
@@ -501,10 +501,10 @@ export type ICreateGalleryV2MutationFn = Apollo.MutationFunction<ICreateGalleryV
501
501
  * });
502
502
  */
503
503
  export declare function useCreateGalleryV2Mutation(baseOptions?: Apollo.MutationHookOptions<ICreateGalleryV2Mutation, ICreateGalleryV2MutationVariables>): Apollo.MutationTuple<ICreateGalleryV2Mutation, Exact<{
504
- name: Scalars["String"];
505
- description?: Maybe<Scalars["String"]>;
506
- publicAccessible?: Maybe<Scalars["Boolean"]>;
507
- creationIds?: Maybe<Array<Maybe<Scalars["String"]>>>;
504
+ name: string;
505
+ description?: Maybe<string> | undefined;
506
+ publicAccessible?: Maybe<boolean> | undefined;
507
+ creationIds?: Maybe<Maybe<string>[]> | undefined;
508
508
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
509
509
  export type CreateGalleryV2MutationHookResult = ReturnType<typeof useCreateGalleryV2Mutation>;
510
510
  export type CreateGalleryV2MutationResult = Apollo.MutationResult<ICreateGalleryV2Mutation>;
@@ -529,7 +529,7 @@ export type IDeleteGalleryMutationFn = Apollo.MutationFunction<IDeleteGalleryMut
529
529
  * });
530
530
  */
531
531
  export declare function useDeleteGalleryMutation(baseOptions?: Apollo.MutationHookOptions<IDeleteGalleryMutation, IDeleteGalleryMutationVariables>): Apollo.MutationTuple<IDeleteGalleryMutation, Exact<{
532
- galleryId: Scalars["ID"];
532
+ galleryId: string;
533
533
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
534
534
  export type DeleteGalleryMutationHookResult = ReturnType<typeof useDeleteGalleryMutation>;
535
535
  export type DeleteGalleryMutationResult = Apollo.MutationResult<IDeleteGalleryMutation>;
@@ -556,9 +556,9 @@ export type IEditGalleryMutationFn = Apollo.MutationFunction<IEditGalleryMutatio
556
556
  * });
557
557
  */
558
558
  export declare function useEditGalleryMutation(baseOptions?: Apollo.MutationHookOptions<IEditGalleryMutation, IEditGalleryMutationVariables>): Apollo.MutationTuple<IEditGalleryMutation, Exact<{
559
- galleryId: Scalars["ID"];
560
- name?: Maybe<Scalars["String"]>;
561
- description?: Maybe<Scalars["String"]>;
559
+ galleryId: string;
560
+ name?: Maybe<string> | undefined;
561
+ description?: Maybe<string> | undefined;
562
562
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
563
563
  export type EditGalleryMutationHookResult = ReturnType<typeof useEditGalleryMutation>;
564
564
  export type EditGalleryMutationResult = Apollo.MutationResult<IEditGalleryMutation>;
@@ -584,8 +584,8 @@ export type IRemoveAssetFromGalleryV2MutationFn = Apollo.MutationFunction<IRemov
584
584
  * });
585
585
  */
586
586
  export declare function useRemoveAssetFromGalleryV2Mutation(baseOptions?: Apollo.MutationHookOptions<IRemoveAssetFromGalleryV2Mutation, IRemoveAssetFromGalleryV2MutationVariables>): Apollo.MutationTuple<IRemoveAssetFromGalleryV2Mutation, Exact<{
587
- galleryId: Scalars["ID"];
588
- assetId: Scalars["String"];
587
+ galleryId: string;
588
+ assetId: string;
589
589
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
590
590
  export type RemoveAssetFromGalleryV2MutationHookResult = ReturnType<typeof useRemoveAssetFromGalleryV2Mutation>;
591
591
  export type RemoveAssetFromGalleryV2MutationResult = Apollo.MutationResult<IRemoveAssetFromGalleryV2Mutation>;
@@ -611,8 +611,8 @@ export type IRemoveCollectionFromGalleryV2MutationFn = Apollo.MutationFunction<I
611
611
  * });
612
612
  */
613
613
  export declare function useRemoveCollectionFromGalleryV2Mutation(baseOptions?: Apollo.MutationHookOptions<IRemoveCollectionFromGalleryV2Mutation, IRemoveCollectionFromGalleryV2MutationVariables>): Apollo.MutationTuple<IRemoveCollectionFromGalleryV2Mutation, Exact<{
614
- galleryId: Scalars["ID"];
615
- collectionId: Scalars["String"];
614
+ galleryId: string;
615
+ collectionId: string;
616
616
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
617
617
  export type RemoveCollectionFromGalleryV2MutationHookResult = ReturnType<typeof useRemoveCollectionFromGalleryV2Mutation>;
618
618
  export type RemoveCollectionFromGalleryV2MutationResult = Apollo.MutationResult<IRemoveCollectionFromGalleryV2Mutation>;
@@ -638,8 +638,8 @@ export type IRemoveCreationFromGalleryV2MutationFn = Apollo.MutationFunction<IRe
638
638
  * });
639
639
  */
640
640
  export declare function useRemoveCreationFromGalleryV2Mutation(baseOptions?: Apollo.MutationHookOptions<IRemoveCreationFromGalleryV2Mutation, IRemoveCreationFromGalleryV2MutationVariables>): Apollo.MutationTuple<IRemoveCreationFromGalleryV2Mutation, Exact<{
641
- galleryId: Scalars["ID"];
642
- creationId: Scalars["String"];
641
+ galleryId: string;
642
+ creationId: string;
643
643
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
644
644
  export type RemoveCreationFromGalleryV2MutationHookResult = ReturnType<typeof useRemoveCreationFromGalleryV2Mutation>;
645
645
  export type RemoveCreationFromGalleryV2MutationResult = Apollo.MutationResult<IRemoveCreationFromGalleryV2Mutation>;
@@ -662,10 +662,10 @@ export declare const FetchGalleryV2Document: Apollo.DocumentNode;
662
662
  * });
663
663
  */
664
664
  export declare function useFetchGalleryV2Query(baseOptions: Apollo.QueryHookOptions<IFetchGalleryV2Query, IFetchGalleryV2QueryVariables>): Apollo.QueryResult<IFetchGalleryV2Query, Exact<{
665
- galleryId: Scalars["String"];
665
+ galleryId: string;
666
666
  }>>;
667
667
  export declare function useFetchGalleryV2LazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchGalleryV2Query, IFetchGalleryV2QueryVariables>): Apollo.LazyQueryResultTuple<IFetchGalleryV2Query, Exact<{
668
- galleryId: Scalars["String"];
668
+ galleryId: string;
669
669
  }>>;
670
670
  export type FetchGalleryV2QueryHookResult = ReturnType<typeof useFetchGalleryV2Query>;
671
671
  export type FetchGalleryV2LazyQueryHookResult = ReturnType<typeof useFetchGalleryV2LazyQuery>;
@@ -689,12 +689,12 @@ export declare const FetchMyFavoritesV2Document: Apollo.DocumentNode;
689
689
  * });
690
690
  */
691
691
  export declare function useFetchMyFavoritesV2Query(baseOptions: Apollo.QueryHookOptions<IFetchMyFavoritesV2Query, IFetchMyFavoritesV2QueryVariables>): Apollo.QueryResult<IFetchMyFavoritesV2Query, Exact<{
692
- pageSize: Scalars["Int"];
693
- pageToken?: Maybe<Scalars["String"]>;
692
+ pageSize: number;
693
+ pageToken?: Maybe<string> | undefined;
694
694
  }>>;
695
695
  export declare function useFetchMyFavoritesV2LazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchMyFavoritesV2Query, IFetchMyFavoritesV2QueryVariables>): Apollo.LazyQueryResultTuple<IFetchMyFavoritesV2Query, Exact<{
696
- pageSize: Scalars["Int"];
697
- pageToken?: Maybe<Scalars["String"]>;
696
+ pageSize: number;
697
+ pageToken?: Maybe<string> | undefined;
698
698
  }>>;
699
699
  export type FetchMyFavoritesV2QueryHookResult = ReturnType<typeof useFetchMyFavoritesV2Query>;
700
700
  export type FetchMyFavoritesV2LazyQueryHookResult = ReturnType<typeof useFetchMyFavoritesV2LazyQuery>;
@@ -718,12 +718,12 @@ export declare const FetchMyGalleriesV2Document: Apollo.DocumentNode;
718
718
  * });
719
719
  */
720
720
  export declare function useFetchMyGalleriesV2Query(baseOptions: Apollo.QueryHookOptions<IFetchMyGalleriesV2Query, IFetchMyGalleriesV2QueryVariables>): Apollo.QueryResult<IFetchMyGalleriesV2Query, Exact<{
721
- pageSize: Scalars["Int"];
722
- pageToken?: Maybe<Scalars["String"]>;
721
+ pageSize: number;
722
+ pageToken?: Maybe<string> | undefined;
723
723
  }>>;
724
724
  export declare function useFetchMyGalleriesV2LazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchMyGalleriesV2Query, IFetchMyGalleriesV2QueryVariables>): Apollo.LazyQueryResultTuple<IFetchMyGalleriesV2Query, Exact<{
725
- pageSize: Scalars["Int"];
726
- pageToken?: Maybe<Scalars["String"]>;
725
+ pageSize: number;
726
+ pageToken?: Maybe<string> | undefined;
727
727
  }>>;
728
728
  export type FetchMyGalleriesV2QueryHookResult = ReturnType<typeof useFetchMyGalleriesV2Query>;
729
729
  export type FetchMyGalleriesV2LazyQueryHookResult = ReturnType<typeof useFetchMyGalleriesV2LazyQuery>;
@@ -748,14 +748,14 @@ export declare const FetchUserFavoritesV2Document: Apollo.DocumentNode;
748
748
  * });
749
749
  */
750
750
  export declare function useFetchUserFavoritesV2Query(baseOptions: Apollo.QueryHookOptions<IFetchUserFavoritesV2Query, IFetchUserFavoritesV2QueryVariables>): Apollo.QueryResult<IFetchUserFavoritesV2Query, Exact<{
751
- userId: Scalars["ID"];
752
- pageSize: Scalars["Int"];
753
- pageToken?: Maybe<Scalars["String"]>;
751
+ userId: string;
752
+ pageSize: number;
753
+ pageToken?: Maybe<string> | undefined;
754
754
  }>>;
755
755
  export declare function useFetchUserFavoritesV2LazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchUserFavoritesV2Query, IFetchUserFavoritesV2QueryVariables>): Apollo.LazyQueryResultTuple<IFetchUserFavoritesV2Query, Exact<{
756
- userId: Scalars["ID"];
757
- pageSize: Scalars["Int"];
758
- pageToken?: Maybe<Scalars["String"]>;
756
+ userId: string;
757
+ pageSize: number;
758
+ pageToken?: Maybe<string> | undefined;
759
759
  }>>;
760
760
  export type FetchUserFavoritesV2QueryHookResult = ReturnType<typeof useFetchUserFavoritesV2Query>;
761
761
  export type FetchUserFavoritesV2LazyQueryHookResult = ReturnType<typeof useFetchUserFavoritesV2LazyQuery>;
@@ -780,14 +780,14 @@ export declare const FetchUserGalleriesV2Document: Apollo.DocumentNode;
780
780
  * });
781
781
  */
782
782
  export declare function useFetchUserGalleriesV2Query(baseOptions: Apollo.QueryHookOptions<IFetchUserGalleriesV2Query, IFetchUserGalleriesV2QueryVariables>): Apollo.QueryResult<IFetchUserGalleriesV2Query, Exact<{
783
- userId: Scalars["ID"];
784
- pageSize: Scalars["Int"];
785
- pageToken?: Maybe<Scalars["String"]>;
783
+ userId: string;
784
+ pageSize: number;
785
+ pageToken?: Maybe<string> | undefined;
786
786
  }>>;
787
787
  export declare function useFetchUserGalleriesV2LazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchUserGalleriesV2Query, IFetchUserGalleriesV2QueryVariables>): Apollo.LazyQueryResultTuple<IFetchUserGalleriesV2Query, Exact<{
788
- userId: Scalars["ID"];
789
- pageSize: Scalars["Int"];
790
- pageToken?: Maybe<Scalars["String"]>;
788
+ userId: string;
789
+ pageSize: number;
790
+ pageToken?: Maybe<string> | undefined;
791
791
  }>>;
792
792
  export type FetchUserGalleriesV2QueryHookResult = ReturnType<typeof useFetchUserGalleriesV2Query>;
793
793
  export type FetchUserGalleriesV2LazyQueryHookResult = ReturnType<typeof useFetchUserGalleriesV2LazyQuery>;
@@ -23,27 +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.FetchUserGalleriesV2Document = exports.FetchUserFavoritesV2Document = exports.FetchMyGalleriesV2Document = exports.FetchMyFavoritesV2Document = exports.FetchGalleryV2Document = exports.RemoveCreationFromGalleryV2Document = exports.RemoveCollectionFromGalleryV2Document = exports.RemoveAssetFromGalleryV2Document = exports.EditGalleryDocument = exports.DeleteGalleryDocument = exports.CreateGalleryV2Document = exports.CreateFavoriteListV2Document = exports.AddCreationsToGalleryV2Document = exports.AddCollectionsToGalleryV2Document = exports.AddAssetsToGalleryV2Document = void 0;
27
- exports.useAddAssetsToGalleryV2Mutation = useAddAssetsToGalleryV2Mutation;
28
- exports.useAddCollectionsToGalleryV2Mutation = useAddCollectionsToGalleryV2Mutation;
29
- exports.useAddCreationsToGalleryV2Mutation = useAddCreationsToGalleryV2Mutation;
30
- exports.useCreateFavoriteListV2Mutation = useCreateFavoriteListV2Mutation;
31
- exports.useCreateGalleryV2Mutation = useCreateGalleryV2Mutation;
32
- exports.useDeleteGalleryMutation = useDeleteGalleryMutation;
33
- exports.useEditGalleryMutation = useEditGalleryMutation;
34
- exports.useRemoveAssetFromGalleryV2Mutation = useRemoveAssetFromGalleryV2Mutation;
35
- exports.useRemoveCollectionFromGalleryV2Mutation = useRemoveCollectionFromGalleryV2Mutation;
36
- exports.useRemoveCreationFromGalleryV2Mutation = useRemoveCreationFromGalleryV2Mutation;
37
- exports.useFetchGalleryV2Query = useFetchGalleryV2Query;
38
- exports.useFetchGalleryV2LazyQuery = useFetchGalleryV2LazyQuery;
39
- exports.useFetchMyFavoritesV2Query = useFetchMyFavoritesV2Query;
40
- exports.useFetchMyFavoritesV2LazyQuery = useFetchMyFavoritesV2LazyQuery;
41
- exports.useFetchMyGalleriesV2Query = useFetchMyGalleriesV2Query;
42
- exports.useFetchMyGalleriesV2LazyQuery = useFetchMyGalleriesV2LazyQuery;
43
- exports.useFetchUserFavoritesV2Query = useFetchUserFavoritesV2Query;
44
- exports.useFetchUserFavoritesV2LazyQuery = useFetchUserFavoritesV2LazyQuery;
45
- exports.useFetchUserGalleriesV2Query = useFetchUserGalleriesV2Query;
46
- exports.useFetchUserGalleriesV2LazyQuery = useFetchUserGalleriesV2LazyQuery;
26
+ exports.useFetchUserGalleriesV2LazyQuery = exports.useFetchUserGalleriesV2Query = exports.FetchUserGalleriesV2Document = exports.useFetchUserFavoritesV2LazyQuery = exports.useFetchUserFavoritesV2Query = exports.FetchUserFavoritesV2Document = exports.useFetchMyGalleriesV2LazyQuery = exports.useFetchMyGalleriesV2Query = exports.FetchMyGalleriesV2Document = exports.useFetchMyFavoritesV2LazyQuery = exports.useFetchMyFavoritesV2Query = exports.FetchMyFavoritesV2Document = exports.useFetchGalleryV2LazyQuery = exports.useFetchGalleryV2Query = exports.FetchGalleryV2Document = exports.useRemoveCreationFromGalleryV2Mutation = exports.RemoveCreationFromGalleryV2Document = exports.useRemoveCollectionFromGalleryV2Mutation = exports.RemoveCollectionFromGalleryV2Document = exports.useRemoveAssetFromGalleryV2Mutation = exports.RemoveAssetFromGalleryV2Document = exports.useEditGalleryMutation = exports.EditGalleryDocument = exports.useDeleteGalleryMutation = exports.DeleteGalleryDocument = exports.useCreateGalleryV2Mutation = exports.CreateGalleryV2Document = exports.useCreateFavoriteListV2Mutation = exports.CreateFavoriteListV2Document = exports.useAddCreationsToGalleryV2Mutation = exports.AddCreationsToGalleryV2Document = exports.useAddCollectionsToGalleryV2Mutation = exports.AddCollectionsToGalleryV2Document = exports.useAddAssetsToGalleryV2Mutation = exports.AddAssetsToGalleryV2Document = void 0;
47
27
  const client_1 = require("@apollo/client");
48
28
  const Apollo = __importStar(require("@apollo/client"));
49
29
  exports.AddAssetsToGalleryV2Document = (0, client_1.gql) `
@@ -72,6 +52,7 @@ exports.AddAssetsToGalleryV2Document = (0, client_1.gql) `
72
52
  function useAddAssetsToGalleryV2Mutation(baseOptions) {
73
53
  return Apollo.useMutation(exports.AddAssetsToGalleryV2Document, baseOptions);
74
54
  }
55
+ exports.useAddAssetsToGalleryV2Mutation = useAddAssetsToGalleryV2Mutation;
75
56
  exports.AddCollectionsToGalleryV2Document = (0, client_1.gql) `
76
57
  mutation AddCollectionsToGalleryV2($galleryId: ID!, $collectionIds: [String!]!) {
77
58
  addCollectionsToGalleryV2(galleryId: $galleryId, collectionIds: $collectionIds)
@@ -98,6 +79,7 @@ exports.AddCollectionsToGalleryV2Document = (0, client_1.gql) `
98
79
  function useAddCollectionsToGalleryV2Mutation(baseOptions) {
99
80
  return Apollo.useMutation(exports.AddCollectionsToGalleryV2Document, baseOptions);
100
81
  }
82
+ exports.useAddCollectionsToGalleryV2Mutation = useAddCollectionsToGalleryV2Mutation;
101
83
  exports.AddCreationsToGalleryV2Document = (0, client_1.gql) `
102
84
  mutation AddCreationsToGalleryV2($galleryId: ID!, $creationIds: [String!]!) {
103
85
  addCreationsToGalleryV2(galleryId: $galleryId, creationIds: $creationIds)
@@ -124,6 +106,7 @@ exports.AddCreationsToGalleryV2Document = (0, client_1.gql) `
124
106
  function useAddCreationsToGalleryV2Mutation(baseOptions) {
125
107
  return Apollo.useMutation(exports.AddCreationsToGalleryV2Document, baseOptions);
126
108
  }
109
+ exports.useAddCreationsToGalleryV2Mutation = useAddCreationsToGalleryV2Mutation;
127
110
  exports.CreateFavoriteListV2Document = (0, client_1.gql) `
128
111
  mutation CreateFavoriteListV2($name: String!, $description: String, $publicAccessible: Boolean, $creationIds: [String]) {
129
112
  createFavoriteListV2(
@@ -157,6 +140,7 @@ exports.CreateFavoriteListV2Document = (0, client_1.gql) `
157
140
  function useCreateFavoriteListV2Mutation(baseOptions) {
158
141
  return Apollo.useMutation(exports.CreateFavoriteListV2Document, baseOptions);
159
142
  }
143
+ exports.useCreateFavoriteListV2Mutation = useCreateFavoriteListV2Mutation;
160
144
  exports.CreateGalleryV2Document = (0, client_1.gql) `
161
145
  mutation CreateGalleryV2($name: String!, $description: String, $publicAccessible: Boolean, $creationIds: [String]) {
162
146
  createGalleryV2(
@@ -190,6 +174,7 @@ exports.CreateGalleryV2Document = (0, client_1.gql) `
190
174
  function useCreateGalleryV2Mutation(baseOptions) {
191
175
  return Apollo.useMutation(exports.CreateGalleryV2Document, baseOptions);
192
176
  }
177
+ exports.useCreateGalleryV2Mutation = useCreateGalleryV2Mutation;
193
178
  exports.DeleteGalleryDocument = (0, client_1.gql) `
194
179
  mutation DeleteGallery($galleryId: ID!) {
195
180
  deleteGallery(galleryId: $galleryId)
@@ -215,6 +200,7 @@ exports.DeleteGalleryDocument = (0, client_1.gql) `
215
200
  function useDeleteGalleryMutation(baseOptions) {
216
201
  return Apollo.useMutation(exports.DeleteGalleryDocument, baseOptions);
217
202
  }
203
+ exports.useDeleteGalleryMutation = useDeleteGalleryMutation;
218
204
  exports.EditGalleryDocument = (0, client_1.gql) `
219
205
  mutation EditGallery($galleryId: ID!, $name: String, $description: String) {
220
206
  editGallery(galleryId: $galleryId, name: $name, description: $description)
@@ -242,6 +228,7 @@ exports.EditGalleryDocument = (0, client_1.gql) `
242
228
  function useEditGalleryMutation(baseOptions) {
243
229
  return Apollo.useMutation(exports.EditGalleryDocument, baseOptions);
244
230
  }
231
+ exports.useEditGalleryMutation = useEditGalleryMutation;
245
232
  exports.RemoveAssetFromGalleryV2Document = (0, client_1.gql) `
246
233
  mutation RemoveAssetFromGalleryV2($galleryId: ID!, $assetId: String!) {
247
234
  removeAssetFromGalleryV2(galleryId: $galleryId, assetId: $assetId)
@@ -268,6 +255,7 @@ exports.RemoveAssetFromGalleryV2Document = (0, client_1.gql) `
268
255
  function useRemoveAssetFromGalleryV2Mutation(baseOptions) {
269
256
  return Apollo.useMutation(exports.RemoveAssetFromGalleryV2Document, baseOptions);
270
257
  }
258
+ exports.useRemoveAssetFromGalleryV2Mutation = useRemoveAssetFromGalleryV2Mutation;
271
259
  exports.RemoveCollectionFromGalleryV2Document = (0, client_1.gql) `
272
260
  mutation RemoveCollectionFromGalleryV2($galleryId: ID!, $collectionId: String!) {
273
261
  removeCollectionFromGalleryV2(
@@ -297,6 +285,7 @@ exports.RemoveCollectionFromGalleryV2Document = (0, client_1.gql) `
297
285
  function useRemoveCollectionFromGalleryV2Mutation(baseOptions) {
298
286
  return Apollo.useMutation(exports.RemoveCollectionFromGalleryV2Document, baseOptions);
299
287
  }
288
+ exports.useRemoveCollectionFromGalleryV2Mutation = useRemoveCollectionFromGalleryV2Mutation;
300
289
  exports.RemoveCreationFromGalleryV2Document = (0, client_1.gql) `
301
290
  mutation RemoveCreationFromGalleryV2($galleryId: ID!, $creationId: String!) {
302
291
  removeCreationFromGalleryV2(galleryId: $galleryId, creationId: $creationId)
@@ -323,6 +312,7 @@ exports.RemoveCreationFromGalleryV2Document = (0, client_1.gql) `
323
312
  function useRemoveCreationFromGalleryV2Mutation(baseOptions) {
324
313
  return Apollo.useMutation(exports.RemoveCreationFromGalleryV2Document, baseOptions);
325
314
  }
315
+ exports.useRemoveCreationFromGalleryV2Mutation = useRemoveCreationFromGalleryV2Mutation;
326
316
  exports.FetchGalleryV2Document = (0, client_1.gql) `
327
317
  query FetchGalleryV2($galleryId: String!) {
328
318
  fetchGalleryV2(galleryId: $galleryId) {
@@ -362,9 +352,11 @@ exports.FetchGalleryV2Document = (0, client_1.gql) `
362
352
  function useFetchGalleryV2Query(baseOptions) {
363
353
  return Apollo.useQuery(exports.FetchGalleryV2Document, baseOptions);
364
354
  }
355
+ exports.useFetchGalleryV2Query = useFetchGalleryV2Query;
365
356
  function useFetchGalleryV2LazyQuery(baseOptions) {
366
357
  return Apollo.useLazyQuery(exports.FetchGalleryV2Document, baseOptions);
367
358
  }
359
+ exports.useFetchGalleryV2LazyQuery = useFetchGalleryV2LazyQuery;
368
360
  exports.FetchMyFavoritesV2Document = (0, client_1.gql) `
369
361
  query FetchMyFavoritesV2($pageSize: Int!, $pageToken: String) {
370
362
  fetchMyFavoritesV2(pageSize: $pageSize, pageToken: $pageToken) {
@@ -408,9 +400,11 @@ exports.FetchMyFavoritesV2Document = (0, client_1.gql) `
408
400
  function useFetchMyFavoritesV2Query(baseOptions) {
409
401
  return Apollo.useQuery(exports.FetchMyFavoritesV2Document, baseOptions);
410
402
  }
403
+ exports.useFetchMyFavoritesV2Query = useFetchMyFavoritesV2Query;
411
404
  function useFetchMyFavoritesV2LazyQuery(baseOptions) {
412
405
  return Apollo.useLazyQuery(exports.FetchMyFavoritesV2Document, baseOptions);
413
406
  }
407
+ exports.useFetchMyFavoritesV2LazyQuery = useFetchMyFavoritesV2LazyQuery;
414
408
  exports.FetchMyGalleriesV2Document = (0, client_1.gql) `
415
409
  query FetchMyGalleriesV2($pageSize: Int!, $pageToken: String) {
416
410
  fetchMyGalleriesV2(pageSize: $pageSize, pageToken: $pageToken) {
@@ -454,9 +448,11 @@ exports.FetchMyGalleriesV2Document = (0, client_1.gql) `
454
448
  function useFetchMyGalleriesV2Query(baseOptions) {
455
449
  return Apollo.useQuery(exports.FetchMyGalleriesV2Document, baseOptions);
456
450
  }
451
+ exports.useFetchMyGalleriesV2Query = useFetchMyGalleriesV2Query;
457
452
  function useFetchMyGalleriesV2LazyQuery(baseOptions) {
458
453
  return Apollo.useLazyQuery(exports.FetchMyGalleriesV2Document, baseOptions);
459
454
  }
455
+ exports.useFetchMyGalleriesV2LazyQuery = useFetchMyGalleriesV2LazyQuery;
460
456
  exports.FetchUserFavoritesV2Document = (0, client_1.gql) `
461
457
  query FetchUserFavoritesV2($userId: ID!, $pageSize: Int!, $pageToken: String) {
462
458
  fetchUserFavoritesV2(
@@ -512,9 +508,11 @@ exports.FetchUserFavoritesV2Document = (0, client_1.gql) `
512
508
  function useFetchUserFavoritesV2Query(baseOptions) {
513
509
  return Apollo.useQuery(exports.FetchUserFavoritesV2Document, baseOptions);
514
510
  }
511
+ exports.useFetchUserFavoritesV2Query = useFetchUserFavoritesV2Query;
515
512
  function useFetchUserFavoritesV2LazyQuery(baseOptions) {
516
513
  return Apollo.useLazyQuery(exports.FetchUserFavoritesV2Document, baseOptions);
517
514
  }
515
+ exports.useFetchUserFavoritesV2LazyQuery = useFetchUserFavoritesV2LazyQuery;
518
516
  exports.FetchUserGalleriesV2Document = (0, client_1.gql) `
519
517
  query fetchUserGalleriesV2($userId: ID!, $pageSize: Int!, $pageToken: String) {
520
518
  fetchUserGalleriesV2(
@@ -570,6 +568,8 @@ exports.FetchUserGalleriesV2Document = (0, client_1.gql) `
570
568
  function useFetchUserGalleriesV2Query(baseOptions) {
571
569
  return Apollo.useQuery(exports.FetchUserGalleriesV2Document, baseOptions);
572
570
  }
571
+ exports.useFetchUserGalleriesV2Query = useFetchUserGalleriesV2Query;
573
572
  function useFetchUserGalleriesV2LazyQuery(baseOptions) {
574
573
  return Apollo.useLazyQuery(exports.FetchUserGalleriesV2Document, baseOptions);
575
574
  }
575
+ exports.useFetchUserGalleriesV2LazyQuery = useFetchUserGalleriesV2LazyQuery;
@@ -942,8 +942,8 @@ export type IAddWalletElrondMutationFn = Apollo.MutationFunction<IAddWalletElron
942
942
  * });
943
943
  */
944
944
  export declare function useAddWalletElrondMutation(baseOptions?: Apollo.MutationHookOptions<IAddWalletElrondMutation, IAddWalletElrondMutationVariables>): Apollo.MutationTuple<IAddWalletElrondMutation, Exact<{
945
- signature: Scalars["String"];
946
- address: Scalars["String"];
945
+ signature: string;
946
+ address: string;
947
947
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
948
948
  export type AddWalletElrondMutationHookResult = ReturnType<typeof useAddWalletElrondMutation>;
949
949
  export type AddWalletElrondMutationResult = Apollo.MutationResult<IAddWalletElrondMutation>;
@@ -969,8 +969,8 @@ export type IAddWalletFlowMutationFn = Apollo.MutationFunction<IAddWalletFlowMut
969
969
  * });
970
970
  */
971
971
  export declare function useAddWalletFlowMutation(baseOptions?: Apollo.MutationHookOptions<IAddWalletFlowMutation, IAddWalletFlowMutationVariables>): Apollo.MutationTuple<IAddWalletFlowMutation, Exact<{
972
- signature: Scalars["String"];
973
- address: Scalars["String"];
972
+ signature: string;
973
+ address: string;
974
974
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
975
975
  export type AddWalletFlowMutationHookResult = ReturnType<typeof useAddWalletFlowMutation>;
976
976
  export type AddWalletFlowMutationResult = Apollo.MutationResult<IAddWalletFlowMutation>;
@@ -997,9 +997,9 @@ export type IAddWalletMetamaskMutationFn = Apollo.MutationFunction<IAddWalletMet
997
997
  * });
998
998
  */
999
999
  export declare function useAddWalletMetamaskMutation(baseOptions?: Apollo.MutationHookOptions<IAddWalletMetamaskMutation, IAddWalletMetamaskMutationVariables>): Apollo.MutationTuple<IAddWalletMetamaskMutation, Exact<{
1000
- signature: Scalars["String"];
1001
- address: Scalars["String"];
1002
- chainId: Scalars["String"];
1000
+ signature: string;
1001
+ address: string;
1002
+ chainId: string;
1003
1003
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
1004
1004
  export type AddWalletMetamaskMutationHookResult = ReturnType<typeof useAddWalletMetamaskMutation>;
1005
1005
  export type AddWalletMetamaskMutationResult = Apollo.MutationResult<IAddWalletMetamaskMutation>;
@@ -1025,8 +1025,8 @@ export type IAddWalletSolanaMutationFn = Apollo.MutationFunction<IAddWalletSolan
1025
1025
  * });
1026
1026
  */
1027
1027
  export declare function useAddWalletSolanaMutation(baseOptions?: Apollo.MutationHookOptions<IAddWalletSolanaMutation, IAddWalletSolanaMutationVariables>): Apollo.MutationTuple<IAddWalletSolanaMutation, Exact<{
1028
- signature: Scalars["String"];
1029
- pubkey: Scalars["String"];
1028
+ signature: string;
1029
+ pubkey: string;
1030
1030
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
1031
1031
  export type AddWalletSolanaMutationHookResult = ReturnType<typeof useAddWalletSolanaMutation>;
1032
1032
  export type AddWalletSolanaMutationResult = Apollo.MutationResult<IAddWalletSolanaMutation>;
@@ -1052,8 +1052,8 @@ export type IAddWalletTezosMutationFn = Apollo.MutationFunction<IAddWalletTezosM
1052
1052
  * });
1053
1053
  */
1054
1054
  export declare function useAddWalletTezosMutation(baseOptions?: Apollo.MutationHookOptions<IAddWalletTezosMutation, IAddWalletTezosMutationVariables>): Apollo.MutationTuple<IAddWalletTezosMutation, Exact<{
1055
- signature: Scalars["String"];
1056
- pubkey: Scalars["String"];
1055
+ signature: string;
1056
+ pubkey: string;
1057
1057
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
1058
1058
  export type AddWalletTezosMutationHookResult = ReturnType<typeof useAddWalletTezosMutation>;
1059
1059
  export type AddWalletTezosMutationResult = Apollo.MutationResult<IAddWalletTezosMutation>;
@@ -1129,9 +1129,9 @@ export type ICreateNonceMutationFn = Apollo.MutationFunction<ICreateNonceMutatio
1129
1129
  * });
1130
1130
  */
1131
1131
  export declare function useCreateNonceMutation(baseOptions?: Apollo.MutationHookOptions<ICreateNonceMutation, ICreateNonceMutationVariables>): Apollo.MutationTuple<ICreateNonceMutation, Exact<{
1132
- address: Scalars["String"];
1133
- blockchain: Scalars["String"];
1134
- chainId?: Maybe<Scalars["String"]>;
1132
+ address: string;
1133
+ blockchain: string;
1134
+ chainId?: Maybe<string> | undefined;
1135
1135
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
1136
1136
  export type CreateNonceMutationHookResult = ReturnType<typeof useCreateNonceMutation>;
1137
1137
  export type CreateNonceMutationResult = Apollo.MutationResult<ICreateNonceMutation>;
@@ -1180,7 +1180,7 @@ export type IGenerateNewInviteCodesMutationFn = Apollo.MutationFunction<IGenerat
1180
1180
  * });
1181
1181
  */
1182
1182
  export declare function useGenerateNewInviteCodesMutation(baseOptions?: Apollo.MutationHookOptions<IGenerateNewInviteCodesMutation, IGenerateNewInviteCodesMutationVariables>): Apollo.MutationTuple<IGenerateNewInviteCodesMutation, Exact<{
1183
- codesNum: Scalars["Int"];
1183
+ codesNum: number;
1184
1184
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
1185
1185
  export type GenerateNewInviteCodesMutationHookResult = ReturnType<typeof useGenerateNewInviteCodesMutation>;
1186
1186
  export type GenerateNewInviteCodesMutationResult = Apollo.MutationResult<IGenerateNewInviteCodesMutation>;
@@ -1205,7 +1205,7 @@ export type IUseInviteCodeMutationFn = Apollo.MutationFunction<IUseInviteCodeMut
1205
1205
  * });
1206
1206
  */
1207
1207
  export declare function useUseInviteCodeMutation(baseOptions?: Apollo.MutationHookOptions<IUseInviteCodeMutation, IUseInviteCodeMutationVariables>): Apollo.MutationTuple<IUseInviteCodeMutation, Exact<{
1208
- inviteCode: Scalars["String"];
1208
+ inviteCode: string;
1209
1209
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
1210
1210
  export type UseInviteCodeMutationHookResult = ReturnType<typeof useUseInviteCodeMutation>;
1211
1211
  export type UseInviteCodeMutationResult = Apollo.MutationResult<IUseInviteCodeMutation>;
@@ -1232,9 +1232,9 @@ export type IRemoveWalletMutationFn = Apollo.MutationFunction<IRemoveWalletMutat
1232
1232
  * });
1233
1233
  */
1234
1234
  export declare function useRemoveWalletMutation(baseOptions?: Apollo.MutationHookOptions<IRemoveWalletMutation, IRemoveWalletMutationVariables>): Apollo.MutationTuple<IRemoveWalletMutation, Exact<{
1235
- blockchain: Scalars["String"];
1236
- address: Scalars["String"];
1237
- chainId?: Maybe<Scalars["String"]>;
1235
+ blockchain: string;
1236
+ address: string;
1237
+ chainId?: Maybe<string> | undefined;
1238
1238
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
1239
1239
  export type RemoveWalletMutationHookResult = ReturnType<typeof useRemoveWalletMutation>;
1240
1240
  export type RemoveWalletMutationResult = Apollo.MutationResult<IRemoveWalletMutation>;
@@ -1260,8 +1260,8 @@ export type ISaveEmailOfJoinerMutationFn = Apollo.MutationFunction<ISaveEmailOfJ
1260
1260
  * });
1261
1261
  */
1262
1262
  export declare function useSaveEmailOfJoinerMutation(baseOptions?: Apollo.MutationHookOptions<ISaveEmailOfJoinerMutation, ISaveEmailOfJoinerMutationVariables>): Apollo.MutationTuple<ISaveEmailOfJoinerMutation, Exact<{
1263
- email: Scalars["String"];
1264
- isSubscribed: Scalars["Boolean"];
1263
+ email: string;
1264
+ isSubscribed: boolean;
1265
1265
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
1266
1266
  export type SaveEmailOfJoinerMutationHookResult = ReturnType<typeof useSaveEmailOfJoinerMutation>;
1267
1267
  export type SaveEmailOfJoinerMutationResult = Apollo.MutationResult<ISaveEmailOfJoinerMutation>;
@@ -1288,9 +1288,9 @@ export type ISetMainWalletMutationFn = Apollo.MutationFunction<ISetMainWalletMut
1288
1288
  * });
1289
1289
  */
1290
1290
  export declare function useSetMainWalletMutation(baseOptions?: Apollo.MutationHookOptions<ISetMainWalletMutation, ISetMainWalletMutationVariables>): Apollo.MutationTuple<ISetMainWalletMutation, Exact<{
1291
- blockchain: Scalars["String"];
1292
- address: Scalars["String"];
1293
- chainId?: Maybe<Scalars["String"]>;
1291
+ blockchain: string;
1292
+ address: string;
1293
+ chainId?: Maybe<string> | undefined;
1294
1294
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
1295
1295
  export type SetMainWalletMutationHookResult = ReturnType<typeof useSetMainWalletMutation>;
1296
1296
  export type SetMainWalletMutationResult = Apollo.MutationResult<ISetMainWalletMutation>;
@@ -1317,9 +1317,9 @@ export type ISignInAdminMetamaskMutationFn = Apollo.MutationFunction<ISignInAdmi
1317
1317
  * });
1318
1318
  */
1319
1319
  export declare function useSignInAdminMetamaskMutation(baseOptions?: Apollo.MutationHookOptions<ISignInAdminMetamaskMutation, ISignInAdminMetamaskMutationVariables>): Apollo.MutationTuple<ISignInAdminMetamaskMutation, Exact<{
1320
- signature: Scalars["String"];
1321
- address: Scalars["String"];
1322
- chainId: Scalars["String"];
1320
+ signature: string;
1321
+ address: string;
1322
+ chainId: string;
1323
1323
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
1324
1324
  export type SignInAdminMetamaskMutationHookResult = ReturnType<typeof useSignInAdminMetamaskMutation>;
1325
1325
  export type SignInAdminMetamaskMutationResult = Apollo.MutationResult<ISignInAdminMetamaskMutation>;
@@ -1345,8 +1345,8 @@ export type ISignInElrondMutationFn = Apollo.MutationFunction<ISignInElrondMutat
1345
1345
  * });
1346
1346
  */
1347
1347
  export declare function useSignInElrondMutation(baseOptions?: Apollo.MutationHookOptions<ISignInElrondMutation, ISignInElrondMutationVariables>): Apollo.MutationTuple<ISignInElrondMutation, Exact<{
1348
- signature: Scalars["String"];
1349
- address: Scalars["String"];
1348
+ signature: string;
1349
+ address: string;
1350
1350
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
1351
1351
  export type SignInElrondMutationHookResult = ReturnType<typeof useSignInElrondMutation>;
1352
1352
  export type SignInElrondMutationResult = Apollo.MutationResult<ISignInElrondMutation>;
@@ -1372,8 +1372,8 @@ export type ISignInFlowMutationFn = Apollo.MutationFunction<ISignInFlowMutation,
1372
1372
  * });
1373
1373
  */
1374
1374
  export declare function useSignInFlowMutation(baseOptions?: Apollo.MutationHookOptions<ISignInFlowMutation, ISignInFlowMutationVariables>): Apollo.MutationTuple<ISignInFlowMutation, Exact<{
1375
- signature: Scalars["String"];
1376
- address: Scalars["String"];
1375
+ signature: string;
1376
+ address: string;
1377
1377
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
1378
1378
  export type SignInFlowMutationHookResult = ReturnType<typeof useSignInFlowMutation>;
1379
1379
  export type SignInFlowMutationResult = Apollo.MutationResult<ISignInFlowMutation>;
@@ -1400,9 +1400,9 @@ export type ISignInMetamaskMutationFn = Apollo.MutationFunction<ISignInMetamaskM
1400
1400
  * });
1401
1401
  */
1402
1402
  export declare function useSignInMetamaskMutation(baseOptions?: Apollo.MutationHookOptions<ISignInMetamaskMutation, ISignInMetamaskMutationVariables>): Apollo.MutationTuple<ISignInMetamaskMutation, Exact<{
1403
- signature: Scalars["String"];
1404
- address: Scalars["String"];
1405
- chainId: Scalars["String"];
1403
+ signature: string;
1404
+ address: string;
1405
+ chainId: string;
1406
1406
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
1407
1407
  export type SignInMetamaskMutationHookResult = ReturnType<typeof useSignInMetamaskMutation>;
1408
1408
  export type SignInMetamaskMutationResult = Apollo.MutationResult<ISignInMetamaskMutation>;
@@ -1428,8 +1428,8 @@ export type ISignInSolanaMutationFn = Apollo.MutationFunction<ISignInSolanaMutat
1428
1428
  * });
1429
1429
  */
1430
1430
  export declare function useSignInSolanaMutation(baseOptions?: Apollo.MutationHookOptions<ISignInSolanaMutation, ISignInSolanaMutationVariables>): Apollo.MutationTuple<ISignInSolanaMutation, Exact<{
1431
- signature: Scalars["String"];
1432
- pubkey: Scalars["String"];
1431
+ signature: string;
1432
+ pubkey: string;
1433
1433
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
1434
1434
  export type SignInSolanaMutationHookResult = ReturnType<typeof useSignInSolanaMutation>;
1435
1435
  export type SignInSolanaMutationResult = Apollo.MutationResult<ISignInSolanaMutation>;
@@ -1455,8 +1455,8 @@ export type ISignInTezosMutationFn = Apollo.MutationFunction<ISignInTezosMutatio
1455
1455
  * });
1456
1456
  */
1457
1457
  export declare function useSignInTezosMutation(baseOptions?: Apollo.MutationHookOptions<ISignInTezosMutation, ISignInTezosMutationVariables>): Apollo.MutationTuple<ISignInTezosMutation, Exact<{
1458
- signature: Scalars["String"];
1459
- pubkey: Scalars["String"];
1458
+ signature: string;
1459
+ pubkey: string;
1460
1460
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
1461
1461
  export type SignInTezosMutationHookResult = ReturnType<typeof useSignInTezosMutation>;
1462
1462
  export type SignInTezosMutationResult = Apollo.MutationResult<ISignInTezosMutation>;
@@ -1483,7 +1483,7 @@ export type ISignInTonMutationFn = Apollo.MutationFunction<ISignInTonMutation, I
1483
1483
  */
1484
1484
  export declare function useSignInTonMutation(baseOptions?: Apollo.MutationHookOptions<ISignInTonMutation, ISignInTonMutationVariables>): Apollo.MutationTuple<ISignInTonMutation, Exact<{
1485
1485
  request: ICheckTonProofRequest;
1486
- restore?: Maybe<Scalars["Boolean"]>;
1486
+ restore?: Maybe<boolean> | undefined;
1487
1487
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
1488
1488
  export type SignInTonMutationHookResult = ReturnType<typeof useSignInTonMutation>;
1489
1489
  export type SignInTonMutationResult = Apollo.MutationResult<ISignInTonMutation>;
@@ -1514,13 +1514,13 @@ export type IUpdateProfileMutationFn = Apollo.MutationFunction<IUpdateProfileMut
1514
1514
  * });
1515
1515
  */
1516
1516
  export declare function useUpdateProfileMutation(baseOptions?: Apollo.MutationHookOptions<IUpdateProfileMutation, IUpdateProfileMutationVariables>): Apollo.MutationTuple<IUpdateProfileMutation, Exact<{
1517
- username?: Maybe<Scalars["String"]>;
1518
- about?: Maybe<Scalars["String"]>;
1519
- facebook?: Maybe<Scalars["String"]>;
1520
- twitter?: Maybe<Scalars["String"]>;
1521
- instagram?: Maybe<Scalars["String"]>;
1522
- website?: Maybe<Scalars["String"]>;
1523
- 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;
1524
1524
  }>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
1525
1525
  export type UpdateProfileMutationHookResult = ReturnType<typeof useUpdateProfileMutation>;
1526
1526
  export type UpdateProfileMutationResult = Apollo.MutationResult<IUpdateProfileMutation>;
@@ -1543,10 +1543,10 @@ export declare const FetchAggregatedMultiversxAuditDocument: Apollo.DocumentNode
1543
1543
  * });
1544
1544
  */
1545
1545
  export declare function useFetchAggregatedMultiversxAuditQuery(baseOptions: Apollo.QueryHookOptions<IFetchAggregatedMultiversxAuditQuery, IFetchAggregatedMultiversxAuditQueryVariables>): Apollo.QueryResult<IFetchAggregatedMultiversxAuditQuery, Exact<{
1546
- userId: Scalars["ID"];
1546
+ userId: string;
1547
1547
  }>>;
1548
1548
  export declare function useFetchAggregatedMultiversxAuditLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchAggregatedMultiversxAuditQuery, IFetchAggregatedMultiversxAuditQueryVariables>): Apollo.LazyQueryResultTuple<IFetchAggregatedMultiversxAuditQuery, Exact<{
1549
- userId: Scalars["ID"];
1549
+ userId: string;
1550
1550
  }>>;
1551
1551
  export type FetchAggregatedMultiversxAuditQueryHookResult = ReturnType<typeof useFetchAggregatedMultiversxAuditQuery>;
1552
1552
  export type FetchAggregatedMultiversxAuditLazyQueryHookResult = ReturnType<typeof useFetchAggregatedMultiversxAuditLazyQuery>;
@@ -1569,10 +1569,10 @@ export declare const FetchMultiversXAuditDocument: Apollo.DocumentNode;
1569
1569
  * });
1570
1570
  */
1571
1571
  export declare function useFetchMultiversXAuditQuery(baseOptions: Apollo.QueryHookOptions<IFetchMultiversXAuditQuery, IFetchMultiversXAuditQueryVariables>): Apollo.QueryResult<IFetchMultiversXAuditQuery, Exact<{
1572
- wallet: Scalars["String"];
1572
+ wallet: string;
1573
1573
  }>>;
1574
1574
  export declare function useFetchMultiversXAuditLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchMultiversXAuditQuery, IFetchMultiversXAuditQueryVariables>): Apollo.LazyQueryResultTuple<IFetchMultiversXAuditQuery, Exact<{
1575
- wallet: Scalars["String"];
1575
+ wallet: string;
1576
1576
  }>>;
1577
1577
  export type FetchMultiversXAuditQueryHookResult = ReturnType<typeof useFetchMultiversXAuditQuery>;
1578
1578
  export type FetchMultiversXAuditLazyQueryHookResult = ReturnType<typeof useFetchMultiversXAuditLazyQuery>;
@@ -1620,10 +1620,10 @@ export declare const FetchProfileDocument: Apollo.DocumentNode;
1620
1620
  * });
1621
1621
  */
1622
1622
  export declare function useFetchProfileQuery(baseOptions: Apollo.QueryHookOptions<IFetchProfileQuery, IFetchProfileQueryVariables>): Apollo.QueryResult<IFetchProfileQuery, Exact<{
1623
- userId: Scalars["ID"];
1623
+ userId: string;
1624
1624
  }>>;
1625
1625
  export declare function useFetchProfileLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchProfileQuery, IFetchProfileQueryVariables>): Apollo.LazyQueryResultTuple<IFetchProfileQuery, Exact<{
1626
- userId: Scalars["ID"];
1626
+ userId: string;
1627
1627
  }>>;
1628
1628
  export type FetchProfileQueryHookResult = ReturnType<typeof useFetchProfileQuery>;
1629
1629
  export type FetchProfileLazyQueryHookResult = ReturnType<typeof useFetchProfileLazyQuery>;
@@ -1646,10 +1646,10 @@ export declare const FetchUserWalletsDocument: Apollo.DocumentNode;
1646
1646
  * });
1647
1647
  */
1648
1648
  export declare function useFetchUserWalletsQuery(baseOptions: Apollo.QueryHookOptions<IFetchUserWalletsQuery, IFetchUserWalletsQueryVariables>): Apollo.QueryResult<IFetchUserWalletsQuery, Exact<{
1649
- userId: Scalars["ID"];
1649
+ userId: string;
1650
1650
  }>>;
1651
1651
  export declare function useFetchUserWalletsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchUserWalletsQuery, IFetchUserWalletsQueryVariables>): Apollo.LazyQueryResultTuple<IFetchUserWalletsQuery, Exact<{
1652
- userId: Scalars["ID"];
1652
+ userId: string;
1653
1653
  }>>;
1654
1654
  export type FetchUserWalletsQueryHookResult = ReturnType<typeof useFetchUserWalletsQuery>;
1655
1655
  export type FetchUserWalletsLazyQueryHookResult = ReturnType<typeof useFetchUserWalletsLazyQuery>;