@ignos/api-client 20260721.191.1-alpha → 20260727.193.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/ignosportal-api.d.ts +188 -249
- package/lib/ignosportal-api.js +1 -423
- package/package.json +1 -1
- package/src/ignosportal-api.ts +202 -670
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -2470,45 +2470,6 @@ export declare class MesOrMoveClient extends AuthorizedApiBase implements IMesOr
|
|
|
2470
2470
|
getPrintableLabels(request: GeneratePrintableLabel): Promise<DownloadDto>;
|
|
2471
2471
|
protected processGetPrintableLabels(response: Response): Promise<DownloadDto>;
|
|
2472
2472
|
}
|
|
2473
|
-
export interface IMesPlannerClient {
|
|
2474
|
-
getPlan(resourceGroupId: string | undefined): Promise<PlannerPlanDto>;
|
|
2475
|
-
publish(resourceGroupId: string, request: PublishPlanRequest): Promise<PlannerPlanDto>;
|
|
2476
|
-
updateSequence(resourceGroupId: string, sequence: PlannerSequenceInput): Promise<PlannerPlanDto>;
|
|
2477
|
-
reset(resourceGroupId: string): Promise<PlannerPlanDto>;
|
|
2478
|
-
saveDraft(resourceGroupId: string, sequence: PlannerSequenceInput): Promise<PlannerPlanDto>;
|
|
2479
|
-
discardDraft(resourceGroupId: string): Promise<PlannerPlanDto>;
|
|
2480
|
-
getCapacity(resourceGroupId: string, from: Date | undefined, to: Date | undefined): Promise<WeekCapacityDto[]>;
|
|
2481
|
-
getVersions(resourceGroupId: string): Promise<PlannerPlanEventDto[]>;
|
|
2482
|
-
getVersion(resourceGroupId: string, eventId: string): Promise<PlannerPlanDto>;
|
|
2483
|
-
setProgramStatus(command: SetProgramStatus): Promise<ProgramStatus>;
|
|
2484
|
-
}
|
|
2485
|
-
export declare class MesPlannerClient extends AuthorizedApiBase implements IMesPlannerClient {
|
|
2486
|
-
private http;
|
|
2487
|
-
private baseUrl;
|
|
2488
|
-
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
2489
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2490
|
-
});
|
|
2491
|
-
getPlan(resourceGroupId: string | undefined): Promise<PlannerPlanDto>;
|
|
2492
|
-
protected processGetPlan(response: Response): Promise<PlannerPlanDto>;
|
|
2493
|
-
publish(resourceGroupId: string, request: PublishPlanRequest): Promise<PlannerPlanDto>;
|
|
2494
|
-
protected processPublish(response: Response): Promise<PlannerPlanDto>;
|
|
2495
|
-
updateSequence(resourceGroupId: string, sequence: PlannerSequenceInput): Promise<PlannerPlanDto>;
|
|
2496
|
-
protected processUpdateSequence(response: Response): Promise<PlannerPlanDto>;
|
|
2497
|
-
reset(resourceGroupId: string): Promise<PlannerPlanDto>;
|
|
2498
|
-
protected processReset(response: Response): Promise<PlannerPlanDto>;
|
|
2499
|
-
saveDraft(resourceGroupId: string, sequence: PlannerSequenceInput): Promise<PlannerPlanDto>;
|
|
2500
|
-
protected processSaveDraft(response: Response): Promise<PlannerPlanDto>;
|
|
2501
|
-
discardDraft(resourceGroupId: string): Promise<PlannerPlanDto>;
|
|
2502
|
-
protected processDiscardDraft(response: Response): Promise<PlannerPlanDto>;
|
|
2503
|
-
getCapacity(resourceGroupId: string, from: Date | undefined, to: Date | undefined): Promise<WeekCapacityDto[]>;
|
|
2504
|
-
protected processGetCapacity(response: Response): Promise<WeekCapacityDto[]>;
|
|
2505
|
-
getVersions(resourceGroupId: string): Promise<PlannerPlanEventDto[]>;
|
|
2506
|
-
protected processGetVersions(response: Response): Promise<PlannerPlanEventDto[]>;
|
|
2507
|
-
getVersion(resourceGroupId: string, eventId: string): Promise<PlannerPlanDto>;
|
|
2508
|
-
protected processGetVersion(response: Response): Promise<PlannerPlanDto>;
|
|
2509
|
-
setProgramStatus(command: SetProgramStatus): Promise<ProgramStatus>;
|
|
2510
|
-
protected processSetProgramStatus(response: Response): Promise<ProgramStatus>;
|
|
2511
|
-
}
|
|
2512
2473
|
export interface IMesProductionOrderAttachmentClient {
|
|
2513
2474
|
/**
|
|
2514
2475
|
* Upload a new attachment (with or without a file)
|
|
@@ -2583,7 +2544,7 @@ export declare class MesProductionOrderClient extends AuthorizedApiBase implemen
|
|
|
2583
2544
|
protected processListProductionOrderActivities(response: Response): Promise<ProductionOrderOperationActivityDto[]>;
|
|
2584
2545
|
}
|
|
2585
2546
|
export interface IMesProductionScheduleClient {
|
|
2586
|
-
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
|
|
2547
|
+
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>;
|
|
2587
2548
|
postListProductionScheduleOperations(request: ListProductionScheduleOperationsRequest | undefined): Promise<PagedResultOfProductionScheduleOperationDto>;
|
|
2588
2549
|
getAvailableProductionScheduleFilters(request: GetAvailableProductionScheduleFiltersRequest | undefined): Promise<ProductionScheduleFiltersDto>;
|
|
2589
2550
|
listMyCurrentWorkActivities(): Promise<CurrentWorkActivityDto>;
|
|
@@ -2597,7 +2558,7 @@ export declare class MesProductionScheduleClient extends AuthorizedApiBase imple
|
|
|
2597
2558
|
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
2598
2559
|
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2599
2560
|
});
|
|
2600
|
-
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
|
|
2561
|
+
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>;
|
|
2601
2562
|
protected processListProductionScheduleOperations(response: Response): Promise<PagedResultOfProductionScheduleOperationDto>;
|
|
2602
2563
|
postListProductionScheduleOperations(request: ListProductionScheduleOperationsRequest | undefined): Promise<PagedResultOfProductionScheduleOperationDto>;
|
|
2603
2564
|
protected processPostListProductionScheduleOperations(response: Response): Promise<PagedResultOfProductionScheduleOperationDto>;
|
|
@@ -5039,6 +5000,7 @@ export interface MrbCompanySettingsDto {
|
|
|
5039
5000
|
detailedTransactionsMissingInErp: boolean;
|
|
5040
5001
|
allowMaterialReplacementOnConsumptions: boolean;
|
|
5041
5002
|
nonSplittableTraceUnits: string[];
|
|
5003
|
+
disableTraceEditing: boolean;
|
|
5042
5004
|
}
|
|
5043
5005
|
export interface UpsertMrbCompanySettings {
|
|
5044
5006
|
stampWithLot: boolean;
|
|
@@ -5056,6 +5018,7 @@ export interface UpsertMrbCompanySettings {
|
|
|
5056
5018
|
detailedTransactionsMissingInErp: boolean;
|
|
5057
5019
|
allowMaterialReplacementOnConsumptions: boolean;
|
|
5058
5020
|
nonSplittableTraceUnits: string[];
|
|
5021
|
+
disableTraceEditing: boolean;
|
|
5059
5022
|
}
|
|
5060
5023
|
export interface TraceDto {
|
|
5061
5024
|
id: string;
|
|
@@ -7386,81 +7349,6 @@ export interface LabelId {
|
|
|
7386
7349
|
parcelId: string;
|
|
7387
7350
|
trackingId?: string | null;
|
|
7388
7351
|
}
|
|
7389
|
-
export interface PlannerPlanDto {
|
|
7390
|
-
resourceGroupId: string;
|
|
7391
|
-
sequence: PlannerOperationDto[];
|
|
7392
|
-
lockedCount: number;
|
|
7393
|
-
planSavedAt?: Date | null;
|
|
7394
|
-
isDraft: boolean;
|
|
7395
|
-
publishedETag?: string | null;
|
|
7396
|
-
weeklyCapacities: WeekCapacityDto[];
|
|
7397
|
-
}
|
|
7398
|
-
export interface PlannerOperationDto {
|
|
7399
|
-
id: string;
|
|
7400
|
-
productionOrderNumber: string;
|
|
7401
|
-
operation: number;
|
|
7402
|
-
operationName: string;
|
|
7403
|
-
plannedStart: Date;
|
|
7404
|
-
plannedEnd?: Date | null;
|
|
7405
|
-
status: OperationStatusDto;
|
|
7406
|
-
resourceId: string;
|
|
7407
|
-
resourceName: string;
|
|
7408
|
-
resourceDepartmentNumber?: string | null;
|
|
7409
|
-
resourceDepartmentName?: string | null;
|
|
7410
|
-
partNumber: string;
|
|
7411
|
-
partName?: string | null;
|
|
7412
|
-
partMaterial?: string | null;
|
|
7413
|
-
quantity: number;
|
|
7414
|
-
producedQuantity: number;
|
|
7415
|
-
totalPlannedHours?: number;
|
|
7416
|
-
totalUsedHours?: number;
|
|
7417
|
-
customerName?: string | null;
|
|
7418
|
-
project?: WorkOrderProjectDto | null;
|
|
7419
|
-
sequenceNumber: number;
|
|
7420
|
-
isManuallyLocked: boolean;
|
|
7421
|
-
weekGroup: string;
|
|
7422
|
-
programStatus?: ProgramStatus | null;
|
|
7423
|
-
hasNotes?: boolean;
|
|
7424
|
-
notesUnread?: boolean;
|
|
7425
|
-
}
|
|
7426
|
-
export type ProgramStatus = "Blank" | "NotOk" | "Ok";
|
|
7427
|
-
export interface WeekCapacityDto {
|
|
7428
|
-
weekGroup: string;
|
|
7429
|
-
weekStart: Date;
|
|
7430
|
-
capacityHours: number;
|
|
7431
|
-
}
|
|
7432
|
-
export interface PublishPlanRequest {
|
|
7433
|
-
/** ETag of the published plan the caller last read, used for optimistic
|
|
7434
|
-
concurrency. Null if the caller never observed a published plan. */
|
|
7435
|
-
publishedETag?: string | null;
|
|
7436
|
-
comment?: string | null;
|
|
7437
|
-
/** The caller's unsaved working sequence to publish. When null, the
|
|
7438
|
-
persisted active plan (draft, else published) is published instead. */
|
|
7439
|
-
sequence?: PlannerSequenceInput | null;
|
|
7440
|
-
}
|
|
7441
|
-
export interface PlannerSequenceInput {
|
|
7442
|
-
orderedOperationKeys: string[];
|
|
7443
|
-
lockedCount: number;
|
|
7444
|
-
weekGroups?: {
|
|
7445
|
-
[key: string]: string;
|
|
7446
|
-
} | null;
|
|
7447
|
-
}
|
|
7448
|
-
export interface PlannerPlanEventDto {
|
|
7449
|
-
id: string;
|
|
7450
|
-
eventType: PlannerEventType;
|
|
7451
|
-
occurredAt: Date;
|
|
7452
|
-
by?: string | null;
|
|
7453
|
-
comment?: string | null;
|
|
7454
|
-
operationCount: number;
|
|
7455
|
-
lockedCount: number;
|
|
7456
|
-
}
|
|
7457
|
-
export type PlannerEventType = "Published" | "DraftSaved" | "ResetToErp";
|
|
7458
|
-
export interface SetProgramStatus {
|
|
7459
|
-
workOrderId?: string;
|
|
7460
|
-
operationNumber?: number;
|
|
7461
|
-
status?: ProgramStatus;
|
|
7462
|
-
resourceId?: string;
|
|
7463
|
-
}
|
|
7464
7352
|
export type ProductionOrderAttachmentType = "Url" | "Note" | "Image" | "File";
|
|
7465
7353
|
export interface WorkOrderAttachmentDto {
|
|
7466
7354
|
createdBy?: UserDto | null;
|
|
@@ -7736,9 +7624,6 @@ export interface ProductionScheduleOperationDto {
|
|
|
7736
7624
|
materialPickStatus: MaterialPickStatus;
|
|
7737
7625
|
productionStatus: OperationStatusDto;
|
|
7738
7626
|
setupStatus?: OperationStatusDto | null;
|
|
7739
|
-
programStatus?: ProgramStatus | null;
|
|
7740
|
-
hasNotes: boolean;
|
|
7741
|
-
notesUnread: boolean;
|
|
7742
7627
|
}
|
|
7743
7628
|
export interface SurroundingOperationDto {
|
|
7744
7629
|
id: string;
|
|
@@ -7800,7 +7685,6 @@ export interface ListProductionScheduleOperationsRequest {
|
|
|
7800
7685
|
operationStatuses?: OperationStatusDto[] | null;
|
|
7801
7686
|
after?: Date | null;
|
|
7802
7687
|
before?: Date | null;
|
|
7803
|
-
includeDiscussionSummary?: boolean;
|
|
7804
7688
|
}
|
|
7805
7689
|
export interface ProductionScheduleFiltersDto {
|
|
7806
7690
|
partNumbers?: FilterValueWithQuantity[];
|
|
@@ -8071,7 +7955,6 @@ export interface ImaCertificateTypeRequirementsDto {
|
|
|
8071
7955
|
productAndOrderInformation: ImaCertificateTypeProductAndOrderInformationRequirementsDto;
|
|
8072
7956
|
testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesRequirementsDto;
|
|
8073
7957
|
testResults: ImaCertificateTypeTestResultsRequirementsDto;
|
|
8074
|
-
documentTypes: ImaCertificateTypeDocumentTypesRequirementsDto;
|
|
8075
7958
|
}
|
|
8076
7959
|
export interface ImaCdfEntityReadBase {
|
|
8077
7960
|
}
|
|
@@ -8079,6 +7962,7 @@ export interface ImaCertificateTypeManufacturerRequirementsDto extends ImaCdfEnt
|
|
|
8079
7962
|
manufacturer?: boolean;
|
|
8080
7963
|
address?: boolean;
|
|
8081
7964
|
contact?: boolean;
|
|
7965
|
+
steelPlant?: boolean;
|
|
8082
7966
|
}
|
|
8083
7967
|
export interface ImaCertificateTypeSignatureRequirementsDto extends ImaCdfEntityReadBase {
|
|
8084
7968
|
certifiedBy?: boolean;
|
|
@@ -8097,6 +7981,7 @@ export interface ImaCertificateTypeThirdPartyRequirementsDto extends ImaCdfEntit
|
|
|
8097
7981
|
stamp?: boolean;
|
|
8098
7982
|
}
|
|
8099
7983
|
export interface ImaCertificateTypeCertificationRequirementsDto extends ImaCdfEntityReadBase {
|
|
7984
|
+
certificateType?: boolean;
|
|
8100
7985
|
certificateOfCompliance?: boolean;
|
|
8101
7986
|
inspectionCertificate?: boolean;
|
|
8102
7987
|
}
|
|
@@ -8108,32 +7993,20 @@ export interface ImaCertificateTypeProductAndOrderInformationRequirementsDto ext
|
|
|
8108
7993
|
dimensionsOrWeight?: boolean;
|
|
8109
7994
|
batchNumber?: boolean;
|
|
8110
7995
|
heatNumber?: boolean;
|
|
8111
|
-
|
|
7996
|
+
relevantStandard?: boolean;
|
|
7997
|
+
steelMaking?: boolean;
|
|
8112
7998
|
}
|
|
8113
7999
|
export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsDto extends ImaCdfEntityReadBase {
|
|
8114
8000
|
usedStandards?: boolean;
|
|
8115
8001
|
}
|
|
8116
8002
|
export interface ImaCertificateTypeTestResultsRequirementsDto extends ImaCdfEntityReadBase {
|
|
8117
|
-
|
|
8118
|
-
|
|
8003
|
+
tensileTests?: boolean;
|
|
8004
|
+
hardnessTests?: boolean;
|
|
8119
8005
|
impactTests?: boolean;
|
|
8006
|
+
chemicalAnalysis?: boolean;
|
|
8120
8007
|
corrosionTests?: boolean;
|
|
8121
8008
|
ferriteContentAndMicrostructure?: boolean;
|
|
8122
8009
|
}
|
|
8123
|
-
export interface ImaCertificateTypeDocumentTypesRequirementsDto extends ImaCdfEntityReadBase {
|
|
8124
|
-
heatTreatmentCertificate?: boolean;
|
|
8125
|
-
ultrasonicControlCertificate?: boolean;
|
|
8126
|
-
liquidPenetrantCertificate?: boolean;
|
|
8127
|
-
testReport?: boolean;
|
|
8128
|
-
dimensionalReport?: boolean;
|
|
8129
|
-
dyePenetrantReport?: boolean;
|
|
8130
|
-
visualReport?: boolean;
|
|
8131
|
-
certificateOfAnalyticalAndMechanicalTests?: boolean;
|
|
8132
|
-
certificateOfTest?: boolean;
|
|
8133
|
-
technicalReport?: boolean;
|
|
8134
|
-
microExaminationReport?: boolean;
|
|
8135
|
-
radiologicalReport?: boolean;
|
|
8136
|
-
}
|
|
8137
8010
|
export interface ImaCreateOrCopyCertificateTypeRequestDto {
|
|
8138
8011
|
name: string;
|
|
8139
8012
|
revision: string;
|
|
@@ -8154,12 +8027,12 @@ export interface ImaCertificateTypeRequirementsUpdateDto {
|
|
|
8154
8027
|
productAndOrderInformation?: ImaCertificateTypeProductAndOrderInformationRequirementsUpdateDto | null;
|
|
8155
8028
|
testMethodsAndReferences?: ImaCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto | null;
|
|
8156
8029
|
testResults?: ImaCertificateTypeTestResultsRequirementsUpdateDto | null;
|
|
8157
|
-
documentTypes?: ImaCertificateTypeDocumentTypesRequirementsUpdateDto | null;
|
|
8158
8030
|
}
|
|
8159
8031
|
export interface ImaCertificateTypeManufacturerRequirementsUpdateDto {
|
|
8160
8032
|
manufacturer?: boolean | null;
|
|
8161
8033
|
address?: boolean | null;
|
|
8162
8034
|
contact?: boolean | null;
|
|
8035
|
+
steelPlant?: boolean | null;
|
|
8163
8036
|
}
|
|
8164
8037
|
export interface ImaCertificateTypeSignatureRequirementsUpdateDto {
|
|
8165
8038
|
certifiedBy?: boolean | null;
|
|
@@ -8178,6 +8051,7 @@ export interface ImaCertificateTypeThirdPartyRequirementsUpdateDto {
|
|
|
8178
8051
|
stamp?: boolean | null;
|
|
8179
8052
|
}
|
|
8180
8053
|
export interface ImaCertificateTypeCertificationRequirementsUpdateDto {
|
|
8054
|
+
certificateType?: boolean | null;
|
|
8181
8055
|
certificateOfCompliance?: boolean | null;
|
|
8182
8056
|
inspectionCertificate?: boolean | null;
|
|
8183
8057
|
}
|
|
@@ -8189,32 +8063,20 @@ export interface ImaCertificateTypeProductAndOrderInformationRequirementsUpdateD
|
|
|
8189
8063
|
dimensionsOrWeight?: boolean | null;
|
|
8190
8064
|
batchNumber?: boolean | null;
|
|
8191
8065
|
heatNumber?: boolean | null;
|
|
8192
|
-
|
|
8066
|
+
relevantStandard?: boolean | null;
|
|
8067
|
+
steelMaking?: boolean | null;
|
|
8193
8068
|
}
|
|
8194
8069
|
export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto {
|
|
8195
8070
|
usedStandards?: boolean | null;
|
|
8196
8071
|
}
|
|
8197
8072
|
export interface ImaCertificateTypeTestResultsRequirementsUpdateDto {
|
|
8198
|
-
|
|
8199
|
-
|
|
8073
|
+
tensileTests?: boolean | null;
|
|
8074
|
+
hardnessTests?: boolean | null;
|
|
8200
8075
|
impactTests?: boolean | null;
|
|
8076
|
+
chemicalAnalysis?: boolean | null;
|
|
8201
8077
|
corrosionTests?: boolean | null;
|
|
8202
8078
|
ferriteContentAndMicrostructure?: boolean | null;
|
|
8203
8079
|
}
|
|
8204
|
-
export interface ImaCertificateTypeDocumentTypesRequirementsUpdateDto {
|
|
8205
|
-
heatTreatmentCertificate?: boolean | null;
|
|
8206
|
-
ultrasonicControlCertificate?: boolean | null;
|
|
8207
|
-
liquidPenetrantCertificate?: boolean | null;
|
|
8208
|
-
testReport?: boolean | null;
|
|
8209
|
-
dimensionalReport?: boolean | null;
|
|
8210
|
-
dyePenetrantReport?: boolean | null;
|
|
8211
|
-
visualReport?: boolean | null;
|
|
8212
|
-
certificateOfAnalyticalAndMechanicalTests?: boolean | null;
|
|
8213
|
-
certificateOfTest?: boolean | null;
|
|
8214
|
-
technicalReport?: boolean | null;
|
|
8215
|
-
microExaminationReport?: boolean | null;
|
|
8216
|
-
radiologicalReport?: boolean | null;
|
|
8217
|
-
}
|
|
8218
8080
|
export interface ImaCertificateTypeLiteDto {
|
|
8219
8081
|
certificateTypeId: string;
|
|
8220
8082
|
version: number;
|
|
@@ -8285,13 +8147,12 @@ export interface ImaCertificateTypeResultsDto extends ImaCdfEntityReadBase {
|
|
|
8285
8147
|
certification: ImaCertificateTypeCertificationResultsDto;
|
|
8286
8148
|
productAndOrderInformation: ImaCertificateTypeProductAndOrderInformationResultsDto;
|
|
8287
8149
|
testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesResultsDto;
|
|
8288
|
-
testResults: ImaCertificateTypeTestResultsResultsDto;
|
|
8289
|
-
documentTypes: ImaCertificateTypeDocumentTypesResultsDto;
|
|
8290
8150
|
}
|
|
8291
8151
|
export interface ImaCertificateTypeManufacturerResultsDto extends ImaCdfEntityReadBase {
|
|
8292
8152
|
manufacturer?: ImaCertificateTypeResultLine | null;
|
|
8293
8153
|
address?: ImaCertificateTypeResultLine | null;
|
|
8294
8154
|
contact?: ImaCertificateTypeResultLine | null;
|
|
8155
|
+
steelPlant?: ImaCertificateTypeResultLine | null;
|
|
8295
8156
|
}
|
|
8296
8157
|
export interface ImaCertificateTypeResultLine extends ImaCdfEntityReadBase {
|
|
8297
8158
|
found?: boolean;
|
|
@@ -8323,9 +8184,18 @@ export interface ImaCertificateTypeThirdPartyResultsDto extends ImaCdfEntityRead
|
|
|
8323
8184
|
stamp?: ImaCertificateTypeResultLine | null;
|
|
8324
8185
|
}
|
|
8325
8186
|
export interface ImaCertificateTypeCertificationResultsDto extends ImaCdfEntityReadBase {
|
|
8326
|
-
|
|
8187
|
+
certificateType?: ImaCertificateTypeResultLine | null;
|
|
8188
|
+
certificateOfCompliance?: ImaSupplementaryCheckResultDto | null;
|
|
8327
8189
|
inspectionCertificate?: ImaCertificateTypeResultLine | null;
|
|
8328
8190
|
}
|
|
8191
|
+
export interface ImaSupplementaryCheckResultDto extends ImaCdfEntityReadBase {
|
|
8192
|
+
status?: string | null;
|
|
8193
|
+
documentId?: string | null;
|
|
8194
|
+
acceptable?: boolean | null;
|
|
8195
|
+
standards: string[];
|
|
8196
|
+
summary?: string | null;
|
|
8197
|
+
override?: ImaResultLineOverrideDto | null;
|
|
8198
|
+
}
|
|
8329
8199
|
export interface ImaCertificateTypeProductAndOrderInformationResultsDto extends ImaCdfEntityReadBase {
|
|
8330
8200
|
productDescription?: ImaCertificateTypeResultLine | null;
|
|
8331
8201
|
materialGrade?: ImaCertificateTypeResultLine | null;
|
|
@@ -8334,37 +8204,29 @@ export interface ImaCertificateTypeProductAndOrderInformationResultsDto extends
|
|
|
8334
8204
|
dimensionsOrWeight?: ImaCertificateTypeResultLine | null;
|
|
8335
8205
|
batchNumber?: ImaCertificateTypeResultLine | null;
|
|
8336
8206
|
heatNumber?: ImaCertificateTypeResultLine | null;
|
|
8337
|
-
|
|
8207
|
+
relevantStandard?: ImaCertificateTypeResultLine | null;
|
|
8208
|
+
steelMaking: ImaSteelMakingResultDto;
|
|
8209
|
+
}
|
|
8210
|
+
export interface ImaSteelMakingResultDto extends ImaCdfEntityReadBase {
|
|
8211
|
+
raw?: string[] | null;
|
|
8212
|
+
chain?: string[] | null;
|
|
8213
|
+
unmatched?: string[] | null;
|
|
8338
8214
|
}
|
|
8339
8215
|
export interface ImaCertificateTypeTestMethodsAndReferencesResultsDto extends ImaCdfEntityReadBase {
|
|
8340
8216
|
usedStandards?: ImaCertificateTypeResultLine | null;
|
|
8341
8217
|
}
|
|
8342
|
-
export interface ImaCertificateTypeTestResultsResultsDto extends ImaCdfEntityReadBase {
|
|
8343
|
-
mechanicalProperties?: ImaCertificateTypeResultLine | null;
|
|
8344
|
-
chemicalAnalysis?: ImaCertificateTypeResultLine | null;
|
|
8345
|
-
impactTests?: ImaCertificateTypeResultLine | null;
|
|
8346
|
-
corrosionTests?: ImaCertificateTypeResultLine | null;
|
|
8347
|
-
ferriteContentAndMicrostructure?: ImaCertificateTypeResultLine | null;
|
|
8348
|
-
}
|
|
8349
|
-
export interface ImaCertificateTypeDocumentTypesResultsDto extends ImaCdfEntityReadBase {
|
|
8350
|
-
heatTreatmentCertificate?: ImaCertificateTypeResultLine | null;
|
|
8351
|
-
ultrasonicControlCertificate?: ImaCertificateTypeResultLine | null;
|
|
8352
|
-
liquidPenetrantCertificate?: ImaCertificateTypeResultLine | null;
|
|
8353
|
-
testReport?: ImaCertificateTypeResultLine | null;
|
|
8354
|
-
dimensionalReport?: ImaCertificateTypeResultLine | null;
|
|
8355
|
-
dyePenetrantReport?: ImaCertificateTypeResultLine | null;
|
|
8356
|
-
visualReport?: ImaCertificateTypeResultLine | null;
|
|
8357
|
-
certificateOfAnalyticalAndMechanicalTests?: ImaCertificateTypeResultLine | null;
|
|
8358
|
-
certificateOfTest?: ImaCertificateTypeResultLine | null;
|
|
8359
|
-
technicalReport?: ImaCertificateTypeResultLine | null;
|
|
8360
|
-
microExaminationReport?: ImaCertificateTypeResultLine | null;
|
|
8361
|
-
radiologicalReport?: ImaCertificateTypeResultLine | null;
|
|
8362
|
-
}
|
|
8363
8218
|
export interface ImaSpecificationResultsDto extends ImaCdfEntityReadBase {
|
|
8364
8219
|
chemistry: ImaSpecificationChemistryResultsDto;
|
|
8365
8220
|
mechanical: ImaSpecificationMechanicalResultsDto;
|
|
8366
8221
|
ferrite: ImaSpecificationFerriteResultsDto;
|
|
8367
|
-
|
|
8222
|
+
chemicalAnalysis: ImaChemicalAnalysisResultDto[];
|
|
8223
|
+
tensileTests: ImaTensileTestResultDto[];
|
|
8224
|
+
hardnessTests: ImaHardnessTestResultDto[];
|
|
8225
|
+
impactTests: ImaImpactTestResultDto[];
|
|
8226
|
+
corrosionTests: ImaCorrosionTestResultDto[];
|
|
8227
|
+
ferriteContentAndMicrostructure: ImaFerriteResultDto[];
|
|
8228
|
+
heatTreatments: ImaHeatTreatmentResultDto[];
|
|
8229
|
+
documentTypes: ImaDocumentTypesResultsDto;
|
|
8368
8230
|
}
|
|
8369
8231
|
export interface ImaSpecificationChemistryResultsDto extends ImaCdfEntityReadBase {
|
|
8370
8232
|
carbon?: ImaSpecificationResultLineDto | null;
|
|
@@ -8407,27 +8269,132 @@ export interface ImaSpecificationFerriteResultLineDto extends ImaCdfEntityReadBa
|
|
|
8407
8269
|
override?: ImaResultLineOverrideDto | null;
|
|
8408
8270
|
measurementMethod?: string | null;
|
|
8409
8271
|
}
|
|
8410
|
-
export interface
|
|
8411
|
-
|
|
8412
|
-
|
|
8413
|
-
|
|
8272
|
+
export interface ImaChemicalAnalysisResultDto extends ImaCdfEntityReadBase {
|
|
8273
|
+
sampleReference?: string | null;
|
|
8274
|
+
analysisType?: string | null;
|
|
8275
|
+
elements: ImaChemicalElementResultDto[];
|
|
8276
|
+
indices: ImaChemicalIndexResultDto[];
|
|
8277
|
+
testStandards: string[];
|
|
8278
|
+
override?: ImaResultLineOverrideDto | null;
|
|
8279
|
+
}
|
|
8280
|
+
export interface ImaChemicalElementResultDto extends ImaCdfEntityReadBase {
|
|
8281
|
+
symbol?: string | null;
|
|
8282
|
+
value?: ImaResultValueDto | null;
|
|
8283
|
+
}
|
|
8284
|
+
export interface ImaResultValueDto extends ImaCdfEntityReadBase {
|
|
8285
|
+
readValue?: string | null;
|
|
8286
|
+
value?: number | null;
|
|
8287
|
+
unit?: string | null;
|
|
8288
|
+
override?: ImaResultLineOverrideDto | null;
|
|
8289
|
+
}
|
|
8290
|
+
export interface ImaChemicalIndexResultDto extends ImaCdfEntityReadBase {
|
|
8291
|
+
name?: string | null;
|
|
8292
|
+
value?: number | null;
|
|
8414
8293
|
}
|
|
8415
|
-
export interface
|
|
8416
|
-
|
|
8417
|
-
|
|
8418
|
-
|
|
8294
|
+
export interface ImaTensileTestResultDto extends ImaCdfEntityReadBase {
|
|
8295
|
+
sampleReference?: string | null;
|
|
8296
|
+
orientation?: string | null;
|
|
8297
|
+
testLocation?: string | null;
|
|
8298
|
+
temperature?: ImaResultValueDto | null;
|
|
8299
|
+
roomTemperature?: boolean | null;
|
|
8300
|
+
yieldStrengths: ImaYieldStrengthResultDto[];
|
|
8301
|
+
tensileStrength?: ImaResultValueDto | null;
|
|
8302
|
+
yieldTensileRatio?: number | null;
|
|
8303
|
+
elongations: ImaElongationResultDto[];
|
|
8304
|
+
reductionOfArea?: ImaResultValueDto | null;
|
|
8305
|
+
testStandards: string[];
|
|
8306
|
+
override?: ImaResultLineOverrideDto | null;
|
|
8419
8307
|
}
|
|
8420
|
-
export interface
|
|
8421
|
-
|
|
8422
|
-
|
|
8423
|
-
|
|
8308
|
+
export interface ImaYieldStrengthResultDto extends ImaCdfEntityReadBase {
|
|
8309
|
+
label?: string | null;
|
|
8310
|
+
value?: ImaResultValueDto | null;
|
|
8311
|
+
}
|
|
8312
|
+
export interface ImaElongationResultDto extends ImaCdfEntityReadBase {
|
|
8313
|
+
gauge?: string | null;
|
|
8314
|
+
value?: ImaResultValueDto | null;
|
|
8315
|
+
}
|
|
8316
|
+
export interface ImaHardnessTestResultDto extends ImaCdfEntityReadBase {
|
|
8317
|
+
sampleReference?: string | null;
|
|
8318
|
+
orientation?: string | null;
|
|
8319
|
+
testLocation?: string | null;
|
|
8320
|
+
readings: ImaHardnessReadingResultDto[];
|
|
8321
|
+
testStandards: string[];
|
|
8322
|
+
override?: ImaResultLineOverrideDto | null;
|
|
8323
|
+
}
|
|
8324
|
+
export interface ImaHardnessReadingResultDto extends ImaCdfEntityReadBase {
|
|
8325
|
+
label?: string | null;
|
|
8326
|
+
scale?: string | null;
|
|
8327
|
+
value?: number | null;
|
|
8328
|
+
}
|
|
8329
|
+
export interface ImaImpactTestResultDto extends ImaCdfEntityReadBase {
|
|
8330
|
+
sampleReference?: string | null;
|
|
8331
|
+
orientation?: string | null;
|
|
8332
|
+
testLocation?: string | null;
|
|
8333
|
+
temperature?: ImaResultValueDto | null;
|
|
8334
|
+
roomTemperature?: boolean | null;
|
|
8335
|
+
testLabel?: string | null;
|
|
8336
|
+
notchType?: string | null;
|
|
8337
|
+
specimenSize?: string | null;
|
|
8338
|
+
individualValues: ImaResultValueDto[];
|
|
8339
|
+
reportedAverage?: ImaResultValueDto | null;
|
|
8340
|
+
reportedMinimum?: ImaResultValueDto | null;
|
|
8341
|
+
testStandards: string[];
|
|
8342
|
+
override?: ImaResultLineOverrideDto | null;
|
|
8343
|
+
}
|
|
8344
|
+
export interface ImaCorrosionTestResultDto extends ImaCdfEntityReadBase {
|
|
8345
|
+
sampleReference?: string | null;
|
|
8346
|
+
testLocation?: string | null;
|
|
8347
|
+
testMethod?: string | null;
|
|
8348
|
+
testTemperature?: ImaResultValueDto | null;
|
|
8349
|
+
roomTemperature?: boolean | null;
|
|
8350
|
+
weightLoss?: ImaResultValueDto | null;
|
|
8351
|
+
pitting?: boolean | null;
|
|
8352
|
+
result?: string | null;
|
|
8353
|
+
acceptable?: boolean | null;
|
|
8354
|
+
override?: ImaResultLineOverrideDto | null;
|
|
8355
|
+
}
|
|
8356
|
+
export interface ImaFerriteResultDto extends ImaCdfEntityReadBase {
|
|
8357
|
+
sampleReference?: string | null;
|
|
8358
|
+
testLocation?: string | null;
|
|
8359
|
+
ferrite?: ImaResultValueDto | null;
|
|
8360
|
+
ferriteTolerance?: number | null;
|
|
8361
|
+
reportedRange?: string | null;
|
|
8362
|
+
intermetallicPhases?: boolean | null;
|
|
8363
|
+
grainSize?: string | null;
|
|
8364
|
+
testStandards: string[];
|
|
8365
|
+
override?: ImaResultLineOverrideDto | null;
|
|
8366
|
+
}
|
|
8367
|
+
export interface ImaHeatTreatmentResultDto extends ImaCdfEntityReadBase {
|
|
8368
|
+
stepType?: string | null;
|
|
8369
|
+
treatmentName?: string | null;
|
|
8370
|
+
temperature?: ImaResultValueDto | null;
|
|
8371
|
+
temperatureMin?: number | null;
|
|
8372
|
+
temperatureMax?: number | null;
|
|
8373
|
+
soakTime?: ImaResultValueDto | null;
|
|
8374
|
+
soakRate?: string | null;
|
|
8375
|
+
coolingMedium?: string | null;
|
|
8376
|
+
override?: ImaResultLineOverrideDto | null;
|
|
8377
|
+
}
|
|
8378
|
+
export interface ImaDocumentTypesResultsDto extends ImaCdfEntityReadBase {
|
|
8379
|
+
ultrasonicControlCertificate?: ImaSupplementaryCheckResultDto | null;
|
|
8380
|
+
radiologicalReport?: ImaSupplementaryCheckResultDto | null;
|
|
8381
|
+
liquidPenetrantCertificate?: ImaSupplementaryCheckResultDto | null;
|
|
8382
|
+
magneticParticle?: ImaSupplementaryCheckResultDto | null;
|
|
8383
|
+
pmi?: ImaSupplementaryCheckResultDto | null;
|
|
8384
|
+
hydrostatic?: ImaSupplementaryCheckResultDto | null;
|
|
8385
|
+
visualReport?: ImaSupplementaryCheckResultDto | null;
|
|
8386
|
+
dimensionalReport?: ImaSupplementaryCheckResultDto | null;
|
|
8387
|
+
microExaminationReport?: ImaSupplementaryCheckResultDto | null;
|
|
8424
8388
|
}
|
|
8425
8389
|
export interface ImaOverrideMaterialCheckRequestDto {
|
|
8426
8390
|
certificateTypeSection?: ImaOverrideCertificateTypeResultsDto | null;
|
|
8427
|
-
|
|
8428
|
-
|
|
8429
|
-
|
|
8430
|
-
|
|
8391
|
+
chemicalAnalysisSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8392
|
+
tensileTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8393
|
+
hardnessTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8394
|
+
impactTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8395
|
+
corrosionTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8396
|
+
ferriteResultSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8397
|
+
documentTypesSection?: ImaOverrideDocumentTypesResultsDto | null;
|
|
8431
8398
|
}
|
|
8432
8399
|
export interface ImaOverrideCertificateTypeResultsDto {
|
|
8433
8400
|
manufacturer?: ImaOverrideCertificateTypeManufacturerResultsDto | null;
|
|
@@ -8436,13 +8403,12 @@ export interface ImaOverrideCertificateTypeResultsDto {
|
|
|
8436
8403
|
certification?: ImaOverrideCertificateTypeCertificationResultsDto | null;
|
|
8437
8404
|
productAndOrderInformation?: ImaOverrideCertificateTypeProductAndOrderInformationResultsDto | null;
|
|
8438
8405
|
testMethodsAndReferences?: ImaOverrideCertificateTypeTestMethodsAndReferencesResultsDto | null;
|
|
8439
|
-
testResults?: ImaOverrideCertificateTypeTestResultsResultsDto | null;
|
|
8440
|
-
documentTypes?: ImaOverrideCertificateTypeDocumentTypesResultsDto | null;
|
|
8441
8406
|
}
|
|
8442
8407
|
export interface ImaOverrideCertificateTypeManufacturerResultsDto {
|
|
8443
8408
|
manufacturer?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8444
8409
|
address?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8445
8410
|
contact?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8411
|
+
steelPlant?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8446
8412
|
}
|
|
8447
8413
|
export interface ImaOverrideUpdateMaterialCheckResultLineDto {
|
|
8448
8414
|
approved?: boolean | null;
|
|
@@ -8465,6 +8431,7 @@ export interface ImaOverrideCertificateTypeThirdPartyResultsDto {
|
|
|
8465
8431
|
stamp?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8466
8432
|
}
|
|
8467
8433
|
export interface ImaOverrideCertificateTypeCertificationResultsDto {
|
|
8434
|
+
certificateType?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8468
8435
|
certificateOfCompliance?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8469
8436
|
inspectionCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8470
8437
|
}
|
|
@@ -8476,59 +8443,21 @@ export interface ImaOverrideCertificateTypeProductAndOrderInformationResultsDto
|
|
|
8476
8443
|
dimensionsOrWeight?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8477
8444
|
batchNumber?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8478
8445
|
heatNumber?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8479
|
-
|
|
8446
|
+
relevantStandard?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8480
8447
|
}
|
|
8481
8448
|
export interface ImaOverrideCertificateTypeTestMethodsAndReferencesResultsDto {
|
|
8482
8449
|
usedStandards?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8483
8450
|
}
|
|
8484
|
-
export interface
|
|
8485
|
-
mechanicalProperties?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8486
|
-
chemicalAnalysis?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8487
|
-
impactTests?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8488
|
-
corrosionTests?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8489
|
-
ferriteContentAndMicrostructure?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8490
|
-
}
|
|
8491
|
-
export interface ImaOverrideCertificateTypeDocumentTypesResultsDto {
|
|
8492
|
-
heatTreatmentCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8451
|
+
export interface ImaOverrideDocumentTypesResultsDto {
|
|
8493
8452
|
ultrasonicControlCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8453
|
+
radiologicalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8494
8454
|
liquidPenetrantCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8495
|
-
|
|
8496
|
-
|
|
8497
|
-
|
|
8455
|
+
magneticParticle?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8456
|
+
pmi?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8457
|
+
hydrostatic?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8498
8458
|
visualReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8499
|
-
|
|
8500
|
-
certificateOfTest?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8501
|
-
technicalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8459
|
+
dimensionalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8502
8460
|
microExaminationReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8503
|
-
radiologicalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8504
|
-
}
|
|
8505
|
-
export interface ImaOverrideSpecificationChemistryResultsDto {
|
|
8506
|
-
carbon?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8507
|
-
manganese?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8508
|
-
silicon?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8509
|
-
phosphorus?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8510
|
-
sulfur?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8511
|
-
chromium?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8512
|
-
nickel?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8513
|
-
molybdenum?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8514
|
-
copper?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8515
|
-
nitrogen?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8516
|
-
wolfram?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8517
|
-
iron?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8518
|
-
}
|
|
8519
|
-
export interface ImaOverrideSpecificationMechanicalResultsDto {
|
|
8520
|
-
yieldStrength?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8521
|
-
tensileStrength?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8522
|
-
elongation?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8523
|
-
reductionOfArea?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8524
|
-
impactEnergy?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8525
|
-
hardness?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8526
|
-
}
|
|
8527
|
-
export interface ImaOverrideSpecificationFerriteResultsDto {
|
|
8528
|
-
ferriteContent?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8529
|
-
}
|
|
8530
|
-
export interface ImaOverrideSpecificationHeatTreatmentResultsDto {
|
|
8531
|
-
heatTreatmentOverrides?: ImaOverrideUpdateMaterialCheckResultLineDto[] | null;
|
|
8532
8461
|
}
|
|
8533
8462
|
export interface ImaUpdateMaterialCheckMetadataRequestDto {
|
|
8534
8463
|
customerOrder?: string;
|
|
@@ -8582,7 +8511,7 @@ export interface ImaMaterialCheckLiteDto {
|
|
|
8582
8511
|
}
|
|
8583
8512
|
export interface ImaMaterialChecksPageRequestDto {
|
|
8584
8513
|
pageSize?: number | null;
|
|
8585
|
-
orderBy?: ImaMaterialChecksPageOrderRequestDto
|
|
8514
|
+
orderBy?: ImaMaterialChecksPageOrderRequestDto | null;
|
|
8586
8515
|
searchQuery?: string | null;
|
|
8587
8516
|
fileNameFilter?: string | null;
|
|
8588
8517
|
specificationFilter?: string | null;
|
|
@@ -8735,6 +8664,7 @@ export interface ImaSpecificationDto {
|
|
|
8735
8664
|
chemistrySpecification: ImaChemistrySpecificationDto;
|
|
8736
8665
|
mechanicalSpecification: ImaMechanicalSpecificationDto;
|
|
8737
8666
|
ferriteSpecification: ImaFerriteSpecificationDto;
|
|
8667
|
+
documentTypesSpecification: ImaDocumentTypesSpecificationDto;
|
|
8738
8668
|
heatTreatmentSpecifications: ImaHeatTreatmentSpecificationDto[];
|
|
8739
8669
|
}
|
|
8740
8670
|
export interface ImaSpecificationVersionDto {
|
|
@@ -8770,6 +8700,17 @@ export interface ImaMechanicalSpecificationDto {
|
|
|
8770
8700
|
export interface ImaFerriteSpecificationDto {
|
|
8771
8701
|
ferriteContent?: ImaSpecificationLineDto | null;
|
|
8772
8702
|
}
|
|
8703
|
+
export interface ImaDocumentTypesSpecificationDto {
|
|
8704
|
+
ultrasonicControlCertificate?: boolean;
|
|
8705
|
+
radiologicalReport?: boolean;
|
|
8706
|
+
liquidPenetrantCertificate?: boolean;
|
|
8707
|
+
magneticParticle?: boolean;
|
|
8708
|
+
pmi?: boolean;
|
|
8709
|
+
hydrostatic?: boolean;
|
|
8710
|
+
visualReport?: boolean;
|
|
8711
|
+
dimensionalReport?: boolean;
|
|
8712
|
+
microExaminationReport?: boolean;
|
|
8713
|
+
}
|
|
8773
8714
|
export interface ImaHeatTreatmentSpecificationDto {
|
|
8774
8715
|
step: number;
|
|
8775
8716
|
cooling?: ImaHeatTreatmentSpecificationCoolingDto | null;
|
|
@@ -8809,6 +8750,7 @@ export interface ImaUpdateSpecificationDto {
|
|
|
8809
8750
|
chemistrySpecification?: ImaChemistrySpecificationDto | null;
|
|
8810
8751
|
mechanicalSpecification?: ImaMechanicalSpecificationDto | null;
|
|
8811
8752
|
ferriteSpecification?: ImaFerriteSpecificationDto | null;
|
|
8753
|
+
documentTypesSpecification?: ImaDocumentTypesSpecificationDto | null;
|
|
8812
8754
|
heatSpecifications?: ImaHeatTreatmentSpecificationDto[] | null;
|
|
8813
8755
|
}
|
|
8814
8756
|
export interface ImaSpecificationLiteDto {
|
|
@@ -9895,20 +9837,17 @@ export interface WorkorderDiscussionMessageDto {
|
|
|
9895
9837
|
operationName?: string | null;
|
|
9896
9838
|
resourceId?: string | null;
|
|
9897
9839
|
created?: Date;
|
|
9898
|
-
visibility?: DiscussionVisibility;
|
|
9899
9840
|
}
|
|
9900
9841
|
export interface WorkOrderDiscussionContent {
|
|
9901
9842
|
type?: WorkOrderDiscussionContentType;
|
|
9902
9843
|
value?: string;
|
|
9903
9844
|
}
|
|
9904
9845
|
export type WorkOrderDiscussionContentType = 0 | 1;
|
|
9905
|
-
export type DiscussionVisibility = "Public" | "Planner";
|
|
9906
9846
|
export interface AddDiscussionMessageRequest {
|
|
9907
9847
|
message: string;
|
|
9908
9848
|
operationId?: string | null;
|
|
9909
9849
|
operationName?: string | null;
|
|
9910
9850
|
resourceId?: string | null;
|
|
9911
|
-
visibility?: DiscussionVisibility;
|
|
9912
9851
|
}
|
|
9913
9852
|
export interface WorkorderDiscussionReadStatusDto {
|
|
9914
9853
|
workorderId: string;
|