@ignos/api-client 20260810.214.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 +118 -37
- package/lib/ignosportal-api.js +5 -1
- package/package.json +1 -1
- package/src/ignosportal-api.ts +134 -43
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -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 {
|
|
@@ -7588,17 +7619,6 @@ export interface WorkOrderAttachmentDto {
|
|
|
7588
7619
|
notes?: string | null;
|
|
7589
7620
|
attachmentType?: ProductionOrderAttachmentType | null;
|
|
7590
7621
|
}
|
|
7591
|
-
export interface DrawingDto {
|
|
7592
|
-
drawingNumber: string;
|
|
7593
|
-
revision: string;
|
|
7594
|
-
status: string;
|
|
7595
|
-
files: DrawingFileDto[];
|
|
7596
|
-
}
|
|
7597
|
-
export interface DrawingFileDto {
|
|
7598
|
-
id: number;
|
|
7599
|
-
name: string;
|
|
7600
|
-
comment?: string;
|
|
7601
|
-
}
|
|
7602
7622
|
export interface ProductionOrderBomDto {
|
|
7603
7623
|
position: string;
|
|
7604
7624
|
lineNumber: number;
|
|
@@ -7788,6 +7808,8 @@ export interface ProductionScheduleOperationDto {
|
|
|
7788
7808
|
productionStatus: OperationStatusDto;
|
|
7789
7809
|
setupStatus?: OperationStatusDto | null;
|
|
7790
7810
|
programStatus?: ProgramStatus | null;
|
|
7811
|
+
hasNotes: boolean;
|
|
7812
|
+
notesUnread: boolean;
|
|
7791
7813
|
}
|
|
7792
7814
|
export interface SurroundingOperationDto {
|
|
7793
7815
|
id: string;
|
|
@@ -7808,16 +7830,6 @@ export interface SurroundingOperationDto {
|
|
|
7808
7830
|
earlierOperationsScrappedQuantity: number;
|
|
7809
7831
|
startedQuantity?: number | null;
|
|
7810
7832
|
}
|
|
7811
|
-
export interface OperationPrerequisitesDto {
|
|
7812
|
-
drawing?: boolean | null;
|
|
7813
|
-
materials: MaterialsPrerequisiteDto;
|
|
7814
|
-
cncProgram?: boolean | null;
|
|
7815
|
-
}
|
|
7816
|
-
export interface MaterialsPrerequisiteDto {
|
|
7817
|
-
numberOfPartsCoveredByOnHand?: number | null;
|
|
7818
|
-
materialStatus?: MaterialStatusDto;
|
|
7819
|
-
}
|
|
7820
|
-
export type MaterialStatusDto = "NotRequired" | "NotAvailable" | "PartiallyAvailable" | "Available" | "FullyConsumed" | "Unknown";
|
|
7821
7833
|
export type MaterialPickStatus = "NotRequired" | "NotStarted" | "Started" | "Completed" | "Unknown";
|
|
7822
7834
|
export interface ListProductionScheduleOperationsRequest {
|
|
7823
7835
|
resourceGroup?: string | null;
|
|
@@ -7849,6 +7861,7 @@ export interface ListProductionScheduleOperationsRequest {
|
|
|
7849
7861
|
operationStatuses?: OperationStatusDto[] | null;
|
|
7850
7862
|
after?: Date | null;
|
|
7851
7863
|
before?: Date | null;
|
|
7864
|
+
includeDiscussionSummary?: boolean;
|
|
7852
7865
|
}
|
|
7853
7866
|
export interface ProductionScheduleFiltersDto {
|
|
7854
7867
|
partNumbers?: FilterValueWithQuantity[];
|
|
@@ -8392,7 +8405,7 @@ export interface ImaChemicalAnalysisResultDto {
|
|
|
8392
8405
|
sampleReference?: string | null;
|
|
8393
8406
|
analysisType?: string | null;
|
|
8394
8407
|
elements: ImaChemicalAnalysisElementsResultDto;
|
|
8395
|
-
|
|
8408
|
+
composite: ImaChemicalAnalysisCompositeResultDto;
|
|
8396
8409
|
testStandards: string[];
|
|
8397
8410
|
}
|
|
8398
8411
|
export interface ImaChemicalAnalysisElementsResultDto {
|
|
@@ -8434,9 +8447,21 @@ export interface ImaSpecificationResultLineDto {
|
|
|
8434
8447
|
override?: ImaResultLineOverrideDto | null;
|
|
8435
8448
|
}
|
|
8436
8449
|
export type ImaSpecificationResultLineStatusDto = "NotFound" | "NotOk" | "Ok" | "NotSet";
|
|
8437
|
-
export interface
|
|
8438
|
-
|
|
8439
|
-
|
|
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;
|
|
8440
8465
|
override?: ImaResultLineOverrideDto | null;
|
|
8441
8466
|
}
|
|
8442
8467
|
export interface ImaTensileTestResultDto {
|
|
@@ -8547,7 +8572,7 @@ export interface ImaDocumentTypesResultsDto {
|
|
|
8547
8572
|
}
|
|
8548
8573
|
export interface ImaOverrideMaterialCheckRequestDto {
|
|
8549
8574
|
certificateTypeSection?: ImaOverrideCertificateTypeResultsDto | null;
|
|
8550
|
-
chemicalAnalysisSection?:
|
|
8575
|
+
chemicalAnalysisSection?: ImaOverrideChemicalAnalysisResultsDto[] | null;
|
|
8551
8576
|
tensileTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8552
8577
|
hardnessTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8553
8578
|
impactTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
@@ -8607,6 +8632,52 @@ export interface ImaOverrideCertificateTypeProductAndOrderInformationResultsDto
|
|
|
8607
8632
|
export interface ImaOverrideCertificateTypeTestMethodsAndReferencesResultsDto {
|
|
8608
8633
|
usedStandards?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8609
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
|
+
}
|
|
8610
8681
|
export interface ImaOverrideDocumentTypesResultsDto {
|
|
8611
8682
|
ultrasonicControlCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8612
8683
|
radiologicalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
@@ -8821,6 +8892,7 @@ export interface ImaSpecificationDto {
|
|
|
8821
8892
|
updated: Date;
|
|
8822
8893
|
isDeleted: boolean;
|
|
8823
8894
|
chemistrySpecification: ImaChemistrySpecificationDto;
|
|
8895
|
+
chemistryCompositeSpecification: ImaChemistryCompositeSpecificationDto;
|
|
8824
8896
|
mechanicalSpecification: ImaMechanicalSpecificationDto;
|
|
8825
8897
|
ferriteSpecification: ImaFerriteSpecificationDto;
|
|
8826
8898
|
documentTypesSpecification: ImaDocumentTypesSpecificationDto;
|
|
@@ -8865,6 +8937,14 @@ export interface ImaSpecificationLineDto {
|
|
|
8865
8937
|
min?: number | null;
|
|
8866
8938
|
max?: number | null;
|
|
8867
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
|
+
}
|
|
8868
8948
|
export interface ImaMechanicalSpecificationDto {
|
|
8869
8949
|
yieldStrength?: ImaSpecificationLineDto | null;
|
|
8870
8950
|
tensileStrength?: ImaSpecificationLineDto | null;
|
|
@@ -8924,6 +9004,7 @@ export interface ImaUpdateSpecificationDto {
|
|
|
8924
9004
|
summary?: string | null;
|
|
8925
9005
|
relatedStandards?: string[] | null;
|
|
8926
9006
|
chemistrySpecification?: ImaChemistrySpecificationDto | null;
|
|
9007
|
+
chemistryCompositeSpecification?: ImaChemistryCompositeSpecificationDto | null;
|
|
8927
9008
|
mechanicalSpecification?: ImaMechanicalSpecificationDto | null;
|
|
8928
9009
|
ferriteSpecification?: ImaFerriteSpecificationDto | null;
|
|
8929
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
|
@@ -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";
|
|
@@ -35919,19 +35960,6 @@ export interface WorkOrderAttachmentDto {
|
|
|
35919
35960
|
attachmentType?: ProductionOrderAttachmentType | null;
|
|
35920
35961
|
}
|
|
35921
35962
|
|
|
35922
|
-
export interface DrawingDto {
|
|
35923
|
-
drawingNumber: string;
|
|
35924
|
-
revision: string;
|
|
35925
|
-
status: string;
|
|
35926
|
-
files: DrawingFileDto[];
|
|
35927
|
-
}
|
|
35928
|
-
|
|
35929
|
-
export interface DrawingFileDto {
|
|
35930
|
-
id: number;
|
|
35931
|
-
name: string;
|
|
35932
|
-
comment?: string;
|
|
35933
|
-
}
|
|
35934
|
-
|
|
35935
35963
|
export interface ProductionOrderBomDto {
|
|
35936
35964
|
position: string;
|
|
35937
35965
|
lineNumber: number;
|
|
@@ -36136,6 +36164,8 @@ export interface ProductionScheduleOperationDto {
|
|
|
36136
36164
|
productionStatus: OperationStatusDto;
|
|
36137
36165
|
setupStatus?: OperationStatusDto | null;
|
|
36138
36166
|
programStatus?: ProgramStatus | null;
|
|
36167
|
+
hasNotes: boolean;
|
|
36168
|
+
notesUnread: boolean;
|
|
36139
36169
|
}
|
|
36140
36170
|
|
|
36141
36171
|
export interface SurroundingOperationDto {
|
|
@@ -36158,19 +36188,6 @@ export interface SurroundingOperationDto {
|
|
|
36158
36188
|
startedQuantity?: number | null;
|
|
36159
36189
|
}
|
|
36160
36190
|
|
|
36161
|
-
export interface OperationPrerequisitesDto {
|
|
36162
|
-
drawing?: boolean | null;
|
|
36163
|
-
materials: MaterialsPrerequisiteDto;
|
|
36164
|
-
cncProgram?: boolean | null;
|
|
36165
|
-
}
|
|
36166
|
-
|
|
36167
|
-
export interface MaterialsPrerequisiteDto {
|
|
36168
|
-
numberOfPartsCoveredByOnHand?: number | null;
|
|
36169
|
-
materialStatus?: MaterialStatusDto;
|
|
36170
|
-
}
|
|
36171
|
-
|
|
36172
|
-
export type MaterialStatusDto = "NotRequired" | "NotAvailable" | "PartiallyAvailable" | "Available" | "FullyConsumed" | "Unknown";
|
|
36173
|
-
|
|
36174
36191
|
export type MaterialPickStatus = "NotRequired" | "NotStarted" | "Started" | "Completed" | "Unknown";
|
|
36175
36192
|
|
|
36176
36193
|
export interface ListProductionScheduleOperationsRequest {
|
|
@@ -36203,6 +36220,7 @@ export interface ListProductionScheduleOperationsRequest {
|
|
|
36203
36220
|
operationStatuses?: OperationStatusDto[] | null;
|
|
36204
36221
|
after?: Date | null;
|
|
36205
36222
|
before?: Date | null;
|
|
36223
|
+
includeDiscussionSummary?: boolean;
|
|
36206
36224
|
}
|
|
36207
36225
|
|
|
36208
36226
|
export interface ProductionScheduleFiltersDto {
|
|
@@ -36817,7 +36835,7 @@ export interface ImaChemicalAnalysisResultDto {
|
|
|
36817
36835
|
sampleReference?: string | null;
|
|
36818
36836
|
analysisType?: string | null;
|
|
36819
36837
|
elements: ImaChemicalAnalysisElementsResultDto;
|
|
36820
|
-
|
|
36838
|
+
composite: ImaChemicalAnalysisCompositeResultDto;
|
|
36821
36839
|
testStandards: string[];
|
|
36822
36840
|
}
|
|
36823
36841
|
|
|
@@ -36863,9 +36881,22 @@ export interface ImaSpecificationResultLineDto {
|
|
|
36863
36881
|
|
|
36864
36882
|
export type ImaSpecificationResultLineStatusDto = "NotFound" | "NotOk" | "Ok" | "NotSet";
|
|
36865
36883
|
|
|
36866
|
-
export interface
|
|
36867
|
-
|
|
36868
|
-
|
|
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;
|
|
36869
36900
|
override?: ImaResultLineOverrideDto | null;
|
|
36870
36901
|
}
|
|
36871
36902
|
|
|
@@ -36988,7 +37019,7 @@ export interface ImaDocumentTypesResultsDto {
|
|
|
36988
37019
|
|
|
36989
37020
|
export interface ImaOverrideMaterialCheckRequestDto {
|
|
36990
37021
|
certificateTypeSection?: ImaOverrideCertificateTypeResultsDto | null;
|
|
36991
|
-
chemicalAnalysisSection?:
|
|
37022
|
+
chemicalAnalysisSection?: ImaOverrideChemicalAnalysisResultsDto[] | null;
|
|
36992
37023
|
tensileTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36993
37024
|
hardnessTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36994
37025
|
impactTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
@@ -37057,6 +37088,55 @@ export interface ImaOverrideCertificateTypeTestMethodsAndReferencesResultsDto {
|
|
|
37057
37088
|
usedStandards?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37058
37089
|
}
|
|
37059
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
|
+
|
|
37060
37140
|
export interface ImaOverrideDocumentTypesResultsDto {
|
|
37061
37141
|
ultrasonicControlCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37062
37142
|
radiologicalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
@@ -37293,6 +37373,7 @@ export interface ImaSpecificationDto {
|
|
|
37293
37373
|
updated: Date;
|
|
37294
37374
|
isDeleted: boolean;
|
|
37295
37375
|
chemistrySpecification: ImaChemistrySpecificationDto;
|
|
37376
|
+
chemistryCompositeSpecification: ImaChemistryCompositeSpecificationDto;
|
|
37296
37377
|
mechanicalSpecification: ImaMechanicalSpecificationDto;
|
|
37297
37378
|
ferriteSpecification: ImaFerriteSpecificationDto;
|
|
37298
37379
|
documentTypesSpecification: ImaDocumentTypesSpecificationDto;
|
|
@@ -37341,6 +37422,15 @@ export interface ImaSpecificationLineDto {
|
|
|
37341
37422
|
max?: number | null;
|
|
37342
37423
|
}
|
|
37343
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
|
+
|
|
37344
37434
|
export interface ImaMechanicalSpecificationDto {
|
|
37345
37435
|
yieldStrength?: ImaSpecificationLineDto | null;
|
|
37346
37436
|
tensileStrength?: ImaSpecificationLineDto | null;
|
|
@@ -37410,6 +37500,7 @@ export interface ImaUpdateSpecificationDto {
|
|
|
37410
37500
|
summary?: string | null;
|
|
37411
37501
|
relatedStandards?: string[] | null;
|
|
37412
37502
|
chemistrySpecification?: ImaChemistrySpecificationDto | null;
|
|
37503
|
+
chemistryCompositeSpecification?: ImaChemistryCompositeSpecificationDto | null;
|
|
37413
37504
|
mechanicalSpecification?: ImaMechanicalSpecificationDto | null;
|
|
37414
37505
|
ferriteSpecification?: ImaFerriteSpecificationDto | null;
|
|
37415
37506
|
documentTypesSpecification?: ImaDocumentTypesSpecificationDto | null;
|