@khanacademy/perseus-core
Advanced tools
Comparing version 0.0.0-PR595-20230630180457 to 0.0.0-PR595-20230630184321
# @khanacademy/perseus-core | ||
## 0.0.0-PR595-20230630180457 | ||
## 0.0.0-PR595-20230630184321 | ||
### Patch Changes | ||
- f2919102: on keypad opened CEDAR event integration | ||
- f2919102: Add keypad opened and closed analytics events | ||
@@ -9,0 +9,0 @@ ## 0.0.1 |
export type PerseusAnalyticsEvent = { | ||
type: "perseus:expression-evaluated"; | ||
payload: { | ||
virtualKeypadVersion: string; | ||
virtualKeypadVersion?: string; | ||
result: "correct" | "incorrect" | "invalid"; | ||
@@ -6,0 +6,0 @@ }; |
@@ -6,3 +6,3 @@ { | ||
"license": "MIT", | ||
"version": "0.0.0-PR595-20230630180457", | ||
"version": "0.0.0-PR595-20230630184321", | ||
"publishConfig": { | ||
@@ -9,0 +9,0 @@ "access": "public" |
@@ -7,3 +7,5 @@ // A type union of all the events that any package in the Perseus ecosystem can | ||
payload: { | ||
virtualKeypadVersion: string; | ||
// Keypad version can be supplied by Perseus sometimes, but not always. | ||
// The host application will need to fill this in if it's not present. | ||
virtualKeypadVersion?: string; | ||
result: "correct" | "incorrect" | "invalid"; | ||
@@ -10,0 +12,0 @@ }; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
50513
91