Comparing version 3.3.0 to 3.4.0
@@ -50,2 +50,6 @@ declare type TourEventKind = "tour_started" | "tour_completed" | "tour_advanced" | "tour_cancelled" | "tour_interrupted" | "error"; | ||
}; | ||
export declare type Options = { | ||
show?: boolean; | ||
showBeacon?: boolean; | ||
}; | ||
export declare type HelpHero = { | ||
@@ -65,7 +69,5 @@ startTour: (id: string, options?: StartOptions) => void; | ||
startChecklist: (id: string) => void; | ||
setOptions: (options: { | ||
showBeacon?: boolean; | ||
}) => void; | ||
setOptions: (options: Options) => void; | ||
}; | ||
declare function init(appId: string): HelpHero; | ||
export default init; |
@@ -64,2 +64,6 @@ /** | ||
}; | ||
export type Options = { | ||
show?: boolean, | ||
showBeacon?: boolean | ||
}; | ||
export type HelpHero = { | ||
@@ -91,7 +95,5 @@ startTour: (id: string, options?: StartOptions) => void, | ||
startChecklist: (id: string) => void, | ||
setOptions: (options: { | ||
showBeacon?: boolean | ||
}) => void | ||
setOptions: (options: Options) => void | ||
}; | ||
declare function init(appId: string): HelpHero; | ||
declare export default typeof init; |
{ | ||
"name": "helphero", | ||
"version": "3.3.0", | ||
"version": "3.4.0", | ||
"description": "Offical HelpHero SDK for browsers", | ||
@@ -5,0 +5,0 @@ "repository": "git://github.com/HelpHero/helphero-javascript.git", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
9728
225