@trycourier/courier-ui-inbox 1.0.1-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.
@@ -1,4 +1,4 @@
1
- import { InboxAction, InboxMessage } from '../../@trycourier/courier-js/src';
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 '../../@trycourier/courier-js/src';
1
+ import { InboxMessage } from '@trycourier/courier-js';
2
2
  export type InboxDataSet = {
3
3
  messages: InboxMessage[];
4
4
  canPaginate: boolean;
@@ -1,4 +1,4 @@
1
- import { InboxMessage } from '../../@trycourier/courier-js/src';
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>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trycourier/courier-ui-inbox",
3
- "version": "1.0.1-beta",
3
+ "version": "1.0.3-beta",
4
4
  "description": "Inbox components for the Courier web UI",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -10,7 +10,8 @@
10
10
  "build": "vite build",
11
11
  "watch": "vite build --watch",
12
12
  "preview": "vite preview",
13
- "prepare": "npm run build"
13
+ "prepare": "npm run build",
14
+ "test": "echo \"courier-ui-inbox has no tests\""
14
15
  },
15
16
  "keywords": [
16
17
  "courier",
@@ -24,8 +25,8 @@
24
25
  "files": [
25
26
  "dist"
26
27
  ],
27
- "peerDependencies": {
28
- "@trycourier/courier-js": "2.0.0-beta",
28
+ "dependencies": {
29
+ "@trycourier/courier-js": "2.0.1-beta",
29
30
  "@trycourier/courier-ui-core": "1.0.1-beta"
30
31
  },
31
32
  "devDependencies": {