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