od-support-chat 1.0.5 → 1.0.6

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.
@@ -0,0 +1,10 @@
1
+ import { FC } from "react";
2
+
3
+ //#region src/components/lib/chat.d.ts
4
+ interface ChatProps {
5
+ meetingLinkKey: string;
6
+ customerSupportKey: string;
7
+ }
8
+ declare const Chat: FC<ChatProps>;
9
+ //#endregion
10
+ export { Chat, ChatProps };
@@ -0,0 +1,10 @@
1
+ import { FC } from "react";
2
+
3
+ //#region src/components/lib/chatMobile.d.ts
4
+ interface ChatMobileProps {
5
+ meetingLinkKey: string;
6
+ customerSupportKey: string;
7
+ }
8
+ declare const ChatMobile: FC<ChatMobileProps>;
9
+ //#endregion
10
+ export { ChatMobile, ChatMobileProps };
package/dist/index.d.ts CHANGED
@@ -1,3 +1,3 @@
1
- import { Chat } from "./components/lib/chat.js";
2
- import { ChatMobile } from "./components/lib/chatMobile.js";
3
- export { Chat, ChatMobile };
1
+ import { Chat, ChatProps } from "./components/lib/chat.js";
2
+ import { ChatMobile, ChatMobileProps } from "./components/lib/chatMobile.js";
3
+ export { Chat, ChatMobile, type ChatMobileProps, type ChatProps };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "od-support-chat",
3
3
  "private": false,
4
- "version": "1.0.5",
4
+ "version": "1.0.6",
5
5
  "type": "module",
6
6
  "main": "./dist/index.umd.js",
7
7
  "module": "./dist/index.es.js",
@@ -37,7 +37,5 @@
37
37
  "vite": "^3.1.0"
38
38
  },
39
39
 
40
- "files": [
41
- "dist/"
42
- ]
40
+ "files": ["dist"]
43
41
  }