File tree Expand file tree Collapse file tree 2 files changed +0
-39
lines changed Expand file tree Collapse file tree 2 files changed +0
-39
lines changed Original file line number Diff line number Diff line change @@ -319,32 +319,6 @@ export const RECURRENCE_WEEKLY_ORDINALS = [
319319 { label : 'Last' , value : - 1 } ,
320320] ;
321321
322- // ============================================================================
323- // RSVP Scope Options
324- // ============================================================================
325-
326- /**
327- * RSVP scope options for recurring meetings
328- * @description Pre-defined options for selecting which occurrences an RSVP applies to
329- */
330- export const RSVP_SCOPE_OPTIONS = [
331- {
332- value : 'single' as const ,
333- label : 'This occurrence only' ,
334- description : 'Apply this RSVP to only this specific meeting' ,
335- } ,
336- {
337- value : 'all' as const ,
338- label : 'All occurrences' ,
339- description : 'Apply this RSVP to all occurrences in the series' ,
340- } ,
341- {
342- value : 'following' as const ,
343- label : 'This and following occurrences' ,
344- description : 'Apply this RSVP to this meeting and all future occurrences' ,
345- } ,
346- ] ;
347-
348322// ============================================================================
349323// Template Re-exports
350324// ============================================================================
Original file line number Diff line number Diff line change @@ -704,19 +704,6 @@ export type RsvpResponse = 'accepted' | 'maybe' | 'declined';
704704 */
705705export type RsvpScope = 'single' | 'all' | 'following' ;
706706
707- /**
708- * RSVP scope option
709- * @description Configuration for displaying RSVP scope options in UI
710- */
711- export interface RsvpScopeOption {
712- /** The scope value */
713- value : RsvpScope ;
714- /** Display label for the option */
715- label : string ;
716- /** Description text explaining the scope */
717- description : string ;
718- }
719-
720707/**
721708 * RSVP counts by response type
722709 * @description Aggregated counts of RSVPs grouped by response
You can’t perform that action at this time.
0 commit comments