@meetelise/chat 1.30.3 → 1.30.5

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.
@@ -15,6 +15,7 @@ export declare class TourScheduler extends LitElement {
15
15
  selfGuidedTourEnabled: boolean;
16
16
  escortedToursLink: string;
17
17
  virtualToursLink: string;
18
+ virtualToursTypeOffered: string;
18
19
  orgSlug: string;
19
20
  hasDynamicSchedulingEnabled: boolean;
20
21
  private leadSourceClient;
@@ -30,6 +30,7 @@ export declare class Launcher extends LitElement {
30
30
  currentLeadSource: string;
31
31
  escortedToursLink: string;
32
32
  virtualToursLink: string;
33
+ virtualToursTypeOffered: string;
33
34
  hasChatEnabledDesktop: boolean;
34
35
  hasChatEnabledMobile: boolean;
35
36
  hasEmailEnabledDesktop: boolean;
@@ -1,8 +1,9 @@
1
1
  import { TemplateResult } from "lit";
2
- declare const disclaimer: ({ phoneNumberInput, emailInput, orgLegalName, }: {
2
+ declare const disclaimer: ({ phoneNumberInput, emailInput, orgLegalName, orgSlug, }: {
3
3
  buildingName: string;
4
4
  phoneNumberInput?: string | undefined;
5
5
  emailInput?: string | undefined;
6
6
  orgLegalName: string;
7
+ orgSlug: string;
7
8
  }) => TemplateResult;
8
9
  export default disclaimer;
@@ -23,6 +23,7 @@ declare enum TourAccessType {
23
23
  SCHEDULED_BY_ME_MANAGED_BY_CLIENT = "scheduled_by_ME_managed_by_client",
24
24
  SCHEDULED_BY_ME_MANAGED_BY_CONCIERGE = "scheduled_by_ME_managed_by_concierge"
25
25
  }
26
+ export declare const shouldOpenTourLink: (tourType: string, tourTypeOffered: string) => boolean;
26
27
  export interface LayoutOption {
27
28
  value: number;
28
29
  label: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meetelise/chat",
3
- "version": "1.30.3",
3
+ "version": "1.30.5",
4
4
  "description": "",
5
5
  "keywords": [],
6
6
  "homepage": "https://github.com/MeetElise/chat-ui#readme",