@meetelise/chat 1.48.2 → 1.48.4

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.
@@ -12,8 +12,12 @@ declare class LeadSourceClient {
12
12
  chatId: string | null;
13
13
  private apiHost;
14
14
  leadSource: string | null;
15
+ leadSourceParams: {
16
+ [key: string]: string;
17
+ } | null;
15
18
  private localStorageTTLDays;
16
19
  buildingId: number | null;
20
+ orgId: number | null;
17
21
  orgSlug: string | null;
18
22
  buildingSlug: string | null;
19
23
  queryParameters: {
@@ -9,10 +9,15 @@ import { LabeledOption } from "../../fetchBuildingInfo";
9
9
  import { LayoutOption } from "../../fetchBuildingWebchatView";
10
10
  export declare class TourScheduler extends LitElement {
11
11
  connectedCallback(): void;
12
+ private openSelfGuidedTour;
12
13
  tourTypeOptions: LabeledOption[];
13
14
  layoutOptions: LayoutOption[];
14
15
  chatId: string;
15
16
  buildingId: number;
17
+ orgId: number;
18
+ leadSourceParams: {
19
+ [key: string]: string;
20
+ } | null;
16
21
  buildingSlug: string;
17
22
  sgtUrl: string;
18
23
  selfGuidedToursTypeOffered: string;
@@ -20,6 +20,10 @@ export declare class Launcher extends LitElement {
20
20
  orgLegalName: string;
21
21
  chatCallUsHeader: string;
22
22
  buildingId: number;
23
+ orgId: number;
24
+ leadSourceParams: {
25
+ [key: string]: string;
26
+ } | null;
23
27
  buildingSlug: string;
24
28
  orgSlug: string;
25
29
  sgtUrl: string;
@@ -1,3 +1,6 @@
1
1
  export declare function getUrlQueryParameters(): {
2
2
  [queryKey: string]: string;
3
3
  } | null;
4
+ export declare function appendParamsToUrl(baseUrl: string, params: {
5
+ [key: string]: string;
6
+ } | null): string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meetelise/chat",
3
- "version": "1.48.2",
3
+ "version": "1.48.4",
4
4
  "description": "",
5
5
  "keywords": [],
6
6
  "homepage": "https://github.com/MeetElise/chat-ui#readme",