@ignos/api-client 20260810.213.1-alpha → 20260810.215.1-alpha
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/ignosportal-api.d.ts +135 -46
- package/lib/ignosportal-api.js +5 -1
- package/package.json +1 -1
- package/src/ignosportal-api.ts +153 -53
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -2522,7 +2522,7 @@ export interface IMesProductionOrderAttachmentClient {
|
|
|
2522
2522
|
* @param url (optional)
|
|
2523
2523
|
*/
|
|
2524
2524
|
upload(id: string, type: ProductionOrderAttachmentType | undefined, description: string | null | undefined, file: FileParameter | null | undefined, notes: string | null | undefined, url: string | null | undefined): Promise<void>;
|
|
2525
|
-
getAttachments(id: string): Promise<
|
|
2525
|
+
getAttachments(id: string): Promise<ProductionOrderAttachmentDto[]>;
|
|
2526
2526
|
/**
|
|
2527
2527
|
* Update an existing Note or Url attachment in place
|
|
2528
2528
|
*/
|
|
@@ -2546,8 +2546,8 @@ export declare class MesProductionOrderAttachmentClient extends AuthorizedApiBas
|
|
|
2546
2546
|
*/
|
|
2547
2547
|
upload(id: string, type: ProductionOrderAttachmentType | undefined, description: string | null | undefined, file: FileParameter | null | undefined, notes: string | null | undefined, url: string | null | undefined): Promise<void>;
|
|
2548
2548
|
protected processUpload(response: Response): Promise<void>;
|
|
2549
|
-
getAttachments(id: string): Promise<
|
|
2550
|
-
protected processGetAttachments(response: Response): Promise<
|
|
2549
|
+
getAttachments(id: string): Promise<ProductionOrderAttachmentDto[]>;
|
|
2550
|
+
protected processGetAttachments(response: Response): Promise<ProductionOrderAttachmentDto[]>;
|
|
2551
2551
|
/**
|
|
2552
2552
|
* Update an existing Note or Url attachment in place
|
|
2553
2553
|
*/
|
|
@@ -2595,7 +2595,7 @@ export declare class MesProductionOrderClient extends AuthorizedApiBase implemen
|
|
|
2595
2595
|
protected processListProductionOrderActivities(response: Response): Promise<ProductionOrderOperationActivityDto[]>;
|
|
2596
2596
|
}
|
|
2597
2597
|
export interface IMesProductionScheduleClient {
|
|
2598
|
-
listProductionScheduleOperations(resourceGroup: string | null | undefined, resourceId: string | null | undefined, departmentNumber: string | null | undefined, pageSize: number | undefined, continuationToken: string | null | undefined, workOrderId: string | null | undefined, projectId: string | null | undefined, partNumber: string | null | undefined, partName: string | null | undefined, material: string | null | undefined): Promise<PagedResultOfProductionScheduleOperationDto>;
|
|
2598
|
+
listProductionScheduleOperations(resourceGroup: string | null | undefined, resourceId: string | null | undefined, departmentNumber: string | null | undefined, pageSize: number | undefined, continuationToken: string | null | undefined, workOrderId: string | null | undefined, projectId: string | null | undefined, partNumber: string | null | undefined, partName: string | null | undefined, material: string | null | undefined, includeDiscussionSummary: boolean | undefined): Promise<PagedResultOfProductionScheduleOperationDto>;
|
|
2599
2599
|
postListProductionScheduleOperations(request: ListProductionScheduleOperationsRequest | undefined): Promise<PagedResultOfProductionScheduleOperationDto>;
|
|
2600
2600
|
getAvailableProductionScheduleFilters(request: GetAvailableProductionScheduleFiltersRequest | undefined): Promise<ProductionScheduleFiltersDto>;
|
|
2601
2601
|
listMyCurrentWorkActivities(): Promise<CurrentWorkActivityDto>;
|
|
@@ -2609,7 +2609,7 @@ export declare class MesProductionScheduleClient extends AuthorizedApiBase imple
|
|
|
2609
2609
|
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
2610
2610
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2611
2611
|
});
|
|
2612
|
-
listProductionScheduleOperations(resourceGroup: string | null | undefined, resourceId: string | null | undefined, departmentNumber: string | null | undefined, pageSize: number | undefined, continuationToken: string | null | undefined, workOrderId: string | null | undefined, projectId: string | null | undefined, partNumber: string | null | undefined, partName: string | null | undefined, material: string | null | undefined): Promise<PagedResultOfProductionScheduleOperationDto>;
|
|
2612
|
+
listProductionScheduleOperations(resourceGroup: string | null | undefined, resourceId: string | null | undefined, departmentNumber: string | null | undefined, pageSize: number | undefined, continuationToken: string | null | undefined, workOrderId: string | null | undefined, projectId: string | null | undefined, partNumber: string | null | undefined, partName: string | null | undefined, material: string | null | undefined, includeDiscussionSummary: boolean | undefined): Promise<PagedResultOfProductionScheduleOperationDto>;
|
|
2613
2613
|
protected processListProductionScheduleOperations(response: Response): Promise<PagedResultOfProductionScheduleOperationDto>;
|
|
2614
2614
|
postListProductionScheduleOperations(request: ListProductionScheduleOperationsRequest | undefined): Promise<PagedResultOfProductionScheduleOperationDto>;
|
|
2615
2615
|
protected processPostListProductionScheduleOperations(response: Response): Promise<PagedResultOfProductionScheduleOperationDto>;
|
|
@@ -4846,12 +4846,19 @@ export interface MrbInstanceRevisionDto {
|
|
|
4846
4846
|
status: DocumentStatus;
|
|
4847
4847
|
statusDate: Date;
|
|
4848
4848
|
sentToCustomerInfo?: MrbSentInfoDto | null;
|
|
4849
|
+
contentStatus?: MrbContentDocumentStatusDto | null;
|
|
4849
4850
|
}
|
|
4850
4851
|
export type DocumentStatus = "None" | "Draft" | "ForInternalApproval" | "InternalRejected" | "Approved" | "Voided";
|
|
4851
4852
|
export interface MrbSentInfoDto {
|
|
4852
4853
|
sentTime: Date;
|
|
4853
4854
|
sentBy: UserDto;
|
|
4854
4855
|
}
|
|
4856
|
+
export interface MrbContentDocumentStatusDto {
|
|
4857
|
+
total: number;
|
|
4858
|
+
ready: number;
|
|
4859
|
+
missing: number;
|
|
4860
|
+
optional: number;
|
|
4861
|
+
}
|
|
4855
4862
|
export interface MrbPartDto {
|
|
4856
4863
|
partNumber?: string | null;
|
|
4857
4864
|
partName?: string | null;
|
|
@@ -4904,12 +4911,6 @@ export interface MrbExtraDocumentDto {
|
|
|
4904
4911
|
url: string;
|
|
4905
4912
|
documentType: string;
|
|
4906
4913
|
}
|
|
4907
|
-
export interface MrbContentDocumentStatusDto {
|
|
4908
|
-
total: number;
|
|
4909
|
-
ready: number;
|
|
4910
|
-
missing: number;
|
|
4911
|
-
optional: number;
|
|
4912
|
-
}
|
|
4913
4914
|
export interface MrbPdfExportJobDto {
|
|
4914
4915
|
jobId: string;
|
|
4915
4916
|
mrbInstanceId: string;
|
|
@@ -7434,7 +7435,6 @@ export interface ListProductionOrdersRequest {
|
|
|
7434
7435
|
export interface PlannerPlanDto {
|
|
7435
7436
|
resourceGroupId: string;
|
|
7436
7437
|
sequence: PlannerOperationDto[];
|
|
7437
|
-
lockedCount: number;
|
|
7438
7438
|
planSavedAt?: Date | null;
|
|
7439
7439
|
isDraft: boolean;
|
|
7440
7440
|
publishedETag?: string | null;
|
|
@@ -7463,10 +7463,43 @@ export interface PlannerOperationDto {
|
|
|
7463
7463
|
project?: WorkOrderProjectDto | null;
|
|
7464
7464
|
sequenceNumber: number;
|
|
7465
7465
|
isManuallyLocked: boolean;
|
|
7466
|
+
lockType: PlannerLockType;
|
|
7467
|
+
isNewOperation: boolean;
|
|
7466
7468
|
weekGroup: string;
|
|
7467
7469
|
programStatus?: ProgramStatus | null;
|
|
7470
|
+
hasNotes?: boolean;
|
|
7471
|
+
notesUnread?: boolean;
|
|
7472
|
+
availableToStartQuantity: number;
|
|
7473
|
+
earlierOperationsScrappedQuantity: number;
|
|
7474
|
+
startedQuantity?: number | null;
|
|
7475
|
+
prerequisites: OperationPrerequisitesDto;
|
|
7476
|
+
drawing?: DrawingDto | null;
|
|
7477
|
+
drawingNumber?: string | null;
|
|
7478
|
+
description?: string | null;
|
|
7468
7479
|
}
|
|
7480
|
+
export type PlannerLockType = "None" | "Manual" | "Auto";
|
|
7469
7481
|
export type ProgramStatus = "Blank" | "NotOk" | "Ok";
|
|
7482
|
+
export interface OperationPrerequisitesDto {
|
|
7483
|
+
drawing?: boolean | null;
|
|
7484
|
+
materials: MaterialsPrerequisiteDto;
|
|
7485
|
+
cncProgram?: boolean | null;
|
|
7486
|
+
}
|
|
7487
|
+
export interface MaterialsPrerequisiteDto {
|
|
7488
|
+
numberOfPartsCoveredByOnHand?: number | null;
|
|
7489
|
+
materialStatus?: MaterialStatusDto;
|
|
7490
|
+
}
|
|
7491
|
+
export type MaterialStatusDto = "NotRequired" | "NotAvailable" | "PartiallyAvailable" | "Available" | "FullyConsumed" | "Unknown";
|
|
7492
|
+
export interface DrawingDto {
|
|
7493
|
+
drawingNumber: string;
|
|
7494
|
+
revision: string;
|
|
7495
|
+
status: string;
|
|
7496
|
+
files: DrawingFileDto[];
|
|
7497
|
+
}
|
|
7498
|
+
export interface DrawingFileDto {
|
|
7499
|
+
id: number;
|
|
7500
|
+
name: string;
|
|
7501
|
+
comment?: string;
|
|
7502
|
+
}
|
|
7470
7503
|
export interface WeekCapacityDto {
|
|
7471
7504
|
weekGroup: string;
|
|
7472
7505
|
weekStart: Date;
|
|
@@ -7483,7 +7516,6 @@ persisted active plan (draft, else published) is published instead. */
|
|
|
7483
7516
|
}
|
|
7484
7517
|
export interface PlannerSequenceInput {
|
|
7485
7518
|
orderedOperationKeys: string[];
|
|
7486
|
-
lockedCount: number;
|
|
7487
7519
|
weekGroups?: {
|
|
7488
7520
|
[key: string]: string;
|
|
7489
7521
|
} | null;
|
|
@@ -7495,7 +7527,6 @@ export interface PlannerPlanEventDto {
|
|
|
7495
7527
|
by?: string | null;
|
|
7496
7528
|
comment?: string | null;
|
|
7497
7529
|
operationCount: number;
|
|
7498
|
-
lockedCount: number;
|
|
7499
7530
|
}
|
|
7500
7531
|
export type PlannerEventType = "Published" | "DraftSaved" | "ResetToErp";
|
|
7501
7532
|
export interface SetProgramStatus {
|
|
@@ -7510,17 +7541,14 @@ export interface UpdateProductionOrderAttachmentRequest {
|
|
|
7510
7541
|
notes?: string | null;
|
|
7511
7542
|
url?: string | null;
|
|
7512
7543
|
}
|
|
7513
|
-
export interface
|
|
7514
|
-
|
|
7515
|
-
created?: Date | null;
|
|
7516
|
-
modifiedBy?: UserDto | null;
|
|
7517
|
-
modified?: Date | null;
|
|
7518
|
-
attachmentId?: number | null;
|
|
7544
|
+
export interface ProductionOrderAttachmentDto {
|
|
7545
|
+
attachmentId: number;
|
|
7519
7546
|
name?: string | null;
|
|
7520
7547
|
fileName?: string | null;
|
|
7521
7548
|
notes?: string | null;
|
|
7522
7549
|
attachmentType?: ProductionOrderAttachmentType | null;
|
|
7523
|
-
|
|
7550
|
+
addedBy?: string | null;
|
|
7551
|
+
canDelete: boolean;
|
|
7524
7552
|
}
|
|
7525
7553
|
export interface ProductionOrderDto {
|
|
7526
7554
|
id: string;
|
|
@@ -7580,16 +7608,16 @@ export interface ProductionOrderOperationDto {
|
|
|
7580
7608
|
productionStatus: OperationStatusDto;
|
|
7581
7609
|
setupStatus?: OperationStatusDto | null;
|
|
7582
7610
|
}
|
|
7583
|
-
export interface
|
|
7584
|
-
|
|
7585
|
-
|
|
7586
|
-
|
|
7587
|
-
|
|
7588
|
-
|
|
7589
|
-
|
|
7590
|
-
|
|
7591
|
-
|
|
7592
|
-
|
|
7611
|
+
export interface WorkOrderAttachmentDto {
|
|
7612
|
+
createdBy?: UserDto | null;
|
|
7613
|
+
created?: Date | null;
|
|
7614
|
+
modifiedBy?: UserDto | null;
|
|
7615
|
+
modified?: Date | null;
|
|
7616
|
+
attachmentId?: number | null;
|
|
7617
|
+
name?: string | null;
|
|
7618
|
+
fileName?: string | null;
|
|
7619
|
+
notes?: string | null;
|
|
7620
|
+
attachmentType?: ProductionOrderAttachmentType | null;
|
|
7593
7621
|
}
|
|
7594
7622
|
export interface ProductionOrderBomDto {
|
|
7595
7623
|
position: string;
|
|
@@ -7780,6 +7808,8 @@ export interface ProductionScheduleOperationDto {
|
|
|
7780
7808
|
productionStatus: OperationStatusDto;
|
|
7781
7809
|
setupStatus?: OperationStatusDto | null;
|
|
7782
7810
|
programStatus?: ProgramStatus | null;
|
|
7811
|
+
hasNotes: boolean;
|
|
7812
|
+
notesUnread: boolean;
|
|
7783
7813
|
}
|
|
7784
7814
|
export interface SurroundingOperationDto {
|
|
7785
7815
|
id: string;
|
|
@@ -7800,16 +7830,6 @@ export interface SurroundingOperationDto {
|
|
|
7800
7830
|
earlierOperationsScrappedQuantity: number;
|
|
7801
7831
|
startedQuantity?: number | null;
|
|
7802
7832
|
}
|
|
7803
|
-
export interface OperationPrerequisitesDto {
|
|
7804
|
-
drawing?: boolean | null;
|
|
7805
|
-
materials: MaterialsPrerequisiteDto;
|
|
7806
|
-
cncProgram?: boolean | null;
|
|
7807
|
-
}
|
|
7808
|
-
export interface MaterialsPrerequisiteDto {
|
|
7809
|
-
numberOfPartsCoveredByOnHand?: number | null;
|
|
7810
|
-
materialStatus?: MaterialStatusDto;
|
|
7811
|
-
}
|
|
7812
|
-
export type MaterialStatusDto = "NotRequired" | "NotAvailable" | "PartiallyAvailable" | "Available" | "FullyConsumed" | "Unknown";
|
|
7813
7833
|
export type MaterialPickStatus = "NotRequired" | "NotStarted" | "Started" | "Completed" | "Unknown";
|
|
7814
7834
|
export interface ListProductionScheduleOperationsRequest {
|
|
7815
7835
|
resourceGroup?: string | null;
|
|
@@ -7841,6 +7861,7 @@ export interface ListProductionScheduleOperationsRequest {
|
|
|
7841
7861
|
operationStatuses?: OperationStatusDto[] | null;
|
|
7842
7862
|
after?: Date | null;
|
|
7843
7863
|
before?: Date | null;
|
|
7864
|
+
includeDiscussionSummary?: boolean;
|
|
7844
7865
|
}
|
|
7845
7866
|
export interface ProductionScheduleFiltersDto {
|
|
7846
7867
|
partNumbers?: FilterValueWithQuantity[];
|
|
@@ -8384,7 +8405,7 @@ export interface ImaChemicalAnalysisResultDto {
|
|
|
8384
8405
|
sampleReference?: string | null;
|
|
8385
8406
|
analysisType?: string | null;
|
|
8386
8407
|
elements: ImaChemicalAnalysisElementsResultDto;
|
|
8387
|
-
|
|
8408
|
+
composite: ImaChemicalAnalysisCompositeResultDto;
|
|
8388
8409
|
testStandards: string[];
|
|
8389
8410
|
}
|
|
8390
8411
|
export interface ImaChemicalAnalysisElementsResultDto {
|
|
@@ -8426,9 +8447,21 @@ export interface ImaSpecificationResultLineDto {
|
|
|
8426
8447
|
override?: ImaResultLineOverrideDto | null;
|
|
8427
8448
|
}
|
|
8428
8449
|
export type ImaSpecificationResultLineStatusDto = "NotFound" | "NotOk" | "Ok" | "NotSet";
|
|
8429
|
-
export interface
|
|
8430
|
-
|
|
8431
|
-
|
|
8450
|
+
export interface ImaChemicalAnalysisCompositeResultDto {
|
|
8451
|
+
pren?: ImaSpecificationCalculatedResultLineDto | null;
|
|
8452
|
+
pren22?: ImaSpecificationCalculatedResultLineDto | null;
|
|
8453
|
+
pren30?: ImaSpecificationCalculatedResultLineDto | null;
|
|
8454
|
+
prenW?: ImaSpecificationCalculatedResultLineDto | null;
|
|
8455
|
+
v_Nb_Ti?: ImaSpecificationCalculatedResultLineDto | null;
|
|
8456
|
+
ce?: ImaSpecificationCalculatedResultLineDto | null;
|
|
8457
|
+
}
|
|
8458
|
+
export interface ImaSpecificationCalculatedResultLineDto {
|
|
8459
|
+
specificationMin?: number | null;
|
|
8460
|
+
specificationMax?: number | null;
|
|
8461
|
+
readValue?: string | null;
|
|
8462
|
+
calculatedValue?: string | null;
|
|
8463
|
+
errorString?: string | null;
|
|
8464
|
+
status: ImaSpecificationResultLineStatusDto;
|
|
8432
8465
|
override?: ImaResultLineOverrideDto | null;
|
|
8433
8466
|
}
|
|
8434
8467
|
export interface ImaTensileTestResultDto {
|
|
@@ -8539,7 +8572,7 @@ export interface ImaDocumentTypesResultsDto {
|
|
|
8539
8572
|
}
|
|
8540
8573
|
export interface ImaOverrideMaterialCheckRequestDto {
|
|
8541
8574
|
certificateTypeSection?: ImaOverrideCertificateTypeResultsDto | null;
|
|
8542
|
-
chemicalAnalysisSection?:
|
|
8575
|
+
chemicalAnalysisSection?: ImaOverrideChemicalAnalysisResultsDto[] | null;
|
|
8543
8576
|
tensileTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8544
8577
|
hardnessTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8545
8578
|
impactTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
@@ -8599,6 +8632,52 @@ export interface ImaOverrideCertificateTypeProductAndOrderInformationResultsDto
|
|
|
8599
8632
|
export interface ImaOverrideCertificateTypeTestMethodsAndReferencesResultsDto {
|
|
8600
8633
|
usedStandards?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8601
8634
|
}
|
|
8635
|
+
export interface ImaOverrideChemicalAnalysisResultsDto {
|
|
8636
|
+
heatNumber?: string | null;
|
|
8637
|
+
sampleReference?: string | null;
|
|
8638
|
+
analysisType?: string | null;
|
|
8639
|
+
elements?: ImaOverrideChemicalAnalysisElementsResultsDto | null;
|
|
8640
|
+
composite?: ImaOverrideChemicalAnalysisCompositeResultsDto | null;
|
|
8641
|
+
}
|
|
8642
|
+
export interface ImaOverrideChemicalAnalysisElementsResultsDto {
|
|
8643
|
+
carbon?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8644
|
+
manganese?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8645
|
+
silicon?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8646
|
+
phosphorus?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8647
|
+
sulfur?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8648
|
+
chromium?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8649
|
+
nickel?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8650
|
+
molybdenum?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8651
|
+
copper?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8652
|
+
nitrogen?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8653
|
+
wolfram?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8654
|
+
titanium?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8655
|
+
aluminum?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8656
|
+
niobium?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8657
|
+
tantalum?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8658
|
+
cobalt?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8659
|
+
boron?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8660
|
+
lead?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8661
|
+
selenium?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8662
|
+
bismuth?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8663
|
+
iron?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8664
|
+
vanadium?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8665
|
+
oxygen?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8666
|
+
calcium?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8667
|
+
arsenic?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8668
|
+
tin?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8669
|
+
antimony?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8670
|
+
hydrogen?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8671
|
+
zirconium?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8672
|
+
}
|
|
8673
|
+
export interface ImaOverrideChemicalAnalysisCompositeResultsDto {
|
|
8674
|
+
pren?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8675
|
+
pren22?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8676
|
+
pren30?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8677
|
+
prenW?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8678
|
+
v_Nb_Ti?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8679
|
+
ce?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8680
|
+
}
|
|
8602
8681
|
export interface ImaOverrideDocumentTypesResultsDto {
|
|
8603
8682
|
ultrasonicControlCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8604
8683
|
radiologicalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
@@ -8813,6 +8892,7 @@ export interface ImaSpecificationDto {
|
|
|
8813
8892
|
updated: Date;
|
|
8814
8893
|
isDeleted: boolean;
|
|
8815
8894
|
chemistrySpecification: ImaChemistrySpecificationDto;
|
|
8895
|
+
chemistryCompositeSpecification: ImaChemistryCompositeSpecificationDto;
|
|
8816
8896
|
mechanicalSpecification: ImaMechanicalSpecificationDto;
|
|
8817
8897
|
ferriteSpecification: ImaFerriteSpecificationDto;
|
|
8818
8898
|
documentTypesSpecification: ImaDocumentTypesSpecificationDto;
|
|
@@ -8857,6 +8937,14 @@ export interface ImaSpecificationLineDto {
|
|
|
8857
8937
|
min?: number | null;
|
|
8858
8938
|
max?: number | null;
|
|
8859
8939
|
}
|
|
8940
|
+
export interface ImaChemistryCompositeSpecificationDto {
|
|
8941
|
+
pren?: ImaSpecificationLineDto | null;
|
|
8942
|
+
pren22?: ImaSpecificationLineDto | null;
|
|
8943
|
+
pren30?: ImaSpecificationLineDto | null;
|
|
8944
|
+
prenW?: ImaSpecificationLineDto | null;
|
|
8945
|
+
v_Nb_Ti?: boolean | null;
|
|
8946
|
+
ce?: boolean | null;
|
|
8947
|
+
}
|
|
8860
8948
|
export interface ImaMechanicalSpecificationDto {
|
|
8861
8949
|
yieldStrength?: ImaSpecificationLineDto | null;
|
|
8862
8950
|
tensileStrength?: ImaSpecificationLineDto | null;
|
|
@@ -8916,6 +9004,7 @@ export interface ImaUpdateSpecificationDto {
|
|
|
8916
9004
|
summary?: string | null;
|
|
8917
9005
|
relatedStandards?: string[] | null;
|
|
8918
9006
|
chemistrySpecification?: ImaChemistrySpecificationDto | null;
|
|
9007
|
+
chemistryCompositeSpecification?: ImaChemistryCompositeSpecificationDto | null;
|
|
8919
9008
|
mechanicalSpecification?: ImaMechanicalSpecificationDto | null;
|
|
8920
9009
|
ferriteSpecification?: ImaFerriteSpecificationDto | null;
|
|
8921
9010
|
documentTypesSpecification?: ImaDocumentTypesSpecificationDto | null;
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -21626,7 +21626,7 @@ export class MesProductionScheduleClient extends AuthorizedApiBase {
|
|
|
21626
21626
|
this.http = http ? http : window;
|
|
21627
21627
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
21628
21628
|
}
|
|
21629
|
-
listProductionScheduleOperations(resourceGroup, resourceId, departmentNumber, pageSize, continuationToken, workOrderId, projectId, partNumber, partName, material) {
|
|
21629
|
+
listProductionScheduleOperations(resourceGroup, resourceId, departmentNumber, pageSize, continuationToken, workOrderId, projectId, partNumber, partName, material, includeDiscussionSummary) {
|
|
21630
21630
|
let url_ = this.baseUrl + "/mes/productionschedule?";
|
|
21631
21631
|
if (resourceGroup !== undefined && resourceGroup !== null)
|
|
21632
21632
|
url_ += "resourceGroup=" + encodeURIComponent("" + resourceGroup) + "&";
|
|
@@ -21650,6 +21650,10 @@ export class MesProductionScheduleClient extends AuthorizedApiBase {
|
|
|
21650
21650
|
url_ += "partName=" + encodeURIComponent("" + partName) + "&";
|
|
21651
21651
|
if (material !== undefined && material !== null)
|
|
21652
21652
|
url_ += "material=" + encodeURIComponent("" + material) + "&";
|
|
21653
|
+
if (includeDiscussionSummary === null)
|
|
21654
|
+
throw new globalThis.Error("The parameter 'includeDiscussionSummary' cannot be null.");
|
|
21655
|
+
else if (includeDiscussionSummary !== undefined)
|
|
21656
|
+
url_ += "includeDiscussionSummary=" + encodeURIComponent("" + includeDiscussionSummary) + "&";
|
|
21653
21657
|
url_ = url_.replace(/[?&]$/, "");
|
|
21654
21658
|
let options_ = {
|
|
21655
21659
|
method: "GET",
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -22462,7 +22462,7 @@ export interface IMesProductionOrderAttachmentClient {
|
|
|
22462
22462
|
*/
|
|
22463
22463
|
upload(id: string, type: ProductionOrderAttachmentType | undefined, description: string | null | undefined, file: FileParameter | null | undefined, notes: string | null | undefined, url: string | null | undefined): Promise<void>;
|
|
22464
22464
|
|
|
22465
|
-
getAttachments(id: string): Promise<
|
|
22465
|
+
getAttachments(id: string): Promise<ProductionOrderAttachmentDto[]>;
|
|
22466
22466
|
|
|
22467
22467
|
/**
|
|
22468
22468
|
* Update an existing Note or Url attachment in place
|
|
@@ -22542,7 +22542,7 @@ export class MesProductionOrderAttachmentClient extends AuthorizedApiBase implem
|
|
|
22542
22542
|
return Promise.resolve<void>(null as any);
|
|
22543
22543
|
}
|
|
22544
22544
|
|
|
22545
|
-
getAttachments(id: string): Promise<
|
|
22545
|
+
getAttachments(id: string): Promise<ProductionOrderAttachmentDto[]> {
|
|
22546
22546
|
let url_ = this.baseUrl + "/mes/productionorders/{id}/attachments";
|
|
22547
22547
|
if (id === undefined || id === null)
|
|
22548
22548
|
throw new globalThis.Error("The parameter 'id' must be defined.");
|
|
@@ -22563,13 +22563,13 @@ export class MesProductionOrderAttachmentClient extends AuthorizedApiBase implem
|
|
|
22563
22563
|
});
|
|
22564
22564
|
}
|
|
22565
22565
|
|
|
22566
|
-
protected processGetAttachments(response: Response): Promise<
|
|
22566
|
+
protected processGetAttachments(response: Response): Promise<ProductionOrderAttachmentDto[]> {
|
|
22567
22567
|
const status = response.status;
|
|
22568
22568
|
let _headers: any = {}; if (response.headers && response.headers.forEach) { response.headers.forEach((v: any, k: any) => _headers[k] = v); };
|
|
22569
22569
|
if (status === 200) {
|
|
22570
22570
|
return response.text().then((_responseText) => {
|
|
22571
22571
|
let result200: any = null;
|
|
22572
|
-
result200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver) as
|
|
22572
|
+
result200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver) as ProductionOrderAttachmentDto[];
|
|
22573
22573
|
return result200;
|
|
22574
22574
|
});
|
|
22575
22575
|
} else if (status !== 200 && status !== 204) {
|
|
@@ -22577,7 +22577,7 @@ export class MesProductionOrderAttachmentClient extends AuthorizedApiBase implem
|
|
|
22577
22577
|
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
22578
22578
|
});
|
|
22579
22579
|
}
|
|
22580
|
-
return Promise.resolve<
|
|
22580
|
+
return Promise.resolve<ProductionOrderAttachmentDto[]>(null as any);
|
|
22581
22581
|
}
|
|
22582
22582
|
|
|
22583
22583
|
/**
|
|
@@ -23105,7 +23105,7 @@ export class MesProductionOrderClient extends AuthorizedApiBase implements IMesP
|
|
|
23105
23105
|
|
|
23106
23106
|
export interface IMesProductionScheduleClient {
|
|
23107
23107
|
|
|
23108
|
-
listProductionScheduleOperations(resourceGroup: string | null | undefined, resourceId: string | null | undefined, departmentNumber: string | null | undefined, pageSize: number | undefined, continuationToken: string | null | undefined, workOrderId: string | null | undefined, projectId: string | null | undefined, partNumber: string | null | undefined, partName: string | null | undefined, material: string | null | undefined): Promise<PagedResultOfProductionScheduleOperationDto>;
|
|
23108
|
+
listProductionScheduleOperations(resourceGroup: string | null | undefined, resourceId: string | null | undefined, departmentNumber: string | null | undefined, pageSize: number | undefined, continuationToken: string | null | undefined, workOrderId: string | null | undefined, projectId: string | null | undefined, partNumber: string | null | undefined, partName: string | null | undefined, material: string | null | undefined, includeDiscussionSummary: boolean | undefined): Promise<PagedResultOfProductionScheduleOperationDto>;
|
|
23109
23109
|
|
|
23110
23110
|
postListProductionScheduleOperations(request: ListProductionScheduleOperationsRequest | undefined): Promise<PagedResultOfProductionScheduleOperationDto>;
|
|
23111
23111
|
|
|
@@ -23130,7 +23130,7 @@ export class MesProductionScheduleClient extends AuthorizedApiBase implements IM
|
|
|
23130
23130
|
this.baseUrl = baseUrl ?? "";
|
|
23131
23131
|
}
|
|
23132
23132
|
|
|
23133
|
-
listProductionScheduleOperations(resourceGroup: string | null | undefined, resourceId: string | null | undefined, departmentNumber: string | null | undefined, pageSize: number | undefined, continuationToken: string | null | undefined, workOrderId: string | null | undefined, projectId: string | null | undefined, partNumber: string | null | undefined, partName: string | null | undefined, material: string | null | undefined): Promise<PagedResultOfProductionScheduleOperationDto> {
|
|
23133
|
+
listProductionScheduleOperations(resourceGroup: string | null | undefined, resourceId: string | null | undefined, departmentNumber: string | null | undefined, pageSize: number | undefined, continuationToken: string | null | undefined, workOrderId: string | null | undefined, projectId: string | null | undefined, partNumber: string | null | undefined, partName: string | null | undefined, material: string | null | undefined, includeDiscussionSummary: boolean | undefined): Promise<PagedResultOfProductionScheduleOperationDto> {
|
|
23134
23134
|
let url_ = this.baseUrl + "/mes/productionschedule?";
|
|
23135
23135
|
if (resourceGroup !== undefined && resourceGroup !== null)
|
|
23136
23136
|
url_ += "resourceGroup=" + encodeURIComponent("" + resourceGroup) + "&";
|
|
@@ -23154,6 +23154,10 @@ export class MesProductionScheduleClient extends AuthorizedApiBase implements IM
|
|
|
23154
23154
|
url_ += "partName=" + encodeURIComponent("" + partName) + "&";
|
|
23155
23155
|
if (material !== undefined && material !== null)
|
|
23156
23156
|
url_ += "material=" + encodeURIComponent("" + material) + "&";
|
|
23157
|
+
if (includeDiscussionSummary === null)
|
|
23158
|
+
throw new globalThis.Error("The parameter 'includeDiscussionSummary' cannot be null.");
|
|
23159
|
+
else if (includeDiscussionSummary !== undefined)
|
|
23160
|
+
url_ += "includeDiscussionSummary=" + encodeURIComponent("" + includeDiscussionSummary) + "&";
|
|
23157
23161
|
url_ = url_.replace(/[?&]$/, "");
|
|
23158
23162
|
|
|
23159
23163
|
let options_: RequestInit = {
|
|
@@ -32796,6 +32800,7 @@ export interface MrbInstanceRevisionDto {
|
|
|
32796
32800
|
status: DocumentStatus;
|
|
32797
32801
|
statusDate: Date;
|
|
32798
32802
|
sentToCustomerInfo?: MrbSentInfoDto | null;
|
|
32803
|
+
contentStatus?: MrbContentDocumentStatusDto | null;
|
|
32799
32804
|
}
|
|
32800
32805
|
|
|
32801
32806
|
export type DocumentStatus = "None" | "Draft" | "ForInternalApproval" | "InternalRejected" | "Approved" | "Voided";
|
|
@@ -32805,6 +32810,13 @@ export interface MrbSentInfoDto {
|
|
|
32805
32810
|
sentBy: UserDto;
|
|
32806
32811
|
}
|
|
32807
32812
|
|
|
32813
|
+
export interface MrbContentDocumentStatusDto {
|
|
32814
|
+
total: number;
|
|
32815
|
+
ready: number;
|
|
32816
|
+
missing: number;
|
|
32817
|
+
optional: number;
|
|
32818
|
+
}
|
|
32819
|
+
|
|
32808
32820
|
export interface MrbPartDto {
|
|
32809
32821
|
partNumber?: string | null;
|
|
32810
32822
|
partName?: string | null;
|
|
@@ -32865,13 +32877,6 @@ export interface MrbExtraDocumentDto {
|
|
|
32865
32877
|
documentType: string;
|
|
32866
32878
|
}
|
|
32867
32879
|
|
|
32868
|
-
export interface MrbContentDocumentStatusDto {
|
|
32869
|
-
total: number;
|
|
32870
|
-
ready: number;
|
|
32871
|
-
missing: number;
|
|
32872
|
-
optional: number;
|
|
32873
|
-
}
|
|
32874
|
-
|
|
32875
32880
|
export interface MrbPdfExportJobDto {
|
|
32876
32881
|
jobId: string;
|
|
32877
32882
|
mrbInstanceId: string;
|
|
@@ -35752,7 +35757,6 @@ export interface ListProductionOrdersRequest {
|
|
|
35752
35757
|
export interface PlannerPlanDto {
|
|
35753
35758
|
resourceGroupId: string;
|
|
35754
35759
|
sequence: PlannerOperationDto[];
|
|
35755
|
-
lockedCount: number;
|
|
35756
35760
|
planSavedAt?: Date | null;
|
|
35757
35761
|
isDraft: boolean;
|
|
35758
35762
|
publishedETag?: string | null;
|
|
@@ -35782,12 +35786,51 @@ export interface PlannerOperationDto {
|
|
|
35782
35786
|
project?: WorkOrderProjectDto | null;
|
|
35783
35787
|
sequenceNumber: number;
|
|
35784
35788
|
isManuallyLocked: boolean;
|
|
35789
|
+
lockType: PlannerLockType;
|
|
35790
|
+
isNewOperation: boolean;
|
|
35785
35791
|
weekGroup: string;
|
|
35786
35792
|
programStatus?: ProgramStatus | null;
|
|
35793
|
+
hasNotes?: boolean;
|
|
35794
|
+
notesUnread?: boolean;
|
|
35795
|
+
availableToStartQuantity: number;
|
|
35796
|
+
earlierOperationsScrappedQuantity: number;
|
|
35797
|
+
startedQuantity?: number | null;
|
|
35798
|
+
prerequisites: OperationPrerequisitesDto;
|
|
35799
|
+
drawing?: DrawingDto | null;
|
|
35800
|
+
drawingNumber?: string | null;
|
|
35801
|
+
description?: string | null;
|
|
35787
35802
|
}
|
|
35788
35803
|
|
|
35804
|
+
export type PlannerLockType = "None" | "Manual" | "Auto";
|
|
35805
|
+
|
|
35789
35806
|
export type ProgramStatus = "Blank" | "NotOk" | "Ok";
|
|
35790
35807
|
|
|
35808
|
+
export interface OperationPrerequisitesDto {
|
|
35809
|
+
drawing?: boolean | null;
|
|
35810
|
+
materials: MaterialsPrerequisiteDto;
|
|
35811
|
+
cncProgram?: boolean | null;
|
|
35812
|
+
}
|
|
35813
|
+
|
|
35814
|
+
export interface MaterialsPrerequisiteDto {
|
|
35815
|
+
numberOfPartsCoveredByOnHand?: number | null;
|
|
35816
|
+
materialStatus?: MaterialStatusDto;
|
|
35817
|
+
}
|
|
35818
|
+
|
|
35819
|
+
export type MaterialStatusDto = "NotRequired" | "NotAvailable" | "PartiallyAvailable" | "Available" | "FullyConsumed" | "Unknown";
|
|
35820
|
+
|
|
35821
|
+
export interface DrawingDto {
|
|
35822
|
+
drawingNumber: string;
|
|
35823
|
+
revision: string;
|
|
35824
|
+
status: string;
|
|
35825
|
+
files: DrawingFileDto[];
|
|
35826
|
+
}
|
|
35827
|
+
|
|
35828
|
+
export interface DrawingFileDto {
|
|
35829
|
+
id: number;
|
|
35830
|
+
name: string;
|
|
35831
|
+
comment?: string;
|
|
35832
|
+
}
|
|
35833
|
+
|
|
35791
35834
|
export interface WeekCapacityDto {
|
|
35792
35835
|
weekGroup: string;
|
|
35793
35836
|
weekStart: Date;
|
|
@@ -35806,7 +35849,6 @@ persisted active plan (draft, else published) is published instead. */
|
|
|
35806
35849
|
|
|
35807
35850
|
export interface PlannerSequenceInput {
|
|
35808
35851
|
orderedOperationKeys: string[];
|
|
35809
|
-
lockedCount: number;
|
|
35810
35852
|
weekGroups?: { [key: string]: string; } | null;
|
|
35811
35853
|
}
|
|
35812
35854
|
|
|
@@ -35817,7 +35859,6 @@ export interface PlannerPlanEventDto {
|
|
|
35817
35859
|
by?: string | null;
|
|
35818
35860
|
comment?: string | null;
|
|
35819
35861
|
operationCount: number;
|
|
35820
|
-
lockedCount: number;
|
|
35821
35862
|
}
|
|
35822
35863
|
|
|
35823
35864
|
export type PlannerEventType = "Published" | "DraftSaved" | "ResetToErp";
|
|
@@ -35837,17 +35878,14 @@ export interface UpdateProductionOrderAttachmentRequest {
|
|
|
35837
35878
|
url?: string | null;
|
|
35838
35879
|
}
|
|
35839
35880
|
|
|
35840
|
-
export interface
|
|
35841
|
-
|
|
35842
|
-
created?: Date | null;
|
|
35843
|
-
modifiedBy?: UserDto | null;
|
|
35844
|
-
modified?: Date | null;
|
|
35845
|
-
attachmentId?: number | null;
|
|
35881
|
+
export interface ProductionOrderAttachmentDto {
|
|
35882
|
+
attachmentId: number;
|
|
35846
35883
|
name?: string | null;
|
|
35847
35884
|
fileName?: string | null;
|
|
35848
35885
|
notes?: string | null;
|
|
35849
35886
|
attachmentType?: ProductionOrderAttachmentType | null;
|
|
35850
|
-
|
|
35887
|
+
addedBy?: string | null;
|
|
35888
|
+
canDelete: boolean;
|
|
35851
35889
|
}
|
|
35852
35890
|
|
|
35853
35891
|
export interface ProductionOrderDto {
|
|
@@ -35910,17 +35948,16 @@ export interface ProductionOrderOperationDto {
|
|
|
35910
35948
|
setupStatus?: OperationStatusDto | null;
|
|
35911
35949
|
}
|
|
35912
35950
|
|
|
35913
|
-
export interface
|
|
35914
|
-
|
|
35915
|
-
|
|
35916
|
-
|
|
35917
|
-
|
|
35918
|
-
|
|
35919
|
-
|
|
35920
|
-
|
|
35921
|
-
|
|
35922
|
-
|
|
35923
|
-
comment?: string;
|
|
35951
|
+
export interface WorkOrderAttachmentDto {
|
|
35952
|
+
createdBy?: UserDto | null;
|
|
35953
|
+
created?: Date | null;
|
|
35954
|
+
modifiedBy?: UserDto | null;
|
|
35955
|
+
modified?: Date | null;
|
|
35956
|
+
attachmentId?: number | null;
|
|
35957
|
+
name?: string | null;
|
|
35958
|
+
fileName?: string | null;
|
|
35959
|
+
notes?: string | null;
|
|
35960
|
+
attachmentType?: ProductionOrderAttachmentType | null;
|
|
35924
35961
|
}
|
|
35925
35962
|
|
|
35926
35963
|
export interface ProductionOrderBomDto {
|
|
@@ -36127,6 +36164,8 @@ export interface ProductionScheduleOperationDto {
|
|
|
36127
36164
|
productionStatus: OperationStatusDto;
|
|
36128
36165
|
setupStatus?: OperationStatusDto | null;
|
|
36129
36166
|
programStatus?: ProgramStatus | null;
|
|
36167
|
+
hasNotes: boolean;
|
|
36168
|
+
notesUnread: boolean;
|
|
36130
36169
|
}
|
|
36131
36170
|
|
|
36132
36171
|
export interface SurroundingOperationDto {
|
|
@@ -36149,19 +36188,6 @@ export interface SurroundingOperationDto {
|
|
|
36149
36188
|
startedQuantity?: number | null;
|
|
36150
36189
|
}
|
|
36151
36190
|
|
|
36152
|
-
export interface OperationPrerequisitesDto {
|
|
36153
|
-
drawing?: boolean | null;
|
|
36154
|
-
materials: MaterialsPrerequisiteDto;
|
|
36155
|
-
cncProgram?: boolean | null;
|
|
36156
|
-
}
|
|
36157
|
-
|
|
36158
|
-
export interface MaterialsPrerequisiteDto {
|
|
36159
|
-
numberOfPartsCoveredByOnHand?: number | null;
|
|
36160
|
-
materialStatus?: MaterialStatusDto;
|
|
36161
|
-
}
|
|
36162
|
-
|
|
36163
|
-
export type MaterialStatusDto = "NotRequired" | "NotAvailable" | "PartiallyAvailable" | "Available" | "FullyConsumed" | "Unknown";
|
|
36164
|
-
|
|
36165
36191
|
export type MaterialPickStatus = "NotRequired" | "NotStarted" | "Started" | "Completed" | "Unknown";
|
|
36166
36192
|
|
|
36167
36193
|
export interface ListProductionScheduleOperationsRequest {
|
|
@@ -36194,6 +36220,7 @@ export interface ListProductionScheduleOperationsRequest {
|
|
|
36194
36220
|
operationStatuses?: OperationStatusDto[] | null;
|
|
36195
36221
|
after?: Date | null;
|
|
36196
36222
|
before?: Date | null;
|
|
36223
|
+
includeDiscussionSummary?: boolean;
|
|
36197
36224
|
}
|
|
36198
36225
|
|
|
36199
36226
|
export interface ProductionScheduleFiltersDto {
|
|
@@ -36808,7 +36835,7 @@ export interface ImaChemicalAnalysisResultDto {
|
|
|
36808
36835
|
sampleReference?: string | null;
|
|
36809
36836
|
analysisType?: string | null;
|
|
36810
36837
|
elements: ImaChemicalAnalysisElementsResultDto;
|
|
36811
|
-
|
|
36838
|
+
composite: ImaChemicalAnalysisCompositeResultDto;
|
|
36812
36839
|
testStandards: string[];
|
|
36813
36840
|
}
|
|
36814
36841
|
|
|
@@ -36854,9 +36881,22 @@ export interface ImaSpecificationResultLineDto {
|
|
|
36854
36881
|
|
|
36855
36882
|
export type ImaSpecificationResultLineStatusDto = "NotFound" | "NotOk" | "Ok" | "NotSet";
|
|
36856
36883
|
|
|
36857
|
-
export interface
|
|
36858
|
-
|
|
36859
|
-
|
|
36884
|
+
export interface ImaChemicalAnalysisCompositeResultDto {
|
|
36885
|
+
pren?: ImaSpecificationCalculatedResultLineDto | null;
|
|
36886
|
+
pren22?: ImaSpecificationCalculatedResultLineDto | null;
|
|
36887
|
+
pren30?: ImaSpecificationCalculatedResultLineDto | null;
|
|
36888
|
+
prenW?: ImaSpecificationCalculatedResultLineDto | null;
|
|
36889
|
+
v_Nb_Ti?: ImaSpecificationCalculatedResultLineDto | null;
|
|
36890
|
+
ce?: ImaSpecificationCalculatedResultLineDto | null;
|
|
36891
|
+
}
|
|
36892
|
+
|
|
36893
|
+
export interface ImaSpecificationCalculatedResultLineDto {
|
|
36894
|
+
specificationMin?: number | null;
|
|
36895
|
+
specificationMax?: number | null;
|
|
36896
|
+
readValue?: string | null;
|
|
36897
|
+
calculatedValue?: string | null;
|
|
36898
|
+
errorString?: string | null;
|
|
36899
|
+
status: ImaSpecificationResultLineStatusDto;
|
|
36860
36900
|
override?: ImaResultLineOverrideDto | null;
|
|
36861
36901
|
}
|
|
36862
36902
|
|
|
@@ -36979,7 +37019,7 @@ export interface ImaDocumentTypesResultsDto {
|
|
|
36979
37019
|
|
|
36980
37020
|
export interface ImaOverrideMaterialCheckRequestDto {
|
|
36981
37021
|
certificateTypeSection?: ImaOverrideCertificateTypeResultsDto | null;
|
|
36982
|
-
chemicalAnalysisSection?:
|
|
37022
|
+
chemicalAnalysisSection?: ImaOverrideChemicalAnalysisResultsDto[] | null;
|
|
36983
37023
|
tensileTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36984
37024
|
hardnessTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36985
37025
|
impactTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
@@ -37048,6 +37088,55 @@ export interface ImaOverrideCertificateTypeTestMethodsAndReferencesResultsDto {
|
|
|
37048
37088
|
usedStandards?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37049
37089
|
}
|
|
37050
37090
|
|
|
37091
|
+
export interface ImaOverrideChemicalAnalysisResultsDto {
|
|
37092
|
+
heatNumber?: string | null;
|
|
37093
|
+
sampleReference?: string | null;
|
|
37094
|
+
analysisType?: string | null;
|
|
37095
|
+
elements?: ImaOverrideChemicalAnalysisElementsResultsDto | null;
|
|
37096
|
+
composite?: ImaOverrideChemicalAnalysisCompositeResultsDto | null;
|
|
37097
|
+
}
|
|
37098
|
+
|
|
37099
|
+
export interface ImaOverrideChemicalAnalysisElementsResultsDto {
|
|
37100
|
+
carbon?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37101
|
+
manganese?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37102
|
+
silicon?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37103
|
+
phosphorus?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37104
|
+
sulfur?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37105
|
+
chromium?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37106
|
+
nickel?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37107
|
+
molybdenum?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37108
|
+
copper?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37109
|
+
nitrogen?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37110
|
+
wolfram?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37111
|
+
titanium?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37112
|
+
aluminum?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37113
|
+
niobium?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37114
|
+
tantalum?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37115
|
+
cobalt?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37116
|
+
boron?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37117
|
+
lead?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37118
|
+
selenium?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37119
|
+
bismuth?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37120
|
+
iron?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37121
|
+
vanadium?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37122
|
+
oxygen?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37123
|
+
calcium?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37124
|
+
arsenic?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37125
|
+
tin?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37126
|
+
antimony?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37127
|
+
hydrogen?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37128
|
+
zirconium?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37129
|
+
}
|
|
37130
|
+
|
|
37131
|
+
export interface ImaOverrideChemicalAnalysisCompositeResultsDto {
|
|
37132
|
+
pren?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37133
|
+
pren22?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37134
|
+
pren30?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37135
|
+
prenW?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37136
|
+
v_Nb_Ti?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37137
|
+
ce?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37138
|
+
}
|
|
37139
|
+
|
|
37051
37140
|
export interface ImaOverrideDocumentTypesResultsDto {
|
|
37052
37141
|
ultrasonicControlCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37053
37142
|
radiologicalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
@@ -37284,6 +37373,7 @@ export interface ImaSpecificationDto {
|
|
|
37284
37373
|
updated: Date;
|
|
37285
37374
|
isDeleted: boolean;
|
|
37286
37375
|
chemistrySpecification: ImaChemistrySpecificationDto;
|
|
37376
|
+
chemistryCompositeSpecification: ImaChemistryCompositeSpecificationDto;
|
|
37287
37377
|
mechanicalSpecification: ImaMechanicalSpecificationDto;
|
|
37288
37378
|
ferriteSpecification: ImaFerriteSpecificationDto;
|
|
37289
37379
|
documentTypesSpecification: ImaDocumentTypesSpecificationDto;
|
|
@@ -37332,6 +37422,15 @@ export interface ImaSpecificationLineDto {
|
|
|
37332
37422
|
max?: number | null;
|
|
37333
37423
|
}
|
|
37334
37424
|
|
|
37425
|
+
export interface ImaChemistryCompositeSpecificationDto {
|
|
37426
|
+
pren?: ImaSpecificationLineDto | null;
|
|
37427
|
+
pren22?: ImaSpecificationLineDto | null;
|
|
37428
|
+
pren30?: ImaSpecificationLineDto | null;
|
|
37429
|
+
prenW?: ImaSpecificationLineDto | null;
|
|
37430
|
+
v_Nb_Ti?: boolean | null;
|
|
37431
|
+
ce?: boolean | null;
|
|
37432
|
+
}
|
|
37433
|
+
|
|
37335
37434
|
export interface ImaMechanicalSpecificationDto {
|
|
37336
37435
|
yieldStrength?: ImaSpecificationLineDto | null;
|
|
37337
37436
|
tensileStrength?: ImaSpecificationLineDto | null;
|
|
@@ -37401,6 +37500,7 @@ export interface ImaUpdateSpecificationDto {
|
|
|
37401
37500
|
summary?: string | null;
|
|
37402
37501
|
relatedStandards?: string[] | null;
|
|
37403
37502
|
chemistrySpecification?: ImaChemistrySpecificationDto | null;
|
|
37503
|
+
chemistryCompositeSpecification?: ImaChemistryCompositeSpecificationDto | null;
|
|
37404
37504
|
mechanicalSpecification?: ImaMechanicalSpecificationDto | null;
|
|
37405
37505
|
ferriteSpecification?: ImaFerriteSpecificationDto | null;
|
|
37406
37506
|
documentTypesSpecification?: ImaDocumentTypesSpecificationDto | null;
|