@nuralogix.ai/web-measurement-embedded-app 0.1.0-alpha.8 → 0.1.0-alpha.9

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.
package/README.md CHANGED
@@ -123,8 +123,8 @@ results: ((results: Results) => void) | null;
123
123
  error: ((error: MeasurementEmbeddedAppError) => void) | null;
124
124
 
125
125
  /**
126
- * when webhook event is received
127
- * @param {webhook} WebhookEvent - webhook event
126
+ * when an AppEvent is received
127
+ * @param {appEvent} AppEvent - app event
128
128
  */
129
- webhook: ((webhook: WebhookEvent) => void) | null;
129
+ event: ((appEvent: AppEvent) => void) | null;
130
130
  ```