@cellaware/utils 8.8.5 → 8.9.0
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/chatwms/user.d.ts +4 -0
- package/dist/chatwms/user.js +2 -0
- package/dist/llm/cost.d.ts +1 -1
- package/package.json +1 -1
package/dist/chatwms/user.d.ts
CHANGED
|
@@ -13,6 +13,9 @@ export declare const CHATWMS_DEFAULT_LANGUAGE: string;
|
|
|
13
13
|
export type ChatWMSTheme = 'light' | 'dark';
|
|
14
14
|
export declare const CHATWMS_THEME_LIGHT: ChatWMSTheme;
|
|
15
15
|
export declare const CHATWMS_THEME_DARK: ChatWMSTheme;
|
|
16
|
+
export type ChatWMSAnalystOption = 'conversational' | 'direct';
|
|
17
|
+
export declare const CHATWMS_ANALYST_OPTION_CONVERSATIONAL: ChatWMSAnalystOption;
|
|
18
|
+
export declare const CHATWMS_ANALYST_OPTION_DIRECT: ChatWMSAnalystOption;
|
|
16
19
|
export type ChatWMSDateFormat = 'MMDDYYYY' | 'DDMMYYYY' | 'YYYYMMDD';
|
|
17
20
|
export declare const CHATWMS_DEFAULT_DATE_FORMAT: ChatWMSDateFormat;
|
|
18
21
|
export interface ChatWMSUserSettings {
|
|
@@ -20,6 +23,7 @@ export interface ChatWMSUserSettings {
|
|
|
20
23
|
userDetails: string;
|
|
21
24
|
language: string;
|
|
22
25
|
theme: ChatWMSTheme;
|
|
26
|
+
analystOption?: ChatWMSAnalystOption;
|
|
23
27
|
developer?: boolean;
|
|
24
28
|
dateFormat?: ChatWMSDateFormat;
|
|
25
29
|
clientId: string;
|
package/dist/chatwms/user.js
CHANGED
|
@@ -28,6 +28,8 @@ export function chatwmsExtractUserDataFromHeaders(request) {
|
|
|
28
28
|
export const CHATWMS_DEFAULT_LANGUAGE = 'English';
|
|
29
29
|
export const CHATWMS_THEME_LIGHT = 'light';
|
|
30
30
|
export const CHATWMS_THEME_DARK = 'dark';
|
|
31
|
+
export const CHATWMS_ANALYST_OPTION_CONVERSATIONAL = 'conversational';
|
|
32
|
+
export const CHATWMS_ANALYST_OPTION_DIRECT = 'direct';
|
|
31
33
|
export const CHATWMS_DEFAULT_DATE_FORMAT = 'MMDDYYYY';
|
|
32
34
|
export function chatwmsInitUserSettings() {
|
|
33
35
|
return {
|
package/dist/llm/cost.d.ts
CHANGED