@ludo.ninja/api 2.1.3 → 2.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -299,8 +299,7 @@ export type ICollectionMarket = {
299
299
  };
300
300
  export type ICollectionPage = {
301
301
  collections: Array<Maybe<ICollection>>;
302
- nextPageToken?: Maybe<Scalars['String']>;
303
- results?: Maybe<Scalars['Long']>;
302
+ nextPage?: Maybe<IPage>;
304
303
  };
305
304
  export type ICollectionsPage = {
306
305
  collections?: Maybe<Array<Maybe<ICollection>>>;
@@ -331,9 +330,8 @@ export type ICreationFilterInput = {
331
330
  status: Scalars['String'];
332
331
  };
333
332
  export type ICreationsPage = {
334
- creations?: Maybe<Array<Maybe<ICreation>>>;
335
- nextPageToken?: Maybe<Scalars['String']>;
336
- results?: Maybe<Scalars['Long']>;
333
+ creations: Array<Maybe<ICreation>>;
334
+ nextPage?: Maybe<IPage>;
337
335
  };
338
336
  export type ICurrencyAmountPair = {
339
337
  currency?: Maybe<Scalars['String']>;
@@ -1128,6 +1126,16 @@ export type IOpportunityPage = {
1128
1126
  currentOpportunities?: Maybe<Array<Maybe<IOpportunity>>>;
1129
1127
  similarOpportunities?: Maybe<Array<Maybe<IOpportunity>>>;
1130
1128
  };
1129
+ export type IPage = {
1130
+ token?: Maybe<Scalars['String']>;
1131
+ num?: Maybe<Scalars['Int']>;
1132
+ size?: Maybe<Scalars['Int']>;
1133
+ elements?: Maybe<Scalars['Long']>;
1134
+ };
1135
+ export type IPageInput = {
1136
+ token?: Maybe<Scalars['String']>;
1137
+ size?: Maybe<Scalars['Int']>;
1138
+ };
1131
1139
  export type IProfile = {
1132
1140
  about?: Maybe<Scalars['String']>;
1133
1141
  createdAt?: Maybe<Scalars['Long']>;
@@ -1150,6 +1158,7 @@ export type IProfile = {
1150
1158
  website?: Maybe<Scalars['String']>;
1151
1159
  };
1152
1160
  export type IProfilePage = {
1161
+ nextPage?: Maybe<IPage>;
1153
1162
  nextPageToken?: Maybe<Scalars['String']>;
1154
1163
  profiles: Array<Maybe<IProfile>>;
1155
1164
  results?: Maybe<Scalars['Long']>;
@@ -1219,6 +1228,7 @@ export type IQuery = {
1219
1228
  fetchReportStatusSelections: Array<Maybe<ISelection>>;
1220
1229
  fetchSearchResultBlockchainSelections: Array<Maybe<ISelection>>;
1221
1230
  fetchSearchResultCategorySelections: Array<Maybe<ISelection>>;
1231
+ fetchSearchResultSelections: ISearchResultSelectionsPage;
1222
1232
  fetchSearchResultStatusSelections: Array<Maybe<ISelection>>;
1223
1233
  fetchSearchResultTimeSelections: Array<Maybe<ISelection>>;
1224
1234
  fetchSearchResultTypeSelections: Array<Maybe<ISelection>>;
@@ -1297,8 +1307,7 @@ export type IQueryFetchAllBannerAssetsArgs = {
1297
1307
  pageToken?: Maybe<Scalars['String']>;
1298
1308
  };
1299
1309
  export type IQueryFetchAllCreationsArgs = {
1300
- pageSize: Scalars['Int'];
1301
- pageToken?: Maybe<Scalars['String']>;
1310
+ page?: Maybe<IPageInput>;
1302
1311
  };
1303
1312
  export type IQueryFetchAllMarketsArgs = {
1304
1313
  pageSize: Scalars['Int'];
@@ -1363,8 +1372,7 @@ export type IQueryFetchCreationArgs = {
1363
1372
  };
1364
1373
  export type IQueryFetchCreationsByTypeArgs = {
1365
1374
  itemType: Scalars['String'];
1366
- pageSize: Scalars['Int'];
1367
- pageToken?: Maybe<Scalars['String']>;
1375
+ page?: Maybe<IPageInput>;
1368
1376
  };
1369
1377
  export type IQueryFetchDynamicAssetDataArgs = {
1370
1378
  assetId: Scalars['String'];
@@ -1568,8 +1576,7 @@ export type IQueryFindAssetsByTermArgs = {
1568
1576
  export type IQueryFindCollectionsArgs = {
1569
1577
  term: Scalars['String'];
1570
1578
  input: ICollectionFilterInput;
1571
- pageSize: Scalars['Int'];
1572
- pageToken?: Maybe<Scalars['String']>;
1579
+ page?: Maybe<IPageInput>;
1573
1580
  };
1574
1581
  export type IQueryFindCollectionsByTitleArgs = {
1575
1582
  input: ISearchFilterInput;
@@ -1577,10 +1584,9 @@ export type IQueryFindCollectionsByTitleArgs = {
1577
1584
  pageToken?: Maybe<Scalars['String']>;
1578
1585
  };
1579
1586
  export type IQueryFindCreationsArgs = {
1580
- input: ICreationFilterInput;
1581
- pageSize: Scalars['Int'];
1582
- pageToken?: Maybe<Scalars['String']>;
1583
1587
  term: Scalars['String'];
1588
+ input: ICreationFilterInput;
1589
+ page?: Maybe<IPageInput>;
1584
1590
  };
1585
1591
  export type IQueryFindGalleriesByNameArgs = {
1586
1592
  input: ISearchFilterInput;
@@ -1594,8 +1600,7 @@ export type IQueryFindGalleriesByTermArgs = {
1594
1600
  };
1595
1601
  export type IQueryFindProfilesByNameArgs = {
1596
1602
  name: Scalars['String'];
1597
- pageSize: Scalars['Int'];
1598
- pageToken?: Maybe<Scalars['String']>;
1603
+ page?: Maybe<IPageInput>;
1599
1604
  };
1600
1605
  export type IQueryFindProfilesByTermArgs = {
1601
1606
  pageSize: Scalars['Int'];
@@ -1623,10 +1628,9 @@ export type IQueryFindTopEntitiesByTermArgs = {
1623
1628
  term: Scalars['String'];
1624
1629
  };
1625
1630
  export type IQueryFindUserCreationsArgs = {
1626
- input: ICreationFilterInput;
1627
1631
  ownerId: Scalars['String'];
1628
- pageSize: Scalars['Int'];
1629
- pageToken?: Maybe<Scalars['String']>;
1632
+ input: ICreationFilterInput;
1633
+ page?: Maybe<IPageInput>;
1630
1634
  };
1631
1635
  export type IQueryFindUserFavoriteListsArgs = {
1632
1636
  ownerId: Scalars['String'];
@@ -1654,6 +1658,13 @@ export type ISearchFilterInput = {
1654
1658
  sort: ISelectionInput;
1655
1659
  word: Scalars['String'];
1656
1660
  };
1661
+ export type ISearchResultSelectionsPage = {
1662
+ typeSelections: Array<Maybe<ISelection>>;
1663
+ blockchainSelections: Array<Maybe<ISelection>>;
1664
+ categorySelections: Array<Maybe<ISelection>>;
1665
+ timeSelections: Array<Maybe<ISelection>>;
1666
+ statusSelections: Array<Maybe<ISelection>>;
1667
+ };
1657
1668
  export type ISelection = {
1658
1669
  name: Scalars['String'];
1659
1670
  ordering: Scalars['Int'];
@@ -2426,6 +2437,28 @@ export type IFetchInterestsQueryVariables = Exact<{
2426
2437
  export type IFetchInterestsQuery = {
2427
2438
  fetchInterests: Array<Maybe<Pick<IInterest, 'name' | 'imageUrl'>>>;
2428
2439
  };
2440
+ export type IFetchSearchResultSelectionsQueryVariables = Exact<{
2441
+ [key: string]: never;
2442
+ }>;
2443
+ export type IFetchSearchResultSelectionsQuery = {
2444
+ fetchSearchResultSelections: {
2445
+ typeSelections: Array<Maybe<(Pick<ISelection, 'label'> & {
2446
+ id: ISelection['name'];
2447
+ })>>;
2448
+ blockchainSelections: Array<Maybe<(Pick<ISelection, 'label'> & {
2449
+ id: ISelection['name'];
2450
+ })>>;
2451
+ categorySelections: Array<Maybe<(Pick<ISelection, 'label'> & {
2452
+ id: ISelection['name'];
2453
+ })>>;
2454
+ timeSelections: Array<Maybe<(Pick<ISelection, 'label'> & {
2455
+ id: ISelection['name'];
2456
+ })>>;
2457
+ statusSelections: Array<Maybe<(Pick<ISelection, 'label'> & {
2458
+ id: ISelection['name'];
2459
+ })>>;
2460
+ };
2461
+ };
2429
2462
  export type IFetchSearchResultTimeSelectionsQueryVariables = Exact<{
2430
2463
  [key: string]: never;
2431
2464
  }>;
@@ -2469,13 +2502,13 @@ export type IFetchSetsSearchResultTypeSelectionsQuery = {
2469
2502
  fetchSetsSearchResultTypeSelections: Array<Maybe<Pick<ISelection, 'name' | 'label'>>>;
2470
2503
  };
2471
2504
  export type IFetchAllCreationsQueryVariables = Exact<{
2472
- pageSize: Scalars['Int'];
2473
- pageToken?: Maybe<Scalars['String']>;
2505
+ page?: Maybe<IPageInput>;
2474
2506
  }>;
2475
2507
  export type IFetchAllCreationsQuery = {
2476
- fetchAllCreations: (Pick<ICreationsPage, 'nextPageToken'> & {
2477
- creations?: Maybe<Array<Maybe<Pick<ICreation, 'itemType' | 'itemId' | 'blockchain' | 'rank' | 'address' | 'liked' | 'likes' | 'tokenId' | 'name' | 'creatorsAddresses' | 'originalUrls' | 'media' | 'mediaPreview' | 'mimeType'>>>>;
2478
- });
2508
+ fetchAllCreations: {
2509
+ nextPage?: Maybe<Pick<IPage, 'token' | 'num' | 'size' | 'elements'>>;
2510
+ creations: Array<Maybe<Pick<ICreation, 'itemType' | 'itemId' | 'blockchain' | 'rank' | 'address' | 'liked' | 'likes' | 'tokenId' | 'name' | 'creatorsAddresses' | 'originalUrls' | 'media' | 'mediaPreview' | 'mimeType'>>>;
2511
+ };
2479
2512
  };
2480
2513
  export type IFetchAssetsCountQueryVariables = Exact<{
2481
2514
  [key: string]: never;
@@ -2484,25 +2517,25 @@ export type IFetchAssetsCountQuery = Pick<IQuery, 'fetchAssetsCount'>;
2484
2517
  export type IFindCollectionsQueryVariables = Exact<{
2485
2518
  term: Scalars['String'];
2486
2519
  input: ICollectionFilterInput;
2487
- pageSize: Scalars['Int'];
2488
- pageToken?: Maybe<Scalars['String']>;
2520
+ page?: Maybe<IPageInput>;
2489
2521
  }>;
2490
2522
  export type IFindCollectionsQuery = {
2491
- findCollections: (Pick<ICollectionPage, 'nextPageToken' | 'results'> & {
2523
+ findCollections: {
2492
2524
  collections: Array<Maybe<(Pick<ICollection, 'collectionId' | 'collectionTitle' | 'blockchain' | 'tokenId' | 'likes' | 'liked' | 'rank'> & {
2493
2525
  medias?: Maybe<Array<Maybe<Pick<IMedia, 'originalUrl' | 'url' | 'previewUrl' | 'mimeType' | 'sizeRatio' | 'fileSize'>>>>;
2494
2526
  })>>;
2495
- });
2527
+ nextPage?: Maybe<Pick<IPage, 'token' | 'num' | 'size' | 'elements'>>;
2528
+ };
2496
2529
  };
2497
2530
  export type IFetchCreationsByTypeQueryVariables = Exact<{
2498
2531
  itemType: Scalars['String'];
2499
- pageSize: Scalars['Int'];
2500
- pageToken?: Maybe<Scalars['String']>;
2532
+ page?: Maybe<IPageInput>;
2501
2533
  }>;
2502
2534
  export type IFetchCreationsByTypeQuery = {
2503
- fetchCreationsByType: (Pick<ICreationsPage, 'nextPageToken'> & {
2504
- creations?: Maybe<Array<Maybe<Pick<ICreation, 'itemType' | 'itemId' | 'blockchain' | 'rank' | 'liked' | 'likes' | 'address' | 'tokenId' | 'name' | 'creatorsAddresses' | 'originalUrls' | 'media' | 'mediaPreview' | 'mimeType'>>>>;
2505
- });
2535
+ fetchCreationsByType: {
2536
+ nextPage?: Maybe<Pick<IPage, 'token' | 'num' | 'size' | 'elements'>>;
2537
+ creations: Array<Maybe<Pick<ICreation, 'itemType' | 'itemId' | 'blockchain' | 'rank' | 'liked' | 'likes' | 'address' | 'tokenId' | 'name' | 'creatorsAddresses' | 'originalUrls' | 'media' | 'mediaPreview' | 'mimeType'>>>;
2538
+ };
2506
2539
  };
2507
2540
  export type IFindAllTopEntitiesByNameQueryVariables = Exact<{
2508
2541
  name: Scalars['String'];
@@ -2532,23 +2565,23 @@ export type IFetchUserPortfolioQuery = {
2532
2565
  export type IFindCreationsQueryVariables = Exact<{
2533
2566
  term: Scalars['String'];
2534
2567
  input: ICreationFilterInput;
2535
- pageSize: Scalars['Int'];
2536
- pageToken?: Maybe<Scalars['String']>;
2568
+ page?: Maybe<IPageInput>;
2537
2569
  }>;
2538
2570
  export type IFindCreationsQuery = {
2539
- findCreations: (Pick<ICreationsPage, 'nextPageToken' | 'results'> & {
2540
- creations?: Maybe<Array<Maybe<Pick<ICreation, 'itemType' | 'address' | 'tokenId' | 'itemId' | 'blockchain' | 'name' | 'creatorsAddresses' | 'originalUrls' | 'media' | 'mediaPreview' | 'mimeType' | 'rank' | 'likes' | 'liked'>>>>;
2541
- });
2571
+ findCreations: {
2572
+ nextPage?: Maybe<Pick<IPage, 'token' | 'num' | 'size' | 'elements'>>;
2573
+ creations: Array<Maybe<Pick<ICreation, 'itemType' | 'address' | 'tokenId' | 'itemId' | 'blockchain' | 'name' | 'creatorsAddresses' | 'originalUrls' | 'media' | 'mediaPreview' | 'mimeType' | 'rank' | 'likes' | 'liked'>>>;
2574
+ };
2542
2575
  };
2543
2576
  export type IFindProfilesByNameQueryVariables = Exact<{
2544
2577
  name: Scalars['String'];
2545
- pageSize: Scalars['Int'];
2546
- pageToken?: Maybe<Scalars['String']>;
2578
+ page?: Maybe<IPageInput>;
2547
2579
  }>;
2548
2580
  export type IFindProfilesByNameQuery = {
2549
- findProfilesByName: (Pick<IProfilePage, 'nextPageToken' | 'results'> & {
2581
+ findProfilesByName: {
2582
+ nextPage?: Maybe<Pick<IPage, 'token' | 'num' | 'size' | 'elements'>>;
2550
2583
  profiles: Array<Maybe<Pick<IProfile, 'userId' | 'username' | 'about' | 'userpic' | 'followers' | 'followings' | 'visible'>>>;
2551
- });
2584
+ };
2552
2585
  };
2553
2586
  export type IFindSetsQueryVariables = Exact<{
2554
2587
  term: Scalars['String'];
@@ -2575,13 +2608,13 @@ export type IFindShowcaseItemsQuery = {
2575
2608
  export type IFindUserCreationsQueryVariables = Exact<{
2576
2609
  ownerId: Scalars['String'];
2577
2610
  input: ICreationFilterInput;
2578
- pageSize: Scalars['Int'];
2579
- pageToken?: Maybe<Scalars['String']>;
2611
+ page?: Maybe<IPageInput>;
2580
2612
  }>;
2581
2613
  export type IFindUserCreationsQuery = {
2582
- findUserCreations: (Pick<ICreationsPage, 'nextPageToken' | 'results'> & {
2583
- creations?: Maybe<Array<Maybe<Pick<ICreation, 'id' | 'itemType' | 'tokenId' | 'address' | 'itemId' | 'blockchain' | 'rank' | 'name' | 'creatorsAddresses' | 'originalUrls' | 'media' | 'mediaPreview' | 'mimeType' | 'likes'>>>>;
2584
- });
2614
+ findUserCreations: {
2615
+ nextPage?: Maybe<Pick<IPage, 'token' | 'num' | 'size' | 'elements'>>;
2616
+ creations: Array<Maybe<Pick<ICreation, 'id' | 'itemType' | 'tokenId' | 'address' | 'itemId' | 'blockchain' | 'rank' | 'name' | 'creatorsAddresses' | 'originalUrls' | 'media' | 'mediaPreview' | 'mimeType' | 'likes'>>>;
2617
+ };
2585
2618
  };
2586
2619
  export type IFindUserShowcaseItemsQueryVariables = Exact<{
2587
2620
  ownerId: Scalars['String'];
@@ -4673,6 +4706,31 @@ export declare function useFetchInterestsLazyQuery(baseOptions?: Apollo.LazyQuer
4673
4706
  export type FetchInterestsQueryHookResult = ReturnType<typeof useFetchInterestsQuery>;
4674
4707
  export type FetchInterestsLazyQueryHookResult = ReturnType<typeof useFetchInterestsLazyQuery>;
4675
4708
  export type FetchInterestsQueryResult = Apollo.QueryResult<IFetchInterestsQuery, IFetchInterestsQueryVariables>;
4709
+ export declare const FetchSearchResultSelectionsDocument: Apollo.DocumentNode;
4710
+ /**
4711
+ * __useFetchSearchResultSelectionsQuery__
4712
+ *
4713
+ * To run a query within a React component, call `useFetchSearchResultSelectionsQuery` and pass it any options that fit your needs.
4714
+ * When your component renders, `useFetchSearchResultSelectionsQuery` returns an object from Apollo Client that contains loading, error, and data properties
4715
+ * you can use to render your UI.
4716
+ *
4717
+ * @param baseOptions options that will be passed into the query, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options;
4718
+ *
4719
+ * @example
4720
+ * const { data, loading, error } = useFetchSearchResultSelectionsQuery({
4721
+ * variables: {
4722
+ * },
4723
+ * });
4724
+ */
4725
+ export declare function useFetchSearchResultSelectionsQuery(baseOptions?: Apollo.QueryHookOptions<IFetchSearchResultSelectionsQuery, IFetchSearchResultSelectionsQueryVariables>): Apollo.QueryResult<IFetchSearchResultSelectionsQuery, Exact<{
4726
+ [key: string]: never;
4727
+ }>>;
4728
+ export declare function useFetchSearchResultSelectionsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchSearchResultSelectionsQuery, IFetchSearchResultSelectionsQueryVariables>): Apollo.LazyQueryResultTuple<IFetchSearchResultSelectionsQuery, Exact<{
4729
+ [key: string]: never;
4730
+ }>>;
4731
+ export type FetchSearchResultSelectionsQueryHookResult = ReturnType<typeof useFetchSearchResultSelectionsQuery>;
4732
+ export type FetchSearchResultSelectionsLazyQueryHookResult = ReturnType<typeof useFetchSearchResultSelectionsLazyQuery>;
4733
+ export type FetchSearchResultSelectionsQueryResult = Apollo.QueryResult<IFetchSearchResultSelectionsQuery, IFetchSearchResultSelectionsQueryVariables>;
4676
4734
  export declare const FetchSearchResultTimeSelectionsDocument: Apollo.DocumentNode;
4677
4735
  /**
4678
4736
  * __useFetchSearchResultTimeSelectionsQuery__
@@ -4861,18 +4919,15 @@ export declare const FetchAllCreationsDocument: Apollo.DocumentNode;
4861
4919
  * @example
4862
4920
  * const { data, loading, error } = useFetchAllCreationsQuery({
4863
4921
  * variables: {
4864
- * pageSize: // value for 'pageSize'
4865
- * pageToken: // value for 'pageToken'
4922
+ * page: // value for 'page'
4866
4923
  * },
4867
4924
  * });
4868
4925
  */
4869
- export declare function useFetchAllCreationsQuery(baseOptions: Apollo.QueryHookOptions<IFetchAllCreationsQuery, IFetchAllCreationsQueryVariables>): Apollo.QueryResult<IFetchAllCreationsQuery, Exact<{
4870
- pageSize: number;
4871
- pageToken?: Maybe<string> | undefined;
4926
+ export declare function useFetchAllCreationsQuery(baseOptions?: Apollo.QueryHookOptions<IFetchAllCreationsQuery, IFetchAllCreationsQueryVariables>): Apollo.QueryResult<IFetchAllCreationsQuery, Exact<{
4927
+ page?: Maybe<IPageInput> | undefined;
4872
4928
  }>>;
4873
4929
  export declare function useFetchAllCreationsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchAllCreationsQuery, IFetchAllCreationsQueryVariables>): Apollo.LazyQueryResultTuple<IFetchAllCreationsQuery, Exact<{
4874
- pageSize: number;
4875
- pageToken?: Maybe<string> | undefined;
4930
+ page?: Maybe<IPageInput> | undefined;
4876
4931
  }>>;
4877
4932
  export type FetchAllCreationsQueryHookResult = ReturnType<typeof useFetchAllCreationsQuery>;
4878
4933
  export type FetchAllCreationsLazyQueryHookResult = ReturnType<typeof useFetchAllCreationsLazyQuery>;
@@ -4917,22 +4972,19 @@ export declare const FindCollectionsDocument: Apollo.DocumentNode;
4917
4972
  * variables: {
4918
4973
  * term: // value for 'term'
4919
4974
  * input: // value for 'input'
4920
- * pageSize: // value for 'pageSize'
4921
- * pageToken: // value for 'pageToken'
4975
+ * page: // value for 'page'
4922
4976
  * },
4923
4977
  * });
4924
4978
  */
4925
4979
  export declare function useFindCollectionsQuery(baseOptions: Apollo.QueryHookOptions<IFindCollectionsQuery, IFindCollectionsQueryVariables>): Apollo.QueryResult<IFindCollectionsQuery, Exact<{
4926
4980
  term: string;
4927
4981
  input: ICollectionFilterInput;
4928
- pageSize: number;
4929
- pageToken?: Maybe<string> | undefined;
4982
+ page?: Maybe<IPageInput> | undefined;
4930
4983
  }>>;
4931
4984
  export declare function useFindCollectionsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFindCollectionsQuery, IFindCollectionsQueryVariables>): Apollo.LazyQueryResultTuple<IFindCollectionsQuery, Exact<{
4932
4985
  term: string;
4933
4986
  input: ICollectionFilterInput;
4934
- pageSize: number;
4935
- pageToken?: Maybe<string> | undefined;
4987
+ page?: Maybe<IPageInput> | undefined;
4936
4988
  }>>;
4937
4989
  export type FindCollectionsQueryHookResult = ReturnType<typeof useFindCollectionsQuery>;
4938
4990
  export type FindCollectionsLazyQueryHookResult = ReturnType<typeof useFindCollectionsLazyQuery>;
@@ -4951,20 +5003,17 @@ export declare const FetchCreationsByTypeDocument: Apollo.DocumentNode;
4951
5003
  * const { data, loading, error } = useFetchCreationsByTypeQuery({
4952
5004
  * variables: {
4953
5005
  * itemType: // value for 'itemType'
4954
- * pageSize: // value for 'pageSize'
4955
- * pageToken: // value for 'pageToken'
5006
+ * page: // value for 'page'
4956
5007
  * },
4957
5008
  * });
4958
5009
  */
4959
5010
  export declare function useFetchCreationsByTypeQuery(baseOptions: Apollo.QueryHookOptions<IFetchCreationsByTypeQuery, IFetchCreationsByTypeQueryVariables>): Apollo.QueryResult<IFetchCreationsByTypeQuery, Exact<{
4960
5011
  itemType: string;
4961
- pageSize: number;
4962
- pageToken?: Maybe<string> | undefined;
5012
+ page?: Maybe<IPageInput> | undefined;
4963
5013
  }>>;
4964
5014
  export declare function useFetchCreationsByTypeLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchCreationsByTypeQuery, IFetchCreationsByTypeQueryVariables>): Apollo.LazyQueryResultTuple<IFetchCreationsByTypeQuery, Exact<{
4965
5015
  itemType: string;
4966
- pageSize: number;
4967
- pageToken?: Maybe<string> | undefined;
5016
+ page?: Maybe<IPageInput> | undefined;
4968
5017
  }>>;
4969
5018
  export type FetchCreationsByTypeQueryHookResult = ReturnType<typeof useFetchCreationsByTypeQuery>;
4970
5019
  export type FetchCreationsByTypeLazyQueryHookResult = ReturnType<typeof useFetchCreationsByTypeLazyQuery>;
@@ -5039,22 +5088,19 @@ export declare const FindCreationsDocument: Apollo.DocumentNode;
5039
5088
  * variables: {
5040
5089
  * term: // value for 'term'
5041
5090
  * input: // value for 'input'
5042
- * pageSize: // value for 'pageSize'
5043
- * pageToken: // value for 'pageToken'
5091
+ * page: // value for 'page'
5044
5092
  * },
5045
5093
  * });
5046
5094
  */
5047
5095
  export declare function useFindCreationsQuery(baseOptions: Apollo.QueryHookOptions<IFindCreationsQuery, IFindCreationsQueryVariables>): Apollo.QueryResult<IFindCreationsQuery, Exact<{
5048
5096
  term: string;
5049
5097
  input: ICreationFilterInput;
5050
- pageSize: number;
5051
- pageToken?: Maybe<string> | undefined;
5098
+ page?: Maybe<IPageInput> | undefined;
5052
5099
  }>>;
5053
5100
  export declare function useFindCreationsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFindCreationsQuery, IFindCreationsQueryVariables>): Apollo.LazyQueryResultTuple<IFindCreationsQuery, Exact<{
5054
5101
  term: string;
5055
5102
  input: ICreationFilterInput;
5056
- pageSize: number;
5057
- pageToken?: Maybe<string> | undefined;
5103
+ page?: Maybe<IPageInput> | undefined;
5058
5104
  }>>;
5059
5105
  export type FindCreationsQueryHookResult = ReturnType<typeof useFindCreationsQuery>;
5060
5106
  export type FindCreationsLazyQueryHookResult = ReturnType<typeof useFindCreationsLazyQuery>;
@@ -5073,20 +5119,17 @@ export declare const FindProfilesByNameDocument: Apollo.DocumentNode;
5073
5119
  * const { data, loading, error } = useFindProfilesByNameQuery({
5074
5120
  * variables: {
5075
5121
  * name: // value for 'name'
5076
- * pageSize: // value for 'pageSize'
5077
- * pageToken: // value for 'pageToken'
5122
+ * page: // value for 'page'
5078
5123
  * },
5079
5124
  * });
5080
5125
  */
5081
5126
  export declare function useFindProfilesByNameQuery(baseOptions: Apollo.QueryHookOptions<IFindProfilesByNameQuery, IFindProfilesByNameQueryVariables>): Apollo.QueryResult<IFindProfilesByNameQuery, Exact<{
5082
5127
  name: string;
5083
- pageSize: number;
5084
- pageToken?: Maybe<string> | undefined;
5128
+ page?: Maybe<IPageInput> | undefined;
5085
5129
  }>>;
5086
5130
  export declare function useFindProfilesByNameLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFindProfilesByNameQuery, IFindProfilesByNameQueryVariables>): Apollo.LazyQueryResultTuple<IFindProfilesByNameQuery, Exact<{
5087
5131
  name: string;
5088
- pageSize: number;
5089
- pageToken?: Maybe<string> | undefined;
5132
+ page?: Maybe<IPageInput> | undefined;
5090
5133
  }>>;
5091
5134
  export type FindProfilesByNameQueryHookResult = ReturnType<typeof useFindProfilesByNameQuery>;
5092
5135
  export type FindProfilesByNameLazyQueryHookResult = ReturnType<typeof useFindProfilesByNameLazyQuery>;
@@ -5176,22 +5219,19 @@ export declare const FindUserCreationsDocument: Apollo.DocumentNode;
5176
5219
  * variables: {
5177
5220
  * ownerId: // value for 'ownerId'
5178
5221
  * input: // value for 'input'
5179
- * pageSize: // value for 'pageSize'
5180
- * pageToken: // value for 'pageToken'
5222
+ * page: // value for 'page'
5181
5223
  * },
5182
5224
  * });
5183
5225
  */
5184
5226
  export declare function useFindUserCreationsQuery(baseOptions: Apollo.QueryHookOptions<IFindUserCreationsQuery, IFindUserCreationsQueryVariables>): Apollo.QueryResult<IFindUserCreationsQuery, Exact<{
5185
5227
  ownerId: string;
5186
5228
  input: ICreationFilterInput;
5187
- pageSize: number;
5188
- pageToken?: Maybe<string> | undefined;
5229
+ page?: Maybe<IPageInput> | undefined;
5189
5230
  }>>;
5190
5231
  export declare function useFindUserCreationsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFindUserCreationsQuery, IFindUserCreationsQueryVariables>): Apollo.LazyQueryResultTuple<IFindUserCreationsQuery, Exact<{
5191
5232
  ownerId: string;
5192
5233
  input: ICreationFilterInput;
5193
- pageSize: number;
5194
- pageToken?: Maybe<string> | undefined;
5234
+ page?: Maybe<IPageInput> | undefined;
5195
5235
  }>>;
5196
5236
  export type FindUserCreationsQueryHookResult = ReturnType<typeof useFindUserCreationsQuery>;
5197
5237
  export type FindUserCreationsLazyQueryHookResult = ReturnType<typeof useFindUserCreationsLazyQuery>;