Skip to content

Commit bb79bab

Browse files
committed
chore: specify the package name
1 parent d700c00 commit bb79bab

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

packages/uikit-chat-hooks/src/channel/useGroupChannelList/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { useGroupChannelListWithCollection } from './useGroupChannelListWithColl
55
import { useGroupChannelListWithQuery } from './useGroupChannelListWithQuery';
66

77
/**
8-
* @deprecated This hook is deprecated and will be replaced by the 'uikit-tools' package.
8+
* @deprecated This hook is deprecated and will be replaced by the '@sendbird/uikit-tools' package.
99
* */
1010
export const useGroupChannelList: UseGroupChannelList = (sdk, userId, options) => {
1111
if (sdk.isCacheEnabled || options?.enableCollectionWithoutLocalCache) {

packages/uikit-chat-hooks/src/channel/useGroupChannelList/useGroupChannelListWithCollection.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ const createGroupChannelListCollection = (
2727
};
2828

2929
/**
30-
* @deprecated This hook is deprecated and will be replaced by the 'uikit-tools' package.
30+
* @deprecated This hook is deprecated and will be replaced by the '@sendbird/uikit-tools' package.
3131
* */
3232
export const useGroupChannelListWithCollection: UseGroupChannelList = (sdk, userId, options) => {
3333
const handlerId = useUniqHandlerId('useGroupChannelListWithCollection');

packages/uikit-chat-hooks/src/channel/useGroupChannelList/useGroupChannelListWithQuery.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const createGroupChannelListQuery = (
2424
};
2525

2626
/**
27-
* @deprecated This hook is deprecated and will be replaced by the 'uikit-tools' package.
27+
* @deprecated This hook is deprecated and will be replaced by the '@sendbird/uikit-tools' package.
2828
* */
2929
export const useGroupChannelListWithQuery: UseGroupChannelList = (sdk, userId, options) => {
3030
const { deliveryReceiptEnabled } = useAppFeatures(sdk);

packages/uikit-chat-hooks/src/channel/useGroupChannelMessages/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { useGroupChannelMessagesWithCollection } from './useGroupChannelMessages
55
import { useGroupChannelMessagesWithQuery } from './useGroupChannelMessagesWithQuery';
66

77
/**
8-
* @deprecated This hook is deprecated and will be replaced by the 'uikit-tools' package.
8+
* @deprecated This hook is deprecated and will be replaced by the '@sendbird/uikit-tools' package.
99
* */
1010
export const useGroupChannelMessages: UseGroupChannelMessages = (sdk, channel, userId, options) => {
1111
if (sdk.isCacheEnabled || options?.enableCollectionWithoutLocalCache) {

packages/uikit-chat-hooks/src/channel/useGroupChannelMessages/useGroupChannelMessagesWithCollection.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ function shouldUseSearchLimit(startingPoint: number) {
4747
}
4848

4949
/**
50-
* @deprecated This hook is deprecated and will be replaced by the 'uikit-tools' package.
50+
* @deprecated This hook is deprecated and will be replaced by the '@sendbird/uikit-tools' package.
5151
* */
5252
export const useGroupChannelMessagesWithCollection: UseGroupChannelMessages = (sdk, channel, userId, options) => {
5353
const initialStartingPoint = options?.startingPoint ?? Number.MAX_SAFE_INTEGER;

packages/uikit-chat-hooks/src/channel/useGroupChannelMessages/useGroupChannelMessagesWithQuery.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ const createMessageQuery = (channel: SendbirdGroupChannel, options?: UseGroupCha
3232
};
3333

3434
/**
35-
* @deprecated This hook is deprecated and will be replaced by the 'uikit-tools' package.
35+
* @deprecated This hook is deprecated and will be replaced by the '@sendbird/uikit-tools' package.
3636
* */
3737
export const useGroupChannelMessagesWithQuery: UseGroupChannelMessages = (sdk, channel, userId, options) => {
3838
const queryRef = useRef<SendbirdPreviousMessageListQuery>();

packages/uikit-chat-hooks/src/handler/useChannelHandler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import type { SendbirdChatSDK } from '@sendbird/uikit-utils';
77
type ChannelType = 'open' | 'group';
88

99
/**
10-
* @deprecated This hook is deprecated and will be replaced by the 'uikit-tools' package.
10+
* @deprecated This hook is deprecated and will be replaced by the '@sendbird/uikit-tools' package.
1111
* */
1212
export const useChannelHandler = <T extends ChannelType = 'group'>(
1313
sdk: SendbirdChatSDK,

packages/uikit-chat-hooks/src/types.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export interface CustomBidirectionalQueryInterface<Data> {
3333
}
3434

3535
/**
36-
* @deprecated This hook is deprecated and will be replaced by the 'uikit-tools' package.
36+
* @deprecated This hook is deprecated and will be replaced by the '@sendbird/uikit-tools' package.
3737
*
3838
* @interface UseGroupChannelList
3939
* @description interface for group channel list hook
@@ -75,7 +75,7 @@ export type UseGroupChannelListOptions = {
7575
};
7676

7777
/**
78-
* @deprecated This hook is deprecated and will be replaced by the 'uikit-tools' package.
78+
* @deprecated This hook is deprecated and will be replaced by the '@sendbird/uikit-tools' package.
7979
*
8080
* @interface UseGroupChannelMessages
8181
* @description interface for group channel messages hook

0 commit comments

Comments
 (0)