Skip to content

Commit 4c52015

Browse files
More renames
1 parent bffc61b commit 4c52015

File tree

91 files changed

+156
-151
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

91 files changed

+156
-151
lines changed

packages/feeds-client/@react-bindings/contexts/StreamFeedContext.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { createContext, useContext } from 'react';
2-
import type { Feed } from '../../src/Feed';
2+
import type { Feed } from '../../src/feed';
33

44
export const StreamFeedContext = createContext<Feed | undefined>(undefined);
55

packages/feeds-client/@react-bindings/contexts/StreamFeedsContext.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { createContext, useContext } from 'react';
2-
import type { FeedsClient } from '../../src/FeedsClient';
2+
import type { FeedsClient } from '../../src/feeds-client';
33

44
export const StreamFeedsContext = createContext<FeedsClient | undefined>(undefined);
55

packages/feeds-client/@react-bindings/hooks/client-state-hooks/useClientConnectedUser.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { FeedsClientState } from '../../../src/FeedsClient';
1+
import type { FeedsClientState } from '../../../src/feeds-client';
22
import { useStateStore } from '../useStateStore';
33
import { useFeedsClient } from '../../contexts/StreamFeedsContext';
44

packages/feeds-client/@react-bindings/hooks/client-state-hooks/useWsConnectionState.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { FeedsClientState } from '../../../src/FeedsClient';
1+
import type { FeedsClientState } from '../../../src/feeds-client';
22
import { useStateStore } from '../useStateStore';
33
import { useFeedsClient } from '../../contexts/StreamFeedsContext';
44

packages/feeds-client/@react-bindings/hooks/feed-state-hooks/useComments.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,10 @@ import type {
44
CommentResponse,
55
} from '../../../src/gen/models';
66
import type { CommentParent } from '../../../src/types';
7-
import { Feed, FeedState } from '../../../src/Feed';
7+
import { Feed, FeedState } from '../../../src/feed';
88
import { useStateStore } from '../useStateStore';
99
import { useFeedContext } from '../../contexts/StreamFeedContext';
10-
import { checkHasAnotherPage } from '../../../src/utils';
11-
import { isCommentResponse } from '../../../src/type-assertions';
10+
import { checkHasAnotherPage, isCommentResponse } from '../../../src/utils';
1211

1312
type UseCommentsReturnType<T extends ActivityResponse | CommentResponse> = {
1413
comments: NonNullable<

packages/feeds-client/@react-bindings/hooks/feed-state-hooks/useFeedActivities.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { useFeedContext } from '../../contexts/StreamFeedContext';
2-
import { Feed, FeedState } from '../../../src/Feed';
2+
import { Feed, FeedState } from '../../../src/feed';
33
import { useStateStore } from '../useStateStore';
44
import { useMemo } from 'react';
55
import { useStableCallback } from '../internal';

packages/feeds-client/@react-bindings/hooks/feed-state-hooks/useFeedMetadata.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Feed, FeedState } from '../../../src/Feed';
1+
import { Feed, FeedState } from '../../../src/feed';
22
import { useFeedContext } from '../../contexts/StreamFeedContext';
33
import { useStateStore } from '../useStateStore';
44

packages/feeds-client/@react-bindings/hooks/feed-state-hooks/useFollowers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { useCallback, useMemo } from 'react';
2-
import { Feed, FeedState } from '../../../src/Feed';
2+
import { Feed, FeedState } from '../../../src/feed';
33
import { useStateStore } from '../useStateStore';
44
import { checkHasAnotherPage } from '../../../src/utils';
55
import { useFeedContext } from '../../contexts/StreamFeedContext';

packages/feeds-client/@react-bindings/hooks/feed-state-hooks/useFollowing.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { useCallback, useMemo } from 'react';
2-
import { Feed, FeedState } from '../../../src/Feed';
2+
import { Feed, FeedState } from '../../../src/feed';
33
import { checkHasAnotherPage } from '../../../src/utils';
44
import { useStateStore } from '../useStateStore';
55
import { useFeedContext } from '../../contexts/StreamFeedContext';

packages/feeds-client/@react-bindings/hooks/feed-state-hooks/useOwnCapabilities.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { useMemo } from 'react';
2-
import { Feed, FeedState } from '../../../src/Feed';
2+
import { Feed, FeedState } from '../../../src/feed';
33
import { FeedOwnCapability } from '../../../src/gen/models';
44
import { useStateStore } from '../useStateStore';
55
import { useFeedContext } from '../../contexts/StreamFeedContext';

0 commit comments

Comments
 (0)