@meetelise/chat
Advanced tools
Comparing version 1.0.0-rc.8 to 1.0.0-rc.9
@@ -11,2 +11,3 @@ declare module "src/fetchBuildingInfo" { | ||
userLastName: string | null; | ||
welcomeMessage: string | null; | ||
} | ||
@@ -13,0 +14,0 @@ /** |
@@ -115,3 +115,3 @@ // src/fetchBuildingInfo.ts | ||
role: "default", | ||
welcomeMessage: `Hi, I'm ${building.userFirstName}! If you have any questions about ${building.name} or would like to schedule a tour, I'm happy to help.` | ||
welcomeMessage: building.welcomeMessage | ||
}); | ||
@@ -118,0 +118,0 @@ const conversation = session.getOrCreateConversation(getChatID()); |
{ | ||
"name": "@meetelise/chat", | ||
"version": "1.0.0-rc.8", | ||
"version": "1.0.0-rc.9", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
@@ -10,2 +10,3 @@ export interface Building { | ||
userLastName: string | null; | ||
welcomeMessage: string | null; | ||
} | ||
@@ -12,0 +13,0 @@ |
@@ -28,3 +28,3 @@ import Talk from 'talkjs'; | ||
role: 'default', | ||
welcomeMessage: `Hi, I'm ${building.userFirstName}! If you have any questions about ${building.name} or would like to schedule a tour, I'm happy to help.` | ||
welcomeMessage: building.welcomeMessage, | ||
}); | ||
@@ -31,0 +31,0 @@ const conversation = session.getOrCreateConversation(getChatID()); |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
27780
309