@clickview/player 0.0.18-rc.0 → 0.0.18-rc.2

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.
@@ -354,10 +354,16 @@ export declare enum InteractiveSessionDescriptor {
354
354
  ContinueSession = "continue_session",
355
355
  NewSession = "new_session"
356
356
  }
357
+ export declare enum ShareDescriptors {
358
+ DirectShare = "direct_share",
359
+ CopyLink = "copy_link",
360
+ CopyEmbedHtml = "copy_embed_html",
361
+ PluginEmbed = "plugin_embed"
362
+ }
357
363
  /**
358
364
  * Action descriptors give further context to UserActions
359
365
  */
360
- export declare type ActionDescriptor = OperationDescriptor | SortDescriptor | FilterDescriptor | DirectSearchDescriptor | PageDescriptor | PlaybackDescriptor | PlayerDescriptor | CustomerSettingDescriptor | SuggestionDescriptor | InteractionTypeDescriptor | AssocDescriptor | ClickDescriptor | ToggleDescriptor | VideoActionDescriptor | EmailDescriptor | InteractiveSessionDescriptor | PublishDescriptor | VerifyEmailDescriptor;
366
+ export declare type ActionDescriptor = OperationDescriptor | SortDescriptor | FilterDescriptor | DirectSearchDescriptor | PageDescriptor | PlaybackDescriptor | PlayerDescriptor | CustomerSettingDescriptor | SuggestionDescriptor | InteractionTypeDescriptor | AssocDescriptor | ClickDescriptor | ToggleDescriptor | VideoActionDescriptor | EmailDescriptor | InteractiveSessionDescriptor | PublishDescriptor | VerifyEmailDescriptor | ShareDescriptors;
361
367
  /**
362
368
  * Placeholder values to be used in circumstances where we need
363
369
  * to simply signify that a change has occurred. Particularly if it is
@@ -0,0 +1,4 @@
1
+ import { HashObject } from 'libs/analytics/interfaces';
2
+ export declare const ShareFormatHelper: {
3
+ getShareData(data: HashObject): HashObject;
4
+ };
@@ -2,5 +2,6 @@ export declare enum ProductId {
2
2
  Analytics = "analytics",
3
3
  LibraryEditor = "manage",
4
4
  Online = "online",
5
+ OnlineAnalytics = "online_analytics",
5
6
  Primary = "lite"
6
7
  }