@ludo.ninja/api 2.8.89 → 2.8.90
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__/identityHost/schema.d.ts +4 -0
- package/build/graphql_tools/__generated__/tapHost/schema.d.ts +6 -2
- package/build/graphql_tools/__generated__/tapHost/schema.js +4 -0
- package/package.json +1 -1
- package/src/graphql_tools/__generated__/identityHost/schema.ts +4 -0
- package/src/graphql_tools/__generated__/tapHost/schema.ts +10 -2
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -71,6 +71,8 @@ export type IIdentity = {
|
|
|
71
71
|
role: IRole;
|
|
72
72
|
newUser?: Maybe<Scalars['Boolean']>;
|
|
73
73
|
inviteCode?: Maybe<Scalars['String']>;
|
|
74
|
+
refypeId?: Maybe<Scalars['ID']>;
|
|
75
|
+
reftypeName?: Maybe<Scalars['String']>;
|
|
74
76
|
};
|
|
75
77
|
export type IInputProfile = {
|
|
76
78
|
username?: Maybe<Scalars['String']>;
|
|
@@ -489,6 +491,8 @@ export type IIdentityResolvers<ContextType = any, ParentType extends IResolversP
|
|
|
489
491
|
role?: Resolver<IResolversTypes['Role'], ParentType, ContextType>;
|
|
490
492
|
newUser?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
491
493
|
inviteCode?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
494
|
+
refypeId?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
|
495
|
+
reftypeName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
492
496
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
493
497
|
};
|
|
494
498
|
export type IInviteCodeResolvers<ContextType = any, ParentType extends IResolversParentTypes['InviteCode'] = IResolversParentTypes['InviteCode']> = {
|
|
@@ -40,6 +40,8 @@ export type IFarmingTask = {
|
|
|
40
40
|
taskId: Scalars['ID'];
|
|
41
41
|
status: IFarmingStatus;
|
|
42
42
|
startedAt: Scalars['Long'];
|
|
43
|
+
claimDelayMs: Scalars['Long'];
|
|
44
|
+
rewardCoins: Scalars['Int'];
|
|
43
45
|
};
|
|
44
46
|
export type IFrensData = {
|
|
45
47
|
activeInviteCodes: Array<IActiveInviteCode>;
|
|
@@ -205,6 +207,8 @@ export type IFarmingTaskResolvers<ContextType = any, ParentType extends IResolve
|
|
|
205
207
|
taskId?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
|
206
208
|
status?: Resolver<IResolversTypes['FarmingStatus'], ParentType, ContextType>;
|
|
207
209
|
startedAt?: Resolver<IResolversTypes['Long'], ParentType, ContextType>;
|
|
210
|
+
claimDelayMs?: Resolver<IResolversTypes['Long'], ParentType, ContextType>;
|
|
211
|
+
rewardCoins?: Resolver<IResolversTypes['Int'], ParentType, ContextType>;
|
|
208
212
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
209
213
|
};
|
|
210
214
|
export type IFrensDataResolvers<ContextType = any, ParentType extends IResolversParentTypes['FrensData'] = IResolversParentTypes['FrensData']> = {
|
|
@@ -321,7 +325,7 @@ export type IFetchPlayerStateQueryVariables = Exact<{
|
|
|
321
325
|
}>;
|
|
322
326
|
export type IFetchPlayerStateQuery = {
|
|
323
327
|
fetchPlayerState: (Pick<IPlayerState, 'userId' | 'coins'> & {
|
|
324
|
-
farmingTask?: Maybe<Pick<IFarmingTask, 'taskId' | 'status' | 'startedAt'>>;
|
|
328
|
+
farmingTask?: Maybe<Pick<IFarmingTask, 'taskId' | 'status' | 'startedAt' | 'claimDelayMs' | 'rewardCoins'>>;
|
|
325
329
|
playingStreaks: Array<Pick<IPlayingStreak, 'streakId' | 'status' | 'type' | 'startedAt' | 'reward' | 'endedAt' | 'totalDays'>>;
|
|
326
330
|
notifications: Array<Pick<INotification, 'notificationId' | 'status' | 'text' | 'createdAt'>>;
|
|
327
331
|
});
|
|
@@ -331,7 +335,7 @@ export type IOnPlayerStateUpdatedSubscriptionVariables = Exact<{
|
|
|
331
335
|
}>;
|
|
332
336
|
export type IOnPlayerStateUpdatedSubscription = {
|
|
333
337
|
onPlayerStateUpdated: (Pick<IPlayerState, 'userId' | 'coins'> & {
|
|
334
|
-
farmingTask?: Maybe<Pick<IFarmingTask, 'taskId' | 'status' | 'startedAt'>>;
|
|
338
|
+
farmingTask?: Maybe<Pick<IFarmingTask, 'taskId' | 'status' | 'startedAt' | 'claimDelayMs' | 'rewardCoins'>>;
|
|
335
339
|
playingStreaks: Array<Pick<IPlayingStreak, 'streakId' | 'status' | 'type' | 'startedAt' | 'reward' | 'endedAt' | 'totalDays'>>;
|
|
336
340
|
notifications: Array<Pick<INotification, 'notificationId' | 'status' | 'text' | 'createdAt'>>;
|
|
337
341
|
});
|
|
@@ -260,6 +260,8 @@ exports.FetchPlayerStateDocument = (0, client_1.gql) `
|
|
|
260
260
|
taskId
|
|
261
261
|
status
|
|
262
262
|
startedAt
|
|
263
|
+
claimDelayMs
|
|
264
|
+
rewardCoins
|
|
263
265
|
}
|
|
264
266
|
playingStreaks {
|
|
265
267
|
streakId
|
|
@@ -311,6 +313,8 @@ exports.OnPlayerStateUpdatedDocument = (0, client_1.gql) `
|
|
|
311
313
|
taskId
|
|
312
314
|
status
|
|
313
315
|
startedAt
|
|
316
|
+
claimDelayMs
|
|
317
|
+
rewardCoins
|
|
314
318
|
}
|
|
315
319
|
playingStreaks {
|
|
316
320
|
streakId
|
package/package.json
CHANGED
|
@@ -76,6 +76,8 @@ export type IIdentity = {
|
|
|
76
76
|
role: IRole;
|
|
77
77
|
newUser?: Maybe<Scalars['Boolean']>;
|
|
78
78
|
inviteCode?: Maybe<Scalars['String']>;
|
|
79
|
+
refypeId?: Maybe<Scalars['ID']>;
|
|
80
|
+
reftypeName?: Maybe<Scalars['String']>;
|
|
79
81
|
};
|
|
80
82
|
|
|
81
83
|
export type IInputProfile = {
|
|
@@ -626,6 +628,8 @@ export type IIdentityResolvers<ContextType = any, ParentType extends IResolversP
|
|
|
626
628
|
role?: Resolver<IResolversTypes['Role'], ParentType, ContextType>;
|
|
627
629
|
newUser?: Resolver<Maybe<IResolversTypes['Boolean']>, ParentType, ContextType>;
|
|
628
630
|
inviteCode?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
631
|
+
refypeId?: Resolver<Maybe<IResolversTypes['ID']>, ParentType, ContextType>;
|
|
632
|
+
reftypeName?: Resolver<Maybe<IResolversTypes['String']>, ParentType, ContextType>;
|
|
629
633
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
630
634
|
};
|
|
631
635
|
|
|
@@ -36,6 +36,8 @@ export type IFarmingTask = {
|
|
|
36
36
|
taskId: Scalars['ID'];
|
|
37
37
|
status: IFarmingStatus;
|
|
38
38
|
startedAt: Scalars['Long'];
|
|
39
|
+
claimDelayMs: Scalars['Long'];
|
|
40
|
+
rewardCoins: Scalars['Int'];
|
|
39
41
|
};
|
|
40
42
|
|
|
41
43
|
export type IFrensData = {
|
|
@@ -270,6 +272,8 @@ export type IFarmingTaskResolvers<ContextType = any, ParentType extends IResolve
|
|
|
270
272
|
taskId?: Resolver<IResolversTypes['ID'], ParentType, ContextType>;
|
|
271
273
|
status?: Resolver<IResolversTypes['FarmingStatus'], ParentType, ContextType>;
|
|
272
274
|
startedAt?: Resolver<IResolversTypes['Long'], ParentType, ContextType>;
|
|
275
|
+
claimDelayMs?: Resolver<IResolversTypes['Long'], ParentType, ContextType>;
|
|
276
|
+
rewardCoins?: Resolver<IResolversTypes['Int'], ParentType, ContextType>;
|
|
273
277
|
__isTypeOf?: IsTypeOfResolverFn<ParentType, ContextType>;
|
|
274
278
|
};
|
|
275
279
|
|
|
@@ -411,7 +415,7 @@ export type IFetchPlayerStateQueryVariables = Exact<{ [key: string]: never; }>;
|
|
|
411
415
|
|
|
412
416
|
export type IFetchPlayerStateQuery = { fetchPlayerState: (
|
|
413
417
|
Pick<IPlayerState, 'userId' | 'coins'>
|
|
414
|
-
& { farmingTask?: Maybe<Pick<IFarmingTask, 'taskId' | 'status' | 'startedAt'>>, playingStreaks: Array<Pick<IPlayingStreak, 'streakId' | 'status' | 'type' | 'startedAt' | 'reward' | 'endedAt' | 'totalDays'>>, notifications: Array<Pick<INotification, 'notificationId' | 'status' | 'text' | 'createdAt'>> }
|
|
418
|
+
& { farmingTask?: Maybe<Pick<IFarmingTask, 'taskId' | 'status' | 'startedAt' | 'claimDelayMs' | 'rewardCoins'>>, playingStreaks: Array<Pick<IPlayingStreak, 'streakId' | 'status' | 'type' | 'startedAt' | 'reward' | 'endedAt' | 'totalDays'>>, notifications: Array<Pick<INotification, 'notificationId' | 'status' | 'text' | 'createdAt'>> }
|
|
415
419
|
) };
|
|
416
420
|
|
|
417
421
|
export type IOnPlayerStateUpdatedSubscriptionVariables = Exact<{
|
|
@@ -421,7 +425,7 @@ export type IOnPlayerStateUpdatedSubscriptionVariables = Exact<{
|
|
|
421
425
|
|
|
422
426
|
export type IOnPlayerStateUpdatedSubscription = { onPlayerStateUpdated: (
|
|
423
427
|
Pick<IPlayerState, 'userId' | 'coins'>
|
|
424
|
-
& { farmingTask?: Maybe<Pick<IFarmingTask, 'taskId' | 'status' | 'startedAt'>>, playingStreaks: Array<Pick<IPlayingStreak, 'streakId' | 'status' | 'type' | 'startedAt' | 'reward' | 'endedAt' | 'totalDays'>>, notifications: Array<Pick<INotification, 'notificationId' | 'status' | 'text' | 'createdAt'>> }
|
|
428
|
+
& { farmingTask?: Maybe<Pick<IFarmingTask, 'taskId' | 'status' | 'startedAt' | 'claimDelayMs' | 'rewardCoins'>>, playingStreaks: Array<Pick<IPlayingStreak, 'streakId' | 'status' | 'type' | 'startedAt' | 'reward' | 'endedAt' | 'totalDays'>>, notifications: Array<Pick<INotification, 'notificationId' | 'status' | 'text' | 'createdAt'>> }
|
|
425
429
|
) };
|
|
426
430
|
|
|
427
431
|
|
|
@@ -656,6 +660,8 @@ export const FetchPlayerStateDocument = gql`
|
|
|
656
660
|
taskId
|
|
657
661
|
status
|
|
658
662
|
startedAt
|
|
663
|
+
claimDelayMs
|
|
664
|
+
rewardCoins
|
|
659
665
|
}
|
|
660
666
|
playingStreaks {
|
|
661
667
|
streakId
|
|
@@ -709,6 +715,8 @@ export const OnPlayerStateUpdatedDocument = gql`
|
|
|
709
715
|
taskId
|
|
710
716
|
status
|
|
711
717
|
startedAt
|
|
718
|
+
claimDelayMs
|
|
719
|
+
rewardCoins
|
|
712
720
|
}
|
|
713
721
|
playingStreaks {
|
|
714
722
|
streakId
|