@vlprojects-chat/chat 0.0.50 → 0.0.51
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/dist/components/DirectList/service.d.ts +3 -2
- package/dist/containers/PollListPage/components/PollAction/PollAction.d.ts +3 -3
- package/dist/containers/PollListPage/services.d.ts +1 -1
- package/dist/containers/UsersListPage/services.d.ts +1 -1
- package/dist/index.es.js +4 -4
- package/dist/index.js +4 -4
- package/dist/keystone/chat/channel.d.ts +3 -4
- package/dist/keystone/chat/index.d.ts +1 -1
- package/dist/keystone/chat/poll.d.ts +1 -0
- package/dist/keystone/factory.d.ts +3 -0
- package/dist/types/serverResponses.d.ts +1 -1
- package/dist/types/socketEvents.d.ts +1 -0
- package/package.json +1 -1
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import { Root } from 'keystone
|
|
2
|
-
import User from '
|
|
1
|
+
import { Root } from 'keystone';
|
|
2
|
+
import User from 'keystone/chat/user';
|
|
3
|
+
export declare const getDirectsList: (root: Root) => Promise<void>;
|
|
3
4
|
export declare const getDirectChannelName: (root: Root, channelId: string) => string;
|
|
4
5
|
export declare const getDirectChannelList: (root: Root) => string[];
|
|
5
6
|
export declare const getChatWithUser: (root: Root, channelId: string) => User | undefined;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import Poll from 'keystone/chat/poll';
|
|
2
|
-
import
|
|
2
|
+
import React from 'react';
|
|
3
3
|
interface IProps {
|
|
4
4
|
templatePoll: Poll;
|
|
5
5
|
lastActivePoll?: Poll;
|
|
6
6
|
}
|
|
7
|
-
declare const
|
|
8
|
-
export default
|
|
7
|
+
declare const _default: React.FunctionComponent<IProps>;
|
|
8
|
+
export default _default;
|