@ludo.ninja/api 2.8.34 → 2.8.35
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.
- package/build/graphql_tools/__generated__/formsHost/schema.d.ts +422 -0
- package/build/graphql_tools/__generated__/formsHost/schema.js +210 -0
- package/build/graphql_tools/__generated__/identityHost/schema.d.ts +75 -6
- package/package.json +1 -1
- package/src/graphql_tools/__generated__/formsHost/schema.ts +550 -0
- package/src/graphql_tools/__generated__/identityHost/schema.ts +85 -6
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -23,6 +23,26 @@ export type Scalars = {
|
|
|
23
23
|
|
|
24
24
|
|
|
25
25
|
|
|
26
|
+
export type IAuditBalanceCollection = {
|
|
27
|
+
collection?: Maybe<Scalars['String']>;
|
|
28
|
+
type?: Maybe<Scalars['String']>;
|
|
29
|
+
name?: Maybe<Scalars['String']>;
|
|
30
|
+
balance?: Maybe<Scalars['Int']>;
|
|
31
|
+
};
|
|
32
|
+
|
|
33
|
+
export type IAuditInterest = {
|
|
34
|
+
name?: Maybe<Scalars['String']>;
|
|
35
|
+
items?: Maybe<Scalars['Int']>;
|
|
36
|
+
percentage?: Maybe<Scalars['Float']>;
|
|
37
|
+
};
|
|
38
|
+
|
|
39
|
+
/** noinspection SpellCheckingInspection */
|
|
40
|
+
export type IAuditNftBalance = {
|
|
41
|
+
nativeValue?: Maybe<Scalars['Float']>;
|
|
42
|
+
totalNfts?: Maybe<Scalars['Int']>;
|
|
43
|
+
collections?: Maybe<Array<IAuditBalanceCollection>>;
|
|
44
|
+
};
|
|
45
|
+
|
|
26
46
|
export type IFollowingStatus = {
|
|
27
47
|
userId: Scalars['ID'];
|
|
28
48
|
following: Scalars['Boolean'];
|
|
@@ -54,6 +74,15 @@ export type IInputSocial = {
|
|
|
54
74
|
};
|
|
55
75
|
|
|
56
76
|
|
|
77
|
+
/** noinspection SpellCheckingInspection */
|
|
78
|
+
export type IMultiversxAudit = {
|
|
79
|
+
delegated?: Maybe<Scalars['Float']>;
|
|
80
|
+
interests?: Maybe<Array<IAuditInterest>>;
|
|
81
|
+
nativeBalance?: Maybe<Scalars['Float']>;
|
|
82
|
+
nftBalance?: Maybe<IAuditNftBalance>;
|
|
83
|
+
tokenValue?: Maybe<Scalars['Float']>;
|
|
84
|
+
};
|
|
85
|
+
|
|
57
86
|
export type IMutation = {
|
|
58
87
|
setDummy: Scalars['String'];
|
|
59
88
|
createNonce: Scalars['String'];
|
|
@@ -233,6 +262,7 @@ export type IProfile = {
|
|
|
233
262
|
export type IQuery = {
|
|
234
263
|
getDummy: Scalars['String'];
|
|
235
264
|
fetchUserWallets: Array<Maybe<IWallet>>;
|
|
265
|
+
fetchMultiversxAudit: IMultiversxAudit;
|
|
236
266
|
isInviteCodeAvailable: Scalars['Boolean'];
|
|
237
267
|
getMyInviteCodes: Array<IUserInviteCode>;
|
|
238
268
|
fetchProfile: IProfile;
|
|
@@ -246,6 +276,11 @@ export type IQueryFetchUserWalletsArgs = {
|
|
|
246
276
|
};
|
|
247
277
|
|
|
248
278
|
|
|
279
|
+
export type IQueryFetchMultiversxAuditArgs = {
|
|
280
|
+
wallet: Scalars['String'];
|
|
281
|
+
};
|
|
282
|
+
|
|
283
|
+
|
|
249
284
|
export type IQueryIsInviteCodeAvailableArgs = {
|
|
250
285
|
inviteCode: Scalars['String'];
|
|
251
286
|
};
|
|
@@ -372,18 +407,22 @@ export type DirectiveResolverFn<TResult = {}, TParent = {}, TContext = {}, TArgs
|
|
|
372
407
|
|
|
373
408
|
/** Mapping between all available schema types and the resolvers types */
|
|
374
409
|
export type IResolversTypes = {
|
|
410
|
+
AuditBalanceCollection: ResolverTypeWrapper<IAuditBalanceCollection>;
|
|
411
|
+
String: ResolverTypeWrapper<Scalars['String']>;
|
|
412
|
+
Int: ResolverTypeWrapper<Scalars['Int']>;
|
|
413
|
+
AuditInterest: ResolverTypeWrapper<IAuditInterest>;
|
|
414
|
+
Float: ResolverTypeWrapper<Scalars['Float']>;
|
|
415
|
+
AuditNFTBalance: ResolverTypeWrapper<IAuditNftBalance>;
|
|
375
416
|
FollowingStatus: ResolverTypeWrapper<IFollowingStatus>;
|
|
376
417
|
ID: ResolverTypeWrapper<Scalars['ID']>;
|
|
377
418
|
Boolean: ResolverTypeWrapper<Scalars['Boolean']>;
|
|
378
419
|
Identity: ResolverTypeWrapper<IIdentity>;
|
|
379
|
-
String: ResolverTypeWrapper<Scalars['String']>;
|
|
380
420
|
InputProfile: IInputProfile;
|
|
381
421
|
InputSocial: IInputSocial;
|
|
382
422
|
Long: ResolverTypeWrapper<Scalars['Long']>;
|
|
423
|
+
MultiversxAudit: ResolverTypeWrapper<IMultiversxAudit>;
|
|
383
424
|
Mutation: ResolverTypeWrapper<{}>;
|
|
384
|
-
Int: ResolverTypeWrapper<Scalars['Int']>;
|
|
385
425
|
Profile: ResolverTypeWrapper<IProfile>;
|
|
386
|
-
Float: ResolverTypeWrapper<Scalars['Float']>;
|
|
387
426
|
Query: ResolverTypeWrapper<{}>;
|
|
388
427
|
Role: IRole;
|
|
389
428
|
Social: ResolverTypeWrapper<ISocial>;
|
|
@@ -395,18 +434,22 @@ export type IResolversTypes = {
|
|
|
395
434
|
|
|
396
435
|
/** Mapping between all available schema types and the resolvers parents */
|
|
397
436
|
export type IResolversParentTypes = {
|
|
437
|
+
AuditBalanceCollection: IAuditBalanceCollection;
|
|
438
|
+
String: Scalars['String'];
|
|
439
|
+
Int: Scalars['Int'];
|
|
440
|
+
AuditInterest: IAuditInterest;
|
|
441
|
+
Float: Scalars['Float'];
|
|
442
|
+
AuditNFTBalance: IAuditNftBalance;
|
|
398
443
|
FollowingStatus: IFollowingStatus;
|
|
399
444
|
ID: Scalars['ID'];
|
|
400
445
|
Boolean: Scalars['Boolean'];
|
|
401
446
|
Identity: IIdentity;
|
|
402
|
-
String: Scalars['String'];
|
|
403
447
|
InputProfile: IInputProfile;
|
|
404
448
|
InputSocial: IInputSocial;
|
|
405
449
|
Long: Scalars['Long'];
|
|
450
|
+
MultiversxAudit: IMultiversxAudit;
|
|
406
451
|
Mutation: {};
|
|
407
|
-
Int: Scalars['Int'];
|
|
408
452
|
Profile: IProfile;
|
|
409
|
-
Float: Scalars['Float'];
|
|
410
453
|
Query: {};
|
|
411
454
|
Social: ISocial;
|
|
412
455
|
TokenPair: ITokenPair;
|
|
@@ -448,6 +491,28 @@ export type IOneOfDirectiveArgs = { };
|
|
|
448
491
|
|
|
449
492
|
export type IOneOfDirectiveResolver<Result, Parent, ContextType = any, Args = IOneOfDirectiveArgs> = DirectiveResolverFn<Result, Parent, ContextType, Args>;
|
|
450
493
|
|
|
494
|
+
export type IAuditBalanceCollectionResolvers<ContextType = any, ParentType extends IResolversParentTypes['AuditBalanceCollection'] = IResolversParentTypes['AuditBalanceCollection']> = {
|
|
495
|
+
collection?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
496
|
+
type?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
497
|
+
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
498
|
+
balance?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
|
499
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
500
|
+
};
|
|
501
|
+
|
|
502
|
+
export type IAuditInterestResolvers<ContextType = any, ParentType extends IResolversParentTypes['AuditInterest'] = IResolversParentTypes['AuditInterest']> = {
|
|
503
|
+
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
504
|
+
items?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
|
505
|
+
percentage?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
|
|
506
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
507
|
+
};
|
|
508
|
+
|
|
509
|
+
export type IAuditNftBalanceResolvers<ContextType = any, ParentType extends IResolversParentTypes['AuditNFTBalance'] = IResolversParentTypes['AuditNFTBalance']> = {
|
|
510
|
+
nativeValue?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
|
|
511
|
+
totalNfts?: Resolver<Maybe<IResolversTypes['Int']>, ParentType, ContextType>;
|
|
512
|
+
collections?: Resolver<Maybe<Array<IResolversTypes['AuditBalanceCollection']>>, ParentType, ContextType>;
|
|
513
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
514
|
+
};
|
|
515
|
+
|
|
451
516
|
export type IFollowingStatusResolvers<ContextType = any, ParentType extends IResolversParentTypes['FollowingStatus'] = IResolversParentTypes['FollowingStatus']> = {
|
|
452
517
|
userId?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
|
453
518
|
following?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType>;
|
|
@@ -470,6 +535,15 @@ export interface ILongScalarConfig extends GraphQLScalarTypeConfig<IResolversTyp
|
|
|
470
535
|
name: 'Long';
|
|
471
536
|
}
|
|
472
537
|
|
|
538
|
+
export type IMultiversxAuditResolvers<ContextType = any, ParentType extends IResolversParentTypes['MultiversxAudit'] = IResolversParentTypes['MultiversxAudit']> = {
|
|
539
|
+
delegated?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
|
|
540
|
+
interests?: Resolver<Maybe<Array<IResolversTypes['AuditInterest']>>, ParentType, ContextType>;
|
|
541
|
+
nativeBalance?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
|
|
542
|
+
nftBalance?: Resolver<Maybe<IResolversTypes['AuditNFTBalance']>, ParentType, ContextType>;
|
|
543
|
+
tokenValue?: Resolver<Maybe<IResolversTypes['Float']>, ParentType, ContextType>;
|
|
544
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
545
|
+
};
|
|
546
|
+
|
|
473
547
|
export type IMutationResolvers<ContextType = any, ParentType extends IResolversParentTypes['Mutation'] = IResolversParentTypes['Mutation']> = {
|
|
474
548
|
setDummy?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
475
549
|
createNonce?: Resolver<IResolversTypes['String'], ParentType, ContextType, RequireFields<IMutationCreateNonceArgs, 'address' | 'blockchain'>>;
|
|
@@ -519,6 +593,7 @@ export type IProfileResolvers<ContextType = any, ParentType extends IResolversPa
|
|
|
519
593
|
export type IQueryResolvers<ContextType = any, ParentType extends IResolversParentTypes['Query'] = IResolversParentTypes['Query']> = {
|
|
520
594
|
getDummy?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
521
595
|
fetchUserWallets?: Resolver<Array<Maybe<IResolversTypes['Wallet']>>, ParentType, ContextType, RequireFields<IQueryFetchUserWalletsArgs, 'userId'>>;
|
|
596
|
+
fetchMultiversxAudit?: Resolver<IResolversTypes['MultiversxAudit'], ParentType, ContextType, RequireFields<IQueryFetchMultiversxAuditArgs, 'wallet'>>;
|
|
522
597
|
isInviteCodeAvailable?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IQueryIsInviteCodeAvailableArgs, 'inviteCode'>>;
|
|
523
598
|
getMyInviteCodes?: Resolver<Array<IResolversTypes['UserInviteCode']>, ParentType, ContextType>;
|
|
524
599
|
fetchProfile?: Resolver<IResolversTypes['Profile'], ParentType, ContextType, RequireFields<IQueryFetchProfileArgs, 'userId'>>;
|
|
@@ -565,9 +640,13 @@ export type IWalletResolvers<ContextType = any, ParentType extends IResolversPar
|
|
|
565
640
|
};
|
|
566
641
|
|
|
567
642
|
export type IResolvers<ContextType = any> = {
|
|
643
|
+
AuditBalanceCollection?: IAuditBalanceCollectionResolvers<ContextType>;
|
|
644
|
+
AuditInterest?: IAuditInterestResolvers<ContextType>;
|
|
645
|
+
AuditNFTBalance?: IAuditNftBalanceResolvers<ContextType>;
|
|
568
646
|
FollowingStatus?: IFollowingStatusResolvers<ContextType>;
|
|
569
647
|
Identity?: IIdentityResolvers<ContextType>;
|
|
570
648
|
Long?: GraphQLScalarType;
|
|
649
|
+
MultiversxAudit?: IMultiversxAuditResolvers<ContextType>;
|
|
571
650
|
Mutation?: IMutationResolvers<ContextType>;
|
|
572
651
|
Profile?: IProfileResolvers<ContextType>;
|
|
573
652
|
Query?: IQueryResolvers<ContextType>;
|