@dnax/core 0.76.1 → 0.76.3
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/define/index.ts +1 -0
- package/package.json +1 -1
- package/types/index.ts +2 -2
package/define/index.ts
CHANGED
package/package.json
CHANGED
package/types/index.ts
CHANGED
|
@@ -443,7 +443,7 @@ export type Collection = {
|
|
|
443
443
|
}; */
|
|
444
444
|
};
|
|
445
445
|
|
|
446
|
-
export type TimeSeriesCollection = {
|
|
446
|
+
export type TimeSeriesCollection = Collection &{
|
|
447
447
|
type?: "timeseries";
|
|
448
448
|
init?: (ctx: {
|
|
449
449
|
rest: InstanceType<typeof useRest>;
|
|
@@ -528,7 +528,7 @@ export type TimeSeriesCollection = {
|
|
|
528
528
|
timeseries:{
|
|
529
529
|
timeField:string;
|
|
530
530
|
metaField:string;
|
|
531
|
-
granularity
|
|
531
|
+
granularity?:'seconds'|'minutes'|'hours';
|
|
532
532
|
};
|
|
533
533
|
fields?: Field[];
|
|
534
534
|
api?: {
|