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';
42
42
export * from './profileType' ;
43
43
export * from './putConfigResponse' ;
44
44
export * from './realtime' ;
45
- export * from './realtimeUserUser ' ;
45
+ export * from './realtimeUser ' ;
46
46
export * from './searchFilter' ;
47
47
export * from './searchFilters' ;
48
48
export * from './source' ;
Original file line number Diff line number Diff line change 2
2
3
3
import type { SearchFilters } from './searchFilters' ;
4
4
5
- export type RealtimeUserUser = {
5
+ export type RealtimeUser = {
6
6
/**
7
7
* Version of the response format.
8
8
*/
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ import type { DeleteUserResponse } from '../model/deleteUserResponse';
18
18
19
19
import type { GetUsersResponse } from '../model/getUsersResponse' ;
20
20
import type { PutConfigResponse } from '../model/putConfigResponse' ;
21
- import type { RealtimeUserUser } from '../model/realtimeUserUser ' ;
21
+ import type { RealtimeUser } from '../model/realtimeUser ' ;
22
22
23
23
import type { User } from '../model/user' ;
24
24
@@ -336,7 +336,7 @@ export function createAdvancedPersonalizationClient({
336
336
* @param getRealtimeUser.userToken - Unique identifier representing a user for which to fetch the personalization profile.
337
337
* @param requestOptions - The requestOptions to send along with the query, they will be merged with the transporter requestOptions.
338
338
*/
339
- getRealtimeUser ( { userToken } : GetRealtimeUserProps , requestOptions ?: RequestOptions ) : Promise < RealtimeUserUser > {
339
+ getRealtimeUser ( { userToken } : GetRealtimeUserProps , requestOptions ?: RequestOptions ) : Promise < RealtimeUser > {
340
340
if ( ! userToken ) {
341
341
throw new Error ( 'Parameter `userToken` is required when calling `getRealtimeUser`.' ) ;
342
342
}
You can’t perform that action at this time.
0 commit comments