@ignos/api-client 20260621.159.1-alpha → 20260626.160.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 +145 -103
- package/lib/ignosportal-api.js +258 -47
- package/package.json +1 -1
- package/src/ignosportal-api.ts +400 -149
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -1389,6 +1389,24 @@ export declare class MachinesClient extends AuthorizedApiBase implements IMachin
|
|
|
1389
1389
|
deleteMachine(id: number): Promise<void>;
|
|
1390
1390
|
protected processDeleteMachine(response: Response): Promise<void>;
|
|
1391
1391
|
}
|
|
1392
|
+
export interface IMachineDataClient {
|
|
1393
|
+
getLiveMachineData(assetId: number, externalIds: string[] | undefined): Promise<LiveMachineDataDto>;
|
|
1394
|
+
getTimeseriesGraph(assetId: number, externalIds: string[] | undefined, startTime: Date | undefined, endTime: Date | undefined): Promise<TimeseriesGraphDto>;
|
|
1395
|
+
exportTimeseriesGraph(assetId: number, request: ExportTimeseriesGraphRequest): Promise<DownloadDto>;
|
|
1396
|
+
}
|
|
1397
|
+
export declare class MachineDataClient extends AuthorizedApiBase implements IMachineDataClient {
|
|
1398
|
+
private http;
|
|
1399
|
+
private baseUrl;
|
|
1400
|
+
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
1401
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
1402
|
+
});
|
|
1403
|
+
getLiveMachineData(assetId: number, externalIds: string[] | undefined): Promise<LiveMachineDataDto>;
|
|
1404
|
+
protected processGetLiveMachineData(response: Response): Promise<LiveMachineDataDto>;
|
|
1405
|
+
getTimeseriesGraph(assetId: number, externalIds: string[] | undefined, startTime: Date | undefined, endTime: Date | undefined): Promise<TimeseriesGraphDto>;
|
|
1406
|
+
protected processGetTimeseriesGraph(response: Response): Promise<TimeseriesGraphDto>;
|
|
1407
|
+
exportTimeseriesGraph(assetId: number, request: ExportTimeseriesGraphRequest): Promise<DownloadDto>;
|
|
1408
|
+
protected processExportTimeseriesGraph(response: Response): Promise<DownloadDto>;
|
|
1409
|
+
}
|
|
1392
1410
|
export interface ILinksClient {
|
|
1393
1411
|
getAllLinks(scope: string | null | undefined): Promise<LinkDto[]>;
|
|
1394
1412
|
createLink(request: CreateLinkRequest): Promise<LinkDto>;
|
|
@@ -2395,6 +2413,24 @@ export declare class MesEngineeringChangeOrdersClient extends AuthorizedApiBase
|
|
|
2395
2413
|
getEngineeringChangeOrderDetails(partNumber: string | undefined): Promise<EngineeringChangeOrdersDto>;
|
|
2396
2414
|
protected processGetEngineeringChangeOrderDetails(response: Response): Promise<EngineeringChangeOrdersDto>;
|
|
2397
2415
|
}
|
|
2416
|
+
export interface IMesIndirectActivitiesClient {
|
|
2417
|
+
listIndirectActivities(): Promise<IndirectActivityDto[]>;
|
|
2418
|
+
getMyActiveIndirectActivity(): Promise<CurrentIndirectActivityDto>;
|
|
2419
|
+
startIndirectActivity(request: StartIndirectActivity): Promise<void>;
|
|
2420
|
+
}
|
|
2421
|
+
export declare class MesIndirectActivitiesClient extends AuthorizedApiBase implements IMesIndirectActivitiesClient {
|
|
2422
|
+
private http;
|
|
2423
|
+
private baseUrl;
|
|
2424
|
+
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
2425
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2426
|
+
});
|
|
2427
|
+
listIndirectActivities(): Promise<IndirectActivityDto[]>;
|
|
2428
|
+
protected processListIndirectActivities(response: Response): Promise<IndirectActivityDto[]>;
|
|
2429
|
+
getMyActiveIndirectActivity(): Promise<CurrentIndirectActivityDto>;
|
|
2430
|
+
protected processGetMyActiveIndirectActivity(response: Response): Promise<CurrentIndirectActivityDto>;
|
|
2431
|
+
startIndirectActivity(request: StartIndirectActivity): Promise<void>;
|
|
2432
|
+
protected processStartIndirectActivity(response: Response): Promise<void>;
|
|
2433
|
+
}
|
|
2398
2434
|
export interface IMesLinksClient {
|
|
2399
2435
|
addMesLink(request: AddMesLink): Promise<void>;
|
|
2400
2436
|
listMesLinks(types: MesLinkTypeDto[] | null | undefined, workOrderId: string | null | undefined, operation: number | null | undefined): Promise<MesLinkDto[]>;
|
|
@@ -2434,18 +2470,6 @@ export declare class MesOrMoveClient extends AuthorizedApiBase implements IMesOr
|
|
|
2434
2470
|
getPrintableLabels(request: GeneratePrintableLabel): Promise<DownloadDto>;
|
|
2435
2471
|
protected processGetPrintableLabels(response: Response): Promise<DownloadDto>;
|
|
2436
2472
|
}
|
|
2437
|
-
export interface IMesPlannerClient {
|
|
2438
|
-
getPlan(resourceGroupId: string | undefined): Promise<PlannerPlanDto>;
|
|
2439
|
-
}
|
|
2440
|
-
export declare class MesPlannerClient extends AuthorizedApiBase implements IMesPlannerClient {
|
|
2441
|
-
private http;
|
|
2442
|
-
private baseUrl;
|
|
2443
|
-
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
2444
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2445
|
-
});
|
|
2446
|
-
getPlan(resourceGroupId: string | undefined): Promise<PlannerPlanDto>;
|
|
2447
|
-
protected processGetPlan(response: Response): Promise<PlannerPlanDto>;
|
|
2448
|
-
}
|
|
2449
2473
|
export interface IMesProductionOrderClient {
|
|
2450
2474
|
getProductionOrder(id: string): Promise<ProductionOrderDto>;
|
|
2451
2475
|
getProductionOrderBom(id: string, operation: number | null | undefined): Promise<ProductionOrderBomDto[]>;
|
|
@@ -2643,7 +2667,7 @@ export declare class InspectMatchCertificateTypesClient extends AuthorizedApiBas
|
|
|
2643
2667
|
}
|
|
2644
2668
|
export interface IInspectMatchMaterialChecksAdminClient {
|
|
2645
2669
|
updateMaterialCheckOverrides(id: string, request: ImaOverrideMaterialCheckRequestDto): Promise<ImaMaterialCheckDto>;
|
|
2646
|
-
updateMaterialCheckStatus(id: string, status:
|
|
2670
|
+
updateMaterialCheckStatus(id: string, status: ImaMaterialCheckStatusDto | undefined): Promise<ImaMaterialCheckDto>;
|
|
2647
2671
|
updateMaterialCheckMetadata(id: string, metadataRequest: ImaUpdateMaterialCheckMetadataRequestDto): Promise<ImaMaterialCheckDto>;
|
|
2648
2672
|
deleteMaterialCheck(id: string): Promise<void>;
|
|
2649
2673
|
}
|
|
@@ -2655,7 +2679,7 @@ export declare class InspectMatchMaterialChecksAdminClient extends AuthorizedApi
|
|
|
2655
2679
|
});
|
|
2656
2680
|
updateMaterialCheckOverrides(id: string, request: ImaOverrideMaterialCheckRequestDto): Promise<ImaMaterialCheckDto>;
|
|
2657
2681
|
protected processUpdateMaterialCheckOverrides(response: Response): Promise<ImaMaterialCheckDto>;
|
|
2658
|
-
updateMaterialCheckStatus(id: string, status:
|
|
2682
|
+
updateMaterialCheckStatus(id: string, status: ImaMaterialCheckStatusDto | undefined): Promise<ImaMaterialCheckDto>;
|
|
2659
2683
|
protected processUpdateMaterialCheckStatus(response: Response): Promise<ImaMaterialCheckDto>;
|
|
2660
2684
|
updateMaterialCheckMetadata(id: string, metadataRequest: ImaUpdateMaterialCheckMetadataRequestDto): Promise<ImaMaterialCheckDto>;
|
|
2661
2685
|
protected processUpdateMaterialCheckMetadata(response: Response): Promise<ImaMaterialCheckDto>;
|
|
@@ -5589,6 +5613,40 @@ export interface CrossCompanyUtilizationSummaryDto {
|
|
|
5589
5613
|
crossCompany: FactoryUtilizationDto;
|
|
5590
5614
|
companies: MachineGroupUtilizationDto[];
|
|
5591
5615
|
}
|
|
5616
|
+
export interface LiveMachineDataDto {
|
|
5617
|
+
assetId?: number;
|
|
5618
|
+
dataPoints?: LiveMachineDataPointDto[];
|
|
5619
|
+
}
|
|
5620
|
+
export interface LiveMachineDataPointDto {
|
|
5621
|
+
externalId?: string;
|
|
5622
|
+
timestamp?: number | null;
|
|
5623
|
+
numericValue?: number | null;
|
|
5624
|
+
stringValue?: string | null;
|
|
5625
|
+
}
|
|
5626
|
+
export interface TimeseriesGraphDto {
|
|
5627
|
+
assetId?: number;
|
|
5628
|
+
series?: TimeseriesGraphSeriesDto[];
|
|
5629
|
+
}
|
|
5630
|
+
export interface TimeseriesGraphSeriesDto {
|
|
5631
|
+
externalId?: string;
|
|
5632
|
+
isString?: boolean;
|
|
5633
|
+
dataPoints?: TimeseriesGraphDataPointDto[];
|
|
5634
|
+
}
|
|
5635
|
+
export interface TimeseriesGraphDataPointDto {
|
|
5636
|
+
timestamp?: number;
|
|
5637
|
+
numericValue?: number | null;
|
|
5638
|
+
stringValue?: string | null;
|
|
5639
|
+
}
|
|
5640
|
+
export interface ExportTimeseriesGraphRequest {
|
|
5641
|
+
series?: TimeseriesExportSeries[];
|
|
5642
|
+
startTime?: Date;
|
|
5643
|
+
endTime?: Date;
|
|
5644
|
+
}
|
|
5645
|
+
export interface TimeseriesExportSeries {
|
|
5646
|
+
externalId?: string;
|
|
5647
|
+
displayName?: string | null;
|
|
5648
|
+
unit?: string | null;
|
|
5649
|
+
}
|
|
5592
5650
|
export interface LinkDto {
|
|
5593
5651
|
id: string;
|
|
5594
5652
|
uri: string;
|
|
@@ -7191,6 +7249,19 @@ export interface EngineeringChangeOrdersDto {
|
|
|
7191
7249
|
mostRecentEngineeringChangeOrder?: Date | null;
|
|
7192
7250
|
engineeringChangeOrders?: EngineeringChangeOrderDto[];
|
|
7193
7251
|
}
|
|
7252
|
+
export interface IndirectActivityDto {
|
|
7253
|
+
activityId: string;
|
|
7254
|
+
name: string;
|
|
7255
|
+
companyId: string;
|
|
7256
|
+
}
|
|
7257
|
+
export interface CurrentIndirectActivityDto {
|
|
7258
|
+
activityId?: string | null;
|
|
7259
|
+
personnelNumber?: string | null;
|
|
7260
|
+
startTime?: Date | null;
|
|
7261
|
+
}
|
|
7262
|
+
export interface StartIndirectActivity {
|
|
7263
|
+
activityId: string;
|
|
7264
|
+
}
|
|
7194
7265
|
export interface AddMesLink {
|
|
7195
7266
|
uri: string;
|
|
7196
7267
|
name: string;
|
|
@@ -7231,39 +7302,6 @@ export interface LabelId {
|
|
|
7231
7302
|
parcelId: string;
|
|
7232
7303
|
trackingId?: string | null;
|
|
7233
7304
|
}
|
|
7234
|
-
export interface PlannerPlanDto {
|
|
7235
|
-
resourceGroupId: string;
|
|
7236
|
-
sequence: PlannerOperationDto[];
|
|
7237
|
-
lockedCount: number;
|
|
7238
|
-
planSavedAt?: Date | null;
|
|
7239
|
-
isDraft: boolean;
|
|
7240
|
-
hasUserDraft: boolean;
|
|
7241
|
-
}
|
|
7242
|
-
export interface PlannerOperationDto {
|
|
7243
|
-
id: string;
|
|
7244
|
-
productionOrderNumber: string;
|
|
7245
|
-
operation: number;
|
|
7246
|
-
operationName: string;
|
|
7247
|
-
plannedStart: Date;
|
|
7248
|
-
plannedEnd?: Date | null;
|
|
7249
|
-
status: OperationStatusDto;
|
|
7250
|
-
resourceId: string;
|
|
7251
|
-
resourceName: string;
|
|
7252
|
-
resourceDepartmentNumber?: string | null;
|
|
7253
|
-
resourceDepartmentName?: string | null;
|
|
7254
|
-
partNumber: string;
|
|
7255
|
-
partName?: string | null;
|
|
7256
|
-
partMaterial?: string | null;
|
|
7257
|
-
quantity: number;
|
|
7258
|
-
producedQuantity: number;
|
|
7259
|
-
totalPlannedHours?: number;
|
|
7260
|
-
totalUsedHours?: number;
|
|
7261
|
-
customerName?: string | null;
|
|
7262
|
-
project?: WorkOrderProjectDto | null;
|
|
7263
|
-
sequenceNumber: number;
|
|
7264
|
-
isManuallyLocked: boolean;
|
|
7265
|
-
weekGroup: string;
|
|
7266
|
-
}
|
|
7267
7305
|
export interface ProductionOrderDto {
|
|
7268
7306
|
id: string;
|
|
7269
7307
|
companyId: string;
|
|
@@ -7834,34 +7872,31 @@ export interface WeldingIotConfigDto {
|
|
|
7834
7872
|
}
|
|
7835
7873
|
export interface CreateWeldingIotConfig {
|
|
7836
7874
|
}
|
|
7837
|
-
export interface
|
|
7838
|
-
}
|
|
7839
|
-
export interface ImaCertificateTypeDto extends ImaCdfEntityReadBase {
|
|
7840
|
-
companyId: string;
|
|
7875
|
+
export interface ImaCertificateTypeDto {
|
|
7841
7876
|
certificateTypeId: string;
|
|
7842
7877
|
version: number;
|
|
7843
7878
|
allVersions: ImaCertificateTypeVersionDto[];
|
|
7844
7879
|
name: string;
|
|
7845
7880
|
revision: string;
|
|
7846
|
-
status:
|
|
7881
|
+
status: ImaCertificateTypeStatusDto;
|
|
7847
7882
|
description?: string | null;
|
|
7848
7883
|
isStandardCertificateType: boolean;
|
|
7849
7884
|
created: Date;
|
|
7850
7885
|
createdBy: string;
|
|
7851
7886
|
createdById: string;
|
|
7852
|
-
createdByName
|
|
7887
|
+
createdByName?: string | null;
|
|
7853
7888
|
updatedBy: string;
|
|
7854
7889
|
updatedById: string;
|
|
7855
|
-
updatedByName
|
|
7890
|
+
updatedByName?: string | null;
|
|
7856
7891
|
updated: Date;
|
|
7857
7892
|
isDeleted: boolean;
|
|
7858
7893
|
requirements: ImaCertificateTypeRequirementsDto;
|
|
7859
7894
|
}
|
|
7860
7895
|
export interface ImaCertificateTypeVersionDto {
|
|
7861
7896
|
version?: number;
|
|
7862
|
-
status?:
|
|
7897
|
+
status?: ImaCertificateTypeStatusDto;
|
|
7863
7898
|
}
|
|
7864
|
-
export type
|
|
7899
|
+
export type ImaCertificateTypeStatusDto = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
|
|
7865
7900
|
export interface ImaCertificateTypeRequirementsDto {
|
|
7866
7901
|
manufacturer: ImaCertificateTypeManufacturerRequirementsDto;
|
|
7867
7902
|
signature: ImaCertificateTypeSignatureRequirementsDto;
|
|
@@ -7872,6 +7907,8 @@ export interface ImaCertificateTypeRequirementsDto {
|
|
|
7872
7907
|
testResults: ImaCertificateTypeTestResultsRequirementsDto;
|
|
7873
7908
|
documentTypes: ImaCertificateTypeDocumentTypesRequirementsDto;
|
|
7874
7909
|
}
|
|
7910
|
+
export interface ImaCdfEntityReadBase {
|
|
7911
|
+
}
|
|
7875
7912
|
export interface ImaCertificateTypeManufacturerRequirementsDto extends ImaCdfEntityReadBase {
|
|
7876
7913
|
manufacturer?: boolean;
|
|
7877
7914
|
address?: boolean;
|
|
@@ -7939,7 +7976,7 @@ export interface ImaCreateOrCopyCertificateTypeRequestDto {
|
|
|
7939
7976
|
export interface ImaUpdateImaCertificateTypeRequestDto {
|
|
7940
7977
|
name?: string | null;
|
|
7941
7978
|
revision?: string | null;
|
|
7942
|
-
status?:
|
|
7979
|
+
status?: ImaCertificateTypeStatusDto | null;
|
|
7943
7980
|
description?: string | null;
|
|
7944
7981
|
requirements?: ImaCertificateTypeRequirementsUpdateDto | null;
|
|
7945
7982
|
}
|
|
@@ -8012,21 +8049,21 @@ export interface ImaCertificateTypeDocumentTypesRequirementsUpdateDto {
|
|
|
8012
8049
|
microExaminationReport?: boolean | null;
|
|
8013
8050
|
radiologicalReport?: boolean | null;
|
|
8014
8051
|
}
|
|
8015
|
-
export interface ImaCertificateTypeLiteDto
|
|
8052
|
+
export interface ImaCertificateTypeLiteDto {
|
|
8016
8053
|
certificateTypeId: string;
|
|
8017
8054
|
version: number;
|
|
8018
8055
|
name: string;
|
|
8019
8056
|
revision: string;
|
|
8020
|
-
status:
|
|
8057
|
+
status: ImaCertificateTypeStatusDto;
|
|
8021
8058
|
description?: string | null;
|
|
8022
8059
|
isStandardCertificateType: boolean;
|
|
8023
8060
|
created: Date;
|
|
8024
8061
|
createdBy: string;
|
|
8025
8062
|
createdById: string;
|
|
8026
|
-
createdByName
|
|
8063
|
+
createdByName?: string | null;
|
|
8027
8064
|
updatedBy: string;
|
|
8028
8065
|
updatedById: string;
|
|
8029
|
-
updatedByName
|
|
8066
|
+
updatedByName?: string | null;
|
|
8030
8067
|
updated: Date;
|
|
8031
8068
|
isDeleted: boolean;
|
|
8032
8069
|
}
|
|
@@ -8042,27 +8079,29 @@ export interface ImaMaterialCheckDto {
|
|
|
8042
8079
|
certificateTypeVersion?: number | null;
|
|
8043
8080
|
certificateTypeName?: string | null;
|
|
8044
8081
|
certificateTypeRevision?: string | null;
|
|
8082
|
+
certificateTypeStatus: ImaCertificateTypeStatusDto;
|
|
8045
8083
|
specificationId: string;
|
|
8046
8084
|
specificationVersion: number;
|
|
8047
8085
|
specificationName: string;
|
|
8048
|
-
specificationRevision
|
|
8049
|
-
specificationStatus:
|
|
8050
|
-
certificateTypeStatus: ImaCertificateTypeStatus;
|
|
8086
|
+
specificationRevision?: string | null;
|
|
8087
|
+
specificationStatus: ImaSpecificationStatusDto;
|
|
8051
8088
|
purchaseOrder?: string | null;
|
|
8052
8089
|
purchaseOrderLine?: number | null;
|
|
8053
8090
|
purchaseOrderVendorBatches?: string[] | null;
|
|
8054
8091
|
purchaseOrderPartName?: string | null;
|
|
8055
8092
|
purchaseOrderPartNumber?: string | null;
|
|
8093
|
+
purchaseOrderPartRevision?: string | null;
|
|
8056
8094
|
purchaseOrderDrawing?: string | null;
|
|
8095
|
+
purchaseOrderDrawingRevision?: string | null;
|
|
8057
8096
|
heatNumber?: string | null;
|
|
8058
|
-
status:
|
|
8097
|
+
status: ImaMaterialCheckStatusDto;
|
|
8059
8098
|
created: Date;
|
|
8060
8099
|
createdBy: string;
|
|
8061
8100
|
createdById: string;
|
|
8062
|
-
createdByName
|
|
8101
|
+
createdByName?: string | null;
|
|
8063
8102
|
updatedBy: string;
|
|
8064
8103
|
updatedById: string;
|
|
8065
|
-
updatedByName
|
|
8104
|
+
updatedByName?: string | null;
|
|
8066
8105
|
isDeleted: boolean;
|
|
8067
8106
|
reportCreatedBy?: string | null;
|
|
8068
8107
|
reportCreatedById?: string | null;
|
|
@@ -8071,8 +8110,8 @@ export interface ImaMaterialCheckDto {
|
|
|
8071
8110
|
certificateTypeResults: ImaCertificateTypeResultsDto;
|
|
8072
8111
|
specificationResults: ImaSpecificationResultsDto;
|
|
8073
8112
|
}
|
|
8074
|
-
export type
|
|
8075
|
-
export type
|
|
8113
|
+
export type ImaSpecificationStatusDto = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
|
|
8114
|
+
export type ImaMaterialCheckStatusDto = "Processing" | "Draft" | "Approved" | "Rejected" | "Failed" | "NotSet";
|
|
8076
8115
|
export interface ImaCertificateTypeResultsDto extends ImaCdfEntityReadBase {
|
|
8077
8116
|
manufacturer: ImaCertificateTypeManufacturerResultsDto;
|
|
8078
8117
|
signature: ImaCertificateTypeSignatureResultsDto;
|
|
@@ -8179,10 +8218,10 @@ export interface ImaSpecificationResultLineDto extends ImaCdfEntityReadBase {
|
|
|
8179
8218
|
specificationMin?: number | null;
|
|
8180
8219
|
specificationMax?: number | null;
|
|
8181
8220
|
readValue?: string | null;
|
|
8182
|
-
status:
|
|
8221
|
+
status: ImaSpecificationResultLineStatusDto;
|
|
8183
8222
|
override?: ImaResultLineOverrideDto | null;
|
|
8184
8223
|
}
|
|
8185
|
-
export type
|
|
8224
|
+
export type ImaSpecificationResultLineStatusDto = "NotFound" | "NotOk" | "Ok" | "NotSet";
|
|
8186
8225
|
export interface ImaSpecificationMechanicalResultsDto extends ImaCdfEntityReadBase {
|
|
8187
8226
|
yieldStrength?: ImaSpecificationResultLineDto | null;
|
|
8188
8227
|
tensileStrength?: ImaSpecificationResultLineDto | null;
|
|
@@ -8198,7 +8237,7 @@ export interface ImaSpecificationFerriteResultLineDto extends ImaCdfEntityReadBa
|
|
|
8198
8237
|
specificationMin?: number | null;
|
|
8199
8238
|
specificationMax?: number | null;
|
|
8200
8239
|
readValue?: string | null;
|
|
8201
|
-
status:
|
|
8240
|
+
status: ImaSpecificationResultLineStatusDto;
|
|
8202
8241
|
override?: ImaResultLineOverrideDto | null;
|
|
8203
8242
|
measurementMethod?: string | null;
|
|
8204
8243
|
}
|
|
@@ -8346,27 +8385,29 @@ export interface ImaMaterialCheckLiteDto {
|
|
|
8346
8385
|
certificateTypeVersion?: number | null;
|
|
8347
8386
|
certificateTypeName?: string | null;
|
|
8348
8387
|
certificateTypeRevision?: string | null;
|
|
8388
|
+
certificateTypeStatus: ImaCertificateTypeStatusDto;
|
|
8349
8389
|
specificationId: string;
|
|
8350
8390
|
specificationVersion: number;
|
|
8351
8391
|
specificationName: string;
|
|
8352
|
-
specificationRevision
|
|
8392
|
+
specificationRevision?: string | null;
|
|
8393
|
+
specificationStatus: ImaSpecificationStatusDto;
|
|
8353
8394
|
purchaseOrder?: string | null;
|
|
8354
8395
|
purchaseOrderLine?: number | null;
|
|
8355
8396
|
purchaseOrderVendorBatches?: string[] | null;
|
|
8356
8397
|
purchaseOrderPartName?: string | null;
|
|
8357
8398
|
purchaseOrderPartNumber?: string | null;
|
|
8399
|
+
purchaseOrderPartRevision?: string | null;
|
|
8358
8400
|
purchaseOrderDrawing?: string | null;
|
|
8401
|
+
purchaseOrderDrawingRevision?: string | null;
|
|
8359
8402
|
heatNumber?: string | null;
|
|
8360
|
-
status:
|
|
8361
|
-
specificationStatus: ImaSpecificationStatus;
|
|
8362
|
-
certificateTypeStatus: ImaCertificateTypeStatus;
|
|
8403
|
+
status: ImaMaterialCheckStatusDto;
|
|
8363
8404
|
created: Date;
|
|
8364
8405
|
createdBy: string;
|
|
8365
8406
|
createdById: string;
|
|
8366
|
-
createdByName
|
|
8407
|
+
createdByName?: string | null;
|
|
8367
8408
|
updatedBy: string;
|
|
8368
8409
|
updatedById: string;
|
|
8369
|
-
updatedByName
|
|
8410
|
+
updatedByName?: string | null;
|
|
8370
8411
|
isDeleted?: boolean;
|
|
8371
8412
|
reportCreatedBy?: string | null;
|
|
8372
8413
|
reportCreatedById?: string | null;
|
|
@@ -8392,15 +8433,15 @@ export interface ImaMaterialChecksPageRequestDto {
|
|
|
8392
8433
|
purchaseOrderDrawingFilter?: string | null;
|
|
8393
8434
|
dateFromFilter?: Date | null;
|
|
8394
8435
|
dateToFilter?: Date | null;
|
|
8395
|
-
statusFilter?:
|
|
8436
|
+
statusFilter?: ImaMaterialCheckStatusDto[] | null;
|
|
8396
8437
|
continuationToken?: string | null;
|
|
8397
8438
|
}
|
|
8398
8439
|
export interface ImaMaterialChecksPageOrderRequestDto {
|
|
8399
|
-
column?:
|
|
8400
|
-
direction?:
|
|
8440
|
+
column?: ImaMaterialChecksOrderByColumnDto;
|
|
8441
|
+
direction?: ImaOrderDirectionDto;
|
|
8401
8442
|
}
|
|
8402
|
-
export type
|
|
8403
|
-
export type
|
|
8443
|
+
export type ImaMaterialChecksOrderByColumnDto = "FileName" | "PurchaseOrder" | "Line" | "VendorBatch" | "Part" | "Drawing" | "Heat" | "CertificateType" | "Specification" | "GeneratedReport" | "Project" | "CustomerOrder" | "WorkOrder" | "Date" | "Status";
|
|
8444
|
+
export type ImaOrderDirectionDto = "Asc" | "Desc";
|
|
8404
8445
|
export interface ProcessMaterialCertificate {
|
|
8405
8446
|
files: UploadFileCdfDto[];
|
|
8406
8447
|
specificationId: string;
|
|
@@ -8505,7 +8546,7 @@ export interface ImaUpdateMatchSettingsColumnsDto {
|
|
|
8505
8546
|
date: boolean;
|
|
8506
8547
|
status: boolean;
|
|
8507
8548
|
}
|
|
8508
|
-
export interface ImaSpecificationDto
|
|
8549
|
+
export interface ImaSpecificationDto {
|
|
8509
8550
|
specificationId: string;
|
|
8510
8551
|
version: number;
|
|
8511
8552
|
allVersions: ImaSpecificationVersionDto[];
|
|
@@ -8513,16 +8554,16 @@ export interface ImaSpecificationDto extends ImaCdfEntityReadBase {
|
|
|
8513
8554
|
number: string;
|
|
8514
8555
|
revision: string;
|
|
8515
8556
|
date: Date;
|
|
8516
|
-
status:
|
|
8557
|
+
status: ImaSpecificationStatusDto;
|
|
8517
8558
|
summary?: string | null;
|
|
8518
8559
|
relatedStandards: string[];
|
|
8519
8560
|
created: Date;
|
|
8520
8561
|
createdBy: string;
|
|
8521
8562
|
createdById: string;
|
|
8522
|
-
createdByName
|
|
8563
|
+
createdByName?: string | null;
|
|
8523
8564
|
updatedBy: string;
|
|
8524
8565
|
updatedById: string;
|
|
8525
|
-
updatedByName
|
|
8566
|
+
updatedByName?: string | null;
|
|
8526
8567
|
updated: Date;
|
|
8527
8568
|
isDeleted: boolean;
|
|
8528
8569
|
chemistrySpecification: ImaChemistrySpecificationDto;
|
|
@@ -8532,9 +8573,9 @@ export interface ImaSpecificationDto extends ImaCdfEntityReadBase {
|
|
|
8532
8573
|
}
|
|
8533
8574
|
export interface ImaSpecificationVersionDto {
|
|
8534
8575
|
version?: number;
|
|
8535
|
-
status?:
|
|
8576
|
+
status?: ImaSpecificationStatusDto;
|
|
8536
8577
|
}
|
|
8537
|
-
export interface ImaChemistrySpecificationDto
|
|
8578
|
+
export interface ImaChemistrySpecificationDto {
|
|
8538
8579
|
carbon?: ImaSpecificationLineDto | null;
|
|
8539
8580
|
manganese?: ImaSpecificationLineDto | null;
|
|
8540
8581
|
silicon?: ImaSpecificationLineDto | null;
|
|
@@ -8552,7 +8593,7 @@ export interface ImaSpecificationLineDto extends ImaCdfEntityReadBase {
|
|
|
8552
8593
|
min?: number | null;
|
|
8553
8594
|
max?: number | null;
|
|
8554
8595
|
}
|
|
8555
|
-
export interface ImaMechanicalSpecificationDto
|
|
8596
|
+
export interface ImaMechanicalSpecificationDto {
|
|
8556
8597
|
yieldStrength?: ImaSpecificationLineDto | null;
|
|
8557
8598
|
tensileStrength?: ImaSpecificationLineDto | null;
|
|
8558
8599
|
elongation?: ImaSpecificationLineDto | null;
|
|
@@ -8560,26 +8601,26 @@ export interface ImaMechanicalSpecificationDto extends ImaCdfEntityReadBase {
|
|
|
8560
8601
|
impactEnergy?: ImaSpecificationLineDto | null;
|
|
8561
8602
|
hardness?: ImaSpecificationLineDto | null;
|
|
8562
8603
|
}
|
|
8563
|
-
export interface ImaFerriteSpecificationDto
|
|
8604
|
+
export interface ImaFerriteSpecificationDto {
|
|
8564
8605
|
ferriteContent?: ImaSpecificationLineDto | null;
|
|
8565
8606
|
}
|
|
8566
|
-
export interface ImaHeatTreatmentSpecificationDto
|
|
8607
|
+
export interface ImaHeatTreatmentSpecificationDto {
|
|
8567
8608
|
step: number;
|
|
8568
8609
|
cooling?: ImaHeatTreatmentSpecificationCoolingDto | null;
|
|
8569
8610
|
heating?: ImaHeatTreatmentSpecificationHeatingDto | null;
|
|
8570
8611
|
}
|
|
8571
|
-
export interface ImaHeatTreatmentSpecificationCoolingDto
|
|
8572
|
-
coolingMethods:
|
|
8612
|
+
export interface ImaHeatTreatmentSpecificationCoolingDto {
|
|
8613
|
+
coolingMethods: ImaHeatTreatmentCoolingMethodDto[];
|
|
8573
8614
|
temperature?: ImaSpecificationLineDto | null;
|
|
8574
8615
|
duration?: ImaSpecificationLineDto | null;
|
|
8575
8616
|
}
|
|
8576
|
-
export type
|
|
8577
|
-
export interface ImaHeatTreatmentSpecificationHeatingDto
|
|
8578
|
-
heatingMethod:
|
|
8617
|
+
export type ImaHeatTreatmentCoolingMethodDto = "NoCoolingMethod" | "AirCooling" | "FurnaceCooling" | "OilQuenching" | "PolymerQuenching" | "WaterQuenching" | "NotSet";
|
|
8618
|
+
export interface ImaHeatTreatmentSpecificationHeatingDto {
|
|
8619
|
+
heatingMethod: ImaHeatTreatmentHeatingMethodDto;
|
|
8579
8620
|
temperature?: ImaSpecificationLineDto | null;
|
|
8580
8621
|
duration?: ImaSpecificationLineDto | null;
|
|
8581
8622
|
}
|
|
8582
|
-
export type
|
|
8623
|
+
export type ImaHeatTreatmentHeatingMethodDto = "Annealing" | "Austenitizing" | "Hardening" | "Normalizing" | "SolutionAnnealing" | "StressRelieving" | "Tempering" | "NotSet";
|
|
8583
8624
|
export interface ImaCreateSpecificationRequestDto {
|
|
8584
8625
|
name: string;
|
|
8585
8626
|
number: string;
|
|
@@ -8596,7 +8637,7 @@ export interface ImaCopySpecificationRequestDto {
|
|
|
8596
8637
|
export interface ImaUpdateSpecificationDto {
|
|
8597
8638
|
name?: string | null;
|
|
8598
8639
|
number?: string | null;
|
|
8599
|
-
status?:
|
|
8640
|
+
status?: ImaSpecificationStatusDto | null;
|
|
8600
8641
|
summary?: string | null;
|
|
8601
8642
|
relatedStandards?: string[] | null;
|
|
8602
8643
|
chemistrySpecification?: ImaChemistrySpecificationDto | null;
|
|
@@ -8604,23 +8645,24 @@ export interface ImaUpdateSpecificationDto {
|
|
|
8604
8645
|
ferriteSpecification?: ImaFerriteSpecificationDto | null;
|
|
8605
8646
|
heatSpecifications?: ImaHeatTreatmentSpecificationDto[] | null;
|
|
8606
8647
|
}
|
|
8607
|
-
export interface ImaSpecificationLiteDto
|
|
8648
|
+
export interface ImaSpecificationLiteDto {
|
|
8608
8649
|
specificationId: string;
|
|
8609
8650
|
version: number;
|
|
8610
8651
|
name: string;
|
|
8611
8652
|
number: string;
|
|
8612
8653
|
revision: string;
|
|
8613
8654
|
date: Date;
|
|
8614
|
-
status:
|
|
8655
|
+
status: ImaSpecificationStatusDto;
|
|
8615
8656
|
summary?: string | null;
|
|
8616
8657
|
relatedStandards: string[];
|
|
8617
8658
|
created: Date;
|
|
8618
8659
|
createdBy: string;
|
|
8619
8660
|
createdById: string;
|
|
8620
|
-
createdByName
|
|
8661
|
+
createdByName?: string | null;
|
|
8621
8662
|
updatedBy: string;
|
|
8622
8663
|
updatedById: string;
|
|
8623
|
-
updatedByName
|
|
8664
|
+
updatedByName?: string | null;
|
|
8665
|
+
updated: Date;
|
|
8624
8666
|
isDeleted: boolean;
|
|
8625
8667
|
}
|
|
8626
8668
|
export interface MeasurementFormSchemaDto {
|