@meshmakers/octo-services 3.4.360 → 3.4.370
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/package.json
CHANGED
|
@@ -6166,7 +6166,9 @@ declare enum CkRollupFunctionDto {
|
|
|
6166
6166
|
CountDto = "COUNT",
|
|
6167
6167
|
MaxDto = "MAX",
|
|
6168
6168
|
MinDto = "MIN",
|
|
6169
|
-
|
|
6169
|
+
StateDurationDto = "STATE_DURATION",
|
|
6170
|
+
SumDto = "SUM",
|
|
6171
|
+
TimeWeightedAvgDto = "TIME_WEIGHTED_AVG"
|
|
6170
6172
|
}
|
|
6171
6173
|
/** Definition of a construction kit type with name, associations and attributes. */
|
|
6172
6174
|
type CkTypeDto = {
|
|
@@ -6453,6 +6455,8 @@ type CreateRollupArchiveInputDto = {
|
|
|
6453
6455
|
bucketAlignment?: InputMaybe<BucketAlignmentInputDto>;
|
|
6454
6456
|
/** Bucket width in milliseconds. Must be > 0. */
|
|
6455
6457
|
bucketSizeMs: Scalars['Long']['input'];
|
|
6458
|
+
/** Optional bound on the TIME_WEIGHTED_AVG carry-in scan (last observation carried forward) in milliseconds. Null keeps the engine default of 35 days. Only meaningful when the aggregations include TIME_WEIGHTED_AVG; ignored otherwise. Must be > 0 when set. */
|
|
6459
|
+
carryLookbackMs?: InputMaybe<Scalars['Long']['input']>;
|
|
6456
6460
|
/** Optional IANA reference time-zone (e.g. 'Europe/Vienna') that aligns calendar bucket boundaries to local wall-clock time so they are DST-correct. Null keeps UTC boundaries. Ignored for FIXED_SIZE; an unknown zone id is rejected. */
|
|
6457
6461
|
referenceTimeZone?: InputMaybe<Scalars['String']['input']>;
|
|
6458
6462
|
/** Optional human-readable name for the rollup archive. */
|
|
@@ -22097,6 +22101,8 @@ type RollupAggregationInfoDto = {
|
|
|
22097
22101
|
};
|
|
22098
22102
|
/** One aggregation: source-path on the source archive plus the aggregation function and optional explicit column name. */
|
|
22099
22103
|
type RollupAggregationInputDto = {
|
|
22104
|
+
/** State literal a STATE_DURATION aggregation matches the source column against — a number ('2', '100'), a boolean ('true'/'false') or a string state name. Required for STATE_DURATION; ignored for every other function. */
|
|
22105
|
+
comparisonValue?: InputMaybe<Scalars['String']['input']>;
|
|
22100
22106
|
/** Aggregation function (AVG materialises as two columns: {base}_sum and {base}_count). */
|
|
22101
22107
|
function: CkRollupFunctionDto;
|
|
22102
22108
|
/** Attribute path on the source archive (must resolve against its captured Columns at activation time). */
|