@ludo.ninja/api 2.8.20 → 2.8.21
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.
|
@@ -34,6 +34,20 @@ export type IAddress = {
|
|
|
34
34
|
owners?: Maybe<Array<Maybe<IWallet>>>;
|
|
35
35
|
associateAddresses?: Maybe<Array<Maybe<IWallet>>>;
|
|
36
36
|
};
|
|
37
|
+
export type IAdminBrand = {
|
|
38
|
+
id: Scalars['String'];
|
|
39
|
+
name: Scalars['String'];
|
|
40
|
+
matchingWords: Array<Scalars['String']>;
|
|
41
|
+
description: Scalars['String'];
|
|
42
|
+
industry?: Maybe<Scalars['String']>;
|
|
43
|
+
link?: Maybe<Scalars['String']>;
|
|
44
|
+
media?: Maybe<Scalars['String']>;
|
|
45
|
+
};
|
|
46
|
+
export type IAdminCategory = {
|
|
47
|
+
id: Scalars['String'];
|
|
48
|
+
name: Scalars['String'];
|
|
49
|
+
matchingWords: Array<Scalars['String']>;
|
|
50
|
+
};
|
|
37
51
|
export type IAdminInvite = {
|
|
38
52
|
userId: Scalars['String'];
|
|
39
53
|
username?: Maybe<Scalars['String']>;
|
|
@@ -316,13 +330,12 @@ export type IBannerAssetsPage = {
|
|
|
316
330
|
};
|
|
317
331
|
export type IBrand = {
|
|
318
332
|
brandId: Scalars['ID'];
|
|
319
|
-
|
|
320
|
-
|
|
333
|
+
name: Scalars['String'];
|
|
334
|
+
matchingWords: Array<Maybe<Scalars['String']>>;
|
|
335
|
+
description?: Maybe<Scalars['String']>;
|
|
321
336
|
industry?: Maybe<Scalars['String']>;
|
|
322
337
|
link?: Maybe<Scalars['String']>;
|
|
323
|
-
matchingWords: Array<Scalars['String']>;
|
|
324
338
|
media?: Maybe<Scalars['String']>;
|
|
325
|
-
name: Scalars['String'];
|
|
326
339
|
};
|
|
327
340
|
export type IBrandInput = {
|
|
328
341
|
name: Scalars['String'];
|
|
@@ -330,6 +343,7 @@ export type IBrandInput = {
|
|
|
330
343
|
description: Scalars['String'];
|
|
331
344
|
industry?: Maybe<Scalars['String']>;
|
|
332
345
|
link?: Maybe<Scalars['String']>;
|
|
346
|
+
media?: Maybe<Scalars['String']>;
|
|
333
347
|
};
|
|
334
348
|
export type IBrandsFilterInput = {
|
|
335
349
|
nameTerm?: Maybe<Scalars['String']>;
|
|
@@ -339,7 +353,7 @@ export type IBrandsFilterInput = {
|
|
|
339
353
|
matchingWordsTerm?: Maybe<Scalars['String']>;
|
|
340
354
|
};
|
|
341
355
|
export type IBrandsPage = {
|
|
342
|
-
brands: Array<
|
|
356
|
+
brands: Array<IAdminBrand>;
|
|
343
357
|
nextPage?: Maybe<IAdminPage>;
|
|
344
358
|
};
|
|
345
359
|
export type IBrandsSortInput = {
|
|
@@ -351,7 +365,7 @@ export type ICategoriesFilterInput = {
|
|
|
351
365
|
matchingWordsTerm?: Maybe<Scalars['String']>;
|
|
352
366
|
};
|
|
353
367
|
export type ICategoriesPage = {
|
|
354
|
-
categories: Array<
|
|
368
|
+
categories: Array<IAdminCategory>;
|
|
355
369
|
nextPage?: Maybe<IAdminPage>;
|
|
356
370
|
};
|
|
357
371
|
export type ICategoriesSortInput = {
|
|
@@ -359,9 +373,12 @@ export type ICategoriesSortInput = {
|
|
|
359
373
|
};
|
|
360
374
|
export type ICategory = {
|
|
361
375
|
categoryId: Scalars['ID'];
|
|
362
|
-
id: Scalars['String'];
|
|
363
|
-
matchingWords: Array<Scalars['String']>;
|
|
364
376
|
name: Scalars['String'];
|
|
377
|
+
matchingWords: Array<Maybe<Scalars['String']>>;
|
|
378
|
+
};
|
|
379
|
+
export type ICategoryInput = {
|
|
380
|
+
name: Scalars['String'];
|
|
381
|
+
matchingWords: Array<Scalars['String']>;
|
|
365
382
|
};
|
|
366
383
|
export type ICollection = {
|
|
367
384
|
blockHeight?: Maybe<Scalars['Long']>;
|
|
@@ -921,6 +938,9 @@ export type IMutation = {
|
|
|
921
938
|
subscribeGallery: Scalars['Int'];
|
|
922
939
|
unfollowProfile: Scalars['Boolean'];
|
|
923
940
|
unsubscribeGallery: Scalars['Int'];
|
|
941
|
+
updateBrand: Scalars['Boolean'];
|
|
942
|
+
updateCategory: Scalars['Boolean'];
|
|
943
|
+
updateOpportunity: Scalars['Boolean'];
|
|
924
944
|
updateOpportunityPushStatus: Scalars['Boolean'];
|
|
925
945
|
updateProfile: Scalars['Boolean'];
|
|
926
946
|
updateProfileStatus: Scalars['Boolean'];
|
|
@@ -1309,6 +1329,20 @@ export type IMutationUnfollowProfileArgs = {
|
|
|
1309
1329
|
export type IMutationUnsubscribeGalleryArgs = {
|
|
1310
1330
|
galleryId: Scalars['ID'];
|
|
1311
1331
|
};
|
|
1332
|
+
export type IMutationUpdateBrandArgs = {
|
|
1333
|
+
id: Scalars['ID'];
|
|
1334
|
+
input: IBrandInput;
|
|
1335
|
+
file?: Maybe<Scalars['Upload']>;
|
|
1336
|
+
};
|
|
1337
|
+
export type IMutationUpdateCategoryArgs = {
|
|
1338
|
+
id: Scalars['ID'];
|
|
1339
|
+
input: ICategoryInput;
|
|
1340
|
+
};
|
|
1341
|
+
export type IMutationUpdateOpportunityArgs = {
|
|
1342
|
+
id: Scalars['ID'];
|
|
1343
|
+
input: IOpportunityInput;
|
|
1344
|
+
file?: Maybe<Scalars['Upload']>;
|
|
1345
|
+
};
|
|
1312
1346
|
export type IMutationUpdateOpportunityPushStatusArgs = {
|
|
1313
1347
|
opportunityId: Scalars['ID'];
|
|
1314
1348
|
isActive: Scalars['Boolean'];
|
|
@@ -1443,6 +1477,7 @@ export type IOpportunityInput = {
|
|
|
1443
1477
|
maxLudoRank?: Maybe<Scalars['Float']>;
|
|
1444
1478
|
maxWalletValue?: Maybe<Scalars['Float']>;
|
|
1445
1479
|
maxXpLevel?: Maybe<Scalars['Int']>;
|
|
1480
|
+
media?: Maybe<Scalars['String']>;
|
|
1446
1481
|
minLudoRank?: Maybe<Scalars['Float']>;
|
|
1447
1482
|
minWalletValue?: Maybe<Scalars['Float']>;
|
|
1448
1483
|
minXpLevel?: Maybe<Scalars['Int']>;
|
|
@@ -1547,9 +1582,9 @@ export type IQuery = {
|
|
|
1547
1582
|
fetchBannerAssets: Array<Maybe<IBannerAsset>>;
|
|
1548
1583
|
fetchBlockchainSelections: Array<Maybe<ISelection>>;
|
|
1549
1584
|
fetchBlockchains: Array<Scalars['String']>;
|
|
1550
|
-
fetchBrands: Array<
|
|
1585
|
+
fetchBrands: Array<IAdminBrand>;
|
|
1551
1586
|
fetchBrandsPage: IBrandsPage;
|
|
1552
|
-
fetchCategories: Array<
|
|
1587
|
+
fetchCategories: Array<IAdminCategory>;
|
|
1553
1588
|
fetchCategoriesPage: ICategoriesPage;
|
|
1554
1589
|
fetchCategorySelections: Array<Maybe<ISelection>>;
|
|
1555
1590
|
fetchCollection: ICollection;
|
|
@@ -2479,6 +2514,8 @@ export type IResolversTypes = {
|
|
|
2479
2514
|
ActiveInvite: ResolverTypeWrapper<IActiveInvite>;
|
|
2480
2515
|
String: ResolverTypeWrapper<Scalars['String']>;
|
|
2481
2516
|
Address: ResolverTypeWrapper<IAddress>;
|
|
2517
|
+
AdminBrand: ResolverTypeWrapper<IAdminBrand>;
|
|
2518
|
+
AdminCategory: ResolverTypeWrapper<IAdminCategory>;
|
|
2482
2519
|
AdminInvite: ResolverTypeWrapper<IAdminInvite>;
|
|
2483
2520
|
Int: ResolverTypeWrapper<Scalars['Int']>;
|
|
2484
2521
|
AdminOpportunity: ResolverTypeWrapper<IAdminOpportunity>;
|
|
@@ -2516,6 +2553,7 @@ export type IResolversTypes = {
|
|
|
2516
2553
|
CategoriesPage: ResolverTypeWrapper<ICategoriesPage>;
|
|
2517
2554
|
CategoriesSortInput: ICategoriesSortInput;
|
|
2518
2555
|
Category: ResolverTypeWrapper<ICategory>;
|
|
2556
|
+
CategoryInput: ICategoryInput;
|
|
2519
2557
|
Collection: ResolverTypeWrapper<ICollection>;
|
|
2520
2558
|
CollectionAsset: ResolverTypeWrapper<ICollectionAsset>;
|
|
2521
2559
|
CollectionAssetsPage: ResolverTypeWrapper<ICollectionAssetsPage>;
|
|
@@ -2645,6 +2683,8 @@ export type IResolversParentTypes = {
|
|
|
2645
2683
|
ActiveInvite: IActiveInvite;
|
|
2646
2684
|
String: Scalars['String'];
|
|
2647
2685
|
Address: IAddress;
|
|
2686
|
+
AdminBrand: IAdminBrand;
|
|
2687
|
+
AdminCategory: IAdminCategory;
|
|
2648
2688
|
AdminInvite: IAdminInvite;
|
|
2649
2689
|
Int: Scalars['Int'];
|
|
2650
2690
|
AdminOpportunity: IAdminOpportunity;
|
|
@@ -2682,6 +2722,7 @@ export type IResolversParentTypes = {
|
|
|
2682
2722
|
CategoriesPage: ICategoriesPage;
|
|
2683
2723
|
CategoriesSortInput: ICategoriesSortInput;
|
|
2684
2724
|
Category: ICategory;
|
|
2725
|
+
CategoryInput: ICategoryInput;
|
|
2685
2726
|
Collection: ICollection;
|
|
2686
2727
|
CollectionAsset: ICollectionAsset;
|
|
2687
2728
|
CollectionAssetsPage: ICollectionAssetsPage;
|
|
@@ -2835,6 +2876,22 @@ export type IAddressResolvers<ContextType = any, ParentType extends IResolversPa
|
|
|
2835
2876
|
associateAddresses?: Resolver<Maybe<Array<Maybe<IResolversTypes['Wallet']>>>, ParentType, ContextType>;
|
|
2836
2877
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2837
2878
|
};
|
|
2879
|
+
export type IAdminBrandResolvers<ContextType = any, ParentType extends IResolversParentTypes['AdminBrand'] = IResolversParentTypes['AdminBrand']> = {
|
|
2880
|
+
id?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
2881
|
+
name?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
2882
|
+
matchingWords?: Resolver<Array<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2883
|
+
description?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
2884
|
+
industry?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2885
|
+
link?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2886
|
+
media?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2887
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2888
|
+
};
|
|
2889
|
+
export type IAdminCategoryResolvers<ContextType = any, ParentType extends IResolversParentTypes['AdminCategory'] = IResolversParentTypes['AdminCategory']> = {
|
|
2890
|
+
id?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
2891
|
+
name?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
2892
|
+
matchingWords?: Resolver<Array<IResolversTypes['String']>, ParentType, ContextType>;
|
|
2893
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
2894
|
+
};
|
|
2838
2895
|
export type IAdminInviteResolvers<ContextType = any, ParentType extends IResolversParentTypes['AdminInvite'] = IResolversParentTypes['AdminInvite']> = {
|
|
2839
2896
|
userId?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
2840
2897
|
username?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
@@ -3102,30 +3159,28 @@ export type IBannerAssetsPageResolvers<ContextType = any, ParentType extends IRe
|
|
|
3102
3159
|
};
|
|
3103
3160
|
export type IBrandResolvers<ContextType = any, ParentType extends IResolversParentTypes['Brand'] = IResolversParentTypes['Brand']> = {
|
|
3104
3161
|
brandId?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
|
3105
|
-
|
|
3106
|
-
|
|
3162
|
+
name?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
3163
|
+
matchingWords?: Resolver<Array<Maybe<IResolversTypes['String']>>, ParentType, ContextType>;
|
|
3164
|
+
description?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3107
3165
|
industry?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3108
3166
|
link?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3109
|
-
matchingWords?: Resolver<Array<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3110
3167
|
media?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3111
|
-
name?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
3112
3168
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3113
3169
|
};
|
|
3114
3170
|
export type IBrandsPageResolvers<ContextType = any, ParentType extends IResolversParentTypes['BrandsPage'] = IResolversParentTypes['BrandsPage']> = {
|
|
3115
|
-
brands?: Resolver<Array<IResolversTypes['
|
|
3171
|
+
brands?: Resolver<Array<IResolversTypes['AdminBrand']>, ParentType, ContextType>;
|
|
3116
3172
|
nextPage?: Resolver<Maybe<IResolversTypes['AdminPage']>, ParentType, ContextType>;
|
|
3117
3173
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3118
3174
|
};
|
|
3119
3175
|
export type ICategoriesPageResolvers<ContextType = any, ParentType extends IResolversParentTypes['CategoriesPage'] = IResolversParentTypes['CategoriesPage']> = {
|
|
3120
|
-
categories?: Resolver<Array<IResolversTypes['
|
|
3176
|
+
categories?: Resolver<Array<IResolversTypes['AdminCategory']>, ParentType, ContextType>;
|
|
3121
3177
|
nextPage?: Resolver<Maybe<IResolversTypes['AdminPage']>, ParentType, ContextType>;
|
|
3122
3178
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3123
3179
|
};
|
|
3124
3180
|
export type ICategoryResolvers<ContextType = any, ParentType extends IResolversParentTypes['Category'] = IResolversParentTypes['Category']> = {
|
|
3125
3181
|
categoryId?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
|
3126
|
-
id?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
3127
|
-
matchingWords?: Resolver<Array<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3128
3182
|
name?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
3183
|
+
matchingWords?: Resolver<Array<Maybe<IResolversTypes['String']>>, ParentType, ContextType>;
|
|
3129
3184
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3130
3185
|
};
|
|
3131
3186
|
export type ICollectionResolvers<ContextType = any, ParentType extends IResolversParentTypes['Collection'] = IResolversParentTypes['Collection']> = {
|
|
@@ -3642,6 +3697,9 @@ export type IMutationResolvers<ContextType = any, ParentType extends IResolversP
|
|
|
3642
3697
|
subscribeGallery?: Resolver<IResolversTypes['Int'], ParentType, ContextType, RequireFields<IMutationSubscribeGalleryArgs, 'galleryId'>>;
|
|
3643
3698
|
unfollowProfile?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationUnfollowProfileArgs, 'followingUserId'>>;
|
|
3644
3699
|
unsubscribeGallery?: Resolver<IResolversTypes['Int'], ParentType, ContextType, RequireFields<IMutationUnsubscribeGalleryArgs, 'galleryId'>>;
|
|
3700
|
+
updateBrand?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationUpdateBrandArgs, 'id' | 'input'>>;
|
|
3701
|
+
updateCategory?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationUpdateCategoryArgs, 'id' | 'input'>>;
|
|
3702
|
+
updateOpportunity?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationUpdateOpportunityArgs, 'id' | 'input'>>;
|
|
3645
3703
|
updateOpportunityPushStatus?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationUpdateOpportunityPushStatusArgs, 'opportunityId' | 'isActive'>>;
|
|
3646
3704
|
updateProfile?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, Partial<IMutationUpdateProfileArgs>>;
|
|
3647
3705
|
updateProfileStatus?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationUpdateProfileStatusArgs, 'userId' | 'isActive'>>;
|
|
@@ -3798,9 +3856,9 @@ export type IQueryResolvers<ContextType = any, ParentType extends IResolversPare
|
|
|
3798
3856
|
fetchBannerAssets?: Resolver<Array<Maybe<IResolversTypes['BannerAsset']>>, ParentType, ContextType, RequireFields<IQueryFetchBannerAssetsArgs, 'pageSize'>>;
|
|
3799
3857
|
fetchBlockchainSelections?: Resolver<Array<Maybe<IResolversTypes['Selection']>>, ParentType, ContextType>;
|
|
3800
3858
|
fetchBlockchains?: Resolver<Array<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3801
|
-
fetchBrands?: Resolver<Array<IResolversTypes['
|
|
3859
|
+
fetchBrands?: Resolver<Array<IResolversTypes['AdminBrand']>, ParentType, ContextType>;
|
|
3802
3860
|
fetchBrandsPage?: Resolver<IResolversTypes['BrandsPage'], ParentType, ContextType, RequireFields<IQueryFetchBrandsPageArgs, 'filter' | 'sort' | 'page'>>;
|
|
3803
|
-
fetchCategories?: Resolver<Array<IResolversTypes['
|
|
3861
|
+
fetchCategories?: Resolver<Array<IResolversTypes['AdminCategory']>, ParentType, ContextType>;
|
|
3804
3862
|
fetchCategoriesPage?: Resolver<IResolversTypes['CategoriesPage'], ParentType, ContextType, RequireFields<IQueryFetchCategoriesPageArgs, 'filter' | 'sort' | 'page'>>;
|
|
3805
3863
|
fetchCategorySelections?: Resolver<Array<Maybe<IResolversTypes['Selection']>>, ParentType, ContextType>;
|
|
3806
3864
|
fetchCollection?: Resolver<IResolversTypes['Collection'], ParentType, ContextType, RequireFields<IQueryFetchCollectionArgs, 'collectionId'>>;
|
|
@@ -4181,6 +4239,8 @@ export type IXpPageResolvers<ContextType = any, ParentType extends IResolversPar
|
|
|
4181
4239
|
export type IResolvers<ContextType = any> = {
|
|
4182
4240
|
ActiveInvite?: IActiveInviteResolvers<ContextType>;
|
|
4183
4241
|
Address?: IAddressResolvers<ContextType>;
|
|
4242
|
+
AdminBrand?: IAdminBrandResolvers<ContextType>;
|
|
4243
|
+
AdminCategory?: IAdminCategoryResolvers<ContextType>;
|
|
4184
4244
|
AdminInvite?: IAdminInviteResolvers<ContextType>;
|
|
4185
4245
|
AdminOpportunity?: IAdminOpportunityResolvers<ContextType>;
|
|
4186
4246
|
AdminPage?: IAdminPageResolvers<ContextType>;
|
|
@@ -4406,7 +4466,7 @@ export type IFetchBrandsQueryVariables = Exact<{
|
|
|
4406
4466
|
[key: string]: never;
|
|
4407
4467
|
}>;
|
|
4408
4468
|
export type IFetchBrandsQuery = {
|
|
4409
|
-
fetchBrands: Array<Pick<
|
|
4469
|
+
fetchBrands: Array<Pick<IAdminBrand, 'id' | 'name'>>;
|
|
4410
4470
|
};
|
|
4411
4471
|
export type IFetchBrandsPageQueryVariables = Exact<{
|
|
4412
4472
|
filter: IBrandsFilterInput;
|
|
@@ -4415,7 +4475,7 @@ export type IFetchBrandsPageQueryVariables = Exact<{
|
|
|
4415
4475
|
}>;
|
|
4416
4476
|
export type IFetchBrandsPageQuery = {
|
|
4417
4477
|
fetchBrandsPage: {
|
|
4418
|
-
brands: Array<Pick<
|
|
4478
|
+
brands: Array<Pick<IAdminBrand, 'description' | 'id' | 'industry' | 'link' | 'matchingWords' | 'media' | 'name'>>;
|
|
4419
4479
|
nextPage?: Maybe<Pick<IAdminPage, 'num' | 'lastNum' | 'size' | 'elements'>>;
|
|
4420
4480
|
};
|
|
4421
4481
|
};
|
|
@@ -4423,7 +4483,7 @@ export type IFetchCategoriesQueryVariables = Exact<{
|
|
|
4423
4483
|
[key: string]: never;
|
|
4424
4484
|
}>;
|
|
4425
4485
|
export type IFetchCategoriesQuery = {
|
|
4426
|
-
fetchCategories: Array<Pick<
|
|
4486
|
+
fetchCategories: Array<Pick<IAdminCategory, 'id' | 'name'>>;
|
|
4427
4487
|
};
|
|
4428
4488
|
export type IFetchCategoriesPageQueryVariables = Exact<{
|
|
4429
4489
|
filter: ICategoriesFilterInput;
|
|
@@ -4432,7 +4492,7 @@ export type IFetchCategoriesPageQueryVariables = Exact<{
|
|
|
4432
4492
|
}>;
|
|
4433
4493
|
export type IFetchCategoriesPageQuery = {
|
|
4434
4494
|
fetchCategoriesPage: {
|
|
4435
|
-
categories: Array<Pick<
|
|
4495
|
+
categories: Array<Pick<IAdminCategory, 'id' | 'name' | 'matchingWords'>>;
|
|
4436
4496
|
nextPage?: Maybe<Pick<IAdminPage, 'num' | 'lastNum' | 'size' | 'elements'>>;
|
|
4437
4497
|
};
|
|
4438
4498
|
};
|
package/package.json
CHANGED
|
@@ -33,6 +33,22 @@ export type IAddress = {
|
|
|
33
33
|
associateAddresses?: Maybe<Array<Maybe<IWallet>>>;
|
|
34
34
|
};
|
|
35
35
|
|
|
36
|
+
export type IAdminBrand = {
|
|
37
|
+
id: Scalars['String'];
|
|
38
|
+
name: Scalars['String'];
|
|
39
|
+
matchingWords: Array<Scalars['String']>;
|
|
40
|
+
description: Scalars['String'];
|
|
41
|
+
industry?: Maybe<Scalars['String']>;
|
|
42
|
+
link?: Maybe<Scalars['String']>;
|
|
43
|
+
media?: Maybe<Scalars['String']>;
|
|
44
|
+
};
|
|
45
|
+
|
|
46
|
+
export type IAdminCategory = {
|
|
47
|
+
id: Scalars['String'];
|
|
48
|
+
name: Scalars['String'];
|
|
49
|
+
matchingWords: Array<Scalars['String']>;
|
|
50
|
+
};
|
|
51
|
+
|
|
36
52
|
export type IAdminInvite = {
|
|
37
53
|
userId: Scalars['String'];
|
|
38
54
|
username?: Maybe<Scalars['String']>;
|
|
@@ -339,13 +355,12 @@ export type IBannerAssetsPage = {
|
|
|
339
355
|
|
|
340
356
|
export type IBrand = {
|
|
341
357
|
brandId: Scalars['ID'];
|
|
342
|
-
|
|
343
|
-
|
|
358
|
+
name: Scalars['String'];
|
|
359
|
+
matchingWords: Array<Maybe<Scalars['String']>>;
|
|
360
|
+
description?: Maybe<Scalars['String']>;
|
|
344
361
|
industry?: Maybe<Scalars['String']>;
|
|
345
362
|
link?: Maybe<Scalars['String']>;
|
|
346
|
-
matchingWords: Array<Scalars['String']>;
|
|
347
363
|
media?: Maybe<Scalars['String']>;
|
|
348
|
-
name: Scalars['String'];
|
|
349
364
|
};
|
|
350
365
|
|
|
351
366
|
export type IBrandInput = {
|
|
@@ -354,6 +369,7 @@ export type IBrandInput = {
|
|
|
354
369
|
description: Scalars['String'];
|
|
355
370
|
industry?: Maybe<Scalars['String']>;
|
|
356
371
|
link?: Maybe<Scalars['String']>;
|
|
372
|
+
media?: Maybe<Scalars['String']>;
|
|
357
373
|
};
|
|
358
374
|
|
|
359
375
|
export type IBrandsFilterInput = {
|
|
@@ -365,7 +381,7 @@ export type IBrandsFilterInput = {
|
|
|
365
381
|
};
|
|
366
382
|
|
|
367
383
|
export type IBrandsPage = {
|
|
368
|
-
brands: Array<
|
|
384
|
+
brands: Array<IAdminBrand>;
|
|
369
385
|
nextPage?: Maybe<IAdminPage>;
|
|
370
386
|
};
|
|
371
387
|
|
|
@@ -380,7 +396,7 @@ export type ICategoriesFilterInput = {
|
|
|
380
396
|
};
|
|
381
397
|
|
|
382
398
|
export type ICategoriesPage = {
|
|
383
|
-
categories: Array<
|
|
399
|
+
categories: Array<IAdminCategory>;
|
|
384
400
|
nextPage?: Maybe<IAdminPage>;
|
|
385
401
|
};
|
|
386
402
|
|
|
@@ -390,9 +406,13 @@ export type ICategoriesSortInput = {
|
|
|
390
406
|
|
|
391
407
|
export type ICategory = {
|
|
392
408
|
categoryId: Scalars['ID'];
|
|
393
|
-
id: Scalars['String'];
|
|
394
|
-
matchingWords: Array<Scalars['String']>;
|
|
395
409
|
name: Scalars['String'];
|
|
410
|
+
matchingWords: Array<Maybe<Scalars['String']>>;
|
|
411
|
+
};
|
|
412
|
+
|
|
413
|
+
export type ICategoryInput = {
|
|
414
|
+
name: Scalars['String'];
|
|
415
|
+
matchingWords: Array<Scalars['String']>;
|
|
396
416
|
};
|
|
397
417
|
|
|
398
418
|
export type ICollection = {
|
|
@@ -1007,6 +1027,9 @@ export type IMutation = {
|
|
|
1007
1027
|
subscribeGallery: Scalars['Int'];
|
|
1008
1028
|
unfollowProfile: Scalars['Boolean'];
|
|
1009
1029
|
unsubscribeGallery: Scalars['Int'];
|
|
1030
|
+
updateBrand: Scalars['Boolean'];
|
|
1031
|
+
updateCategory: Scalars['Boolean'];
|
|
1032
|
+
updateOpportunity: Scalars['Boolean'];
|
|
1010
1033
|
updateOpportunityPushStatus: Scalars['Boolean'];
|
|
1011
1034
|
updateProfile: Scalars['Boolean'];
|
|
1012
1035
|
updateProfileStatus: Scalars['Boolean'];
|
|
@@ -1591,6 +1614,26 @@ export type IMutationUnsubscribeGalleryArgs = {
|
|
|
1591
1614
|
};
|
|
1592
1615
|
|
|
1593
1616
|
|
|
1617
|
+
export type IMutationUpdateBrandArgs = {
|
|
1618
|
+
id: Scalars['ID'];
|
|
1619
|
+
input: IBrandInput;
|
|
1620
|
+
file?: Maybe<Scalars['Upload']>;
|
|
1621
|
+
};
|
|
1622
|
+
|
|
1623
|
+
|
|
1624
|
+
export type IMutationUpdateCategoryArgs = {
|
|
1625
|
+
id: Scalars['ID'];
|
|
1626
|
+
input: ICategoryInput;
|
|
1627
|
+
};
|
|
1628
|
+
|
|
1629
|
+
|
|
1630
|
+
export type IMutationUpdateOpportunityArgs = {
|
|
1631
|
+
id: Scalars['ID'];
|
|
1632
|
+
input: IOpportunityInput;
|
|
1633
|
+
file?: Maybe<Scalars['Upload']>;
|
|
1634
|
+
};
|
|
1635
|
+
|
|
1636
|
+
|
|
1594
1637
|
export type IMutationUpdateOpportunityPushStatusArgs = {
|
|
1595
1638
|
opportunityId: Scalars['ID'];
|
|
1596
1639
|
isActive: Scalars['Boolean'];
|
|
@@ -1747,6 +1790,7 @@ export type IOpportunityInput = {
|
|
|
1747
1790
|
maxLudoRank?: Maybe<Scalars['Float']>;
|
|
1748
1791
|
maxWalletValue?: Maybe<Scalars['Float']>;
|
|
1749
1792
|
maxXpLevel?: Maybe<Scalars['Int']>;
|
|
1793
|
+
media?: Maybe<Scalars['String']>;
|
|
1750
1794
|
minLudoRank?: Maybe<Scalars['Float']>;
|
|
1751
1795
|
minWalletValue?: Maybe<Scalars['Float']>;
|
|
1752
1796
|
minXpLevel?: Maybe<Scalars['Int']>;
|
|
@@ -1858,9 +1902,9 @@ export type IQuery = {
|
|
|
1858
1902
|
fetchBannerAssets: Array<Maybe<IBannerAsset>>;
|
|
1859
1903
|
fetchBlockchainSelections: Array<Maybe<ISelection>>;
|
|
1860
1904
|
fetchBlockchains: Array<Scalars['String']>;
|
|
1861
|
-
fetchBrands: Array<
|
|
1905
|
+
fetchBrands: Array<IAdminBrand>;
|
|
1862
1906
|
fetchBrandsPage: IBrandsPage;
|
|
1863
|
-
fetchCategories: Array<
|
|
1907
|
+
fetchCategories: Array<IAdminCategory>;
|
|
1864
1908
|
fetchCategoriesPage: ICategoriesPage;
|
|
1865
1909
|
fetchCategorySelections: Array<Maybe<ISelection>>;
|
|
1866
1910
|
fetchCollection: ICollection;
|
|
@@ -3087,6 +3131,8 @@ export type IResolversTypes = {
|
|
|
3087
3131
|
ActiveInvite: ResolverTypeWrapper<IActiveInvite>;
|
|
3088
3132
|
String: ResolverTypeWrapper<Scalars['String']>;
|
|
3089
3133
|
Address: ResolverTypeWrapper<IAddress>;
|
|
3134
|
+
AdminBrand: ResolverTypeWrapper<IAdminBrand>;
|
|
3135
|
+
AdminCategory: ResolverTypeWrapper<IAdminCategory>;
|
|
3090
3136
|
AdminInvite: ResolverTypeWrapper<IAdminInvite>;
|
|
3091
3137
|
Int: ResolverTypeWrapper<Scalars['Int']>;
|
|
3092
3138
|
AdminOpportunity: ResolverTypeWrapper<IAdminOpportunity>;
|
|
@@ -3124,6 +3170,7 @@ export type IResolversTypes = {
|
|
|
3124
3170
|
CategoriesPage: ResolverTypeWrapper<ICategoriesPage>;
|
|
3125
3171
|
CategoriesSortInput: ICategoriesSortInput;
|
|
3126
3172
|
Category: ResolverTypeWrapper<ICategory>;
|
|
3173
|
+
CategoryInput: ICategoryInput;
|
|
3127
3174
|
Collection: ResolverTypeWrapper<ICollection>;
|
|
3128
3175
|
CollectionAsset: ResolverTypeWrapper<ICollectionAsset>;
|
|
3129
3176
|
CollectionAssetsPage: ResolverTypeWrapper<ICollectionAssetsPage>;
|
|
@@ -3254,6 +3301,8 @@ export type IResolversParentTypes = {
|
|
|
3254
3301
|
ActiveInvite: IActiveInvite;
|
|
3255
3302
|
String: Scalars['String'];
|
|
3256
3303
|
Address: IAddress;
|
|
3304
|
+
AdminBrand: IAdminBrand;
|
|
3305
|
+
AdminCategory: IAdminCategory;
|
|
3257
3306
|
AdminInvite: IAdminInvite;
|
|
3258
3307
|
Int: Scalars['Int'];
|
|
3259
3308
|
AdminOpportunity: IAdminOpportunity;
|
|
@@ -3291,6 +3340,7 @@ export type IResolversParentTypes = {
|
|
|
3291
3340
|
CategoriesPage: ICategoriesPage;
|
|
3292
3341
|
CategoriesSortInput: ICategoriesSortInput;
|
|
3293
3342
|
Category: ICategory;
|
|
3343
|
+
CategoryInput: ICategoryInput;
|
|
3294
3344
|
Collection: ICollection;
|
|
3295
3345
|
CollectionAsset: ICollectionAsset;
|
|
3296
3346
|
CollectionAssetsPage: ICollectionAssetsPage;
|
|
@@ -3455,6 +3505,24 @@ export type IAddressResolvers<ContextType = any, ParentType extends IResolversPa
|
|
|
3455
3505
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3456
3506
|
};
|
|
3457
3507
|
|
|
3508
|
+
export type IAdminBrandResolvers<ContextType = any, ParentType extends IResolversParentTypes['AdminBrand'] = IResolversParentTypes['AdminBrand']> = {
|
|
3509
|
+
id?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
3510
|
+
name?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
3511
|
+
matchingWords?: Resolver<Array<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3512
|
+
description?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
3513
|
+
industry?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3514
|
+
link?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3515
|
+
media?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3516
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3517
|
+
};
|
|
3518
|
+
|
|
3519
|
+
export type IAdminCategoryResolvers<ContextType = any, ParentType extends IResolversParentTypes['AdminCategory'] = IResolversParentTypes['AdminCategory']> = {
|
|
3520
|
+
id?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
3521
|
+
name?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
3522
|
+
matchingWords?: Resolver<Array<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3523
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3524
|
+
};
|
|
3525
|
+
|
|
3458
3526
|
export type IAdminInviteResolvers<ContextType = any, ParentType extends IResolversParentTypes['AdminInvite'] = IResolversParentTypes['AdminInvite']> = {
|
|
3459
3527
|
userId?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
3460
3528
|
username?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
@@ -3742,33 +3810,31 @@ export type IBannerAssetsPageResolvers<ContextType = any, ParentType extends IRe
|
|
|
3742
3810
|
|
|
3743
3811
|
export type IBrandResolvers<ContextType = any, ParentType extends IResolversParentTypes['Brand'] = IResolversParentTypes['Brand']> = {
|
|
3744
3812
|
brandId?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
|
3745
|
-
|
|
3746
|
-
|
|
3813
|
+
name?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
3814
|
+
matchingWords?: Resolver<Array<Maybe<IResolversTypes['String']>>, ParentType, ContextType>;
|
|
3815
|
+
description?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3747
3816
|
industry?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3748
3817
|
link?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3749
|
-
matchingWords?: Resolver<Array<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3750
3818
|
media?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3751
|
-
name?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
3752
3819
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3753
3820
|
};
|
|
3754
3821
|
|
|
3755
3822
|
export type IBrandsPageResolvers<ContextType = any, ParentType extends IResolversParentTypes['BrandsPage'] = IResolversParentTypes['BrandsPage']> = {
|
|
3756
|
-
brands?: Resolver<Array<IResolversTypes['
|
|
3823
|
+
brands?: Resolver<Array<IResolversTypes['AdminBrand']>, ParentType, ContextType>;
|
|
3757
3824
|
nextPage?: Resolver<Maybe<IResolversTypes['AdminPage']>, ParentType, ContextType>;
|
|
3758
3825
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3759
3826
|
};
|
|
3760
3827
|
|
|
3761
3828
|
export type ICategoriesPageResolvers<ContextType = any, ParentType extends IResolversParentTypes['CategoriesPage'] = IResolversParentTypes['CategoriesPage']> = {
|
|
3762
|
-
categories?: Resolver<Array<IResolversTypes['
|
|
3829
|
+
categories?: Resolver<Array<IResolversTypes['AdminCategory']>, ParentType, ContextType>;
|
|
3763
3830
|
nextPage?: Resolver<Maybe<IResolversTypes['AdminPage']>, ParentType, ContextType>;
|
|
3764
3831
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3765
3832
|
};
|
|
3766
3833
|
|
|
3767
3834
|
export type ICategoryResolvers<ContextType = any, ParentType extends IResolversParentTypes['Category'] = IResolversParentTypes['Category']> = {
|
|
3768
3835
|
categoryId?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
|
3769
|
-
id?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
3770
|
-
matchingWords?: Resolver<Array<IResolversTypes['String']>, ParentType, ContextType>;
|
|
3771
3836
|
name?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
3837
|
+
matchingWords?: Resolver<Array<Maybe<IResolversTypes['String']>>, ParentType, ContextType>;
|
|
3772
3838
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
3773
3839
|
};
|
|
3774
3840
|
|
|
@@ -4326,6 +4392,9 @@ export type IMutationResolvers<ContextType = any, ParentType extends IResolversP
|
|
|
4326
4392
|
subscribeGallery?: Resolver<IResolversTypes['Int'], ParentType, ContextType, RequireFields<IMutationSubscribeGalleryArgs, 'galleryId'>>;
|
|
4327
4393
|
unfollowProfile?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationUnfollowProfileArgs, 'followingUserId'>>;
|
|
4328
4394
|
unsubscribeGallery?: Resolver<IResolversTypes['Int'], ParentType, ContextType, RequireFields<IMutationUnsubscribeGalleryArgs, 'galleryId'>>;
|
|
4395
|
+
updateBrand?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationUpdateBrandArgs, 'id' | 'input'>>;
|
|
4396
|
+
updateCategory?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationUpdateCategoryArgs, 'id' | 'input'>>;
|
|
4397
|
+
updateOpportunity?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationUpdateOpportunityArgs, 'id' | 'input'>>;
|
|
4329
4398
|
updateOpportunityPushStatus?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationUpdateOpportunityPushStatusArgs, 'opportunityId' | 'isActive'>>;
|
|
4330
4399
|
updateProfile?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, Partial<IMutationUpdateProfileArgs>>;
|
|
4331
4400
|
updateProfileStatus?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationUpdateProfileStatusArgs, 'userId' | 'isActive'>>;
|
|
@@ -4494,9 +4563,9 @@ export type IQueryResolvers<ContextType = any, ParentType extends IResolversPare
|
|
|
4494
4563
|
fetchBannerAssets?: Resolver<Array<Maybe<IResolversTypes['BannerAsset']>>, ParentType, ContextType, RequireFields<IQueryFetchBannerAssetsArgs, 'pageSize'>>;
|
|
4495
4564
|
fetchBlockchainSelections?: Resolver<Array<Maybe<IResolversTypes['Selection']>>, ParentType, ContextType>;
|
|
4496
4565
|
fetchBlockchains?: Resolver<Array<IResolversTypes['String']>, ParentType, ContextType>;
|
|
4497
|
-
fetchBrands?: Resolver<Array<IResolversTypes['
|
|
4566
|
+
fetchBrands?: Resolver<Array<IResolversTypes['AdminBrand']>, ParentType, ContextType>;
|
|
4498
4567
|
fetchBrandsPage?: Resolver<IResolversTypes['BrandsPage'], ParentType, ContextType, RequireFields<IQueryFetchBrandsPageArgs, 'filter' | 'sort' | 'page'>>;
|
|
4499
|
-
fetchCategories?: Resolver<Array<IResolversTypes['
|
|
4568
|
+
fetchCategories?: Resolver<Array<IResolversTypes['AdminCategory']>, ParentType, ContextType>;
|
|
4500
4569
|
fetchCategoriesPage?: Resolver<IResolversTypes['CategoriesPage'], ParentType, ContextType, RequireFields<IQueryFetchCategoriesPageArgs, 'filter' | 'sort' | 'page'>>;
|
|
4501
4570
|
fetchCategorySelections?: Resolver<Array<Maybe<IResolversTypes['Selection']>>, ParentType, ContextType>;
|
|
4502
4571
|
fetchCollection?: Resolver<IResolversTypes['Collection'], ParentType, ContextType, RequireFields<IQueryFetchCollectionArgs, 'collectionId'>>;
|
|
@@ -4912,6 +4981,8 @@ export type IXpPageResolvers<ContextType = any, ParentType extends IResolversPar
|
|
|
4912
4981
|
export type IResolvers<ContextType = any> = {
|
|
4913
4982
|
ActiveInvite?: IActiveInviteResolvers<ContextType>;
|
|
4914
4983
|
Address?: IAddressResolvers<ContextType>;
|
|
4984
|
+
AdminBrand?: IAdminBrandResolvers<ContextType>;
|
|
4985
|
+
AdminCategory?: IAdminCategoryResolvers<ContextType>;
|
|
4915
4986
|
AdminInvite?: IAdminInviteResolvers<ContextType>;
|
|
4916
4987
|
AdminOpportunity?: IAdminOpportunityResolvers<ContextType>;
|
|
4917
4988
|
AdminPage?: IAdminPageResolvers<ContextType>;
|
|
@@ -5152,7 +5223,7 @@ export type IFetchBlockchainsQuery = Pick<IQuery, 'fetchBlockchains'>;
|
|
|
5152
5223
|
export type IFetchBrandsQueryVariables = Exact<{ [key: string]: never; }>;
|
|
5153
5224
|
|
|
5154
5225
|
|
|
5155
|
-
export type IFetchBrandsQuery = { fetchBrands: Array<Pick<
|
|
5226
|
+
export type IFetchBrandsQuery = { fetchBrands: Array<Pick<IAdminBrand, 'id' | 'name'>> };
|
|
5156
5227
|
|
|
5157
5228
|
export type IFetchBrandsPageQueryVariables = Exact<{
|
|
5158
5229
|
filter: IBrandsFilterInput;
|
|
@@ -5161,12 +5232,12 @@ export type IFetchBrandsPageQueryVariables = Exact<{
|
|
|
5161
5232
|
}>;
|
|
5162
5233
|
|
|
5163
5234
|
|
|
5164
|
-
export type IFetchBrandsPageQuery = { fetchBrandsPage: { brands: Array<Pick<
|
|
5235
|
+
export type IFetchBrandsPageQuery = { fetchBrandsPage: { brands: Array<Pick<IAdminBrand, 'description' | 'id' | 'industry' | 'link' | 'matchingWords' | 'media' | 'name'>>, nextPage?: Maybe<Pick<IAdminPage, 'num' | 'lastNum' | 'size' | 'elements'>> } };
|
|
5165
5236
|
|
|
5166
5237
|
export type IFetchCategoriesQueryVariables = Exact<{ [key: string]: never; }>;
|
|
5167
5238
|
|
|
5168
5239
|
|
|
5169
|
-
export type IFetchCategoriesQuery = { fetchCategories: Array<Pick<
|
|
5240
|
+
export type IFetchCategoriesQuery = { fetchCategories: Array<Pick<IAdminCategory, 'id' | 'name'>> };
|
|
5170
5241
|
|
|
5171
5242
|
export type IFetchCategoriesPageQueryVariables = Exact<{
|
|
5172
5243
|
filter: ICategoriesFilterInput;
|
|
@@ -5175,7 +5246,7 @@ export type IFetchCategoriesPageQueryVariables = Exact<{
|
|
|
5175
5246
|
}>;
|
|
5176
5247
|
|
|
5177
5248
|
|
|
5178
|
-
export type IFetchCategoriesPageQuery = { fetchCategoriesPage: { categories: Array<Pick<
|
|
5249
|
+
export type IFetchCategoriesPageQuery = { fetchCategoriesPage: { categories: Array<Pick<IAdminCategory, 'id' | 'name' | 'matchingWords'>>, nextPage?: Maybe<Pick<IAdminPage, 'num' | 'lastNum' | 'size' | 'elements'>> } };
|
|
5179
5250
|
|
|
5180
5251
|
export type IDislikeAssetMutationVariables = Exact<{
|
|
5181
5252
|
assetId: Scalars['String'];
|