@ignos/api-client 20260206.44.2-alpha → 20260212.46.1
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 +56 -56
- package/lib/ignosportal-api.js +10 -10
- package/package.json +1 -1
- package/src/ignosportal-api.ts +66 -66
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -5119,7 +5119,7 @@ export interface ICreateResourceGroup {
|
|
|
5119
5119
|
export declare class UpdateResourceGroup implements IUpdateResourceGroup {
|
|
5120
5120
|
id: string;
|
|
5121
5121
|
name: string;
|
|
5122
|
-
|
|
5122
|
+
resourceExternalIds?: string[] | null;
|
|
5123
5123
|
constructor(data?: IUpdateResourceGroup);
|
|
5124
5124
|
init(_data?: any): void;
|
|
5125
5125
|
static fromJS(data: any): UpdateResourceGroup;
|
|
@@ -5128,7 +5128,7 @@ export declare class UpdateResourceGroup implements IUpdateResourceGroup {
|
|
|
5128
5128
|
export interface IUpdateResourceGroup {
|
|
5129
5129
|
id: string;
|
|
5130
5130
|
name: string;
|
|
5131
|
-
|
|
5131
|
+
resourceExternalIds?: string[] | null;
|
|
5132
5132
|
}
|
|
5133
5133
|
export declare class MachineStateListDto implements IMachineStateListDto {
|
|
5134
5134
|
machines?: MachineStateDto[] | null;
|
|
@@ -16153,7 +16153,7 @@ export declare class AmcResultLiteDto implements IAmcResultLiteDto {
|
|
|
16153
16153
|
purchaseOrderItem?: string | null;
|
|
16154
16154
|
purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
|
|
16155
16155
|
purchaseOrderLot?: string | null;
|
|
16156
|
-
status:
|
|
16156
|
+
status: AmcCheckStatus;
|
|
16157
16157
|
created: Date;
|
|
16158
16158
|
createdBy: string;
|
|
16159
16159
|
createdById: string;
|
|
@@ -16182,17 +16182,17 @@ export interface IAmcResultLiteDto {
|
|
|
16182
16182
|
purchaseOrderItem?: string | null;
|
|
16183
16183
|
purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
|
|
16184
16184
|
purchaseOrderLot?: string | null;
|
|
16185
|
-
status:
|
|
16185
|
+
status: AmcCheckStatus;
|
|
16186
16186
|
created: Date;
|
|
16187
16187
|
createdBy: string;
|
|
16188
16188
|
createdById: string;
|
|
16189
16189
|
updatedBy?: string | null;
|
|
16190
16190
|
updatedById?: string | null;
|
|
16191
16191
|
}
|
|
16192
|
-
export type
|
|
16192
|
+
export type AmcCheckStatus = "WaitingForProcessing" | "Processing" | "Draft" | "Approved" | "Rejected";
|
|
16193
16193
|
export declare class AmcCheckListRequestDto implements IAmcCheckListRequestDto {
|
|
16194
16194
|
pageSize?: number | null;
|
|
16195
|
-
orderBy?:
|
|
16195
|
+
orderBy?: AmcCheckListOrderByColumn | null;
|
|
16196
16196
|
searchTerm?: string | null;
|
|
16197
16197
|
originalReportFilter?: string | null;
|
|
16198
16198
|
generatedReportFilter?: string | null;
|
|
@@ -16207,7 +16207,7 @@ export declare class AmcCheckListRequestDto implements IAmcCheckListRequestDto {
|
|
|
16207
16207
|
lotFilter?: string | null;
|
|
16208
16208
|
dateFromFilter?: Date | null;
|
|
16209
16209
|
dateToFilter?: Date | null;
|
|
16210
|
-
statusFilter:
|
|
16210
|
+
statusFilter: AmcCheckStatus[];
|
|
16211
16211
|
continuationToken?: string | null;
|
|
16212
16212
|
constructor(data?: IAmcCheckListRequestDto);
|
|
16213
16213
|
init(_data?: any): void;
|
|
@@ -16216,7 +16216,7 @@ export declare class AmcCheckListRequestDto implements IAmcCheckListRequestDto {
|
|
|
16216
16216
|
}
|
|
16217
16217
|
export interface IAmcCheckListRequestDto {
|
|
16218
16218
|
pageSize?: number | null;
|
|
16219
|
-
orderBy?:
|
|
16219
|
+
orderBy?: AmcCheckListOrderByColumn | null;
|
|
16220
16220
|
searchTerm?: string | null;
|
|
16221
16221
|
originalReportFilter?: string | null;
|
|
16222
16222
|
generatedReportFilter?: string | null;
|
|
@@ -16231,10 +16231,10 @@ export interface IAmcCheckListRequestDto {
|
|
|
16231
16231
|
lotFilter?: string | null;
|
|
16232
16232
|
dateFromFilter?: Date | null;
|
|
16233
16233
|
dateToFilter?: Date | null;
|
|
16234
|
-
statusFilter:
|
|
16234
|
+
statusFilter: AmcCheckStatus[];
|
|
16235
16235
|
continuationToken?: string | null;
|
|
16236
16236
|
}
|
|
16237
|
-
export type
|
|
16237
|
+
export type AmcCheckListOrderByColumn = "OriginalReport" | "GeneratedReport" | "Customer" | "Project" | "PurchaseOrder" | "WorkOrder" | "CertificateType" | "Line" | "Item" | "Heat" | "Lot" | "Date" | "Status";
|
|
16238
16238
|
export declare class AmcResultDto implements IAmcResultDto {
|
|
16239
16239
|
resultId: string;
|
|
16240
16240
|
originalMaterialCertificate: FileDto;
|
|
@@ -16253,7 +16253,7 @@ export declare class AmcResultDto implements IAmcResultDto {
|
|
|
16253
16253
|
purchaseOrderItem?: string | null;
|
|
16254
16254
|
purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
|
|
16255
16255
|
purchaseOrderLot?: string | null;
|
|
16256
|
-
status:
|
|
16256
|
+
status: AmcCheckStatus;
|
|
16257
16257
|
created: Date;
|
|
16258
16258
|
createdBy: string;
|
|
16259
16259
|
createdById: string;
|
|
@@ -16287,7 +16287,7 @@ export interface IAmcResultDto {
|
|
|
16287
16287
|
purchaseOrderItem?: string | null;
|
|
16288
16288
|
purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
|
|
16289
16289
|
purchaseOrderLot?: string | null;
|
|
16290
|
-
status:
|
|
16290
|
+
status: AmcCheckStatus;
|
|
16291
16291
|
created: Date;
|
|
16292
16292
|
createdBy: string;
|
|
16293
16293
|
createdById: string;
|
|
@@ -16543,7 +16543,7 @@ export declare class AmcSpecificationResultLineDto implements IAmcSpecificationR
|
|
|
16543
16543
|
specificationValue2?: string | null;
|
|
16544
16544
|
specificationSymbol?: string | null;
|
|
16545
16545
|
readValue?: string | null;
|
|
16546
|
-
status:
|
|
16546
|
+
status: AmcSpecificationResultLineStatus;
|
|
16547
16547
|
override?: AmcResultOverrideDto | null;
|
|
16548
16548
|
constructor(data?: IAmcSpecificationResultLineDto);
|
|
16549
16549
|
init(_data?: any): void;
|
|
@@ -16556,10 +16556,10 @@ export interface IAmcSpecificationResultLineDto {
|
|
|
16556
16556
|
specificationValue2?: string | null;
|
|
16557
16557
|
specificationSymbol?: string | null;
|
|
16558
16558
|
readValue?: string | null;
|
|
16559
|
-
status:
|
|
16559
|
+
status: AmcSpecificationResultLineStatus;
|
|
16560
16560
|
override?: AmcResultOverrideDto | null;
|
|
16561
16561
|
}
|
|
16562
|
-
export type
|
|
16562
|
+
export type AmcSpecificationResultLineStatus = "NotFound" | "NotOk" | "Ok";
|
|
16563
16563
|
export declare class AmcMechanicalSpecificationResultDto implements IAmcMechanicalSpecificationResultDto {
|
|
16564
16564
|
yieldStrength?: AmcSpecificationResultLineDto | null;
|
|
16565
16565
|
tensileStrength?: AmcSpecificationResultLineDto | null;
|
|
@@ -16596,7 +16596,7 @@ export declare class AmcSpecificationResultFerriteLineDto implements IAmcSpecifi
|
|
|
16596
16596
|
specificationValue2?: string | null;
|
|
16597
16597
|
specificationSymbol?: string | null;
|
|
16598
16598
|
readValue?: string | null;
|
|
16599
|
-
status:
|
|
16599
|
+
status: AmcSpecificationResultLineStatus;
|
|
16600
16600
|
override?: AmcResultOverrideDto | null;
|
|
16601
16601
|
measurementMethod?: string | null;
|
|
16602
16602
|
constructor(data?: IAmcSpecificationResultFerriteLineDto);
|
|
@@ -16610,7 +16610,7 @@ export interface IAmcSpecificationResultFerriteLineDto {
|
|
|
16610
16610
|
specificationValue2?: string | null;
|
|
16611
16611
|
specificationSymbol?: string | null;
|
|
16612
16612
|
readValue?: string | null;
|
|
16613
|
-
status:
|
|
16613
|
+
status: AmcSpecificationResultLineStatus;
|
|
16614
16614
|
override?: AmcResultOverrideDto | null;
|
|
16615
16615
|
measurementMethod?: string | null;
|
|
16616
16616
|
}
|
|
@@ -16625,18 +16625,18 @@ export interface IAmcHeatTreatmentSpecificationResultDto {
|
|
|
16625
16625
|
heatTreatments: AmcHeatTreatmentsResultDto[];
|
|
16626
16626
|
}
|
|
16627
16627
|
export declare class AmcHeatTreatmentsResultDto implements IAmcHeatTreatmentsResultDto {
|
|
16628
|
-
heatingMethod:
|
|
16628
|
+
heatingMethod: AmcHeatingTreatmentMethod;
|
|
16629
16629
|
specificationHeatingTreatmentTemperature?: number | null;
|
|
16630
16630
|
specificationHeatingHoldingTime?: number | null;
|
|
16631
16631
|
heatingTreatmentTemperature?: number | null;
|
|
16632
16632
|
heatingHoldingTime?: number | null;
|
|
16633
|
-
specificationCoolingMethods?:
|
|
16633
|
+
specificationCoolingMethods?: AmcCoolingTreatmentMethod[] | null;
|
|
16634
16634
|
specificationCoolingTreatmentTemperature?: number | null;
|
|
16635
16635
|
specificationCoolingHoldingTime?: number | null;
|
|
16636
|
-
coolingMethod?:
|
|
16636
|
+
coolingMethod?: AmcCoolingTreatmentMethod | null;
|
|
16637
16637
|
coolingTreatmentTemperature?: number | null;
|
|
16638
16638
|
coolingHoldingTime?: number | null;
|
|
16639
|
-
status:
|
|
16639
|
+
status: AmcSpecificationResultLineStatus;
|
|
16640
16640
|
override?: AmcResultOverrideDto | null;
|
|
16641
16641
|
constructor(data?: IAmcHeatTreatmentsResultDto);
|
|
16642
16642
|
init(_data?: any): void;
|
|
@@ -16644,22 +16644,22 @@ export declare class AmcHeatTreatmentsResultDto implements IAmcHeatTreatmentsRes
|
|
|
16644
16644
|
toJSON(data?: any): any;
|
|
16645
16645
|
}
|
|
16646
16646
|
export interface IAmcHeatTreatmentsResultDto {
|
|
16647
|
-
heatingMethod:
|
|
16647
|
+
heatingMethod: AmcHeatingTreatmentMethod;
|
|
16648
16648
|
specificationHeatingTreatmentTemperature?: number | null;
|
|
16649
16649
|
specificationHeatingHoldingTime?: number | null;
|
|
16650
16650
|
heatingTreatmentTemperature?: number | null;
|
|
16651
16651
|
heatingHoldingTime?: number | null;
|
|
16652
|
-
specificationCoolingMethods?:
|
|
16652
|
+
specificationCoolingMethods?: AmcCoolingTreatmentMethod[] | null;
|
|
16653
16653
|
specificationCoolingTreatmentTemperature?: number | null;
|
|
16654
16654
|
specificationCoolingHoldingTime?: number | null;
|
|
16655
|
-
coolingMethod?:
|
|
16655
|
+
coolingMethod?: AmcCoolingTreatmentMethod | null;
|
|
16656
16656
|
coolingTreatmentTemperature?: number | null;
|
|
16657
16657
|
coolingHoldingTime?: number | null;
|
|
16658
|
-
status:
|
|
16658
|
+
status: AmcSpecificationResultLineStatus;
|
|
16659
16659
|
override?: AmcResultOverrideDto | null;
|
|
16660
16660
|
}
|
|
16661
|
-
export type
|
|
16662
|
-
export type
|
|
16661
|
+
export type AmcHeatingTreatmentMethod = "Annealing" | "Normalizing" | "Quenching" | "Tempering" | "StressRelieving" | "SolutionTreating" | "Aging" | "Austempering" | "Martempering";
|
|
16662
|
+
export type AmcCoolingTreatmentMethod = "AirCooling" | "OilQuenching" | "WaterQuenching" | "FurnaceCooling" | "AirBlastCooling" | "PolymerQuenching";
|
|
16663
16663
|
export declare class ProcessAmcCheckRequestDto implements IProcessAmcCheckRequestDto {
|
|
16664
16664
|
files: UploadFileDto[];
|
|
16665
16665
|
specificationId: string;
|
|
@@ -16685,7 +16685,7 @@ export declare class UpdateAmcResultRequestDto implements IUpdateAmcResultReques
|
|
|
16685
16685
|
project?: string | null;
|
|
16686
16686
|
purchaseOrder?: string | null;
|
|
16687
16687
|
workOrder?: string | null;
|
|
16688
|
-
|
|
16688
|
+
status: AmcCheckStatusUpdate;
|
|
16689
16689
|
certificateTypeSection: UpdateAmcTypeResultChecksDto;
|
|
16690
16690
|
chemistrySpecification: UpdateAmcChemistrySpecificationResultDto;
|
|
16691
16691
|
mechanicalSpecification: UpdateAmcMechanicalSpecificationResultDto;
|
|
@@ -16701,14 +16701,14 @@ export interface IUpdateAmcResultRequestDto {
|
|
|
16701
16701
|
project?: string | null;
|
|
16702
16702
|
purchaseOrder?: string | null;
|
|
16703
16703
|
workOrder?: string | null;
|
|
16704
|
-
|
|
16704
|
+
status: AmcCheckStatusUpdate;
|
|
16705
16705
|
certificateTypeSection: UpdateAmcTypeResultChecksDto;
|
|
16706
16706
|
chemistrySpecification: UpdateAmcChemistrySpecificationResultDto;
|
|
16707
16707
|
mechanicalSpecification: UpdateAmcMechanicalSpecificationResultDto;
|
|
16708
16708
|
ferriteSpecification: UpdateAmcFerriteSpecificationResultDto;
|
|
16709
16709
|
heatSpecification: UpdateAmcHeatTreatmentSpecificationResultDto;
|
|
16710
16710
|
}
|
|
16711
|
-
export type
|
|
16711
|
+
export type AmcCheckStatusUpdate = "Draft" | "Approve" | "Reject";
|
|
16712
16712
|
export declare class UpdateAmcTypeResultChecksDto implements IUpdateAmcTypeResultChecksDto {
|
|
16713
16713
|
manufacturer: UpdateAmcTypeManufacturerResultChecksDto;
|
|
16714
16714
|
signature: UpdateAmcTypeSignatureResultChecksDto;
|
|
@@ -16986,7 +16986,7 @@ export declare class AmcSpecificationLiteDto implements IAmcSpecificationLiteDto
|
|
|
16986
16986
|
number: string;
|
|
16987
16987
|
revision: string;
|
|
16988
16988
|
date: Date;
|
|
16989
|
-
status:
|
|
16989
|
+
status: AmcSpecificationStatus;
|
|
16990
16990
|
summary?: string | null;
|
|
16991
16991
|
relatedStandards: string[];
|
|
16992
16992
|
created: Date;
|
|
@@ -17006,7 +17006,7 @@ export interface IAmcSpecificationLiteDto {
|
|
|
17006
17006
|
number: string;
|
|
17007
17007
|
revision: string;
|
|
17008
17008
|
date: Date;
|
|
17009
|
-
status:
|
|
17009
|
+
status: AmcSpecificationStatus;
|
|
17010
17010
|
summary?: string | null;
|
|
17011
17011
|
relatedStandards: string[];
|
|
17012
17012
|
created: Date;
|
|
@@ -17015,7 +17015,7 @@ export interface IAmcSpecificationLiteDto {
|
|
|
17015
17015
|
updatedBy?: string | null;
|
|
17016
17016
|
updatedById?: string | null;
|
|
17017
17017
|
}
|
|
17018
|
-
export type
|
|
17018
|
+
export type AmcSpecificationStatus = "Draft" | "Released" | "Expired" | "Rejected";
|
|
17019
17019
|
export declare class AmcSpecificationDto implements IAmcSpecificationDto {
|
|
17020
17020
|
specificationId: string;
|
|
17021
17021
|
version: number;
|
|
@@ -17023,7 +17023,7 @@ export declare class AmcSpecificationDto implements IAmcSpecificationDto {
|
|
|
17023
17023
|
number: string;
|
|
17024
17024
|
revision: string;
|
|
17025
17025
|
date: Date;
|
|
17026
|
-
status:
|
|
17026
|
+
status: AmcSpecificationStatus;
|
|
17027
17027
|
summary?: string | null;
|
|
17028
17028
|
relatedStandards: string[];
|
|
17029
17029
|
created: Date;
|
|
@@ -17047,7 +17047,7 @@ export interface IAmcSpecificationDto {
|
|
|
17047
17047
|
number: string;
|
|
17048
17048
|
revision: string;
|
|
17049
17049
|
date: Date;
|
|
17050
|
-
status:
|
|
17050
|
+
status: AmcSpecificationStatus;
|
|
17051
17051
|
summary?: string | null;
|
|
17052
17052
|
relatedStandards: string[];
|
|
17053
17053
|
created: Date;
|
|
@@ -17093,23 +17093,23 @@ export interface IAmcChemistrySpecificationDto {
|
|
|
17093
17093
|
iron?: AmcSpecificationLineDto | null;
|
|
17094
17094
|
}
|
|
17095
17095
|
export declare class AmcSpecificationLineDto implements IAmcSpecificationLineDto {
|
|
17096
|
-
operator:
|
|
17096
|
+
operator: AmcSpecificationOperator;
|
|
17097
17097
|
value1?: number | null;
|
|
17098
17098
|
value2?: number | null;
|
|
17099
|
-
symbol:
|
|
17099
|
+
symbol: AmcSpecificationSymbol;
|
|
17100
17100
|
constructor(data?: IAmcSpecificationLineDto);
|
|
17101
17101
|
init(_data?: any): void;
|
|
17102
17102
|
static fromJS(data: any): AmcSpecificationLineDto;
|
|
17103
17103
|
toJSON(data?: any): any;
|
|
17104
17104
|
}
|
|
17105
17105
|
export interface IAmcSpecificationLineDto {
|
|
17106
|
-
operator:
|
|
17106
|
+
operator: AmcSpecificationOperator;
|
|
17107
17107
|
value1?: number | null;
|
|
17108
17108
|
value2?: number | null;
|
|
17109
|
-
symbol:
|
|
17109
|
+
symbol: AmcSpecificationSymbol;
|
|
17110
17110
|
}
|
|
17111
|
-
export type
|
|
17112
|
-
export type
|
|
17111
|
+
export type AmcSpecificationOperator = "Equal" | "GreaterThan" | "LessThan" | "GreaterThanOrEqual" | "LessThanOrEqual" | "Min" | "Max" | "Between";
|
|
17112
|
+
export type AmcSpecificationSymbol = "None" | "Percentage" | "Joule" | "Celsius" | "Farenheit" | "Mpa" | "Hbw";
|
|
17113
17113
|
export declare class AmcMechanicalSpecificationDto implements IAmcMechanicalSpecificationDto {
|
|
17114
17114
|
yieldStrength?: AmcSpecificationLineDto | null;
|
|
17115
17115
|
tensileStrength?: AmcSpecificationLineDto | null;
|
|
@@ -17151,10 +17151,10 @@ export interface IAmcHeatTreatmentSpecificationDto {
|
|
|
17151
17151
|
heatTreatments: AmcHeatTreatmentsSpecificationDto[];
|
|
17152
17152
|
}
|
|
17153
17153
|
export declare class AmcHeatTreatmentsSpecificationDto implements IAmcHeatTreatmentsSpecificationDto {
|
|
17154
|
-
heatingMethod:
|
|
17154
|
+
heatingMethod: AmcHeatingTreatmentMethod;
|
|
17155
17155
|
heatingTreatmentTemperature?: number | null;
|
|
17156
17156
|
heatingHoldingTime?: number | null;
|
|
17157
|
-
coolingMethods?:
|
|
17157
|
+
coolingMethods?: AmcCoolingTreatmentMethod[] | null;
|
|
17158
17158
|
coolingTreatmentTemperature?: number | null;
|
|
17159
17159
|
coolingHoldingTime?: number | null;
|
|
17160
17160
|
constructor(data?: IAmcHeatTreatmentsSpecificationDto);
|
|
@@ -17163,10 +17163,10 @@ export declare class AmcHeatTreatmentsSpecificationDto implements IAmcHeatTreatm
|
|
|
17163
17163
|
toJSON(data?: any): any;
|
|
17164
17164
|
}
|
|
17165
17165
|
export interface IAmcHeatTreatmentsSpecificationDto {
|
|
17166
|
-
heatingMethod:
|
|
17166
|
+
heatingMethod: AmcHeatingTreatmentMethod;
|
|
17167
17167
|
heatingTreatmentTemperature?: number | null;
|
|
17168
17168
|
heatingHoldingTime?: number | null;
|
|
17169
|
-
coolingMethods?:
|
|
17169
|
+
coolingMethods?: AmcCoolingTreatmentMethod[] | null;
|
|
17170
17170
|
coolingTreatmentTemperature?: number | null;
|
|
17171
17171
|
coolingHoldingTime?: number | null;
|
|
17172
17172
|
}
|
|
@@ -17197,7 +17197,7 @@ export interface ICreateAmcSpecificationDto {
|
|
|
17197
17197
|
export declare class UpdateAmcSpecificationDto implements IUpdateAmcSpecificationDto {
|
|
17198
17198
|
specificationId: string;
|
|
17199
17199
|
version: number;
|
|
17200
|
-
status:
|
|
17200
|
+
status: AmcSpecificationStatusUpdate;
|
|
17201
17201
|
summary?: string | null;
|
|
17202
17202
|
relatedStandards: string[];
|
|
17203
17203
|
chemistrySpecification: AmcChemistrySpecificationDto;
|
|
@@ -17212,7 +17212,7 @@ export declare class UpdateAmcSpecificationDto implements IUpdateAmcSpecificatio
|
|
|
17212
17212
|
export interface IUpdateAmcSpecificationDto {
|
|
17213
17213
|
specificationId: string;
|
|
17214
17214
|
version: number;
|
|
17215
|
-
status:
|
|
17215
|
+
status: AmcSpecificationStatusUpdate;
|
|
17216
17216
|
summary?: string | null;
|
|
17217
17217
|
relatedStandards: string[];
|
|
17218
17218
|
chemistrySpecification: AmcChemistrySpecificationDto;
|
|
@@ -17220,13 +17220,13 @@ export interface IUpdateAmcSpecificationDto {
|
|
|
17220
17220
|
ferriteSpecification: AmcFerriteSpecificationDto;
|
|
17221
17221
|
heatSpecification: AmcHeatTreatmentSpecificationDto;
|
|
17222
17222
|
}
|
|
17223
|
-
export type
|
|
17223
|
+
export type AmcSpecificationStatusUpdate = "NotModified" | "Released" | "Obsolete";
|
|
17224
17224
|
export declare class AmcTypeLiteDto implements IAmcTypeLiteDto {
|
|
17225
17225
|
typeId: string;
|
|
17226
17226
|
version: number;
|
|
17227
17227
|
name: string;
|
|
17228
17228
|
revision: string;
|
|
17229
|
-
status:
|
|
17229
|
+
status: AmcTypeStatus;
|
|
17230
17230
|
description?: string | null;
|
|
17231
17231
|
isStandardCertificateType: boolean;
|
|
17232
17232
|
created: Date;
|
|
@@ -17244,7 +17244,7 @@ export interface IAmcTypeLiteDto {
|
|
|
17244
17244
|
version: number;
|
|
17245
17245
|
name: string;
|
|
17246
17246
|
revision: string;
|
|
17247
|
-
status:
|
|
17247
|
+
status: AmcTypeStatus;
|
|
17248
17248
|
description?: string | null;
|
|
17249
17249
|
isStandardCertificateType: boolean;
|
|
17250
17250
|
created: Date;
|
|
@@ -17253,13 +17253,13 @@ export interface IAmcTypeLiteDto {
|
|
|
17253
17253
|
updatedBy?: string | null;
|
|
17254
17254
|
updatedById?: string | null;
|
|
17255
17255
|
}
|
|
17256
|
-
export type
|
|
17256
|
+
export type AmcTypeStatus = "Draft" | "Released" | "Expired" | "Rejected";
|
|
17257
17257
|
export declare class AmcTypeDto implements IAmcTypeDto {
|
|
17258
17258
|
typeId: string;
|
|
17259
17259
|
version: number;
|
|
17260
17260
|
name: string;
|
|
17261
17261
|
revision: string;
|
|
17262
|
-
status:
|
|
17262
|
+
status: AmcTypeStatus;
|
|
17263
17263
|
description?: string | null;
|
|
17264
17264
|
isStandardCertificateType: boolean;
|
|
17265
17265
|
created: Date;
|
|
@@ -17278,7 +17278,7 @@ export interface IAmcTypeDto {
|
|
|
17278
17278
|
version: number;
|
|
17279
17279
|
name: string;
|
|
17280
17280
|
revision: string;
|
|
17281
|
-
status:
|
|
17281
|
+
status: AmcTypeStatus;
|
|
17282
17282
|
description?: string | null;
|
|
17283
17283
|
isStandardCertificateType: boolean;
|
|
17284
17284
|
created: Date;
|
|
@@ -17485,7 +17485,7 @@ export interface ICreateAmcTypeRequestDto {
|
|
|
17485
17485
|
export declare class UpdateAmcTypeDto implements IUpdateAmcTypeDto {
|
|
17486
17486
|
typeId: string;
|
|
17487
17487
|
version: number;
|
|
17488
|
-
status:
|
|
17488
|
+
status: AmcTypeStatusUpdate;
|
|
17489
17489
|
description?: string | null;
|
|
17490
17490
|
checks: AmcTypeChecksDto;
|
|
17491
17491
|
constructor(data?: IUpdateAmcTypeDto);
|
|
@@ -17496,11 +17496,11 @@ export declare class UpdateAmcTypeDto implements IUpdateAmcTypeDto {
|
|
|
17496
17496
|
export interface IUpdateAmcTypeDto {
|
|
17497
17497
|
typeId: string;
|
|
17498
17498
|
version: number;
|
|
17499
|
-
status:
|
|
17499
|
+
status: AmcTypeStatusUpdate;
|
|
17500
17500
|
description?: string | null;
|
|
17501
17501
|
checks: AmcTypeChecksDto;
|
|
17502
17502
|
}
|
|
17503
|
-
export type
|
|
17503
|
+
export type AmcTypeStatusUpdate = "NotModified" | "Released" | "Obsolete";
|
|
17504
17504
|
export interface FileParameter {
|
|
17505
17505
|
data: any;
|
|
17506
17506
|
fileName: string;
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -31322,10 +31322,10 @@ export class UpdateResourceGroup {
|
|
|
31322
31322
|
if (_data) {
|
|
31323
31323
|
this.id = _data["id"];
|
|
31324
31324
|
this.name = _data["name"];
|
|
31325
|
-
if (Array.isArray(_data["
|
|
31326
|
-
this.
|
|
31327
|
-
for (let item of _data["
|
|
31328
|
-
this.
|
|
31325
|
+
if (Array.isArray(_data["resourceExternalIds"])) {
|
|
31326
|
+
this.resourceExternalIds = [];
|
|
31327
|
+
for (let item of _data["resourceExternalIds"])
|
|
31328
|
+
this.resourceExternalIds.push(item);
|
|
31329
31329
|
}
|
|
31330
31330
|
}
|
|
31331
31331
|
}
|
|
@@ -31339,10 +31339,10 @@ export class UpdateResourceGroup {
|
|
|
31339
31339
|
data = typeof data === 'object' ? data : {};
|
|
31340
31340
|
data["id"] = this.id;
|
|
31341
31341
|
data["name"] = this.name;
|
|
31342
|
-
if (Array.isArray(this.
|
|
31343
|
-
data["
|
|
31344
|
-
for (let item of this.
|
|
31345
|
-
data["
|
|
31342
|
+
if (Array.isArray(this.resourceExternalIds)) {
|
|
31343
|
+
data["resourceExternalIds"] = [];
|
|
31344
|
+
for (let item of this.resourceExternalIds)
|
|
31345
|
+
data["resourceExternalIds"].push(item);
|
|
31346
31346
|
}
|
|
31347
31347
|
return data;
|
|
31348
31348
|
}
|
|
@@ -54826,7 +54826,7 @@ export class UpdateAmcResultRequestDto {
|
|
|
54826
54826
|
this.project = _data["project"];
|
|
54827
54827
|
this.purchaseOrder = _data["purchaseOrder"];
|
|
54828
54828
|
this.workOrder = _data["workOrder"];
|
|
54829
|
-
this.
|
|
54829
|
+
this.status = _data["status"];
|
|
54830
54830
|
this.certificateTypeSection = _data["certificateTypeSection"] ? UpdateAmcTypeResultChecksDto.fromJS(_data["certificateTypeSection"]) : new UpdateAmcTypeResultChecksDto();
|
|
54831
54831
|
this.chemistrySpecification = _data["chemistrySpecification"] ? UpdateAmcChemistrySpecificationResultDto.fromJS(_data["chemistrySpecification"]) : new UpdateAmcChemistrySpecificationResultDto();
|
|
54832
54832
|
this.mechanicalSpecification = _data["mechanicalSpecification"] ? UpdateAmcMechanicalSpecificationResultDto.fromJS(_data["mechanicalSpecification"]) : new UpdateAmcMechanicalSpecificationResultDto();
|
|
@@ -54846,7 +54846,7 @@ export class UpdateAmcResultRequestDto {
|
|
|
54846
54846
|
data["project"] = this.project;
|
|
54847
54847
|
data["purchaseOrder"] = this.purchaseOrder;
|
|
54848
54848
|
data["workOrder"] = this.workOrder;
|
|
54849
|
-
data["
|
|
54849
|
+
data["status"] = this.status;
|
|
54850
54850
|
data["certificateTypeSection"] = this.certificateTypeSection ? this.certificateTypeSection.toJSON() : undefined;
|
|
54851
54851
|
data["chemistrySpecification"] = this.chemistrySpecification ? this.chemistrySpecification.toJSON() : undefined;
|
|
54852
54852
|
data["mechanicalSpecification"] = this.mechanicalSpecification ? this.mechanicalSpecification.toJSON() : undefined;
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -34945,7 +34945,7 @@ export interface ICreateResourceGroup {
|
|
|
34945
34945
|
export class UpdateResourceGroup implements IUpdateResourceGroup {
|
|
34946
34946
|
id!: string;
|
|
34947
34947
|
name!: string;
|
|
34948
|
-
|
|
34948
|
+
resourceExternalIds?: string[] | null;
|
|
34949
34949
|
|
|
34950
34950
|
constructor(data?: IUpdateResourceGroup) {
|
|
34951
34951
|
if (data) {
|
|
@@ -34960,10 +34960,10 @@ export class UpdateResourceGroup implements IUpdateResourceGroup {
|
|
|
34960
34960
|
if (_data) {
|
|
34961
34961
|
this.id = _data["id"];
|
|
34962
34962
|
this.name = _data["name"];
|
|
34963
|
-
if (Array.isArray(_data["
|
|
34964
|
-
this.
|
|
34965
|
-
for (let item of _data["
|
|
34966
|
-
this.
|
|
34963
|
+
if (Array.isArray(_data["resourceExternalIds"])) {
|
|
34964
|
+
this.resourceExternalIds = [] as any;
|
|
34965
|
+
for (let item of _data["resourceExternalIds"])
|
|
34966
|
+
this.resourceExternalIds!.push(item);
|
|
34967
34967
|
}
|
|
34968
34968
|
}
|
|
34969
34969
|
}
|
|
@@ -34979,10 +34979,10 @@ export class UpdateResourceGroup implements IUpdateResourceGroup {
|
|
|
34979
34979
|
data = typeof data === 'object' ? data : {};
|
|
34980
34980
|
data["id"] = this.id;
|
|
34981
34981
|
data["name"] = this.name;
|
|
34982
|
-
if (Array.isArray(this.
|
|
34983
|
-
data["
|
|
34984
|
-
for (let item of this.
|
|
34985
|
-
data["
|
|
34982
|
+
if (Array.isArray(this.resourceExternalIds)) {
|
|
34983
|
+
data["resourceExternalIds"] = [];
|
|
34984
|
+
for (let item of this.resourceExternalIds)
|
|
34985
|
+
data["resourceExternalIds"].push(item);
|
|
34986
34986
|
}
|
|
34987
34987
|
return data;
|
|
34988
34988
|
}
|
|
@@ -34991,7 +34991,7 @@ export class UpdateResourceGroup implements IUpdateResourceGroup {
|
|
|
34991
34991
|
export interface IUpdateResourceGroup {
|
|
34992
34992
|
id: string;
|
|
34993
34993
|
name: string;
|
|
34994
|
-
|
|
34994
|
+
resourceExternalIds?: string[] | null;
|
|
34995
34995
|
}
|
|
34996
34996
|
|
|
34997
34997
|
export class MachineStateListDto implements IMachineStateListDto {
|
|
@@ -68579,7 +68579,7 @@ export class AmcResultLiteDto implements IAmcResultLiteDto {
|
|
|
68579
68579
|
purchaseOrderItem?: string | null;
|
|
68580
68580
|
purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
|
|
68581
68581
|
purchaseOrderLot?: string | null;
|
|
68582
|
-
status!:
|
|
68582
|
+
status!: AmcCheckStatus;
|
|
68583
68583
|
created!: Date;
|
|
68584
68584
|
createdBy!: string;
|
|
68585
68585
|
createdById!: string;
|
|
@@ -68680,7 +68680,7 @@ export interface IAmcResultLiteDto {
|
|
|
68680
68680
|
purchaseOrderItem?: string | null;
|
|
68681
68681
|
purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
|
|
68682
68682
|
purchaseOrderLot?: string | null;
|
|
68683
|
-
status:
|
|
68683
|
+
status: AmcCheckStatus;
|
|
68684
68684
|
created: Date;
|
|
68685
68685
|
createdBy: string;
|
|
68686
68686
|
createdById: string;
|
|
@@ -68688,11 +68688,11 @@ export interface IAmcResultLiteDto {
|
|
|
68688
68688
|
updatedById?: string | null;
|
|
68689
68689
|
}
|
|
68690
68690
|
|
|
68691
|
-
export type
|
|
68691
|
+
export type AmcCheckStatus = "WaitingForProcessing" | "Processing" | "Draft" | "Approved" | "Rejected";
|
|
68692
68692
|
|
|
68693
68693
|
export class AmcCheckListRequestDto implements IAmcCheckListRequestDto {
|
|
68694
68694
|
pageSize?: number | null;
|
|
68695
|
-
orderBy?:
|
|
68695
|
+
orderBy?: AmcCheckListOrderByColumn | null;
|
|
68696
68696
|
searchTerm?: string | null;
|
|
68697
68697
|
originalReportFilter?: string | null;
|
|
68698
68698
|
generatedReportFilter?: string | null;
|
|
@@ -68707,7 +68707,7 @@ export class AmcCheckListRequestDto implements IAmcCheckListRequestDto {
|
|
|
68707
68707
|
lotFilter?: string | null;
|
|
68708
68708
|
dateFromFilter?: Date | null;
|
|
68709
68709
|
dateToFilter?: Date | null;
|
|
68710
|
-
statusFilter!:
|
|
68710
|
+
statusFilter!: AmcCheckStatus[];
|
|
68711
68711
|
continuationToken?: string | null;
|
|
68712
68712
|
|
|
68713
68713
|
constructor(data?: IAmcCheckListRequestDto) {
|
|
@@ -68786,7 +68786,7 @@ export class AmcCheckListRequestDto implements IAmcCheckListRequestDto {
|
|
|
68786
68786
|
|
|
68787
68787
|
export interface IAmcCheckListRequestDto {
|
|
68788
68788
|
pageSize?: number | null;
|
|
68789
|
-
orderBy?:
|
|
68789
|
+
orderBy?: AmcCheckListOrderByColumn | null;
|
|
68790
68790
|
searchTerm?: string | null;
|
|
68791
68791
|
originalReportFilter?: string | null;
|
|
68792
68792
|
generatedReportFilter?: string | null;
|
|
@@ -68801,11 +68801,11 @@ export interface IAmcCheckListRequestDto {
|
|
|
68801
68801
|
lotFilter?: string | null;
|
|
68802
68802
|
dateFromFilter?: Date | null;
|
|
68803
68803
|
dateToFilter?: Date | null;
|
|
68804
|
-
statusFilter:
|
|
68804
|
+
statusFilter: AmcCheckStatus[];
|
|
68805
68805
|
continuationToken?: string | null;
|
|
68806
68806
|
}
|
|
68807
68807
|
|
|
68808
|
-
export type
|
|
68808
|
+
export type AmcCheckListOrderByColumn = "OriginalReport" | "GeneratedReport" | "Customer" | "Project" | "PurchaseOrder" | "WorkOrder" | "CertificateType" | "Line" | "Item" | "Heat" | "Lot" | "Date" | "Status";
|
|
68809
68809
|
|
|
68810
68810
|
export class AmcResultDto implements IAmcResultDto {
|
|
68811
68811
|
resultId!: string;
|
|
@@ -68825,7 +68825,7 @@ export class AmcResultDto implements IAmcResultDto {
|
|
|
68825
68825
|
purchaseOrderItem?: string | null;
|
|
68826
68826
|
purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
|
|
68827
68827
|
purchaseOrderLot?: string | null;
|
|
68828
|
-
status!:
|
|
68828
|
+
status!: AmcCheckStatus;
|
|
68829
68829
|
created!: Date;
|
|
68830
68830
|
createdBy!: string;
|
|
68831
68831
|
createdById!: string;
|
|
@@ -68946,7 +68946,7 @@ export interface IAmcResultDto {
|
|
|
68946
68946
|
purchaseOrderItem?: string | null;
|
|
68947
68947
|
purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
|
|
68948
68948
|
purchaseOrderLot?: string | null;
|
|
68949
|
-
status:
|
|
68949
|
+
status: AmcCheckStatus;
|
|
68950
68950
|
created: Date;
|
|
68951
68951
|
createdBy: string;
|
|
68952
68952
|
createdById: string;
|
|
@@ -69643,7 +69643,7 @@ export class AmcSpecificationResultLineDto implements IAmcSpecificationResultLin
|
|
|
69643
69643
|
specificationValue2?: string | null;
|
|
69644
69644
|
specificationSymbol?: string | null;
|
|
69645
69645
|
readValue?: string | null;
|
|
69646
|
-
status!:
|
|
69646
|
+
status!: AmcSpecificationResultLineStatus;
|
|
69647
69647
|
override?: AmcResultOverrideDto | null;
|
|
69648
69648
|
|
|
69649
69649
|
constructor(data?: IAmcSpecificationResultLineDto) {
|
|
@@ -69693,11 +69693,11 @@ export interface IAmcSpecificationResultLineDto {
|
|
|
69693
69693
|
specificationValue2?: string | null;
|
|
69694
69694
|
specificationSymbol?: string | null;
|
|
69695
69695
|
readValue?: string | null;
|
|
69696
|
-
status:
|
|
69696
|
+
status: AmcSpecificationResultLineStatus;
|
|
69697
69697
|
override?: AmcResultOverrideDto | null;
|
|
69698
69698
|
}
|
|
69699
69699
|
|
|
69700
|
-
export type
|
|
69700
|
+
export type AmcSpecificationResultLineStatus = "NotFound" | "NotOk" | "Ok";
|
|
69701
69701
|
|
|
69702
69702
|
export class AmcMechanicalSpecificationResultDto implements IAmcMechanicalSpecificationResultDto {
|
|
69703
69703
|
yieldStrength?: AmcSpecificationResultLineDto | null;
|
|
@@ -69797,7 +69797,7 @@ export class AmcSpecificationResultFerriteLineDto implements IAmcSpecificationRe
|
|
|
69797
69797
|
specificationValue2?: string | null;
|
|
69798
69798
|
specificationSymbol?: string | null;
|
|
69799
69799
|
readValue?: string | null;
|
|
69800
|
-
status!:
|
|
69800
|
+
status!: AmcSpecificationResultLineStatus;
|
|
69801
69801
|
override?: AmcResultOverrideDto | null;
|
|
69802
69802
|
measurementMethod?: string | null;
|
|
69803
69803
|
|
|
@@ -69850,7 +69850,7 @@ export interface IAmcSpecificationResultFerriteLineDto {
|
|
|
69850
69850
|
specificationValue2?: string | null;
|
|
69851
69851
|
specificationSymbol?: string | null;
|
|
69852
69852
|
readValue?: string | null;
|
|
69853
|
-
status:
|
|
69853
|
+
status: AmcSpecificationResultLineStatus;
|
|
69854
69854
|
override?: AmcResultOverrideDto | null;
|
|
69855
69855
|
measurementMethod?: string | null;
|
|
69856
69856
|
}
|
|
@@ -69903,18 +69903,18 @@ export interface IAmcHeatTreatmentSpecificationResultDto {
|
|
|
69903
69903
|
}
|
|
69904
69904
|
|
|
69905
69905
|
export class AmcHeatTreatmentsResultDto implements IAmcHeatTreatmentsResultDto {
|
|
69906
|
-
heatingMethod!:
|
|
69906
|
+
heatingMethod!: AmcHeatingTreatmentMethod;
|
|
69907
69907
|
specificationHeatingTreatmentTemperature?: number | null;
|
|
69908
69908
|
specificationHeatingHoldingTime?: number | null;
|
|
69909
69909
|
heatingTreatmentTemperature?: number | null;
|
|
69910
69910
|
heatingHoldingTime?: number | null;
|
|
69911
|
-
specificationCoolingMethods?:
|
|
69911
|
+
specificationCoolingMethods?: AmcCoolingTreatmentMethod[] | null;
|
|
69912
69912
|
specificationCoolingTreatmentTemperature?: number | null;
|
|
69913
69913
|
specificationCoolingHoldingTime?: number | null;
|
|
69914
|
-
coolingMethod?:
|
|
69914
|
+
coolingMethod?: AmcCoolingTreatmentMethod | null;
|
|
69915
69915
|
coolingTreatmentTemperature?: number | null;
|
|
69916
69916
|
coolingHoldingTime?: number | null;
|
|
69917
|
-
status!:
|
|
69917
|
+
status!: AmcSpecificationResultLineStatus;
|
|
69918
69918
|
override?: AmcResultOverrideDto | null;
|
|
69919
69919
|
|
|
69920
69920
|
constructor(data?: IAmcHeatTreatmentsResultDto) {
|
|
@@ -69979,24 +69979,24 @@ export class AmcHeatTreatmentsResultDto implements IAmcHeatTreatmentsResultDto {
|
|
|
69979
69979
|
}
|
|
69980
69980
|
|
|
69981
69981
|
export interface IAmcHeatTreatmentsResultDto {
|
|
69982
|
-
heatingMethod:
|
|
69982
|
+
heatingMethod: AmcHeatingTreatmentMethod;
|
|
69983
69983
|
specificationHeatingTreatmentTemperature?: number | null;
|
|
69984
69984
|
specificationHeatingHoldingTime?: number | null;
|
|
69985
69985
|
heatingTreatmentTemperature?: number | null;
|
|
69986
69986
|
heatingHoldingTime?: number | null;
|
|
69987
|
-
specificationCoolingMethods?:
|
|
69987
|
+
specificationCoolingMethods?: AmcCoolingTreatmentMethod[] | null;
|
|
69988
69988
|
specificationCoolingTreatmentTemperature?: number | null;
|
|
69989
69989
|
specificationCoolingHoldingTime?: number | null;
|
|
69990
|
-
coolingMethod?:
|
|
69990
|
+
coolingMethod?: AmcCoolingTreatmentMethod | null;
|
|
69991
69991
|
coolingTreatmentTemperature?: number | null;
|
|
69992
69992
|
coolingHoldingTime?: number | null;
|
|
69993
|
-
status:
|
|
69993
|
+
status: AmcSpecificationResultLineStatus;
|
|
69994
69994
|
override?: AmcResultOverrideDto | null;
|
|
69995
69995
|
}
|
|
69996
69996
|
|
|
69997
|
-
export type
|
|
69997
|
+
export type AmcHeatingTreatmentMethod = "Annealing" | "Normalizing" | "Quenching" | "Tempering" | "StressRelieving" | "SolutionTreating" | "Aging" | "Austempering" | "Martempering";
|
|
69998
69998
|
|
|
69999
|
-
export type
|
|
69999
|
+
export type AmcCoolingTreatmentMethod = "AirCooling" | "OilQuenching" | "WaterQuenching" | "FurnaceCooling" | "AirBlastCooling" | "PolymerQuenching";
|
|
70000
70000
|
|
|
70001
70001
|
export class ProcessAmcCheckRequestDto implements IProcessAmcCheckRequestDto {
|
|
70002
70002
|
files!: UploadFileDto[];
|
|
@@ -70070,7 +70070,7 @@ export class UpdateAmcResultRequestDto implements IUpdateAmcResultRequestDto {
|
|
|
70070
70070
|
project?: string | null;
|
|
70071
70071
|
purchaseOrder?: string | null;
|
|
70072
70072
|
workOrder?: string | null;
|
|
70073
|
-
|
|
70073
|
+
status!: AmcCheckStatusUpdate;
|
|
70074
70074
|
certificateTypeSection!: UpdateAmcTypeResultChecksDto;
|
|
70075
70075
|
chemistrySpecification!: UpdateAmcChemistrySpecificationResultDto;
|
|
70076
70076
|
mechanicalSpecification!: UpdateAmcMechanicalSpecificationResultDto;
|
|
@@ -70099,7 +70099,7 @@ export class UpdateAmcResultRequestDto implements IUpdateAmcResultRequestDto {
|
|
|
70099
70099
|
this.project = _data["project"];
|
|
70100
70100
|
this.purchaseOrder = _data["purchaseOrder"];
|
|
70101
70101
|
this.workOrder = _data["workOrder"];
|
|
70102
|
-
this.
|
|
70102
|
+
this.status = _data["status"];
|
|
70103
70103
|
this.certificateTypeSection = _data["certificateTypeSection"] ? UpdateAmcTypeResultChecksDto.fromJS(_data["certificateTypeSection"]) : new UpdateAmcTypeResultChecksDto();
|
|
70104
70104
|
this.chemistrySpecification = _data["chemistrySpecification"] ? UpdateAmcChemistrySpecificationResultDto.fromJS(_data["chemistrySpecification"]) : new UpdateAmcChemistrySpecificationResultDto();
|
|
70105
70105
|
this.mechanicalSpecification = _data["mechanicalSpecification"] ? UpdateAmcMechanicalSpecificationResultDto.fromJS(_data["mechanicalSpecification"]) : new UpdateAmcMechanicalSpecificationResultDto();
|
|
@@ -70121,7 +70121,7 @@ export class UpdateAmcResultRequestDto implements IUpdateAmcResultRequestDto {
|
|
|
70121
70121
|
data["project"] = this.project;
|
|
70122
70122
|
data["purchaseOrder"] = this.purchaseOrder;
|
|
70123
70123
|
data["workOrder"] = this.workOrder;
|
|
70124
|
-
data["
|
|
70124
|
+
data["status"] = this.status;
|
|
70125
70125
|
data["certificateTypeSection"] = this.certificateTypeSection ? this.certificateTypeSection.toJSON() : undefined as any;
|
|
70126
70126
|
data["chemistrySpecification"] = this.chemistrySpecification ? this.chemistrySpecification.toJSON() : undefined as any;
|
|
70127
70127
|
data["mechanicalSpecification"] = this.mechanicalSpecification ? this.mechanicalSpecification.toJSON() : undefined as any;
|
|
@@ -70136,7 +70136,7 @@ export interface IUpdateAmcResultRequestDto {
|
|
|
70136
70136
|
project?: string | null;
|
|
70137
70137
|
purchaseOrder?: string | null;
|
|
70138
70138
|
workOrder?: string | null;
|
|
70139
|
-
|
|
70139
|
+
status: AmcCheckStatusUpdate;
|
|
70140
70140
|
certificateTypeSection: UpdateAmcTypeResultChecksDto;
|
|
70141
70141
|
chemistrySpecification: UpdateAmcChemistrySpecificationResultDto;
|
|
70142
70142
|
mechanicalSpecification: UpdateAmcMechanicalSpecificationResultDto;
|
|
@@ -70144,7 +70144,7 @@ export interface IUpdateAmcResultRequestDto {
|
|
|
70144
70144
|
heatSpecification: UpdateAmcHeatTreatmentSpecificationResultDto;
|
|
70145
70145
|
}
|
|
70146
70146
|
|
|
70147
|
-
export type
|
|
70147
|
+
export type AmcCheckStatusUpdate = "Draft" | "Approve" | "Reject";
|
|
70148
70148
|
|
|
70149
70149
|
export class UpdateAmcTypeResultChecksDto implements IUpdateAmcTypeResultChecksDto {
|
|
70150
70150
|
manufacturer!: UpdateAmcTypeManufacturerResultChecksDto;
|
|
@@ -70954,7 +70954,7 @@ export class AmcSpecificationLiteDto implements IAmcSpecificationLiteDto {
|
|
|
70954
70954
|
number!: string;
|
|
70955
70955
|
revision!: string;
|
|
70956
70956
|
date!: Date;
|
|
70957
|
-
status!:
|
|
70957
|
+
status!: AmcSpecificationStatus;
|
|
70958
70958
|
summary?: string | null;
|
|
70959
70959
|
relatedStandards!: string[];
|
|
70960
70960
|
created!: Date;
|
|
@@ -71036,7 +71036,7 @@ export interface IAmcSpecificationLiteDto {
|
|
|
71036
71036
|
number: string;
|
|
71037
71037
|
revision: string;
|
|
71038
71038
|
date: Date;
|
|
71039
|
-
status:
|
|
71039
|
+
status: AmcSpecificationStatus;
|
|
71040
71040
|
summary?: string | null;
|
|
71041
71041
|
relatedStandards: string[];
|
|
71042
71042
|
created: Date;
|
|
@@ -71046,7 +71046,7 @@ export interface IAmcSpecificationLiteDto {
|
|
|
71046
71046
|
updatedById?: string | null;
|
|
71047
71047
|
}
|
|
71048
71048
|
|
|
71049
|
-
export type
|
|
71049
|
+
export type AmcSpecificationStatus = "Draft" | "Released" | "Expired" | "Rejected";
|
|
71050
71050
|
|
|
71051
71051
|
export class AmcSpecificationDto implements IAmcSpecificationDto {
|
|
71052
71052
|
specificationId!: string;
|
|
@@ -71055,7 +71055,7 @@ export class AmcSpecificationDto implements IAmcSpecificationDto {
|
|
|
71055
71055
|
number!: string;
|
|
71056
71056
|
revision!: string;
|
|
71057
71057
|
date!: Date;
|
|
71058
|
-
status!:
|
|
71058
|
+
status!: AmcSpecificationStatus;
|
|
71059
71059
|
summary?: string | null;
|
|
71060
71060
|
relatedStandards!: string[];
|
|
71061
71061
|
created!: Date;
|
|
@@ -71153,7 +71153,7 @@ export interface IAmcSpecificationDto {
|
|
|
71153
71153
|
number: string;
|
|
71154
71154
|
revision: string;
|
|
71155
71155
|
date: Date;
|
|
71156
|
-
status:
|
|
71156
|
+
status: AmcSpecificationStatus;
|
|
71157
71157
|
summary?: string | null;
|
|
71158
71158
|
relatedStandards: string[];
|
|
71159
71159
|
created: Date;
|
|
@@ -71248,10 +71248,10 @@ export interface IAmcChemistrySpecificationDto {
|
|
|
71248
71248
|
}
|
|
71249
71249
|
|
|
71250
71250
|
export class AmcSpecificationLineDto implements IAmcSpecificationLineDto {
|
|
71251
|
-
operator!:
|
|
71251
|
+
operator!: AmcSpecificationOperator;
|
|
71252
71252
|
value1?: number | null;
|
|
71253
71253
|
value2?: number | null;
|
|
71254
|
-
symbol!:
|
|
71254
|
+
symbol!: AmcSpecificationSymbol;
|
|
71255
71255
|
|
|
71256
71256
|
constructor(data?: IAmcSpecificationLineDto) {
|
|
71257
71257
|
if (data) {
|
|
@@ -71289,15 +71289,15 @@ export class AmcSpecificationLineDto implements IAmcSpecificationLineDto {
|
|
|
71289
71289
|
}
|
|
71290
71290
|
|
|
71291
71291
|
export interface IAmcSpecificationLineDto {
|
|
71292
|
-
operator:
|
|
71292
|
+
operator: AmcSpecificationOperator;
|
|
71293
71293
|
value1?: number | null;
|
|
71294
71294
|
value2?: number | null;
|
|
71295
|
-
symbol:
|
|
71295
|
+
symbol: AmcSpecificationSymbol;
|
|
71296
71296
|
}
|
|
71297
71297
|
|
|
71298
|
-
export type
|
|
71298
|
+
export type AmcSpecificationOperator = "Equal" | "GreaterThan" | "LessThan" | "GreaterThanOrEqual" | "LessThanOrEqual" | "Min" | "Max" | "Between";
|
|
71299
71299
|
|
|
71300
|
-
export type
|
|
71300
|
+
export type AmcSpecificationSymbol = "None" | "Percentage" | "Joule" | "Celsius" | "Farenheit" | "Mpa" | "Hbw";
|
|
71301
71301
|
|
|
71302
71302
|
export class AmcMechanicalSpecificationDto implements IAmcMechanicalSpecificationDto {
|
|
71303
71303
|
yieldStrength?: AmcSpecificationLineDto | null;
|
|
@@ -71439,10 +71439,10 @@ export interface IAmcHeatTreatmentSpecificationDto {
|
|
|
71439
71439
|
}
|
|
71440
71440
|
|
|
71441
71441
|
export class AmcHeatTreatmentsSpecificationDto implements IAmcHeatTreatmentsSpecificationDto {
|
|
71442
|
-
heatingMethod!:
|
|
71442
|
+
heatingMethod!: AmcHeatingTreatmentMethod;
|
|
71443
71443
|
heatingTreatmentTemperature?: number | null;
|
|
71444
71444
|
heatingHoldingTime?: number | null;
|
|
71445
|
-
coolingMethods?:
|
|
71445
|
+
coolingMethods?: AmcCoolingTreatmentMethod[] | null;
|
|
71446
71446
|
coolingTreatmentTemperature?: number | null;
|
|
71447
71447
|
coolingHoldingTime?: number | null;
|
|
71448
71448
|
|
|
@@ -71494,10 +71494,10 @@ export class AmcHeatTreatmentsSpecificationDto implements IAmcHeatTreatmentsSpec
|
|
|
71494
71494
|
}
|
|
71495
71495
|
|
|
71496
71496
|
export interface IAmcHeatTreatmentsSpecificationDto {
|
|
71497
|
-
heatingMethod:
|
|
71497
|
+
heatingMethod: AmcHeatingTreatmentMethod;
|
|
71498
71498
|
heatingTreatmentTemperature?: number | null;
|
|
71499
71499
|
heatingHoldingTime?: number | null;
|
|
71500
|
-
coolingMethods?:
|
|
71500
|
+
coolingMethods?: AmcCoolingTreatmentMethod[] | null;
|
|
71501
71501
|
coolingTreatmentTemperature?: number | null;
|
|
71502
71502
|
coolingHoldingTime?: number | null;
|
|
71503
71503
|
}
|
|
@@ -71569,7 +71569,7 @@ export interface ICreateAmcSpecificationDto {
|
|
|
71569
71569
|
export class UpdateAmcSpecificationDto implements IUpdateAmcSpecificationDto {
|
|
71570
71570
|
specificationId!: string;
|
|
71571
71571
|
version!: number;
|
|
71572
|
-
status!:
|
|
71572
|
+
status!: AmcSpecificationStatusUpdate;
|
|
71573
71573
|
summary?: string | null;
|
|
71574
71574
|
relatedStandards!: string[];
|
|
71575
71575
|
chemistrySpecification!: AmcChemistrySpecificationDto;
|
|
@@ -71640,7 +71640,7 @@ export class UpdateAmcSpecificationDto implements IUpdateAmcSpecificationDto {
|
|
|
71640
71640
|
export interface IUpdateAmcSpecificationDto {
|
|
71641
71641
|
specificationId: string;
|
|
71642
71642
|
version: number;
|
|
71643
|
-
status:
|
|
71643
|
+
status: AmcSpecificationStatusUpdate;
|
|
71644
71644
|
summary?: string | null;
|
|
71645
71645
|
relatedStandards: string[];
|
|
71646
71646
|
chemistrySpecification: AmcChemistrySpecificationDto;
|
|
@@ -71649,14 +71649,14 @@ export interface IUpdateAmcSpecificationDto {
|
|
|
71649
71649
|
heatSpecification: AmcHeatTreatmentSpecificationDto;
|
|
71650
71650
|
}
|
|
71651
71651
|
|
|
71652
|
-
export type
|
|
71652
|
+
export type AmcSpecificationStatusUpdate = "NotModified" | "Released" | "Obsolete";
|
|
71653
71653
|
|
|
71654
71654
|
export class AmcTypeLiteDto implements IAmcTypeLiteDto {
|
|
71655
71655
|
typeId!: string;
|
|
71656
71656
|
version!: number;
|
|
71657
71657
|
name!: string;
|
|
71658
71658
|
revision!: string;
|
|
71659
|
-
status!:
|
|
71659
|
+
status!: AmcTypeStatus;
|
|
71660
71660
|
description?: string | null;
|
|
71661
71661
|
isStandardCertificateType!: boolean;
|
|
71662
71662
|
created!: Date;
|
|
@@ -71721,7 +71721,7 @@ export interface IAmcTypeLiteDto {
|
|
|
71721
71721
|
version: number;
|
|
71722
71722
|
name: string;
|
|
71723
71723
|
revision: string;
|
|
71724
|
-
status:
|
|
71724
|
+
status: AmcTypeStatus;
|
|
71725
71725
|
description?: string | null;
|
|
71726
71726
|
isStandardCertificateType: boolean;
|
|
71727
71727
|
created: Date;
|
|
@@ -71731,14 +71731,14 @@ export interface IAmcTypeLiteDto {
|
|
|
71731
71731
|
updatedById?: string | null;
|
|
71732
71732
|
}
|
|
71733
71733
|
|
|
71734
|
-
export type
|
|
71734
|
+
export type AmcTypeStatus = "Draft" | "Released" | "Expired" | "Rejected";
|
|
71735
71735
|
|
|
71736
71736
|
export class AmcTypeDto implements IAmcTypeDto {
|
|
71737
71737
|
typeId!: string;
|
|
71738
71738
|
version!: number;
|
|
71739
71739
|
name!: string;
|
|
71740
71740
|
revision!: string;
|
|
71741
|
-
status!:
|
|
71741
|
+
status!: AmcTypeStatus;
|
|
71742
71742
|
description?: string | null;
|
|
71743
71743
|
isStandardCertificateType!: boolean;
|
|
71744
71744
|
created!: Date;
|
|
@@ -71809,7 +71809,7 @@ export interface IAmcTypeDto {
|
|
|
71809
71809
|
version: number;
|
|
71810
71810
|
name: string;
|
|
71811
71811
|
revision: string;
|
|
71812
|
-
status:
|
|
71812
|
+
status: AmcTypeStatus;
|
|
71813
71813
|
description?: string | null;
|
|
71814
71814
|
isStandardCertificateType: boolean;
|
|
71815
71815
|
created: Date;
|
|
@@ -72381,7 +72381,7 @@ export interface ICreateAmcTypeRequestDto {
|
|
|
72381
72381
|
export class UpdateAmcTypeDto implements IUpdateAmcTypeDto {
|
|
72382
72382
|
typeId!: string;
|
|
72383
72383
|
version!: number;
|
|
72384
|
-
status!:
|
|
72384
|
+
status!: AmcTypeStatusUpdate;
|
|
72385
72385
|
description?: string | null;
|
|
72386
72386
|
checks!: AmcTypeChecksDto;
|
|
72387
72387
|
|
|
@@ -72428,12 +72428,12 @@ export class UpdateAmcTypeDto implements IUpdateAmcTypeDto {
|
|
|
72428
72428
|
export interface IUpdateAmcTypeDto {
|
|
72429
72429
|
typeId: string;
|
|
72430
72430
|
version: number;
|
|
72431
|
-
status:
|
|
72431
|
+
status: AmcTypeStatusUpdate;
|
|
72432
72432
|
description?: string | null;
|
|
72433
72433
|
checks: AmcTypeChecksDto;
|
|
72434
72434
|
}
|
|
72435
72435
|
|
|
72436
|
-
export type
|
|
72436
|
+
export type AmcTypeStatusUpdate = "NotModified" | "Released" | "Obsolete";
|
|
72437
72437
|
|
|
72438
72438
|
function formatDate(d: Date) {
|
|
72439
72439
|
return d.getFullYear() + '-' +
|