posthog-js 1.347.2 → 1.349.0

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 (78) hide show
  1. package/dist/array.full.es5.js +1 -1
  2. package/dist/array.full.js +1 -1
  3. package/dist/array.full.no-external.js +1 -1
  4. package/dist/array.js +1 -1
  5. package/dist/array.no-external.js +1 -1
  6. package/dist/conversations.js +1 -1
  7. package/dist/conversations.js.map +1 -1
  8. package/dist/customizations.full.js +1 -1
  9. package/dist/lazy-recorder.js +1 -1
  10. package/dist/main.js +1 -1
  11. package/dist/main.js.map +1 -1
  12. package/dist/module.d.ts +56 -2
  13. package/dist/module.full.d.ts +56 -2
  14. package/dist/module.full.js +1 -1
  15. package/dist/module.full.js.map +1 -1
  16. package/dist/module.full.no-external.d.ts +56 -2
  17. package/dist/module.full.no-external.js +1 -1
  18. package/dist/module.full.no-external.js.map +1 -1
  19. package/dist/module.js +1 -1
  20. package/dist/module.js.map +1 -1
  21. package/dist/module.no-external.d.ts +56 -2
  22. package/dist/module.no-external.js +1 -1
  23. package/dist/module.no-external.js.map +1 -1
  24. package/dist/posthog-recorder.js +1 -1
  25. package/dist/product-tours-preview.d.ts +14 -0
  26. package/dist/product-tours-preview.js +1 -1
  27. package/dist/product-tours-preview.js.map +1 -1
  28. package/dist/product-tours.js +1 -1
  29. package/dist/product-tours.js.map +1 -1
  30. package/dist/src/extensions/conversations/external/components/ConversationsWidget.d.ts +43 -2
  31. package/dist/src/extensions/conversations/external/components/TicketListItem.d.ts +13 -0
  32. package/dist/src/extensions/conversations/external/components/TicketListView.d.ts +15 -0
  33. package/dist/src/extensions/conversations/external/components/styles.d.ts +184 -0
  34. package/dist/src/extensions/conversations/external/components/utils.d.ts +8 -0
  35. package/dist/src/extensions/conversations/external/index.d.ts +39 -1
  36. package/dist/src/extensions/product-tours/product-tours-utils.d.ts +1 -0
  37. package/dist/src/extensions/product-tours/product-tours.d.ts +3 -0
  38. package/dist/src/posthog-product-tours-types.d.ts +54 -0
  39. package/dist/surveys-preview.d.ts +14 -0
  40. package/lib/package.json +1 -1
  41. package/lib/src/extensions/conversations/external/components/ConversationsWidget.d.ts +43 -2
  42. package/lib/src/extensions/conversations/external/components/ConversationsWidget.js +96 -28
  43. package/lib/src/extensions/conversations/external/components/ConversationsWidget.js.map +1 -1
  44. package/lib/src/extensions/conversations/external/components/TicketListItem.d.ts +13 -0
  45. package/lib/src/extensions/conversations/external/components/TicketListItem.js +47 -0
  46. package/lib/src/extensions/conversations/external/components/TicketListItem.js.map +1 -0
  47. package/lib/src/extensions/conversations/external/components/TicketListView.d.ts +15 -0
  48. package/lib/src/extensions/conversations/external/components/TicketListView.js +75 -0
  49. package/lib/src/extensions/conversations/external/components/TicketListView.js.map +1 -0
  50. package/lib/src/extensions/conversations/external/components/styles.d.ts +184 -0
  51. package/lib/src/extensions/conversations/external/components/styles.js +189 -0
  52. package/lib/src/extensions/conversations/external/components/styles.js.map +1 -1
  53. package/lib/src/extensions/conversations/external/components/utils.d.ts +8 -0
  54. package/lib/src/extensions/conversations/external/components/utils.js +49 -0
  55. package/lib/src/extensions/conversations/external/components/utils.js.map +1 -0
  56. package/lib/src/extensions/conversations/external/index.d.ts +39 -1
  57. package/lib/src/extensions/conversations/external/index.js +253 -31
  58. package/lib/src/extensions/conversations/external/index.js.map +1 -1
  59. package/lib/src/extensions/product-tours/components/ProductTourSurveyStepInner.js +1 -1
  60. package/lib/src/extensions/product-tours/components/ProductTourSurveyStepInner.js.map +1 -1
  61. package/lib/src/extensions/product-tours/product-tours-utils.d.ts +1 -0
  62. package/lib/src/extensions/product-tours/product-tours-utils.js +34 -0
  63. package/lib/src/extensions/product-tours/product-tours-utils.js.map +1 -1
  64. package/lib/src/extensions/product-tours/product-tours.d.ts +3 -0
  65. package/lib/src/extensions/product-tours/product-tours.js +104 -75
  66. package/lib/src/extensions/product-tours/product-tours.js.map +1 -1
  67. package/lib/src/posthog-product-tours-types.d.ts +54 -0
  68. package/lib/src/posthog-product-tours-types.js +43 -1
  69. package/lib/src/posthog-product-tours-types.js.map +1 -1
  70. package/lib/src/utils/product-tour-event-receiver.js +2 -1
  71. package/lib/src/utils/product-tour-event-receiver.js.map +1 -1
  72. package/lib/tsconfig.tsbuildinfo +1 -1
  73. package/package.json +3 -3
  74. package/react/dist/esm/index.js +25 -1
  75. package/react/dist/esm/index.js.map +1 -1
  76. package/react/dist/types/index.d.ts +4 -2
  77. package/react/dist/umd/index.js +25 -0
  78. package/react/dist/umd/index.js.map +1 -1
package/dist/module.d.ts CHANGED
@@ -1901,6 +1901,8 @@ interface ProductTourSurveyQuestion {
1901
1901
  lowerBoundLabel?: string;
1902
1902
  /** Label for high end of rating scale (e.g., "Very likely") */
1903
1903
  upperBoundLabel?: string;
1904
+ submitButtonText?: string;
1905
+ backButtonText?: string;
1904
1906
  }
1905
1907
  interface ProductTourStep {
1906
1908
  id: string;
@@ -1928,6 +1930,18 @@ interface ProductTourStep {
1928
1930
  buttons?: ProductTourStepButtons;
1929
1931
  /** Banner configuration (only for banner steps) */
1930
1932
  bannerConfig?: ProductTourBannerConfig;
1933
+ /** translation data for this tour step */
1934
+ translations?: Record<string, ProductTourStepTranslation>;
1935
+ }
1936
+ /** all translatable content for a given tour step */
1937
+ interface ProductTourStepTranslation {
1938
+ content?: ProductTourStep['content'];
1939
+ contentHtml?: ProductTourStep['contentHtml'];
1940
+ buttons?: {
1941
+ primary?: Pick<ProductTourStepButton, 'text'>;
1942
+ secondary?: Pick<ProductTourStepButton, 'text'>;
1943
+ };
1944
+ survey?: Pick<ProductTourSurveyQuestion, 'questionText' | 'lowerBoundLabel' | 'upperBoundLabel' | 'submitButtonText' | 'backButtonText'>;
1931
1945
  }
1932
1946
  interface ProductTourConditions {
1933
1947
  url?: string;
@@ -1990,6 +2004,46 @@ interface ShowTourOptions {
1990
2004
  reason?: ProductTourRenderReason;
1991
2005
  enableStrictValidation?: boolean;
1992
2006
  }
2007
+ declare enum ProductTourEventName {
2008
+ SHOWN = "product tour shown",
2009
+ DISMISSED = "product tour dismissed",
2010
+ COMPLETED = "product tour completed",
2011
+ STEP_SHOWN = "product tour step shown",
2012
+ STEP_COMPLETED = "product tour step completed",
2013
+ BUTTON_CLICKED = "product tour button clicked",
2014
+ STEP_SELECTOR_FAILED = "product tour step selector failed",
2015
+ BANNER_CONTAINER_SELECTOR_FAILED = "product tour banner container selector failed"
2016
+ }
2017
+ declare enum ProductTourEventProperties {
2018
+ TOUR_ID = "$product_tour_id",
2019
+ TOUR_NAME = "$product_tour_name",
2020
+ TOUR_ITERATION = "$product_tour_iteration",
2021
+ TOUR_RENDER_REASON = "$product_tour_render_reason",
2022
+ TOUR_STEP_ID = "$product_tour_step_id",
2023
+ TOUR_STEP_ORDER = "$product_tour_step_order",
2024
+ TOUR_STEP_TYPE = "$product_tour_step_type",
2025
+ TOUR_DISMISS_REASON = "$product_tour_dismiss_reason",
2026
+ TOUR_BUTTON_TEXT = "$product_tour_button_text",
2027
+ TOUR_BUTTON_ACTION = "$product_tour_button_action",
2028
+ TOUR_BUTTON_LINK = "$product_tour_button_link",
2029
+ TOUR_BUTTON_TOUR_ID = "$product_tour_button_tour_id",
2030
+ TOUR_STEPS_COUNT = "$product_tour_steps_count",
2031
+ TOUR_STEP_SELECTOR = "$product_tour_step_selector",
2032
+ TOUR_STEP_SELECTOR_FOUND = "$product_tour_step_selector_found",
2033
+ TOUR_STEP_ELEMENT_TAG = "$product_tour_step_element_tag",
2034
+ TOUR_STEP_ELEMENT_ID = "$product_tour_step_element_id",
2035
+ TOUR_STEP_ELEMENT_CLASSES = "$product_tour_step_element_classes",
2036
+ TOUR_STEP_ELEMENT_TEXT = "$product_tour_step_element_text",
2037
+ TOUR_ERROR = "$product_tour_error",
2038
+ TOUR_MATCHES_COUNT = "$product_tour_matches_count",
2039
+ TOUR_FAILURE_PHASE = "$product_tour_failure_phase",
2040
+ TOUR_WAITED_FOR_ELEMENT = "$product_tour_waited_for_element",
2041
+ TOUR_WAIT_DURATION_MS = "$product_tour_wait_duration_ms",
2042
+ TOUR_BANNER_SELECTOR = "$product_tour_banner_selector",
2043
+ TOUR_LINKED_SURVEY_ID = "$product_tour_linked_survey_id",
2044
+ USE_MANUAL_SELECTOR = "$use_manual_selector",
2045
+ INFERENCE_DATA_PRESENT = "$inference_data_present"
2046
+ }
1993
2047
 
1994
2048
  declare class PostHogProductTours {
1995
2049
  private _instance;
@@ -4264,5 +4318,5 @@ declare class PostHog implements PostHogInterface {
4264
4318
 
4265
4319
  declare const posthog: PostHog;
4266
4320
 
4267
- export { Compression, DEFAULT_PRODUCT_TOUR_APPEARANCE, DisplaySurveyType, PostHog, SurveyEventName, SurveyEventProperties, SurveyEventType, SurveyPosition, SurveyQuestionBranchingType, SurveyQuestionType, SurveySchedule, SurveyTabPosition, SurveyType, SurveyWidgetType, posthog as default, posthog, severityLevels };
4268
- export type { ActionStepStringMatching, ActionStepType, BasicSurveyQuestion, Breaker, ConversationsRemoteConfig, ConversationsTraits, ConversationsWidgetState, DisplaySurveyOptions, DisplaySurveyPopoverOptions, ErrorEventArgs, ErrorTrackingSuppressionRule, ErrorTrackingSuppressionRuleValue, EventHandler, FlagVariant, FlagsResponse, GetMessagesResponse, GetTicketsOptions, GetTicketsResponse, JSONContent, LinkSurveyQuestion, MarkAsReadResponse, Message, MessageAuthorType, MultipleSurveyQuestion, NetworkRecordOptions, OverrideConfig, PersistentStore, PostHogConfig, PostHogInterface, ProductTour, ProductTourAppearance, ProductTourBannerConfig, ProductTourButtonAction, ProductTourCallback, ProductTourConditions, ProductTourDismissReason, ProductTourDisplayFrequency, ProductTourRenderReason, ProductTourSelectorError, ProductTourStep, ProductTourStepButton, ProductTourStepButtons, ProductTourStepType, ProductTourSurveyQuestion, ProductTourSurveyQuestionType, PropertyFilters, PropertyMatchType, PropertyOperator, QueuedRequestWithOptions, RatingSurveyQuestion, RemoteConfig, RequestWithOptions, RetriableRequestWithOptions, SendMessagePayload, SendMessageResponse, SessionContext, SessionRecordingPersistedConfig, SessionRecordingRemoteConfig, SessionRecordingUrlTrigger, SessionStartReason, ShowTourOptions, SiteApp, SiteAppGlobals, SiteAppLoader, SnippetArrayItem, Survey, SurveyActionType, SurveyAppearance, SurveyCallback, SurveyConfig, SurveyElement, SurveyEventWithFilters, SurveyQuestion, SurveyQuestionDescriptionContentType, SurveyResponseValue, SurveyWithTypeAndAppearance, Ticket, TicketStatus, TipTapDoc, TipTapMark, TipTapNode, UserProvidedTraits, WidgetPosition };
4321
+ export { Compression, DEFAULT_PRODUCT_TOUR_APPEARANCE, DisplaySurveyType, PostHog, ProductTourEventName, ProductTourEventProperties, SurveyEventName, SurveyEventProperties, SurveyEventType, SurveyPosition, SurveyQuestionBranchingType, SurveyQuestionType, SurveySchedule, SurveyTabPosition, SurveyType, SurveyWidgetType, posthog as default, posthog, severityLevels };
4322
+ export type { ActionStepStringMatching, ActionStepType, BasicSurveyQuestion, Breaker, ConversationsRemoteConfig, ConversationsTraits, ConversationsWidgetState, DisplaySurveyOptions, DisplaySurveyPopoverOptions, ErrorEventArgs, ErrorTrackingSuppressionRule, ErrorTrackingSuppressionRuleValue, EventHandler, FlagVariant, FlagsResponse, GetMessagesResponse, GetTicketsOptions, GetTicketsResponse, JSONContent, LinkSurveyQuestion, MarkAsReadResponse, Message, MessageAuthorType, MultipleSurveyQuestion, NetworkRecordOptions, OverrideConfig, PersistentStore, PostHogConfig, PostHogInterface, ProductTour, ProductTourAppearance, ProductTourBannerConfig, ProductTourButtonAction, ProductTourCallback, ProductTourConditions, ProductTourDismissReason, ProductTourDisplayFrequency, ProductTourRenderReason, ProductTourSelectorError, ProductTourStep, ProductTourStepButton, ProductTourStepButtons, ProductTourStepTranslation, ProductTourStepType, ProductTourSurveyQuestion, ProductTourSurveyQuestionType, PropertyFilters, PropertyMatchType, PropertyOperator, QueuedRequestWithOptions, RatingSurveyQuestion, RemoteConfig, RequestWithOptions, RetriableRequestWithOptions, SendMessagePayload, SendMessageResponse, SessionContext, SessionRecordingPersistedConfig, SessionRecordingRemoteConfig, SessionRecordingUrlTrigger, SessionStartReason, ShowTourOptions, SiteApp, SiteAppGlobals, SiteAppLoader, SnippetArrayItem, Survey, SurveyActionType, SurveyAppearance, SurveyCallback, SurveyConfig, SurveyElement, SurveyEventWithFilters, SurveyQuestion, SurveyQuestionDescriptionContentType, SurveyResponseValue, SurveyWithTypeAndAppearance, Ticket, TicketStatus, TipTapDoc, TipTapMark, TipTapNode, UserProvidedTraits, WidgetPosition };
@@ -1901,6 +1901,8 @@ interface ProductTourSurveyQuestion {
1901
1901
  lowerBoundLabel?: string;
1902
1902
  /** Label for high end of rating scale (e.g., "Very likely") */
1903
1903
  upperBoundLabel?: string;
1904
+ submitButtonText?: string;
1905
+ backButtonText?: string;
1904
1906
  }
1905
1907
  interface ProductTourStep {
1906
1908
  id: string;
@@ -1928,6 +1930,18 @@ interface ProductTourStep {
1928
1930
  buttons?: ProductTourStepButtons;
1929
1931
  /** Banner configuration (only for banner steps) */
1930
1932
  bannerConfig?: ProductTourBannerConfig;
1933
+ /** translation data for this tour step */
1934
+ translations?: Record<string, ProductTourStepTranslation>;
1935
+ }
1936
+ /** all translatable content for a given tour step */
1937
+ interface ProductTourStepTranslation {
1938
+ content?: ProductTourStep['content'];
1939
+ contentHtml?: ProductTourStep['contentHtml'];
1940
+ buttons?: {
1941
+ primary?: Pick<ProductTourStepButton, 'text'>;
1942
+ secondary?: Pick<ProductTourStepButton, 'text'>;
1943
+ };
1944
+ survey?: Pick<ProductTourSurveyQuestion, 'questionText' | 'lowerBoundLabel' | 'upperBoundLabel' | 'submitButtonText' | 'backButtonText'>;
1931
1945
  }
1932
1946
  interface ProductTourConditions {
1933
1947
  url?: string;
@@ -1990,6 +2004,46 @@ interface ShowTourOptions {
1990
2004
  reason?: ProductTourRenderReason;
1991
2005
  enableStrictValidation?: boolean;
1992
2006
  }
2007
+ declare enum ProductTourEventName {
2008
+ SHOWN = "product tour shown",
2009
+ DISMISSED = "product tour dismissed",
2010
+ COMPLETED = "product tour completed",
2011
+ STEP_SHOWN = "product tour step shown",
2012
+ STEP_COMPLETED = "product tour step completed",
2013
+ BUTTON_CLICKED = "product tour button clicked",
2014
+ STEP_SELECTOR_FAILED = "product tour step selector failed",
2015
+ BANNER_CONTAINER_SELECTOR_FAILED = "product tour banner container selector failed"
2016
+ }
2017
+ declare enum ProductTourEventProperties {
2018
+ TOUR_ID = "$product_tour_id",
2019
+ TOUR_NAME = "$product_tour_name",
2020
+ TOUR_ITERATION = "$product_tour_iteration",
2021
+ TOUR_RENDER_REASON = "$product_tour_render_reason",
2022
+ TOUR_STEP_ID = "$product_tour_step_id",
2023
+ TOUR_STEP_ORDER = "$product_tour_step_order",
2024
+ TOUR_STEP_TYPE = "$product_tour_step_type",
2025
+ TOUR_DISMISS_REASON = "$product_tour_dismiss_reason",
2026
+ TOUR_BUTTON_TEXT = "$product_tour_button_text",
2027
+ TOUR_BUTTON_ACTION = "$product_tour_button_action",
2028
+ TOUR_BUTTON_LINK = "$product_tour_button_link",
2029
+ TOUR_BUTTON_TOUR_ID = "$product_tour_button_tour_id",
2030
+ TOUR_STEPS_COUNT = "$product_tour_steps_count",
2031
+ TOUR_STEP_SELECTOR = "$product_tour_step_selector",
2032
+ TOUR_STEP_SELECTOR_FOUND = "$product_tour_step_selector_found",
2033
+ TOUR_STEP_ELEMENT_TAG = "$product_tour_step_element_tag",
2034
+ TOUR_STEP_ELEMENT_ID = "$product_tour_step_element_id",
2035
+ TOUR_STEP_ELEMENT_CLASSES = "$product_tour_step_element_classes",
2036
+ TOUR_STEP_ELEMENT_TEXT = "$product_tour_step_element_text",
2037
+ TOUR_ERROR = "$product_tour_error",
2038
+ TOUR_MATCHES_COUNT = "$product_tour_matches_count",
2039
+ TOUR_FAILURE_PHASE = "$product_tour_failure_phase",
2040
+ TOUR_WAITED_FOR_ELEMENT = "$product_tour_waited_for_element",
2041
+ TOUR_WAIT_DURATION_MS = "$product_tour_wait_duration_ms",
2042
+ TOUR_BANNER_SELECTOR = "$product_tour_banner_selector",
2043
+ TOUR_LINKED_SURVEY_ID = "$product_tour_linked_survey_id",
2044
+ USE_MANUAL_SELECTOR = "$use_manual_selector",
2045
+ INFERENCE_DATA_PRESENT = "$inference_data_present"
2046
+ }
1993
2047
 
1994
2048
  declare class PostHogProductTours {
1995
2049
  private _instance;
@@ -4264,5 +4318,5 @@ declare class PostHog implements PostHogInterface {
4264
4318
 
4265
4319
  declare const posthog: PostHog;
4266
4320
 
4267
- export { Compression, DEFAULT_PRODUCT_TOUR_APPEARANCE, DisplaySurveyType, PostHog, SurveyEventName, SurveyEventProperties, SurveyEventType, SurveyPosition, SurveyQuestionBranchingType, SurveyQuestionType, SurveySchedule, SurveyTabPosition, SurveyType, SurveyWidgetType, posthog as default, posthog, severityLevels };
4268
- export type { ActionStepStringMatching, ActionStepType, BasicSurveyQuestion, Breaker, ConversationsRemoteConfig, ConversationsTraits, ConversationsWidgetState, DisplaySurveyOptions, DisplaySurveyPopoverOptions, ErrorEventArgs, ErrorTrackingSuppressionRule, ErrorTrackingSuppressionRuleValue, EventHandler, FlagVariant, FlagsResponse, GetMessagesResponse, GetTicketsOptions, GetTicketsResponse, JSONContent, LinkSurveyQuestion, MarkAsReadResponse, Message, MessageAuthorType, MultipleSurveyQuestion, NetworkRecordOptions, OverrideConfig, PersistentStore, PostHogConfig, PostHogInterface, ProductTour, ProductTourAppearance, ProductTourBannerConfig, ProductTourButtonAction, ProductTourCallback, ProductTourConditions, ProductTourDismissReason, ProductTourDisplayFrequency, ProductTourRenderReason, ProductTourSelectorError, ProductTourStep, ProductTourStepButton, ProductTourStepButtons, ProductTourStepType, ProductTourSurveyQuestion, ProductTourSurveyQuestionType, PropertyFilters, PropertyMatchType, PropertyOperator, QueuedRequestWithOptions, RatingSurveyQuestion, RemoteConfig, RequestWithOptions, RetriableRequestWithOptions, SendMessagePayload, SendMessageResponse, SessionContext, SessionRecordingPersistedConfig, SessionRecordingRemoteConfig, SessionRecordingUrlTrigger, SessionStartReason, ShowTourOptions, SiteApp, SiteAppGlobals, SiteAppLoader, SnippetArrayItem, Survey, SurveyActionType, SurveyAppearance, SurveyCallback, SurveyConfig, SurveyElement, SurveyEventWithFilters, SurveyQuestion, SurveyQuestionDescriptionContentType, SurveyResponseValue, SurveyWithTypeAndAppearance, Ticket, TicketStatus, TipTapDoc, TipTapMark, TipTapNode, UserProvidedTraits, WidgetPosition };
4321
+ export { Compression, DEFAULT_PRODUCT_TOUR_APPEARANCE, DisplaySurveyType, PostHog, ProductTourEventName, ProductTourEventProperties, SurveyEventName, SurveyEventProperties, SurveyEventType, SurveyPosition, SurveyQuestionBranchingType, SurveyQuestionType, SurveySchedule, SurveyTabPosition, SurveyType, SurveyWidgetType, posthog as default, posthog, severityLevels };
4322
+ export type { ActionStepStringMatching, ActionStepType, BasicSurveyQuestion, Breaker, ConversationsRemoteConfig, ConversationsTraits, ConversationsWidgetState, DisplaySurveyOptions, DisplaySurveyPopoverOptions, ErrorEventArgs, ErrorTrackingSuppressionRule, ErrorTrackingSuppressionRuleValue, EventHandler, FlagVariant, FlagsResponse, GetMessagesResponse, GetTicketsOptions, GetTicketsResponse, JSONContent, LinkSurveyQuestion, MarkAsReadResponse, Message, MessageAuthorType, MultipleSurveyQuestion, NetworkRecordOptions, OverrideConfig, PersistentStore, PostHogConfig, PostHogInterface, ProductTour, ProductTourAppearance, ProductTourBannerConfig, ProductTourButtonAction, ProductTourCallback, ProductTourConditions, ProductTourDismissReason, ProductTourDisplayFrequency, ProductTourRenderReason, ProductTourSelectorError, ProductTourStep, ProductTourStepButton, ProductTourStepButtons, ProductTourStepTranslation, ProductTourStepType, ProductTourSurveyQuestion, ProductTourSurveyQuestionType, PropertyFilters, PropertyMatchType, PropertyOperator, QueuedRequestWithOptions, RatingSurveyQuestion, RemoteConfig, RequestWithOptions, RetriableRequestWithOptions, SendMessagePayload, SendMessageResponse, SessionContext, SessionRecordingPersistedConfig, SessionRecordingRemoteConfig, SessionRecordingUrlTrigger, SessionStartReason, ShowTourOptions, SiteApp, SiteAppGlobals, SiteAppLoader, SnippetArrayItem, Survey, SurveyActionType, SurveyAppearance, SurveyCallback, SurveyConfig, SurveyElement, SurveyEventWithFilters, SurveyQuestion, SurveyQuestionDescriptionContentType, SurveyResponseValue, SurveyWithTypeAndAppearance, Ticket, TicketStatus, TipTapDoc, TipTapMark, TipTapNode, UserProvidedTraits, WidgetPosition };