@ignos/api-client 20260820.232.1-alpha → 20260821.234.1-alpha
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
|
@@ -9212,6 +9212,10 @@ export interface SchemaCreatorStateDto {
|
|
|
9212
9212
|
elements: SchemaCreatorElementDto[];
|
|
9213
9213
|
documentParseStatus?: SchemaCreatorDocumentParseStatusDto | null;
|
|
9214
9214
|
isAutoGenerated?: boolean;
|
|
9215
|
+
createdBy?: SchemaCreatorAuditInfoDto | null;
|
|
9216
|
+
createdAt?: Date | null;
|
|
9217
|
+
updatedBy?: SchemaCreatorAuditInfoDto | null;
|
|
9218
|
+
updatedAt?: Date | null;
|
|
9215
9219
|
}
|
|
9216
9220
|
export interface SchemaCreatorSettingsDto {
|
|
9217
9221
|
unit?: UnitOfMeasureDto;
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -38014,6 +38014,10 @@ export interface SchemaCreatorStateDto {
|
|
|
38014
38014
|
elements: SchemaCreatorElementDto[];
|
|
38015
38015
|
documentParseStatus?: SchemaCreatorDocumentParseStatusDto | null;
|
|
38016
38016
|
isAutoGenerated?: boolean;
|
|
38017
|
+
createdBy?: SchemaCreatorAuditInfoDto | null;
|
|
38018
|
+
createdAt?: Date | null;
|
|
38019
|
+
updatedBy?: SchemaCreatorAuditInfoDto | null;
|
|
38020
|
+
updatedAt?: Date | null;
|
|
38017
38021
|
}
|
|
38018
38022
|
|
|
38019
38023
|
export interface SchemaCreatorSettingsDto {
|