@leavittsoftware/lg-core-typescript 2.0.419 → 2.0.420
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.
- package/lg.net.core.ts +14 -0
- package/package.json +1 -1
package/lg.net.core.ts
CHANGED
|
@@ -3444,6 +3444,7 @@ export interface STTask {
|
|
|
3444
3444
|
Status: number | null;
|
|
3445
3445
|
Status1: number | null;
|
|
3446
3446
|
Status2: number | null;
|
|
3447
|
+
STTaskAttachments: Array<Partial<STTaskAttachment>> | null;
|
|
3447
3448
|
TaskReminderGlobalScheduledTasks: Array<Partial<TaskReminder>> | null;
|
|
3448
3449
|
TaskReminderTemplateScheduledTasks: Array<Partial<TaskReminder>> | null;
|
|
3449
3450
|
TaskReminderTimelineScheduledTasks: Array<Partial<TaskReminder>> | null;
|
|
@@ -4250,6 +4251,19 @@ export interface SurgeViewerToPeopleGroup {
|
|
|
4250
4251
|
SurgeId: number;
|
|
4251
4252
|
}
|
|
4252
4253
|
|
|
4254
|
+
export interface STTaskAttachment {
|
|
4255
|
+
CdnFileName: string | null;
|
|
4256
|
+
CreatedDate: string;
|
|
4257
|
+
Extension: string | null;
|
|
4258
|
+
Id: number;
|
|
4259
|
+
Name: string | null;
|
|
4260
|
+
PreviewExtension: string | null;
|
|
4261
|
+
PreviewSizes: string | null;
|
|
4262
|
+
Size: number;
|
|
4263
|
+
STTask: Partial<STTask> | null;
|
|
4264
|
+
STTaskId: number;
|
|
4265
|
+
}
|
|
4266
|
+
|
|
4253
4267
|
export interface PersonMondayAccount {
|
|
4254
4268
|
Id: number;
|
|
4255
4269
|
MondayId: number;
|