@customerio/cdp-analytics-browser 0.3.17 → 0.3.18

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.
@@ -10,7 +10,7 @@ import {
10
10
  gistToCIO,
11
11
  ContentType,
12
12
  } from './events'
13
- import Gist from 'customerio-gist-web'
13
+ import Gist, { type GistConfig } from 'customerio-gist-web'
14
14
  import type { InboxAPI, InboxMessage, GistInboxMessage } from './inbox_messages'
15
15
  import { createInboxAPI } from './inbox_messages'
16
16
 
@@ -21,8 +21,8 @@ export type InAppPluginSettings = {
21
21
  siteId: string | undefined
22
22
  events: EventListenerOrEventListenerObject | null | undefined
23
23
 
24
- _env: string | undefined
25
- _logging: boolean | undefined
24
+ _env: GistConfig['env'] | undefined
25
+ _logging: GistConfig['logging'] | undefined
26
26
 
27
27
  anonymousInApp: boolean | false
28
28
  }