You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: 'ISO 8601 date/time. Defaults to now.',
151
+
schema: {
152
+
type: 'string',
153
+
format: 'date-time',
154
+
default: newDate().toISOString(),
155
+
},
156
+
example: newDate().toISOString(),
157
+
})
158
+
@ApiParam({
159
+
name: 'skip (0)',description: 'Number of records to skip for pagination',schema: {
160
+
type: 'number',
161
+
format: 'int32',
162
+
default: 0,
163
+
},required: false
164
+
})
165
+
@ApiParam({
166
+
name: 'take (144)',description: 'Number of records to take for pagination',schema: {
167
+
type: 'number',
168
+
format: 'int32',
169
+
default: 144,
170
+
},required: false
171
+
})
172
+
@ApiOperation({
173
+
summary: 'Get device FULL data within a date/time range and paginated',
174
+
description: `
175
+
Returns paginated sensor full data for a device filtered to a specific date/time window.
176
+
Within the time window, the skip/take will be applied to the filtered data for pagination. For example, if there are 100 records in the time window and skip=10 and take=20, records 11-30 will be returned.
177
+
Defaults to the last 24 hours if no range is provided.`,
0 commit comments