@botpress/webchat 2.3.7 → 2.3.8

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,25 +1,25 @@
1
1
 
2
- > @botpress/webchat@2.3.7 build /home/runner/work/genisys/genisys/packages/webchat-components
2
+ > @botpress/webchat@2.3.8 build /home/runner/work/genisys/genisys/packages/webchat-components
3
3
  > vite build
4
4
 
5
5
  vite v5.4.8 building for production...
6
6
  transforming...
7
- [plugin:vite:resolve] [plugin vite:resolve] Module "crypto" has been externalized for browser compatibility, imported by "/home/runner/work/genisys/genisys/node_modules/.pnpm/@bpinternal+webchat-http-client@0.2.2/node_modules/@bpinternal/webchat-http-client/dist/index.mjs". See https://vitejs.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.
7
+ [plugin:vite:resolve] [plugin vite:resolve] Module "crypto" has been externalized for browser compatibility, imported by "/home/runner/work/genisys/genisys/node_modules/.pnpm/@bpinternal+webchat-http-client@0.2.3/node_modules/@bpinternal/webchat-http-client/dist/index.mjs". See https://vitejs.dev/guide/troubleshooting.html#module-externalized-for-browser-compatibility for more details.
8
8
  [vite:css] /home/runner/work/genisys/genisys/packages/webchat-components/src/components/renderers/Audio/styles.css is empty
9
9
  1 | @import './resets.css';
10
10
  | ^^^^^^^^^^^^^^^^^^^^^^^
11
11
  2 | @import './theme.css';
12
12
  | ^^^^^^
13
13
  3 | @import '../components/index.css'
14
- ✓ 3196 modules transformed.
14
+ ✓ 3195 modules transformed.
15
15
  rendering chunks...
16
16
 
17
17
  [vite:dts] Start generate declaration files...
18
18
  computing gzip size...
19
19
  dist/style.css  31.27 kB │ gzip: 5.81 kB
20
- dist/index.js 1,094.13 kB │ gzip: 287.40 kB
21
- [vite:dts] Declaration files built in 10547ms.
20
+ dist/index.js 1,094.32 kB │ gzip: 287.43 kB
21
+ [vite:dts] Declaration files built in 10676ms.
22
22
 
23
23
  dist/style.css  31.27 kB │ gzip: 5.81 kB
24
- dist/index.umd.cjs 761.31 kB │ gzip: 241.99 kB
25
- ✓ built in 19.55s
24
+ dist/index.umd.cjs 761.43 kB │ gzip: 242.07 kB
25
+ ✓ built in 19.68s
@@ -59,6 +59,7 @@ export type RowMessage = {
59
59
  export type TextMessage = {
60
60
  type: 'text';
61
61
  text: string;
62
+ value?: string;
62
63
  };
63
64
  export type VideoMessage = {
64
65
  type: 'video';
@@ -1,4 +1,4 @@
1
1
  import * as types from './typings';
2
- import * as models from '../gen/client/models';
2
+ import * as models from '@bpinternal/webchat-http-client';
3
3
  export type Message = models.Message['payload'];
4
4
  export type Messages = types.ByType<Message>;