@trycourier/courier-ui-inbox 1.0.2-beta → 1.0.3-beta
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/courier-inbox-list-item.d.ts +1 -1
- package/dist/components/courier-inbox-list.d.ts +1 -1
- package/dist/datastore/datastore.d.ts +1 -1
- package/dist/datastore/datatore-events.d.ts +1 -1
- package/dist/index.es.js +1722 -820
- package/dist/index.umd.js +199 -69
- package/dist/types/factories.d.ts +1 -1
- package/dist/types/inbox-data-set.d.ts +1 -1
- package/dist/utils/extensions.d.ts +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { InboxAction, InboxMessage } from '
|
|
1
|
+
import { InboxAction, InboxMessage } from '@trycourier/courier-js';
|
|
2
2
|
import { CourierInboxFeedType } from './feed-type';
|
|
3
3
|
export type CourierInboxHeaderFactoryProps = {
|
|
4
4
|
feedType: CourierInboxFeedType;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { InboxMessage } from '
|
|
1
|
+
import { InboxMessage } from '@trycourier/courier-js';
|
|
2
2
|
export declare function markAsRead(message: InboxMessage): Promise<void>;
|
|
3
3
|
export declare function markAsUnread(message: InboxMessage): Promise<void>;
|
|
4
4
|
export declare function clickMessage(message: InboxMessage): Promise<void>;
|