@ignos/api-client 20260723.192.1-alpha → 20260727.194.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.
@@ -2460,6 +2460,7 @@ export declare class MesLinksClient extends AuthorizedApiBase implements IMesLin
2460
2460
  }
2461
2461
  export interface IMesOrMoveClient {
2462
2462
  getPrintableLabels(request: GeneratePrintableLabel): Promise<DownloadDto>;
2463
+ postListProductionOrders(request: ListProductionOrdersRequest): Promise<ProductionOrderListDto[]>;
2463
2464
  }
2464
2465
  export declare class MesOrMoveClient extends AuthorizedApiBase implements IMesOrMoveClient {
2465
2466
  private http;
@@ -2469,45 +2470,8 @@ export declare class MesOrMoveClient extends AuthorizedApiBase implements IMesOr
2469
2470
  });
2470
2471
  getPrintableLabels(request: GeneratePrintableLabel): Promise<DownloadDto>;
2471
2472
  protected processGetPrintableLabels(response: Response): Promise<DownloadDto>;
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>;
2473
+ postListProductionOrders(request: ListProductionOrdersRequest): Promise<ProductionOrderListDto[]>;
2474
+ protected processPostListProductionOrders(response: Response): Promise<ProductionOrderListDto[]>;
2511
2475
  }
2512
2476
  export interface IMesProductionOrderAttachmentClient {
2513
2477
  /**
@@ -5039,6 +5003,7 @@ export interface MrbCompanySettingsDto {
5039
5003
  detailedTransactionsMissingInErp: boolean;
5040
5004
  allowMaterialReplacementOnConsumptions: boolean;
5041
5005
  nonSplittableTraceUnits: string[];
5006
+ disableTraceEditing: boolean;
5042
5007
  }
5043
5008
  export interface UpsertMrbCompanySettings {
5044
5009
  stampWithLot: boolean;
@@ -5056,6 +5021,7 @@ export interface UpsertMrbCompanySettings {
5056
5021
  detailedTransactionsMissingInErp: boolean;
5057
5022
  allowMaterialReplacementOnConsumptions: boolean;
5058
5023
  nonSplittableTraceUnits: string[];
5024
+ disableTraceEditing: boolean;
5059
5025
  }
5060
5026
  export interface TraceDto {
5061
5027
  id: string;
@@ -7386,77 +7352,36 @@ export interface LabelId {
7386
7352
  parcelId: string;
7387
7353
  trackingId?: string | null;
7388
7354
  }
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 {
7355
+ export interface ProductionOrderListDto {
7399
7356
  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;
7357
+ companyId?: string | null;
7358
+ part?: PartDto | null;
7413
7359
  quantity: number;
7360
+ unit?: string | null;
7361
+ status: WorkorderStatus;
7362
+ plannedStart?: Date | null;
7363
+ plannedEnd?: Date | null;
7414
7364
  producedQuantity: number;
7415
- totalPlannedHours?: number;
7416
- totalUsedHours?: number;
7417
- customerName?: string | null;
7365
+ scrappedQuantity: number;
7366
+ deliveryLocation?: WarehouseLocationDto | null;
7418
7367
  project?: WorkOrderProjectDto | null;
7419
- sequenceNumber: number;
7420
- isManuallyLocked: boolean;
7421
- weekGroup: string;
7422
- programStatus?: ProgramStatus | null;
7423
- }
7424
- export type ProgramStatus = "Blank" | "NotOk" | "Ok";
7425
- export interface WeekCapacityDto {
7426
- weekGroup: string;
7427
- weekStart: Date;
7428
- capacityHours: number;
7429
- }
7430
- export interface PublishPlanRequest {
7431
- /** ETag of the published plan the caller last read, used for optimistic
7432
- concurrency. Null if the caller never observed a published plan. */
7433
- publishedETag?: string | null;
7434
- comment?: string | null;
7435
- /** The caller's unsaved working sequence to publish. When null, the
7436
- persisted active plan (draft, else published) is published instead. */
7437
- sequence?: PlannerSequenceInput | null;
7438
- }
7439
- export interface PlannerSequenceInput {
7440
- orderedOperationKeys: string[];
7441
- lockedCount: number;
7442
- weekGroups?: {
7443
- [key: string]: string;
7444
- } | null;
7368
+ startDate?: Date | null;
7369
+ endDate?: Date | null;
7370
+ deliveryDate?: Date | null;
7371
+ bomPosition?: string | null;
7372
+ orderReference?: OrderReferenceDto | null;
7373
+ customerOrderReference?: WorkorderCustomerOrderReferenceDto | null;
7445
7374
  }
7446
- export interface PlannerPlanEventDto {
7447
- id: string;
7448
- eventType: PlannerEventType;
7449
- occurredAt: Date;
7450
- by?: string | null;
7451
- comment?: string | null;
7452
- operationCount: number;
7453
- lockedCount: number;
7375
+ export interface OrderReferenceDto {
7376
+ orderReferenceType?: OrderReferenceTypeDto;
7377
+ orderNumber?: string;
7378
+ orderLineNumber?: number | null;
7454
7379
  }
7455
- export type PlannerEventType = "Published" | "DraftSaved" | "ResetToErp";
7456
- export interface SetProgramStatus {
7457
- workOrderId?: string;
7458
- operationNumber?: number;
7459
- status?: ProgramStatus;
7380
+ export type OrderReferenceTypeDto = "ProductionOrder" | "PurchaseOrder" | "SalesOrder";
7381
+ export interface ListProductionOrdersRequest {
7382
+ search: string;
7383
+ searchType: SearchTypeDto;
7384
+ maxResults?: number | null;
7460
7385
  }
7461
7386
  export type ProductionOrderAttachmentType = "Url" | "Note" | "Image" | "File";
7462
7387
  export interface WorkOrderAttachmentDto {
@@ -7539,12 +7464,6 @@ export interface DrawingFileDto {
7539
7464
  name: string;
7540
7465
  comment?: string;
7541
7466
  }
7542
- export interface OrderReferenceDto {
7543
- orderReferenceType?: OrderReferenceTypeDto;
7544
- orderNumber?: string;
7545
- orderLineNumber?: number | null;
7546
- }
7547
- export type OrderReferenceTypeDto = "ProductionOrder" | "PurchaseOrder" | "SalesOrder";
7548
7467
  export interface ProductionOrderBomDto {
7549
7468
  position: string;
7550
7469
  lineNumber: number;
@@ -7733,7 +7652,6 @@ export interface ProductionScheduleOperationDto {
7733
7652
  materialPickStatus: MaterialPickStatus;
7734
7653
  productionStatus: OperationStatusDto;
7735
7654
  setupStatus?: OperationStatusDto | null;
7736
- programStatus?: ProgramStatus | null;
7737
7655
  }
7738
7656
  export interface SurroundingOperationDto {
7739
7657
  id: string;
@@ -8065,7 +7983,6 @@ export interface ImaCertificateTypeRequirementsDto {
8065
7983
  productAndOrderInformation: ImaCertificateTypeProductAndOrderInformationRequirementsDto;
8066
7984
  testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesRequirementsDto;
8067
7985
  testResults: ImaCertificateTypeTestResultsRequirementsDto;
8068
- documentTypes: ImaCertificateTypeDocumentTypesRequirementsDto;
8069
7986
  }
8070
7987
  export interface ImaCdfEntityReadBase {
8071
7988
  }
@@ -8073,6 +7990,7 @@ export interface ImaCertificateTypeManufacturerRequirementsDto extends ImaCdfEnt
8073
7990
  manufacturer?: boolean;
8074
7991
  address?: boolean;
8075
7992
  contact?: boolean;
7993
+ steelPlant?: boolean;
8076
7994
  }
8077
7995
  export interface ImaCertificateTypeSignatureRequirementsDto extends ImaCdfEntityReadBase {
8078
7996
  certifiedBy?: boolean;
@@ -8091,6 +8009,7 @@ export interface ImaCertificateTypeThirdPartyRequirementsDto extends ImaCdfEntit
8091
8009
  stamp?: boolean;
8092
8010
  }
8093
8011
  export interface ImaCertificateTypeCertificationRequirementsDto extends ImaCdfEntityReadBase {
8012
+ certificateType?: boolean;
8094
8013
  certificateOfCompliance?: boolean;
8095
8014
  inspectionCertificate?: boolean;
8096
8015
  }
@@ -8102,32 +8021,20 @@ export interface ImaCertificateTypeProductAndOrderInformationRequirementsDto ext
8102
8021
  dimensionsOrWeight?: boolean;
8103
8022
  batchNumber?: boolean;
8104
8023
  heatNumber?: boolean;
8105
- relatedStandards?: boolean;
8024
+ relevantStandard?: boolean;
8025
+ steelMaking?: boolean;
8106
8026
  }
8107
8027
  export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsDto extends ImaCdfEntityReadBase {
8108
8028
  usedStandards?: boolean;
8109
8029
  }
8110
8030
  export interface ImaCertificateTypeTestResultsRequirementsDto extends ImaCdfEntityReadBase {
8111
- mechanicalProperties?: boolean;
8112
- chemicalAnalysis?: boolean;
8031
+ tensileTests?: boolean;
8032
+ hardnessTests?: boolean;
8113
8033
  impactTests?: boolean;
8034
+ chemicalAnalysis?: boolean;
8114
8035
  corrosionTests?: boolean;
8115
8036
  ferriteContentAndMicrostructure?: boolean;
8116
8037
  }
8117
- export interface ImaCertificateTypeDocumentTypesRequirementsDto extends ImaCdfEntityReadBase {
8118
- heatTreatmentCertificate?: boolean;
8119
- ultrasonicControlCertificate?: boolean;
8120
- liquidPenetrantCertificate?: boolean;
8121
- testReport?: boolean;
8122
- dimensionalReport?: boolean;
8123
- dyePenetrantReport?: boolean;
8124
- visualReport?: boolean;
8125
- certificateOfAnalyticalAndMechanicalTests?: boolean;
8126
- certificateOfTest?: boolean;
8127
- technicalReport?: boolean;
8128
- microExaminationReport?: boolean;
8129
- radiologicalReport?: boolean;
8130
- }
8131
8038
  export interface ImaCreateOrCopyCertificateTypeRequestDto {
8132
8039
  name: string;
8133
8040
  revision: string;
@@ -8148,12 +8055,12 @@ export interface ImaCertificateTypeRequirementsUpdateDto {
8148
8055
  productAndOrderInformation?: ImaCertificateTypeProductAndOrderInformationRequirementsUpdateDto | null;
8149
8056
  testMethodsAndReferences?: ImaCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto | null;
8150
8057
  testResults?: ImaCertificateTypeTestResultsRequirementsUpdateDto | null;
8151
- documentTypes?: ImaCertificateTypeDocumentTypesRequirementsUpdateDto | null;
8152
8058
  }
8153
8059
  export interface ImaCertificateTypeManufacturerRequirementsUpdateDto {
8154
8060
  manufacturer?: boolean | null;
8155
8061
  address?: boolean | null;
8156
8062
  contact?: boolean | null;
8063
+ steelPlant?: boolean | null;
8157
8064
  }
8158
8065
  export interface ImaCertificateTypeSignatureRequirementsUpdateDto {
8159
8066
  certifiedBy?: boolean | null;
@@ -8172,6 +8079,7 @@ export interface ImaCertificateTypeThirdPartyRequirementsUpdateDto {
8172
8079
  stamp?: boolean | null;
8173
8080
  }
8174
8081
  export interface ImaCertificateTypeCertificationRequirementsUpdateDto {
8082
+ certificateType?: boolean | null;
8175
8083
  certificateOfCompliance?: boolean | null;
8176
8084
  inspectionCertificate?: boolean | null;
8177
8085
  }
@@ -8183,32 +8091,20 @@ export interface ImaCertificateTypeProductAndOrderInformationRequirementsUpdateD
8183
8091
  dimensionsOrWeight?: boolean | null;
8184
8092
  batchNumber?: boolean | null;
8185
8093
  heatNumber?: boolean | null;
8186
- relatedStandards?: boolean | null;
8094
+ relevantStandard?: boolean | null;
8095
+ steelMaking?: boolean | null;
8187
8096
  }
8188
8097
  export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto {
8189
8098
  usedStandards?: boolean | null;
8190
8099
  }
8191
8100
  export interface ImaCertificateTypeTestResultsRequirementsUpdateDto {
8192
- mechanicalProperties?: boolean | null;
8193
- chemicalAnalysis?: boolean | null;
8101
+ tensileTests?: boolean | null;
8102
+ hardnessTests?: boolean | null;
8194
8103
  impactTests?: boolean | null;
8104
+ chemicalAnalysis?: boolean | null;
8195
8105
  corrosionTests?: boolean | null;
8196
8106
  ferriteContentAndMicrostructure?: boolean | null;
8197
8107
  }
8198
- export interface ImaCertificateTypeDocumentTypesRequirementsUpdateDto {
8199
- heatTreatmentCertificate?: boolean | null;
8200
- ultrasonicControlCertificate?: boolean | null;
8201
- liquidPenetrantCertificate?: boolean | null;
8202
- testReport?: boolean | null;
8203
- dimensionalReport?: boolean | null;
8204
- dyePenetrantReport?: boolean | null;
8205
- visualReport?: boolean | null;
8206
- certificateOfAnalyticalAndMechanicalTests?: boolean | null;
8207
- certificateOfTest?: boolean | null;
8208
- technicalReport?: boolean | null;
8209
- microExaminationReport?: boolean | null;
8210
- radiologicalReport?: boolean | null;
8211
- }
8212
8108
  export interface ImaCertificateTypeLiteDto {
8213
8109
  certificateTypeId: string;
8214
8110
  version: number;
@@ -8279,13 +8175,12 @@ export interface ImaCertificateTypeResultsDto extends ImaCdfEntityReadBase {
8279
8175
  certification: ImaCertificateTypeCertificationResultsDto;
8280
8176
  productAndOrderInformation: ImaCertificateTypeProductAndOrderInformationResultsDto;
8281
8177
  testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesResultsDto;
8282
- testResults: ImaCertificateTypeTestResultsResultsDto;
8283
- documentTypes: ImaCertificateTypeDocumentTypesResultsDto;
8284
8178
  }
8285
8179
  export interface ImaCertificateTypeManufacturerResultsDto extends ImaCdfEntityReadBase {
8286
8180
  manufacturer?: ImaCertificateTypeResultLine | null;
8287
8181
  address?: ImaCertificateTypeResultLine | null;
8288
8182
  contact?: ImaCertificateTypeResultLine | null;
8183
+ steelPlant?: ImaCertificateTypeResultLine | null;
8289
8184
  }
8290
8185
  export interface ImaCertificateTypeResultLine extends ImaCdfEntityReadBase {
8291
8186
  found?: boolean;
@@ -8317,9 +8212,18 @@ export interface ImaCertificateTypeThirdPartyResultsDto extends ImaCdfEntityRead
8317
8212
  stamp?: ImaCertificateTypeResultLine | null;
8318
8213
  }
8319
8214
  export interface ImaCertificateTypeCertificationResultsDto extends ImaCdfEntityReadBase {
8320
- certificateOfCompliance?: ImaCertificateTypeResultLine | null;
8215
+ certificateType?: ImaCertificateTypeResultLine | null;
8216
+ certificateOfCompliance?: ImaSupplementaryCheckResultDto | null;
8321
8217
  inspectionCertificate?: ImaCertificateTypeResultLine | null;
8322
8218
  }
8219
+ export interface ImaSupplementaryCheckResultDto extends ImaCdfEntityReadBase {
8220
+ status?: string | null;
8221
+ documentId?: string | null;
8222
+ acceptable?: boolean | null;
8223
+ standards: string[];
8224
+ summary?: string | null;
8225
+ override?: ImaResultLineOverrideDto | null;
8226
+ }
8323
8227
  export interface ImaCertificateTypeProductAndOrderInformationResultsDto extends ImaCdfEntityReadBase {
8324
8228
  productDescription?: ImaCertificateTypeResultLine | null;
8325
8229
  materialGrade?: ImaCertificateTypeResultLine | null;
@@ -8328,37 +8232,29 @@ export interface ImaCertificateTypeProductAndOrderInformationResultsDto extends
8328
8232
  dimensionsOrWeight?: ImaCertificateTypeResultLine | null;
8329
8233
  batchNumber?: ImaCertificateTypeResultLine | null;
8330
8234
  heatNumber?: ImaCertificateTypeResultLine | null;
8331
- relatedStandards?: ImaCertificateTypeResultLine | null;
8235
+ relevantStandard?: ImaCertificateTypeResultLine | null;
8236
+ steelMaking: ImaSteelMakingResultDto;
8237
+ }
8238
+ export interface ImaSteelMakingResultDto extends ImaCdfEntityReadBase {
8239
+ raw?: string[] | null;
8240
+ chain?: string[] | null;
8241
+ unmatched?: string[] | null;
8332
8242
  }
8333
8243
  export interface ImaCertificateTypeTestMethodsAndReferencesResultsDto extends ImaCdfEntityReadBase {
8334
8244
  usedStandards?: ImaCertificateTypeResultLine | null;
8335
8245
  }
8336
- export interface ImaCertificateTypeTestResultsResultsDto extends ImaCdfEntityReadBase {
8337
- mechanicalProperties?: ImaCertificateTypeResultLine | null;
8338
- chemicalAnalysis?: ImaCertificateTypeResultLine | null;
8339
- impactTests?: ImaCertificateTypeResultLine | null;
8340
- corrosionTests?: ImaCertificateTypeResultLine | null;
8341
- ferriteContentAndMicrostructure?: ImaCertificateTypeResultLine | null;
8342
- }
8343
- export interface ImaCertificateTypeDocumentTypesResultsDto extends ImaCdfEntityReadBase {
8344
- heatTreatmentCertificate?: ImaCertificateTypeResultLine | null;
8345
- ultrasonicControlCertificate?: ImaCertificateTypeResultLine | null;
8346
- liquidPenetrantCertificate?: ImaCertificateTypeResultLine | null;
8347
- testReport?: ImaCertificateTypeResultLine | null;
8348
- dimensionalReport?: ImaCertificateTypeResultLine | null;
8349
- dyePenetrantReport?: ImaCertificateTypeResultLine | null;
8350
- visualReport?: ImaCertificateTypeResultLine | null;
8351
- certificateOfAnalyticalAndMechanicalTests?: ImaCertificateTypeResultLine | null;
8352
- certificateOfTest?: ImaCertificateTypeResultLine | null;
8353
- technicalReport?: ImaCertificateTypeResultLine | null;
8354
- microExaminationReport?: ImaCertificateTypeResultLine | null;
8355
- radiologicalReport?: ImaCertificateTypeResultLine | null;
8356
- }
8357
8246
  export interface ImaSpecificationResultsDto extends ImaCdfEntityReadBase {
8358
8247
  chemistry: ImaSpecificationChemistryResultsDto;
8359
8248
  mechanical: ImaSpecificationMechanicalResultsDto;
8360
8249
  ferrite: ImaSpecificationFerriteResultsDto;
8361
- heatTreatments: ImaSpecificationHeatTreatmentResultDto[];
8250
+ chemicalAnalysis: ImaChemicalAnalysisResultDto[];
8251
+ tensileTests: ImaTensileTestResultDto[];
8252
+ hardnessTests: ImaHardnessTestResultDto[];
8253
+ impactTests: ImaImpactTestResultDto[];
8254
+ corrosionTests: ImaCorrosionTestResultDto[];
8255
+ ferriteContentAndMicrostructure: ImaFerriteResultDto[];
8256
+ heatTreatments: ImaHeatTreatmentResultDto[];
8257
+ documentTypes: ImaDocumentTypesResultsDto;
8362
8258
  }
8363
8259
  export interface ImaSpecificationChemistryResultsDto extends ImaCdfEntityReadBase {
8364
8260
  carbon?: ImaSpecificationResultLineDto | null;
@@ -8401,27 +8297,132 @@ export interface ImaSpecificationFerriteResultLineDto extends ImaCdfEntityReadBa
8401
8297
  override?: ImaResultLineOverrideDto | null;
8402
8298
  measurementMethod?: string | null;
8403
8299
  }
8404
- export interface ImaSpecificationHeatTreatmentResultDto extends ImaCdfEntityReadBase {
8405
- step: number;
8406
- cooling?: ImaSpecificationHeatTreatmentCoolingResult | null;
8407
- heating?: ImaSpecificationHeatTreatmentHeatingResult | null;
8300
+ export interface ImaChemicalAnalysisResultDto extends ImaCdfEntityReadBase {
8301
+ sampleReference?: string | null;
8302
+ analysisType?: string | null;
8303
+ elements: ImaChemicalElementResultDto[];
8304
+ indices: ImaChemicalIndexResultDto[];
8305
+ testStandards: string[];
8306
+ override?: ImaResultLineOverrideDto | null;
8307
+ }
8308
+ export interface ImaChemicalElementResultDto extends ImaCdfEntityReadBase {
8309
+ symbol?: string | null;
8310
+ value?: ImaResultValueDto | null;
8311
+ }
8312
+ export interface ImaResultValueDto extends ImaCdfEntityReadBase {
8313
+ readValue?: string | null;
8314
+ value?: number | null;
8315
+ unit?: string | null;
8316
+ override?: ImaResultLineOverrideDto | null;
8317
+ }
8318
+ export interface ImaChemicalIndexResultDto extends ImaCdfEntityReadBase {
8319
+ name?: string | null;
8320
+ value?: number | null;
8408
8321
  }
8409
- export interface ImaSpecificationHeatTreatmentCoolingResult extends ImaCdfEntityReadBase {
8410
- coolingMethods?: string[] | null;
8411
- temperature?: ImaSpecificationResultLineDto | null;
8412
- duration?: ImaSpecificationResultLineDto | null;
8322
+ export interface ImaTensileTestResultDto extends ImaCdfEntityReadBase {
8323
+ sampleReference?: string | null;
8324
+ orientation?: string | null;
8325
+ testLocation?: string | null;
8326
+ temperature?: ImaResultValueDto | null;
8327
+ roomTemperature?: boolean | null;
8328
+ yieldStrengths: ImaYieldStrengthResultDto[];
8329
+ tensileStrength?: ImaResultValueDto | null;
8330
+ yieldTensileRatio?: number | null;
8331
+ elongations: ImaElongationResultDto[];
8332
+ reductionOfArea?: ImaResultValueDto | null;
8333
+ testStandards: string[];
8334
+ override?: ImaResultLineOverrideDto | null;
8335
+ }
8336
+ export interface ImaYieldStrengthResultDto extends ImaCdfEntityReadBase {
8337
+ label?: string | null;
8338
+ value?: ImaResultValueDto | null;
8339
+ }
8340
+ export interface ImaElongationResultDto extends ImaCdfEntityReadBase {
8341
+ gauge?: string | null;
8342
+ value?: ImaResultValueDto | null;
8343
+ }
8344
+ export interface ImaHardnessTestResultDto extends ImaCdfEntityReadBase {
8345
+ sampleReference?: string | null;
8346
+ orientation?: string | null;
8347
+ testLocation?: string | null;
8348
+ readings: ImaHardnessReadingResultDto[];
8349
+ testStandards: string[];
8350
+ override?: ImaResultLineOverrideDto | null;
8351
+ }
8352
+ export interface ImaHardnessReadingResultDto extends ImaCdfEntityReadBase {
8353
+ label?: string | null;
8354
+ scale?: string | null;
8355
+ value?: number | null;
8356
+ }
8357
+ export interface ImaImpactTestResultDto extends ImaCdfEntityReadBase {
8358
+ sampleReference?: string | null;
8359
+ orientation?: string | null;
8360
+ testLocation?: string | null;
8361
+ temperature?: ImaResultValueDto | null;
8362
+ roomTemperature?: boolean | null;
8363
+ testLabel?: string | null;
8364
+ notchType?: string | null;
8365
+ specimenSize?: string | null;
8366
+ individualValues: ImaResultValueDto[];
8367
+ reportedAverage?: ImaResultValueDto | null;
8368
+ reportedMinimum?: ImaResultValueDto | null;
8369
+ testStandards: string[];
8370
+ override?: ImaResultLineOverrideDto | null;
8371
+ }
8372
+ export interface ImaCorrosionTestResultDto extends ImaCdfEntityReadBase {
8373
+ sampleReference?: string | null;
8374
+ testLocation?: string | null;
8375
+ testMethod?: string | null;
8376
+ testTemperature?: ImaResultValueDto | null;
8377
+ roomTemperature?: boolean | null;
8378
+ weightLoss?: ImaResultValueDto | null;
8379
+ pitting?: boolean | null;
8380
+ result?: string | null;
8381
+ acceptable?: boolean | null;
8382
+ override?: ImaResultLineOverrideDto | null;
8383
+ }
8384
+ export interface ImaFerriteResultDto extends ImaCdfEntityReadBase {
8385
+ sampleReference?: string | null;
8386
+ testLocation?: string | null;
8387
+ ferrite?: ImaResultValueDto | null;
8388
+ ferriteTolerance?: number | null;
8389
+ reportedRange?: string | null;
8390
+ intermetallicPhases?: boolean | null;
8391
+ grainSize?: string | null;
8392
+ testStandards: string[];
8393
+ override?: ImaResultLineOverrideDto | null;
8394
+ }
8395
+ export interface ImaHeatTreatmentResultDto extends ImaCdfEntityReadBase {
8396
+ stepType?: string | null;
8397
+ treatmentName?: string | null;
8398
+ temperature?: ImaResultValueDto | null;
8399
+ temperatureMin?: number | null;
8400
+ temperatureMax?: number | null;
8401
+ soakTime?: ImaResultValueDto | null;
8402
+ soakRate?: string | null;
8403
+ coolingMedium?: string | null;
8404
+ override?: ImaResultLineOverrideDto | null;
8413
8405
  }
8414
- export interface ImaSpecificationHeatTreatmentHeatingResult extends ImaCdfEntityReadBase {
8415
- heatingMethod?: string | null;
8416
- temperature?: ImaSpecificationResultLineDto | null;
8417
- duration?: ImaSpecificationResultLineDto | null;
8406
+ export interface ImaDocumentTypesResultsDto extends ImaCdfEntityReadBase {
8407
+ ultrasonicControlCertificate?: ImaSupplementaryCheckResultDto | null;
8408
+ radiologicalReport?: ImaSupplementaryCheckResultDto | null;
8409
+ liquidPenetrantCertificate?: ImaSupplementaryCheckResultDto | null;
8410
+ magneticParticle?: ImaSupplementaryCheckResultDto | null;
8411
+ pmi?: ImaSupplementaryCheckResultDto | null;
8412
+ hydrostatic?: ImaSupplementaryCheckResultDto | null;
8413
+ visualReport?: ImaSupplementaryCheckResultDto | null;
8414
+ dimensionalReport?: ImaSupplementaryCheckResultDto | null;
8415
+ microExaminationReport?: ImaSupplementaryCheckResultDto | null;
8418
8416
  }
8419
8417
  export interface ImaOverrideMaterialCheckRequestDto {
8420
8418
  certificateTypeSection?: ImaOverrideCertificateTypeResultsDto | null;
8421
- chemistrySpecificationSection?: ImaOverrideSpecificationChemistryResultsDto | null;
8422
- mechanicalSpecificationSection?: ImaOverrideSpecificationMechanicalResultsDto | null;
8423
- ferriteSpecificationSection?: ImaOverrideSpecificationFerriteResultsDto | null;
8424
- heatSpecificationSection?: ImaOverrideSpecificationHeatTreatmentResultsDto | null;
8419
+ chemicalAnalysisSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8420
+ tensileTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8421
+ hardnessTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8422
+ impactTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8423
+ corrosionTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8424
+ ferriteResultSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8425
+ documentTypesSection?: ImaOverrideDocumentTypesResultsDto | null;
8425
8426
  }
8426
8427
  export interface ImaOverrideCertificateTypeResultsDto {
8427
8428
  manufacturer?: ImaOverrideCertificateTypeManufacturerResultsDto | null;
@@ -8430,13 +8431,12 @@ export interface ImaOverrideCertificateTypeResultsDto {
8430
8431
  certification?: ImaOverrideCertificateTypeCertificationResultsDto | null;
8431
8432
  productAndOrderInformation?: ImaOverrideCertificateTypeProductAndOrderInformationResultsDto | null;
8432
8433
  testMethodsAndReferences?: ImaOverrideCertificateTypeTestMethodsAndReferencesResultsDto | null;
8433
- testResults?: ImaOverrideCertificateTypeTestResultsResultsDto | null;
8434
- documentTypes?: ImaOverrideCertificateTypeDocumentTypesResultsDto | null;
8435
8434
  }
8436
8435
  export interface ImaOverrideCertificateTypeManufacturerResultsDto {
8437
8436
  manufacturer?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8438
8437
  address?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8439
8438
  contact?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8439
+ steelPlant?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8440
8440
  }
8441
8441
  export interface ImaOverrideUpdateMaterialCheckResultLineDto {
8442
8442
  approved?: boolean | null;
@@ -8459,6 +8459,7 @@ export interface ImaOverrideCertificateTypeThirdPartyResultsDto {
8459
8459
  stamp?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8460
8460
  }
8461
8461
  export interface ImaOverrideCertificateTypeCertificationResultsDto {
8462
+ certificateType?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8462
8463
  certificateOfCompliance?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8463
8464
  inspectionCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8464
8465
  }
@@ -8470,59 +8471,21 @@ export interface ImaOverrideCertificateTypeProductAndOrderInformationResultsDto
8470
8471
  dimensionsOrWeight?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8471
8472
  batchNumber?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8472
8473
  heatNumber?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8473
- relatedStandards?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8474
+ relevantStandard?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8474
8475
  }
8475
8476
  export interface ImaOverrideCertificateTypeTestMethodsAndReferencesResultsDto {
8476
8477
  usedStandards?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8477
8478
  }
8478
- export interface ImaOverrideCertificateTypeTestResultsResultsDto {
8479
- mechanicalProperties?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8480
- chemicalAnalysis?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8481
- impactTests?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8482
- corrosionTests?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8483
- ferriteContentAndMicrostructure?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8484
- }
8485
- export interface ImaOverrideCertificateTypeDocumentTypesResultsDto {
8486
- heatTreatmentCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8479
+ export interface ImaOverrideDocumentTypesResultsDto {
8487
8480
  ultrasonicControlCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8481
+ radiologicalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8488
8482
  liquidPenetrantCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8489
- testReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8490
- dimensionalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8491
- dyePenetrantReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8483
+ magneticParticle?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8484
+ pmi?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8485
+ hydrostatic?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8492
8486
  visualReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8493
- certificateOfAnalyticalAndMechanicalTests?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8494
- certificateOfTest?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8495
- technicalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8487
+ dimensionalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8496
8488
  microExaminationReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8497
- radiologicalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8498
- }
8499
- export interface ImaOverrideSpecificationChemistryResultsDto {
8500
- carbon?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8501
- manganese?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8502
- silicon?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8503
- phosphorus?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8504
- sulfur?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8505
- chromium?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8506
- nickel?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8507
- molybdenum?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8508
- copper?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8509
- nitrogen?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8510
- wolfram?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8511
- iron?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8512
- }
8513
- export interface ImaOverrideSpecificationMechanicalResultsDto {
8514
- yieldStrength?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8515
- tensileStrength?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8516
- elongation?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8517
- reductionOfArea?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8518
- impactEnergy?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8519
- hardness?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8520
- }
8521
- export interface ImaOverrideSpecificationFerriteResultsDto {
8522
- ferriteContent?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8523
- }
8524
- export interface ImaOverrideSpecificationHeatTreatmentResultsDto {
8525
- heatTreatmentOverrides?: ImaOverrideUpdateMaterialCheckResultLineDto[] | null;
8526
8489
  }
8527
8490
  export interface ImaUpdateMaterialCheckMetadataRequestDto {
8528
8491
  customerOrder?: string;
@@ -8576,7 +8539,7 @@ export interface ImaMaterialCheckLiteDto {
8576
8539
  }
8577
8540
  export interface ImaMaterialChecksPageRequestDto {
8578
8541
  pageSize?: number | null;
8579
- orderBy?: ImaMaterialChecksPageOrderRequestDto[] | null;
8542
+ orderBy?: ImaMaterialChecksPageOrderRequestDto | null;
8580
8543
  searchQuery?: string | null;
8581
8544
  fileNameFilter?: string | null;
8582
8545
  specificationFilter?: string | null;
@@ -8729,6 +8692,7 @@ export interface ImaSpecificationDto {
8729
8692
  chemistrySpecification: ImaChemistrySpecificationDto;
8730
8693
  mechanicalSpecification: ImaMechanicalSpecificationDto;
8731
8694
  ferriteSpecification: ImaFerriteSpecificationDto;
8695
+ documentTypesSpecification: ImaDocumentTypesSpecificationDto;
8732
8696
  heatTreatmentSpecifications: ImaHeatTreatmentSpecificationDto[];
8733
8697
  }
8734
8698
  export interface ImaSpecificationVersionDto {
@@ -8764,6 +8728,17 @@ export interface ImaMechanicalSpecificationDto {
8764
8728
  export interface ImaFerriteSpecificationDto {
8765
8729
  ferriteContent?: ImaSpecificationLineDto | null;
8766
8730
  }
8731
+ export interface ImaDocumentTypesSpecificationDto {
8732
+ ultrasonicControlCertificate?: boolean;
8733
+ radiologicalReport?: boolean;
8734
+ liquidPenetrantCertificate?: boolean;
8735
+ magneticParticle?: boolean;
8736
+ pmi?: boolean;
8737
+ hydrostatic?: boolean;
8738
+ visualReport?: boolean;
8739
+ dimensionalReport?: boolean;
8740
+ microExaminationReport?: boolean;
8741
+ }
8767
8742
  export interface ImaHeatTreatmentSpecificationDto {
8768
8743
  step: number;
8769
8744
  cooling?: ImaHeatTreatmentSpecificationCoolingDto | null;
@@ -8803,6 +8778,7 @@ export interface ImaUpdateSpecificationDto {
8803
8778
  chemistrySpecification?: ImaChemistrySpecificationDto | null;
8804
8779
  mechanicalSpecification?: ImaMechanicalSpecificationDto | null;
8805
8780
  ferriteSpecification?: ImaFerriteSpecificationDto | null;
8781
+ documentTypesSpecification?: ImaDocumentTypesSpecificationDto | null;
8806
8782
  heatSpecifications?: ImaHeatTreatmentSpecificationDto[] | null;
8807
8783
  }
8808
8784
  export interface ImaSpecificationLiteDto {
@@ -9889,20 +9865,17 @@ export interface WorkorderDiscussionMessageDto {
9889
9865
  operationName?: string | null;
9890
9866
  resourceId?: string | null;
9891
9867
  created?: Date;
9892
- messageType?: DiscussionMessageType;
9893
9868
  }
9894
9869
  export interface WorkOrderDiscussionContent {
9895
9870
  type?: WorkOrderDiscussionContentType;
9896
9871
  value?: string;
9897
9872
  }
9898
9873
  export type WorkOrderDiscussionContentType = 0 | 1;
9899
- export type DiscussionMessageType = "Public" | "Planner";
9900
9874
  export interface AddDiscussionMessageRequest {
9901
9875
  message: string;
9902
9876
  operationId?: string | null;
9903
9877
  operationName?: string | null;
9904
9878
  resourceId?: string | null;
9905
- messageType?: DiscussionMessageType;
9906
9879
  }
9907
9880
  export interface WorkorderDiscussionReadStatusDto {
9908
9881
  workorderId: string;