@ludo.ninja/api 2.4.9 → 2.5.0
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
|
@@ -32,6 +32,7 @@ export type IAddress = {
|
|
|
32
32
|
|
|
33
33
|
export type IAdminInvite = {
|
|
34
34
|
userId: Scalars['String'];
|
|
35
|
+
username?: Maybe<Scalars['String']>;
|
|
35
36
|
wallet?: Maybe<IWallet>;
|
|
36
37
|
activeInvites?: Maybe<Array<IActiveInvite>>;
|
|
37
38
|
referredUsers?: Maybe<Array<Scalars['String']>>;
|
|
@@ -740,6 +741,7 @@ export type IInterest = {
|
|
|
740
741
|
|
|
741
742
|
export type IInvitesFilterInput = {
|
|
742
743
|
userIdTerm?: Maybe<Scalars['String']>;
|
|
744
|
+
usernameTerm?: Maybe<Scalars['String']>;
|
|
743
745
|
mainWalletTerm?: Maybe<Scalars['String']>;
|
|
744
746
|
userXpLevelTerm?: Maybe<Scalars['String']>;
|
|
745
747
|
activeInviteTerm?: Maybe<Scalars['String']>;
|
|
@@ -752,6 +754,7 @@ export type IInvitesPage = {
|
|
|
752
754
|
};
|
|
753
755
|
|
|
754
756
|
export type IInvitesSortInput = {
|
|
757
|
+
sortByUsername: ISort;
|
|
755
758
|
sortByXpLevel: ISort;
|
|
756
759
|
sortByActiveInvites: ISort;
|
|
757
760
|
sortByReferredUsers: ISort;
|