@ignos/api-client 20260318.79.1 → 20260319.80.1
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/lib/ignosportal-api.d.ts
CHANGED
|
@@ -6362,6 +6362,10 @@ export interface WorkspaceDto {
|
|
|
6362
6362
|
widgetSettings: {
|
|
6363
6363
|
[key: string]: string;
|
|
6364
6364
|
};
|
|
6365
|
+
isSystemManaged?: boolean;
|
|
6366
|
+
systemManagedKind?: string | null;
|
|
6367
|
+
sourceTemplateId?: string | null;
|
|
6368
|
+
sourceMachineId?: string | null;
|
|
6365
6369
|
}
|
|
6366
6370
|
export interface WorkspaceWidgetDto {
|
|
6367
6371
|
id: string;
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -32094,6 +32094,10 @@ export interface WorkspaceDto {
|
|
|
32094
32094
|
settings: string;
|
|
32095
32095
|
widgets: WorkspaceWidgetDto[];
|
|
32096
32096
|
widgetSettings: { [key: string]: string; };
|
|
32097
|
+
isSystemManaged?: boolean;
|
|
32098
|
+
systemManagedKind?: string | null;
|
|
32099
|
+
sourceTemplateId?: string | null;
|
|
32100
|
+
sourceMachineId?: string | null;
|
|
32097
32101
|
}
|
|
32098
32102
|
|
|
32099
32103
|
export interface WorkspaceWidgetDto {
|