File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
packages/advanced-personalization Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ export * from './personalizationReRanking';
4242export * from './profileType' ;
4343export * from './putConfigResponse' ;
4444export * from './realtime' ;
45- export * from './realtimeUserUser ' ;
45+ export * from './realtimeUser ' ;
4646export * from './searchFilter' ;
4747export * from './searchFilters' ;
4848export * from './source' ;
Original file line number Diff line number Diff line change 22
33import type { SearchFilters } from './searchFilters' ;
44
5- export type RealtimeUserUser = {
5+ export type RealtimeUser = {
66 /**
77 * Version of the response format.
88 */
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ import type { DeleteUserResponse } from '../model/deleteUserResponse';
1818
1919import type { GetUsersResponse } from '../model/getUsersResponse' ;
2020import type { PutConfigResponse } from '../model/putConfigResponse' ;
21- import type { RealtimeUserUser } from '../model/realtimeUserUser ' ;
21+ import type { RealtimeUser } from '../model/realtimeUser ' ;
2222
2323import type { User } from '../model/user' ;
2424
@@ -336,7 +336,7 @@ export function createAdvancedPersonalizationClient({
336336 * @param getRealtimeUser.userToken - Unique identifier representing a user for which to fetch the personalization profile.
337337 * @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
338338 */
339- getRealtimeUser ( { userToken } : GetRealtimeUserProps , requestOptions ?: RequestOptions ) : Promise < RealtimeUserUser > {
339+ getRealtimeUser ( { userToken } : GetRealtimeUserProps , requestOptions ?: RequestOptions ) : Promise < RealtimeUser > {
340340 if ( ! userToken ) {
341341 throw new Error ( 'Parameter `userToken` is required when calling `getRealtimeUser`.' ) ;
342342 }
You can’t perform that action at this time.
0 commit comments