@ignos/api-client 20260706.174.1-alpha → 20260706.176.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
|
@@ -8731,7 +8731,6 @@ export interface ImaSpecificationLiteDto {
|
|
|
8731
8731
|
export interface SchemaCreatorStateDto {
|
|
8732
8732
|
settings: SchemaCreatorSettingsDto;
|
|
8733
8733
|
elements: SchemaCreatorElementDto[];
|
|
8734
|
-
pendingElements: SchemaCreatorPendingElementDto[];
|
|
8735
8734
|
}
|
|
8736
8735
|
export interface SchemaCreatorSettingsDto {
|
|
8737
8736
|
unit?: UnitOfMeasureDto;
|
|
@@ -8742,12 +8741,12 @@ export type UnitOfMeasureDto = "Millimeter" | "Inch";
|
|
|
8742
8741
|
export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
|
|
8743
8742
|
export interface SchemaCreatorElementDto {
|
|
8744
8743
|
id: string;
|
|
8745
|
-
|
|
8744
|
+
kind: SchemaCreatorElementKindDto;
|
|
8746
8745
|
drawings: SchemaCreatorElementDrawingsDto;
|
|
8747
8746
|
isDirty?: boolean | null;
|
|
8748
|
-
values
|
|
8747
|
+
values?: SchemaCreatorElementValuesDto | null;
|
|
8749
8748
|
}
|
|
8750
|
-
export type
|
|
8749
|
+
export type SchemaCreatorElementKindDto = "Pending" | "Auto" | "Manual";
|
|
8751
8750
|
export interface SchemaCreatorElementDrawingsDto {
|
|
8752
8751
|
square: SchemaCreatorDrawingDto;
|
|
8753
8752
|
circle: SchemaCreatorDrawingDto;
|
|
@@ -8787,10 +8786,6 @@ export interface SchemaCreatorElementValuesDto {
|
|
|
8787
8786
|
isDocumentedExternally: boolean;
|
|
8788
8787
|
}
|
|
8789
8788
|
export type MeasurementFrequency = "All" | "FirstArticle" | "NFirst" | "NPercent" | "ISO2859" | "Nth" | "FirstAndLast" | "None";
|
|
8790
|
-
export interface SchemaCreatorPendingElementDto {
|
|
8791
|
-
id: string;
|
|
8792
|
-
drawings: SchemaCreatorElementDrawingsDto;
|
|
8793
|
-
}
|
|
8794
8789
|
export interface MeasurementFormSchemaDto {
|
|
8795
8790
|
id: string;
|
|
8796
8791
|
versionId: number;
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -36828,7 +36828,6 @@ export interface ImaSpecificationLiteDto {
|
|
|
36828
36828
|
export interface SchemaCreatorStateDto {
|
|
36829
36829
|
settings: SchemaCreatorSettingsDto;
|
|
36830
36830
|
elements: SchemaCreatorElementDto[];
|
|
36831
|
-
pendingElements: SchemaCreatorPendingElementDto[];
|
|
36832
36831
|
}
|
|
36833
36832
|
|
|
36834
36833
|
export interface SchemaCreatorSettingsDto {
|
|
@@ -36843,13 +36842,13 @@ export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "Ver
|
|
|
36843
36842
|
|
|
36844
36843
|
export interface SchemaCreatorElementDto {
|
|
36845
36844
|
id: string;
|
|
36846
|
-
|
|
36845
|
+
kind: SchemaCreatorElementKindDto;
|
|
36847
36846
|
drawings: SchemaCreatorElementDrawingsDto;
|
|
36848
36847
|
isDirty?: boolean | null;
|
|
36849
|
-
values
|
|
36848
|
+
values?: SchemaCreatorElementValuesDto | null;
|
|
36850
36849
|
}
|
|
36851
36850
|
|
|
36852
|
-
export type
|
|
36851
|
+
export type SchemaCreatorElementKindDto = "Pending" | "Auto" | "Manual";
|
|
36853
36852
|
|
|
36854
36853
|
export interface SchemaCreatorElementDrawingsDto {
|
|
36855
36854
|
square: SchemaCreatorDrawingDto;
|
|
@@ -36897,11 +36896,6 @@ export interface SchemaCreatorElementValuesDto {
|
|
|
36897
36896
|
|
|
36898
36897
|
export type MeasurementFrequency = "All" | "FirstArticle" | "NFirst" | "NPercent" | "ISO2859" | "Nth" | "FirstAndLast" | "None";
|
|
36899
36898
|
|
|
36900
|
-
export interface SchemaCreatorPendingElementDto {
|
|
36901
|
-
id: string;
|
|
36902
|
-
drawings: SchemaCreatorElementDrawingsDto;
|
|
36903
|
-
}
|
|
36904
|
-
|
|
36905
36899
|
export interface MeasurementFormSchemaDto {
|
|
36906
36900
|
id: string;
|
|
36907
36901
|
versionId: number;
|