@ignos/api-client 20260708.180.1-alpha → 20260710.181.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
|
@@ -8770,6 +8770,8 @@ export interface SchemaCreatorDrawingDto {
|
|
|
8770
8770
|
rect: SchemaCreatorRectDto;
|
|
8771
8771
|
pageIndex: number;
|
|
8772
8772
|
annotationId: string;
|
|
8773
|
+
rotation?: number | null;
|
|
8774
|
+
unrotatedRect?: SchemaCreatorRectDto | null;
|
|
8773
8775
|
}
|
|
8774
8776
|
export interface SchemaCreatorRectDto {
|
|
8775
8777
|
origin: SchemaCreatorPointDto;
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -36924,6 +36924,8 @@ export interface SchemaCreatorDrawingDto {
|
|
|
36924
36924
|
rect: SchemaCreatorRectDto;
|
|
36925
36925
|
pageIndex: number;
|
|
36926
36926
|
annotationId: string;
|
|
36927
|
+
rotation?: number | null;
|
|
36928
|
+
unrotatedRect?: SchemaCreatorRectDto | null;
|
|
36927
36929
|
}
|
|
36928
36930
|
|
|
36929
36931
|
export interface SchemaCreatorRectDto {
|