busroot-sdk 0.0.8-dev.2695058487 → 0.0.8-dev.2695660818
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/build/index.js +16 -19
- package/package.json +1 -1
package/build/index.js
CHANGED
|
@@ -891,28 +891,25 @@ var require_times = __commonJS({
|
|
|
891
891
|
rangeCode: "RELATIVE_DAYS_28",
|
|
892
892
|
label: "Last 4 Weeks",
|
|
893
893
|
durationMs: time_1.TimeIntervals["7d"].ms * 4
|
|
894
|
-
}
|
|
894
|
+
},
|
|
895
895
|
// Calendar-month rolling windows. These use `months` (not `durationMs`) so the
|
|
896
896
|
// window start is computed with moment.subtract(N, "month") — respecting real
|
|
897
897
|
// month lengths and leap years rather than a fixed number of days.
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
// label: "Last 12 Months",
|
|
914
|
-
// months: 12,
|
|
915
|
-
// },
|
|
898
|
+
{
|
|
899
|
+
rangeCode: "RELATIVE_MONTHS_3",
|
|
900
|
+
label: "Last 3 Months",
|
|
901
|
+
months: 3
|
|
902
|
+
},
|
|
903
|
+
{
|
|
904
|
+
rangeCode: "RELATIVE_MONTHS_6",
|
|
905
|
+
label: "Last 6 Months",
|
|
906
|
+
months: 6
|
|
907
|
+
},
|
|
908
|
+
{
|
|
909
|
+
rangeCode: "RELATIVE_MONTHS_12",
|
|
910
|
+
label: "Last 12 Months",
|
|
911
|
+
months: 12
|
|
912
|
+
}
|
|
916
913
|
];
|
|
917
914
|
var AllowedAggregationWindows = [
|
|
918
915
|
// 1 Hour
|
package/package.json
CHANGED