@demind-inc/core 1.7.43 → 1.7.45
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.
|
@@ -96,8 +96,6 @@ export interface CalendarEventRecurrence {
|
|
|
96
96
|
startDate: string;
|
|
97
97
|
endDate?: string;
|
|
98
98
|
};
|
|
99
|
-
string?: string;
|
|
100
|
-
rrule?: string;
|
|
101
99
|
}
|
|
102
100
|
export interface CalendarRoutineFrom {
|
|
103
101
|
routineActivityId: string;
|
|
@@ -237,7 +235,6 @@ export interface EventSeries {
|
|
|
237
235
|
};
|
|
238
236
|
isAllDay: boolean;
|
|
239
237
|
rrule: string;
|
|
240
|
-
string?: string;
|
|
241
238
|
count: number | null;
|
|
242
239
|
until: string | null;
|
|
243
240
|
status: CalendarEventStatus;
|
|
@@ -252,4 +249,3 @@ export interface EventSeries {
|
|
|
252
249
|
raw: string | AppleRecurrenceRule;
|
|
253
250
|
};
|
|
254
251
|
}
|
|
255
|
-
export type RecurringDeleteSpan = "thisEvent" | "futureEvents" | "allEvents";
|
package/lib/models/Calendar.ts
CHANGED
|
@@ -103,8 +103,6 @@ export interface CalendarEventRecurrence {
|
|
|
103
103
|
startDate: string;
|
|
104
104
|
endDate?: string;
|
|
105
105
|
};
|
|
106
|
-
string?: string;
|
|
107
|
-
rrule?: string;
|
|
108
106
|
}
|
|
109
107
|
|
|
110
108
|
export interface CalendarRoutineFrom {
|
|
@@ -321,7 +319,6 @@ export interface EventSeries {
|
|
|
321
319
|
end: { date: string; timeZone: string };
|
|
322
320
|
isAllDay: boolean;
|
|
323
321
|
rrule: string;
|
|
324
|
-
string?: string;
|
|
325
322
|
count: number | null;
|
|
326
323
|
until: string | null;
|
|
327
324
|
status: CalendarEventStatus;
|
|
@@ -336,5 +333,3 @@ export interface EventSeries {
|
|
|
336
333
|
raw: string | AppleRecurrenceRule;
|
|
337
334
|
};
|
|
338
335
|
}
|
|
339
|
-
|
|
340
|
-
export type RecurringDeleteSpan = "thisEvent" | "futureEvents" | "allEvents";
|