@ignos/api-client 20260203.0.13955 → 20260205.0.13992
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 +78 -107
- package/lib/ignosportal-api.js +117 -264
- package/package.json +1 -1
- package/src/ignosportal-api.ts +194 -373
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -16323,6 +16323,7 @@ export interface IAmcTypeManufacturerResultChecksDto {
|
|
|
16323
16323
|
}
|
|
16324
16324
|
export declare class AmcTypeResultLine implements IAmcTypeResultLine {
|
|
16325
16325
|
found?: boolean;
|
|
16326
|
+
readValue?: string | null;
|
|
16326
16327
|
override?: AmcResultOverrideDto | null;
|
|
16327
16328
|
constructor(data?: IAmcTypeResultLine);
|
|
16328
16329
|
init(_data?: any): void;
|
|
@@ -16331,6 +16332,7 @@ export declare class AmcTypeResultLine implements IAmcTypeResultLine {
|
|
|
16331
16332
|
}
|
|
16332
16333
|
export interface IAmcTypeResultLine {
|
|
16333
16334
|
found?: boolean;
|
|
16335
|
+
readValue?: string | null;
|
|
16334
16336
|
override?: AmcResultOverrideDto | null;
|
|
16335
16337
|
}
|
|
16336
16338
|
export declare class AmcResultOverrideDto implements IAmcResultOverrideDto {
|
|
@@ -16563,112 +16565,85 @@ export interface IAmcMechanicalSpecificationResultDto {
|
|
|
16563
16565
|
hardness?: AmcSpecificationResultLineDto | null;
|
|
16564
16566
|
}
|
|
16565
16567
|
export declare class AmcFerriteSpecificationResultDto implements IAmcFerriteSpecificationResultDto {
|
|
16566
|
-
ferriteContent?:
|
|
16567
|
-
measurementMethod?: AmcSpecificationFerriteMeasurementMethodResultLineDto | null;
|
|
16568
|
+
ferriteContent?: AmcSpecificationResultFerriteLineDto | null;
|
|
16568
16569
|
constructor(data?: IAmcFerriteSpecificationResultDto);
|
|
16569
16570
|
init(_data?: any): void;
|
|
16570
16571
|
static fromJS(data: any): AmcFerriteSpecificationResultDto;
|
|
16571
16572
|
toJSON(data?: any): any;
|
|
16572
16573
|
}
|
|
16573
16574
|
export interface IAmcFerriteSpecificationResultDto {
|
|
16574
|
-
ferriteContent?:
|
|
16575
|
-
measurementMethod?: AmcSpecificationFerriteMeasurementMethodResultLineDto | null;
|
|
16575
|
+
ferriteContent?: AmcSpecificationResultFerriteLineDto | null;
|
|
16576
16576
|
}
|
|
16577
|
-
export declare class
|
|
16578
|
-
|
|
16577
|
+
export declare class AmcSpecificationResultFerriteLineDto implements IAmcSpecificationResultFerriteLineDto {
|
|
16578
|
+
specificationOperator?: string | null;
|
|
16579
|
+
specificationValue1?: string | null;
|
|
16580
|
+
specificationValue2?: string | null;
|
|
16581
|
+
specificationSymbol?: string | null;
|
|
16582
|
+
readValue?: string | null;
|
|
16579
16583
|
status: AmcSpecificationResultLineStatusDto;
|
|
16580
16584
|
override?: AmcResultOverrideDto | null;
|
|
16581
|
-
|
|
16585
|
+
measurementMethod?: string | null;
|
|
16586
|
+
constructor(data?: IAmcSpecificationResultFerriteLineDto);
|
|
16582
16587
|
init(_data?: any): void;
|
|
16583
|
-
static fromJS(data: any):
|
|
16588
|
+
static fromJS(data: any): AmcSpecificationResultFerriteLineDto;
|
|
16584
16589
|
toJSON(data?: any): any;
|
|
16585
16590
|
}
|
|
16586
|
-
export interface
|
|
16587
|
-
|
|
16591
|
+
export interface IAmcSpecificationResultFerriteLineDto {
|
|
16592
|
+
specificationOperator?: string | null;
|
|
16593
|
+
specificationValue1?: string | null;
|
|
16594
|
+
specificationValue2?: string | null;
|
|
16595
|
+
specificationSymbol?: string | null;
|
|
16596
|
+
readValue?: string | null;
|
|
16588
16597
|
status: AmcSpecificationResultLineStatusDto;
|
|
16589
16598
|
override?: AmcResultOverrideDto | null;
|
|
16599
|
+
measurementMethod?: string | null;
|
|
16590
16600
|
}
|
|
16591
|
-
export type AmcFerriteMeasurementMethodDto = "Diushdf" | "Oidjrgr" | "Fjioerw";
|
|
16592
16601
|
export declare class AmcHeatTreatmentSpecificationResultDto implements IAmcHeatTreatmentSpecificationResultDto {
|
|
16593
|
-
|
|
16594
|
-
treatmentTemperature?: AmcSpecificationResultLineDto | null;
|
|
16595
|
-
holdingTime?: AmcSpecificationResultLineDto | null;
|
|
16596
|
-
coolingMethod?: AmcSpecificationHeatCoolingMethodResultLineDto | null;
|
|
16597
|
-
treatedCondition?: AmcSpecificationHeatTreatedConditionResultLineDto | null;
|
|
16598
|
-
verificationMethod?: AmcSpecificationHeatVerificationMethodResultLineDto | null;
|
|
16602
|
+
heatTreatments: AmcHeatTreatmentsResultDto[];
|
|
16599
16603
|
constructor(data?: IAmcHeatTreatmentSpecificationResultDto);
|
|
16600
16604
|
init(_data?: any): void;
|
|
16601
16605
|
static fromJS(data: any): AmcHeatTreatmentSpecificationResultDto;
|
|
16602
16606
|
toJSON(data?: any): any;
|
|
16603
16607
|
}
|
|
16604
16608
|
export interface IAmcHeatTreatmentSpecificationResultDto {
|
|
16605
|
-
|
|
16606
|
-
|
|
16607
|
-
|
|
16608
|
-
|
|
16609
|
-
|
|
16610
|
-
|
|
16611
|
-
|
|
16612
|
-
|
|
16613
|
-
|
|
16614
|
-
|
|
16615
|
-
|
|
16616
|
-
|
|
16617
|
-
|
|
16618
|
-
|
|
16619
|
-
toJSON(data?: any): any;
|
|
16620
|
-
}
|
|
16621
|
-
export interface IAmcSpecificationHeatTreatmentTypeResultLineDto {
|
|
16622
|
-
readValues?: AmcHeatTreatmentTypeDto[] | null;
|
|
16623
|
-
status: AmcSpecificationResultLineStatusDto;
|
|
16624
|
-
override?: AmcResultOverrideDto | null;
|
|
16625
|
-
}
|
|
16626
|
-
export type AmcHeatTreatmentTypeDto = "Sdjifo" | "Oijsdfi";
|
|
16627
|
-
export declare class AmcSpecificationHeatCoolingMethodResultLineDto implements IAmcSpecificationHeatCoolingMethodResultLineDto {
|
|
16628
|
-
readValues?: AmcHeatCoolingMethodDto[] | null;
|
|
16609
|
+
heatTreatments: AmcHeatTreatmentsResultDto[];
|
|
16610
|
+
}
|
|
16611
|
+
export declare class AmcHeatTreatmentsResultDto implements IAmcHeatTreatmentsResultDto {
|
|
16612
|
+
heatingMethod: AmcHeatingTreatmentMethodDto;
|
|
16613
|
+
specificationHeatingTreatmentTemperature?: number | null;
|
|
16614
|
+
specificationHeatingHoldingTime?: number | null;
|
|
16615
|
+
heatingTreatmentTemperature?: number | null;
|
|
16616
|
+
heatingHoldingTime?: number | null;
|
|
16617
|
+
specificationCoolingMethods?: AmcCoolingTreatmentMethodDto[] | null;
|
|
16618
|
+
specificationCoolingTreatmentTemperature?: number | null;
|
|
16619
|
+
specificationCoolingHoldingTime?: number | null;
|
|
16620
|
+
coolingMethod?: AmcCoolingTreatmentMethodDto | null;
|
|
16621
|
+
coolingTreatmentTemperature?: number | null;
|
|
16622
|
+
coolingHoldingTime?: number | null;
|
|
16629
16623
|
status: AmcSpecificationResultLineStatusDto;
|
|
16630
16624
|
override?: AmcResultOverrideDto | null;
|
|
16631
|
-
constructor(data?:
|
|
16632
|
-
init(_data?: any): void;
|
|
16633
|
-
static fromJS(data: any):
|
|
16634
|
-
toJSON(data?: any): any;
|
|
16635
|
-
}
|
|
16636
|
-
export interface
|
|
16637
|
-
|
|
16638
|
-
|
|
16639
|
-
|
|
16640
|
-
|
|
16641
|
-
|
|
16642
|
-
|
|
16643
|
-
|
|
16644
|
-
|
|
16645
|
-
|
|
16646
|
-
|
|
16647
|
-
|
|
16648
|
-
static fromJS(data: any): AmcSpecificationHeatTreatedConditionResultLineDto;
|
|
16649
|
-
toJSON(data?: any): any;
|
|
16650
|
-
}
|
|
16651
|
-
export interface IAmcSpecificationHeatTreatedConditionResultLineDto {
|
|
16652
|
-
readValues?: AmcHeatTreatedConditionDto[] | null;
|
|
16653
|
-
status: AmcSpecificationResultLineStatusDto;
|
|
16654
|
-
override?: AmcResultOverrideDto | null;
|
|
16655
|
-
}
|
|
16656
|
-
export type AmcHeatTreatedConditionDto = "Fsdijfo" | "Oisjdfi";
|
|
16657
|
-
export declare class AmcSpecificationHeatVerificationMethodResultLineDto implements IAmcSpecificationHeatVerificationMethodResultLineDto {
|
|
16658
|
-
readValues?: AmcHeatVerificationMethodDto[] | null;
|
|
16659
|
-
status: AmcSpecificationResultLineStatusDto;
|
|
16660
|
-
override?: AmcResultOverrideDto | null;
|
|
16661
|
-
constructor(data?: IAmcSpecificationHeatVerificationMethodResultLineDto);
|
|
16662
|
-
init(_data?: any): void;
|
|
16663
|
-
static fromJS(data: any): AmcSpecificationHeatVerificationMethodResultLineDto;
|
|
16664
|
-
toJSON(data?: any): any;
|
|
16665
|
-
}
|
|
16666
|
-
export interface IAmcSpecificationHeatVerificationMethodResultLineDto {
|
|
16667
|
-
readValues?: AmcHeatVerificationMethodDto[] | null;
|
|
16625
|
+
constructor(data?: IAmcHeatTreatmentsResultDto);
|
|
16626
|
+
init(_data?: any): void;
|
|
16627
|
+
static fromJS(data: any): AmcHeatTreatmentsResultDto;
|
|
16628
|
+
toJSON(data?: any): any;
|
|
16629
|
+
}
|
|
16630
|
+
export interface IAmcHeatTreatmentsResultDto {
|
|
16631
|
+
heatingMethod: AmcHeatingTreatmentMethodDto;
|
|
16632
|
+
specificationHeatingTreatmentTemperature?: number | null;
|
|
16633
|
+
specificationHeatingHoldingTime?: number | null;
|
|
16634
|
+
heatingTreatmentTemperature?: number | null;
|
|
16635
|
+
heatingHoldingTime?: number | null;
|
|
16636
|
+
specificationCoolingMethods?: AmcCoolingTreatmentMethodDto[] | null;
|
|
16637
|
+
specificationCoolingTreatmentTemperature?: number | null;
|
|
16638
|
+
specificationCoolingHoldingTime?: number | null;
|
|
16639
|
+
coolingMethod?: AmcCoolingTreatmentMethodDto | null;
|
|
16640
|
+
coolingTreatmentTemperature?: number | null;
|
|
16641
|
+
coolingHoldingTime?: number | null;
|
|
16668
16642
|
status: AmcSpecificationResultLineStatusDto;
|
|
16669
16643
|
override?: AmcResultOverrideDto | null;
|
|
16670
16644
|
}
|
|
16671
|
-
export type
|
|
16645
|
+
export type AmcHeatingTreatmentMethodDto = "Annealing" | "Normalizing" | "Quenching" | "Tempering" | "StressRelieving" | "SolutionTreating" | "Aging" | "Austempering" | "Martempering";
|
|
16646
|
+
export type AmcCoolingTreatmentMethodDto = "AirCooling" | "OilQuenching" | "WaterQuenching" | "FurnaceCooling" | "AirBlastCooling" | "PolymerQuenching";
|
|
16672
16647
|
export declare class ProcessAmcCheckRequestDto implements IProcessAmcCheckRequestDto {
|
|
16673
16648
|
files: UploadFileDto[];
|
|
16674
16649
|
specificationId: string;
|
|
@@ -16970,7 +16945,6 @@ export interface IUpdateAmcMechanicalSpecificationResultDto {
|
|
|
16970
16945
|
}
|
|
16971
16946
|
export declare class UpdateAmcFerriteSpecificationResultDto implements IUpdateAmcFerriteSpecificationResultDto {
|
|
16972
16947
|
ferriteContent?: UpdateAmcSpecificationResultLineDto | null;
|
|
16973
|
-
measurementMethod: AmcFerriteMeasurementMethodDto[];
|
|
16974
16948
|
constructor(data?: IUpdateAmcFerriteSpecificationResultDto);
|
|
16975
16949
|
init(_data?: any): void;
|
|
16976
16950
|
static fromJS(data: any): UpdateAmcFerriteSpecificationResultDto;
|
|
@@ -16978,27 +16952,16 @@ export declare class UpdateAmcFerriteSpecificationResultDto implements IUpdateAm
|
|
|
16978
16952
|
}
|
|
16979
16953
|
export interface IUpdateAmcFerriteSpecificationResultDto {
|
|
16980
16954
|
ferriteContent?: UpdateAmcSpecificationResultLineDto | null;
|
|
16981
|
-
measurementMethod: AmcFerriteMeasurementMethodDto[];
|
|
16982
16955
|
}
|
|
16983
16956
|
export declare class UpdateAmcHeatTreatmentSpecificationResultDto implements IUpdateAmcHeatTreatmentSpecificationResultDto {
|
|
16984
|
-
|
|
16985
|
-
treatmentTemperature?: UpdateAmcSpecificationResultLineDto | null;
|
|
16986
|
-
holdingTime?: UpdateAmcSpecificationResultLineDto | null;
|
|
16987
|
-
coolingMethod: AmcHeatCoolingMethodDto[];
|
|
16988
|
-
treatedCondition: AmcHeatTreatedConditionDto[];
|
|
16989
|
-
verificationMethod: AmcHeatVerificationMethodDto[];
|
|
16957
|
+
heatTreatmentOverrides: (UpdateAmcSpecificationResultLineDto | null)[];
|
|
16990
16958
|
constructor(data?: IUpdateAmcHeatTreatmentSpecificationResultDto);
|
|
16991
16959
|
init(_data?: any): void;
|
|
16992
16960
|
static fromJS(data: any): UpdateAmcHeatTreatmentSpecificationResultDto;
|
|
16993
16961
|
toJSON(data?: any): any;
|
|
16994
16962
|
}
|
|
16995
16963
|
export interface IUpdateAmcHeatTreatmentSpecificationResultDto {
|
|
16996
|
-
|
|
16997
|
-
treatmentTemperature?: UpdateAmcSpecificationResultLineDto | null;
|
|
16998
|
-
holdingTime?: UpdateAmcSpecificationResultLineDto | null;
|
|
16999
|
-
coolingMethod: AmcHeatCoolingMethodDto[];
|
|
17000
|
-
treatedCondition: AmcHeatTreatedConditionDto[];
|
|
17001
|
-
verificationMethod: AmcHeatVerificationMethodDto[];
|
|
16964
|
+
heatTreatmentOverrides: (UpdateAmcSpecificationResultLineDto | null)[];
|
|
17002
16965
|
}
|
|
17003
16966
|
export declare class AmcSpecificationLiteDto implements IAmcSpecificationLiteDto {
|
|
17004
16967
|
specificationId: string;
|
|
@@ -17153,7 +17116,6 @@ export interface IAmcMechanicalSpecificationDto {
|
|
|
17153
17116
|
}
|
|
17154
17117
|
export declare class AmcFerriteSpecificationDto implements IAmcFerriteSpecificationDto {
|
|
17155
17118
|
ferriteContent?: AmcSpecificationLineDto | null;
|
|
17156
|
-
measurementMethod: AmcFerriteMeasurementMethodDto[];
|
|
17157
17119
|
constructor(data?: IAmcFerriteSpecificationDto);
|
|
17158
17120
|
init(_data?: any): void;
|
|
17159
17121
|
static fromJS(data: any): AmcFerriteSpecificationDto;
|
|
@@ -17161,27 +17123,36 @@ export declare class AmcFerriteSpecificationDto implements IAmcFerriteSpecificat
|
|
|
17161
17123
|
}
|
|
17162
17124
|
export interface IAmcFerriteSpecificationDto {
|
|
17163
17125
|
ferriteContent?: AmcSpecificationLineDto | null;
|
|
17164
|
-
measurementMethod: AmcFerriteMeasurementMethodDto[];
|
|
17165
17126
|
}
|
|
17166
17127
|
export declare class AmcHeatTreatmentSpecificationDto implements IAmcHeatTreatmentSpecificationDto {
|
|
17167
|
-
|
|
17168
|
-
treatmentTemperature?: AmcSpecificationLineDto | null;
|
|
17169
|
-
holdingTime?: AmcSpecificationLineDto | null;
|
|
17170
|
-
coolingMethod: AmcHeatCoolingMethodDto[];
|
|
17171
|
-
treatedCondition: AmcHeatTreatedConditionDto[];
|
|
17172
|
-
verificationMethod: AmcHeatVerificationMethodDto[];
|
|
17128
|
+
heatTreatments: AmcHeatTreatmentsSpecificationDto[];
|
|
17173
17129
|
constructor(data?: IAmcHeatTreatmentSpecificationDto);
|
|
17174
17130
|
init(_data?: any): void;
|
|
17175
17131
|
static fromJS(data: any): AmcHeatTreatmentSpecificationDto;
|
|
17176
17132
|
toJSON(data?: any): any;
|
|
17177
17133
|
}
|
|
17178
17134
|
export interface IAmcHeatTreatmentSpecificationDto {
|
|
17179
|
-
|
|
17180
|
-
|
|
17181
|
-
|
|
17182
|
-
|
|
17183
|
-
|
|
17184
|
-
|
|
17135
|
+
heatTreatments: AmcHeatTreatmentsSpecificationDto[];
|
|
17136
|
+
}
|
|
17137
|
+
export declare class AmcHeatTreatmentsSpecificationDto implements IAmcHeatTreatmentsSpecificationDto {
|
|
17138
|
+
heatingMethod: AmcHeatingTreatmentMethodDto;
|
|
17139
|
+
heatingTreatmentTemperature?: number | null;
|
|
17140
|
+
heatingHoldingTime?: number | null;
|
|
17141
|
+
coolingMethods?: AmcCoolingTreatmentMethodDto[] | null;
|
|
17142
|
+
coolingTreatmentTemperature?: number | null;
|
|
17143
|
+
coolingHoldingTime?: number | null;
|
|
17144
|
+
constructor(data?: IAmcHeatTreatmentsSpecificationDto);
|
|
17145
|
+
init(_data?: any): void;
|
|
17146
|
+
static fromJS(data: any): AmcHeatTreatmentsSpecificationDto;
|
|
17147
|
+
toJSON(data?: any): any;
|
|
17148
|
+
}
|
|
17149
|
+
export interface IAmcHeatTreatmentsSpecificationDto {
|
|
17150
|
+
heatingMethod: AmcHeatingTreatmentMethodDto;
|
|
17151
|
+
heatingTreatmentTemperature?: number | null;
|
|
17152
|
+
heatingHoldingTime?: number | null;
|
|
17153
|
+
coolingMethods?: AmcCoolingTreatmentMethodDto[] | null;
|
|
17154
|
+
coolingTreatmentTemperature?: number | null;
|
|
17155
|
+
coolingHoldingTime?: number | null;
|
|
17185
17156
|
}
|
|
17186
17157
|
export declare class CreateAmcSpecificationDto implements ICreateAmcSpecificationDto {
|
|
17187
17158
|
name: string;
|