@ludo.ninja/api 2.8.77 → 2.8.79
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__/assetsHost/schema.d.ts +0 -5
- package/build/graphql_tools/__generated__/authHost/schema.d.ts +14 -3
- package/build/graphql_tools/__generated__/collectionsHost/schema.d.ts +2 -8
- package/build/graphql_tools/__generated__/identityHost/schema.d.ts +20 -4
- package/build/graphql_tools/__generated__/mediasHost/schema.d.ts +8 -1
- package/build/graphql_tools/__generated__/opportunitiesHost/schema.d.ts +0 -7
- package/build/graphql_tools/__generated__/preferencesHost/schema.d.ts +9 -5
- package/build/graphql_tools/__generated__/searchHost/schema.d.ts +1 -1
- package/build/graphql_tools/__generated__/tapHost/schema.d.ts +35 -6
- package/build/graphql_tools/__generated__/tapHost/schema.js +30 -1
- package/build/hosts/index.d.ts +1 -0
- package/build/hosts/index.js +2 -1
- package/build/index.d.ts +4 -0
- package/package.json +1 -1
- package/src/graphql_tools/__generated__/assetsHost/schema.ts +0 -5
- package/src/graphql_tools/__generated__/authHost/schema.ts +16 -3
- package/src/graphql_tools/__generated__/collectionsHost/schema.ts +2 -8
- package/src/graphql_tools/__generated__/identityHost/schema.ts +22 -4
- package/src/graphql_tools/__generated__/mediasHost/schema.ts +10 -1
- package/src/graphql_tools/__generated__/opportunitiesHost/schema.ts +0 -7
- package/src/graphql_tools/__generated__/preferencesHost/schema.ts +11 -5
- package/src/graphql_tools/__generated__/searchHost/schema.ts +1 -1
- package/src/graphql_tools/__generated__/tapHost/schema.ts +39 -6
- package/src/hosts/index.ts +2 -0
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -120,7 +120,6 @@ export type IProfile = {
|
|
|
120
120
|
views?: Maybe<Scalars['Int']>;
|
|
121
121
|
deleted?: Maybe<Scalars['Boolean']>;
|
|
122
122
|
};
|
|
123
|
-
/** scalar Upload */
|
|
124
123
|
export type IQuery = {
|
|
125
124
|
getDummy: Scalars['String'];
|
|
126
125
|
fetchAssetByBlockchain: IAsset;
|
|
@@ -128,22 +127,18 @@ export type IQuery = {
|
|
|
128
127
|
fetchDynamicAssetsData: Array<Maybe<IDynamicAssetData>>;
|
|
129
128
|
fetchAssets: Array<Maybe<IAsset>>;
|
|
130
129
|
};
|
|
131
|
-
/** scalar Upload */
|
|
132
130
|
export type IQueryFetchAssetByBlockchainArgs = {
|
|
133
131
|
blockchain: Scalars['String'];
|
|
134
132
|
address?: Maybe<Scalars['String']>;
|
|
135
133
|
tokenId?: Maybe<Scalars['String']>;
|
|
136
134
|
elrondId?: Maybe<Scalars['String']>;
|
|
137
135
|
};
|
|
138
|
-
/** scalar Upload */
|
|
139
136
|
export type IQueryFetchDynamicAssetDataArgs = {
|
|
140
137
|
assetId: Scalars['String'];
|
|
141
138
|
};
|
|
142
|
-
/** scalar Upload */
|
|
143
139
|
export type IQueryFetchDynamicAssetsDataArgs = {
|
|
144
140
|
assetIds: Array<Scalars['String']>;
|
|
145
141
|
};
|
|
146
|
-
/** scalar Upload */
|
|
147
142
|
export type IQueryFetchAssetsArgs = {
|
|
148
143
|
assetIds: Array<Scalars['String']>;
|
|
149
144
|
};
|
|
@@ -55,21 +55,23 @@ export type IMutationRefreshTokenArgs = {
|
|
|
55
55
|
export type IMutationGenerateCompanyTokenArgs = {
|
|
56
56
|
input: IGenerateCompanyTokenInput;
|
|
57
57
|
};
|
|
58
|
-
/** scalar Upload */
|
|
59
58
|
export type IQuery = {
|
|
60
59
|
getDummy: Scalars['String'];
|
|
61
60
|
isValidAuthToken: Scalars['Boolean'];
|
|
62
61
|
fetchLogins: ILoginsPage;
|
|
63
62
|
};
|
|
64
|
-
/** scalar Upload */
|
|
65
63
|
export type IQueryIsValidAuthTokenArgs = {
|
|
66
64
|
authToken: Scalars['String'];
|
|
67
65
|
};
|
|
68
|
-
/** scalar Upload */
|
|
69
66
|
export type IQueryFetchLoginsArgs = {
|
|
70
67
|
pageSize: Scalars['Int'];
|
|
71
68
|
pageToken?: Maybe<Scalars['String']>;
|
|
72
69
|
};
|
|
70
|
+
export type ITestResponse = {
|
|
71
|
+
name?: Maybe<Scalars['String']>;
|
|
72
|
+
value?: Maybe<Scalars['String']>;
|
|
73
|
+
test?: Maybe<Scalars['String']>;
|
|
74
|
+
};
|
|
73
75
|
export type ITokenPair = {
|
|
74
76
|
userId?: Maybe<Scalars['String']>;
|
|
75
77
|
tokenAuth?: Maybe<Scalars['String']>;
|
|
@@ -113,6 +115,7 @@ export type IResolversTypes = {
|
|
|
113
115
|
Long: ResolverTypeWrapper<Scalars['Long']>;
|
|
114
116
|
Mutation: ResolverTypeWrapper<{}>;
|
|
115
117
|
Query: ResolverTypeWrapper<{}>;
|
|
118
|
+
TestResponse: ResolverTypeWrapper<ITestResponse>;
|
|
116
119
|
TokenPair: ResolverTypeWrapper<ITokenPair>;
|
|
117
120
|
};
|
|
118
121
|
/** Mapping between all available schema types and the resolvers parents */
|
|
@@ -126,6 +129,7 @@ export type IResolversParentTypes = {
|
|
|
126
129
|
Long: Scalars['Long'];
|
|
127
130
|
Mutation: {};
|
|
128
131
|
Query: {};
|
|
132
|
+
TestResponse: ITestResponse;
|
|
129
133
|
TokenPair: ITokenPair;
|
|
130
134
|
};
|
|
131
135
|
export type IOneOfDirectiveArgs = {};
|
|
@@ -156,6 +160,12 @@ export type IQueryResolvers<ContextType = any, ParentType extends IResolversPare
|
|
|
156
160
|
isValidAuthToken?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IQueryIsValidAuthTokenArgs, 'authToken'>>;
|
|
157
161
|
fetchLogins?: Resolver<IResolversTypes['LoginsPage'], ParentType, ContextType, RequireFields<IQueryFetchLoginsArgs, 'pageSize'>>;
|
|
158
162
|
};
|
|
163
|
+
export type ITestResponseResolvers<ContextType = any, ParentType extends IResolversParentTypes['TestResponse'] = IResolversParentTypes['TestResponse']> = {
|
|
164
|
+
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
165
|
+
value?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
166
|
+
test?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
167
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
168
|
+
};
|
|
159
169
|
export type ITokenPairResolvers<ContextType = any, ParentType extends IResolversParentTypes['TokenPair'] = IResolversParentTypes['TokenPair']> = {
|
|
160
170
|
userId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
161
171
|
tokenAuth?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
@@ -169,6 +179,7 @@ export type IResolvers<ContextType = any> = {
|
|
|
169
179
|
Long?: GraphQLScalarType;
|
|
170
180
|
Mutation?: IMutationResolvers<ContextType>;
|
|
171
181
|
Query?: IQueryResolvers<ContextType>;
|
|
182
|
+
TestResponse?: ITestResponseResolvers<ContextType>;
|
|
172
183
|
TokenPair?: ITokenPairResolvers<ContextType>;
|
|
173
184
|
};
|
|
174
185
|
export type IDirectiveResolvers<ContextType = any> = {
|
|
@@ -50,7 +50,7 @@ export type ICollection = {
|
|
|
50
50
|
medias?: Maybe<Array<Maybe<IMedia>>>;
|
|
51
51
|
likes?: Maybe<Scalars['Int']>;
|
|
52
52
|
liked?: Maybe<Scalars['Boolean']>;
|
|
53
|
-
/**
|
|
53
|
+
/** TODO: remove */
|
|
54
54
|
rank?: Maybe<Scalars['Float']>;
|
|
55
55
|
};
|
|
56
56
|
export type ICollectionAsset = {
|
|
@@ -76,7 +76,7 @@ export type ICollectionAsset = {
|
|
|
76
76
|
attributes?: Maybe<Array<Maybe<IAttribute>>>;
|
|
77
77
|
likes?: Maybe<Scalars['Int']>;
|
|
78
78
|
liked?: Maybe<Scalars['Boolean']>;
|
|
79
|
-
/**
|
|
79
|
+
/** TODO: remove */
|
|
80
80
|
views?: Maybe<Scalars['Int']>;
|
|
81
81
|
visible?: Maybe<Scalars['Boolean']>;
|
|
82
82
|
createdAt?: Maybe<Scalars['Long']>;
|
|
@@ -146,7 +146,6 @@ export type IProfile = {
|
|
|
146
146
|
userpic?: Maybe<Scalars['String']>;
|
|
147
147
|
visible?: Maybe<Scalars['Boolean']>;
|
|
148
148
|
};
|
|
149
|
-
/** scalar Upload */
|
|
150
149
|
export type IQuery = {
|
|
151
150
|
getDummy: Scalars['String'];
|
|
152
151
|
fetchCollectionV1: ICollection;
|
|
@@ -155,24 +154,19 @@ export type IQuery = {
|
|
|
155
154
|
fetchDynamicCollectionDataV1: IDynamicCollectionDataV1;
|
|
156
155
|
fetchDynamicCollectionsDataV1: Array<IDynamicCollectionDataV1>;
|
|
157
156
|
};
|
|
158
|
-
/** scalar Upload */
|
|
159
157
|
export type IQueryFetchCollectionV1Args = {
|
|
160
158
|
collectionId: Scalars['String'];
|
|
161
159
|
};
|
|
162
|
-
/** scalar Upload */
|
|
163
160
|
export type IQueryFetchCollectionsArgs = {
|
|
164
161
|
pageSize: Scalars['Int'];
|
|
165
162
|
pageToken?: Maybe<Scalars['String']>;
|
|
166
163
|
};
|
|
167
|
-
/** scalar Upload */
|
|
168
164
|
export type IQueryFetchCollectionsByIdsV1Args = {
|
|
169
165
|
collectionIds: Array<Scalars['String']>;
|
|
170
166
|
};
|
|
171
|
-
/** scalar Upload */
|
|
172
167
|
export type IQueryFetchDynamicCollectionDataV1Args = {
|
|
173
168
|
input: IDynamicCollectionDataInput;
|
|
174
169
|
};
|
|
175
|
-
/** scalar Upload */
|
|
176
170
|
export type IQueryFetchDynamicCollectionsDataV1Args = {
|
|
177
171
|
input: Array<IDynamicCollectionDataInput>;
|
|
178
172
|
};
|
|
@@ -36,7 +36,7 @@ export type IAuditInterest = {
|
|
|
36
36
|
items?: Maybe<Scalars['Int']>;
|
|
37
37
|
percentage?: Maybe<Scalars['Float']>;
|
|
38
38
|
};
|
|
39
|
-
/**
|
|
39
|
+
/** noinspection SpellCheckingInspection */
|
|
40
40
|
export type IAuditNftBalance = {
|
|
41
41
|
nativeValue?: Maybe<Scalars['Float']>;
|
|
42
42
|
totalNfts?: Maybe<Scalars['Int']>;
|
|
@@ -52,6 +52,12 @@ export type IDomain = {
|
|
|
52
52
|
lengthBytes?: Maybe<Scalars['Long']>;
|
|
53
53
|
value?: Maybe<Scalars['String']>;
|
|
54
54
|
};
|
|
55
|
+
export type IFollower = {
|
|
56
|
+
userId: Scalars['ID'];
|
|
57
|
+
username?: Maybe<Scalars['String']>;
|
|
58
|
+
userpic?: Maybe<Scalars['String']>;
|
|
59
|
+
following?: Maybe<Scalars['Boolean']>;
|
|
60
|
+
};
|
|
55
61
|
export type IFollowingStatus = {
|
|
56
62
|
userId: Scalars['ID'];
|
|
57
63
|
following: Scalars['Boolean'];
|
|
@@ -89,7 +95,7 @@ export type IInviteCodeUser = {
|
|
|
89
95
|
inviteeId: Scalars['ID'];
|
|
90
96
|
usedAt: Scalars['Long'];
|
|
91
97
|
};
|
|
92
|
-
/**
|
|
98
|
+
/** noinspection SpellCheckingInspection */
|
|
93
99
|
export type IMultiversxAudit = {
|
|
94
100
|
delegated?: Maybe<Scalars['Float']>;
|
|
95
101
|
interests?: Maybe<Array<IAuditInterest>>;
|
|
@@ -374,9 +380,10 @@ export type IResolversTypes = {
|
|
|
374
380
|
AuditNFTBalance: ResolverTypeWrapper<IAuditNftBalance>;
|
|
375
381
|
CheckTonProofRequest: ICheckTonProofRequest;
|
|
376
382
|
Domain: IDomain;
|
|
377
|
-
|
|
383
|
+
Follower: ResolverTypeWrapper<IFollower>;
|
|
378
384
|
ID: ResolverTypeWrapper<Scalars['ID']>;
|
|
379
385
|
Boolean: ResolverTypeWrapper<Scalars['Boolean']>;
|
|
386
|
+
FollowingStatus: ResolverTypeWrapper<IFollowingStatus>;
|
|
380
387
|
Identity: ResolverTypeWrapper<IIdentity>;
|
|
381
388
|
InputProfile: IInputProfile;
|
|
382
389
|
InputSocial: IInputSocial;
|
|
@@ -406,9 +413,10 @@ export type IResolversParentTypes = {
|
|
|
406
413
|
AuditNFTBalance: IAuditNftBalance;
|
|
407
414
|
CheckTonProofRequest: ICheckTonProofRequest;
|
|
408
415
|
Domain: IDomain;
|
|
409
|
-
|
|
416
|
+
Follower: IFollower;
|
|
410
417
|
ID: Scalars['ID'];
|
|
411
418
|
Boolean: Scalars['Boolean'];
|
|
419
|
+
FollowingStatus: IFollowingStatus;
|
|
412
420
|
Identity: IIdentity;
|
|
413
421
|
InputProfile: IInputProfile;
|
|
414
422
|
InputSocial: IInputSocial;
|
|
@@ -469,6 +477,13 @@ export type IAuditNftBalanceResolvers<ContextType = any, ParentType extends IRes
|
|
|
469
477
|
collections?: Resolver<Maybe<Array<IResolversTypes['AuditBalanceCollection']>>, ParentType, ContextType>;
|
|
470
478
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
471
479
|
};
|
|
480
|
+
export type IFollowerResolvers<ContextType = any, ParentType extends IResolversParentTypes['Follower'] = IResolversParentTypes['Follower']> = {
|
|
481
|
+
userId?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
|
482
|
+
username?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
483
|
+
userpic?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
484
|
+
following?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
485
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
486
|
+
};
|
|
472
487
|
export type IFollowingStatusResolvers<ContextType = any, ParentType extends IResolversParentTypes['FollowingStatus'] = IResolversParentTypes['FollowingStatus']> = {
|
|
473
488
|
userId?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
|
474
489
|
following?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType>;
|
|
@@ -631,6 +646,7 @@ export type IResolvers<ContextType = any> = {
|
|
|
631
646
|
AuditBalanceCollection?: IAuditBalanceCollectionResolvers<ContextType>;
|
|
632
647
|
AuditInterest?: IAuditInterestResolvers<ContextType>;
|
|
633
648
|
AuditNFTBalance?: IAuditNftBalanceResolvers<ContextType>;
|
|
649
|
+
Follower?: IFollowerResolvers<ContextType>;
|
|
634
650
|
FollowingStatus?: IFollowingStatusResolvers<ContextType>;
|
|
635
651
|
Identity?: IIdentityResolvers<ContextType>;
|
|
636
652
|
InviteCode?: IInviteCodeResolvers<ContextType>;
|
|
@@ -22,7 +22,8 @@ export type Scalars = {
|
|
|
22
22
|
Boolean: boolean;
|
|
23
23
|
Int: number;
|
|
24
24
|
Float: number;
|
|
25
|
-
/**
|
|
25
|
+
/** A 64-bit signed integer */
|
|
26
|
+
Long: any;
|
|
26
27
|
Upload: any;
|
|
27
28
|
};
|
|
28
29
|
export type IMutation = {
|
|
@@ -103,6 +104,7 @@ export type NextResolverFn<T> = () => Promise<T>;
|
|
|
103
104
|
export type DirectiveResolverFn<TResult = {}, TParent = {}, TContext = {}, TArgs = {}> = (next: NextResolverFn<TResult>, parent: TParent, args: TArgs, context: TContext, info: GraphQLResolveInfo) => TResult | Promise<TResult>;
|
|
104
105
|
/** Mapping between all available schema types and the resolvers types */
|
|
105
106
|
export type IResolversTypes = {
|
|
107
|
+
Long: ResolverTypeWrapper<Scalars['Long']>;
|
|
106
108
|
Mutation: ResolverTypeWrapper<{}>;
|
|
107
109
|
String: ResolverTypeWrapper<Scalars['String']>;
|
|
108
110
|
ID: ResolverTypeWrapper<Scalars['ID']>;
|
|
@@ -112,6 +114,7 @@ export type IResolversTypes = {
|
|
|
112
114
|
};
|
|
113
115
|
/** Mapping between all available schema types and the resolvers parents */
|
|
114
116
|
export type IResolversParentTypes = {
|
|
117
|
+
Long: Scalars['Long'];
|
|
115
118
|
Mutation: {};
|
|
116
119
|
String: Scalars['String'];
|
|
117
120
|
ID: Scalars['ID'];
|
|
@@ -121,6 +124,9 @@ export type IResolversParentTypes = {
|
|
|
121
124
|
};
|
|
122
125
|
export type IOneOfDirectiveArgs = {};
|
|
123
126
|
export type IOneOfDirectiveResolver<Result, Parent, ContextType = any, Args = IOneOfDirectiveArgs> = DirectiveResolverFn<Result, Parent, ContextType, Args>;
|
|
127
|
+
export interface ILongScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['Long'], any> {
|
|
128
|
+
name: 'Long';
|
|
129
|
+
}
|
|
124
130
|
export type IMutationResolvers<ContextType = any, ParentType extends IResolversParentTypes['Mutation'] = IResolversParentTypes['Mutation']> = {
|
|
125
131
|
setDummy?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
126
132
|
uploadUserpic?: Resolver<IResolversTypes['String'], ParentType, ContextType, RequireFields<IMutationUploadUserpicArgs, 'file'>>;
|
|
@@ -142,6 +148,7 @@ export interface IUploadScalarConfig extends GraphQLScalarTypeConfig<IResolversT
|
|
|
142
148
|
name: 'Upload';
|
|
143
149
|
}
|
|
144
150
|
export type IResolvers<ContextType = any> = {
|
|
151
|
+
Long?: GraphQLScalarType;
|
|
145
152
|
Mutation?: IMutationResolvers<ContextType>;
|
|
146
153
|
Query?: IQueryResolvers<ContextType>;
|
|
147
154
|
Upload?: GraphQLScalarType;
|
|
@@ -192,7 +192,6 @@ export type IOpportunityV2 = {
|
|
|
192
192
|
shareLink?: Maybe<Scalars['String']>;
|
|
193
193
|
liked?: Maybe<Scalars['Boolean']>;
|
|
194
194
|
};
|
|
195
|
-
/** scalar Upload */
|
|
196
195
|
export type IQuery = {
|
|
197
196
|
getDummy: Scalars['String'];
|
|
198
197
|
fetchBrands?: Maybe<Array<Maybe<IBrand>>>;
|
|
@@ -206,27 +205,21 @@ export type IQuery = {
|
|
|
206
205
|
fetchOpportunitiesByIds: Array<IOpportunityV2>;
|
|
207
206
|
fetchOpportunitiesForWallet?: Maybe<Array<Maybe<IOpportunityV2>>>;
|
|
208
207
|
};
|
|
209
|
-
/** scalar Upload */
|
|
210
208
|
export type IQueryFetchBrandArgs = {
|
|
211
209
|
brandId: Scalars['ID'];
|
|
212
210
|
};
|
|
213
|
-
/** scalar Upload */
|
|
214
211
|
export type IQueryFetchCategoryArgs = {
|
|
215
212
|
categoryId: Scalars['ID'];
|
|
216
213
|
};
|
|
217
|
-
/** scalar Upload */
|
|
218
214
|
export type IQueryFetchOpportunitiesArgs = {
|
|
219
215
|
domain?: Maybe<Scalars['String']>;
|
|
220
216
|
};
|
|
221
|
-
/** scalar Upload */
|
|
222
217
|
export type IQueryFetchOpportunityArgs = {
|
|
223
218
|
opportunityId: Scalars['ID'];
|
|
224
219
|
};
|
|
225
|
-
/** scalar Upload */
|
|
226
220
|
export type IQueryFetchOpportunitiesByIdsArgs = {
|
|
227
221
|
opportunityIds: Array<Scalars['ID']>;
|
|
228
222
|
};
|
|
229
|
-
/** scalar Upload */
|
|
230
223
|
export type IQueryFetchOpportunitiesForWalletArgs = {
|
|
231
224
|
blockchain: Scalars['String'];
|
|
232
225
|
wallet: Scalars['String'];
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { GraphQLResolveInfo } from 'graphql';
|
|
1
|
+
import { GraphQLResolveInfo, GraphQLScalarType, GraphQLScalarTypeConfig } from 'graphql';
|
|
2
2
|
import * as Apollo from '@apollo/client';
|
|
3
3
|
export type Maybe<T> = T | null;
|
|
4
4
|
export type Exact<T extends {
|
|
@@ -22,6 +22,8 @@ export type Scalars = {
|
|
|
22
22
|
Boolean: boolean;
|
|
23
23
|
Int: number;
|
|
24
24
|
Float: number;
|
|
25
|
+
/** A 64-bit signed integer */
|
|
26
|
+
Long: any;
|
|
25
27
|
};
|
|
26
28
|
export type IExpectation = {
|
|
27
29
|
name: Scalars['String'];
|
|
@@ -42,10 +44,6 @@ export type IMutationSaveUserInterestsArgs = {
|
|
|
42
44
|
export type IMutationSaveUserExpectationsArgs = {
|
|
43
45
|
expectations: Array<Maybe<Scalars['String']>>;
|
|
44
46
|
};
|
|
45
|
-
/**
|
|
46
|
-
* scalar Long
|
|
47
|
-
* scalar Upload
|
|
48
|
-
*/
|
|
49
47
|
export type IQuery = {
|
|
50
48
|
getDummy: Scalars['String'];
|
|
51
49
|
fetchInterests: Array<Maybe<IInterest>>;
|
|
@@ -119,6 +117,7 @@ export type IResolversTypes = {
|
|
|
119
117
|
Expectation: ResolverTypeWrapper<IExpectation>;
|
|
120
118
|
String: ResolverTypeWrapper<Scalars['String']>;
|
|
121
119
|
Interest: ResolverTypeWrapper<IInterest>;
|
|
120
|
+
Long: ResolverTypeWrapper<Scalars['Long']>;
|
|
122
121
|
Mutation: ResolverTypeWrapper<{}>;
|
|
123
122
|
Boolean: ResolverTypeWrapper<Scalars['Boolean']>;
|
|
124
123
|
Query: ResolverTypeWrapper<{}>;
|
|
@@ -133,6 +132,7 @@ export type IResolversParentTypes = {
|
|
|
133
132
|
Expectation: IExpectation;
|
|
134
133
|
String: Scalars['String'];
|
|
135
134
|
Interest: IInterest;
|
|
135
|
+
Long: Scalars['Long'];
|
|
136
136
|
Mutation: {};
|
|
137
137
|
Boolean: Scalars['Boolean'];
|
|
138
138
|
Query: {};
|
|
@@ -154,6 +154,9 @@ export type IInterestResolvers<ContextType = any, ParentType extends IResolversP
|
|
|
154
154
|
imageUrl?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
155
155
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
156
156
|
};
|
|
157
|
+
export interface ILongScalarConfig extends GraphQLScalarTypeConfig<IResolversTypes['Long'], any> {
|
|
158
|
+
name: 'Long';
|
|
159
|
+
}
|
|
157
160
|
export type IMutationResolvers<ContextType = any, ParentType extends IResolversParentTypes['Mutation'] = IResolversParentTypes['Mutation']> = {
|
|
158
161
|
setDummy?: Resolver<IResolversTypes['String'], ParentType, ContextType>;
|
|
159
162
|
saveUserInterests?: Resolver<IResolversTypes['Boolean'], ParentType, ContextType, RequireFields<IMutationSaveUserInterestsArgs, 'interests'>>;
|
|
@@ -208,6 +211,7 @@ export type IUserInterestResolvers<ContextType = any, ParentType extends IResolv
|
|
|
208
211
|
export type IResolvers<ContextType = any> = {
|
|
209
212
|
Expectation?: IExpectationResolvers<ContextType>;
|
|
210
213
|
Interest?: IInterestResolvers<ContextType>;
|
|
214
|
+
Long?: GraphQLScalarType;
|
|
211
215
|
Mutation?: IMutationResolvers<ContextType>;
|
|
212
216
|
Query?: IQueryResolvers<ContextType>;
|
|
213
217
|
SearchResultSelectionsPage?: ISearchResultSelectionsPageResolvers<ContextType>;
|
|
@@ -30,9 +30,15 @@ export type IActiveInviteCode = {
|
|
|
30
30
|
usedTimes: Scalars['Int'];
|
|
31
31
|
maxUsagesLimit: Scalars['Int'];
|
|
32
32
|
};
|
|
33
|
+
/** Please, manually sync with FarmingStatus.java */
|
|
34
|
+
export declare enum IFarmingStatus {
|
|
35
|
+
InProgress = "IN_PROGRESS",
|
|
36
|
+
ReadyToBeClaimed = "READY_TO_BE_CLAIMED",
|
|
37
|
+
Finished = "FINISHED"
|
|
38
|
+
}
|
|
33
39
|
export type IFarmingTask = {
|
|
34
40
|
taskId: Scalars['ID'];
|
|
35
|
-
status:
|
|
41
|
+
status: IFarmingStatus;
|
|
36
42
|
startedAt: Scalars['Long'];
|
|
37
43
|
};
|
|
38
44
|
export type IFrensData = {
|
|
@@ -72,6 +78,12 @@ export type INotification = {
|
|
|
72
78
|
text: Scalars['String'];
|
|
73
79
|
createdAt: Scalars['Long'];
|
|
74
80
|
};
|
|
81
|
+
/** Please, manually sync with NotificationStatus.java */
|
|
82
|
+
export declare enum INotificationStatus {
|
|
83
|
+
New = "NEW",
|
|
84
|
+
Shown = "SHOWN",
|
|
85
|
+
Read = "READ"
|
|
86
|
+
}
|
|
75
87
|
export type IPlayerState = {
|
|
76
88
|
userId: Scalars['ID'];
|
|
77
89
|
coins: Scalars['Int'];
|
|
@@ -81,10 +93,23 @@ export type IPlayerState = {
|
|
|
81
93
|
};
|
|
82
94
|
export type IPlayingStreak = {
|
|
83
95
|
streakId: Scalars['ID'];
|
|
84
|
-
status:
|
|
85
|
-
type:
|
|
96
|
+
status: IPlayingStreakStatus;
|
|
97
|
+
type: IPlayingStreakType;
|
|
86
98
|
startedAt: Scalars['Long'];
|
|
87
99
|
};
|
|
100
|
+
/** Please, manually sync with PlayingStreakStatus.java */
|
|
101
|
+
export declare enum IPlayingStreakStatus {
|
|
102
|
+
InProgress = "IN_PROGRESS",
|
|
103
|
+
OnlyClaimed = "ONLY_CLAIMED",
|
|
104
|
+
ClaimedAndNotified = "CLAIMED_AND_NOTIFIED",
|
|
105
|
+
Canceled = "CANCELED"
|
|
106
|
+
}
|
|
107
|
+
/** Please, manually sync with PlayingStreakType.java */
|
|
108
|
+
export declare enum IPlayingStreakType {
|
|
109
|
+
A_3Days = "A_3_DAYS",
|
|
110
|
+
A_21Days = "A_21_DAYS",
|
|
111
|
+
A_90Days = "A_90_DAYS"
|
|
112
|
+
}
|
|
88
113
|
export type IQuery = {
|
|
89
114
|
getDummy: Scalars['String'];
|
|
90
115
|
fetchPlayerState: IPlayerState;
|
|
@@ -128,6 +153,7 @@ export type IResolversTypes = {
|
|
|
128
153
|
ActiveInviteCode: ResolverTypeWrapper<IActiveInviteCode>;
|
|
129
154
|
String: ResolverTypeWrapper<Scalars['String']>;
|
|
130
155
|
Int: ResolverTypeWrapper<Scalars['Int']>;
|
|
156
|
+
FarmingStatus: IFarmingStatus;
|
|
131
157
|
FarmingTask: ResolverTypeWrapper<IFarmingTask>;
|
|
132
158
|
ID: ResolverTypeWrapper<Scalars['ID']>;
|
|
133
159
|
FrensData: ResolverTypeWrapper<IFrensData>;
|
|
@@ -136,8 +162,11 @@ export type IResolversTypes = {
|
|
|
136
162
|
Long: ResolverTypeWrapper<Scalars['Long']>;
|
|
137
163
|
Mutation: ResolverTypeWrapper<{}>;
|
|
138
164
|
Notification: ResolverTypeWrapper<INotification>;
|
|
165
|
+
NotificationStatus: INotificationStatus;
|
|
139
166
|
PlayerState: ResolverTypeWrapper<IPlayerState>;
|
|
140
167
|
PlayingStreak: ResolverTypeWrapper<IPlayingStreak>;
|
|
168
|
+
PlayingStreakStatus: IPlayingStreakStatus;
|
|
169
|
+
PlayingStreakType: IPlayingStreakType;
|
|
141
170
|
Query: ResolverTypeWrapper<{}>;
|
|
142
171
|
Subscription: ResolverTypeWrapper<{}>;
|
|
143
172
|
};
|
|
@@ -169,7 +198,7 @@ export type IActiveInviteCodeResolvers<ContextType = any, ParentType extends IRe
|
|
|
169
198
|
};
|
|
170
199
|
export type IFarmingTaskResolvers<ContextType = any, ParentType extends IResolversParentTypes['FarmingTask'] = IResolversParentTypes['FarmingTask']> = {
|
|
171
200
|
taskId?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
|
172
|
-
status?: Resolver<IResolversTypes['
|
|
201
|
+
status?: Resolver<IResolversTypes['FarmingStatus'], ParentType, ContextType>;
|
|
173
202
|
startedAt?: Resolver<IResolversTypes['Long'], ParentType, ContextType>;
|
|
174
203
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
175
204
|
};
|
|
@@ -214,8 +243,8 @@ export type IPlayerStateResolvers<ContextType = any, ParentType extends IResolve
|
|
|
214
243
|
};
|
|
215
244
|
export type IPlayingStreakResolvers<ContextType = any, ParentType extends IResolversParentTypes['PlayingStreak'] = IResolversParentTypes['PlayingStreak']> = {
|
|
216
245
|
streakId?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
|
217
|
-
status?: Resolver<IResolversTypes['
|
|
218
|
-
type?: Resolver<IResolversTypes['
|
|
246
|
+
status?: Resolver<IResolversTypes['PlayingStreakStatus'], ParentType, ContextType>;
|
|
247
|
+
type?: Resolver<IResolversTypes['PlayingStreakType'], ParentType, ContextType>;
|
|
219
248
|
startedAt?: Resolver<IResolversTypes['Long'], ParentType, ContextType>;
|
|
220
249
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
221
250
|
};
|
|
@@ -23,9 +23,38 @@ var __importStar = (this && this.__importStar) || function (mod) {
|
|
|
23
23
|
return result;
|
|
24
24
|
};
|
|
25
25
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
-
exports.useOnPlayerStateUpdatedSubscription = exports.OnPlayerStateUpdatedDocument = exports.useFetchPlayerStateLazyQuery = exports.useFetchPlayerStateQuery = exports.FetchPlayerStateDocument = exports.useFetchFrensDataLazyQuery = exports.useFetchFrensDataQuery = exports.FetchFrensDataDocument = exports.useStartFarmingMutation = exports.StartFarmingDocument = exports.useMarkNotificationAsShownMutation = exports.MarkNotificationAsShownDocument = exports.useMarkNotificationAsReadMutation = exports.MarkNotificationAsReadDocument = exports.useMarkNotificationAsNewMutation = exports.MarkNotificationAsNewDocument = exports.useConfirmStreakNotificationHasBeenReadMutation = exports.ConfirmStreakNotificationHasBeenReadDocument = exports.useClaimFarmingRewardMutation = exports.ClaimFarmingRewardDocument = void 0;
|
|
26
|
+
exports.useOnPlayerStateUpdatedSubscription = exports.OnPlayerStateUpdatedDocument = exports.useFetchPlayerStateLazyQuery = exports.useFetchPlayerStateQuery = exports.FetchPlayerStateDocument = exports.useFetchFrensDataLazyQuery = exports.useFetchFrensDataQuery = exports.FetchFrensDataDocument = exports.useStartFarmingMutation = exports.StartFarmingDocument = exports.useMarkNotificationAsShownMutation = exports.MarkNotificationAsShownDocument = exports.useMarkNotificationAsReadMutation = exports.MarkNotificationAsReadDocument = exports.useMarkNotificationAsNewMutation = exports.MarkNotificationAsNewDocument = exports.useConfirmStreakNotificationHasBeenReadMutation = exports.ConfirmStreakNotificationHasBeenReadDocument = exports.useClaimFarmingRewardMutation = exports.ClaimFarmingRewardDocument = exports.IPlayingStreakType = exports.IPlayingStreakStatus = exports.INotificationStatus = exports.IFarmingStatus = void 0;
|
|
27
27
|
const client_1 = require("@apollo/client");
|
|
28
28
|
const Apollo = __importStar(require("@apollo/client"));
|
|
29
|
+
/** Please, manually sync with FarmingStatus.java */
|
|
30
|
+
var IFarmingStatus;
|
|
31
|
+
(function (IFarmingStatus) {
|
|
32
|
+
IFarmingStatus["InProgress"] = "IN_PROGRESS";
|
|
33
|
+
IFarmingStatus["ReadyToBeClaimed"] = "READY_TO_BE_CLAIMED";
|
|
34
|
+
IFarmingStatus["Finished"] = "FINISHED";
|
|
35
|
+
})(IFarmingStatus || (exports.IFarmingStatus = IFarmingStatus = {}));
|
|
36
|
+
/** Please, manually sync with NotificationStatus.java */
|
|
37
|
+
var INotificationStatus;
|
|
38
|
+
(function (INotificationStatus) {
|
|
39
|
+
INotificationStatus["New"] = "NEW";
|
|
40
|
+
INotificationStatus["Shown"] = "SHOWN";
|
|
41
|
+
INotificationStatus["Read"] = "READ";
|
|
42
|
+
})(INotificationStatus || (exports.INotificationStatus = INotificationStatus = {}));
|
|
43
|
+
/** Please, manually sync with PlayingStreakStatus.java */
|
|
44
|
+
var IPlayingStreakStatus;
|
|
45
|
+
(function (IPlayingStreakStatus) {
|
|
46
|
+
IPlayingStreakStatus["InProgress"] = "IN_PROGRESS";
|
|
47
|
+
IPlayingStreakStatus["OnlyClaimed"] = "ONLY_CLAIMED";
|
|
48
|
+
IPlayingStreakStatus["ClaimedAndNotified"] = "CLAIMED_AND_NOTIFIED";
|
|
49
|
+
IPlayingStreakStatus["Canceled"] = "CANCELED";
|
|
50
|
+
})(IPlayingStreakStatus || (exports.IPlayingStreakStatus = IPlayingStreakStatus = {}));
|
|
51
|
+
/** Please, manually sync with PlayingStreakType.java */
|
|
52
|
+
var IPlayingStreakType;
|
|
53
|
+
(function (IPlayingStreakType) {
|
|
54
|
+
IPlayingStreakType["A_3Days"] = "A_3_DAYS";
|
|
55
|
+
IPlayingStreakType["A_21Days"] = "A_21_DAYS";
|
|
56
|
+
IPlayingStreakType["A_90Days"] = "A_90_DAYS";
|
|
57
|
+
})(IPlayingStreakType || (exports.IPlayingStreakType = IPlayingStreakType = {}));
|
|
29
58
|
exports.ClaimFarmingRewardDocument = (0, client_1.gql) `
|
|
30
59
|
mutation ClaimFarmingReward {
|
|
31
60
|
claimFarmingReward
|
package/build/hosts/index.d.ts
CHANGED
|
@@ -27,3 +27,4 @@ export declare const experiencesHost = "https://experiences.ludo.ninja:8090/grap
|
|
|
27
27
|
export declare const serverExperiencesHost = "http://server-experiences.istio.svc.k8s.local:8090/graphql";
|
|
28
28
|
export declare const formsHost = "https://forms.ludo.ninja:8090/graphql";
|
|
29
29
|
export declare const tapHost = "https://tap.ludo.ninja:8090/graphql";
|
|
30
|
+
export declare const tapHostSubscriptions = "wss://tap.ludo.ninja:8090/subscriptions";
|
package/build/hosts/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.tapHost = exports.formsHost = exports.serverExperiencesHost = exports.experiencesHost = exports.extensionHost = exports.opportunitiesHost = exports.notificationsHost = exports.notificationsSubscriptionHost = exports.experiencesSubscriptionHost = exports.eventsHost = exports.serverPreferencesHost = exports.searchHostSSR = exports.preferencesHostSSR = exports.preferencesHost = exports.serverSearchHost = exports.serverShowCaseHost = exports.searchHost = exports.serverImagesHost = exports.mediasHost = exports.serverGalleriesHost = exports.galleriesHost = exports.serverIdentityHost = exports.serverCollectionsHost = exports.serverAssetsHost = exports.adminHost = exports.collectionsHost = exports.assetsHost = exports.identityHost = exports.authHost = void 0;
|
|
3
|
+
exports.tapHostSubscriptions = exports.tapHost = exports.formsHost = exports.serverExperiencesHost = exports.experiencesHost = exports.extensionHost = exports.opportunitiesHost = exports.notificationsHost = exports.notificationsSubscriptionHost = exports.experiencesSubscriptionHost = exports.eventsHost = exports.serverPreferencesHost = exports.searchHostSSR = exports.preferencesHostSSR = exports.preferencesHost = exports.serverSearchHost = exports.serverShowCaseHost = exports.searchHost = exports.serverImagesHost = exports.mediasHost = exports.serverGalleriesHost = exports.galleriesHost = exports.serverIdentityHost = exports.serverCollectionsHost = exports.serverAssetsHost = exports.adminHost = exports.collectionsHost = exports.assetsHost = exports.identityHost = exports.authHost = void 0;
|
|
4
4
|
exports.authHost = "https://auth.ludo.ninja:8080/graphql";
|
|
5
5
|
exports.identityHost = "https://identities.ludo.ninja:8090/graphql";
|
|
6
6
|
exports.assetsHost = "https://assets.ludo.ninja:8090/graphql";
|
|
@@ -30,3 +30,4 @@ exports.experiencesHost = "https://experiences.ludo.ninja:8090/graphql";
|
|
|
30
30
|
exports.serverExperiencesHost = "http://server-experiences.istio.svc.k8s.local:8090/graphql";
|
|
31
31
|
exports.formsHost = "https://forms.ludo.ninja:8090/graphql";
|
|
32
32
|
exports.tapHost = "https://tap.ludo.ninja:8090/graphql";
|
|
33
|
+
exports.tapHostSubscriptions = "wss://tap.ludo.ninja:8090/subscriptions";
|
package/build/index.d.ts
CHANGED
|
@@ -90,6 +90,10 @@ declare const schema: {
|
|
|
90
90
|
authToken: string;
|
|
91
91
|
}> | undefined;
|
|
92
92
|
};
|
|
93
|
+
IFarmingStatus: typeof tapsSchema.IFarmingStatus;
|
|
94
|
+
INotificationStatus: typeof tapsSchema.INotificationStatus;
|
|
95
|
+
IPlayingStreakStatus: typeof tapsSchema.IPlayingStreakStatus;
|
|
96
|
+
IPlayingStreakType: typeof tapsSchema.IPlayingStreakType;
|
|
93
97
|
ClaimFarmingRewardDocument: import("graphql").DocumentNode;
|
|
94
98
|
ConfirmStreakNotificationHasBeenReadDocument: import("graphql").DocumentNode;
|
|
95
99
|
MarkNotificationAsNewDocument: import("graphql").DocumentNode;
|
package/package.json
CHANGED
|
@@ -127,7 +127,6 @@ export type IProfile = {
|
|
|
127
127
|
deleted?: Maybe<Scalars['Boolean']>;
|
|
128
128
|
};
|
|
129
129
|
|
|
130
|
-
/** scalar Upload */
|
|
131
130
|
export type IQuery = {
|
|
132
131
|
getDummy: Scalars['String'];
|
|
133
132
|
fetchAssetByBlockchain: IAsset;
|
|
@@ -137,7 +136,6 @@ export type IQuery = {
|
|
|
137
136
|
};
|
|
138
137
|
|
|
139
138
|
|
|
140
|
-
/** scalar Upload */
|
|
141
139
|
export type IQueryFetchAssetByBlockchainArgs = {
|
|
142
140
|
blockchain: Scalars['String'];
|
|
143
141
|
address?: Maybe<Scalars['String']>;
|
|
@@ -146,19 +144,16 @@ export type IQueryFetchAssetByBlockchainArgs = {
|
|
|
146
144
|
};
|
|
147
145
|
|
|
148
146
|
|
|
149
|
-
/** scalar Upload */
|
|
150
147
|
export type IQueryFetchDynamicAssetDataArgs = {
|
|
151
148
|
assetId: Scalars['String'];
|
|
152
149
|
};
|
|
153
150
|
|
|
154
151
|
|
|
155
|
-
/** scalar Upload */
|
|
156
152
|
export type IQueryFetchDynamicAssetsDataArgs = {
|
|
157
153
|
assetIds: Array<Scalars['String']>;
|
|
158
154
|
};
|
|
159
155
|
|
|
160
156
|
|
|
161
|
-
/** scalar Upload */
|
|
162
157
|
export type IQueryFetchAssetsArgs = {
|
|
163
158
|
assetIds: Array<Scalars['String']>;
|
|
164
159
|
};
|
|
@@ -58,7 +58,6 @@ export type IMutationGenerateCompanyTokenArgs = {
|
|
|
58
58
|
input: IGenerateCompanyTokenInput;
|
|
59
59
|
};
|
|
60
60
|
|
|
61
|
-
/** scalar Upload */
|
|
62
61
|
export type IQuery = {
|
|
63
62
|
getDummy: Scalars['String'];
|
|
64
63
|
isValidAuthToken: Scalars['Boolean'];
|
|
@@ -66,18 +65,22 @@ export type IQuery = {
|
|
|
66
65
|
};
|
|
67
66
|
|
|
68
67
|
|
|
69
|
-
/** scalar Upload */
|
|
70
68
|
export type IQueryIsValidAuthTokenArgs = {
|
|
71
69
|
authToken: Scalars['String'];
|
|
72
70
|
};
|
|
73
71
|
|
|
74
72
|
|
|
75
|
-
/** scalar Upload */
|
|
76
73
|
export type IQueryFetchLoginsArgs = {
|
|
77
74
|
pageSize: Scalars['Int'];
|
|
78
75
|
pageToken?: Maybe<Scalars['String']>;
|
|
79
76
|
};
|
|
80
77
|
|
|
78
|
+
export type ITestResponse = {
|
|
79
|
+
name?: Maybe<Scalars['String']>;
|
|
80
|
+
value?: Maybe<Scalars['String']>;
|
|
81
|
+
test?: Maybe<Scalars['String']>;
|
|
82
|
+
};
|
|
83
|
+
|
|
81
84
|
export type ITokenPair = {
|
|
82
85
|
userId?: Maybe<Scalars['String']>;
|
|
83
86
|
tokenAuth?: Maybe<Scalars['String']>;
|
|
@@ -163,6 +166,7 @@ export type IResolversTypes = {
|
|
|
163
166
|
Long: ResolverTypeWrapper<Scalars['Long']>;
|
|
164
167
|
Mutation: ResolverTypeWrapper<{}>;
|
|
165
168
|
Query: ResolverTypeWrapper<{}>;
|
|
169
|
+
TestResponse: ResolverTypeWrapper<ITestResponse>;
|
|
166
170
|
TokenPair: ResolverTypeWrapper<ITokenPair>;
|
|
167
171
|
};
|
|
168
172
|
|
|
@@ -177,6 +181,7 @@ export type IResolversParentTypes = {
|
|
|
177
181
|
Long: Scalars['Long'];
|
|
178
182
|
Mutation: {};
|
|
179
183
|
Query: {};
|
|
184
|
+
TestResponse: ITestResponse;
|
|
180
185
|
TokenPair: ITokenPair;
|
|
181
186
|
};
|
|
182
187
|
|
|
@@ -215,6 +220,13 @@ export type IQueryResolvers<ContextType = any, ParentType extends IResolversPare
|
|
|
215
220
|
fetchLogins?: Resolver<IResolversTypes['LoginsPage'], ParentType, ContextType, RequireFields<IQueryFetchLoginsArgs, 'pageSize'>>;
|
|
216
221
|
};
|
|
217
222
|
|
|
223
|
+
export type ITestResponseResolvers<ContextType = any, ParentType extends IResolversParentTypes['TestResponse'] = IResolversParentTypes['TestResponse']> = {
|
|
224
|
+
name?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
225
|
+
value?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
226
|
+
test?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
227
|
+
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
228
|
+
};
|
|
229
|
+
|
|
218
230
|
export type ITokenPairResolvers<ContextType = any, ParentType extends IResolversParentTypes['TokenPair'] = IResolversParentTypes['TokenPair']> = {
|
|
219
231
|
userId?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
220
232
|
tokenAuth?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
@@ -229,6 +241,7 @@ export type IResolvers<ContextType = any> = {
|
|
|
229
241
|
Long?: GraphQLScalarType;
|
|
230
242
|
Mutation?: IMutationResolvers<ContextType>;
|
|
231
243
|
Query?: IQueryResolvers<ContextType>;
|
|
244
|
+
TestResponse?: ITestResponseResolvers<ContextType>;
|
|
232
245
|
TokenPair?: ITokenPairResolvers<ContextType>;
|
|
233
246
|
};
|
|
234
247
|
|