@demind-inc/core 1.10.9 → 1.10.11
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/dist/models/Metrics.d.ts
CHANGED
|
@@ -142,6 +142,23 @@ export interface MetricMealDetailMacros {
|
|
|
142
142
|
sugar_g?: number;
|
|
143
143
|
alcohol_g?: number;
|
|
144
144
|
}
|
|
145
|
+
export interface MetricAqiDataPoint {
|
|
146
|
+
timestamp: string;
|
|
147
|
+
usAqi: number;
|
|
148
|
+
europeanAqi: number;
|
|
149
|
+
pm2_5?: number;
|
|
150
|
+
pm10?: number;
|
|
151
|
+
dominantPollutant?: string;
|
|
152
|
+
category: string;
|
|
153
|
+
}
|
|
154
|
+
export interface MetricAqiResult {
|
|
155
|
+
lat: number;
|
|
156
|
+
lng: number;
|
|
157
|
+
date: string;
|
|
158
|
+
currentUsAqi: number;
|
|
159
|
+
currentCategory: string;
|
|
160
|
+
timeline: MetricAqiDataPoint[];
|
|
161
|
+
}
|
|
145
162
|
export interface MetricMealDetailMicros {
|
|
146
163
|
selenium_mg?: number;
|
|
147
164
|
niacin_mg?: number;
|
package/dist/models/Team.d.ts
CHANGED
|
@@ -34,6 +34,7 @@ export interface TodoTasksBoard {
|
|
|
34
34
|
originalBoardId: string;
|
|
35
35
|
name: string;
|
|
36
36
|
appFrom: TodoAppFrom;
|
|
37
|
+
teamId?: string;
|
|
37
38
|
createdAt: string;
|
|
38
39
|
todoIntegRef?: DocumentReference;
|
|
39
40
|
color?: string;
|
|
@@ -120,6 +121,14 @@ export interface TaskItem {
|
|
|
120
121
|
labels?: TaskLabel[];
|
|
121
122
|
assigneesIds?: string[];
|
|
122
123
|
isMeAssigned?: boolean;
|
|
124
|
+
teamTaskAssignment?: {
|
|
125
|
+
teamId: string;
|
|
126
|
+
createdByUserId: string;
|
|
127
|
+
assigneeUserId?: string;
|
|
128
|
+
assignedByUserId?: string;
|
|
129
|
+
createdAt: string;
|
|
130
|
+
updatedAt: string;
|
|
131
|
+
};
|
|
123
132
|
updatedAt: string;
|
|
124
133
|
duration?: TaskItemDuration;
|
|
125
134
|
addedToCalendar?: boolean;
|
package/lib/models/Metrics.ts
CHANGED
|
@@ -160,6 +160,25 @@ export interface MetricMealDetailMacros {
|
|
|
160
160
|
alcohol_g?: number;
|
|
161
161
|
}
|
|
162
162
|
|
|
163
|
+
export interface MetricAqiDataPoint {
|
|
164
|
+
timestamp: string;
|
|
165
|
+
usAqi: number;
|
|
166
|
+
europeanAqi: number;
|
|
167
|
+
pm2_5?: number;
|
|
168
|
+
pm10?: number;
|
|
169
|
+
dominantPollutant?: string;
|
|
170
|
+
category: string;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
export interface MetricAqiResult {
|
|
174
|
+
lat: number;
|
|
175
|
+
lng: number;
|
|
176
|
+
date: string;
|
|
177
|
+
currentUsAqi: number;
|
|
178
|
+
currentCategory: string;
|
|
179
|
+
timeline: MetricAqiDataPoint[];
|
|
180
|
+
}
|
|
181
|
+
|
|
163
182
|
export interface MetricMealDetailMicros {
|
|
164
183
|
selenium_mg?: number;
|
|
165
184
|
niacin_mg?: number;
|
package/lib/models/Team.ts
CHANGED
package/lib/models/TodoTasks.ts
CHANGED
|
@@ -40,6 +40,7 @@ export interface TodoTasksBoard {
|
|
|
40
40
|
originalBoardId: string;
|
|
41
41
|
name: string;
|
|
42
42
|
appFrom: TodoAppFrom;
|
|
43
|
+
teamId?: string;
|
|
43
44
|
createdAt: string;
|
|
44
45
|
todoIntegRef?: DocumentReference;
|
|
45
46
|
color?: string;
|
|
@@ -136,6 +137,14 @@ export interface TaskItem {
|
|
|
136
137
|
labels?: TaskLabel[];
|
|
137
138
|
assigneesIds?: string[];
|
|
138
139
|
isMeAssigned?: boolean;
|
|
140
|
+
teamTaskAssignment?: {
|
|
141
|
+
teamId: string;
|
|
142
|
+
createdByUserId: string;
|
|
143
|
+
assigneeUserId?: string;
|
|
144
|
+
assignedByUserId?: string;
|
|
145
|
+
createdAt: string;
|
|
146
|
+
updatedAt: string;
|
|
147
|
+
};
|
|
139
148
|
updatedAt: string;
|
|
140
149
|
duration?: TaskItemDuration;
|
|
141
150
|
addedToCalendar?: boolean;
|