@clickview/player 0.0.18-rc.1 → 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
|