@meshmakers/octo-services 3.4.370 → 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
|
/**
|