@ludo.ninja/api 2.8.41 → 2.8.42
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.
|
@@ -49,6 +49,26 @@ export type IAdminCategory = {
|
|
|
49
49
|
archived?: Maybe<Scalars['Boolean']>;
|
|
50
50
|
addedBy?: Maybe<Scalars['String']>;
|
|
51
51
|
};
|
|
52
|
+
export type IAdminContactSupport = {
|
|
53
|
+
id: Scalars['String'];
|
|
54
|
+
userId?: Maybe<Scalars['String']>;
|
|
55
|
+
email?: Maybe<Scalars['String']>;
|
|
56
|
+
walletAddress?: Maybe<Scalars['String']>;
|
|
57
|
+
category?: Maybe<Scalars['String']>;
|
|
58
|
+
description?: Maybe<Scalars['String']>;
|
|
59
|
+
priority?: Maybe<Scalars['String']>;
|
|
60
|
+
};
|
|
61
|
+
export type IAdminContentReport = {
|
|
62
|
+
id: Scalars['String'];
|
|
63
|
+
userId?: Maybe<Scalars['String']>;
|
|
64
|
+
email?: Maybe<Scalars['String']>;
|
|
65
|
+
nameOfSubject?: Maybe<Scalars['String']>;
|
|
66
|
+
contentType?: Maybe<Scalars['String']>;
|
|
67
|
+
contentId?: Maybe<Scalars['String']>;
|
|
68
|
+
reportReason?: Maybe<Scalars['String']>;
|
|
69
|
+
description?: Maybe<Scalars['String']>;
|
|
70
|
+
evidenceFileUrl?: Maybe<Scalars['String']>;
|
|
71
|
+
};
|
|
52
72
|
export type IAdminInvite = {
|
|
53
73
|
userId: Scalars['String'];
|
|
54
74
|
username?: Maybe<Scalars['String']>;
|
|
@@ -188,6 +208,46 @@ export type ICategoryInput = {
|
|
|
188
208
|
name: Scalars['String'];
|
|
189
209
|
matchingWords: Array<Scalars['String']>;
|
|
190
210
|
};
|
|
211
|
+
export type IContactSupportFilterInput = {
|
|
212
|
+
idTerm?: Maybe<Scalars['String']>;
|
|
213
|
+
userIdTerm?: Maybe<Scalars['String']>;
|
|
214
|
+
emailTerm?: Maybe<Scalars['String']>;
|
|
215
|
+
walletAddressTerm?: Maybe<Scalars['String']>;
|
|
216
|
+
categoryTerm?: Maybe<Scalars['String']>;
|
|
217
|
+
descriptionTerm?: Maybe<Scalars['String']>;
|
|
218
|
+
priorityTerm?: Maybe<Scalars['String']>;
|
|
219
|
+
};
|
|
220
|
+
export type IContactSupportPage = {
|
|
221
|
+
contactSupports: Array<IAdminContactSupport>;
|
|
222
|
+
nextPage?: Maybe<IAdminPage>;
|
|
223
|
+
};
|
|
224
|
+
export type IContactSupportSortInput = {
|
|
225
|
+
sortByEmail?: Maybe<ISort>;
|
|
226
|
+
sortByWallet?: Maybe<ISort>;
|
|
227
|
+
sortByCategory?: Maybe<ISort>;
|
|
228
|
+
sortByPriority?: Maybe<ISort>;
|
|
229
|
+
};
|
|
230
|
+
export type IContentReportFilterInput = {
|
|
231
|
+
idTerm?: Maybe<Scalars['String']>;
|
|
232
|
+
userIdTerm?: Maybe<Scalars['String']>;
|
|
233
|
+
emailTerm?: Maybe<Scalars['String']>;
|
|
234
|
+
nameOfSubjectTerm?: Maybe<Scalars['String']>;
|
|
235
|
+
contentTypeTerm?: Maybe<Scalars['String']>;
|
|
236
|
+
contentIdTerm?: Maybe<Scalars['String']>;
|
|
237
|
+
reportReasonTerm?: Maybe<Scalars['String']>;
|
|
238
|
+
};
|
|
239
|
+
export type IContentReportPage = {
|
|
240
|
+
contentReports: Array<IAdminContentReport>;
|
|
241
|
+
nextPage?: Maybe<IAdminPage>;
|
|
242
|
+
};
|
|
243
|
+
export type IContentReportSortInput = {
|
|
244
|
+
sortByUserId?: Maybe<ISort>;
|
|
245
|
+
sortByEmail?: Maybe<ISort>;
|
|
246
|
+
sortByNameOfSubject?: Maybe<ISort>;
|
|
247
|
+
sortByContentType?: Maybe<ISort>;
|
|
248
|
+
sortByContentId?: Maybe<ISort>;
|
|
249
|
+
sortByReportReason?: Maybe<ISort>;
|
|
250
|
+
};
|
|
191
251
|
export type IInvitesFilterInput = {
|
|
192
252
|
userIdTerm?: Maybe<Scalars['String']>;
|
|
193
253
|
usernameTerm?: Maybe<Scalars['String']>;
|
|
@@ -322,6 +382,8 @@ export type IOpportunitiesSortInput = {
|
|
|
322
382
|
};
|
|
323
383
|
export type IQuery = {
|
|
324
384
|
getDummy: Scalars['String'];
|
|
385
|
+
fetchContactSupportPage: IContactSupportPage;
|
|
386
|
+
fetchContentReportPage: IContentReportPage;
|
|
325
387
|
fetchAdminInvitesPage: IInvitesPage;
|
|
326
388
|
fetchAdminOpportunitiesPage: IOpportunitiesPage;
|
|
327
389
|
fetchAdminCategories: Array<IAdminCategory>;
|
|
@@ -333,6 +395,16 @@ export type IQuery = {
|
|
|
333
395
|
fetchAdminUsersPage: IUsersPage;
|
|
334
396
|
fetchAdminXpPage: IXpPage;
|
|
335
397
|
};
|
|
398
|
+
export type IQueryFetchContactSupportPageArgs = {
|
|
399
|
+
filter: IContactSupportFilterInput;
|
|
400
|
+
sort: IContactSupportSortInput;
|
|
401
|
+
page: IAdminPageInput;
|
|
402
|
+
};
|
|
403
|
+
export type IQueryFetchContentReportPageArgs = {
|
|
404
|
+
filter: IContentReportFilterInput;
|
|
405
|
+
sort: IContentReportSortInput;
|
|
406
|
+
page: IAdminPageInput;
|
|
407
|
+
};
|
|
336
408
|
export type IQueryFetchAdminInvitesPageArgs = {
|
|
337
409
|
filter: IInvitesFilterInput;
|
|
338
410
|
sort: IInvitesSortInput;
|
|
@@ -488,6 +560,8 @@ export type IResolversTypes = {
|
|
|
488
560
|
AdminBrand: ResolverTypeWrapper<IAdminBrand>;
|
|
489
561
|
Boolean: ResolverTypeWrapper<Scalars['Boolean']>;
|
|
490
562
|
AdminCategory: ResolverTypeWrapper<IAdminCategory>;
|
|
563
|
+
AdminContactSupport: ResolverTypeWrapper<IAdminContactSupport>;
|
|
564
|
+
AdminContentReport: ResolverTypeWrapper<IAdminContentReport>;
|
|
491
565
|
AdminInvite: ResolverTypeWrapper<IAdminInvite>;
|
|
492
566
|
Int: ResolverTypeWrapper<Scalars['Int']>;
|
|
493
567
|
AdminOpportunity: ResolverTypeWrapper<IAdminOpportunity>;
|
|
@@ -507,6 +581,12 @@ export type IResolversTypes = {
|
|
|
507
581
|
CategoriesPage: ResolverTypeWrapper<ICategoriesPage>;
|
|
508
582
|
CategoriesSortInput: ICategoriesSortInput;
|
|
509
583
|
CategoryInput: ICategoryInput;
|
|
584
|
+
ContactSupportFilterInput: IContactSupportFilterInput;
|
|
585
|
+
ContactSupportPage: ResolverTypeWrapper<IContactSupportPage>;
|
|
586
|
+
ContactSupportSortInput: IContactSupportSortInput;
|
|
587
|
+
ContentReportFilterInput: IContentReportFilterInput;
|
|
588
|
+
ContentReportPage: ResolverTypeWrapper<IContentReportPage>;
|
|
589
|
+
ContentReportSortInput: IContentReportSortInput;
|
|
510
590
|
InvitesFilterInput: IInvitesFilterInput;
|
|
511
591
|
InvitesPage: ResolverTypeWrapper<IInvitesPage>;
|
|
512
592
|
InvitesSortInput: IInvitesSortInput;
|
|
@@ -538,6 +618,8 @@ export type IResolversParentTypes = {
|
|
|
538
618
|
AdminBrand: IAdminBrand;
|
|
539
619
|
Boolean: Scalars['Boolean'];
|
|
540
620
|
AdminCategory: IAdminCategory;
|
|
621
|
+
AdminContactSupport: IAdminContactSupport;
|
|
622
|
+
AdminContentReport: IAdminContentReport;
|
|
541
623
|
AdminInvite: IAdminInvite;
|
|
542
624
|
Int: Scalars['Int'];
|
|
543
625
|
AdminOpportunity: IAdminOpportunity;
|
|
@@ -557,6 +639,12 @@ export type IResolversParentTypes = {
|
|
|
557
639
|
CategoriesPage: ICategoriesPage;
|
|
558
640
|
CategoriesSortInput: ICategoriesSortInput;
|
|
559
641
|
CategoryInput: ICategoryInput;
|
|
642
|
+
ContactSupportFilterInput: IContactSupportFilterInput;
|
|
643
|
+
ContactSupportPage: IContactSupportPage;
|
|
644
|
+
ContactSupportSortInput: IContactSupportSortInput;
|
|
645
|
+
ContentReportFilterInput: IContentReportFilterInput;
|
|
646
|
+
ContentReportPage: IContentReportPage;
|
|
647
|
+
ContentReportSortInput: IContentReportSortInput;
|
|
560
648
|
InvitesFilterInput: IInvitesFilterInput;
|
|
561
649
|
InvitesPage: IInvitesPage;
|
|
562
650
|
InvitesSortInput: IInvitesSortInput;
|
|
@@ -618,6 +706,28 @@ export type IAdminCategoryResolvers<ContextType = any, ParentType extends IResol
|
|
|
618
706
|
addedBy?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
619
707
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
620
708
|
};
|
|
709
|
+
export type IAdminContactSupportResolvers<ContextType = any, ParentType extends IResolversParentTypes['AdminContactSupport'] = IResolversParentTypes['AdminContactSupport']> = {
|
|
710
|
+
id?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
711
|
+
userId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
712
|
+
email?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
713
|
+
walletAddress?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
714
|
+
category?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
715
|
+
description?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
716
|
+
priority?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
717
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
718
|
+
};
|
|
719
|
+
export type IAdminContentReportResolvers<ContextType = any, ParentType extends IResolversParentTypes['AdminContentReport'] = IResolversParentTypes['AdminContentReport']> = {
|
|
720
|
+
id?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
721
|
+
userId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
722
|
+
email?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
723
|
+
nameOfSubject?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
724
|
+
contentType?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
725
|
+
contentId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
726
|
+
reportReason?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
727
|
+
description?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
728
|
+
evidenceFileUrl?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
729
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
730
|
+
};
|
|
621
731
|
export type IAdminInviteResolvers<ContextType = any, ParentType extends IResolversParentTypes['AdminInvite'] = IResolversParentTypes['AdminInvite']> = {
|
|
622
732
|
userId?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
623
733
|
username?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
@@ -705,6 +815,16 @@ export type ICategoriesPageResolvers<ContextType = any, ParentType extends IReso
|
|
|
705
815
|
nextPage?: Resolver<Maybe<IResolversTypes['AdminPage']>, ParentType, ContextType>;
|
|
706
816
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
707
817
|
};
|
|
818
|
+
export type IContactSupportPageResolvers<ContextType = any, ParentType extends IResolversParentTypes['ContactSupportPage'] = IResolversParentTypes['ContactSupportPage']> = {
|
|
819
|
+
contactSupports?: Resolver<Array<IResolversTypes['AdminContactSupport']>, ParentType, ContextType>;
|
|
820
|
+
nextPage?: Resolver<Maybe<IResolversTypes['AdminPage']>, ParentType, ContextType>;
|
|
821
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
822
|
+
};
|
|
823
|
+
export type IContentReportPageResolvers<ContextType = any, ParentType extends IResolversParentTypes['ContentReportPage'] = IResolversParentTypes['ContentReportPage']> = {
|
|
824
|
+
contentReports?: Resolver<Array<IResolversTypes['AdminContentReport']>, ParentType, ContextType>;
|
|
825
|
+
nextPage?: Resolver<Maybe<IResolversTypes['AdminPage']>, ParentType, ContextType>;
|
|
826
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
827
|
+
};
|
|
708
828
|
export type IInvitesPageResolvers<ContextType = any, ParentType extends IResolversParentTypes['InvitesPage'] = IResolversParentTypes['InvitesPage']> = {
|
|
709
829
|
invites?: Resolver<Array<IResolversTypes['AdminInvite']>, ParentType, ContextType>;
|
|
710
830
|
nextPage?: Resolver<Maybe<IResolversTypes['AdminPage']>, ParentType, ContextType>;
|
|
@@ -738,6 +858,8 @@ export type IOpportunitiesPageResolvers<ContextType = any, ParentType extends IR
|
|
|
738
858
|
};
|
|
739
859
|
export type IQueryResolvers<ContextType = any, ParentType extends IResolversParentTypes['Query'] = IResolversParentTypes['Query']> = {
|
|
740
860
|
getDummy?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
861
|
+
fetchContactSupportPage?: Resolver<IResolversTypes['ContactSupportPage'], ParentType, ContextType, RequireFields<IQueryFetchContactSupportPageArgs, 'filter' | 'sort' | 'page'>>;
|
|
862
|
+
fetchContentReportPage?: Resolver<IResolversTypes['ContentReportPage'], ParentType, ContextType, RequireFields<IQueryFetchContentReportPageArgs, 'filter' | 'sort' | 'page'>>;
|
|
741
863
|
fetchAdminInvitesPage?: Resolver<IResolversTypes['InvitesPage'], ParentType, ContextType, RequireFields<IQueryFetchAdminInvitesPageArgs, 'filter' | 'sort' | 'page'>>;
|
|
742
864
|
fetchAdminOpportunitiesPage?: Resolver<IResolversTypes['OpportunitiesPage'], ParentType, ContextType, RequireFields<IQueryFetchAdminOpportunitiesPageArgs, 'filter' | 'sort' | 'page'>>;
|
|
743
865
|
fetchAdminCategories?: Resolver<Array<IResolversTypes['AdminCategory']>, ParentType, ContextType>;
|
|
@@ -784,6 +906,8 @@ export type IResolvers<ContextType = any> = {
|
|
|
784
906
|
ActiveInvite?: IActiveInviteResolvers<ContextType>;
|
|
785
907
|
AdminBrand?: IAdminBrandResolvers<ContextType>;
|
|
786
908
|
AdminCategory?: IAdminCategoryResolvers<ContextType>;
|
|
909
|
+
AdminContactSupport?: IAdminContactSupportResolvers<ContextType>;
|
|
910
|
+
AdminContentReport?: IAdminContentReportResolvers<ContextType>;
|
|
787
911
|
AdminInvite?: IAdminInviteResolvers<ContextType>;
|
|
788
912
|
AdminOpportunity?: IAdminOpportunityResolvers<ContextType>;
|
|
789
913
|
AdminPage?: IAdminPageResolvers<ContextType>;
|
|
@@ -792,6 +916,8 @@ export type IResolvers<ContextType = any> = {
|
|
|
792
916
|
AdminXp?: IAdminXpResolvers<ContextType>;
|
|
793
917
|
BrandsPage?: IBrandsPageResolvers<ContextType>;
|
|
794
918
|
CategoriesPage?: ICategoriesPageResolvers<ContextType>;
|
|
919
|
+
ContactSupportPage?: IContactSupportPageResolvers<ContextType>;
|
|
920
|
+
ContentReportPage?: IContentReportPageResolvers<ContextType>;
|
|
795
921
|
InvitesPage?: IInvitesPageResolvers<ContextType>;
|
|
796
922
|
Long?: GraphQLScalarType;
|
|
797
923
|
Mutation?: IMutationResolvers<ContextType>;
|
package/package.json
CHANGED
|
@@ -48,6 +48,28 @@ export type IAdminCategory = {
|
|
|
48
48
|
addedBy?: Maybe<Scalars['String']>;
|
|
49
49
|
};
|
|
50
50
|
|
|
51
|
+
export type IAdminContactSupport = {
|
|
52
|
+
id: Scalars['String'];
|
|
53
|
+
userId?: Maybe<Scalars['String']>;
|
|
54
|
+
email?: Maybe<Scalars['String']>;
|
|
55
|
+
walletAddress?: Maybe<Scalars['String']>;
|
|
56
|
+
category?: Maybe<Scalars['String']>;
|
|
57
|
+
description?: Maybe<Scalars['String']>;
|
|
58
|
+
priority?: Maybe<Scalars['String']>;
|
|
59
|
+
};
|
|
60
|
+
|
|
61
|
+
export type IAdminContentReport = {
|
|
62
|
+
id: Scalars['String'];
|
|
63
|
+
userId?: Maybe<Scalars['String']>;
|
|
64
|
+
email?: Maybe<Scalars['String']>;
|
|
65
|
+
nameOfSubject?: Maybe<Scalars['String']>;
|
|
66
|
+
contentType?: Maybe<Scalars['String']>;
|
|
67
|
+
contentId?: Maybe<Scalars['String']>;
|
|
68
|
+
reportReason?: Maybe<Scalars['String']>;
|
|
69
|
+
description?: Maybe<Scalars['String']>;
|
|
70
|
+
evidenceFileUrl?: Maybe<Scalars['String']>;
|
|
71
|
+
};
|
|
72
|
+
|
|
51
73
|
export type IAdminInvite = {
|
|
52
74
|
userId: Scalars['String'];
|
|
53
75
|
username?: Maybe<Scalars['String']>;
|
|
@@ -203,6 +225,52 @@ export type ICategoryInput = {
|
|
|
203
225
|
matchingWords: Array<Scalars['String']>;
|
|
204
226
|
};
|
|
205
227
|
|
|
228
|
+
export type IContactSupportFilterInput = {
|
|
229
|
+
idTerm?: Maybe<Scalars['String']>;
|
|
230
|
+
userIdTerm?: Maybe<Scalars['String']>;
|
|
231
|
+
emailTerm?: Maybe<Scalars['String']>;
|
|
232
|
+
walletAddressTerm?: Maybe<Scalars['String']>;
|
|
233
|
+
categoryTerm?: Maybe<Scalars['String']>;
|
|
234
|
+
descriptionTerm?: Maybe<Scalars['String']>;
|
|
235
|
+
priorityTerm?: Maybe<Scalars['String']>;
|
|
236
|
+
};
|
|
237
|
+
|
|
238
|
+
export type IContactSupportPage = {
|
|
239
|
+
contactSupports: Array<IAdminContactSupport>;
|
|
240
|
+
nextPage?: Maybe<IAdminPage>;
|
|
241
|
+
};
|
|
242
|
+
|
|
243
|
+
export type IContactSupportSortInput = {
|
|
244
|
+
sortByEmail?: Maybe<ISort>;
|
|
245
|
+
sortByWallet?: Maybe<ISort>;
|
|
246
|
+
sortByCategory?: Maybe<ISort>;
|
|
247
|
+
sortByPriority?: Maybe<ISort>;
|
|
248
|
+
};
|
|
249
|
+
|
|
250
|
+
export type IContentReportFilterInput = {
|
|
251
|
+
idTerm?: Maybe<Scalars['String']>;
|
|
252
|
+
userIdTerm?: Maybe<Scalars['String']>;
|
|
253
|
+
emailTerm?: Maybe<Scalars['String']>;
|
|
254
|
+
nameOfSubjectTerm?: Maybe<Scalars['String']>;
|
|
255
|
+
contentTypeTerm?: Maybe<Scalars['String']>;
|
|
256
|
+
contentIdTerm?: Maybe<Scalars['String']>;
|
|
257
|
+
reportReasonTerm?: Maybe<Scalars['String']>;
|
|
258
|
+
};
|
|
259
|
+
|
|
260
|
+
export type IContentReportPage = {
|
|
261
|
+
contentReports: Array<IAdminContentReport>;
|
|
262
|
+
nextPage?: Maybe<IAdminPage>;
|
|
263
|
+
};
|
|
264
|
+
|
|
265
|
+
export type IContentReportSortInput = {
|
|
266
|
+
sortByUserId?: Maybe<ISort>;
|
|
267
|
+
sortByEmail?: Maybe<ISort>;
|
|
268
|
+
sortByNameOfSubject?: Maybe<ISort>;
|
|
269
|
+
sortByContentType?: Maybe<ISort>;
|
|
270
|
+
sortByContentId?: Maybe<ISort>;
|
|
271
|
+
sortByReportReason?: Maybe<ISort>;
|
|
272
|
+
};
|
|
273
|
+
|
|
206
274
|
export type IInvitesFilterInput = {
|
|
207
275
|
userIdTerm?: Maybe<Scalars['String']>;
|
|
208
276
|
usernameTerm?: Maybe<Scalars['String']>;
|
|
@@ -375,6 +443,8 @@ export type IOpportunitiesSortInput = {
|
|
|
375
443
|
|
|
376
444
|
export type IQuery = {
|
|
377
445
|
getDummy: Scalars['String'];
|
|
446
|
+
fetchContactSupportPage: IContactSupportPage;
|
|
447
|
+
fetchContentReportPage: IContentReportPage;
|
|
378
448
|
fetchAdminInvitesPage: IInvitesPage;
|
|
379
449
|
fetchAdminOpportunitiesPage: IOpportunitiesPage;
|
|
380
450
|
fetchAdminCategories: Array<IAdminCategory>;
|
|
@@ -388,6 +458,20 @@ export type IQuery = {
|
|
|
388
458
|
};
|
|
389
459
|
|
|
390
460
|
|
|
461
|
+
export type IQueryFetchContactSupportPageArgs = {
|
|
462
|
+
filter: IContactSupportFilterInput;
|
|
463
|
+
sort: IContactSupportSortInput;
|
|
464
|
+
page: IAdminPageInput;
|
|
465
|
+
};
|
|
466
|
+
|
|
467
|
+
|
|
468
|
+
export type IQueryFetchContentReportPageArgs = {
|
|
469
|
+
filter: IContentReportFilterInput;
|
|
470
|
+
sort: IContentReportSortInput;
|
|
471
|
+
page: IAdminPageInput;
|
|
472
|
+
};
|
|
473
|
+
|
|
474
|
+
|
|
391
475
|
export type IQueryFetchAdminInvitesPageArgs = {
|
|
392
476
|
filter: IInvitesFilterInput;
|
|
393
477
|
sort: IInvitesSortInput;
|
|
@@ -611,6 +695,8 @@ export type IResolversTypes = {
|
|
|
611
695
|
AdminBrand: ResolverTypeWrapper<IAdminBrand>;
|
|
612
696
|
Boolean: ResolverTypeWrapper<Scalars['Boolean']>;
|
|
613
697
|
AdminCategory: ResolverTypeWrapper<IAdminCategory>;
|
|
698
|
+
AdminContactSupport: ResolverTypeWrapper<IAdminContactSupport>;
|
|
699
|
+
AdminContentReport: ResolverTypeWrapper<IAdminContentReport>;
|
|
614
700
|
AdminInvite: ResolverTypeWrapper<IAdminInvite>;
|
|
615
701
|
Int: ResolverTypeWrapper<Scalars['Int']>;
|
|
616
702
|
AdminOpportunity: ResolverTypeWrapper<IAdminOpportunity>;
|
|
@@ -630,6 +716,12 @@ export type IResolversTypes = {
|
|
|
630
716
|
CategoriesPage: ResolverTypeWrapper<ICategoriesPage>;
|
|
631
717
|
CategoriesSortInput: ICategoriesSortInput;
|
|
632
718
|
CategoryInput: ICategoryInput;
|
|
719
|
+
ContactSupportFilterInput: IContactSupportFilterInput;
|
|
720
|
+
ContactSupportPage: ResolverTypeWrapper<IContactSupportPage>;
|
|
721
|
+
ContactSupportSortInput: IContactSupportSortInput;
|
|
722
|
+
ContentReportFilterInput: IContentReportFilterInput;
|
|
723
|
+
ContentReportPage: ResolverTypeWrapper<IContentReportPage>;
|
|
724
|
+
ContentReportSortInput: IContentReportSortInput;
|
|
633
725
|
InvitesFilterInput: IInvitesFilterInput;
|
|
634
726
|
InvitesPage: ResolverTypeWrapper<IInvitesPage>;
|
|
635
727
|
InvitesSortInput: IInvitesSortInput;
|
|
@@ -662,6 +754,8 @@ export type IResolversParentTypes = {
|
|
|
662
754
|
AdminBrand: IAdminBrand;
|
|
663
755
|
Boolean: Scalars['Boolean'];
|
|
664
756
|
AdminCategory: IAdminCategory;
|
|
757
|
+
AdminContactSupport: IAdminContactSupport;
|
|
758
|
+
AdminContentReport: IAdminContentReport;
|
|
665
759
|
AdminInvite: IAdminInvite;
|
|
666
760
|
Int: Scalars['Int'];
|
|
667
761
|
AdminOpportunity: IAdminOpportunity;
|
|
@@ -681,6 +775,12 @@ export type IResolversParentTypes = {
|
|
|
681
775
|
CategoriesPage: ICategoriesPage;
|
|
682
776
|
CategoriesSortInput: ICategoriesSortInput;
|
|
683
777
|
CategoryInput: ICategoryInput;
|
|
778
|
+
ContactSupportFilterInput: IContactSupportFilterInput;
|
|
779
|
+
ContactSupportPage: IContactSupportPage;
|
|
780
|
+
ContactSupportSortInput: IContactSupportSortInput;
|
|
781
|
+
ContentReportFilterInput: IContentReportFilterInput;
|
|
782
|
+
ContentReportPage: IContentReportPage;
|
|
783
|
+
ContentReportSortInput: IContentReportSortInput;
|
|
684
784
|
InvitesFilterInput: IInvitesFilterInput;
|
|
685
785
|
InvitesPage: IInvitesPage;
|
|
686
786
|
InvitesSortInput: IInvitesSortInput;
|
|
@@ -752,6 +852,30 @@ export type IAdminCategoryResolvers<ContextType = any, ParentType extends IResol
|
|
|
752
852
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
753
853
|
};
|
|
754
854
|
|
|
855
|
+
export type IAdminContactSupportResolvers<ContextType = any, ParentType extends IResolversParentTypes['AdminContactSupport'] = IResolversParentTypes['AdminContactSupport']> = {
|
|
856
|
+
id?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
857
|
+
userId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
858
|
+
email?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
859
|
+
walletAddress?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
860
|
+
category?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
861
|
+
description?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
862
|
+
priority?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
863
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
864
|
+
};
|
|
865
|
+
|
|
866
|
+
export type IAdminContentReportResolvers<ContextType = any, ParentType extends IResolversParentTypes['AdminContentReport'] = IResolversParentTypes['AdminContentReport']> = {
|
|
867
|
+
id?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
868
|
+
userId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
869
|
+
email?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
870
|
+
nameOfSubject?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
871
|
+
contentType?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
872
|
+
contentId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
873
|
+
reportReason?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
874
|
+
description?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
875
|
+
evidenceFileUrl?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
876
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
877
|
+
};
|
|
878
|
+
|
|
755
879
|
export type IAdminInviteResolvers<ContextType = any, ParentType extends IResolversParentTypes['AdminInvite'] = IResolversParentTypes['AdminInvite']> = {
|
|
756
880
|
userId?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
757
881
|
username?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
@@ -847,6 +971,18 @@ export type ICategoriesPageResolvers<ContextType = any, ParentType extends IReso
|
|
|
847
971
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
848
972
|
};
|
|
849
973
|
|
|
974
|
+
export type IContactSupportPageResolvers<ContextType = any, ParentType extends IResolversParentTypes['ContactSupportPage'] = IResolversParentTypes['ContactSupportPage']> = {
|
|
975
|
+
contactSupports?: Resolver<Array<IResolversTypes['AdminContactSupport']>, ParentType, ContextType>;
|
|
976
|
+
nextPage?: Resolver<Maybe<IResolversTypes['AdminPage']>, ParentType, ContextType>;
|
|
977
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
978
|
+
};
|
|
979
|
+
|
|
980
|
+
export type IContentReportPageResolvers<ContextType = any, ParentType extends IResolversParentTypes['ContentReportPage'] = IResolversParentTypes['ContentReportPage']> = {
|
|
981
|
+
contentReports?: Resolver<Array<IResolversTypes['AdminContentReport']>, ParentType, ContextType>;
|
|
982
|
+
nextPage?: Resolver<Maybe<IResolversTypes['AdminPage']>, ParentType, ContextType>;
|
|
983
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
984
|
+
};
|
|
985
|
+
|
|
850
986
|
export type IInvitesPageResolvers<ContextType = any, ParentType extends IResolversParentTypes['InvitesPage'] = IResolversParentTypes['InvitesPage']> = {
|
|
851
987
|
invites?: Resolver<Array<IResolversTypes['AdminInvite']>, ParentType, ContextType>;
|
|
852
988
|
nextPage?: Resolver<Maybe<IResolversTypes['AdminPage']>, ParentType, ContextType>;
|
|
@@ -884,6 +1020,8 @@ export type IOpportunitiesPageResolvers<ContextType = any, ParentType extends IR
|
|
|
884
1020
|
|
|
885
1021
|
export type IQueryResolvers<ContextType = any, ParentType extends IResolversParentTypes['Query'] = IResolversParentTypes['Query']> = {
|
|
886
1022
|
getDummy?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
1023
|
+
fetchContactSupportPage?: Resolver<IResolversTypes['ContactSupportPage'], ParentType, ContextType, RequireFields<IQueryFetchContactSupportPageArgs, 'filter' | 'sort' | 'page'>>;
|
|
1024
|
+
fetchContentReportPage?: Resolver<IResolversTypes['ContentReportPage'], ParentType, ContextType, RequireFields<IQueryFetchContentReportPageArgs, 'filter' | 'sort' | 'page'>>;
|
|
887
1025
|
fetchAdminInvitesPage?: Resolver<IResolversTypes['InvitesPage'], ParentType, ContextType, RequireFields<IQueryFetchAdminInvitesPageArgs, 'filter' | 'sort' | 'page'>>;
|
|
888
1026
|
fetchAdminOpportunitiesPage?: Resolver<IResolversTypes['OpportunitiesPage'], ParentType, ContextType, RequireFields<IQueryFetchAdminOpportunitiesPageArgs, 'filter' | 'sort' | 'page'>>;
|
|
889
1027
|
fetchAdminCategories?: Resolver<Array<IResolversTypes['AdminCategory']>, ParentType, ContextType>;
|
|
@@ -937,6 +1075,8 @@ export type IResolvers<ContextType = any> = {
|
|
|
937
1075
|
ActiveInvite?: IActiveInviteResolvers<ContextType>;
|
|
938
1076
|
AdminBrand?: IAdminBrandResolvers<ContextType>;
|
|
939
1077
|
AdminCategory?: IAdminCategoryResolvers<ContextType>;
|
|
1078
|
+
AdminContactSupport?: IAdminContactSupportResolvers<ContextType>;
|
|
1079
|
+
AdminContentReport?: IAdminContentReportResolvers<ContextType>;
|
|
940
1080
|
AdminInvite?: IAdminInviteResolvers<ContextType>;
|
|
941
1081
|
AdminOpportunity?: IAdminOpportunityResolvers<ContextType>;
|
|
942
1082
|
AdminPage?: IAdminPageResolvers<ContextType>;
|
|
@@ -945,6 +1085,8 @@ export type IResolvers<ContextType = any> = {
|
|
|
945
1085
|
AdminXp?: IAdminXpResolvers<ContextType>;
|
|
946
1086
|
BrandsPage?: IBrandsPageResolvers<ContextType>;
|
|
947
1087
|
CategoriesPage?: ICategoriesPageResolvers<ContextType>;
|
|
1088
|
+
ContactSupportPage?: IContactSupportPageResolvers<ContextType>;
|
|
1089
|
+
ContentReportPage?: IContentReportPageResolvers<ContextType>;
|
|
948
1090
|
InvitesPage?: IInvitesPageResolvers<ContextType>;
|
|
949
1091
|
Long?: GraphQLScalarType;
|
|
950
1092
|
Mutation?: IMutationResolvers<ContextType>;
|