@jetshop/core 5.15.0 → 5.15.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 +1 -1
- package/types.d.ts +2 -1
    
        package/package.json
    CHANGED
    
    
    
        package/types.d.ts
    CHANGED
    
    | @@ -1110,7 +1110,7 @@ export type Mutation = { | |
| 1110 1110 | 
             
              loginExternalCustomer?: Maybe<LoginExternalCustomerResult>;
         | 
| 1111 1111 | 
             
              /**
         | 
| 1112 1112 | 
             
               * LoginMutation will log a user in.
         | 
| 1113 | 
            -
               * One of email, pid, externalId or  | 
| 1113 | 
            +
               * One of email, pid, externalId, memberNumber or customerId is required, along with a password.
         | 
| 1114 1114 | 
             
               * Returns an authorization token if the login was successful.
         | 
| 1115 1115 | 
             
               */
         | 
| 1116 1116 | 
             
              login?: Maybe<LoginResponse>;
         | 
| @@ -1262,6 +1262,7 @@ export type MutationLoginArgs = { | |
| 1262 1262 | 
             
              memberNumber?: Maybe<Scalars['String']>;
         | 
| 1263 1263 | 
             
              externalHashId?: Maybe<Scalars['String']>;
         | 
| 1264 1264 | 
             
              timeStamp?: Maybe<Scalars['String']>;
         | 
| 1265 | 
            +
              customerId?: Maybe<Scalars['Int']>;
         | 
| 1265 1266 | 
             
            };
         | 
| 1266 1267 |  | 
| 1267 1268 |  |