@ludo.ninja/api 2.1.7 → 2.1.8
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,7 +299,8 @@ export type ICollectionMarket = {
|
|
|
299
299
|
};
|
|
300
300
|
export type ICollectionPage = {
|
|
301
301
|
collections: Array<Maybe<ICollection>>;
|
|
302
|
-
|
|
302
|
+
nextPageToken?: Maybe<Scalars['String']>;
|
|
303
|
+
results?: Maybe<Scalars['Long']>;
|
|
303
304
|
};
|
|
304
305
|
export type ICollectionsPage = {
|
|
305
306
|
collections?: Maybe<Array<Maybe<ICollection>>>;
|
|
@@ -330,8 +331,9 @@ export type ICreationFilterInput = {
|
|
|
330
331
|
status: Scalars['String'];
|
|
331
332
|
};
|
|
332
333
|
export type ICreationsPage = {
|
|
333
|
-
creations
|
|
334
|
-
|
|
334
|
+
creations?: Maybe<Array<Maybe<ICreation>>>;
|
|
335
|
+
nextPageToken?: Maybe<Scalars['String']>;
|
|
336
|
+
results?: Maybe<Scalars['Long']>;
|
|
335
337
|
};
|
|
336
338
|
export type ICurrencyAmountPair = {
|
|
337
339
|
currency?: Maybe<Scalars['String']>;
|
|
@@ -694,6 +696,7 @@ export type IMutation = {
|
|
|
694
696
|
removeCollectionFromGalleryV2: Scalars['Boolean'];
|
|
695
697
|
removeCreationFromGallery: Scalars['Boolean'];
|
|
696
698
|
removeCreationFromGalleryV2: Scalars['Boolean'];
|
|
699
|
+
removeWallet: Scalars['Boolean'];
|
|
697
700
|
reportAsset: Scalars['Boolean'];
|
|
698
701
|
reportGallery: Scalars['Boolean'];
|
|
699
702
|
reportUser: Scalars['Boolean'];
|
|
@@ -940,6 +943,10 @@ export type IMutationRemoveCreationFromGalleryV2Args = {
|
|
|
940
943
|
galleryId: Scalars['ID'];
|
|
941
944
|
creationId: Scalars['String'];
|
|
942
945
|
};
|
|
946
|
+
export type IMutationRemoveWalletArgs = {
|
|
947
|
+
blockchain: Scalars['String'];
|
|
948
|
+
address: Scalars['String'];
|
|
949
|
+
};
|
|
943
950
|
export type IMutationReportAssetArgs = {
|
|
944
951
|
assetId: Scalars['String'];
|
|
945
952
|
reason: ISelectionInput;
|
|
@@ -1126,16 +1133,6 @@ export type IOpportunityPage = {
|
|
|
1126
1133
|
currentOpportunities?: Maybe<Array<Maybe<IOpportunity>>>;
|
|
1127
1134
|
similarOpportunities?: Maybe<Array<Maybe<IOpportunity>>>;
|
|
1128
1135
|
};
|
|
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
|
-
};
|
|
1139
1136
|
export type IProfile = {
|
|
1140
1137
|
about?: Maybe<Scalars['String']>;
|
|
1141
1138
|
createdAt?: Maybe<Scalars['Long']>;
|
|
@@ -1158,7 +1155,6 @@ export type IProfile = {
|
|
|
1158
1155
|
website?: Maybe<Scalars['String']>;
|
|
1159
1156
|
};
|
|
1160
1157
|
export type IProfilePage = {
|
|
1161
|
-
nextPage?: Maybe<IPage>;
|
|
1162
1158
|
nextPageToken?: Maybe<Scalars['String']>;
|
|
1163
1159
|
profiles: Array<Maybe<IProfile>>;
|
|
1164
1160
|
results?: Maybe<Scalars['Long']>;
|
|
@@ -1307,7 +1303,8 @@ export type IQueryFetchAllBannerAssetsArgs = {
|
|
|
1307
1303
|
pageToken?: Maybe<Scalars['String']>;
|
|
1308
1304
|
};
|
|
1309
1305
|
export type IQueryFetchAllCreationsArgs = {
|
|
1310
|
-
|
|
1306
|
+
pageSize: Scalars['Int'];
|
|
1307
|
+
pageToken?: Maybe<Scalars['String']>;
|
|
1311
1308
|
};
|
|
1312
1309
|
export type IQueryFetchAllMarketsArgs = {
|
|
1313
1310
|
pageSize: Scalars['Int'];
|
|
@@ -1372,7 +1369,8 @@ export type IQueryFetchCreationArgs = {
|
|
|
1372
1369
|
};
|
|
1373
1370
|
export type IQueryFetchCreationsByTypeArgs = {
|
|
1374
1371
|
itemType: Scalars['String'];
|
|
1375
|
-
|
|
1372
|
+
pageSize: Scalars['Int'];
|
|
1373
|
+
pageToken?: Maybe<Scalars['String']>;
|
|
1376
1374
|
};
|
|
1377
1375
|
export type IQueryFetchDynamicAssetDataArgs = {
|
|
1378
1376
|
assetId: Scalars['String'];
|
|
@@ -1576,7 +1574,8 @@ export type IQueryFindAssetsByTermArgs = {
|
|
|
1576
1574
|
export type IQueryFindCollectionsArgs = {
|
|
1577
1575
|
term: Scalars['String'];
|
|
1578
1576
|
input: ICollectionFilterInput;
|
|
1579
|
-
|
|
1577
|
+
pageSize: Scalars['Int'];
|
|
1578
|
+
pageToken?: Maybe<Scalars['String']>;
|
|
1580
1579
|
};
|
|
1581
1580
|
export type IQueryFindCollectionsByTitleArgs = {
|
|
1582
1581
|
input: ISearchFilterInput;
|
|
@@ -1584,9 +1583,10 @@ export type IQueryFindCollectionsByTitleArgs = {
|
|
|
1584
1583
|
pageToken?: Maybe<Scalars['String']>;
|
|
1585
1584
|
};
|
|
1586
1585
|
export type IQueryFindCreationsArgs = {
|
|
1587
|
-
term: Scalars['String'];
|
|
1588
1586
|
input: ICreationFilterInput;
|
|
1589
|
-
|
|
1587
|
+
pageSize: Scalars['Int'];
|
|
1588
|
+
pageToken?: Maybe<Scalars['String']>;
|
|
1589
|
+
term: Scalars['String'];
|
|
1590
1590
|
};
|
|
1591
1591
|
export type IQueryFindGalleriesByNameArgs = {
|
|
1592
1592
|
input: ISearchFilterInput;
|
|
@@ -1600,7 +1600,8 @@ export type IQueryFindGalleriesByTermArgs = {
|
|
|
1600
1600
|
};
|
|
1601
1601
|
export type IQueryFindProfilesByNameArgs = {
|
|
1602
1602
|
name: Scalars['String'];
|
|
1603
|
-
|
|
1603
|
+
pageSize: Scalars['Int'];
|
|
1604
|
+
pageToken?: Maybe<Scalars['String']>;
|
|
1604
1605
|
};
|
|
1605
1606
|
export type IQueryFindProfilesByTermArgs = {
|
|
1606
1607
|
pageSize: Scalars['Int'];
|
|
@@ -1628,9 +1629,10 @@ export type IQueryFindTopEntitiesByTermArgs = {
|
|
|
1628
1629
|
term: Scalars['String'];
|
|
1629
1630
|
};
|
|
1630
1631
|
export type IQueryFindUserCreationsArgs = {
|
|
1631
|
-
ownerId: Scalars['String'];
|
|
1632
1632
|
input: ICreationFilterInput;
|
|
1633
|
-
|
|
1633
|
+
ownerId: Scalars['String'];
|
|
1634
|
+
pageSize: Scalars['Int'];
|
|
1635
|
+
pageToken?: Maybe<Scalars['String']>;
|
|
1634
1636
|
};
|
|
1635
1637
|
export type IQueryFindUserFavoriteListsArgs = {
|
|
1636
1638
|
ownerId: Scalars['String'];
|
|
@@ -2325,6 +2327,11 @@ export type IRefreshTokenMutationVariables = Exact<{
|
|
|
2325
2327
|
export type IRefreshTokenMutation = {
|
|
2326
2328
|
refreshToken: Pick<ITokenPair, 'userId' | 'tokenAuth' | 'tokenRefresh' | 'role'>;
|
|
2327
2329
|
};
|
|
2330
|
+
export type IRemoveWalletMutationVariables = Exact<{
|
|
2331
|
+
blockchain: Scalars['String'];
|
|
2332
|
+
address: Scalars['String'];
|
|
2333
|
+
}>;
|
|
2334
|
+
export type IRemoveWalletMutation = Pick<IMutation, 'removeWallet'>;
|
|
2328
2335
|
export type IRevokeTokenMutationVariables = Exact<{
|
|
2329
2336
|
[key: string]: never;
|
|
2330
2337
|
}>;
|
|
@@ -2502,13 +2509,13 @@ export type IFetchSetsSearchResultTypeSelectionsQuery = {
|
|
|
2502
2509
|
fetchSetsSearchResultTypeSelections: Array<Maybe<Pick<ISelection, 'name' | 'label'>>>;
|
|
2503
2510
|
};
|
|
2504
2511
|
export type IFetchAllCreationsQueryVariables = Exact<{
|
|
2505
|
-
|
|
2512
|
+
pageSize: Scalars['Int'];
|
|
2513
|
+
pageToken?: Maybe<Scalars['String']>;
|
|
2506
2514
|
}>;
|
|
2507
2515
|
export type IFetchAllCreationsQuery = {
|
|
2508
|
-
fetchAllCreations: {
|
|
2509
|
-
|
|
2510
|
-
|
|
2511
|
-
};
|
|
2516
|
+
fetchAllCreations: (Pick<ICreationsPage, 'nextPageToken'> & {
|
|
2517
|
+
creations?: Maybe<Array<Maybe<Pick<ICreation, 'itemType' | 'itemId' | 'blockchain' | 'rank' | 'address' | 'liked' | 'likes' | 'tokenId' | 'name' | 'creatorsAddresses' | 'originalUrls' | 'media' | 'mediaPreview' | 'mimeType'>>>>;
|
|
2518
|
+
});
|
|
2512
2519
|
};
|
|
2513
2520
|
export type IFetchAssetsCountQueryVariables = Exact<{
|
|
2514
2521
|
[key: string]: never;
|
|
@@ -2517,25 +2524,25 @@ export type IFetchAssetsCountQuery = Pick<IQuery, 'fetchAssetsCount'>;
|
|
|
2517
2524
|
export type IFindCollectionsQueryVariables = Exact<{
|
|
2518
2525
|
term: Scalars['String'];
|
|
2519
2526
|
input: ICollectionFilterInput;
|
|
2520
|
-
|
|
2527
|
+
pageSize: Scalars['Int'];
|
|
2528
|
+
pageToken?: Maybe<Scalars['String']>;
|
|
2521
2529
|
}>;
|
|
2522
2530
|
export type IFindCollectionsQuery = {
|
|
2523
|
-
findCollections: {
|
|
2531
|
+
findCollections: (Pick<ICollectionPage, 'nextPageToken' | 'results'> & {
|
|
2524
2532
|
collections: Array<Maybe<(Pick<ICollection, 'collectionId' | 'collectionTitle' | 'blockchain' | 'tokenId' | 'likes' | 'liked' | 'rank'> & {
|
|
2525
2533
|
medias?: Maybe<Array<Maybe<Pick<IMedia, 'originalUrl' | 'url' | 'previewUrl' | 'mimeType' | 'sizeRatio' | 'fileSize'>>>>;
|
|
2526
2534
|
})>>;
|
|
2527
|
-
|
|
2528
|
-
};
|
|
2535
|
+
});
|
|
2529
2536
|
};
|
|
2530
2537
|
export type IFetchCreationsByTypeQueryVariables = Exact<{
|
|
2531
2538
|
itemType: Scalars['String'];
|
|
2532
|
-
|
|
2539
|
+
pageSize: Scalars['Int'];
|
|
2540
|
+
pageToken?: Maybe<Scalars['String']>;
|
|
2533
2541
|
}>;
|
|
2534
2542
|
export type IFetchCreationsByTypeQuery = {
|
|
2535
|
-
fetchCreationsByType: {
|
|
2536
|
-
|
|
2537
|
-
|
|
2538
|
-
};
|
|
2543
|
+
fetchCreationsByType: (Pick<ICreationsPage, 'nextPageToken'> & {
|
|
2544
|
+
creations?: Maybe<Array<Maybe<Pick<ICreation, 'itemType' | 'itemId' | 'blockchain' | 'rank' | 'liked' | 'likes' | 'address' | 'tokenId' | 'name' | 'creatorsAddresses' | 'originalUrls' | 'media' | 'mediaPreview' | 'mimeType'>>>>;
|
|
2545
|
+
});
|
|
2539
2546
|
};
|
|
2540
2547
|
export type IFindAllTopEntitiesByNameQueryVariables = Exact<{
|
|
2541
2548
|
name: Scalars['String'];
|
|
@@ -2565,23 +2572,23 @@ export type IFetchUserPortfolioQuery = {
|
|
|
2565
2572
|
export type IFindCreationsQueryVariables = Exact<{
|
|
2566
2573
|
term: Scalars['String'];
|
|
2567
2574
|
input: ICreationFilterInput;
|
|
2568
|
-
|
|
2575
|
+
pageSize: Scalars['Int'];
|
|
2576
|
+
pageToken?: Maybe<Scalars['String']>;
|
|
2569
2577
|
}>;
|
|
2570
2578
|
export type IFindCreationsQuery = {
|
|
2571
|
-
findCreations: {
|
|
2572
|
-
|
|
2573
|
-
|
|
2574
|
-
};
|
|
2579
|
+
findCreations: (Pick<ICreationsPage, 'nextPageToken' | 'results'> & {
|
|
2580
|
+
creations?: Maybe<Array<Maybe<Pick<ICreation, 'itemType' | 'address' | 'tokenId' | 'itemId' | 'blockchain' | 'name' | 'creatorsAddresses' | 'originalUrls' | 'media' | 'mediaPreview' | 'mimeType' | 'rank' | 'likes' | 'liked'>>>>;
|
|
2581
|
+
});
|
|
2575
2582
|
};
|
|
2576
2583
|
export type IFindProfilesByNameQueryVariables = Exact<{
|
|
2577
2584
|
name: Scalars['String'];
|
|
2578
|
-
|
|
2585
|
+
pageSize: Scalars['Int'];
|
|
2586
|
+
pageToken?: Maybe<Scalars['String']>;
|
|
2579
2587
|
}>;
|
|
2580
2588
|
export type IFindProfilesByNameQuery = {
|
|
2581
|
-
findProfilesByName: {
|
|
2582
|
-
nextPage?: Maybe<Pick<IPage, 'token' | 'num' | 'size' | 'elements'>>;
|
|
2589
|
+
findProfilesByName: (Pick<IProfilePage, 'nextPageToken' | 'results'> & {
|
|
2583
2590
|
profiles: Array<Maybe<Pick<IProfile, 'userId' | 'username' | 'about' | 'userpic' | 'followers' | 'followings' | 'visible'>>>;
|
|
2584
|
-
};
|
|
2591
|
+
});
|
|
2585
2592
|
};
|
|
2586
2593
|
export type IFindSetsQueryVariables = Exact<{
|
|
2587
2594
|
term: Scalars['String'];
|
|
@@ -2608,13 +2615,13 @@ export type IFindShowcaseItemsQuery = {
|
|
|
2608
2615
|
export type IFindUserCreationsQueryVariables = Exact<{
|
|
2609
2616
|
ownerId: Scalars['String'];
|
|
2610
2617
|
input: ICreationFilterInput;
|
|
2611
|
-
|
|
2618
|
+
pageSize: Scalars['Int'];
|
|
2619
|
+
pageToken?: Maybe<Scalars['String']>;
|
|
2612
2620
|
}>;
|
|
2613
2621
|
export type IFindUserCreationsQuery = {
|
|
2614
|
-
findUserCreations: {
|
|
2615
|
-
|
|
2616
|
-
|
|
2617
|
-
};
|
|
2622
|
+
findUserCreations: (Pick<ICreationsPage, 'nextPageToken' | 'results'> & {
|
|
2623
|
+
creations?: Maybe<Array<Maybe<Pick<ICreation, 'id' | 'itemType' | 'tokenId' | 'address' | 'itemId' | 'blockchain' | 'rank' | 'name' | 'creatorsAddresses' | 'originalUrls' | 'media' | 'mediaPreview' | 'mimeType' | 'likes'>>>>;
|
|
2624
|
+
});
|
|
2618
2625
|
};
|
|
2619
2626
|
export type IFindUserShowcaseItemsQueryVariables = Exact<{
|
|
2620
2627
|
ownerId: Scalars['String'];
|
|
@@ -4229,6 +4236,33 @@ export declare function useRefreshTokenMutation(baseOptions?: Apollo.MutationHoo
|
|
|
4229
4236
|
export type RefreshTokenMutationHookResult = ReturnType<typeof useRefreshTokenMutation>;
|
|
4230
4237
|
export type RefreshTokenMutationResult = Apollo.MutationResult<IRefreshTokenMutation>;
|
|
4231
4238
|
export type RefreshTokenMutationOptions = Apollo.BaseMutationOptions<IRefreshTokenMutation, IRefreshTokenMutationVariables>;
|
|
4239
|
+
export declare const RemoveWalletDocument: Apollo.DocumentNode;
|
|
4240
|
+
export type IRemoveWalletMutationFn = Apollo.MutationFunction<IRemoveWalletMutation, IRemoveWalletMutationVariables>;
|
|
4241
|
+
/**
|
|
4242
|
+
* __useRemoveWalletMutation__
|
|
4243
|
+
*
|
|
4244
|
+
* To run a mutation, you first call `useRemoveWalletMutation` within a React component and pass it any options that fit your needs.
|
|
4245
|
+
* When your component renders, `useRemoveWalletMutation` returns a tuple that includes:
|
|
4246
|
+
* - A mutate function that you can call at any time to execute the mutation
|
|
4247
|
+
* - An object with fields that represent the current status of the mutation's execution
|
|
4248
|
+
*
|
|
4249
|
+
* @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2;
|
|
4250
|
+
*
|
|
4251
|
+
* @example
|
|
4252
|
+
* const [removeWalletMutation, { data, loading, error }] = useRemoveWalletMutation({
|
|
4253
|
+
* variables: {
|
|
4254
|
+
* blockchain: // value for 'blockchain'
|
|
4255
|
+
* address: // value for 'address'
|
|
4256
|
+
* },
|
|
4257
|
+
* });
|
|
4258
|
+
*/
|
|
4259
|
+
export declare function useRemoveWalletMutation(baseOptions?: Apollo.MutationHookOptions<IRemoveWalletMutation, IRemoveWalletMutationVariables>): Apollo.MutationTuple<IRemoveWalletMutation, Exact<{
|
|
4260
|
+
blockchain: string;
|
|
4261
|
+
address: string;
|
|
4262
|
+
}>, Apollo.DefaultContext, Apollo.ApolloCache<any>>;
|
|
4263
|
+
export type RemoveWalletMutationHookResult = ReturnType<typeof useRemoveWalletMutation>;
|
|
4264
|
+
export type RemoveWalletMutationResult = Apollo.MutationResult<IRemoveWalletMutation>;
|
|
4265
|
+
export type RemoveWalletMutationOptions = Apollo.BaseMutationOptions<IRemoveWalletMutation, IRemoveWalletMutationVariables>;
|
|
4232
4266
|
export declare const RevokeTokenDocument: Apollo.DocumentNode;
|
|
4233
4267
|
export type IRevokeTokenMutationFn = Apollo.MutationFunction<IRevokeTokenMutation, IRevokeTokenMutationVariables>;
|
|
4234
4268
|
/**
|
|
@@ -4919,15 +4953,18 @@ export declare const FetchAllCreationsDocument: Apollo.DocumentNode;
|
|
|
4919
4953
|
* @example
|
|
4920
4954
|
* const { data, loading, error } = useFetchAllCreationsQuery({
|
|
4921
4955
|
* variables: {
|
|
4922
|
-
*
|
|
4956
|
+
* pageSize: // value for 'pageSize'
|
|
4957
|
+
* pageToken: // value for 'pageToken'
|
|
4923
4958
|
* },
|
|
4924
4959
|
* });
|
|
4925
4960
|
*/
|
|
4926
|
-
export declare function useFetchAllCreationsQuery(baseOptions
|
|
4927
|
-
|
|
4961
|
+
export declare function useFetchAllCreationsQuery(baseOptions: Apollo.QueryHookOptions<IFetchAllCreationsQuery, IFetchAllCreationsQueryVariables>): Apollo.QueryResult<IFetchAllCreationsQuery, Exact<{
|
|
4962
|
+
pageSize: number;
|
|
4963
|
+
pageToken?: Maybe<string> | undefined;
|
|
4928
4964
|
}>>;
|
|
4929
4965
|
export declare function useFetchAllCreationsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchAllCreationsQuery, IFetchAllCreationsQueryVariables>): Apollo.LazyQueryResultTuple<IFetchAllCreationsQuery, Exact<{
|
|
4930
|
-
|
|
4966
|
+
pageSize: number;
|
|
4967
|
+
pageToken?: Maybe<string> | undefined;
|
|
4931
4968
|
}>>;
|
|
4932
4969
|
export type FetchAllCreationsQueryHookResult = ReturnType<typeof useFetchAllCreationsQuery>;
|
|
4933
4970
|
export type FetchAllCreationsLazyQueryHookResult = ReturnType<typeof useFetchAllCreationsLazyQuery>;
|
|
@@ -4972,19 +5009,22 @@ export declare const FindCollectionsDocument: Apollo.DocumentNode;
|
|
|
4972
5009
|
* variables: {
|
|
4973
5010
|
* term: // value for 'term'
|
|
4974
5011
|
* input: // value for 'input'
|
|
4975
|
-
*
|
|
5012
|
+
* pageSize: // value for 'pageSize'
|
|
5013
|
+
* pageToken: // value for 'pageToken'
|
|
4976
5014
|
* },
|
|
4977
5015
|
* });
|
|
4978
5016
|
*/
|
|
4979
5017
|
export declare function useFindCollectionsQuery(baseOptions: Apollo.QueryHookOptions<IFindCollectionsQuery, IFindCollectionsQueryVariables>): Apollo.QueryResult<IFindCollectionsQuery, Exact<{
|
|
4980
5018
|
term: string;
|
|
4981
5019
|
input: ICollectionFilterInput;
|
|
4982
|
-
|
|
5020
|
+
pageSize: number;
|
|
5021
|
+
pageToken?: Maybe<string> | undefined;
|
|
4983
5022
|
}>>;
|
|
4984
5023
|
export declare function useFindCollectionsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFindCollectionsQuery, IFindCollectionsQueryVariables>): Apollo.LazyQueryResultTuple<IFindCollectionsQuery, Exact<{
|
|
4985
5024
|
term: string;
|
|
4986
5025
|
input: ICollectionFilterInput;
|
|
4987
|
-
|
|
5026
|
+
pageSize: number;
|
|
5027
|
+
pageToken?: Maybe<string> | undefined;
|
|
4988
5028
|
}>>;
|
|
4989
5029
|
export type FindCollectionsQueryHookResult = ReturnType<typeof useFindCollectionsQuery>;
|
|
4990
5030
|
export type FindCollectionsLazyQueryHookResult = ReturnType<typeof useFindCollectionsLazyQuery>;
|
|
@@ -5003,17 +5043,20 @@ export declare const FetchCreationsByTypeDocument: Apollo.DocumentNode;
|
|
|
5003
5043
|
* const { data, loading, error } = useFetchCreationsByTypeQuery({
|
|
5004
5044
|
* variables: {
|
|
5005
5045
|
* itemType: // value for 'itemType'
|
|
5006
|
-
*
|
|
5046
|
+
* pageSize: // value for 'pageSize'
|
|
5047
|
+
* pageToken: // value for 'pageToken'
|
|
5007
5048
|
* },
|
|
5008
5049
|
* });
|
|
5009
5050
|
*/
|
|
5010
5051
|
export declare function useFetchCreationsByTypeQuery(baseOptions: Apollo.QueryHookOptions<IFetchCreationsByTypeQuery, IFetchCreationsByTypeQueryVariables>): Apollo.QueryResult<IFetchCreationsByTypeQuery, Exact<{
|
|
5011
5052
|
itemType: string;
|
|
5012
|
-
|
|
5053
|
+
pageSize: number;
|
|
5054
|
+
pageToken?: Maybe<string> | undefined;
|
|
5013
5055
|
}>>;
|
|
5014
5056
|
export declare function useFetchCreationsByTypeLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFetchCreationsByTypeQuery, IFetchCreationsByTypeQueryVariables>): Apollo.LazyQueryResultTuple<IFetchCreationsByTypeQuery, Exact<{
|
|
5015
5057
|
itemType: string;
|
|
5016
|
-
|
|
5058
|
+
pageSize: number;
|
|
5059
|
+
pageToken?: Maybe<string> | undefined;
|
|
5017
5060
|
}>>;
|
|
5018
5061
|
export type FetchCreationsByTypeQueryHookResult = ReturnType<typeof useFetchCreationsByTypeQuery>;
|
|
5019
5062
|
export type FetchCreationsByTypeLazyQueryHookResult = ReturnType<typeof useFetchCreationsByTypeLazyQuery>;
|
|
@@ -5088,19 +5131,22 @@ export declare const FindCreationsDocument: Apollo.DocumentNode;
|
|
|
5088
5131
|
* variables: {
|
|
5089
5132
|
* term: // value for 'term'
|
|
5090
5133
|
* input: // value for 'input'
|
|
5091
|
-
*
|
|
5134
|
+
* pageSize: // value for 'pageSize'
|
|
5135
|
+
* pageToken: // value for 'pageToken'
|
|
5092
5136
|
* },
|
|
5093
5137
|
* });
|
|
5094
5138
|
*/
|
|
5095
5139
|
export declare function useFindCreationsQuery(baseOptions: Apollo.QueryHookOptions<IFindCreationsQuery, IFindCreationsQueryVariables>): Apollo.QueryResult<IFindCreationsQuery, Exact<{
|
|
5096
5140
|
term: string;
|
|
5097
5141
|
input: ICreationFilterInput;
|
|
5098
|
-
|
|
5142
|
+
pageSize: number;
|
|
5143
|
+
pageToken?: Maybe<string> | undefined;
|
|
5099
5144
|
}>>;
|
|
5100
5145
|
export declare function useFindCreationsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFindCreationsQuery, IFindCreationsQueryVariables>): Apollo.LazyQueryResultTuple<IFindCreationsQuery, Exact<{
|
|
5101
5146
|
term: string;
|
|
5102
5147
|
input: ICreationFilterInput;
|
|
5103
|
-
|
|
5148
|
+
pageSize: number;
|
|
5149
|
+
pageToken?: Maybe<string> | undefined;
|
|
5104
5150
|
}>>;
|
|
5105
5151
|
export type FindCreationsQueryHookResult = ReturnType<typeof useFindCreationsQuery>;
|
|
5106
5152
|
export type FindCreationsLazyQueryHookResult = ReturnType<typeof useFindCreationsLazyQuery>;
|
|
@@ -5119,17 +5165,20 @@ export declare const FindProfilesByNameDocument: Apollo.DocumentNode;
|
|
|
5119
5165
|
* const { data, loading, error } = useFindProfilesByNameQuery({
|
|
5120
5166
|
* variables: {
|
|
5121
5167
|
* name: // value for 'name'
|
|
5122
|
-
*
|
|
5168
|
+
* pageSize: // value for 'pageSize'
|
|
5169
|
+
* pageToken: // value for 'pageToken'
|
|
5123
5170
|
* },
|
|
5124
5171
|
* });
|
|
5125
5172
|
*/
|
|
5126
5173
|
export declare function useFindProfilesByNameQuery(baseOptions: Apollo.QueryHookOptions<IFindProfilesByNameQuery, IFindProfilesByNameQueryVariables>): Apollo.QueryResult<IFindProfilesByNameQuery, Exact<{
|
|
5127
5174
|
name: string;
|
|
5128
|
-
|
|
5175
|
+
pageSize: number;
|
|
5176
|
+
pageToken?: Maybe<string> | undefined;
|
|
5129
5177
|
}>>;
|
|
5130
5178
|
export declare function useFindProfilesByNameLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFindProfilesByNameQuery, IFindProfilesByNameQueryVariables>): Apollo.LazyQueryResultTuple<IFindProfilesByNameQuery, Exact<{
|
|
5131
5179
|
name: string;
|
|
5132
|
-
|
|
5180
|
+
pageSize: number;
|
|
5181
|
+
pageToken?: Maybe<string> | undefined;
|
|
5133
5182
|
}>>;
|
|
5134
5183
|
export type FindProfilesByNameQueryHookResult = ReturnType<typeof useFindProfilesByNameQuery>;
|
|
5135
5184
|
export type FindProfilesByNameLazyQueryHookResult = ReturnType<typeof useFindProfilesByNameLazyQuery>;
|
|
@@ -5219,19 +5268,22 @@ export declare const FindUserCreationsDocument: Apollo.DocumentNode;
|
|
|
5219
5268
|
* variables: {
|
|
5220
5269
|
* ownerId: // value for 'ownerId'
|
|
5221
5270
|
* input: // value for 'input'
|
|
5222
|
-
*
|
|
5271
|
+
* pageSize: // value for 'pageSize'
|
|
5272
|
+
* pageToken: // value for 'pageToken'
|
|
5223
5273
|
* },
|
|
5224
5274
|
* });
|
|
5225
5275
|
*/
|
|
5226
5276
|
export declare function useFindUserCreationsQuery(baseOptions: Apollo.QueryHookOptions<IFindUserCreationsQuery, IFindUserCreationsQueryVariables>): Apollo.QueryResult<IFindUserCreationsQuery, Exact<{
|
|
5227
5277
|
ownerId: string;
|
|
5228
5278
|
input: ICreationFilterInput;
|
|
5229
|
-
|
|
5279
|
+
pageSize: number;
|
|
5280
|
+
pageToken?: Maybe<string> | undefined;
|
|
5230
5281
|
}>>;
|
|
5231
5282
|
export declare function useFindUserCreationsLazyQuery(baseOptions?: Apollo.LazyQueryHookOptions<IFindUserCreationsQuery, IFindUserCreationsQueryVariables>): Apollo.LazyQueryResultTuple<IFindUserCreationsQuery, Exact<{
|
|
5232
5283
|
ownerId: string;
|
|
5233
5284
|
input: ICreationFilterInput;
|
|
5234
|
-
|
|
5285
|
+
pageSize: number;
|
|
5286
|
+
pageToken?: Maybe<string> | undefined;
|
|
5235
5287
|
}>>;
|
|
5236
5288
|
export type FindUserCreationsQueryHookResult = ReturnType<typeof useFindUserCreationsQuery>;
|
|
5237
5289
|
export type FindUserCreationsLazyQueryHookResult = ReturnType<typeof useFindUserCreationsLazyQuery>;
|