@ignos/api-client 20260727.195.1-alpha → 20260728.197.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 +299 -126
- package/lib/ignosportal-api.js +418 -0
- package/package.json +1 -1
- package/src/ignosportal-api.ts +721 -135
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -2473,6 +2473,45 @@ export declare class MesOrMoveClient extends AuthorizedApiBase implements IMesOr
|
|
|
2473
2473
|
postListProductionOrders(request: ListProductionOrdersRequest): Promise<ProductionOrderListDto[]>;
|
|
2474
2474
|
protected processPostListProductionOrders(response: Response): Promise<ProductionOrderListDto[]>;
|
|
2475
2475
|
}
|
|
2476
|
+
export interface IMesPlannerClient {
|
|
2477
|
+
getPlan(resourceGroupId: string | undefined): Promise<PlannerPlanDto>;
|
|
2478
|
+
publish(resourceGroupId: string, request: PublishPlanRequest): Promise<PlannerPlanDto>;
|
|
2479
|
+
updateSequence(resourceGroupId: string, sequence: PlannerSequenceInput): Promise<PlannerPlanDto>;
|
|
2480
|
+
reset(resourceGroupId: string): Promise<PlannerPlanDto>;
|
|
2481
|
+
saveDraft(resourceGroupId: string, sequence: PlannerSequenceInput): Promise<PlannerPlanDto>;
|
|
2482
|
+
discardDraft(resourceGroupId: string): Promise<PlannerPlanDto>;
|
|
2483
|
+
getCapacity(resourceGroupId: string, from: Date | undefined, to: Date | undefined): Promise<WeekCapacityDto[]>;
|
|
2484
|
+
getVersions(resourceGroupId: string): Promise<PlannerPlanEventDto[]>;
|
|
2485
|
+
getVersion(resourceGroupId: string, eventId: string): Promise<PlannerPlanDto>;
|
|
2486
|
+
setProgramStatus(command: SetProgramStatus): Promise<ProgramStatus>;
|
|
2487
|
+
}
|
|
2488
|
+
export declare class MesPlannerClient extends AuthorizedApiBase implements IMesPlannerClient {
|
|
2489
|
+
private http;
|
|
2490
|
+
private baseUrl;
|
|
2491
|
+
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
2492
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2493
|
+
});
|
|
2494
|
+
getPlan(resourceGroupId: string | undefined): Promise<PlannerPlanDto>;
|
|
2495
|
+
protected processGetPlan(response: Response): Promise<PlannerPlanDto>;
|
|
2496
|
+
publish(resourceGroupId: string, request: PublishPlanRequest): Promise<PlannerPlanDto>;
|
|
2497
|
+
protected processPublish(response: Response): Promise<PlannerPlanDto>;
|
|
2498
|
+
updateSequence(resourceGroupId: string, sequence: PlannerSequenceInput): Promise<PlannerPlanDto>;
|
|
2499
|
+
protected processUpdateSequence(response: Response): Promise<PlannerPlanDto>;
|
|
2500
|
+
reset(resourceGroupId: string): Promise<PlannerPlanDto>;
|
|
2501
|
+
protected processReset(response: Response): Promise<PlannerPlanDto>;
|
|
2502
|
+
saveDraft(resourceGroupId: string, sequence: PlannerSequenceInput): Promise<PlannerPlanDto>;
|
|
2503
|
+
protected processSaveDraft(response: Response): Promise<PlannerPlanDto>;
|
|
2504
|
+
discardDraft(resourceGroupId: string): Promise<PlannerPlanDto>;
|
|
2505
|
+
protected processDiscardDraft(response: Response): Promise<PlannerPlanDto>;
|
|
2506
|
+
getCapacity(resourceGroupId: string, from: Date | undefined, to: Date | undefined): Promise<WeekCapacityDto[]>;
|
|
2507
|
+
protected processGetCapacity(response: Response): Promise<WeekCapacityDto[]>;
|
|
2508
|
+
getVersions(resourceGroupId: string): Promise<PlannerPlanEventDto[]>;
|
|
2509
|
+
protected processGetVersions(response: Response): Promise<PlannerPlanEventDto[]>;
|
|
2510
|
+
getVersion(resourceGroupId: string, eventId: string): Promise<PlannerPlanDto>;
|
|
2511
|
+
protected processGetVersion(response: Response): Promise<PlannerPlanDto>;
|
|
2512
|
+
setProgramStatus(command: SetProgramStatus): Promise<ProgramStatus>;
|
|
2513
|
+
protected processSetProgramStatus(response: Response): Promise<ProgramStatus>;
|
|
2514
|
+
}
|
|
2476
2515
|
export interface IMesProductionOrderAttachmentClient {
|
|
2477
2516
|
/**
|
|
2478
2517
|
* Upload a new attachment (with or without a file)
|
|
@@ -7383,6 +7422,78 @@ export interface ListProductionOrdersRequest {
|
|
|
7383
7422
|
searchType: SearchTypeDto;
|
|
7384
7423
|
maxResults?: number | null;
|
|
7385
7424
|
}
|
|
7425
|
+
export interface PlannerPlanDto {
|
|
7426
|
+
resourceGroupId: string;
|
|
7427
|
+
sequence: PlannerOperationDto[];
|
|
7428
|
+
lockedCount: number;
|
|
7429
|
+
planSavedAt?: Date | null;
|
|
7430
|
+
isDraft: boolean;
|
|
7431
|
+
publishedETag?: string | null;
|
|
7432
|
+
weeklyCapacities: WeekCapacityDto[];
|
|
7433
|
+
}
|
|
7434
|
+
export interface PlannerOperationDto {
|
|
7435
|
+
id: string;
|
|
7436
|
+
productionOrderNumber: string;
|
|
7437
|
+
operation: number;
|
|
7438
|
+
operationName: string;
|
|
7439
|
+
plannedStart: Date;
|
|
7440
|
+
plannedEnd?: Date | null;
|
|
7441
|
+
status: OperationStatusDto;
|
|
7442
|
+
resourceId: string;
|
|
7443
|
+
resourceName: string;
|
|
7444
|
+
resourceDepartmentNumber?: string | null;
|
|
7445
|
+
resourceDepartmentName?: string | null;
|
|
7446
|
+
partNumber: string;
|
|
7447
|
+
partName?: string | null;
|
|
7448
|
+
partMaterial?: string | null;
|
|
7449
|
+
quantity: number;
|
|
7450
|
+
producedQuantity: number;
|
|
7451
|
+
totalPlannedHours?: number;
|
|
7452
|
+
totalUsedHours?: number;
|
|
7453
|
+
customerName?: string | null;
|
|
7454
|
+
project?: WorkOrderProjectDto | null;
|
|
7455
|
+
sequenceNumber: number;
|
|
7456
|
+
isManuallyLocked: boolean;
|
|
7457
|
+
weekGroup: string;
|
|
7458
|
+
programStatus?: ProgramStatus | null;
|
|
7459
|
+
}
|
|
7460
|
+
export type ProgramStatus = "Blank" | "NotOk" | "Ok";
|
|
7461
|
+
export interface WeekCapacityDto {
|
|
7462
|
+
weekGroup: string;
|
|
7463
|
+
weekStart: Date;
|
|
7464
|
+
capacityHours: number;
|
|
7465
|
+
}
|
|
7466
|
+
export interface PublishPlanRequest {
|
|
7467
|
+
/** ETag of the published plan the caller last read, used for optimistic
|
|
7468
|
+
concurrency. Null if the caller never observed a published plan. */
|
|
7469
|
+
publishedETag?: string | null;
|
|
7470
|
+
comment?: string | null;
|
|
7471
|
+
/** The caller's unsaved working sequence to publish. When null, the
|
|
7472
|
+
persisted active plan (draft, else published) is published instead. */
|
|
7473
|
+
sequence?: PlannerSequenceInput | null;
|
|
7474
|
+
}
|
|
7475
|
+
export interface PlannerSequenceInput {
|
|
7476
|
+
orderedOperationKeys: string[];
|
|
7477
|
+
lockedCount: number;
|
|
7478
|
+
weekGroups?: {
|
|
7479
|
+
[key: string]: string;
|
|
7480
|
+
} | null;
|
|
7481
|
+
}
|
|
7482
|
+
export interface PlannerPlanEventDto {
|
|
7483
|
+
id: string;
|
|
7484
|
+
eventType: PlannerEventType;
|
|
7485
|
+
occurredAt: Date;
|
|
7486
|
+
by?: string | null;
|
|
7487
|
+
comment?: string | null;
|
|
7488
|
+
operationCount: number;
|
|
7489
|
+
lockedCount: number;
|
|
7490
|
+
}
|
|
7491
|
+
export type PlannerEventType = "Published" | "DraftSaved" | "ResetToErp";
|
|
7492
|
+
export interface SetProgramStatus {
|
|
7493
|
+
workOrderId?: string;
|
|
7494
|
+
operationNumber?: number;
|
|
7495
|
+
status?: ProgramStatus;
|
|
7496
|
+
}
|
|
7386
7497
|
export type ProductionOrderAttachmentType = "Url" | "Note" | "Image" | "File";
|
|
7387
7498
|
export interface WorkOrderAttachmentDto {
|
|
7388
7499
|
createdBy?: UserDto | null;
|
|
@@ -7652,6 +7763,7 @@ export interface ProductionScheduleOperationDto {
|
|
|
7652
7763
|
materialPickStatus: MaterialPickStatus;
|
|
7653
7764
|
productionStatus: OperationStatusDto;
|
|
7654
7765
|
setupStatus?: OperationStatusDto | null;
|
|
7766
|
+
programStatus?: ProgramStatus | null;
|
|
7655
7767
|
}
|
|
7656
7768
|
export interface SurroundingOperationDto {
|
|
7657
7769
|
id: string;
|
|
@@ -7983,7 +8095,6 @@ export interface ImaCertificateTypeRequirementsDto {
|
|
|
7983
8095
|
productAndOrderInformation: ImaCertificateTypeProductAndOrderInformationRequirementsDto;
|
|
7984
8096
|
testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesRequirementsDto;
|
|
7985
8097
|
testResults: ImaCertificateTypeTestResultsRequirementsDto;
|
|
7986
|
-
documentTypes: ImaCertificateTypeDocumentTypesRequirementsDto;
|
|
7987
8098
|
}
|
|
7988
8099
|
export interface ImaCdfEntityReadBase {
|
|
7989
8100
|
}
|
|
@@ -7991,6 +8102,7 @@ export interface ImaCertificateTypeManufacturerRequirementsDto extends ImaCdfEnt
|
|
|
7991
8102
|
manufacturer?: boolean;
|
|
7992
8103
|
address?: boolean;
|
|
7993
8104
|
contact?: boolean;
|
|
8105
|
+
steelPlant?: boolean;
|
|
7994
8106
|
}
|
|
7995
8107
|
export interface ImaCertificateTypeSignatureRequirementsDto extends ImaCdfEntityReadBase {
|
|
7996
8108
|
certifiedBy?: boolean;
|
|
@@ -8009,6 +8121,7 @@ export interface ImaCertificateTypeThirdPartyRequirementsDto extends ImaCdfEntit
|
|
|
8009
8121
|
stamp?: boolean;
|
|
8010
8122
|
}
|
|
8011
8123
|
export interface ImaCertificateTypeCertificationRequirementsDto extends ImaCdfEntityReadBase {
|
|
8124
|
+
certificateType?: boolean;
|
|
8012
8125
|
certificateOfCompliance?: boolean;
|
|
8013
8126
|
inspectionCertificate?: boolean;
|
|
8014
8127
|
}
|
|
@@ -8020,32 +8133,20 @@ export interface ImaCertificateTypeProductAndOrderInformationRequirementsDto ext
|
|
|
8020
8133
|
dimensionsOrWeight?: boolean;
|
|
8021
8134
|
batchNumber?: boolean;
|
|
8022
8135
|
heatNumber?: boolean;
|
|
8023
|
-
|
|
8136
|
+
relevantStandard?: boolean;
|
|
8137
|
+
steelMaking?: boolean;
|
|
8024
8138
|
}
|
|
8025
8139
|
export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsDto extends ImaCdfEntityReadBase {
|
|
8026
8140
|
usedStandards?: boolean;
|
|
8027
8141
|
}
|
|
8028
8142
|
export interface ImaCertificateTypeTestResultsRequirementsDto extends ImaCdfEntityReadBase {
|
|
8029
|
-
|
|
8030
|
-
|
|
8143
|
+
tensileTests?: boolean;
|
|
8144
|
+
hardnessTests?: boolean;
|
|
8031
8145
|
impactTests?: boolean;
|
|
8146
|
+
chemicalAnalysis?: boolean;
|
|
8032
8147
|
corrosionTests?: boolean;
|
|
8033
8148
|
ferriteContentAndMicrostructure?: boolean;
|
|
8034
8149
|
}
|
|
8035
|
-
export interface ImaCertificateTypeDocumentTypesRequirementsDto extends ImaCdfEntityReadBase {
|
|
8036
|
-
heatTreatmentCertificate?: boolean;
|
|
8037
|
-
ultrasonicControlCertificate?: boolean;
|
|
8038
|
-
liquidPenetrantCertificate?: boolean;
|
|
8039
|
-
testReport?: boolean;
|
|
8040
|
-
dimensionalReport?: boolean;
|
|
8041
|
-
dyePenetrantReport?: boolean;
|
|
8042
|
-
visualReport?: boolean;
|
|
8043
|
-
certificateOfAnalyticalAndMechanicalTests?: boolean;
|
|
8044
|
-
certificateOfTest?: boolean;
|
|
8045
|
-
technicalReport?: boolean;
|
|
8046
|
-
microExaminationReport?: boolean;
|
|
8047
|
-
radiologicalReport?: boolean;
|
|
8048
|
-
}
|
|
8049
8150
|
export interface ImaCreateOrCopyCertificateTypeRequestDto {
|
|
8050
8151
|
name: string;
|
|
8051
8152
|
revision: string;
|
|
@@ -8066,12 +8167,12 @@ export interface ImaCertificateTypeRequirementsUpdateDto {
|
|
|
8066
8167
|
productAndOrderInformation?: ImaCertificateTypeProductAndOrderInformationRequirementsUpdateDto | null;
|
|
8067
8168
|
testMethodsAndReferences?: ImaCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto | null;
|
|
8068
8169
|
testResults?: ImaCertificateTypeTestResultsRequirementsUpdateDto | null;
|
|
8069
|
-
documentTypes?: ImaCertificateTypeDocumentTypesRequirementsUpdateDto | null;
|
|
8070
8170
|
}
|
|
8071
8171
|
export interface ImaCertificateTypeManufacturerRequirementsUpdateDto {
|
|
8072
8172
|
manufacturer?: boolean | null;
|
|
8073
8173
|
address?: boolean | null;
|
|
8074
8174
|
contact?: boolean | null;
|
|
8175
|
+
steelPlant?: boolean | null;
|
|
8075
8176
|
}
|
|
8076
8177
|
export interface ImaCertificateTypeSignatureRequirementsUpdateDto {
|
|
8077
8178
|
certifiedBy?: boolean | null;
|
|
@@ -8090,6 +8191,7 @@ export interface ImaCertificateTypeThirdPartyRequirementsUpdateDto {
|
|
|
8090
8191
|
stamp?: boolean | null;
|
|
8091
8192
|
}
|
|
8092
8193
|
export interface ImaCertificateTypeCertificationRequirementsUpdateDto {
|
|
8194
|
+
certificateType?: boolean | null;
|
|
8093
8195
|
certificateOfCompliance?: boolean | null;
|
|
8094
8196
|
inspectionCertificate?: boolean | null;
|
|
8095
8197
|
}
|
|
@@ -8101,32 +8203,20 @@ export interface ImaCertificateTypeProductAndOrderInformationRequirementsUpdateD
|
|
|
8101
8203
|
dimensionsOrWeight?: boolean | null;
|
|
8102
8204
|
batchNumber?: boolean | null;
|
|
8103
8205
|
heatNumber?: boolean | null;
|
|
8104
|
-
|
|
8206
|
+
relevantStandard?: boolean | null;
|
|
8207
|
+
steelMaking?: boolean | null;
|
|
8105
8208
|
}
|
|
8106
8209
|
export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto {
|
|
8107
8210
|
usedStandards?: boolean | null;
|
|
8108
8211
|
}
|
|
8109
8212
|
export interface ImaCertificateTypeTestResultsRequirementsUpdateDto {
|
|
8110
|
-
|
|
8111
|
-
|
|
8213
|
+
tensileTests?: boolean | null;
|
|
8214
|
+
hardnessTests?: boolean | null;
|
|
8112
8215
|
impactTests?: boolean | null;
|
|
8216
|
+
chemicalAnalysis?: boolean | null;
|
|
8113
8217
|
corrosionTests?: boolean | null;
|
|
8114
8218
|
ferriteContentAndMicrostructure?: boolean | null;
|
|
8115
8219
|
}
|
|
8116
|
-
export interface ImaCertificateTypeDocumentTypesRequirementsUpdateDto {
|
|
8117
|
-
heatTreatmentCertificate?: boolean | null;
|
|
8118
|
-
ultrasonicControlCertificate?: boolean | null;
|
|
8119
|
-
liquidPenetrantCertificate?: boolean | null;
|
|
8120
|
-
testReport?: boolean | null;
|
|
8121
|
-
dimensionalReport?: boolean | null;
|
|
8122
|
-
dyePenetrantReport?: boolean | null;
|
|
8123
|
-
visualReport?: boolean | null;
|
|
8124
|
-
certificateOfAnalyticalAndMechanicalTests?: boolean | null;
|
|
8125
|
-
certificateOfTest?: boolean | null;
|
|
8126
|
-
technicalReport?: boolean | null;
|
|
8127
|
-
microExaminationReport?: boolean | null;
|
|
8128
|
-
radiologicalReport?: boolean | null;
|
|
8129
|
-
}
|
|
8130
8220
|
export interface ImaCertificateTypeLiteDto {
|
|
8131
8221
|
certificateTypeId: string;
|
|
8132
8222
|
version: number;
|
|
@@ -8197,13 +8287,12 @@ export interface ImaCertificateTypeResultsDto extends ImaCdfEntityReadBase {
|
|
|
8197
8287
|
certification: ImaCertificateTypeCertificationResultsDto;
|
|
8198
8288
|
productAndOrderInformation: ImaCertificateTypeProductAndOrderInformationResultsDto;
|
|
8199
8289
|
testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesResultsDto;
|
|
8200
|
-
testResults: ImaCertificateTypeTestResultsResultsDto;
|
|
8201
|
-
documentTypes: ImaCertificateTypeDocumentTypesResultsDto;
|
|
8202
8290
|
}
|
|
8203
8291
|
export interface ImaCertificateTypeManufacturerResultsDto extends ImaCdfEntityReadBase {
|
|
8204
8292
|
manufacturer?: ImaCertificateTypeResultLine | null;
|
|
8205
8293
|
address?: ImaCertificateTypeResultLine | null;
|
|
8206
8294
|
contact?: ImaCertificateTypeResultLine | null;
|
|
8295
|
+
steelPlant?: ImaCertificateTypeResultLine | null;
|
|
8207
8296
|
}
|
|
8208
8297
|
export interface ImaCertificateTypeResultLine extends ImaCdfEntityReadBase {
|
|
8209
8298
|
found?: boolean;
|
|
@@ -8235,9 +8324,18 @@ export interface ImaCertificateTypeThirdPartyResultsDto extends ImaCdfEntityRead
|
|
|
8235
8324
|
stamp?: ImaCertificateTypeResultLine | null;
|
|
8236
8325
|
}
|
|
8237
8326
|
export interface ImaCertificateTypeCertificationResultsDto extends ImaCdfEntityReadBase {
|
|
8238
|
-
|
|
8327
|
+
certificateType?: ImaCertificateTypeResultLine | null;
|
|
8328
|
+
certificateOfCompliance?: ImaSupplementaryCheckResultDto | null;
|
|
8239
8329
|
inspectionCertificate?: ImaCertificateTypeResultLine | null;
|
|
8240
8330
|
}
|
|
8331
|
+
export interface ImaSupplementaryCheckResultDto extends ImaCdfEntityReadBase {
|
|
8332
|
+
status?: string | null;
|
|
8333
|
+
documentId?: string | null;
|
|
8334
|
+
acceptable?: boolean | null;
|
|
8335
|
+
standards: string[];
|
|
8336
|
+
summary?: string | null;
|
|
8337
|
+
override?: ImaResultLineOverrideDto | null;
|
|
8338
|
+
}
|
|
8241
8339
|
export interface ImaCertificateTypeProductAndOrderInformationResultsDto extends ImaCdfEntityReadBase {
|
|
8242
8340
|
productDescription?: ImaCertificateTypeResultLine | null;
|
|
8243
8341
|
materialGrade?: ImaCertificateTypeResultLine | null;
|
|
@@ -8246,37 +8344,29 @@ export interface ImaCertificateTypeProductAndOrderInformationResultsDto extends
|
|
|
8246
8344
|
dimensionsOrWeight?: ImaCertificateTypeResultLine | null;
|
|
8247
8345
|
batchNumber?: ImaCertificateTypeResultLine | null;
|
|
8248
8346
|
heatNumber?: ImaCertificateTypeResultLine | null;
|
|
8249
|
-
|
|
8347
|
+
relevantStandard?: ImaCertificateTypeResultLine | null;
|
|
8348
|
+
steelMaking: ImaSteelMakingResultDto;
|
|
8349
|
+
}
|
|
8350
|
+
export interface ImaSteelMakingResultDto extends ImaCdfEntityReadBase {
|
|
8351
|
+
raw?: string[] | null;
|
|
8352
|
+
chain?: string[] | null;
|
|
8353
|
+
unmatched?: string[] | null;
|
|
8250
8354
|
}
|
|
8251
8355
|
export interface ImaCertificateTypeTestMethodsAndReferencesResultsDto extends ImaCdfEntityReadBase {
|
|
8252
8356
|
usedStandards?: ImaCertificateTypeResultLine | null;
|
|
8253
8357
|
}
|
|
8254
|
-
export interface ImaCertificateTypeTestResultsResultsDto extends ImaCdfEntityReadBase {
|
|
8255
|
-
mechanicalProperties?: ImaCertificateTypeResultLine | null;
|
|
8256
|
-
chemicalAnalysis?: ImaCertificateTypeResultLine | null;
|
|
8257
|
-
impactTests?: ImaCertificateTypeResultLine | null;
|
|
8258
|
-
corrosionTests?: ImaCertificateTypeResultLine | null;
|
|
8259
|
-
ferriteContentAndMicrostructure?: ImaCertificateTypeResultLine | null;
|
|
8260
|
-
}
|
|
8261
|
-
export interface ImaCertificateTypeDocumentTypesResultsDto extends ImaCdfEntityReadBase {
|
|
8262
|
-
heatTreatmentCertificate?: ImaCertificateTypeResultLine | null;
|
|
8263
|
-
ultrasonicControlCertificate?: ImaCertificateTypeResultLine | null;
|
|
8264
|
-
liquidPenetrantCertificate?: ImaCertificateTypeResultLine | null;
|
|
8265
|
-
testReport?: ImaCertificateTypeResultLine | null;
|
|
8266
|
-
dimensionalReport?: ImaCertificateTypeResultLine | null;
|
|
8267
|
-
dyePenetrantReport?: ImaCertificateTypeResultLine | null;
|
|
8268
|
-
visualReport?: ImaCertificateTypeResultLine | null;
|
|
8269
|
-
certificateOfAnalyticalAndMechanicalTests?: ImaCertificateTypeResultLine | null;
|
|
8270
|
-
certificateOfTest?: ImaCertificateTypeResultLine | null;
|
|
8271
|
-
technicalReport?: ImaCertificateTypeResultLine | null;
|
|
8272
|
-
microExaminationReport?: ImaCertificateTypeResultLine | null;
|
|
8273
|
-
radiologicalReport?: ImaCertificateTypeResultLine | null;
|
|
8274
|
-
}
|
|
8275
8358
|
export interface ImaSpecificationResultsDto extends ImaCdfEntityReadBase {
|
|
8276
8359
|
chemistry: ImaSpecificationChemistryResultsDto;
|
|
8277
8360
|
mechanical: ImaSpecificationMechanicalResultsDto;
|
|
8278
8361
|
ferrite: ImaSpecificationFerriteResultsDto;
|
|
8279
|
-
|
|
8362
|
+
chemicalAnalysis: ImaChemicalAnalysisResultDto[];
|
|
8363
|
+
tensileTests: ImaTensileTestResultDto[];
|
|
8364
|
+
hardnessTests: ImaHardnessTestResultDto[];
|
|
8365
|
+
impactTests: ImaImpactTestResultDto[];
|
|
8366
|
+
corrosionTests: ImaCorrosionTestResultDto[];
|
|
8367
|
+
ferriteContentAndMicrostructure: ImaFerriteResultDto[];
|
|
8368
|
+
heatTreatments: ImaHeatTreatmentResultDto[];
|
|
8369
|
+
documentTypes: ImaDocumentTypesResultsDto;
|
|
8280
8370
|
}
|
|
8281
8371
|
export interface ImaSpecificationChemistryResultsDto extends ImaCdfEntityReadBase {
|
|
8282
8372
|
carbon?: ImaSpecificationResultLineDto | null;
|
|
@@ -8319,27 +8409,132 @@ export interface ImaSpecificationFerriteResultLineDto extends ImaCdfEntityReadBa
|
|
|
8319
8409
|
override?: ImaResultLineOverrideDto | null;
|
|
8320
8410
|
measurementMethod?: string | null;
|
|
8321
8411
|
}
|
|
8322
|
-
export interface
|
|
8323
|
-
|
|
8324
|
-
|
|
8325
|
-
|
|
8412
|
+
export interface ImaChemicalAnalysisResultDto extends ImaCdfEntityReadBase {
|
|
8413
|
+
sampleReference?: string | null;
|
|
8414
|
+
analysisType?: string | null;
|
|
8415
|
+
elements: ImaChemicalElementResultDto[];
|
|
8416
|
+
indices: ImaChemicalIndexResultDto[];
|
|
8417
|
+
testStandards: string[];
|
|
8418
|
+
override?: ImaResultLineOverrideDto | null;
|
|
8419
|
+
}
|
|
8420
|
+
export interface ImaChemicalElementResultDto extends ImaCdfEntityReadBase {
|
|
8421
|
+
symbol?: string | null;
|
|
8422
|
+
value?: ImaResultValueDto | null;
|
|
8423
|
+
}
|
|
8424
|
+
export interface ImaResultValueDto extends ImaCdfEntityReadBase {
|
|
8425
|
+
readValue?: string | null;
|
|
8426
|
+
value?: number | null;
|
|
8427
|
+
unit?: string | null;
|
|
8428
|
+
override?: ImaResultLineOverrideDto | null;
|
|
8429
|
+
}
|
|
8430
|
+
export interface ImaChemicalIndexResultDto extends ImaCdfEntityReadBase {
|
|
8431
|
+
name?: string | null;
|
|
8432
|
+
value?: number | null;
|
|
8326
8433
|
}
|
|
8327
|
-
export interface
|
|
8328
|
-
|
|
8329
|
-
|
|
8330
|
-
|
|
8434
|
+
export interface ImaTensileTestResultDto extends ImaCdfEntityReadBase {
|
|
8435
|
+
sampleReference?: string | null;
|
|
8436
|
+
orientation?: string | null;
|
|
8437
|
+
testLocation?: string | null;
|
|
8438
|
+
temperature?: ImaResultValueDto | null;
|
|
8439
|
+
roomTemperature?: boolean | null;
|
|
8440
|
+
yieldStrengths: ImaYieldStrengthResultDto[];
|
|
8441
|
+
tensileStrength?: ImaResultValueDto | null;
|
|
8442
|
+
yieldTensileRatio?: number | null;
|
|
8443
|
+
elongations: ImaElongationResultDto[];
|
|
8444
|
+
reductionOfArea?: ImaResultValueDto | null;
|
|
8445
|
+
testStandards: string[];
|
|
8446
|
+
override?: ImaResultLineOverrideDto | null;
|
|
8331
8447
|
}
|
|
8332
|
-
export interface
|
|
8333
|
-
|
|
8334
|
-
|
|
8335
|
-
|
|
8448
|
+
export interface ImaYieldStrengthResultDto extends ImaCdfEntityReadBase {
|
|
8449
|
+
label?: string | null;
|
|
8450
|
+
value?: ImaResultValueDto | null;
|
|
8451
|
+
}
|
|
8452
|
+
export interface ImaElongationResultDto extends ImaCdfEntityReadBase {
|
|
8453
|
+
gauge?: string | null;
|
|
8454
|
+
value?: ImaResultValueDto | null;
|
|
8455
|
+
}
|
|
8456
|
+
export interface ImaHardnessTestResultDto extends ImaCdfEntityReadBase {
|
|
8457
|
+
sampleReference?: string | null;
|
|
8458
|
+
orientation?: string | null;
|
|
8459
|
+
testLocation?: string | null;
|
|
8460
|
+
readings: ImaHardnessReadingResultDto[];
|
|
8461
|
+
testStandards: string[];
|
|
8462
|
+
override?: ImaResultLineOverrideDto | null;
|
|
8463
|
+
}
|
|
8464
|
+
export interface ImaHardnessReadingResultDto extends ImaCdfEntityReadBase {
|
|
8465
|
+
label?: string | null;
|
|
8466
|
+
scale?: string | null;
|
|
8467
|
+
value?: number | null;
|
|
8468
|
+
}
|
|
8469
|
+
export interface ImaImpactTestResultDto extends ImaCdfEntityReadBase {
|
|
8470
|
+
sampleReference?: string | null;
|
|
8471
|
+
orientation?: string | null;
|
|
8472
|
+
testLocation?: string | null;
|
|
8473
|
+
temperature?: ImaResultValueDto | null;
|
|
8474
|
+
roomTemperature?: boolean | null;
|
|
8475
|
+
testLabel?: string | null;
|
|
8476
|
+
notchType?: string | null;
|
|
8477
|
+
specimenSize?: string | null;
|
|
8478
|
+
individualValues: ImaResultValueDto[];
|
|
8479
|
+
reportedAverage?: ImaResultValueDto | null;
|
|
8480
|
+
reportedMinimum?: ImaResultValueDto | null;
|
|
8481
|
+
testStandards: string[];
|
|
8482
|
+
override?: ImaResultLineOverrideDto | null;
|
|
8483
|
+
}
|
|
8484
|
+
export interface ImaCorrosionTestResultDto extends ImaCdfEntityReadBase {
|
|
8485
|
+
sampleReference?: string | null;
|
|
8486
|
+
testLocation?: string | null;
|
|
8487
|
+
testMethod?: string | null;
|
|
8488
|
+
testTemperature?: ImaResultValueDto | null;
|
|
8489
|
+
roomTemperature?: boolean | null;
|
|
8490
|
+
weightLoss?: ImaResultValueDto | null;
|
|
8491
|
+
pitting?: boolean | null;
|
|
8492
|
+
result?: string | null;
|
|
8493
|
+
acceptable?: boolean | null;
|
|
8494
|
+
override?: ImaResultLineOverrideDto | null;
|
|
8495
|
+
}
|
|
8496
|
+
export interface ImaFerriteResultDto extends ImaCdfEntityReadBase {
|
|
8497
|
+
sampleReference?: string | null;
|
|
8498
|
+
testLocation?: string | null;
|
|
8499
|
+
ferrite?: ImaResultValueDto | null;
|
|
8500
|
+
ferriteTolerance?: number | null;
|
|
8501
|
+
reportedRange?: string | null;
|
|
8502
|
+
intermetallicPhases?: boolean | null;
|
|
8503
|
+
grainSize?: string | null;
|
|
8504
|
+
testStandards: string[];
|
|
8505
|
+
override?: ImaResultLineOverrideDto | null;
|
|
8506
|
+
}
|
|
8507
|
+
export interface ImaHeatTreatmentResultDto extends ImaCdfEntityReadBase {
|
|
8508
|
+
stepType?: string | null;
|
|
8509
|
+
treatmentName?: string | null;
|
|
8510
|
+
temperature?: ImaResultValueDto | null;
|
|
8511
|
+
temperatureMin?: number | null;
|
|
8512
|
+
temperatureMax?: number | null;
|
|
8513
|
+
soakTime?: ImaResultValueDto | null;
|
|
8514
|
+
soakRate?: string | null;
|
|
8515
|
+
coolingMedium?: string | null;
|
|
8516
|
+
override?: ImaResultLineOverrideDto | null;
|
|
8517
|
+
}
|
|
8518
|
+
export interface ImaDocumentTypesResultsDto extends ImaCdfEntityReadBase {
|
|
8519
|
+
ultrasonicControlCertificate?: ImaSupplementaryCheckResultDto | null;
|
|
8520
|
+
radiologicalReport?: ImaSupplementaryCheckResultDto | null;
|
|
8521
|
+
liquidPenetrantCertificate?: ImaSupplementaryCheckResultDto | null;
|
|
8522
|
+
magneticParticle?: ImaSupplementaryCheckResultDto | null;
|
|
8523
|
+
pmi?: ImaSupplementaryCheckResultDto | null;
|
|
8524
|
+
hydrostatic?: ImaSupplementaryCheckResultDto | null;
|
|
8525
|
+
visualReport?: ImaSupplementaryCheckResultDto | null;
|
|
8526
|
+
dimensionalReport?: ImaSupplementaryCheckResultDto | null;
|
|
8527
|
+
microExaminationReport?: ImaSupplementaryCheckResultDto | null;
|
|
8336
8528
|
}
|
|
8337
8529
|
export interface ImaOverrideMaterialCheckRequestDto {
|
|
8338
8530
|
certificateTypeSection?: ImaOverrideCertificateTypeResultsDto | null;
|
|
8339
|
-
|
|
8340
|
-
|
|
8341
|
-
|
|
8342
|
-
|
|
8531
|
+
chemicalAnalysisSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8532
|
+
tensileTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8533
|
+
hardnessTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8534
|
+
impactTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8535
|
+
corrosionTestSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8536
|
+
ferriteResultSection?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8537
|
+
documentTypesSection?: ImaOverrideDocumentTypesResultsDto | null;
|
|
8343
8538
|
}
|
|
8344
8539
|
export interface ImaOverrideCertificateTypeResultsDto {
|
|
8345
8540
|
manufacturer?: ImaOverrideCertificateTypeManufacturerResultsDto | null;
|
|
@@ -8348,13 +8543,12 @@ export interface ImaOverrideCertificateTypeResultsDto {
|
|
|
8348
8543
|
certification?: ImaOverrideCertificateTypeCertificationResultsDto | null;
|
|
8349
8544
|
productAndOrderInformation?: ImaOverrideCertificateTypeProductAndOrderInformationResultsDto | null;
|
|
8350
8545
|
testMethodsAndReferences?: ImaOverrideCertificateTypeTestMethodsAndReferencesResultsDto | null;
|
|
8351
|
-
testResults?: ImaOverrideCertificateTypeTestResultsResultsDto | null;
|
|
8352
|
-
documentTypes?: ImaOverrideCertificateTypeDocumentTypesResultsDto | null;
|
|
8353
8546
|
}
|
|
8354
8547
|
export interface ImaOverrideCertificateTypeManufacturerResultsDto {
|
|
8355
8548
|
manufacturer?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8356
8549
|
address?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8357
8550
|
contact?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8551
|
+
steelPlant?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8358
8552
|
}
|
|
8359
8553
|
export interface ImaOverrideUpdateMaterialCheckResultLineDto {
|
|
8360
8554
|
approved?: boolean | null;
|
|
@@ -8377,6 +8571,7 @@ export interface ImaOverrideCertificateTypeThirdPartyResultsDto {
|
|
|
8377
8571
|
stamp?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8378
8572
|
}
|
|
8379
8573
|
export interface ImaOverrideCertificateTypeCertificationResultsDto {
|
|
8574
|
+
certificateType?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8380
8575
|
certificateOfCompliance?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8381
8576
|
inspectionCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8382
8577
|
}
|
|
@@ -8388,59 +8583,21 @@ export interface ImaOverrideCertificateTypeProductAndOrderInformationResultsDto
|
|
|
8388
8583
|
dimensionsOrWeight?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8389
8584
|
batchNumber?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8390
8585
|
heatNumber?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8391
|
-
|
|
8586
|
+
relevantStandard?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8392
8587
|
}
|
|
8393
8588
|
export interface ImaOverrideCertificateTypeTestMethodsAndReferencesResultsDto {
|
|
8394
8589
|
usedStandards?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8395
8590
|
}
|
|
8396
|
-
export interface
|
|
8397
|
-
mechanicalProperties?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8398
|
-
chemicalAnalysis?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8399
|
-
impactTests?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8400
|
-
corrosionTests?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8401
|
-
ferriteContentAndMicrostructure?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8402
|
-
}
|
|
8403
|
-
export interface ImaOverrideCertificateTypeDocumentTypesResultsDto {
|
|
8404
|
-
heatTreatmentCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8591
|
+
export interface ImaOverrideDocumentTypesResultsDto {
|
|
8405
8592
|
ultrasonicControlCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8593
|
+
radiologicalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8406
8594
|
liquidPenetrantCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8407
|
-
|
|
8408
|
-
|
|
8409
|
-
|
|
8595
|
+
magneticParticle?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8596
|
+
pmi?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8597
|
+
hydrostatic?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8410
8598
|
visualReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8411
|
-
|
|
8412
|
-
certificateOfTest?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8413
|
-
technicalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8599
|
+
dimensionalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8414
8600
|
microExaminationReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8415
|
-
radiologicalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8416
|
-
}
|
|
8417
|
-
export interface ImaOverrideSpecificationChemistryResultsDto {
|
|
8418
|
-
carbon?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8419
|
-
manganese?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8420
|
-
silicon?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8421
|
-
phosphorus?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8422
|
-
sulfur?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8423
|
-
chromium?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8424
|
-
nickel?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8425
|
-
molybdenum?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8426
|
-
copper?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8427
|
-
nitrogen?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8428
|
-
wolfram?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8429
|
-
iron?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8430
|
-
}
|
|
8431
|
-
export interface ImaOverrideSpecificationMechanicalResultsDto {
|
|
8432
|
-
yieldStrength?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8433
|
-
tensileStrength?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8434
|
-
elongation?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8435
|
-
reductionOfArea?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8436
|
-
impactEnergy?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8437
|
-
hardness?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8438
|
-
}
|
|
8439
|
-
export interface ImaOverrideSpecificationFerriteResultsDto {
|
|
8440
|
-
ferriteContent?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8441
|
-
}
|
|
8442
|
-
export interface ImaOverrideSpecificationHeatTreatmentResultsDto {
|
|
8443
|
-
heatTreatmentOverrides?: ImaOverrideUpdateMaterialCheckResultLineDto[] | null;
|
|
8444
8601
|
}
|
|
8445
8602
|
export interface ImaUpdateMaterialCheckMetadataRequestDto {
|
|
8446
8603
|
customerOrder?: string;
|
|
@@ -8494,7 +8651,7 @@ export interface ImaMaterialCheckLiteDto {
|
|
|
8494
8651
|
}
|
|
8495
8652
|
export interface ImaMaterialChecksPageRequestDto {
|
|
8496
8653
|
pageSize?: number | null;
|
|
8497
|
-
orderBy?: ImaMaterialChecksPageOrderRequestDto
|
|
8654
|
+
orderBy?: ImaMaterialChecksPageOrderRequestDto | null;
|
|
8498
8655
|
searchQuery?: string | null;
|
|
8499
8656
|
fileNameFilter?: string | null;
|
|
8500
8657
|
specificationFilter?: string | null;
|
|
@@ -8647,6 +8804,7 @@ export interface ImaSpecificationDto {
|
|
|
8647
8804
|
chemistrySpecification: ImaChemistrySpecificationDto;
|
|
8648
8805
|
mechanicalSpecification: ImaMechanicalSpecificationDto;
|
|
8649
8806
|
ferriteSpecification: ImaFerriteSpecificationDto;
|
|
8807
|
+
documentTypesSpecification: ImaDocumentTypesSpecificationDto;
|
|
8650
8808
|
heatTreatmentSpecifications: ImaHeatTreatmentSpecificationDto[];
|
|
8651
8809
|
}
|
|
8652
8810
|
export interface ImaSpecificationVersionDto {
|
|
@@ -8682,6 +8840,17 @@ export interface ImaMechanicalSpecificationDto {
|
|
|
8682
8840
|
export interface ImaFerriteSpecificationDto {
|
|
8683
8841
|
ferriteContent?: ImaSpecificationLineDto | null;
|
|
8684
8842
|
}
|
|
8843
|
+
export interface ImaDocumentTypesSpecificationDto {
|
|
8844
|
+
ultrasonicControlCertificate?: boolean;
|
|
8845
|
+
radiologicalReport?: boolean;
|
|
8846
|
+
liquidPenetrantCertificate?: boolean;
|
|
8847
|
+
magneticParticle?: boolean;
|
|
8848
|
+
pmi?: boolean;
|
|
8849
|
+
hydrostatic?: boolean;
|
|
8850
|
+
visualReport?: boolean;
|
|
8851
|
+
dimensionalReport?: boolean;
|
|
8852
|
+
microExaminationReport?: boolean;
|
|
8853
|
+
}
|
|
8685
8854
|
export interface ImaHeatTreatmentSpecificationDto {
|
|
8686
8855
|
step: number;
|
|
8687
8856
|
cooling?: ImaHeatTreatmentSpecificationCoolingDto | null;
|
|
@@ -8721,6 +8890,7 @@ export interface ImaUpdateSpecificationDto {
|
|
|
8721
8890
|
chemistrySpecification?: ImaChemistrySpecificationDto | null;
|
|
8722
8891
|
mechanicalSpecification?: ImaMechanicalSpecificationDto | null;
|
|
8723
8892
|
ferriteSpecification?: ImaFerriteSpecificationDto | null;
|
|
8893
|
+
documentTypesSpecification?: ImaDocumentTypesSpecificationDto | null;
|
|
8724
8894
|
heatSpecifications?: ImaHeatTreatmentSpecificationDto[] | null;
|
|
8725
8895
|
}
|
|
8726
8896
|
export interface ImaSpecificationLiteDto {
|
|
@@ -9807,17 +9977,20 @@ export interface WorkorderDiscussionMessageDto {
|
|
|
9807
9977
|
operationName?: string | null;
|
|
9808
9978
|
resourceId?: string | null;
|
|
9809
9979
|
created?: Date;
|
|
9980
|
+
messageType?: DiscussionMessageType;
|
|
9810
9981
|
}
|
|
9811
9982
|
export interface WorkOrderDiscussionContent {
|
|
9812
9983
|
type?: WorkOrderDiscussionContentType;
|
|
9813
9984
|
value?: string;
|
|
9814
9985
|
}
|
|
9815
9986
|
export type WorkOrderDiscussionContentType = 0 | 1;
|
|
9987
|
+
export type DiscussionMessageType = "Public" | "Planner";
|
|
9816
9988
|
export interface AddDiscussionMessageRequest {
|
|
9817
9989
|
message: string;
|
|
9818
9990
|
operationId?: string | null;
|
|
9819
9991
|
operationName?: string | null;
|
|
9820
9992
|
resourceId?: string | null;
|
|
9993
|
+
messageType?: DiscussionMessageType;
|
|
9821
9994
|
}
|
|
9822
9995
|
export interface WorkorderDiscussionReadStatusDto {
|
|
9823
9996
|
workorderId: string;
|