@ludo.ninja/api 2.5.0 → 2.5.1
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/package.json
CHANGED
|
@@ -2776,7 +2776,7 @@ export type IFetchAdminInvitesPageQueryVariables = Exact<{
|
|
|
2776
2776
|
|
|
2777
2777
|
|
|
2778
2778
|
export type IFetchAdminInvitesPageQuery = { fetchAdminInvitesPage: { invites: Array<(
|
|
2779
|
-
Pick<IAdminInvite, 'userId' | 'referredUsers' | 'userXpLevel'>
|
|
2779
|
+
Pick<IAdminInvite, 'userId' | 'username' | 'referredUsers' | 'userXpLevel'>
|
|
2780
2780
|
& { wallet?: Maybe<Pick<IWallet, 'address' | 'blockchain' | 'chainId'>>, activeInvites?: Maybe<Array<Pick<IActiveInvite, 'inviteCode' | 'createdAt'>>> }
|
|
2781
2781
|
)>, nextPage?: Maybe<Pick<IAdminPage, 'num' | 'lastNum' | 'size' | 'elements' | 'token'>> } };
|
|
2782
2782
|
|
|
@@ -3854,6 +3854,7 @@ export const FetchAdminInvitesPageDocument = gql`
|
|
|
3854
3854
|
fetchAdminInvitesPage(filter: $filter, sort: $sort, page: $page) {
|
|
3855
3855
|
invites {
|
|
3856
3856
|
userId
|
|
3857
|
+
username
|
|
3857
3858
|
wallet {
|
|
3858
3859
|
address
|
|
3859
3860
|
blockchain
|