@meshmakers/octo-services 3.4.360 → 3.4.380
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
|
@@ -239,6 +239,19 @@ interface ClientDto {
|
|
|
239
239
|
* would overwrite the change. Empty / undefined on locally-owned clients.
|
|
240
240
|
*/
|
|
241
241
|
provisionedByParentTenantId?: string;
|
|
242
|
+
/**
|
|
243
|
+
* When true, this client was self-registered via RFC 7591 Dynamic Client
|
|
244
|
+
* Registration (client id prefix `octo-dcr-`). Such clients are server-managed
|
|
245
|
+
* and expire automatically; UIs render them read-only and exclude them from
|
|
246
|
+
* export. Read-only — the backend ignores it on write.
|
|
247
|
+
*/
|
|
248
|
+
dynamicRegistration?: boolean;
|
|
249
|
+
/**
|
|
250
|
+
* Expiry of a dynamically-registered client (registration time + TTL) as an
|
|
251
|
+
* ISO 8601 string. After this moment the backend erases the client and its
|
|
252
|
+
* per-tenant mirrors. Undefined on regular clients. Read-only.
|
|
253
|
+
*/
|
|
254
|
+
dynamicRegistrationExpiresAt?: string;
|
|
242
255
|
}
|
|
243
256
|
|
|
244
257
|
/**
|
|
@@ -6166,7 +6179,9 @@ declare enum CkRollupFunctionDto {
|
|
|
6166
6179
|
CountDto = "COUNT",
|
|
6167
6180
|
MaxDto = "MAX",
|
|
6168
6181
|
MinDto = "MIN",
|
|
6169
|
-
|
|
6182
|
+
StateDurationDto = "STATE_DURATION",
|
|
6183
|
+
SumDto = "SUM",
|
|
6184
|
+
TimeWeightedAvgDto = "TIME_WEIGHTED_AVG"
|
|
6170
6185
|
}
|
|
6171
6186
|
/** Definition of a construction kit type with name, associations and attributes. */
|
|
6172
6187
|
type CkTypeDto = {
|
|
@@ -6453,6 +6468,8 @@ type CreateRollupArchiveInputDto = {
|
|
|
6453
6468
|
bucketAlignment?: InputMaybe<BucketAlignmentInputDto>;
|
|
6454
6469
|
/** Bucket width in milliseconds. Must be > 0. */
|
|
6455
6470
|
bucketSizeMs: Scalars['Long']['input'];
|
|
6471
|
+
/** 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. */
|
|
6472
|
+
carryLookbackMs?: InputMaybe<Scalars['Long']['input']>;
|
|
6456
6473
|
/** 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
6474
|
referenceTimeZone?: InputMaybe<Scalars['String']['input']>;
|
|
6458
6475
|
/** Optional human-readable name for the rollup archive. */
|
|
@@ -22097,6 +22114,8 @@ type RollupAggregationInfoDto = {
|
|
|
22097
22114
|
};
|
|
22098
22115
|
/** One aggregation: source-path on the source archive plus the aggregation function and optional explicit column name. */
|
|
22099
22116
|
type RollupAggregationInputDto = {
|
|
22117
|
+
/** 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. */
|
|
22118
|
+
comparisonValue?: InputMaybe<Scalars['String']['input']>;
|
|
22100
22119
|
/** Aggregation function (AVG materialises as two columns: {base}_sum and {base}_count). */
|
|
22101
22120
|
function: CkRollupFunctionDto;
|
|
22102
22121
|
/** Attribute path on the source archive (must resolve against its captured Columns at activation time). */
|