@ludo.ninja/api 2.7.7 → 2.7.8

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ludo.ninja/api",
3
- "version": "2.7.7",
3
+ "version": "2.7.8",
4
4
  "main": "./build/index.js",
5
5
  "scripts": {
6
6
  "test": "jest",
@@ -751,6 +751,7 @@ export type IIdentity = {
751
751
  tokens: ITokenPairs;
752
752
  newUser: Scalars['Boolean'];
753
753
  inviteCode?: Maybe<Scalars['String']>;
754
+ role: Scalars['String'];
754
755
  };
755
756
 
756
757
  export type IInputProfile = {
@@ -3614,7 +3615,7 @@ export type ISignInAdminMetamaskMutationVariables = Exact<{
3614
3615
 
3615
3616
 
3616
3617
  export type ISignInAdminMetamaskMutation = { signInAdminMetamask: (
3617
- Pick<IIdentity, 'userId' | 'wallets' | 'newUser' | 'inviteCode'>
3618
+ Pick<IIdentity, 'userId' | 'wallets' | 'newUser' | 'inviteCode' | 'role'>
3618
3619
  & { tokens: { portalTokenPair: Pick<ITokenPair, 'authToken' | 'refreshToken'>, extensionTokenPair: Pick<ITokenPair, 'authToken' | 'refreshToken'> } }
3619
3620
  ) };
3620
3621
 
@@ -3625,7 +3626,7 @@ export type ISignInElrondMutationVariables = Exact<{
3625
3626
 
3626
3627
 
3627
3628
  export type ISignInElrondMutation = { signInElrond: (
3628
- Pick<IIdentity, 'userId' | 'wallets' | 'newUser' | 'inviteCode'>
3629
+ Pick<IIdentity, 'userId' | 'wallets' | 'newUser' | 'inviteCode' | 'role'>
3629
3630
  & { tokens: { portalTokenPair: Pick<ITokenPair, 'authToken' | 'refreshToken'>, extensionTokenPair: Pick<ITokenPair, 'authToken' | 'refreshToken'> } }
3630
3631
  ) };
3631
3632
 
@@ -3648,7 +3649,7 @@ export type ISignInMetamaskMutationVariables = Exact<{
3648
3649
 
3649
3650
 
3650
3651
  export type ISignInMetamaskMutation = { signInMetamask: (
3651
- Pick<IIdentity, 'userId' | 'wallets' | 'newUser' | 'inviteCode'>
3652
+ Pick<IIdentity, 'userId' | 'wallets' | 'newUser' | 'inviteCode' | 'role'>
3652
3653
  & { tokens: { portalTokenPair: Pick<ITokenPair, 'authToken' | 'refreshToken'>, extensionTokenPair: Pick<ITokenPair, 'authToken' | 'refreshToken'> } }
3653
3654
  ) };
3654
3655
 
@@ -3659,7 +3660,7 @@ export type ISignInSolanaMutationVariables = Exact<{
3659
3660
 
3660
3661
 
3661
3662
  export type ISignInSolanaMutation = { signInSolana: (
3662
- Pick<IIdentity, 'userId' | 'wallets' | 'newUser' | 'inviteCode'>
3663
+ Pick<IIdentity, 'userId' | 'wallets' | 'newUser' | 'inviteCode' | 'role'>
3663
3664
  & { tokens: { portalTokenPair: Pick<ITokenPair, 'authToken' | 'refreshToken'>, extensionTokenPair: Pick<ITokenPair, 'authToken' | 'refreshToken'> } }
3664
3665
  ) };
3665
3666
 
@@ -3670,7 +3671,7 @@ export type ISignInTezosMutationVariables = Exact<{
3670
3671
 
3671
3672
 
3672
3673
  export type ISignInTezosMutation = { signInTezos: (
3673
- Pick<IIdentity, 'userId' | 'wallets' | 'newUser' | 'inviteCode'>
3674
+ Pick<IIdentity, 'userId' | 'wallets' | 'newUser' | 'inviteCode' | 'role'>
3674
3675
  & { tokens: { portalTokenPair: Pick<ITokenPair, 'authToken' | 'refreshToken'>, extensionTokenPair: Pick<ITokenPair, 'authToken' | 'refreshToken'> } }
3675
3676
  ) };
3676
3677
 
@@ -7533,6 +7534,7 @@ export const SignInAdminMetamaskDocument = gql`
7533
7534
  }
7534
7535
  newUser
7535
7536
  inviteCode
7537
+ role
7536
7538
  }
7537
7539
  }
7538
7540
  `;
@@ -7580,6 +7582,7 @@ export const SignInElrondDocument = gql`
7580
7582
  }
7581
7583
  newUser
7582
7584
  inviteCode
7585
+ role
7583
7586
  }
7584
7587
  }
7585
7588
  `;
@@ -7672,6 +7675,7 @@ export const SignInMetamaskDocument = gql`
7672
7675
  }
7673
7676
  newUser
7674
7677
  inviteCode
7678
+ role
7675
7679
  }
7676
7680
  }
7677
7681
  `;
@@ -7719,6 +7723,7 @@ export const SignInSolanaDocument = gql`
7719
7723
  }
7720
7724
  newUser
7721
7725
  inviteCode
7726
+ role
7722
7727
  }
7723
7728
  }
7724
7729
  `;
@@ -7765,6 +7770,7 @@ export const SignInTezosDocument = gql`
7765
7770
  }
7766
7771
  newUser
7767
7772
  inviteCode
7773
+ role
7768
7774
  }
7769
7775
  }
7770
7776
  `;