@ignos/api-client 20260803.203.1 → 20260804.205.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 +72 -8
- package/lib/ignosportal-api.js +5 -1
- package/package.json +1 -1
- package/src/ignosportal-api.ts +80 -8
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -2586,7 +2586,7 @@ export declare class MesProductionOrderClient extends AuthorizedApiBase implemen
|
|
|
2586
2586
|
protected processListProductionOrderActivities(response: Response): Promise<ProductionOrderOperationActivityDto[]>;
|
|
2587
2587
|
}
|
|
2588
2588
|
export interface IMesProductionScheduleClient {
|
|
2589
|
-
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>;
|
|
2589
|
+
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>;
|
|
2590
2590
|
postListProductionScheduleOperations(request: ListProductionScheduleOperationsRequest | undefined): Promise<PagedResultOfProductionScheduleOperationDto>;
|
|
2591
2591
|
getAvailableProductionScheduleFilters(request: GetAvailableProductionScheduleFiltersRequest | undefined): Promise<ProductionScheduleFiltersDto>;
|
|
2592
2592
|
listMyCurrentWorkActivities(): Promise<CurrentWorkActivityDto>;
|
|
@@ -2600,7 +2600,7 @@ export declare class MesProductionScheduleClient extends AuthorizedApiBase imple
|
|
|
2600
2600
|
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
2601
2601
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2602
2602
|
});
|
|
2603
|
-
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>;
|
|
2603
|
+
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>;
|
|
2604
2604
|
protected processListProductionScheduleOperations(response: Response): Promise<PagedResultOfProductionScheduleOperationDto>;
|
|
2605
2605
|
postListProductionScheduleOperations(request: ListProductionScheduleOperationsRequest | undefined): Promise<PagedResultOfProductionScheduleOperationDto>;
|
|
2606
2606
|
protected processPostListProductionScheduleOperations(response: Response): Promise<PagedResultOfProductionScheduleOperationDto>;
|
|
@@ -7457,6 +7457,8 @@ export interface PlannerOperationDto {
|
|
|
7457
7457
|
isNewOperation: boolean;
|
|
7458
7458
|
weekGroup: string;
|
|
7459
7459
|
programStatus?: ProgramStatus | null;
|
|
7460
|
+
hasNotes?: boolean;
|
|
7461
|
+
notesUnread?: boolean;
|
|
7460
7462
|
}
|
|
7461
7463
|
export type PlannerLockType = "None" | "Manual" | "Auto";
|
|
7462
7464
|
export type ProgramStatus = "Blank" | "NotOk" | "Ok";
|
|
@@ -7764,6 +7766,8 @@ export interface ProductionScheduleOperationDto {
|
|
|
7764
7766
|
productionStatus: OperationStatusDto;
|
|
7765
7767
|
setupStatus?: OperationStatusDto | null;
|
|
7766
7768
|
programStatus?: ProgramStatus | null;
|
|
7769
|
+
hasNotes: boolean;
|
|
7770
|
+
notesUnread: boolean;
|
|
7767
7771
|
}
|
|
7768
7772
|
export interface SurroundingOperationDto {
|
|
7769
7773
|
id: string;
|
|
@@ -7825,6 +7829,7 @@ export interface ListProductionScheduleOperationsRequest {
|
|
|
7825
7829
|
operationStatuses?: OperationStatusDto[] | null;
|
|
7826
7830
|
after?: Date | null;
|
|
7827
7831
|
before?: Date | null;
|
|
7832
|
+
includeDiscussionSummary?: boolean;
|
|
7828
7833
|
}
|
|
7829
7834
|
export interface ProductionScheduleFiltersDto {
|
|
7830
7835
|
partNumbers?: FilterValueWithQuantity[];
|
|
@@ -8368,7 +8373,7 @@ export interface ImaChemicalAnalysisResultDto {
|
|
|
8368
8373
|
sampleReference?: string | null;
|
|
8369
8374
|
analysisType?: string | null;
|
|
8370
8375
|
elements: ImaChemicalAnalysisElementsResultDto;
|
|
8371
|
-
|
|
8376
|
+
composite: ImaChemicalAnalysisCompositeResultDto;
|
|
8372
8377
|
testStandards: string[];
|
|
8373
8378
|
}
|
|
8374
8379
|
export interface ImaChemicalAnalysisElementsResultDto {
|
|
@@ -8410,10 +8415,13 @@ export interface ImaSpecificationResultLineDto {
|
|
|
8410
8415
|
override?: ImaResultLineOverrideDto | null;
|
|
8411
8416
|
}
|
|
8412
8417
|
export type ImaSpecificationResultLineStatusDto = "NotFound" | "NotOk" | "Ok" | "NotSet";
|
|
8413
|
-
export interface
|
|
8414
|
-
|
|
8415
|
-
|
|
8416
|
-
|
|
8418
|
+
export interface ImaChemicalAnalysisCompositeResultDto {
|
|
8419
|
+
pren?: ImaSpecificationResultLineDto | null;
|
|
8420
|
+
pren22?: ImaSpecificationResultLineDto | null;
|
|
8421
|
+
pren30?: ImaSpecificationResultLineDto | null;
|
|
8422
|
+
prenW?: ImaSpecificationResultLineDto | null;
|
|
8423
|
+
v_Nb_Ti?: ImaSpecificationResultLineDto | null;
|
|
8424
|
+
ce?: ImaSpecificationResultLineDto | null;
|
|
8417
8425
|
}
|
|
8418
8426
|
export interface ImaTensileTestResultDto {
|
|
8419
8427
|
heatNumber?: string | null;
|
|
@@ -8523,7 +8531,7 @@ export interface ImaDocumentTypesResultsDto {
|
|
|
8523
8531
|
}
|
|
8524
8532
|
export interface ImaOverrideMaterialCheckRequestDto {
|
|
8525
8533
|
certificateTypeSection?: ImaOverrideCertificateTypeResultsDto | null;
|
|
8526
|
-
chemicalAnalysisSection?:
|
|
8534
|
+
chemicalAnalysisSection?: ImaOverrideChemicalAnalysisResultsDto[] | null;
|
|
8527
8535
|
tensileTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8528
8536
|
hardnessTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8529
8537
|
impactTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
@@ -8583,6 +8591,52 @@ export interface ImaOverrideCertificateTypeProductAndOrderInformationResultsDto
|
|
|
8583
8591
|
export interface ImaOverrideCertificateTypeTestMethodsAndReferencesResultsDto {
|
|
8584
8592
|
usedStandards?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8585
8593
|
}
|
|
8594
|
+
export interface ImaOverrideChemicalAnalysisResultsDto {
|
|
8595
|
+
heatNumber?: string | null;
|
|
8596
|
+
sampleReference?: string | null;
|
|
8597
|
+
analysisType?: string | null;
|
|
8598
|
+
elements?: ImaOverrideChemicalAnalysisElementsResultsDto | null;
|
|
8599
|
+
composite?: ImaOverrideChemicalAnalysisCompositeResultsDto | null;
|
|
8600
|
+
}
|
|
8601
|
+
export interface ImaOverrideChemicalAnalysisElementsResultsDto {
|
|
8602
|
+
carbon?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8603
|
+
manganese?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8604
|
+
silicon?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8605
|
+
phosphorus?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8606
|
+
sulfur?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8607
|
+
chromium?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8608
|
+
nickel?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8609
|
+
molybdenum?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8610
|
+
copper?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8611
|
+
nitrogen?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8612
|
+
wolfram?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8613
|
+
titanium?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8614
|
+
aluminum?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8615
|
+
niobium?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8616
|
+
tantalum?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8617
|
+
cobalt?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8618
|
+
boron?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8619
|
+
lead?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8620
|
+
selenium?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8621
|
+
bismuth?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8622
|
+
iron?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8623
|
+
vanadium?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8624
|
+
oxygen?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8625
|
+
calcium?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8626
|
+
arsenic?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8627
|
+
tin?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8628
|
+
antimony?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8629
|
+
hydrogen?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8630
|
+
zirconium?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8631
|
+
}
|
|
8632
|
+
export interface ImaOverrideChemicalAnalysisCompositeResultsDto {
|
|
8633
|
+
pren?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8634
|
+
pren22?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8635
|
+
pren30?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8636
|
+
prenW?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8637
|
+
v_Nb_Ti?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8638
|
+
ce?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8639
|
+
}
|
|
8586
8640
|
export interface ImaOverrideDocumentTypesResultsDto {
|
|
8587
8641
|
ultrasonicControlCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8588
8642
|
radiologicalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
@@ -8797,6 +8851,7 @@ export interface ImaSpecificationDto {
|
|
|
8797
8851
|
updated: Date;
|
|
8798
8852
|
isDeleted: boolean;
|
|
8799
8853
|
chemistrySpecification: ImaChemistrySpecificationDto;
|
|
8854
|
+
chemistryCompositeSpecification: ImaChemistryCompositeSpecificationDto;
|
|
8800
8855
|
mechanicalSpecification: ImaMechanicalSpecificationDto;
|
|
8801
8856
|
ferriteSpecification: ImaFerriteSpecificationDto;
|
|
8802
8857
|
documentTypesSpecification: ImaDocumentTypesSpecificationDto;
|
|
@@ -8841,6 +8896,14 @@ export interface ImaSpecificationLineDto {
|
|
|
8841
8896
|
min?: number | null;
|
|
8842
8897
|
max?: number | null;
|
|
8843
8898
|
}
|
|
8899
|
+
export interface ImaChemistryCompositeSpecificationDto {
|
|
8900
|
+
pren?: ImaSpecificationLineDto | null;
|
|
8901
|
+
pren22?: ImaSpecificationLineDto | null;
|
|
8902
|
+
pren30?: ImaSpecificationLineDto | null;
|
|
8903
|
+
prenW?: ImaSpecificationLineDto | null;
|
|
8904
|
+
v_Nb_Ti?: ImaSpecificationLineDto | null;
|
|
8905
|
+
ce?: ImaSpecificationLineDto | null;
|
|
8906
|
+
}
|
|
8844
8907
|
export interface ImaMechanicalSpecificationDto {
|
|
8845
8908
|
yieldStrength?: ImaSpecificationLineDto | null;
|
|
8846
8909
|
tensileStrength?: ImaSpecificationLineDto | null;
|
|
@@ -8900,6 +8963,7 @@ export interface ImaUpdateSpecificationDto {
|
|
|
8900
8963
|
summary?: string | null;
|
|
8901
8964
|
relatedStandards?: string[] | null;
|
|
8902
8965
|
chemistrySpecification?: ImaChemistrySpecificationDto | null;
|
|
8966
|
+
chemistryCompositeSpecification?: ImaChemistryCompositeSpecificationDto | null;
|
|
8903
8967
|
mechanicalSpecification?: ImaMechanicalSpecificationDto | null;
|
|
8904
8968
|
ferriteSpecification?: ImaFerriteSpecificationDto | null;
|
|
8905
8969
|
documentTypesSpecification?: ImaDocumentTypesSpecificationDto | null;
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -21601,7 +21601,7 @@ export class MesProductionScheduleClient extends AuthorizedApiBase {
|
|
|
21601
21601
|
this.http = http ? http : window;
|
|
21602
21602
|
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
21603
21603
|
}
|
|
21604
|
-
listProductionScheduleOperations(resourceGroup, resourceId, departmentNumber, pageSize, continuationToken, workOrderId, projectId, partNumber, partName, material) {
|
|
21604
|
+
listProductionScheduleOperations(resourceGroup, resourceId, departmentNumber, pageSize, continuationToken, workOrderId, projectId, partNumber, partName, material, includeDiscussionSummary) {
|
|
21605
21605
|
let url_ = this.baseUrl + "/mes/productionschedule?";
|
|
21606
21606
|
if (resourceGroup !== undefined && resourceGroup !== null)
|
|
21607
21607
|
url_ += "resourceGroup=" + encodeURIComponent("" + resourceGroup) + "&";
|
|
@@ -21625,6 +21625,10 @@ export class MesProductionScheduleClient extends AuthorizedApiBase {
|
|
|
21625
21625
|
url_ += "partName=" + encodeURIComponent("" + partName) + "&";
|
|
21626
21626
|
if (material !== undefined && material !== null)
|
|
21627
21627
|
url_ += "material=" + encodeURIComponent("" + material) + "&";
|
|
21628
|
+
if (includeDiscussionSummary === null)
|
|
21629
|
+
throw new globalThis.Error("The parameter 'includeDiscussionSummary' cannot be null.");
|
|
21630
|
+
else if (includeDiscussionSummary !== undefined)
|
|
21631
|
+
url_ += "includeDiscussionSummary=" + encodeURIComponent("" + includeDiscussionSummary) + "&";
|
|
21628
21632
|
url_ = url_.replace(/[?&]$/, "");
|
|
21629
21633
|
let options_ = {
|
|
21630
21634
|
method: "GET",
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -23071,7 +23071,7 @@ export class MesProductionOrderClient extends AuthorizedApiBase implements IMesP
|
|
|
23071
23071
|
|
|
23072
23072
|
export interface IMesProductionScheduleClient {
|
|
23073
23073
|
|
|
23074
|
-
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>;
|
|
23074
|
+
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>;
|
|
23075
23075
|
|
|
23076
23076
|
postListProductionScheduleOperations(request: ListProductionScheduleOperationsRequest | undefined): Promise<PagedResultOfProductionScheduleOperationDto>;
|
|
23077
23077
|
|
|
@@ -23096,7 +23096,7 @@ export class MesProductionScheduleClient extends AuthorizedApiBase implements IM
|
|
|
23096
23096
|
this.baseUrl = baseUrl ?? "";
|
|
23097
23097
|
}
|
|
23098
23098
|
|
|
23099
|
-
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> {
|
|
23099
|
+
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> {
|
|
23100
23100
|
let url_ = this.baseUrl + "/mes/productionschedule?";
|
|
23101
23101
|
if (resourceGroup !== undefined && resourceGroup !== null)
|
|
23102
23102
|
url_ += "resourceGroup=" + encodeURIComponent("" + resourceGroup) + "&";
|
|
@@ -23120,6 +23120,10 @@ export class MesProductionScheduleClient extends AuthorizedApiBase implements IM
|
|
|
23120
23120
|
url_ += "partName=" + encodeURIComponent("" + partName) + "&";
|
|
23121
23121
|
if (material !== undefined && material !== null)
|
|
23122
23122
|
url_ += "material=" + encodeURIComponent("" + material) + "&";
|
|
23123
|
+
if (includeDiscussionSummary === null)
|
|
23124
|
+
throw new globalThis.Error("The parameter 'includeDiscussionSummary' cannot be null.");
|
|
23125
|
+
else if (includeDiscussionSummary !== undefined)
|
|
23126
|
+
url_ += "includeDiscussionSummary=" + encodeURIComponent("" + includeDiscussionSummary) + "&";
|
|
23123
23127
|
url_ = url_.replace(/[?&]$/, "");
|
|
23124
23128
|
|
|
23125
23129
|
let options_: RequestInit = {
|
|
@@ -35751,6 +35755,8 @@ export interface PlannerOperationDto {
|
|
|
35751
35755
|
isNewOperation: boolean;
|
|
35752
35756
|
weekGroup: string;
|
|
35753
35757
|
programStatus?: ProgramStatus | null;
|
|
35758
|
+
hasNotes?: boolean;
|
|
35759
|
+
notesUnread?: boolean;
|
|
35754
35760
|
}
|
|
35755
35761
|
|
|
35756
35762
|
export type PlannerLockType = "None" | "Manual" | "Auto";
|
|
@@ -36086,6 +36092,8 @@ export interface ProductionScheduleOperationDto {
|
|
|
36086
36092
|
productionStatus: OperationStatusDto;
|
|
36087
36093
|
setupStatus?: OperationStatusDto | null;
|
|
36088
36094
|
programStatus?: ProgramStatus | null;
|
|
36095
|
+
hasNotes: boolean;
|
|
36096
|
+
notesUnread: boolean;
|
|
36089
36097
|
}
|
|
36090
36098
|
|
|
36091
36099
|
export interface SurroundingOperationDto {
|
|
@@ -36153,6 +36161,7 @@ export interface ListProductionScheduleOperationsRequest {
|
|
|
36153
36161
|
operationStatuses?: OperationStatusDto[] | null;
|
|
36154
36162
|
after?: Date | null;
|
|
36155
36163
|
before?: Date | null;
|
|
36164
|
+
includeDiscussionSummary?: boolean;
|
|
36156
36165
|
}
|
|
36157
36166
|
|
|
36158
36167
|
export interface ProductionScheduleFiltersDto {
|
|
@@ -36767,7 +36776,7 @@ export interface ImaChemicalAnalysisResultDto {
|
|
|
36767
36776
|
sampleReference?: string | null;
|
|
36768
36777
|
analysisType?: string | null;
|
|
36769
36778
|
elements: ImaChemicalAnalysisElementsResultDto;
|
|
36770
|
-
|
|
36779
|
+
composite: ImaChemicalAnalysisCompositeResultDto;
|
|
36771
36780
|
testStandards: string[];
|
|
36772
36781
|
}
|
|
36773
36782
|
|
|
@@ -36813,10 +36822,13 @@ export interface ImaSpecificationResultLineDto {
|
|
|
36813
36822
|
|
|
36814
36823
|
export type ImaSpecificationResultLineStatusDto = "NotFound" | "NotOk" | "Ok" | "NotSet";
|
|
36815
36824
|
|
|
36816
|
-
export interface
|
|
36817
|
-
|
|
36818
|
-
|
|
36819
|
-
|
|
36825
|
+
export interface ImaChemicalAnalysisCompositeResultDto {
|
|
36826
|
+
pren?: ImaSpecificationResultLineDto | null;
|
|
36827
|
+
pren22?: ImaSpecificationResultLineDto | null;
|
|
36828
|
+
pren30?: ImaSpecificationResultLineDto | null;
|
|
36829
|
+
prenW?: ImaSpecificationResultLineDto | null;
|
|
36830
|
+
v_Nb_Ti?: ImaSpecificationResultLineDto | null;
|
|
36831
|
+
ce?: ImaSpecificationResultLineDto | null;
|
|
36820
36832
|
}
|
|
36821
36833
|
|
|
36822
36834
|
export interface ImaTensileTestResultDto {
|
|
@@ -36938,7 +36950,7 @@ export interface ImaDocumentTypesResultsDto {
|
|
|
36938
36950
|
|
|
36939
36951
|
export interface ImaOverrideMaterialCheckRequestDto {
|
|
36940
36952
|
certificateTypeSection?: ImaOverrideCertificateTypeResultsDto | null;
|
|
36941
|
-
chemicalAnalysisSection?:
|
|
36953
|
+
chemicalAnalysisSection?: ImaOverrideChemicalAnalysisResultsDto[] | null;
|
|
36942
36954
|
tensileTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36943
36955
|
hardnessTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
36944
36956
|
impactTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
@@ -37007,6 +37019,55 @@ export interface ImaOverrideCertificateTypeTestMethodsAndReferencesResultsDto {
|
|
|
37007
37019
|
usedStandards?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37008
37020
|
}
|
|
37009
37021
|
|
|
37022
|
+
export interface ImaOverrideChemicalAnalysisResultsDto {
|
|
37023
|
+
heatNumber?: string | null;
|
|
37024
|
+
sampleReference?: string | null;
|
|
37025
|
+
analysisType?: string | null;
|
|
37026
|
+
elements?: ImaOverrideChemicalAnalysisElementsResultsDto | null;
|
|
37027
|
+
composite?: ImaOverrideChemicalAnalysisCompositeResultsDto | null;
|
|
37028
|
+
}
|
|
37029
|
+
|
|
37030
|
+
export interface ImaOverrideChemicalAnalysisElementsResultsDto {
|
|
37031
|
+
carbon?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37032
|
+
manganese?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37033
|
+
silicon?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37034
|
+
phosphorus?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37035
|
+
sulfur?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37036
|
+
chromium?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37037
|
+
nickel?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37038
|
+
molybdenum?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37039
|
+
copper?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37040
|
+
nitrogen?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37041
|
+
wolfram?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37042
|
+
titanium?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37043
|
+
aluminum?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37044
|
+
niobium?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37045
|
+
tantalum?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37046
|
+
cobalt?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37047
|
+
boron?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37048
|
+
lead?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37049
|
+
selenium?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37050
|
+
bismuth?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37051
|
+
iron?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37052
|
+
vanadium?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37053
|
+
oxygen?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37054
|
+
calcium?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37055
|
+
arsenic?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37056
|
+
tin?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37057
|
+
antimony?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37058
|
+
hydrogen?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37059
|
+
zirconium?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37060
|
+
}
|
|
37061
|
+
|
|
37062
|
+
export interface ImaOverrideChemicalAnalysisCompositeResultsDto {
|
|
37063
|
+
pren?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37064
|
+
pren22?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37065
|
+
pren30?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37066
|
+
prenW?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37067
|
+
v_Nb_Ti?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37068
|
+
ce?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37069
|
+
}
|
|
37070
|
+
|
|
37010
37071
|
export interface ImaOverrideDocumentTypesResultsDto {
|
|
37011
37072
|
ultrasonicControlCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37012
37073
|
radiologicalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
@@ -37243,6 +37304,7 @@ export interface ImaSpecificationDto {
|
|
|
37243
37304
|
updated: Date;
|
|
37244
37305
|
isDeleted: boolean;
|
|
37245
37306
|
chemistrySpecification: ImaChemistrySpecificationDto;
|
|
37307
|
+
chemistryCompositeSpecification: ImaChemistryCompositeSpecificationDto;
|
|
37246
37308
|
mechanicalSpecification: ImaMechanicalSpecificationDto;
|
|
37247
37309
|
ferriteSpecification: ImaFerriteSpecificationDto;
|
|
37248
37310
|
documentTypesSpecification: ImaDocumentTypesSpecificationDto;
|
|
@@ -37291,6 +37353,15 @@ export interface ImaSpecificationLineDto {
|
|
|
37291
37353
|
max?: number | null;
|
|
37292
37354
|
}
|
|
37293
37355
|
|
|
37356
|
+
export interface ImaChemistryCompositeSpecificationDto {
|
|
37357
|
+
pren?: ImaSpecificationLineDto | null;
|
|
37358
|
+
pren22?: ImaSpecificationLineDto | null;
|
|
37359
|
+
pren30?: ImaSpecificationLineDto | null;
|
|
37360
|
+
prenW?: ImaSpecificationLineDto | null;
|
|
37361
|
+
v_Nb_Ti?: ImaSpecificationLineDto | null;
|
|
37362
|
+
ce?: ImaSpecificationLineDto | null;
|
|
37363
|
+
}
|
|
37364
|
+
|
|
37294
37365
|
export interface ImaMechanicalSpecificationDto {
|
|
37295
37366
|
yieldStrength?: ImaSpecificationLineDto | null;
|
|
37296
37367
|
tensileStrength?: ImaSpecificationLineDto | null;
|
|
@@ -37360,6 +37431,7 @@ export interface ImaUpdateSpecificationDto {
|
|
|
37360
37431
|
summary?: string | null;
|
|
37361
37432
|
relatedStandards?: string[] | null;
|
|
37362
37433
|
chemistrySpecification?: ImaChemistrySpecificationDto | null;
|
|
37434
|
+
chemistryCompositeSpecification?: ImaChemistryCompositeSpecificationDto | null;
|
|
37363
37435
|
mechanicalSpecification?: ImaMechanicalSpecificationDto | null;
|
|
37364
37436
|
ferriteSpecification?: ImaFerriteSpecificationDto | null;
|
|
37365
37437
|
documentTypesSpecification?: ImaDocumentTypesSpecificationDto | null;
|