We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 32a69cd + 09461be commit 719a8beCopy full SHA for 719a8be
.changeset/slow-ants-switch.md
@@ -0,0 +1,5 @@
1
+---
2
+'@guardian/support-dotcom-components': patch
3
4
+
5
+Add reminder types back in
src/shared/types/reminders.ts
@@ -0,0 +1,18 @@
+export type ReminderPlatform = 'WEB';
+export type ReminderComponent = 'EPIC' | 'BANNER';
+export type ReminderStage = 'PRE' | 'POST';
6
7
+interface BaseSignupRequest {
8
+ email: string;
9
+ reminderPlatform: ReminderPlatform;
10
+ reminderComponent: ReminderComponent;
11
+ reminderStage: ReminderStage;
12
+ country?: string;
13
+ reminderOption?: string;
14
+}
15
16
+export interface OneOffSignupRequest extends BaseSignupRequest {
17
+ reminderPeriod: string;
18
0 commit comments