Skip to content
This repository has been archived by the owner on Sep 1, 2022. It is now read-only.

feat(ophan): add additional types to Ophan #375

Merged
merged 1 commit into from
Jul 28, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions src/ophan/@types/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ export type OphanAction =
| 'CONSENT_REJECT_ALL'
| 'STICK'
| 'CLOSE'
| 'RETURN';
| 'RETURN'
| 'SIGN_IN'
| 'CREATE_ACCOUNT';

export type OphanComponentType =
| 'READERS_QUESTIONS_ATOM'
Expand All @@ -66,7 +68,8 @@ export type OphanComponentType =
| 'RETENTION_EPIC'
| 'CONSENT'
| 'LIVE_BLOG_PINNED_POST'
| 'STICKY_VIDEO';
| 'STICKY_VIDEO'
| 'IDENTITY_AUTHENTICATION';

export type OphanComponent = {
componentType: OphanComponentType;
Expand Down