@meetelise/chat 1.35.0 → 1.35.2

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.
Files changed (282) hide show
  1. package/dist/src/MyPubnub.d.ts +116 -0
  2. package/dist/src/WebComponent/FeeCalculator/components/addons/addon-item-matrix-qty-selector/addon-item-matrix-qty-selector-styles.d.ts +2 -0
  3. package/dist/src/WebComponent/FeeCalculator/components/addons/addon-item-matrix-qty-selector/addon-item-matrix-qty-selector.d.ts +28 -0
  4. package/dist/src/WebComponent/FeeCalculator/components/addons/addon-item-qty-selector/addon-item-qty-selector-styles.d.ts +2 -0
  5. package/dist/src/WebComponent/FeeCalculator/components/addons/addon-item-qty-selector/addon-item-qty-selector.d.ts +18 -0
  6. package/dist/src/WebComponent/FeeCalculator/components/addons/common-addon-styles.d.ts +2 -0
  7. package/dist/src/WebComponent/FeeCalculator/components/addons/rentable-item-qty-selector/rentable-item-qty-selector-styles.d.ts +2 -0
  8. package/dist/src/WebComponent/FeeCalculator/components/addons/rentable-item-qty-selector/rentable-item-qty-selector.d.ts +22 -0
  9. package/dist/src/WebComponent/FeeCalculator/components/fee-calculator-layout/fee-calculator-layout-styles.d.ts +2 -0
  10. package/dist/src/WebComponent/FeeCalculator/components/fee-calculator-layout/fee-calculator-layout.d.ts +46 -0
  11. package/dist/src/WebComponent/FeeCalculator/components/fee-card/fee-card-styles.d.ts +2 -0
  12. package/dist/src/WebComponent/FeeCalculator/components/fee-card/fee-card.d.ts +21 -0
  13. package/dist/src/WebComponent/FeeCalculator/components/fee-item/fee-item-styles.d.ts +2 -0
  14. package/dist/src/WebComponent/FeeCalculator/components/fee-item/fee-item.d.ts +13 -0
  15. package/dist/src/WebComponent/FeeCalculator/components/floor-plan-selector/floor-plan-selector-styles.d.ts +2 -0
  16. package/dist/src/WebComponent/FeeCalculator/components/floor-plan-selector/floor-plan-selector.d.ts +34 -0
  17. package/dist/src/WebComponent/FeeCalculator/components/floorplan-image-card/floorplan-image-card-styles.d.ts +2 -0
  18. package/dist/src/WebComponent/FeeCalculator/components/floorplan-image-card/floorplan-image-card.d.ts +18 -0
  19. package/dist/src/WebComponent/FeeCalculator/components/incentive-banner/incentive-banner-styles.d.ts +1 -0
  20. package/dist/src/WebComponent/FeeCalculator/components/incentive-banner/incentive-banner.d.ts +8 -0
  21. package/dist/src/WebComponent/FeeCalculator/components/incentive-banner/index.d.ts +1 -0
  22. package/dist/src/WebComponent/FeeCalculator/components/index.d.ts +5 -0
  23. package/dist/src/WebComponent/FeeCalculator/components/promo-card/promo-card-styles.d.ts +2 -0
  24. package/dist/src/WebComponent/FeeCalculator/components/promo-card/promo-card.d.ts +13 -0
  25. package/dist/src/WebComponent/FeeCalculator/constants.d.ts +3 -0
  26. package/dist/src/WebComponent/FeeCalculator/fee-calculator-styles.d.ts +1 -0
  27. package/dist/src/WebComponent/FeeCalculator/fee-calculator.d.ts +55 -0
  28. package/dist/src/WebComponent/FeeCalculator/index.d.ts +2 -0
  29. package/dist/src/WebComponent/FeeCalculator/model/building-fee-view.d.ts +41 -0
  30. package/dist/src/WebComponent/FeeCalculator/model/building-fee.d.ts +82 -0
  31. package/dist/src/WebComponent/FeeCalculator/model/desired-addon.d.ts +5 -0
  32. package/dist/src/WebComponent/FeeCalculator/model/desired-rentable-item.d.ts +4 -0
  33. package/dist/src/WebComponent/FeeCalculator/model/index.d.ts +13 -0
  34. package/dist/src/WebComponent/FeeCalculator/model/item-combination.d.ts +6 -0
  35. package/dist/src/WebComponent/FeeCalculator/model/item-quantity.d.ts +4 -0
  36. package/dist/src/WebComponent/FeeCalculator/model/pricing-matrix.d.ts +18 -0
  37. package/dist/src/WebComponent/FeeCalculator/model/pricing-rule.d.ts +8 -0
  38. package/dist/src/WebComponent/FeeCalculator/model/rent-frequency.d.ts +1 -0
  39. package/dist/src/WebComponent/FeeCalculator/model/rentable-item-summary.d.ts +13 -0
  40. package/dist/src/WebComponent/FeeCalculator/model/rentable-item.d.ts +10 -0
  41. package/dist/src/WebComponent/FeeCalculator/model/transaction-category.d.ts +23 -0
  42. package/dist/src/WebComponent/FeeCalculator/model/unit-fee-bundle.d.ts +31 -0
  43. package/dist/src/WebComponent/LeadSourceClient.d.ts +46 -0
  44. package/dist/src/WebComponent/OfficeHours.d.ts +21 -0
  45. package/dist/src/WebComponent/Scheduler/date-picker.d.ts +28 -0
  46. package/dist/src/WebComponent/Scheduler/time-picker.d.ts +16 -0
  47. package/dist/src/WebComponent/Scheduler/tour-scheduler.d.ts +102 -0
  48. package/dist/src/WebComponent/Scheduler/tour-type-option.d.ts +13 -0
  49. package/dist/src/WebComponent/Scheduler/tourSchedulerStyles.d.ts +1 -0
  50. package/dist/src/WebComponent/actions/InputStyles.d.ts +1 -0
  51. package/dist/src/WebComponent/actions/action-confirm-button.d.ts +13 -0
  52. package/dist/src/WebComponent/actions/call-us-window.d.ts +37 -0
  53. package/dist/src/WebComponent/actions/collapse-expand-button.d.ts +8 -0
  54. package/dist/src/WebComponent/actions/details-window.d.ts +14 -0
  55. package/dist/src/WebComponent/actions/email-us-window.d.ts +46 -0
  56. package/dist/src/WebComponent/actions/formatPhoneNumber.d.ts +17 -0
  57. package/dist/src/WebComponent/actions/minimize-expand-button.d.ts +8 -0
  58. package/dist/src/WebComponent/chat-additional-actions.d.ts +28 -0
  59. package/dist/src/WebComponent/health-chat.d.ts +47 -0
  60. package/dist/src/WebComponent/healthchat-styles.d.ts +1 -0
  61. package/dist/src/WebComponent/icons/ApplyOutlineIcon.d.ts +2 -0
  62. package/dist/src/WebComponent/icons/BookTourOutlineIcon.d.ts +2 -0
  63. package/dist/src/WebComponent/icons/CalculatorOutlineIcon.d.ts +2 -0
  64. package/dist/src/WebComponent/icons/ChatOutlineIcon.d.ts +2 -0
  65. package/dist/src/WebComponent/icons/ChevronLeftIcon.d.ts +2 -0
  66. package/dist/src/WebComponent/icons/ChevronRightIcon.d.ts +2 -0
  67. package/dist/src/WebComponent/icons/ContactResidentIcon.d.ts +2 -0
  68. package/dist/src/WebComponent/icons/DollarOutlineIcon.d.ts +7 -0
  69. package/dist/src/WebComponent/icons/EmailOutlineIcon.d.ts +2 -0
  70. package/dist/src/WebComponent/icons/HeyThereEmojiIcon.d.ts +2 -0
  71. package/dist/src/WebComponent/icons/PhoneOutlineIcon.d.ts +2 -0
  72. package/dist/src/WebComponent/icons/SendMessageIcon.d.ts +3 -0
  73. package/dist/src/WebComponent/icons/TourSelfGuidedIcon.d.ts +2 -0
  74. package/dist/src/WebComponent/icons/TourVirtuallyIcon.d.ts +2 -0
  75. package/dist/src/WebComponent/icons/TourWithAgentIcon.d.ts +2 -0
  76. package/dist/src/WebComponent/icons/XOutlineIcon.d.ts +2 -0
  77. package/dist/src/WebComponent/index.d.ts +2 -0
  78. package/dist/src/WebComponent/launcher/Launcher.d.ts +99 -0
  79. package/dist/src/WebComponent/launcher/launcherStyles.d.ts +1 -0
  80. package/dist/src/WebComponent/launcher/mobile-launcher.d.ts +27 -0
  81. package/dist/src/WebComponent/launcher/typeEmojiStyles.d.ts +1 -0
  82. package/dist/src/WebComponent/launcher/typeMiniStyles.d.ts +1 -0
  83. package/dist/src/WebComponent/launcher/typeMobileStyles.d.ts +1 -0
  84. package/dist/src/WebComponent/leasing-chat-styles.d.ts +1 -0
  85. package/dist/src/WebComponent/loaders/index.d.ts +4 -0
  86. package/dist/src/WebComponent/loaders/mega-loader.d.ts +7 -0
  87. package/dist/src/WebComponent/loaders/skeleton-card.d.ts +12 -0
  88. package/dist/src/WebComponent/loaders/skeleton-loader-styles.d.ts +3 -0
  89. package/dist/src/WebComponent/loaders/skeleton-loader.d.ts +13 -0
  90. package/dist/src/WebComponent/me-chat.d.ts +91 -0
  91. package/dist/src/WebComponent/me-select.d.ts +24 -0
  92. package/dist/src/WebComponent/mini-loader.d.ts +5 -0
  93. package/dist/src/WebComponent/pubnub-chat-styles.d.ts +1 -0
  94. package/dist/src/WebComponent/pubnub-chat.d.ts +48 -0
  95. package/dist/src/WebComponent/pubnub-media.d.ts +14 -0
  96. package/dist/src/WebComponent/pubnub-message-styles.d.ts +1 -0
  97. package/dist/src/WebComponent/pubnub-message.d.ts +39 -0
  98. package/dist/src/WebComponent/simple-launcher/simple-launcher-styles.d.ts +1 -0
  99. package/dist/src/WebComponent/simple-launcher/simple-launcher.d.ts +12 -0
  100. package/dist/src/WebComponent/utilities-chat.d.ts +47 -0
  101. package/dist/src/WebComponent/utilities-styles.d.ts +1 -0
  102. package/dist/src/WebComponent/utils.d.ts +31 -0
  103. package/dist/src/analytics.d.ts +64 -0
  104. package/dist/src/disclaimers.d.ts +16 -0
  105. package/dist/src/fetchBuildingABTestType.d.ts +8 -0
  106. package/dist/src/fetchBuildingInfo.d.ts +58 -0
  107. package/dist/src/fetchBuildingWebchatView.d.ts +124 -0
  108. package/dist/src/fetchFeatureFlag.d.ts +14 -0
  109. package/dist/src/fetchLeadSources.d.ts +4 -0
  110. package/dist/src/fetchPhoneNumberFromSource.d.ts +6 -0
  111. package/dist/src/getAvailabilities.d.ts +46 -0
  112. package/dist/src/getBuildingPhoneNumber.d.ts +1 -0
  113. package/dist/src/getShouldAllowScheduling.d.ts +1 -0
  114. package/dist/src/getShouldShowWebchat.d.ts +3 -0
  115. package/dist/src/getTimezoneString.d.ts +1 -0
  116. package/dist/src/globals.d.ts +2 -0
  117. package/dist/src/gtm.d.ts +6 -0
  118. package/dist/src/handleChatId.d.ts +11 -0
  119. package/dist/src/insertDNIIntoWebsite.d.ts +5 -0
  120. package/dist/src/insertLeadSourceIntoSchedulerLinks.d.ts +4 -0
  121. package/dist/src/main/MEChat.d.ts +74 -0
  122. package/dist/src/main/utils.d.ts +2 -0
  123. package/dist/src/postLeadSources.d.ts +3 -0
  124. package/dist/src/rentgrata.d.ts +4 -0
  125. package/dist/src/replaceSelectButtonsWithNewLink.d.ts +5 -0
  126. package/dist/src/services/fees/calculateQuote.d.ts +14 -0
  127. package/dist/src/services/fees/fetchBuildingFeesV2.d.ts +10 -0
  128. package/dist/src/services/fees/fetchBuildingUnits.d.ts +29 -0
  129. package/dist/src/services/fees/utils.d.ts +1 -0
  130. package/dist/src/svgIcons.d.ts +5 -0
  131. package/dist/src/themes.d.ts +5 -0
  132. package/dist/src/types/incentive-v2.d.ts +23 -0
  133. package/dist/src/types/rest-sdk.types.d.ts +11 -0
  134. package/dist/src/types/webchat-no-show-reason.d.ts +1 -0
  135. package/dist/src/utils/getWidgetOverrides.d.ts +39 -0
  136. package/dist/src/utils/queryParamBuilder.d.ts +8 -0
  137. package/dist/src/utils.d.ts +13 -0
  138. package/package.json +1 -1
  139. package/public/dist/index.js +250 -164
  140. package/src/MyPubnub.ts +792 -0
  141. package/src/WebComponent/FeeCalculator/components/addons/addon-item-matrix-qty-selector/addon-item-matrix-qty-selector-styles.ts +39 -0
  142. package/src/WebComponent/FeeCalculator/components/addons/addon-item-matrix-qty-selector/addon-item-matrix-qty-selector.ts +206 -0
  143. package/src/WebComponent/FeeCalculator/components/addons/addon-item-qty-selector/addon-item-qty-selector-styles.ts +6 -0
  144. package/src/WebComponent/FeeCalculator/components/addons/addon-item-qty-selector/addon-item-qty-selector.ts +101 -0
  145. package/src/WebComponent/FeeCalculator/components/addons/common-addon-styles.ts +98 -0
  146. package/src/WebComponent/FeeCalculator/components/addons/rentable-item-qty-selector/rentable-item-qty-selector-styles.ts +9 -0
  147. package/src/WebComponent/FeeCalculator/components/addons/rentable-item-qty-selector/rentable-item-qty-selector.ts +136 -0
  148. package/src/WebComponent/FeeCalculator/components/fee-calculator-layout/fee-calculator-layout-styles.ts +151 -0
  149. package/src/WebComponent/FeeCalculator/components/fee-calculator-layout/fee-calculator-layout.ts +261 -0
  150. package/src/WebComponent/FeeCalculator/components/fee-card/fee-card-styles.ts +65 -0
  151. package/src/WebComponent/FeeCalculator/components/fee-card/fee-card.ts +91 -0
  152. package/src/WebComponent/FeeCalculator/components/fee-item/fee-item-styles.ts +44 -0
  153. package/src/WebComponent/FeeCalculator/components/fee-item/fee-item.ts +38 -0
  154. package/src/WebComponent/FeeCalculator/components/floor-plan-selector/floor-plan-selector-styles.ts +149 -0
  155. package/src/WebComponent/FeeCalculator/components/floor-plan-selector/floor-plan-selector.ts +247 -0
  156. package/src/WebComponent/FeeCalculator/components/floorplan-image-card/floorplan-image-card-styles.ts +82 -0
  157. package/src/WebComponent/FeeCalculator/components/floorplan-image-card/floorplan-image-card.ts +76 -0
  158. package/src/WebComponent/FeeCalculator/components/incentive-banner/incentive-banner-styles.ts +40 -0
  159. package/src/WebComponent/FeeCalculator/components/incentive-banner/incentive-banner.ts +43 -0
  160. package/src/WebComponent/FeeCalculator/components/incentive-banner/index.ts +1 -0
  161. package/src/WebComponent/FeeCalculator/components/index.ts +5 -0
  162. package/src/WebComponent/FeeCalculator/components/promo-card/promo-card-styles.ts +39 -0
  163. package/src/WebComponent/FeeCalculator/components/promo-card/promo-card.ts +39 -0
  164. package/src/WebComponent/FeeCalculator/constants.ts +5 -0
  165. package/src/WebComponent/FeeCalculator/fee-calculator-styles.ts +310 -0
  166. package/src/WebComponent/FeeCalculator/fee-calculator.ts +341 -0
  167. package/src/WebComponent/FeeCalculator/index.ts +4 -0
  168. package/src/WebComponent/FeeCalculator/model/building-fee-view.ts +84 -0
  169. package/src/WebComponent/FeeCalculator/model/building-fee.ts +126 -0
  170. package/src/WebComponent/FeeCalculator/model/desired-addon.ts +6 -0
  171. package/src/WebComponent/FeeCalculator/model/desired-rentable-item.ts +4 -0
  172. package/src/WebComponent/FeeCalculator/model/index.ts +13 -0
  173. package/src/WebComponent/FeeCalculator/model/item-combination.ts +16 -0
  174. package/src/WebComponent/FeeCalculator/model/item-quantity.ts +4 -0
  175. package/src/WebComponent/FeeCalculator/model/pricing-matrix.ts +45 -0
  176. package/src/WebComponent/FeeCalculator/model/pricing-rule.ts +9 -0
  177. package/src/WebComponent/FeeCalculator/model/rent-frequency.ts +1 -0
  178. package/src/WebComponent/FeeCalculator/model/rentable-item-summary.ts +34 -0
  179. package/src/WebComponent/FeeCalculator/model/rentable-item.ts +21 -0
  180. package/src/WebComponent/FeeCalculator/model/transaction-category.ts +23 -0
  181. package/src/WebComponent/FeeCalculator/model/unit-fee-bundle.ts +54 -0
  182. package/src/WebComponent/LeadSourceClient.ts +332 -0
  183. package/src/WebComponent/MEChat.css +5 -0
  184. package/src/WebComponent/OfficeHours.ts +73 -0
  185. package/src/WebComponent/Scheduler/date-picker.ts +405 -0
  186. package/src/WebComponent/Scheduler/time-picker.ts +195 -0
  187. package/src/WebComponent/Scheduler/tour-scheduler.ts +1430 -0
  188. package/src/WebComponent/Scheduler/tour-type-option.ts +112 -0
  189. package/src/WebComponent/Scheduler/tourSchedulerStyles.ts +418 -0
  190. package/src/WebComponent/actions/InputStyles.ts +57 -0
  191. package/src/WebComponent/actions/action-confirm-button.ts +125 -0
  192. package/src/WebComponent/actions/call-us-window.ts +467 -0
  193. package/src/WebComponent/actions/collapse-expand-button.ts +65 -0
  194. package/src/WebComponent/actions/details-window.ts +150 -0
  195. package/src/WebComponent/actions/email-us-window.ts +556 -0
  196. package/src/WebComponent/actions/formatPhoneNumber.ts +72 -0
  197. package/src/WebComponent/actions/minimize-expand-button.ts +93 -0
  198. package/src/WebComponent/chat-additional-actions.ts +135 -0
  199. package/src/WebComponent/health-chat.ts +270 -0
  200. package/src/WebComponent/healthchat-styles.ts +119 -0
  201. package/src/WebComponent/icons/ApplyOutlineIcon.ts +22 -0
  202. package/src/WebComponent/icons/BookTourOutlineIcon.ts +13 -0
  203. package/src/WebComponent/icons/CalculatorOutlineIcon.ts +80 -0
  204. package/src/WebComponent/icons/ChatOutlineIcon.ts +10 -0
  205. package/src/WebComponent/icons/ChevronLeftIcon.ts +7 -0
  206. package/src/WebComponent/icons/ChevronRightIcon.ts +7 -0
  207. package/src/WebComponent/icons/ContactResidentIcon.ts +9 -0
  208. package/src/WebComponent/icons/DollarOutlineIcon.ts +26 -0
  209. package/src/WebComponent/icons/EmailOutlineIcon.ts +7 -0
  210. package/src/WebComponent/icons/HeyThereEmojiIcon.ts +12 -0
  211. package/src/WebComponent/icons/PhoneOutlineIcon.ts +7 -0
  212. package/src/WebComponent/icons/SendMessageIcon.ts +17 -0
  213. package/src/WebComponent/icons/TourSelfGuidedIcon.ts +17 -0
  214. package/src/WebComponent/icons/TourVirtuallyIcon.ts +17 -0
  215. package/src/WebComponent/icons/TourWithAgentIcon.ts +17 -0
  216. package/src/WebComponent/icons/XOutlineIcon.ts +8 -0
  217. package/src/WebComponent/index.ts +2 -0
  218. package/src/WebComponent/launcher/Launcher.ts +1284 -0
  219. package/src/WebComponent/launcher/launcherStyles.ts +500 -0
  220. package/src/WebComponent/launcher/mobile-launcher.ts +162 -0
  221. package/src/WebComponent/launcher/typeEmojiStyles.ts +161 -0
  222. package/src/WebComponent/launcher/typeMiniStyles.ts +60 -0
  223. package/src/WebComponent/launcher/typeMobileStyles.ts +50 -0
  224. package/src/WebComponent/leasing-chat-styles.ts +114 -0
  225. package/src/WebComponent/loaders/index.ts +7 -0
  226. package/src/WebComponent/loaders/mega-loader.ts +36 -0
  227. package/src/WebComponent/loaders/skeleton-card.ts +31 -0
  228. package/src/WebComponent/loaders/skeleton-loader-styles.ts +112 -0
  229. package/src/WebComponent/loaders/skeleton-loader.ts +34 -0
  230. package/src/WebComponent/me-chat.ts +1264 -0
  231. package/src/WebComponent/me-select.ts +322 -0
  232. package/src/WebComponent/mini-loader.ts +28 -0
  233. package/src/WebComponent/pubnub-chat-styles.ts +204 -0
  234. package/src/WebComponent/pubnub-chat.ts +771 -0
  235. package/src/WebComponent/pubnub-media.ts +208 -0
  236. package/src/WebComponent/pubnub-message-styles.ts +54 -0
  237. package/src/WebComponent/pubnub-message.ts +431 -0
  238. package/src/WebComponent/simple-launcher/simple-launcher-styles.ts +34 -0
  239. package/src/WebComponent/simple-launcher/simple-launcher.ts +100 -0
  240. package/src/WebComponent/utilities-chat.ts +270 -0
  241. package/src/WebComponent/utilities-styles.ts +110 -0
  242. package/src/WebComponent/utils.ts +82 -0
  243. package/src/analytics.ts +217 -0
  244. package/src/assetUrls.ts +6 -0
  245. package/src/disclaimers.ts +301 -0
  246. package/src/fetchBuildingABTestType.ts +21 -0
  247. package/src/fetchBuildingInfo.ts +88 -0
  248. package/src/fetchBuildingWebchatView.ts +176 -0
  249. package/src/fetchFeatureFlag.ts +250 -0
  250. package/src/fetchLeadSources.ts +98 -0
  251. package/src/fetchPhoneNumberFromSource.ts +31 -0
  252. package/src/fetchWebchatPreferences.ts +54 -0
  253. package/src/getAvailabilities.ts +189 -0
  254. package/src/getBuildingPhoneNumber.ts +26 -0
  255. package/src/getShouldAllowScheduling.ts +16 -0
  256. package/src/getShouldShowWebchat.ts +114 -0
  257. package/src/getTimezoneString.ts +40 -0
  258. package/src/globals.ts +3 -0
  259. package/src/gtm.ts +17 -0
  260. package/src/handleChatId.ts +101 -0
  261. package/src/insertDNIIntoWebsite.ts +146 -0
  262. package/src/insertLeadSourceIntoSchedulerLinks.ts +71 -0
  263. package/src/main/MEChat.test.ts +110 -0
  264. package/src/main/MEChat.ts +404 -0
  265. package/src/main/utils.ts +70 -0
  266. package/src/postLeadSources.ts +44 -0
  267. package/src/rentgrata.ts +74 -0
  268. package/src/replaceSelectButtonsWithNewLink.ts +91 -0
  269. package/src/services/fees/calculateQuote.ts +74 -0
  270. package/src/services/fees/fetchBuildingFees.ts +50 -0
  271. package/src/services/fees/fetchBuildingFeesV2.ts +59 -0
  272. package/src/services/fees/fetchBuildingFloorplans.ts +74 -0
  273. package/src/services/fees/fetchBuildingUnits.ts +86 -0
  274. package/src/services/fees/utils.ts +4 -0
  275. package/src/svgIcons.ts +14 -0
  276. package/src/themes.ts +65 -0
  277. package/src/types/incentive-v2.ts +24 -0
  278. package/src/types/rest-sdk.types.ts +13 -0
  279. package/src/types/webchat-no-show-reason.ts +6 -0
  280. package/src/utils/getWidgetOverrides.ts +91 -0
  281. package/src/utils/queryParamBuilder.ts +28 -0
  282. package/src/utils.ts +121 -0
@@ -0,0 +1,8 @@
1
+ import { ItemCombination } from "./item-combination";
2
+ export interface PricingRule {
3
+ combination: ItemCombination;
4
+ price?: number;
5
+ percentRent?: number;
6
+ minimumPrice?: number;
7
+ maximumPrice?: number;
8
+ }
@@ -0,0 +1 @@
1
+ export declare type RentFrequency = "monthly" | "annually";
@@ -0,0 +1,13 @@
1
+ import { RentableItem } from "./rentable-item";
2
+ export declare class RentableItemSummary {
3
+ description: string;
4
+ type: string;
5
+ minAvailableItem?: RentableItem;
6
+ maxAvailableItem?: RentableItem;
7
+ allItems: RentableItem[];
8
+ rent: number;
9
+ priceDescription: string;
10
+ constructor(data?: Partial<RentableItemSummary>);
11
+ get displayName(): string;
12
+ get itemDescription(): string;
13
+ }
@@ -0,0 +1,10 @@
1
+ import { RentFrequency } from "./rent-frequency";
2
+ export declare class RentableItem {
3
+ id: string;
4
+ description: string;
5
+ rent: number;
6
+ rentFrequency: RentFrequency;
7
+ available: boolean;
8
+ reservedUntil?: Date;
9
+ constructor(data?: Partial<RentableItem>);
10
+ }
@@ -0,0 +1,23 @@
1
+ export declare enum TransactionCategory {
2
+ AdminFee = "AdminFee",
3
+ ApplicationFee = "ApplicationFee",
4
+ Concession = "Concession",
5
+ Insurance = "Insurance",
6
+ LateFee = "LateFee",
7
+ Legal = "Legal",
8
+ NonSufficientFundFee = "NSF",
9
+ Other = "Other",
10
+ Parking = "Parking",
11
+ Penalty = "Penalty",
12
+ Pest = "Pest",
13
+ PetDeposit = "PetDeposit",
14
+ PetRent = "PetRent",
15
+ Refund = "Refund",
16
+ Relet = "Relet",
17
+ Rent = "Rent",
18
+ SecurityDeposit = "SecurityDeposit",
19
+ Storage = "Storage",
20
+ Trash = "Trash",
21
+ Utility = "Utility",
22
+ WaterSewer = "WaterSewer"
23
+ }
@@ -0,0 +1,31 @@
1
+ import { RentableItemSummary } from "./rentable-item-summary";
2
+ export declare type UnitFeeBundle = {
3
+ unitId: number;
4
+ unitNumber: string;
5
+ unitLayout: number;
6
+ rent: number;
7
+ fees: FeeEstimate[];
8
+ feeTotal: number;
9
+ rentableItems: RentableItemSummary[];
10
+ rentableItemTotal: number;
11
+ };
12
+ declare type FeeAdjustment = {
13
+ reason: string;
14
+ amount: number;
15
+ };
16
+ export declare class FeeEstimate {
17
+ name: string;
18
+ description?: string | null;
19
+ amount: number;
20
+ frequency: string;
21
+ addOnType?: string;
22
+ applicable?: boolean;
23
+ required?: boolean;
24
+ adjustments?: FeeAdjustment[];
25
+ comment?: string;
26
+ constructor(data: FeeEstimate);
27
+ get displayAmount(): string;
28
+ get displayName(): string;
29
+ get isAddOn(): boolean;
30
+ }
31
+ export {};
@@ -0,0 +1,46 @@
1
+ import { CampaignSources } from "../analytics";
2
+ export interface LeadSourceInput {
3
+ buildingSlug: string | null;
4
+ queryParams: {
5
+ [queryKey: string]: string;
6
+ } | null;
7
+ referrer: string;
8
+ campaignSources: CampaignSources;
9
+ }
10
+ export declare function getDefaultLeadSourceAttribution(orgSlug: string): string;
11
+ declare class LeadSourceClient {
12
+ chatId: string | null;
13
+ private apiHost;
14
+ leadSource: string | null;
15
+ private localStorageTTLDays;
16
+ buildingId: number | null;
17
+ orgSlug: string | null;
18
+ buildingSlug: string | null;
19
+ queryParameters: {
20
+ [queryKey: string]: string;
21
+ } | null;
22
+ leadSourceInput: {
23
+ websiteOrigin: string | null;
24
+ websiteSearch: string | null;
25
+ queryParameters: {
26
+ [queryKey: string]: string;
27
+ } | null;
28
+ referrer: string | null;
29
+ parsedUtmSource: string | null;
30
+ campaignSources: string[] | null;
31
+ } | null;
32
+ private updateLeadSourceLocalStorage;
33
+ private getLeadSourceBodyIfValid;
34
+ private fetchCurrentParsedLeadSource;
35
+ checkAndHandleForLogLeadSource({ webchatAction, stateId, }: {
36
+ webchatAction: string;
37
+ stateId: string | null;
38
+ }): Promise<null>;
39
+ getCookieValue(key: string): Promise<string | null>;
40
+ generateUserLeadSource({ leadId, orgSlug, buildingSlug, }: {
41
+ leadId: string;
42
+ orgSlug: string;
43
+ buildingSlug: string | null;
44
+ }): Promise<string | null>;
45
+ }
46
+ export default LeadSourceClient;
@@ -0,0 +1,21 @@
1
+ interface OfficeHourAvailabilityReponse {
2
+ [dayOfWeek: string]: {
3
+ start: string;
4
+ end: string;
5
+ };
6
+ }
7
+ export declare const getRawOfficeHours: (buildingId: number) => Promise<OfficeHourAvailabilityReponse>;
8
+ export declare const getDefaultOfficeHours: () => {
9
+ startTime: Date;
10
+ endTime: Date;
11
+ }[];
12
+ export declare const dayNamesInOrder: string[];
13
+ /**
14
+ * Based on the design, we're going with monday as the first day of the week
15
+ */
16
+ export declare const getOfficeHourText: (buildingId: number) => Promise<(string | {
17
+ dayOfWeek: string;
18
+ startTime: string;
19
+ endTime: string;
20
+ })[]>;
21
+ export {};
@@ -0,0 +1,28 @@
1
+ import { LitElement, TemplateResult } from "lit";
2
+ import { Month } from "../utils";
3
+ export declare class DatePicker extends LitElement {
4
+ /**
5
+ * Optional attribute to set the date picker's default month.
6
+ * The attribute will not be updated if the user changes the month shown.
7
+ */
8
+ defaultMonth?: Month;
9
+ /**
10
+ * Optional attribute to set the date picker's default year.
11
+ * The attribute will not be updated if the user changes the year shown.
12
+ */
13
+ defaultYear?: number;
14
+ availabilities?: {
15
+ [day: string]: Date[];
16
+ };
17
+ private _selectedDate?;
18
+ set selectedDate(date: Date | undefined);
19
+ get selectedDate(): undefined | Date;
20
+ now: Date;
21
+ private _monthShown;
22
+ set monthShown(month: number);
23
+ /** 0-indexed month, e.g. `0` for January */
24
+ get monthShown(): number;
25
+ yearShown: number;
26
+ static styles: import("lit").CSSResult;
27
+ render(): TemplateResult;
28
+ }
@@ -0,0 +1,16 @@
1
+ import { LitElement, TemplateResult } from "lit";
2
+ import { DateWithTimeZoneOffset } from "../../getAvailabilities";
3
+ export declare type TimePickerOption = {
4
+ displayTime: string;
5
+ displayTimeZoned: string;
6
+ dateWithTimeZoneOffset: DateWithTimeZoneOffset;
7
+ };
8
+ export declare class TimePicker extends LitElement {
9
+ options: TimePickerOption[];
10
+ selectedDateExists: boolean;
11
+ timezone: string;
12
+ private selected?;
13
+ get selectedTime(): undefined | TimePickerOption;
14
+ static styles: import("lit").CSSResult;
15
+ render(): TemplateResult;
16
+ }
@@ -0,0 +1,102 @@
1
+ import { LitElement, PropertyValueMap, TemplateResult } from "lit";
2
+ import "./tour-type-option.ts";
3
+ import "./date-picker.ts";
4
+ import "./time-picker.ts";
5
+ import "../me-select.ts";
6
+ import { MESelect } from "../me-select";
7
+ import { LabeledOption } from "../../fetchBuildingInfo";
8
+ export declare class TourScheduler extends LitElement {
9
+ tourTypeOptions: LabeledOption[];
10
+ chatId: string;
11
+ buildingId: number;
12
+ buildingSlug: string;
13
+ sgtUrl: string;
14
+ selfGuidedToursTypeOffered: string;
15
+ selfGuidedTourEnabled: boolean;
16
+ escortedToursLink: string;
17
+ virtualToursLink: string;
18
+ virtualToursTypeOffered: string;
19
+ orgSlug: string;
20
+ hasDynamicSchedulingEnabled: boolean;
21
+ private leadSourceClient;
22
+ buildingName: string;
23
+ onCloseClicked?: (e: MouseEvent) => void;
24
+ private tourType;
25
+ private shouldShowTourType;
26
+ private email;
27
+ private phoneNumber;
28
+ private availabilitiesGroupedByDay;
29
+ private calendarTimeZone;
30
+ private waitingForAvailabilities;
31
+ private selectedDate?;
32
+ private selectedTime?;
33
+ private mobilePageIndex;
34
+ private isSubmitting;
35
+ private tourIsBooked;
36
+ private shouldAllowScheduling;
37
+ private shouldAllowScheduleLoading;
38
+ private promptForReschedule;
39
+ private canceledReschedule;
40
+ leadSources: string[];
41
+ orgLegalName: string;
42
+ currentLeadSource: string;
43
+ featureFlagShowDropdown: string;
44
+ compactDesign: boolean;
45
+ primaryColor: string;
46
+ backgroundColor: string;
47
+ foregroundColorOnPrimaryBackgroundColor: string;
48
+ foregroundColorOnSecondaryBackgroundColor: string;
49
+ firstNameInput: HTMLInputElement;
50
+ lastNameInput: HTMLInputElement;
51
+ emailInput: HTMLInputElement;
52
+ phoneInput: HTMLInputElement;
53
+ selectedLeadSource: MESelect;
54
+ firstNameInputValue: string;
55
+ lastNameInputValue: string;
56
+ leadSourceInputValue: string;
57
+ errorGettingAvailabilities: boolean;
58
+ _setAvailabilities: () => Promise<void>;
59
+ firstUpdated: () => Promise<void>;
60
+ protected willUpdate: (_changedProperties: PropertyValueMap<{
61
+ tourType: TourType;
62
+ }> | Map<PropertyKey, unknown>) => Promise<void>;
63
+ handlePhoneKeydown: (e: Event) => void;
64
+ handlePhoneKeyup: (e: KeyboardEvent) => void;
65
+ onChangeEmail: (e: Event) => void;
66
+ validators: {
67
+ tourType: () => boolean;
68
+ dateAndTime: () => boolean;
69
+ leadInfo: () => boolean;
70
+ };
71
+ formIsValidForSubmission: () => boolean;
72
+ /** E.g., `timeStringToHoursAndMinutes("4:15pm")` -> `[16, 15]`
73
+ */
74
+ timeStringToHoursAndMinutes: (timeString: string) => [hours: number, minutes: number];
75
+ submit: () => Promise<void>;
76
+ static styles: import("lit").CSSResult[];
77
+ tourTypeMenu(): TemplateResult;
78
+ dateAndTimeMenu(): TemplateResult;
79
+ closeButton(): TemplateResult;
80
+ mobilePages: ({
81
+ validate: () => boolean;
82
+ nextButtonText: string;
83
+ nextButtonAction: () => void;
84
+ render: () => TemplateResult;
85
+ renderNextButton?: undefined;
86
+ } | {
87
+ validate: () => boolean;
88
+ nextButtonText: null;
89
+ renderNextButton: () => TemplateResult;
90
+ nextButtonAction: null;
91
+ render: () => TemplateResult;
92
+ })[];
93
+ userInfoAndLayoutMenu(): TemplateResult;
94
+ confirmationMessage(): TemplateResult;
95
+ loadingIcon(size?: number): TemplateResult;
96
+ render(): TemplateResult;
97
+ }
98
+ export declare enum TourType {
99
+ Guided = "guided",
100
+ Self = "self",
101
+ Virtual = "virtual"
102
+ }
@@ -0,0 +1,13 @@
1
+ import { LitElement, TemplateResult } from "lit";
2
+ export declare class TourTypeOption extends LitElement {
3
+ heading: string;
4
+ subtitle: string;
5
+ selected: boolean;
6
+ onClick?: () => void;
7
+ primaryColor: string;
8
+ backgroundColor: string;
9
+ foregroundColorOnPrimaryBackgroundColor: string;
10
+ foregroundColorOnSecondaryBackgroundColor: string;
11
+ static styles: import("lit").CSSResult[];
12
+ render(): TemplateResult;
13
+ }
@@ -0,0 +1 @@
1
+ export declare const tourSchedulerStyles: import("lit").CSSResult;
@@ -0,0 +1 @@
1
+ export declare const InputStyles: import("lit").CSSResult;
@@ -0,0 +1,13 @@
1
+ import { LitElement, TemplateResult } from "lit";
2
+ export declare class ActionConfirmButton extends LitElement {
3
+ static styles: import("lit").CSSResult[];
4
+ onClick?: () => void;
5
+ text: string;
6
+ isLoading: boolean;
7
+ disabled: boolean;
8
+ height: string;
9
+ width: string;
10
+ focus: () => void;
11
+ render: () => TemplateResult;
12
+ }
13
+ export declare const installActionConfirmButton: () => void;
@@ -0,0 +1,37 @@
1
+ import { LitElement, TemplateResult } from "lit";
2
+ import { Ref } from "lit/directives/ref.js";
3
+ export declare class CallUsWindow extends LitElement {
4
+ static styles: import("lit").CSSResult[];
5
+ buildingSlug: string;
6
+ orgSlug: string;
7
+ onCloseClicked?: (e: MouseEvent) => void;
8
+ phoneNumberToCall: string;
9
+ phoneNumberToText: string;
10
+ buildingId: number;
11
+ buildingName: string;
12
+ chatCallUsHeader: string;
13
+ hasCallUsEnabled: string;
14
+ hasTextUsEnabled: string;
15
+ currentLeadSource: string;
16
+ orgLegalName: string;
17
+ private leadSourceClient;
18
+ phoneNumberInputRef: Ref<HTMLInputElement>;
19
+ hasSubmittedForm: boolean;
20
+ hasPhoneNumberError: boolean;
21
+ hasSubmissionError: boolean;
22
+ submittingTextUsOption: boolean;
23
+ officeHoursTextInfo: (string | {
24
+ dayOfWeek: string;
25
+ startTime: string;
26
+ endTime: string;
27
+ })[];
28
+ firstUpdated: () => Promise<void>;
29
+ getCallLink: (phoneNumber: string) => TemplateResult;
30
+ enforcePhoneFormat: (e: KeyboardEvent) => void;
31
+ onSubmitTextUs: () => Promise<void>;
32
+ onChangePhoneNumber: (e: Event) => void;
33
+ private renderFormTextUsOption;
34
+ private renderSubmittedTextUsOption;
35
+ render: () => TemplateResult;
36
+ }
37
+ export declare const installCallUsWindow: () => void;
@@ -0,0 +1,8 @@
1
+ import { LitElement, TemplateResult } from "lit";
2
+ export declare class CollapseExpandButton extends LitElement {
3
+ static styles: import("lit").CSSResult[];
4
+ onClick: () => void;
5
+ primaryColor: string;
6
+ toExpand: boolean;
7
+ render(): TemplateResult;
8
+ }
@@ -0,0 +1,14 @@
1
+ import { LitElement, TemplateResult } from "lit";
2
+ export declare class DetailsWindow extends LitElement {
3
+ static styles: import("lit").CSSResult;
4
+ height: string;
5
+ width: string;
6
+ useRoundedBorders: boolean;
7
+ headerText: string;
8
+ onCloseClick?: (e: MouseEvent) => void;
9
+ isMobileSized: boolean;
10
+ useGradientDesign: boolean;
11
+ firstUpdated(): Promise<void>;
12
+ render(): TemplateResult;
13
+ }
14
+ export declare const installDetailsWindow: () => void;
@@ -0,0 +1,46 @@
1
+ import { LitElement, TemplateResult } from "lit";
2
+ import { Ref } from "lit/directives/ref.js";
3
+ import "../me-select.ts";
4
+ import { MESelect } from "../me-select";
5
+ export declare class EmailUsWindow extends LitElement {
6
+ static styles: import("lit").CSSResult[];
7
+ leadSources: string[];
8
+ onCloseClicked?: (e: MouseEvent) => void;
9
+ chatId: string;
10
+ buildingId: number;
11
+ buildingSlug: string;
12
+ orgSlug: string;
13
+ buildingName: string;
14
+ orgLegalName: string;
15
+ private leadSourceClient;
16
+ featureFlagShowDropdown: string;
17
+ phoneNumberInputRef: Ref<HTMLInputElement>;
18
+ privatePolicyUrl: string;
19
+ termsOfServiceUrl: string;
20
+ firstName: string;
21
+ lastName: string;
22
+ email: string;
23
+ phoneNumber: string;
24
+ message: string;
25
+ selectedLeadSource: MESelect;
26
+ currentLeadSource: string;
27
+ hasNameError: boolean;
28
+ hasEmailError: boolean;
29
+ hasPhoneNumberError: boolean;
30
+ hasMessageError: boolean;
31
+ hasSubmittedForm: boolean;
32
+ windowHeight: number;
33
+ hasSubmissionError: boolean;
34
+ isSubmitting: boolean;
35
+ onChangeFirstName: (e: Event) => void;
36
+ onChangeLastName: (e: Event) => void;
37
+ onChangeEmail: (e: Event) => void;
38
+ onChangePhoneNumber: (e: Event) => void;
39
+ onChangeMessage: (e: Event) => void;
40
+ enforceFormat: (e: KeyboardEvent) => void;
41
+ validateFormFields: () => void;
42
+ onClick: () => Promise<void>;
43
+ getNumErrors: () => number;
44
+ render: () => TemplateResult;
45
+ }
46
+ export declare const installEmailUsWindow: () => void;
@@ -0,0 +1,17 @@
1
+ /**
2
+ * For now, only handles the US phone number case.....
3
+ * Formats into phone number as you type
4
+ */
5
+ export declare const formatToPhoneInput: (phoneNumber: string) => string;
6
+ /**
7
+ * Formats a phone number into a human-readable format.
8
+ */
9
+ export declare const formatPhoneNumber: (phoneNumberString: string) => string;
10
+ export declare const isNumericInput: (event: KeyboardEvent) => boolean;
11
+ export declare const isPrintableCharacter: (event: KeyboardEvent) => boolean;
12
+ /** Returns true if any key is pressed whose only function when typing text would be as part of a keyboard shortcut.
13
+ * For example, `Shift` or `f` would not suffice, because these are used for typing text.
14
+ * But `Command` or `Control` would.
15
+ */
16
+ export declare const shortcutKeyIsPressed: (event: KeyboardEvent) => boolean;
17
+ export declare const isModifierKey: (event: KeyboardEvent) => boolean;
@@ -0,0 +1,8 @@
1
+ import { LitElement, TemplateResult } from "lit";
2
+ export declare class MinimizeExpandButton extends LitElement {
3
+ static styles: import("lit").CSSResult[];
4
+ onClick: () => void;
5
+ primaryColor: string;
6
+ toExpand: boolean;
7
+ render(): TemplateResult;
8
+ }
@@ -0,0 +1,28 @@
1
+ import { LitElement, TemplateResult } from "lit";
2
+ import { BuildingWebchatView } from "../fetchBuildingWebchatView";
3
+ export declare class ChatAdditionalActions extends LitElement {
4
+ static styles: import("lit").CSSResult;
5
+ id: string;
6
+ showChatAdditionalActions: boolean;
7
+ buildingWebchatView: BuildingWebchatView | null;
8
+ primaryColor: string | null;
9
+ backgroundColor: string | null;
10
+ enabledChatWidgets: {
11
+ callDesktop: boolean;
12
+ chatDesktop: boolean;
13
+ emailDesktop: boolean;
14
+ textDesktop: boolean;
15
+ sstDesktop: boolean;
16
+ };
17
+ onClickMinimize: () => void;
18
+ onClickEmailOption: (e: MouseEvent) => void;
19
+ onClickPhoneOption: (e: MouseEvent) => void;
20
+ onClickSSTOption: (e: MouseEvent) => void;
21
+ onClose: (e: MouseEvent) => void;
22
+ render(): TemplateResult;
23
+ }
24
+ declare global {
25
+ interface HTMLElementTagNameMap {
26
+ "chat-additional-actions": ChatAdditionalActions;
27
+ }
28
+ }
@@ -0,0 +1,47 @@
1
+ import { LitElement, TemplateResult } from "lit";
2
+ import { Ref } from "lit/directives/ref.js";
3
+ import { Launcher } from "./launcher/Launcher";
4
+ import "./Scheduler/tour-scheduler";
5
+ import "./MEChat.css";
6
+ import "./actions/minimize-expand-button";
7
+ import "./launcher/mobile-launcher";
8
+ import "./pubnub-chat";
9
+ import "./simple-launcher/simple-launcher";
10
+ export declare class HealthChat extends LitElement {
11
+ static styles: import("lit").CSSResult;
12
+ private healthcareId;
13
+ private right;
14
+ private bottom;
15
+ private top;
16
+ private left;
17
+ private launcher;
18
+ private currentLeadSource;
19
+ private displayPubnubChat;
20
+ private myPubnub;
21
+ private requiresConsent;
22
+ private privacyPolicyUrl;
23
+ private isLoading;
24
+ launcherRef: Ref<Launcher>;
25
+ firstUpdated: () => Promise<void>;
26
+ private initializeChatVariables;
27
+ restartConversation(): Promise<void>;
28
+ /** Show the chat button on the screen if it was previously hidden. */
29
+ show(): void;
30
+ /** Hide the chat button from the screen (but don't remove from the DOM). */
31
+ hide(): void;
32
+ disconnectedCallback(): void;
33
+ private attachOnClickToLauncher;
34
+ render(): TemplateResult;
35
+ }
36
+ declare global {
37
+ interface HTMLElementTagNameMap {
38
+ "health-chat": HealthChat;
39
+ }
40
+ interface Window {
41
+ RCTPCampaign?: {
42
+ CampaignDetails: {
43
+ Source: string;
44
+ };
45
+ };
46
+ }
47
+ }
@@ -0,0 +1 @@
1
+ export declare const healthChatStyles: import("lit").CSSResult;
@@ -0,0 +1,2 @@
1
+ import { SVGTemplateResult } from "lit";
2
+ export declare const ApplyOutlineIcon: (color?: string) => SVGTemplateResult;
@@ -0,0 +1,2 @@
1
+ import { SVGTemplateResult } from "lit";
2
+ export declare const BookTourOutlineIcon: (color?: string) => SVGTemplateResult;
@@ -0,0 +1,2 @@
1
+ import { SVGTemplateResult } from "lit";
2
+ export declare const CalculatorOutlineIcon: (color?: string, size?: number, shiftX?: number) => SVGTemplateResult;
@@ -0,0 +1,2 @@
1
+ import { SVGTemplateResult } from "lit";
2
+ export declare const ChatOutlineIcon: (color?: string) => SVGTemplateResult;
@@ -0,0 +1,2 @@
1
+ import { SVGTemplateResult } from "lit";
2
+ export declare const ChevronLeftIcon: (color?: string) => SVGTemplateResult;
@@ -0,0 +1,2 @@
1
+ import { SVGTemplateResult } from "lit";
2
+ export declare const ChevronRightIcon: (color?: string) => SVGTemplateResult;
@@ -0,0 +1,2 @@
1
+ import { SVGTemplateResult } from "lit";
2
+ export declare const ContactResidentIcon: (color?: string) => SVGTemplateResult;
@@ -0,0 +1,7 @@
1
+ import { SVGTemplateResult } from "lit";
2
+ declare type DollarOutlineIconProps = {
3
+ color?: string;
4
+ size?: number;
5
+ };
6
+ declare const DollarOutlineIcon: ({ color, size, }?: DollarOutlineIconProps) => SVGTemplateResult;
7
+ export default DollarOutlineIcon;
@@ -0,0 +1,2 @@
1
+ import { SVGTemplateResult } from "lit";
2
+ export declare const EmailOutlineIcon: (color?: string) => SVGTemplateResult;
@@ -0,0 +1,2 @@
1
+ import { SVGTemplateResult } from "lit";
2
+ export declare const HeyThereEmoji: () => SVGTemplateResult;
@@ -0,0 +1,2 @@
1
+ import { SVGTemplateResult } from "lit";
2
+ export declare const PhoneOutlineIcon: (color?: string) => SVGTemplateResult;
@@ -0,0 +1,3 @@
1
+ import { SVGTemplateResult } from "lit";
2
+ export declare const SendMessageLargeIcon: (color?: string) => SVGTemplateResult;
3
+ export declare const SendMessageMediumIcon: (color?: string) => SVGTemplateResult;
@@ -0,0 +1,2 @@
1
+ import { SVGTemplateResult } from "lit";
2
+ export declare const TourSelfGuidedIcon: (color?: string) => SVGTemplateResult;
@@ -0,0 +1,2 @@
1
+ import { SVGTemplateResult } from "lit";
2
+ export declare const TourVirtuallyIcon: (color?: string) => SVGTemplateResult;
@@ -0,0 +1,2 @@
1
+ import { SVGTemplateResult } from "lit";
2
+ export declare const TourWithAgentIcon: (color?: string) => SVGTemplateResult;
@@ -0,0 +1,2 @@
1
+ import { SVGTemplateResult } from "lit";
2
+ export declare const XOutlineIcon: (color?: string) => SVGTemplateResult;
@@ -0,0 +1,2 @@
1
+ export { Launcher } from "./launcher/Launcher";
2
+ import "./me-chat";