@ignos/api-client 20260723.192.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 +186 -241
- package/lib/ignosportal-api.js +0 -418
- package/package.json +1 -1
- package/src/ignosportal-api.ts +200 -658
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)
|
|
@@ -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,78 +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
|
-
}
|
|
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;
|
|
7445
|
-
}
|
|
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;
|
|
7454
|
-
}
|
|
7455
|
-
export type PlannerEventType = "Published" | "DraftSaved" | "ResetToErp";
|
|
7456
|
-
export interface SetProgramStatus {
|
|
7457
|
-
workOrderId?: string;
|
|
7458
|
-
operationNumber?: number;
|
|
7459
|
-
status?: ProgramStatus;
|
|
7460
|
-
}
|
|
7461
7352
|
export type ProductionOrderAttachmentType = "Url" | "Note" | "Image" | "File";
|
|
7462
7353
|
export interface WorkOrderAttachmentDto {
|
|
7463
7354
|
createdBy?: UserDto | null;
|
|
@@ -7733,7 +7624,6 @@ export interface ProductionScheduleOperationDto {
|
|
|
7733
7624
|
materialPickStatus: MaterialPickStatus;
|
|
7734
7625
|
productionStatus: OperationStatusDto;
|
|
7735
7626
|
setupStatus?: OperationStatusDto | null;
|
|
7736
|
-
programStatus?: ProgramStatus | null;
|
|
7737
7627
|
}
|
|
7738
7628
|
export interface SurroundingOperationDto {
|
|
7739
7629
|
id: string;
|
|
@@ -8065,7 +7955,6 @@ export interface ImaCertificateTypeRequirementsDto {
|
|
|
8065
7955
|
productAndOrderInformation: ImaCertificateTypeProductAndOrderInformationRequirementsDto;
|
|
8066
7956
|
testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesRequirementsDto;
|
|
8067
7957
|
testResults: ImaCertificateTypeTestResultsRequirementsDto;
|
|
8068
|
-
documentTypes: ImaCertificateTypeDocumentTypesRequirementsDto;
|
|
8069
7958
|
}
|
|
8070
7959
|
export interface ImaCdfEntityReadBase {
|
|
8071
7960
|
}
|
|
@@ -8073,6 +7962,7 @@ export interface ImaCertificateTypeManufacturerRequirementsDto extends ImaCdfEnt
|
|
|
8073
7962
|
manufacturer?: boolean;
|
|
8074
7963
|
address?: boolean;
|
|
8075
7964
|
contact?: boolean;
|
|
7965
|
+
steelPlant?: boolean;
|
|
8076
7966
|
}
|
|
8077
7967
|
export interface ImaCertificateTypeSignatureRequirementsDto extends ImaCdfEntityReadBase {
|
|
8078
7968
|
certifiedBy?: boolean;
|
|
@@ -8091,6 +7981,7 @@ export interface ImaCertificateTypeThirdPartyRequirementsDto extends ImaCdfEntit
|
|
|
8091
7981
|
stamp?: boolean;
|
|
8092
7982
|
}
|
|
8093
7983
|
export interface ImaCertificateTypeCertificationRequirementsDto extends ImaCdfEntityReadBase {
|
|
7984
|
+
certificateType?: boolean;
|
|
8094
7985
|
certificateOfCompliance?: boolean;
|
|
8095
7986
|
inspectionCertificate?: boolean;
|
|
8096
7987
|
}
|
|
@@ -8102,32 +7993,20 @@ export interface ImaCertificateTypeProductAndOrderInformationRequirementsDto ext
|
|
|
8102
7993
|
dimensionsOrWeight?: boolean;
|
|
8103
7994
|
batchNumber?: boolean;
|
|
8104
7995
|
heatNumber?: boolean;
|
|
8105
|
-
|
|
7996
|
+
relevantStandard?: boolean;
|
|
7997
|
+
steelMaking?: boolean;
|
|
8106
7998
|
}
|
|
8107
7999
|
export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsDto extends ImaCdfEntityReadBase {
|
|
8108
8000
|
usedStandards?: boolean;
|
|
8109
8001
|
}
|
|
8110
8002
|
export interface ImaCertificateTypeTestResultsRequirementsDto extends ImaCdfEntityReadBase {
|
|
8111
|
-
|
|
8112
|
-
|
|
8003
|
+
tensileTests?: boolean;
|
|
8004
|
+
hardnessTests?: boolean;
|
|
8113
8005
|
impactTests?: boolean;
|
|
8006
|
+
chemicalAnalysis?: boolean;
|
|
8114
8007
|
corrosionTests?: boolean;
|
|
8115
8008
|
ferriteContentAndMicrostructure?: boolean;
|
|
8116
8009
|
}
|
|
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
8010
|
export interface ImaCreateOrCopyCertificateTypeRequestDto {
|
|
8132
8011
|
name: string;
|
|
8133
8012
|
revision: string;
|
|
@@ -8148,12 +8027,12 @@ export interface ImaCertificateTypeRequirementsUpdateDto {
|
|
|
8148
8027
|
productAndOrderInformation?: ImaCertificateTypeProductAndOrderInformationRequirementsUpdateDto | null;
|
|
8149
8028
|
testMethodsAndReferences?: ImaCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto | null;
|
|
8150
8029
|
testResults?: ImaCertificateTypeTestResultsRequirementsUpdateDto | null;
|
|
8151
|
-
documentTypes?: ImaCertificateTypeDocumentTypesRequirementsUpdateDto | null;
|
|
8152
8030
|
}
|
|
8153
8031
|
export interface ImaCertificateTypeManufacturerRequirementsUpdateDto {
|
|
8154
8032
|
manufacturer?: boolean | null;
|
|
8155
8033
|
address?: boolean | null;
|
|
8156
8034
|
contact?: boolean | null;
|
|
8035
|
+
steelPlant?: boolean | null;
|
|
8157
8036
|
}
|
|
8158
8037
|
export interface ImaCertificateTypeSignatureRequirementsUpdateDto {
|
|
8159
8038
|
certifiedBy?: boolean | null;
|
|
@@ -8172,6 +8051,7 @@ export interface ImaCertificateTypeThirdPartyRequirementsUpdateDto {
|
|
|
8172
8051
|
stamp?: boolean | null;
|
|
8173
8052
|
}
|
|
8174
8053
|
export interface ImaCertificateTypeCertificationRequirementsUpdateDto {
|
|
8054
|
+
certificateType?: boolean | null;
|
|
8175
8055
|
certificateOfCompliance?: boolean | null;
|
|
8176
8056
|
inspectionCertificate?: boolean | null;
|
|
8177
8057
|
}
|
|
@@ -8183,32 +8063,20 @@ export interface ImaCertificateTypeProductAndOrderInformationRequirementsUpdateD
|
|
|
8183
8063
|
dimensionsOrWeight?: boolean | null;
|
|
8184
8064
|
batchNumber?: boolean | null;
|
|
8185
8065
|
heatNumber?: boolean | null;
|
|
8186
|
-
|
|
8066
|
+
relevantStandard?: boolean | null;
|
|
8067
|
+
steelMaking?: boolean | null;
|
|
8187
8068
|
}
|
|
8188
8069
|
export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto {
|
|
8189
8070
|
usedStandards?: boolean | null;
|
|
8190
8071
|
}
|
|
8191
8072
|
export interface ImaCertificateTypeTestResultsRequirementsUpdateDto {
|
|
8192
|
-
|
|
8193
|
-
|
|
8073
|
+
tensileTests?: boolean | null;
|
|
8074
|
+
hardnessTests?: boolean | null;
|
|
8194
8075
|
impactTests?: boolean | null;
|
|
8076
|
+
chemicalAnalysis?: boolean | null;
|
|
8195
8077
|
corrosionTests?: boolean | null;
|
|
8196
8078
|
ferriteContentAndMicrostructure?: boolean | null;
|
|
8197
8079
|
}
|
|
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
8080
|
export interface ImaCertificateTypeLiteDto {
|
|
8213
8081
|
certificateTypeId: string;
|
|
8214
8082
|
version: number;
|
|
@@ -8279,13 +8147,12 @@ export interface ImaCertificateTypeResultsDto extends ImaCdfEntityReadBase {
|
|
|
8279
8147
|
certification: ImaCertificateTypeCertificationResultsDto;
|
|
8280
8148
|
productAndOrderInformation: ImaCertificateTypeProductAndOrderInformationResultsDto;
|
|
8281
8149
|
testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesResultsDto;
|
|
8282
|
-
testResults: ImaCertificateTypeTestResultsResultsDto;
|
|
8283
|
-
documentTypes: ImaCertificateTypeDocumentTypesResultsDto;
|
|
8284
8150
|
}
|
|
8285
8151
|
export interface ImaCertificateTypeManufacturerResultsDto extends ImaCdfEntityReadBase {
|
|
8286
8152
|
manufacturer?: ImaCertificateTypeResultLine | null;
|
|
8287
8153
|
address?: ImaCertificateTypeResultLine | null;
|
|
8288
8154
|
contact?: ImaCertificateTypeResultLine | null;
|
|
8155
|
+
steelPlant?: ImaCertificateTypeResultLine | null;
|
|
8289
8156
|
}
|
|
8290
8157
|
export interface ImaCertificateTypeResultLine extends ImaCdfEntityReadBase {
|
|
8291
8158
|
found?: boolean;
|
|
@@ -8317,9 +8184,18 @@ export interface ImaCertificateTypeThirdPartyResultsDto extends ImaCdfEntityRead
|
|
|
8317
8184
|
stamp?: ImaCertificateTypeResultLine | null;
|
|
8318
8185
|
}
|
|
8319
8186
|
export interface ImaCertificateTypeCertificationResultsDto extends ImaCdfEntityReadBase {
|
|
8320
|
-
|
|
8187
|
+
certificateType?: ImaCertificateTypeResultLine | null;
|
|
8188
|
+
certificateOfCompliance?: ImaSupplementaryCheckResultDto | null;
|
|
8321
8189
|
inspectionCertificate?: ImaCertificateTypeResultLine | null;
|
|
8322
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
|
+
}
|
|
8323
8199
|
export interface ImaCertificateTypeProductAndOrderInformationResultsDto extends ImaCdfEntityReadBase {
|
|
8324
8200
|
productDescription?: ImaCertificateTypeResultLine | null;
|
|
8325
8201
|
materialGrade?: ImaCertificateTypeResultLine | null;
|
|
@@ -8328,37 +8204,29 @@ export interface ImaCertificateTypeProductAndOrderInformationResultsDto extends
|
|
|
8328
8204
|
dimensionsOrWeight?: ImaCertificateTypeResultLine | null;
|
|
8329
8205
|
batchNumber?: ImaCertificateTypeResultLine | null;
|
|
8330
8206
|
heatNumber?: ImaCertificateTypeResultLine | null;
|
|
8331
|
-
|
|
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;
|
|
8332
8214
|
}
|
|
8333
8215
|
export interface ImaCertificateTypeTestMethodsAndReferencesResultsDto extends ImaCdfEntityReadBase {
|
|
8334
8216
|
usedStandards?: ImaCertificateTypeResultLine | null;
|
|
8335
8217
|
}
|
|
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
8218
|
export interface ImaSpecificationResultsDto extends ImaCdfEntityReadBase {
|
|
8358
8219
|
chemistry: ImaSpecificationChemistryResultsDto;
|
|
8359
8220
|
mechanical: ImaSpecificationMechanicalResultsDto;
|
|
8360
8221
|
ferrite: ImaSpecificationFerriteResultsDto;
|
|
8361
|
-
|
|
8222
|
+
chemicalAnalysis: ImaChemicalAnalysisResultDto[];
|
|
8223
|
+
tensileTests: ImaTensileTestResultDto[];
|
|
8224
|
+
hardnessTests: ImaHardnessTestResultDto[];
|
|
8225
|
+
impactTests: ImaImpactTestResultDto[];
|
|
8226
|
+
corrosionTests: ImaCorrosionTestResultDto[];
|
|
8227
|
+
ferriteContentAndMicrostructure: ImaFerriteResultDto[];
|
|
8228
|
+
heatTreatments: ImaHeatTreatmentResultDto[];
|
|
8229
|
+
documentTypes: ImaDocumentTypesResultsDto;
|
|
8362
8230
|
}
|
|
8363
8231
|
export interface ImaSpecificationChemistryResultsDto extends ImaCdfEntityReadBase {
|
|
8364
8232
|
carbon?: ImaSpecificationResultLineDto | null;
|
|
@@ -8401,27 +8269,132 @@ export interface ImaSpecificationFerriteResultLineDto extends ImaCdfEntityReadBa
|
|
|
8401
8269
|
override?: ImaResultLineOverrideDto | null;
|
|
8402
8270
|
measurementMethod?: string | null;
|
|
8403
8271
|
}
|
|
8404
|
-
export interface
|
|
8405
|
-
|
|
8406
|
-
|
|
8407
|
-
|
|
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;
|
|
8408
8293
|
}
|
|
8409
|
-
export interface
|
|
8410
|
-
|
|
8411
|
-
|
|
8412
|
-
|
|
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;
|
|
8413
8307
|
}
|
|
8414
|
-
export interface
|
|
8415
|
-
|
|
8416
|
-
|
|
8417
|
-
|
|
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;
|
|
8418
8388
|
}
|
|
8419
8389
|
export interface ImaOverrideMaterialCheckRequestDto {
|
|
8420
8390
|
certificateTypeSection?: ImaOverrideCertificateTypeResultsDto | null;
|
|
8421
|
-
|
|
8422
|
-
|
|
8423
|
-
|
|
8424
|
-
|
|
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;
|
|
8425
8398
|
}
|
|
8426
8399
|
export interface ImaOverrideCertificateTypeResultsDto {
|
|
8427
8400
|
manufacturer?: ImaOverrideCertificateTypeManufacturerResultsDto | null;
|
|
@@ -8430,13 +8403,12 @@ export interface ImaOverrideCertificateTypeResultsDto {
|
|
|
8430
8403
|
certification?: ImaOverrideCertificateTypeCertificationResultsDto | null;
|
|
8431
8404
|
productAndOrderInformation?: ImaOverrideCertificateTypeProductAndOrderInformationResultsDto | null;
|
|
8432
8405
|
testMethodsAndReferences?: ImaOverrideCertificateTypeTestMethodsAndReferencesResultsDto | null;
|
|
8433
|
-
testResults?: ImaOverrideCertificateTypeTestResultsResultsDto | null;
|
|
8434
|
-
documentTypes?: ImaOverrideCertificateTypeDocumentTypesResultsDto | null;
|
|
8435
8406
|
}
|
|
8436
8407
|
export interface ImaOverrideCertificateTypeManufacturerResultsDto {
|
|
8437
8408
|
manufacturer?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8438
8409
|
address?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8439
8410
|
contact?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8411
|
+
steelPlant?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8440
8412
|
}
|
|
8441
8413
|
export interface ImaOverrideUpdateMaterialCheckResultLineDto {
|
|
8442
8414
|
approved?: boolean | null;
|
|
@@ -8459,6 +8431,7 @@ export interface ImaOverrideCertificateTypeThirdPartyResultsDto {
|
|
|
8459
8431
|
stamp?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8460
8432
|
}
|
|
8461
8433
|
export interface ImaOverrideCertificateTypeCertificationResultsDto {
|
|
8434
|
+
certificateType?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8462
8435
|
certificateOfCompliance?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8463
8436
|
inspectionCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8464
8437
|
}
|
|
@@ -8470,59 +8443,21 @@ export interface ImaOverrideCertificateTypeProductAndOrderInformationResultsDto
|
|
|
8470
8443
|
dimensionsOrWeight?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8471
8444
|
batchNumber?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8472
8445
|
heatNumber?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8473
|
-
|
|
8446
|
+
relevantStandard?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8474
8447
|
}
|
|
8475
8448
|
export interface ImaOverrideCertificateTypeTestMethodsAndReferencesResultsDto {
|
|
8476
8449
|
usedStandards?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8477
8450
|
}
|
|
8478
|
-
export interface
|
|
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;
|
|
8451
|
+
export interface ImaOverrideDocumentTypesResultsDto {
|
|
8487
8452
|
ultrasonicControlCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8453
|
+
radiologicalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8488
8454
|
liquidPenetrantCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8489
|
-
|
|
8490
|
-
|
|
8491
|
-
|
|
8455
|
+
magneticParticle?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8456
|
+
pmi?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8457
|
+
hydrostatic?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8492
8458
|
visualReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8493
|
-
|
|
8494
|
-
certificateOfTest?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8495
|
-
technicalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8459
|
+
dimensionalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8496
8460
|
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
8461
|
}
|
|
8527
8462
|
export interface ImaUpdateMaterialCheckMetadataRequestDto {
|
|
8528
8463
|
customerOrder?: string;
|
|
@@ -8576,7 +8511,7 @@ export interface ImaMaterialCheckLiteDto {
|
|
|
8576
8511
|
}
|
|
8577
8512
|
export interface ImaMaterialChecksPageRequestDto {
|
|
8578
8513
|
pageSize?: number | null;
|
|
8579
|
-
orderBy?: ImaMaterialChecksPageOrderRequestDto
|
|
8514
|
+
orderBy?: ImaMaterialChecksPageOrderRequestDto | null;
|
|
8580
8515
|
searchQuery?: string | null;
|
|
8581
8516
|
fileNameFilter?: string | null;
|
|
8582
8517
|
specificationFilter?: string | null;
|
|
@@ -8729,6 +8664,7 @@ export interface ImaSpecificationDto {
|
|
|
8729
8664
|
chemistrySpecification: ImaChemistrySpecificationDto;
|
|
8730
8665
|
mechanicalSpecification: ImaMechanicalSpecificationDto;
|
|
8731
8666
|
ferriteSpecification: ImaFerriteSpecificationDto;
|
|
8667
|
+
documentTypesSpecification: ImaDocumentTypesSpecificationDto;
|
|
8732
8668
|
heatTreatmentSpecifications: ImaHeatTreatmentSpecificationDto[];
|
|
8733
8669
|
}
|
|
8734
8670
|
export interface ImaSpecificationVersionDto {
|
|
@@ -8764,6 +8700,17 @@ export interface ImaMechanicalSpecificationDto {
|
|
|
8764
8700
|
export interface ImaFerriteSpecificationDto {
|
|
8765
8701
|
ferriteContent?: ImaSpecificationLineDto | null;
|
|
8766
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
|
+
}
|
|
8767
8714
|
export interface ImaHeatTreatmentSpecificationDto {
|
|
8768
8715
|
step: number;
|
|
8769
8716
|
cooling?: ImaHeatTreatmentSpecificationCoolingDto | null;
|
|
@@ -8803,6 +8750,7 @@ export interface ImaUpdateSpecificationDto {
|
|
|
8803
8750
|
chemistrySpecification?: ImaChemistrySpecificationDto | null;
|
|
8804
8751
|
mechanicalSpecification?: ImaMechanicalSpecificationDto | null;
|
|
8805
8752
|
ferriteSpecification?: ImaFerriteSpecificationDto | null;
|
|
8753
|
+
documentTypesSpecification?: ImaDocumentTypesSpecificationDto | null;
|
|
8806
8754
|
heatSpecifications?: ImaHeatTreatmentSpecificationDto[] | null;
|
|
8807
8755
|
}
|
|
8808
8756
|
export interface ImaSpecificationLiteDto {
|
|
@@ -9889,20 +9837,17 @@ export interface WorkorderDiscussionMessageDto {
|
|
|
9889
9837
|
operationName?: string | null;
|
|
9890
9838
|
resourceId?: string | null;
|
|
9891
9839
|
created?: Date;
|
|
9892
|
-
messageType?: DiscussionMessageType;
|
|
9893
9840
|
}
|
|
9894
9841
|
export interface WorkOrderDiscussionContent {
|
|
9895
9842
|
type?: WorkOrderDiscussionContentType;
|
|
9896
9843
|
value?: string;
|
|
9897
9844
|
}
|
|
9898
9845
|
export type WorkOrderDiscussionContentType = 0 | 1;
|
|
9899
|
-
export type DiscussionMessageType = "Public" | "Planner";
|
|
9900
9846
|
export interface AddDiscussionMessageRequest {
|
|
9901
9847
|
message: string;
|
|
9902
9848
|
operationId?: string | null;
|
|
9903
9849
|
operationName?: string | null;
|
|
9904
9850
|
resourceId?: string | null;
|
|
9905
|
-
messageType?: DiscussionMessageType;
|
|
9906
9851
|
}
|
|
9907
9852
|
export interface WorkorderDiscussionReadStatusDto {
|
|
9908
9853
|
workorderId: string;
|