@livechat/customer-sdk 4.0.2 → 5.0.1

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.
@@ -14,6 +14,7 @@ export type InitialStateData = {
14
14
  page?: Page | null;
15
15
  region?: string | null;
16
16
  referrer?: string | null;
17
+ tabId?: string | null;
17
18
  uniqueGroups?: boolean;
18
19
  mobile?: boolean;
19
20
  };
@@ -35,6 +36,7 @@ export type State = {
35
36
  page: Page | null;
36
37
  region: string | null;
37
38
  referrer: string | null;
39
+ tabId: string | null;
38
40
  requests: Record<string, {
39
41
  id: string;
40
42
  promise: Promise<any>;
@@ -1,14 +0,0 @@
1
- import { CustomerAuth } from '@livechat/customer-auth';
2
- import { Store } from './types';
3
- import * as clientEntities from './types/clientEntities';
4
- declare const sendTicketForm: (store: Store, auth: CustomerAuth, { filledForm, groupId, timeZone, }: {
5
- filledForm: Extract<clientEntities.RequestBodyEvent, {
6
- type: 'filled_form';
7
- }>;
8
- groupId?: number | undefined;
9
- timeZone?: string | undefined;
10
- }) => Promise<{
11
- id: string;
12
- }>;
13
- export default sendTicketForm;
14
- //# sourceMappingURL=sendTicketForm.d.ts.map