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