@ignos/api-client 20250307.0.11327 → 20250311.0.11343
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 +15 -3
- package/lib/ignosportal-api.js +12 -0
- package/package.json +1 -1
- package/src/ignosportal-api.ts +30 -6
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -10829,6 +10829,9 @@ export declare class MeasurementFormSchemaDto implements IMeasurementFormSchemaD
|
|
|
10829
10829
|
isUsed: boolean;
|
|
10830
10830
|
status: MeasurementFormStatus;
|
|
10831
10831
|
source: MeasurementFormSource;
|
|
10832
|
+
unitOfMeasure?: UnitOfMeasureDto;
|
|
10833
|
+
dimensionSetting?: DimensionSettingDto;
|
|
10834
|
+
generalTolerance?: GeneralToleranceDto;
|
|
10832
10835
|
markedDrawingUrl?: string | null;
|
|
10833
10836
|
sourceFileUrl?: string | null;
|
|
10834
10837
|
projectFileUrl?: string | null;
|
|
@@ -10857,6 +10860,9 @@ export interface IMeasurementFormSchemaDto {
|
|
|
10857
10860
|
isUsed: boolean;
|
|
10858
10861
|
status: MeasurementFormStatus;
|
|
10859
10862
|
source: MeasurementFormSource;
|
|
10863
|
+
unitOfMeasure?: UnitOfMeasureDto;
|
|
10864
|
+
dimensionSetting?: DimensionSettingDto;
|
|
10865
|
+
generalTolerance?: GeneralToleranceDto;
|
|
10860
10866
|
markedDrawingUrl?: string | null;
|
|
10861
10867
|
sourceFileUrl?: string | null;
|
|
10862
10868
|
projectFileUrl?: string | null;
|
|
@@ -10866,6 +10872,9 @@ export interface IMeasurementFormSchemaDto {
|
|
|
10866
10872
|
groupedElements: MeasurementFormGroupedElementDto[];
|
|
10867
10873
|
extraSchemas: MeasurementFormLinkedSchemaDto[];
|
|
10868
10874
|
}
|
|
10875
|
+
export type UnitOfMeasureDto = "Millimeter" | "Inch";
|
|
10876
|
+
export type DimensionSettingDto = "Tolerance" | "MinMaxDimension";
|
|
10877
|
+
export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
|
|
10869
10878
|
export declare class MeasurementFormSchemaAttachmentDto implements IMeasurementFormSchemaAttachmentDto {
|
|
10870
10879
|
url: string;
|
|
10871
10880
|
title: string;
|
|
@@ -11091,11 +11100,14 @@ export declare class UpdateSchemaGroupedElementRowDto implements IUpdateSchemaGr
|
|
|
11091
11100
|
pageNumber?: number | null;
|
|
11092
11101
|
measurements?: number | null;
|
|
11093
11102
|
nominal?: number | null;
|
|
11103
|
+
nominalText?: string | null;
|
|
11094
11104
|
type?: string | null;
|
|
11095
11105
|
subType?: string | null;
|
|
11096
11106
|
unitOfMeasure?: string | null;
|
|
11097
11107
|
plusTolerance?: number | null;
|
|
11098
11108
|
minusTolerance?: number | null;
|
|
11109
|
+
upperLimit?: number | null;
|
|
11110
|
+
lowerLimit?: number | null;
|
|
11099
11111
|
coatingThickness?: number | null;
|
|
11100
11112
|
comments?: string | null;
|
|
11101
11113
|
frequency: MeasurementFrequency;
|
|
@@ -11114,11 +11126,14 @@ export interface IUpdateSchemaGroupedElementRowDto {
|
|
|
11114
11126
|
pageNumber?: number | null;
|
|
11115
11127
|
measurements?: number | null;
|
|
11116
11128
|
nominal?: number | null;
|
|
11129
|
+
nominalText?: string | null;
|
|
11117
11130
|
type?: string | null;
|
|
11118
11131
|
subType?: string | null;
|
|
11119
11132
|
unitOfMeasure?: string | null;
|
|
11120
11133
|
plusTolerance?: number | null;
|
|
11121
11134
|
minusTolerance?: number | null;
|
|
11135
|
+
upperLimit?: number | null;
|
|
11136
|
+
lowerLimit?: number | null;
|
|
11122
11137
|
coatingThickness?: number | null;
|
|
11123
11138
|
comments?: string | null;
|
|
11124
11139
|
frequency: MeasurementFrequency;
|
|
@@ -11155,9 +11170,6 @@ export interface IUpdateSchemaSettingsRequest {
|
|
|
11155
11170
|
dimensionSetting: DimensionSettingDto;
|
|
11156
11171
|
generalTolerance: GeneralToleranceDto;
|
|
11157
11172
|
}
|
|
11158
|
-
export type UnitOfMeasureDto = "Millimeter" | "Inch";
|
|
11159
|
-
export type DimensionSettingDto = "Tolerance" | "MinMaxDimension";
|
|
11160
|
-
export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
|
|
11161
11173
|
export declare class UploadDrawingRequest implements IUploadDrawingRequest {
|
|
11162
11174
|
uploadKey: string;
|
|
11163
11175
|
filename: string;
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -38192,6 +38192,9 @@ export class MeasurementFormSchemaDto {
|
|
|
38192
38192
|
this.isUsed = _data["isUsed"];
|
|
38193
38193
|
this.status = _data["status"];
|
|
38194
38194
|
this.source = _data["source"];
|
|
38195
|
+
this.unitOfMeasure = _data["unitOfMeasure"];
|
|
38196
|
+
this.dimensionSetting = _data["dimensionSetting"];
|
|
38197
|
+
this.generalTolerance = _data["generalTolerance"];
|
|
38195
38198
|
this.markedDrawingUrl = _data["markedDrawingUrl"];
|
|
38196
38199
|
this.sourceFileUrl = _data["sourceFileUrl"];
|
|
38197
38200
|
this.projectFileUrl = _data["projectFileUrl"];
|
|
@@ -38236,6 +38239,9 @@ export class MeasurementFormSchemaDto {
|
|
|
38236
38239
|
data["isUsed"] = this.isUsed;
|
|
38237
38240
|
data["status"] = this.status;
|
|
38238
38241
|
data["source"] = this.source;
|
|
38242
|
+
data["unitOfMeasure"] = this.unitOfMeasure;
|
|
38243
|
+
data["dimensionSetting"] = this.dimensionSetting;
|
|
38244
|
+
data["generalTolerance"] = this.generalTolerance;
|
|
38239
38245
|
data["markedDrawingUrl"] = this.markedDrawingUrl;
|
|
38240
38246
|
data["sourceFileUrl"] = this.sourceFileUrl;
|
|
38241
38247
|
data["projectFileUrl"] = this.projectFileUrl;
|
|
@@ -38641,11 +38647,14 @@ export class UpdateSchemaGroupedElementRowDto {
|
|
|
38641
38647
|
this.pageNumber = _data["pageNumber"];
|
|
38642
38648
|
this.measurements = _data["measurements"];
|
|
38643
38649
|
this.nominal = _data["nominal"];
|
|
38650
|
+
this.nominalText = _data["nominalText"];
|
|
38644
38651
|
this.type = _data["type"];
|
|
38645
38652
|
this.subType = _data["subType"];
|
|
38646
38653
|
this.unitOfMeasure = _data["unitOfMeasure"];
|
|
38647
38654
|
this.plusTolerance = _data["plusTolerance"];
|
|
38648
38655
|
this.minusTolerance = _data["minusTolerance"];
|
|
38656
|
+
this.upperLimit = _data["upperLimit"];
|
|
38657
|
+
this.lowerLimit = _data["lowerLimit"];
|
|
38649
38658
|
this.coatingThickness = _data["coatingThickness"];
|
|
38650
38659
|
this.comments = _data["comments"];
|
|
38651
38660
|
this.frequency = _data["frequency"];
|
|
@@ -38668,11 +38677,14 @@ export class UpdateSchemaGroupedElementRowDto {
|
|
|
38668
38677
|
data["pageNumber"] = this.pageNumber;
|
|
38669
38678
|
data["measurements"] = this.measurements;
|
|
38670
38679
|
data["nominal"] = this.nominal;
|
|
38680
|
+
data["nominalText"] = this.nominalText;
|
|
38671
38681
|
data["type"] = this.type;
|
|
38672
38682
|
data["subType"] = this.subType;
|
|
38673
38683
|
data["unitOfMeasure"] = this.unitOfMeasure;
|
|
38674
38684
|
data["plusTolerance"] = this.plusTolerance;
|
|
38675
38685
|
data["minusTolerance"] = this.minusTolerance;
|
|
38686
|
+
data["upperLimit"] = this.upperLimit;
|
|
38687
|
+
data["lowerLimit"] = this.lowerLimit;
|
|
38676
38688
|
data["coatingThickness"] = this.coatingThickness;
|
|
38677
38689
|
data["comments"] = this.comments;
|
|
38678
38690
|
data["frequency"] = this.frequency;
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -47912,6 +47912,9 @@ export class MeasurementFormSchemaDto implements IMeasurementFormSchemaDto {
|
|
|
47912
47912
|
isUsed!: boolean;
|
|
47913
47913
|
status!: MeasurementFormStatus;
|
|
47914
47914
|
source!: MeasurementFormSource;
|
|
47915
|
+
unitOfMeasure?: UnitOfMeasureDto;
|
|
47916
|
+
dimensionSetting?: DimensionSettingDto;
|
|
47917
|
+
generalTolerance?: GeneralToleranceDto;
|
|
47915
47918
|
markedDrawingUrl?: string | null;
|
|
47916
47919
|
sourceFileUrl?: string | null;
|
|
47917
47920
|
projectFileUrl?: string | null;
|
|
@@ -47951,6 +47954,9 @@ export class MeasurementFormSchemaDto implements IMeasurementFormSchemaDto {
|
|
|
47951
47954
|
this.isUsed = _data["isUsed"];
|
|
47952
47955
|
this.status = _data["status"];
|
|
47953
47956
|
this.source = _data["source"];
|
|
47957
|
+
this.unitOfMeasure = _data["unitOfMeasure"];
|
|
47958
|
+
this.dimensionSetting = _data["dimensionSetting"];
|
|
47959
|
+
this.generalTolerance = _data["generalTolerance"];
|
|
47954
47960
|
this.markedDrawingUrl = _data["markedDrawingUrl"];
|
|
47955
47961
|
this.sourceFileUrl = _data["sourceFileUrl"];
|
|
47956
47962
|
this.projectFileUrl = _data["projectFileUrl"];
|
|
@@ -47997,6 +48003,9 @@ export class MeasurementFormSchemaDto implements IMeasurementFormSchemaDto {
|
|
|
47997
48003
|
data["isUsed"] = this.isUsed;
|
|
47998
48004
|
data["status"] = this.status;
|
|
47999
48005
|
data["source"] = this.source;
|
|
48006
|
+
data["unitOfMeasure"] = this.unitOfMeasure;
|
|
48007
|
+
data["dimensionSetting"] = this.dimensionSetting;
|
|
48008
|
+
data["generalTolerance"] = this.generalTolerance;
|
|
48000
48009
|
data["markedDrawingUrl"] = this.markedDrawingUrl;
|
|
48001
48010
|
data["sourceFileUrl"] = this.sourceFileUrl;
|
|
48002
48011
|
data["projectFileUrl"] = this.projectFileUrl;
|
|
@@ -48036,6 +48045,9 @@ export interface IMeasurementFormSchemaDto {
|
|
|
48036
48045
|
isUsed: boolean;
|
|
48037
48046
|
status: MeasurementFormStatus;
|
|
48038
48047
|
source: MeasurementFormSource;
|
|
48048
|
+
unitOfMeasure?: UnitOfMeasureDto;
|
|
48049
|
+
dimensionSetting?: DimensionSettingDto;
|
|
48050
|
+
generalTolerance?: GeneralToleranceDto;
|
|
48039
48051
|
markedDrawingUrl?: string | null;
|
|
48040
48052
|
sourceFileUrl?: string | null;
|
|
48041
48053
|
projectFileUrl?: string | null;
|
|
@@ -48046,6 +48058,12 @@ export interface IMeasurementFormSchemaDto {
|
|
|
48046
48058
|
extraSchemas: MeasurementFormLinkedSchemaDto[];
|
|
48047
48059
|
}
|
|
48048
48060
|
|
|
48061
|
+
export type UnitOfMeasureDto = "Millimeter" | "Inch";
|
|
48062
|
+
|
|
48063
|
+
export type DimensionSettingDto = "Tolerance" | "MinMaxDimension";
|
|
48064
|
+
|
|
48065
|
+
export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
|
|
48066
|
+
|
|
48049
48067
|
export class MeasurementFormSchemaAttachmentDto implements IMeasurementFormSchemaAttachmentDto {
|
|
48050
48068
|
url!: string;
|
|
48051
48069
|
title!: string;
|
|
@@ -48640,11 +48658,14 @@ export class UpdateSchemaGroupedElementRowDto implements IUpdateSchemaGroupedEle
|
|
|
48640
48658
|
pageNumber?: number | null;
|
|
48641
48659
|
measurements?: number | null;
|
|
48642
48660
|
nominal?: number | null;
|
|
48661
|
+
nominalText?: string | null;
|
|
48643
48662
|
type?: string | null;
|
|
48644
48663
|
subType?: string | null;
|
|
48645
48664
|
unitOfMeasure?: string | null;
|
|
48646
48665
|
plusTolerance?: number | null;
|
|
48647
48666
|
minusTolerance?: number | null;
|
|
48667
|
+
upperLimit?: number | null;
|
|
48668
|
+
lowerLimit?: number | null;
|
|
48648
48669
|
coatingThickness?: number | null;
|
|
48649
48670
|
comments?: string | null;
|
|
48650
48671
|
frequency!: MeasurementFrequency;
|
|
@@ -48669,11 +48690,14 @@ export class UpdateSchemaGroupedElementRowDto implements IUpdateSchemaGroupedEle
|
|
|
48669
48690
|
this.pageNumber = _data["pageNumber"];
|
|
48670
48691
|
this.measurements = _data["measurements"];
|
|
48671
48692
|
this.nominal = _data["nominal"];
|
|
48693
|
+
this.nominalText = _data["nominalText"];
|
|
48672
48694
|
this.type = _data["type"];
|
|
48673
48695
|
this.subType = _data["subType"];
|
|
48674
48696
|
this.unitOfMeasure = _data["unitOfMeasure"];
|
|
48675
48697
|
this.plusTolerance = _data["plusTolerance"];
|
|
48676
48698
|
this.minusTolerance = _data["minusTolerance"];
|
|
48699
|
+
this.upperLimit = _data["upperLimit"];
|
|
48700
|
+
this.lowerLimit = _data["lowerLimit"];
|
|
48677
48701
|
this.coatingThickness = _data["coatingThickness"];
|
|
48678
48702
|
this.comments = _data["comments"];
|
|
48679
48703
|
this.frequency = _data["frequency"];
|
|
@@ -48698,11 +48722,14 @@ export class UpdateSchemaGroupedElementRowDto implements IUpdateSchemaGroupedEle
|
|
|
48698
48722
|
data["pageNumber"] = this.pageNumber;
|
|
48699
48723
|
data["measurements"] = this.measurements;
|
|
48700
48724
|
data["nominal"] = this.nominal;
|
|
48725
|
+
data["nominalText"] = this.nominalText;
|
|
48701
48726
|
data["type"] = this.type;
|
|
48702
48727
|
data["subType"] = this.subType;
|
|
48703
48728
|
data["unitOfMeasure"] = this.unitOfMeasure;
|
|
48704
48729
|
data["plusTolerance"] = this.plusTolerance;
|
|
48705
48730
|
data["minusTolerance"] = this.minusTolerance;
|
|
48731
|
+
data["upperLimit"] = this.upperLimit;
|
|
48732
|
+
data["lowerLimit"] = this.lowerLimit;
|
|
48706
48733
|
data["coatingThickness"] = this.coatingThickness;
|
|
48707
48734
|
data["comments"] = this.comments;
|
|
48708
48735
|
data["frequency"] = this.frequency;
|
|
@@ -48720,11 +48747,14 @@ export interface IUpdateSchemaGroupedElementRowDto {
|
|
|
48720
48747
|
pageNumber?: number | null;
|
|
48721
48748
|
measurements?: number | null;
|
|
48722
48749
|
nominal?: number | null;
|
|
48750
|
+
nominalText?: string | null;
|
|
48723
48751
|
type?: string | null;
|
|
48724
48752
|
subType?: string | null;
|
|
48725
48753
|
unitOfMeasure?: string | null;
|
|
48726
48754
|
plusTolerance?: number | null;
|
|
48727
48755
|
minusTolerance?: number | null;
|
|
48756
|
+
upperLimit?: number | null;
|
|
48757
|
+
lowerLimit?: number | null;
|
|
48728
48758
|
coatingThickness?: number | null;
|
|
48729
48759
|
comments?: string | null;
|
|
48730
48760
|
frequency: MeasurementFrequency;
|
|
@@ -48822,12 +48852,6 @@ export interface IUpdateSchemaSettingsRequest {
|
|
|
48822
48852
|
generalTolerance: GeneralToleranceDto;
|
|
48823
48853
|
}
|
|
48824
48854
|
|
|
48825
|
-
export type UnitOfMeasureDto = "Millimeter" | "Inch";
|
|
48826
|
-
|
|
48827
|
-
export type DimensionSettingDto = "Tolerance" | "MinMaxDimension";
|
|
48828
|
-
|
|
48829
|
-
export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
|
|
48830
|
-
|
|
48831
48855
|
export class UploadDrawingRequest implements IUploadDrawingRequest {
|
|
48832
48856
|
uploadKey!: string;
|
|
48833
48857
|
filename!: string;
|