@appcorp/app-corp-vista 0.3.13 → 0.3.14

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@appcorp/app-corp-vista",
3
- "version": "0.3.13",
3
+ "version": "0.3.14",
4
4
  "scripts": {
5
5
  "build": "yarn clean && yarn build:ts && cp package.json lib && cp README.md lib && cp yarn.lock lib",
6
6
  "build:next": "next build",
@@ -1,10 +1,10 @@
1
- import { VISTA_CHAT_MESSAGE_STATUS, VistaChatV2Psychic, VistaChatV2User } from './vista-chat-type';
1
+ import { VistaChatV2Psychic, VistaChatV2User } from './vista-chat-type';
2
2
  export interface VistaChatBubbleV1Props {
3
3
  createdAt: string;
4
4
  isLast: boolean;
5
5
  isUser: boolean;
6
6
  message: string;
7
- messageStatus: VISTA_CHAT_MESSAGE_STATUS;
7
+ messageStatus: string;
8
8
  psychic: VistaChatV2Psychic;
9
9
  user: VistaChatV2User;
10
10
  }
@@ -30,7 +30,7 @@ export interface VistaChatV2Psychic {
30
30
  avatarAlt: string;
31
31
  }
32
32
  export interface VistaChatV2Message {
33
- messageStatus: VISTA_CHAT_MESSAGE_STATUS;
33
+ messageStatus: string;
34
34
  message: string;
35
35
  isUser: boolean;
36
36
  id: string;