@ignos/api-client 20260310.73.1 → 20260312.76.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 +1112 -1103
- package/lib/ignosportal-api.js +1813 -1690
- package/package.json +1 -1
- package/src/ignosportal-api.ts +4099 -3973
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -2510,6 +2510,84 @@ export declare class WeldingClient extends AuthorizedApiBase implements IWelding
|
|
|
2510
2510
|
deleteWeldingIotConfig(typeId: string, id: string): Promise<void>;
|
|
2511
2511
|
protected processDeleteWeldingIotConfig(response: Response): Promise<void>;
|
|
2512
2512
|
}
|
|
2513
|
+
export interface IMaterialCertificateChecksClient {
|
|
2514
|
+
listMaterialCertificateChecks(request: ImaMaterialChecksPageRequestDto): Promise<ImaMaterialChecksPageDto>;
|
|
2515
|
+
getMaterialCertificateCheck(id: string): Promise<ImaMaterialCheckDto>;
|
|
2516
|
+
processMaterialCertificate(certificatesRequest: ProcessImaCheckRequestDto): Promise<void>;
|
|
2517
|
+
updateMaterialCertificate(certificatesRequest: ImaUpdateResultRequestDto): Promise<ImaMaterialCheckDto>;
|
|
2518
|
+
}
|
|
2519
|
+
export declare class MaterialCertificateChecksClient extends AuthorizedApiBase implements IMaterialCertificateChecksClient {
|
|
2520
|
+
private http;
|
|
2521
|
+
private baseUrl;
|
|
2522
|
+
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2523
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2524
|
+
});
|
|
2525
|
+
listMaterialCertificateChecks(request: ImaMaterialChecksPageRequestDto): Promise<ImaMaterialChecksPageDto>;
|
|
2526
|
+
protected processListMaterialCertificateChecks(response: Response): Promise<ImaMaterialChecksPageDto>;
|
|
2527
|
+
getMaterialCertificateCheck(id: string): Promise<ImaMaterialCheckDto>;
|
|
2528
|
+
protected processGetMaterialCertificateCheck(response: Response): Promise<ImaMaterialCheckDto>;
|
|
2529
|
+
processMaterialCertificate(certificatesRequest: ProcessImaCheckRequestDto): Promise<void>;
|
|
2530
|
+
protected processProcessMaterialCertificate(response: Response): Promise<void>;
|
|
2531
|
+
updateMaterialCertificate(certificatesRequest: ImaUpdateResultRequestDto): Promise<ImaMaterialCheckDto>;
|
|
2532
|
+
protected processUpdateMaterialCertificate(response: Response): Promise<ImaMaterialCheckDto>;
|
|
2533
|
+
}
|
|
2534
|
+
export interface IMaterialCertificateSpecificationsClient {
|
|
2535
|
+
listSpecifications(): Promise<ImaSpecificationLiteDto[]>;
|
|
2536
|
+
getSpecification(id: string, version: number | null | undefined): Promise<ImaSpecificationDto>;
|
|
2537
|
+
updateSpecifications(id: string, version: number | null | undefined, _: ImaUpdateSpecificationDto): Promise<ImaSpecificationDto>;
|
|
2538
|
+
deleteMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<void>;
|
|
2539
|
+
createSpecifications(createDto: CreateImaSpecificationDto): Promise<ImaSpecificationDto>;
|
|
2540
|
+
}
|
|
2541
|
+
export declare class MaterialCertificateSpecificationsClient extends AuthorizedApiBase implements IMaterialCertificateSpecificationsClient {
|
|
2542
|
+
private http;
|
|
2543
|
+
private baseUrl;
|
|
2544
|
+
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2545
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2546
|
+
});
|
|
2547
|
+
listSpecifications(): Promise<ImaSpecificationLiteDto[]>;
|
|
2548
|
+
protected processListSpecifications(response: Response): Promise<ImaSpecificationLiteDto[]>;
|
|
2549
|
+
getSpecification(id: string, version: number | null | undefined): Promise<ImaSpecificationDto>;
|
|
2550
|
+
protected processGetSpecification(response: Response): Promise<ImaSpecificationDto>;
|
|
2551
|
+
updateSpecifications(id: string, version: number | null | undefined, _: ImaUpdateSpecificationDto): Promise<ImaSpecificationDto>;
|
|
2552
|
+
protected processUpdateSpecifications(response: Response): Promise<ImaSpecificationDto>;
|
|
2553
|
+
deleteMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<void>;
|
|
2554
|
+
protected processDeleteMaterialCertificateTypes(response: Response): Promise<void>;
|
|
2555
|
+
createSpecifications(createDto: CreateImaSpecificationDto): Promise<ImaSpecificationDto>;
|
|
2556
|
+
protected processCreateSpecifications(response: Response): Promise<ImaSpecificationDto>;
|
|
2557
|
+
}
|
|
2558
|
+
export interface IMaterialCertificateTypesClient {
|
|
2559
|
+
listMaterialCertificateTypes(): Promise<ImaCertificateTypeLiteDto[]>;
|
|
2560
|
+
getMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
|
|
2561
|
+
updateMaterialCertificateTypes(id: string, version: number | null | undefined, payload: ImaUpdateImaCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
|
|
2562
|
+
deleteMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<void>;
|
|
2563
|
+
createMaterialCertificateTypes(payload: ImaCreateImaCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
|
|
2564
|
+
copyMaterialCertificateType(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
|
|
2565
|
+
createNewVersionForCertificateType(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
|
|
2566
|
+
releaseMaterialCertificateType(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
|
|
2567
|
+
}
|
|
2568
|
+
export declare class MaterialCertificateTypesClient extends AuthorizedApiBase implements IMaterialCertificateTypesClient {
|
|
2569
|
+
private http;
|
|
2570
|
+
private baseUrl;
|
|
2571
|
+
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
2572
|
+
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2573
|
+
});
|
|
2574
|
+
listMaterialCertificateTypes(): Promise<ImaCertificateTypeLiteDto[]>;
|
|
2575
|
+
protected processListMaterialCertificateTypes(response: Response): Promise<ImaCertificateTypeLiteDto[]>;
|
|
2576
|
+
getMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
|
|
2577
|
+
protected processGetMaterialCertificateTypes(response: Response): Promise<ImaCertificateTypeDto>;
|
|
2578
|
+
updateMaterialCertificateTypes(id: string, version: number | null | undefined, payload: ImaUpdateImaCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
|
|
2579
|
+
protected processUpdateMaterialCertificateTypes(response: Response): Promise<ImaCertificateTypeDto>;
|
|
2580
|
+
deleteMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<void>;
|
|
2581
|
+
protected processDeleteMaterialCertificateTypes(response: Response): Promise<void>;
|
|
2582
|
+
createMaterialCertificateTypes(payload: ImaCreateImaCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
|
|
2583
|
+
protected processCreateMaterialCertificateTypes(response: Response): Promise<ImaCertificateTypeDto>;
|
|
2584
|
+
copyMaterialCertificateType(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
|
|
2585
|
+
protected processCopyMaterialCertificateType(response: Response): Promise<ImaCertificateTypeDto>;
|
|
2586
|
+
createNewVersionForCertificateType(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
|
|
2587
|
+
protected processCreateNewVersionForCertificateType(response: Response): Promise<ImaCertificateTypeDto>;
|
|
2588
|
+
releaseMaterialCertificateType(id: string, version: number | null | undefined): Promise<ImaCertificateTypeDto>;
|
|
2589
|
+
protected processReleaseMaterialCertificateType(response: Response): Promise<ImaCertificateTypeDto>;
|
|
2590
|
+
}
|
|
2513
2591
|
export interface IMeasurementFormSchemasAdminClient {
|
|
2514
2592
|
getArchivedMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
|
|
2515
2593
|
createMeasurementForm(request: CreateMeasurementFormSchema): Promise<MeasurementFormDto>;
|
|
@@ -3210,75 +3288,6 @@ export declare class WorkordersClient extends AuthorizedApiBase implements IWork
|
|
|
3210
3288
|
generateContentPartsForDiscussions(): Promise<WorkorderDiscussionMessageDto[]>;
|
|
3211
3289
|
protected processGenerateContentPartsForDiscussions(response: Response): Promise<WorkorderDiscussionMessageDto[]>;
|
|
3212
3290
|
}
|
|
3213
|
-
export interface IMaterialCertificateChecksClient {
|
|
3214
|
-
listMaterialCertificateChecks(request: AmcMaterialChecksPageRequestDto): Promise<AmcMaterialChecksPageDto>;
|
|
3215
|
-
getMaterialCertificateCheck(id: string): Promise<AmcMaterialCheckDto>;
|
|
3216
|
-
processMaterialCertificate(certificatesRequest: ProcessAmcCheckRequestDto): Promise<void>;
|
|
3217
|
-
updateMaterialCertificate(certificatesRequest: AmcUpdateResultRequestDto): Promise<AmcMaterialCheckDto>;
|
|
3218
|
-
}
|
|
3219
|
-
export declare class MaterialCertificateChecksClient extends AuthorizedApiBase implements IMaterialCertificateChecksClient {
|
|
3220
|
-
private http;
|
|
3221
|
-
private baseUrl;
|
|
3222
|
-
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
3223
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3224
|
-
});
|
|
3225
|
-
listMaterialCertificateChecks(request: AmcMaterialChecksPageRequestDto): Promise<AmcMaterialChecksPageDto>;
|
|
3226
|
-
protected processListMaterialCertificateChecks(response: Response): Promise<AmcMaterialChecksPageDto>;
|
|
3227
|
-
getMaterialCertificateCheck(id: string): Promise<AmcMaterialCheckDto>;
|
|
3228
|
-
protected processGetMaterialCertificateCheck(response: Response): Promise<AmcMaterialCheckDto>;
|
|
3229
|
-
processMaterialCertificate(certificatesRequest: ProcessAmcCheckRequestDto): Promise<void>;
|
|
3230
|
-
protected processProcessMaterialCertificate(response: Response): Promise<void>;
|
|
3231
|
-
updateMaterialCertificate(certificatesRequest: AmcUpdateResultRequestDto): Promise<AmcMaterialCheckDto>;
|
|
3232
|
-
protected processUpdateMaterialCertificate(response: Response): Promise<AmcMaterialCheckDto>;
|
|
3233
|
-
}
|
|
3234
|
-
export interface IMaterialCertificateSpecificationsClient {
|
|
3235
|
-
listSpecifications(): Promise<AmcSpecificationLiteDto[]>;
|
|
3236
|
-
getSpecification(id: string, version: number | null | undefined): Promise<AmcSpecificationDto>;
|
|
3237
|
-
updateSpecifications(id: string, version: number | null | undefined, _: AmcUpdateSpecificationDto): Promise<AmcSpecificationDto>;
|
|
3238
|
-
deleteMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<void>;
|
|
3239
|
-
createSpecifications(createDto: CreateAmcSpecificationDto): Promise<AmcSpecificationDto>;
|
|
3240
|
-
}
|
|
3241
|
-
export declare class MaterialCertificateSpecificationsClient extends AuthorizedApiBase implements IMaterialCertificateSpecificationsClient {
|
|
3242
|
-
private http;
|
|
3243
|
-
private baseUrl;
|
|
3244
|
-
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
3245
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3246
|
-
});
|
|
3247
|
-
listSpecifications(): Promise<AmcSpecificationLiteDto[]>;
|
|
3248
|
-
protected processListSpecifications(response: Response): Promise<AmcSpecificationLiteDto[]>;
|
|
3249
|
-
getSpecification(id: string, version: number | null | undefined): Promise<AmcSpecificationDto>;
|
|
3250
|
-
protected processGetSpecification(response: Response): Promise<AmcSpecificationDto>;
|
|
3251
|
-
updateSpecifications(id: string, version: number | null | undefined, _: AmcUpdateSpecificationDto): Promise<AmcSpecificationDto>;
|
|
3252
|
-
protected processUpdateSpecifications(response: Response): Promise<AmcSpecificationDto>;
|
|
3253
|
-
deleteMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<void>;
|
|
3254
|
-
protected processDeleteMaterialCertificateTypes(response: Response): Promise<void>;
|
|
3255
|
-
createSpecifications(createDto: CreateAmcSpecificationDto): Promise<AmcSpecificationDto>;
|
|
3256
|
-
protected processCreateSpecifications(response: Response): Promise<AmcSpecificationDto>;
|
|
3257
|
-
}
|
|
3258
|
-
export interface IMaterialCertificateTypesClient {
|
|
3259
|
-
listMaterialCertificateTypes(): Promise<AmcCertificateTypeLiteDto[]>;
|
|
3260
|
-
getMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<AmcCertificateTypeDto>;
|
|
3261
|
-
updateMaterialCertificateTypes(id: string, version: number | null | undefined, payload: AmcUpdateAmcCertificateTypeRequestDto): Promise<AmcCertificateTypeDto>;
|
|
3262
|
-
deleteMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<void>;
|
|
3263
|
-
createMaterialCertificateTypes(payload: AmcCreateAmcCertificateTypeRequestDto): Promise<AmcCertificateTypeDto>;
|
|
3264
|
-
}
|
|
3265
|
-
export declare class MaterialCertificateTypesClient extends AuthorizedApiBase implements IMaterialCertificateTypesClient {
|
|
3266
|
-
private http;
|
|
3267
|
-
private baseUrl;
|
|
3268
|
-
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: {
|
|
3269
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
3270
|
-
});
|
|
3271
|
-
listMaterialCertificateTypes(): Promise<AmcCertificateTypeLiteDto[]>;
|
|
3272
|
-
protected processListMaterialCertificateTypes(response: Response): Promise<AmcCertificateTypeLiteDto[]>;
|
|
3273
|
-
getMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<AmcCertificateTypeDto>;
|
|
3274
|
-
protected processGetMaterialCertificateTypes(response: Response): Promise<AmcCertificateTypeDto>;
|
|
3275
|
-
updateMaterialCertificateTypes(id: string, version: number | null | undefined, payload: AmcUpdateAmcCertificateTypeRequestDto): Promise<AmcCertificateTypeDto>;
|
|
3276
|
-
protected processUpdateMaterialCertificateTypes(response: Response): Promise<AmcCertificateTypeDto>;
|
|
3277
|
-
deleteMaterialCertificateTypes(id: string, version: number | null | undefined): Promise<void>;
|
|
3278
|
-
protected processDeleteMaterialCertificateTypes(response: Response): Promise<void>;
|
|
3279
|
-
createMaterialCertificateTypes(payload: AmcCreateAmcCertificateTypeRequestDto): Promise<AmcCertificateTypeDto>;
|
|
3280
|
-
protected processCreateMaterialCertificateTypes(response: Response): Promise<AmcCertificateTypeDto>;
|
|
3281
|
-
}
|
|
3282
3291
|
export interface AzureRegionDto {
|
|
3283
3292
|
displayName: string;
|
|
3284
3293
|
name: string;
|
|
@@ -7401,442 +7410,994 @@ export interface WeldingIotConfigDto {
|
|
|
7401
7410
|
}
|
|
7402
7411
|
export interface CreateWeldingIotConfig {
|
|
7403
7412
|
}
|
|
7404
|
-
export interface
|
|
7405
|
-
|
|
7406
|
-
|
|
7407
|
-
partNumber?: string | null;
|
|
7408
|
-
partRevision?: string | null;
|
|
7409
|
-
partName?: string | null;
|
|
7410
|
-
drawing?: string | null;
|
|
7411
|
-
drawingRevision?: string | null;
|
|
7412
|
-
drawingUrl?: string | null;
|
|
7413
|
-
customerId?: string | null;
|
|
7414
|
-
customerName?: string | null;
|
|
7415
|
-
excludeFromCustomerDocumentation: boolean;
|
|
7416
|
-
excludeDrawingFromCustomerDocumentation: boolean;
|
|
7417
|
-
specification?: string | null;
|
|
7418
|
-
isUsed: boolean;
|
|
7419
|
-
status: MeasurementFormStatus;
|
|
7420
|
-
source: MeasurementFormSource;
|
|
7421
|
-
unitOfMeasure?: UnitOfMeasureDto;
|
|
7422
|
-
dimensionSetting?: DimensionSettingDto;
|
|
7423
|
-
generalTolerance?: GeneralToleranceDto;
|
|
7424
|
-
markedDrawingUrl?: string | null;
|
|
7425
|
-
sourceFileUrl?: string | null;
|
|
7426
|
-
projectFileUrl?: string | null;
|
|
7427
|
-
updatedBy?: string | null;
|
|
7428
|
-
updatedDate?: Date;
|
|
7429
|
-
attachments: MeasurementFormSchemaAttachmentDto[];
|
|
7430
|
-
groupedElements: MeasurementFormGroupedElementDto[];
|
|
7431
|
-
extraSchemas: MeasurementFormLinkedSchemaDto[];
|
|
7432
|
-
}
|
|
7433
|
-
export type MeasurementFormStatus = "Draft" | "Released" | "Revoked";
|
|
7434
|
-
export type MeasurementFormSource = "Unknown" | "InspectionXpert" | "Excel" | "Manual";
|
|
7435
|
-
export type UnitOfMeasureDto = "Millimeter" | "Inch";
|
|
7436
|
-
export type DimensionSettingDto = "Tolerance" | "MinMaxDimension";
|
|
7437
|
-
export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
|
|
7438
|
-
export interface MeasurementFormSchemaAttachmentDto {
|
|
7439
|
-
url: string;
|
|
7440
|
-
title: string;
|
|
7413
|
+
export interface ImaMaterialChecksPageDto {
|
|
7414
|
+
items: ImaMaterialCheckLiteDto[];
|
|
7415
|
+
continuationToken?: string | null;
|
|
7441
7416
|
}
|
|
7442
|
-
export interface
|
|
7443
|
-
|
|
7444
|
-
|
|
7445
|
-
|
|
7446
|
-
|
|
7447
|
-
|
|
7448
|
-
|
|
7449
|
-
|
|
7450
|
-
|
|
7451
|
-
|
|
7452
|
-
|
|
7453
|
-
|
|
7454
|
-
|
|
7455
|
-
|
|
7456
|
-
|
|
7457
|
-
|
|
7458
|
-
|
|
7459
|
-
|
|
7460
|
-
|
|
7461
|
-
|
|
7462
|
-
|
|
7463
|
-
|
|
7464
|
-
|
|
7465
|
-
|
|
7466
|
-
createdDate?: Date;
|
|
7467
|
-
frequency: MeasurementFrequency;
|
|
7468
|
-
frequencyParameter?: number | null;
|
|
7469
|
-
includeInCustomerDocumentation: boolean;
|
|
7470
|
-
isDocumentedExternally: boolean;
|
|
7471
|
-
balloonQuantity?: number | null;
|
|
7472
|
-
referenceQuantity?: number | null;
|
|
7473
|
-
plusToleranceText?: string | null;
|
|
7474
|
-
minusToleranceText?: string | null;
|
|
7475
|
-
coatingThickness?: number | null;
|
|
7476
|
-
canCopy: boolean;
|
|
7477
|
-
valueType?: MeasurementFormValueType;
|
|
7478
|
-
bonusType?: BonusType;
|
|
7479
|
-
lowerWarningThreshold?: number | null;
|
|
7480
|
-
upperWarningThreshold?: number | null;
|
|
7481
|
-
machiningDimension?: number | null;
|
|
7482
|
-
nominalInch?: number | null;
|
|
7483
|
-
isValid: boolean;
|
|
7484
|
-
validationErrorMessage?: string | null;
|
|
7417
|
+
export interface ImaMaterialCheckLiteDto {
|
|
7418
|
+
materialCheckId: string;
|
|
7419
|
+
originalMaterialCertificate: FileDto;
|
|
7420
|
+
generatedMaterialCertificate?: FileDto | null;
|
|
7421
|
+
customer?: string | null;
|
|
7422
|
+
project?: string | null;
|
|
7423
|
+
workOrder?: string | null;
|
|
7424
|
+
certificateTypeId?: string | null;
|
|
7425
|
+
certificateTypeVersion?: number | null;
|
|
7426
|
+
certificateTypeName?: string | null;
|
|
7427
|
+
specificationId: string;
|
|
7428
|
+
specificationVersion: number;
|
|
7429
|
+
specificationName: string;
|
|
7430
|
+
purchaseOrder?: string | null;
|
|
7431
|
+
purchaseOrderLine?: string | null;
|
|
7432
|
+
purchaseOrderItem?: string | null;
|
|
7433
|
+
purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
|
|
7434
|
+
purchaseOrderLot?: string | null;
|
|
7435
|
+
status: ImaMaterialCheckStatus;
|
|
7436
|
+
created: Date;
|
|
7437
|
+
createdBy: string;
|
|
7438
|
+
createdById: string;
|
|
7439
|
+
updatedBy?: string | null;
|
|
7440
|
+
updatedById?: string | null;
|
|
7485
7441
|
}
|
|
7486
|
-
export type
|
|
7487
|
-
export
|
|
7488
|
-
|
|
7489
|
-
|
|
7490
|
-
|
|
7491
|
-
|
|
7492
|
-
|
|
7493
|
-
|
|
7494
|
-
|
|
7495
|
-
|
|
7496
|
-
|
|
7442
|
+
export type ImaMaterialCheckStatus = "WaitingForProcessing" | "Processing" | "Draft" | "Approved" | "Rejected" | "NotSet";
|
|
7443
|
+
export interface ImaMaterialChecksPageRequestDto {
|
|
7444
|
+
pageSize?: number | null;
|
|
7445
|
+
orderBy?: ImaMaterialChecksOrderByColumn | null;
|
|
7446
|
+
searchTerm?: string | null;
|
|
7447
|
+
originalReportFilter?: string | null;
|
|
7448
|
+
generatedReportFilter?: string | null;
|
|
7449
|
+
customerFilter?: string | null;
|
|
7450
|
+
projectFilter?: string | null;
|
|
7451
|
+
purchaseOrderFilter?: string | null;
|
|
7452
|
+
workOrderFilter?: string | null;
|
|
7453
|
+
certificateTypeFilter?: string | null;
|
|
7454
|
+
lineFilter?: string | null;
|
|
7455
|
+
itemFilter?: string | null;
|
|
7456
|
+
heatFilter?: string | null;
|
|
7457
|
+
lotFilter?: string | null;
|
|
7458
|
+
dateFromFilter?: Date | null;
|
|
7459
|
+
dateToFilter?: Date | null;
|
|
7460
|
+
statusFilter: ImaMaterialCheckStatus[];
|
|
7461
|
+
continuationToken?: string | null;
|
|
7497
7462
|
}
|
|
7498
|
-
export
|
|
7499
|
-
|
|
7500
|
-
|
|
7501
|
-
|
|
7502
|
-
|
|
7503
|
-
|
|
7504
|
-
|
|
7505
|
-
|
|
7506
|
-
|
|
7507
|
-
|
|
7508
|
-
|
|
7509
|
-
|
|
7463
|
+
export type ImaMaterialChecksOrderByColumn = "OriginalReport" | "GeneratedReport" | "Customer" | "Project" | "PurchaseOrder" | "WorkOrder" | "CertificateType" | "Line" | "Item" | "Heat" | "Lot" | "Date" | "Status" | "NotSet";
|
|
7464
|
+
export interface ImaMaterialCheckDto {
|
|
7465
|
+
materialCheckId: string;
|
|
7466
|
+
originalMaterialCertificate: FileDto;
|
|
7467
|
+
generatedMaterialCertificate?: FileDto | null;
|
|
7468
|
+
customer?: string | null;
|
|
7469
|
+
project?: string | null;
|
|
7470
|
+
workOrder?: string | null;
|
|
7471
|
+
certificateTypeId?: string | null;
|
|
7472
|
+
certificateTypeVersion?: number | null;
|
|
7473
|
+
certificateTypeName?: string | null;
|
|
7474
|
+
specificationId: string;
|
|
7475
|
+
specificationVersion: number;
|
|
7476
|
+
specificationName: string;
|
|
7477
|
+
purchaseOrder?: string | null;
|
|
7478
|
+
purchaseOrderLine?: string | null;
|
|
7479
|
+
purchaseOrderItem?: string | null;
|
|
7480
|
+
purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
|
|
7481
|
+
purchaseOrderLot?: string | null;
|
|
7482
|
+
status: ImaMaterialCheckStatus;
|
|
7510
7483
|
created: Date;
|
|
7511
|
-
|
|
7512
|
-
|
|
7513
|
-
|
|
7514
|
-
|
|
7515
|
-
|
|
7516
|
-
|
|
7517
|
-
|
|
7518
|
-
|
|
7519
|
-
|
|
7520
|
-
|
|
7521
|
-
|
|
7522
|
-
|
|
7484
|
+
createdBy: string;
|
|
7485
|
+
createdById: string;
|
|
7486
|
+
updatedBy?: string | null;
|
|
7487
|
+
updatedById?: string | null;
|
|
7488
|
+
certificateTypeResults: ImaCertificateTypeResultsDto;
|
|
7489
|
+
specificationChemistry: ImaSpecificationChemistryResultsDto;
|
|
7490
|
+
specificationMechanical: ImaSpecificationMechanicalResultsDto;
|
|
7491
|
+
specificationFerrite: ImaSpecificationFerriteResultsDto;
|
|
7492
|
+
specificationHeat: ImaSpecificationHeatTreatmentResultsDto;
|
|
7493
|
+
}
|
|
7494
|
+
export interface ImaCertificateTypeResultsDto {
|
|
7495
|
+
manufacturer: ImaCertificateTypeManufacturerResultsDto;
|
|
7496
|
+
signature: ImaCertificateTypeSignatureResultsDto;
|
|
7497
|
+
thirdParty: ImaCertificateTypeThirdPartyResultsDto;
|
|
7498
|
+
certification: ImaCertificateTypeCertificationResultsDto;
|
|
7499
|
+
productAndOrderInformation: ImaCertificateTypeProductAndOrderInformationResultsDto;
|
|
7500
|
+
testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesResultsDto;
|
|
7501
|
+
testResults: ImaCertificateTypeTestResultsResultsDto;
|
|
7502
|
+
documentTypes: ImaCertificateTypeDocumentTypesResultsDto;
|
|
7503
|
+
}
|
|
7504
|
+
export interface ImaCertificateTypeManufacturerResultsDto {
|
|
7505
|
+
manufacturer?: ImaCertificateTypeResultLine | null;
|
|
7506
|
+
address?: ImaCertificateTypeResultLine | null;
|
|
7507
|
+
contact?: ImaCertificateTypeResultLine | null;
|
|
7508
|
+
}
|
|
7509
|
+
export interface ImaCertificateTypeResultLine {
|
|
7510
|
+
found?: boolean;
|
|
7511
|
+
readValue?: string | null;
|
|
7512
|
+
override?: ImaResultLineOverrideDto | null;
|
|
7523
7513
|
}
|
|
7524
|
-
export interface
|
|
7525
|
-
|
|
7526
|
-
|
|
7527
|
-
|
|
7514
|
+
export interface ImaResultLineOverrideDto {
|
|
7515
|
+
approved: boolean;
|
|
7516
|
+
comment?: string | null;
|
|
7517
|
+
updated: Date;
|
|
7518
|
+
updatedBy: string;
|
|
7519
|
+
updatedById: string;
|
|
7528
7520
|
}
|
|
7529
|
-
export interface
|
|
7530
|
-
|
|
7531
|
-
|
|
7532
|
-
|
|
7533
|
-
|
|
7534
|
-
|
|
7535
|
-
|
|
7536
|
-
|
|
7537
|
-
|
|
7538
|
-
|
|
7539
|
-
|
|
7540
|
-
|
|
7541
|
-
|
|
7542
|
-
|
|
7521
|
+
export interface ImaCertificateTypeSignatureResultsDto {
|
|
7522
|
+
certifiedBy?: ImaCertificateTypeResultLine | null;
|
|
7523
|
+
position?: ImaCertificateTypeResultLine | null;
|
|
7524
|
+
signature?: ImaCertificateTypeResultLine | null;
|
|
7525
|
+
date?: ImaCertificateTypeResultLine | null;
|
|
7526
|
+
stamp?: ImaCertificateTypeResultLine | null;
|
|
7527
|
+
}
|
|
7528
|
+
export interface ImaCertificateTypeThirdPartyResultsDto {
|
|
7529
|
+
inspectionBody?: ImaCertificateTypeResultLine | null;
|
|
7530
|
+
inspectorName?: ImaCertificateTypeResultLine | null;
|
|
7531
|
+
position?: ImaCertificateTypeResultLine | null;
|
|
7532
|
+
verificationMethod?: ImaCertificateTypeResultLine | null;
|
|
7533
|
+
signature?: ImaCertificateTypeResultLine | null;
|
|
7534
|
+
date?: ImaCertificateTypeResultLine | null;
|
|
7535
|
+
stamp?: ImaCertificateTypeResultLine | null;
|
|
7536
|
+
}
|
|
7537
|
+
export interface ImaCertificateTypeCertificationResultsDto {
|
|
7538
|
+
certificateOfCompliance?: ImaCertificateTypeResultLine | null;
|
|
7539
|
+
inspectionCertificate?: ImaCertificateTypeResultLine | null;
|
|
7540
|
+
}
|
|
7541
|
+
export interface ImaCertificateTypeProductAndOrderInformationResultsDto {
|
|
7542
|
+
productDescription?: ImaCertificateTypeResultLine | null;
|
|
7543
|
+
materialGrade?: ImaCertificateTypeResultLine | null;
|
|
7544
|
+
customer?: ImaCertificateTypeResultLine | null;
|
|
7545
|
+
customerOrderNumber?: ImaCertificateTypeResultLine | null;
|
|
7546
|
+
dimensionsOrWeight?: ImaCertificateTypeResultLine | null;
|
|
7547
|
+
batchNumber?: ImaCertificateTypeResultLine | null;
|
|
7548
|
+
heatNumber?: ImaCertificateTypeResultLine | null;
|
|
7549
|
+
relatedStandards?: ImaCertificateTypeResultLine | null;
|
|
7550
|
+
}
|
|
7551
|
+
export interface ImaCertificateTypeTestMethodsAndReferencesResultsDto {
|
|
7552
|
+
usedStandards?: ImaCertificateTypeResultLine | null;
|
|
7553
|
+
}
|
|
7554
|
+
export interface ImaCertificateTypeTestResultsResultsDto {
|
|
7555
|
+
mechanicalProperties?: ImaCertificateTypeResultLine | null;
|
|
7556
|
+
chemicalAnalysis?: ImaCertificateTypeResultLine | null;
|
|
7557
|
+
impactTests?: ImaCertificateTypeResultLine | null;
|
|
7558
|
+
corrosionTests?: ImaCertificateTypeResultLine | null;
|
|
7559
|
+
ferriteContentAndMicrostructure?: ImaCertificateTypeResultLine | null;
|
|
7560
|
+
}
|
|
7561
|
+
export interface ImaCertificateTypeDocumentTypesResultsDto {
|
|
7562
|
+
heatTreatmentCertificate?: ImaCertificateTypeResultLine | null;
|
|
7563
|
+
ultrasonicControlCertificate?: ImaCertificateTypeResultLine | null;
|
|
7564
|
+
liquidPenetrantCertificate?: ImaCertificateTypeResultLine | null;
|
|
7565
|
+
testReport?: ImaCertificateTypeResultLine | null;
|
|
7566
|
+
dimensionalReport?: ImaCertificateTypeResultLine | null;
|
|
7567
|
+
dyePenetrantReport?: ImaCertificateTypeResultLine | null;
|
|
7568
|
+
visualReport?: ImaCertificateTypeResultLine | null;
|
|
7569
|
+
certificateOfAnalyticalAndMechanicalTests?: ImaCertificateTypeResultLine | null;
|
|
7570
|
+
certificateOfTest?: ImaCertificateTypeResultLine | null;
|
|
7571
|
+
technicalReport?: ImaCertificateTypeResultLine | null;
|
|
7572
|
+
microExaminationReport?: ImaCertificateTypeResultLine | null;
|
|
7573
|
+
radiologicalReport?: ImaCertificateTypeResultLine | null;
|
|
7574
|
+
}
|
|
7575
|
+
export interface ImaSpecificationChemistryResultsDto {
|
|
7576
|
+
carbon?: ImaSpecificationResultLineDto | null;
|
|
7577
|
+
manganese?: ImaSpecificationResultLineDto | null;
|
|
7578
|
+
silicon?: ImaSpecificationResultLineDto | null;
|
|
7579
|
+
phosphorus?: ImaSpecificationResultLineDto | null;
|
|
7580
|
+
sulfur?: ImaSpecificationResultLineDto | null;
|
|
7581
|
+
chromium?: ImaSpecificationResultLineDto | null;
|
|
7582
|
+
nickel?: ImaSpecificationResultLineDto | null;
|
|
7583
|
+
molybdenum?: ImaSpecificationResultLineDto | null;
|
|
7584
|
+
copper?: ImaSpecificationResultLineDto | null;
|
|
7585
|
+
nitrogen?: ImaSpecificationResultLineDto | null;
|
|
7586
|
+
wolfram?: ImaSpecificationResultLineDto | null;
|
|
7587
|
+
iron?: ImaSpecificationResultLineDto | null;
|
|
7588
|
+
}
|
|
7589
|
+
export interface ImaSpecificationResultLineDto {
|
|
7590
|
+
specificationOperator?: string | null;
|
|
7591
|
+
specificationValue1?: number | null;
|
|
7592
|
+
specificationValue2?: number | null;
|
|
7593
|
+
specificationSymbol?: string | null;
|
|
7594
|
+
readValue?: string | null;
|
|
7595
|
+
status: ImaSpecificationResultLineStatus;
|
|
7596
|
+
override?: ImaResultLineOverrideDto | null;
|
|
7597
|
+
}
|
|
7598
|
+
export type ImaSpecificationResultLineStatus = "NotFound" | "NotOk" | "Ok" | "NotSet";
|
|
7599
|
+
export interface ImaSpecificationMechanicalResultsDto {
|
|
7600
|
+
yieldStrength?: ImaSpecificationResultLineDto | null;
|
|
7601
|
+
tensileStrength?: ImaSpecificationResultLineDto | null;
|
|
7602
|
+
elongation?: ImaSpecificationResultLineDto | null;
|
|
7603
|
+
reductionOfArea?: ImaSpecificationResultLineDto | null;
|
|
7604
|
+
impactEnergy?: ImaSpecificationResultLineDto | null;
|
|
7605
|
+
hardness?: ImaSpecificationResultLineDto | null;
|
|
7606
|
+
}
|
|
7607
|
+
export interface ImaSpecificationFerriteResultsDto {
|
|
7608
|
+
ferriteContent?: ImaSpecificationFerriteResultLineDto | null;
|
|
7609
|
+
}
|
|
7610
|
+
export interface ImaSpecificationFerriteResultLineDto {
|
|
7611
|
+
specificationOperator?: string | null;
|
|
7612
|
+
specificationValue1?: string | null;
|
|
7613
|
+
specificationValue2?: string | null;
|
|
7614
|
+
specificationSymbol?: string | null;
|
|
7615
|
+
readValue?: string | null;
|
|
7616
|
+
status: ImaSpecificationResultLineStatus;
|
|
7617
|
+
override?: ImaResultLineOverrideDto | null;
|
|
7618
|
+
measurementMethod?: string | null;
|
|
7543
7619
|
}
|
|
7544
|
-
export interface
|
|
7545
|
-
|
|
7546
|
-
reference: number;
|
|
7547
|
-
frequency: MeasurementFrequency;
|
|
7548
|
-
frequencyParameter?: number | null;
|
|
7549
|
-
includeInCustomerDocumentation: boolean;
|
|
7550
|
-
canCopy?: boolean | null;
|
|
7551
|
-
isDocumentedExternally: boolean;
|
|
7552
|
-
coatingThickness?: number | null;
|
|
7620
|
+
export interface ImaSpecificationHeatTreatmentResultsDto {
|
|
7621
|
+
heatTreatments: ImaSpecificationHeatTreatmentsResultLineDto[];
|
|
7553
7622
|
}
|
|
7554
|
-
export interface
|
|
7555
|
-
|
|
7556
|
-
|
|
7557
|
-
|
|
7558
|
-
|
|
7559
|
-
|
|
7560
|
-
|
|
7561
|
-
|
|
7562
|
-
|
|
7563
|
-
|
|
7564
|
-
|
|
7565
|
-
|
|
7566
|
-
|
|
7567
|
-
|
|
7568
|
-
lowerLimit?: string | null;
|
|
7569
|
-
coatingThickness?: number | null;
|
|
7570
|
-
comments?: string | null;
|
|
7571
|
-
frequency: MeasurementFrequency;
|
|
7572
|
-
frequencyParameter?: number | null;
|
|
7573
|
-
includeInCustomerDocumentation: boolean;
|
|
7574
|
-
canCopy?: boolean | null;
|
|
7575
|
-
isDocumentedExternally: boolean;
|
|
7623
|
+
export interface ImaSpecificationHeatTreatmentsResultLineDto {
|
|
7624
|
+
heatingMethod: ImaHeatingTreatmentMethod;
|
|
7625
|
+
specificationHeatingTreatmentTemperature?: number | null;
|
|
7626
|
+
specificationHeatingHoldingTime?: number | null;
|
|
7627
|
+
heatingTreatmentTemperature?: number | null;
|
|
7628
|
+
heatingHoldingTime?: number | null;
|
|
7629
|
+
specificationCoolingMethods?: ImaCoolingTreatmentMethod[] | null;
|
|
7630
|
+
specificationCoolingTreatmentTemperature?: number | null;
|
|
7631
|
+
specificationCoolingHoldingTime?: number | null;
|
|
7632
|
+
coolingMethod?: ImaCoolingTreatmentMethod | null;
|
|
7633
|
+
coolingTreatmentTemperature?: number | null;
|
|
7634
|
+
coolingHoldingTime?: number | null;
|
|
7635
|
+
status: ImaSpecificationResultLineStatus;
|
|
7636
|
+
override?: ImaResultLineOverrideDto | null;
|
|
7576
7637
|
}
|
|
7577
|
-
export
|
|
7578
|
-
|
|
7579
|
-
|
|
7638
|
+
export type ImaHeatingTreatmentMethod = "Annealing" | "Normalizing" | "Quenching" | "Tempering" | "StressRelieving" | "SolutionTreating" | "Aging" | "Austempering" | "Martempering" | "NotSet";
|
|
7639
|
+
export type ImaCoolingTreatmentMethod = "AirCooling" | "OilQuenching" | "WaterQuenching" | "FurnaceCooling" | "AirBlastCooling" | "PolymerQuenching" | "NotSet";
|
|
7640
|
+
export interface ProcessImaCheckRequestDto {
|
|
7641
|
+
files: UploadFileDto[];
|
|
7642
|
+
specificationId: string;
|
|
7643
|
+
specificationVersion: string;
|
|
7644
|
+
certificateTypeId?: string | null;
|
|
7645
|
+
certificateTypeVersion?: string | null;
|
|
7646
|
+
purchaseOrder?: string | null;
|
|
7580
7647
|
}
|
|
7581
|
-
export interface
|
|
7582
|
-
|
|
7583
|
-
|
|
7584
|
-
|
|
7585
|
-
|
|
7648
|
+
export interface ImaUpdateResultRequestDto {
|
|
7649
|
+
certificateId: string;
|
|
7650
|
+
project?: string | null;
|
|
7651
|
+
purchaseOrder?: string | null;
|
|
7652
|
+
workOrder?: string | null;
|
|
7653
|
+
certificateTypeSection: ImaUpdateCertificateTypeResultsDto;
|
|
7654
|
+
specificationChemistrySpecification: ImaUpdateSpecificationChemistryResultsDto;
|
|
7655
|
+
specificationMechanicalSpecification: ImaUpdateSpecificationMechanicalResultsDto;
|
|
7656
|
+
specificationFerriteSpecification: ImaUpdateSpecificationFerriteResultsDto;
|
|
7657
|
+
specificationHeatSpecification: ImaUpdateSpecificationHeatTreatmentResultsDto;
|
|
7658
|
+
}
|
|
7659
|
+
export interface ImaUpdateCertificateTypeResultsDto {
|
|
7660
|
+
manufacturer: ImaUpdateCertificateTypeManufacturerResultsDto;
|
|
7661
|
+
signature: ImaUpdateCertificateTypeSignatureResultsDto;
|
|
7662
|
+
thirdParty: ImaUpdateCertificateTypeThirdPartyResultsDto;
|
|
7663
|
+
certification: ImaUpdateCertificateTypeCertificationResultsDto;
|
|
7664
|
+
certificateTypeProductAndOrderInformation: ImaUpdateCertificateTypeProductAndOrderInformationResultsDto;
|
|
7665
|
+
testMethodsAndReferences: ImaUpdateCertificateTypeTestMethodsAndReferencesResultsDto;
|
|
7666
|
+
testResults: ImaUpdateCertificateTypeTestResultsResultsDto;
|
|
7667
|
+
documentTypes: ImaUpdateCertificateTypeDocumentTypesResultsDto;
|
|
7668
|
+
}
|
|
7669
|
+
export interface ImaUpdateCertificateTypeManufacturerResultsDto {
|
|
7670
|
+
manufacturer?: ImaUpdateCertificateTypeResultLine | null;
|
|
7671
|
+
address?: ImaUpdateCertificateTypeResultLine | null;
|
|
7672
|
+
contact?: ImaUpdateCertificateTypeResultLine | null;
|
|
7673
|
+
}
|
|
7674
|
+
export interface ImaUpdateCertificateTypeResultLine {
|
|
7675
|
+
approved?: boolean | null;
|
|
7676
|
+
comment?: string | null;
|
|
7586
7677
|
}
|
|
7587
|
-
export interface
|
|
7588
|
-
|
|
7589
|
-
|
|
7590
|
-
|
|
7678
|
+
export interface ImaUpdateCertificateTypeSignatureResultsDto {
|
|
7679
|
+
certifiedBy?: ImaUpdateCertificateTypeResultLine | null;
|
|
7680
|
+
position?: ImaUpdateCertificateTypeResultLine | null;
|
|
7681
|
+
signature?: ImaUpdateCertificateTypeResultLine | null;
|
|
7682
|
+
date?: ImaUpdateCertificateTypeResultLine | null;
|
|
7683
|
+
stamp?: ImaUpdateCertificateTypeResultLine | null;
|
|
7684
|
+
}
|
|
7685
|
+
export interface ImaUpdateCertificateTypeThirdPartyResultsDto {
|
|
7686
|
+
inspectionBody?: ImaUpdateCertificateTypeResultLine | null;
|
|
7687
|
+
inspectorName?: ImaUpdateCertificateTypeResultLine | null;
|
|
7688
|
+
position?: ImaUpdateCertificateTypeResultLine | null;
|
|
7689
|
+
verificationMethod?: ImaUpdateCertificateTypeResultLine | null;
|
|
7690
|
+
signature?: ImaUpdateCertificateTypeResultLine | null;
|
|
7691
|
+
date?: ImaUpdateCertificateTypeResultLine | null;
|
|
7692
|
+
stamp?: ImaUpdateCertificateTypeResultLine | null;
|
|
7693
|
+
}
|
|
7694
|
+
export interface ImaUpdateCertificateTypeCertificationResultsDto {
|
|
7695
|
+
certificateOfCompliance?: ImaUpdateCertificateTypeResultLine | null;
|
|
7696
|
+
inspectionCertificate?: ImaUpdateCertificateTypeResultLine | null;
|
|
7697
|
+
}
|
|
7698
|
+
export interface ImaUpdateCertificateTypeProductAndOrderInformationResultsDto {
|
|
7699
|
+
productDescription?: ImaUpdateCertificateTypeResultLine | null;
|
|
7700
|
+
materialGrade?: ImaUpdateCertificateTypeResultLine | null;
|
|
7701
|
+
customer?: ImaUpdateCertificateTypeResultLine | null;
|
|
7702
|
+
customerOrderNumber?: ImaUpdateCertificateTypeResultLine | null;
|
|
7703
|
+
dimensionsOrWeight?: ImaUpdateCertificateTypeResultLine | null;
|
|
7704
|
+
batchNumber?: ImaUpdateCertificateTypeResultLine | null;
|
|
7705
|
+
heatNumber?: ImaUpdateCertificateTypeResultLine | null;
|
|
7706
|
+
relatedStandards?: ImaUpdateCertificateTypeResultLine | null;
|
|
7707
|
+
}
|
|
7708
|
+
export interface ImaUpdateCertificateTypeTestMethodsAndReferencesResultsDto {
|
|
7709
|
+
usedStandards?: ImaUpdateCertificateTypeResultLine | null;
|
|
7710
|
+
}
|
|
7711
|
+
export interface ImaUpdateCertificateTypeTestResultsResultsDto {
|
|
7712
|
+
mechanicalProperties?: ImaUpdateCertificateTypeResultLine | null;
|
|
7713
|
+
chemicalAnalysis?: ImaUpdateCertificateTypeResultLine | null;
|
|
7714
|
+
impactTests?: ImaUpdateCertificateTypeResultLine | null;
|
|
7715
|
+
corrosionTests?: ImaUpdateCertificateTypeResultLine | null;
|
|
7716
|
+
ferriteContentAndMicrostructure?: ImaUpdateCertificateTypeResultLine | null;
|
|
7717
|
+
}
|
|
7718
|
+
export interface ImaUpdateCertificateTypeDocumentTypesResultsDto {
|
|
7719
|
+
heatTreatmentCertificate?: ImaUpdateCertificateTypeResultLine | null;
|
|
7720
|
+
ultrasonicControlCertificate?: ImaUpdateCertificateTypeResultLine | null;
|
|
7721
|
+
liquidPenetrantCertificate?: ImaUpdateCertificateTypeResultLine | null;
|
|
7722
|
+
testReport?: ImaUpdateCertificateTypeResultLine | null;
|
|
7723
|
+
dimensionalReport?: ImaUpdateCertificateTypeResultLine | null;
|
|
7724
|
+
dyePenetrantReport?: ImaUpdateCertificateTypeResultLine | null;
|
|
7725
|
+
visualReport?: ImaUpdateCertificateTypeResultLine | null;
|
|
7726
|
+
certificateOfAnalyticalAndMechanicalTests?: ImaUpdateCertificateTypeResultLine | null;
|
|
7727
|
+
certificateOfTest?: ImaUpdateCertificateTypeResultLine | null;
|
|
7728
|
+
technicalReport?: ImaUpdateCertificateTypeResultLine | null;
|
|
7729
|
+
microExaminationReport?: ImaUpdateCertificateTypeResultLine | null;
|
|
7730
|
+
radiologicalReport?: ImaUpdateCertificateTypeResultLine | null;
|
|
7731
|
+
}
|
|
7732
|
+
export interface ImaUpdateSpecificationChemistryResultsDto {
|
|
7733
|
+
carbon?: ImaUpdateSpecificationResultLineDto | null;
|
|
7734
|
+
manganese?: ImaUpdateSpecificationResultLineDto | null;
|
|
7735
|
+
silicon?: ImaUpdateSpecificationResultLineDto | null;
|
|
7736
|
+
phosphorus?: ImaUpdateSpecificationResultLineDto | null;
|
|
7737
|
+
sulfur?: ImaUpdateSpecificationResultLineDto | null;
|
|
7738
|
+
chromium?: ImaUpdateSpecificationResultLineDto | null;
|
|
7739
|
+
nickel?: ImaUpdateSpecificationResultLineDto | null;
|
|
7740
|
+
molybdenum?: ImaUpdateSpecificationResultLineDto | null;
|
|
7741
|
+
copper?: ImaUpdateSpecificationResultLineDto | null;
|
|
7742
|
+
nitrogen?: ImaUpdateSpecificationResultLineDto | null;
|
|
7743
|
+
wolfram?: ImaUpdateSpecificationResultLineDto | null;
|
|
7744
|
+
iron?: ImaUpdateSpecificationResultLineDto | null;
|
|
7745
|
+
}
|
|
7746
|
+
export interface ImaUpdateSpecificationResultLineDto {
|
|
7747
|
+
approved?: boolean;
|
|
7748
|
+
comment?: string | null;
|
|
7591
7749
|
}
|
|
7592
|
-
export interface
|
|
7593
|
-
|
|
7594
|
-
|
|
7750
|
+
export interface ImaUpdateSpecificationMechanicalResultsDto {
|
|
7751
|
+
yieldStrength?: ImaUpdateSpecificationResultLineDto | null;
|
|
7752
|
+
tensileStrength?: ImaUpdateSpecificationResultLineDto | null;
|
|
7753
|
+
elongation?: ImaUpdateSpecificationResultLineDto | null;
|
|
7754
|
+
reductionOfArea?: ImaUpdateSpecificationResultLineDto | null;
|
|
7755
|
+
impactEnergy?: ImaUpdateSpecificationResultLineDto | null;
|
|
7756
|
+
hardness?: ImaUpdateSpecificationResultLineDto | null;
|
|
7595
7757
|
}
|
|
7596
|
-
export interface
|
|
7597
|
-
|
|
7598
|
-
filename: string;
|
|
7758
|
+
export interface ImaUpdateSpecificationFerriteResultsDto {
|
|
7759
|
+
ferriteContent?: ImaUpdateSpecificationResultLineDto | null;
|
|
7599
7760
|
}
|
|
7600
|
-
export interface
|
|
7601
|
-
|
|
7602
|
-
totalElements: number;
|
|
7603
|
-
errorMessage: string;
|
|
7604
|
-
timestamp: Date;
|
|
7761
|
+
export interface ImaUpdateSpecificationHeatTreatmentResultsDto {
|
|
7762
|
+
heatTreatmentOverrides: (ImaUpdateSpecificationResultLineDto | null)[];
|
|
7605
7763
|
}
|
|
7606
|
-
export interface
|
|
7607
|
-
results: MeasurementFormListDto[];
|
|
7608
|
-
continuationToken?: string | null;
|
|
7764
|
+
export interface ImaCdfEntityReadBase {
|
|
7609
7765
|
}
|
|
7610
|
-
export interface
|
|
7611
|
-
|
|
7612
|
-
|
|
7613
|
-
|
|
7614
|
-
|
|
7615
|
-
|
|
7616
|
-
|
|
7617
|
-
|
|
7618
|
-
|
|
7619
|
-
|
|
7620
|
-
drawingRevision?: string | null;
|
|
7621
|
-
createdBy: string;
|
|
7766
|
+
export interface ImaSpecificationLiteDto extends ImaCdfEntityReadBase {
|
|
7767
|
+
specificationId: string;
|
|
7768
|
+
version: number;
|
|
7769
|
+
name: string;
|
|
7770
|
+
number: string;
|
|
7771
|
+
revision: string;
|
|
7772
|
+
date: Date;
|
|
7773
|
+
status: ImaSpecificationStatus;
|
|
7774
|
+
summary?: string | null;
|
|
7775
|
+
relatedStandards: string[];
|
|
7622
7776
|
created: Date;
|
|
7623
|
-
|
|
7624
|
-
|
|
7777
|
+
createdBy: string;
|
|
7778
|
+
createdById: string;
|
|
7779
|
+
updatedBy: string;
|
|
7780
|
+
updatedById: string;
|
|
7625
7781
|
}
|
|
7626
|
-
export
|
|
7627
|
-
|
|
7628
|
-
|
|
7629
|
-
|
|
7630
|
-
|
|
7782
|
+
export type ImaSpecificationStatus = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
|
|
7783
|
+
export interface ImaSpecificationDto extends ImaCdfEntityReadBase {
|
|
7784
|
+
specificationId: string;
|
|
7785
|
+
version: number;
|
|
7786
|
+
allVersions: ImaSpecificationVersionDto[];
|
|
7787
|
+
name: string;
|
|
7788
|
+
number: string;
|
|
7789
|
+
revision: string;
|
|
7790
|
+
date: Date;
|
|
7791
|
+
status: ImaSpecificationStatus;
|
|
7792
|
+
summary?: string | null;
|
|
7793
|
+
relatedStandards: string[];
|
|
7794
|
+
created: Date;
|
|
7795
|
+
createdBy: string;
|
|
7796
|
+
createdById: string;
|
|
7797
|
+
updatedBy: string;
|
|
7798
|
+
updatedById: string;
|
|
7799
|
+
updated: Date;
|
|
7800
|
+
chemistrySpecification: ImaChemistrySpecificationDto;
|
|
7801
|
+
mechanicalSpecification: ImaMechanicalSpecificationDto;
|
|
7802
|
+
ferriteSpecification: ImaFerriteSpecificationDto;
|
|
7803
|
+
heatSpecification: ImaHeatTreatmentSpecificationDto;
|
|
7631
7804
|
}
|
|
7632
|
-
export interface
|
|
7633
|
-
|
|
7805
|
+
export interface ImaSpecificationVersionDto {
|
|
7806
|
+
version?: number;
|
|
7807
|
+
status?: ImaSpecificationStatus;
|
|
7808
|
+
}
|
|
7809
|
+
export interface ImaChemistrySpecificationDto extends ImaCdfEntityReadBase {
|
|
7810
|
+
carbon?: ImaSpecificationLineDto | null;
|
|
7811
|
+
manganese?: ImaSpecificationLineDto | null;
|
|
7812
|
+
silicon?: ImaSpecificationLineDto | null;
|
|
7813
|
+
phosphorus?: ImaSpecificationLineDto | null;
|
|
7814
|
+
sulfur?: ImaSpecificationLineDto | null;
|
|
7815
|
+
chromium?: ImaSpecificationLineDto | null;
|
|
7816
|
+
nickel?: ImaSpecificationLineDto | null;
|
|
7817
|
+
molybdenum?: ImaSpecificationLineDto | null;
|
|
7818
|
+
copper?: ImaSpecificationLineDto | null;
|
|
7819
|
+
nitrogen?: ImaSpecificationLineDto | null;
|
|
7820
|
+
wolfram?: ImaSpecificationLineDto | null;
|
|
7821
|
+
iron?: ImaSpecificationLineDto | null;
|
|
7822
|
+
}
|
|
7823
|
+
export interface ImaSpecificationLineDto extends ImaCdfEntityReadBase {
|
|
7824
|
+
operator: ImaSpecificationOperator;
|
|
7825
|
+
value1: number;
|
|
7826
|
+
value2?: number | null;
|
|
7827
|
+
symbol: ImaSpecificationSymbol;
|
|
7828
|
+
}
|
|
7829
|
+
export type ImaSpecificationOperator = "Equal" | "GreaterThan" | "LessThan" | "GreaterThanOrEqual" | "LessThanOrEqual" | "Min" | "Max" | "Between" | "NotSet";
|
|
7830
|
+
export type ImaSpecificationSymbol = "Percentage" | "Joule" | "Celsius" | "Farenheit" | "Mpa" | "Hbw" | "NotSet";
|
|
7831
|
+
export interface ImaMechanicalSpecificationDto extends ImaCdfEntityReadBase {
|
|
7832
|
+
yieldStrength?: ImaSpecificationLineDto | null;
|
|
7833
|
+
tensileStrength?: ImaSpecificationLineDto | null;
|
|
7834
|
+
elongation?: ImaSpecificationLineDto | null;
|
|
7835
|
+
reductionOfArea?: ImaSpecificationLineDto | null;
|
|
7836
|
+
impactEnergy?: ImaSpecificationLineDto | null;
|
|
7837
|
+
hardness?: ImaSpecificationLineDto | null;
|
|
7838
|
+
}
|
|
7839
|
+
export interface ImaFerriteSpecificationDto extends ImaCdfEntityReadBase {
|
|
7840
|
+
ferriteContent?: ImaSpecificationLineDto | null;
|
|
7841
|
+
}
|
|
7842
|
+
export interface ImaHeatTreatmentSpecificationDto {
|
|
7843
|
+
heatTreatments: ImaHeatTreatmentsSpecificationDto[];
|
|
7844
|
+
}
|
|
7845
|
+
export interface ImaHeatTreatmentsSpecificationDto {
|
|
7846
|
+
heatingMethod: ImaHeatingTreatmentMethod;
|
|
7847
|
+
heatingTreatmentTemperature?: number | null;
|
|
7848
|
+
heatingHoldingTime?: number | null;
|
|
7849
|
+
coolingMethods?: ImaCoolingTreatmentMethod[] | null;
|
|
7850
|
+
coolingTreatmentTemperature?: number | null;
|
|
7851
|
+
coolingHoldingTime?: number | null;
|
|
7634
7852
|
}
|
|
7635
|
-
export interface
|
|
7636
|
-
|
|
7637
|
-
|
|
7638
|
-
|
|
7639
|
-
|
|
7640
|
-
|
|
7641
|
-
generateSchemaInstances: boolean;
|
|
7642
|
-
autoCompleteSchemaInstances: boolean;
|
|
7643
|
-
autoApproveSchemaInstances: boolean;
|
|
7644
|
-
generateReportForApprovedInstances: boolean;
|
|
7645
|
-
includeMeasuringToolsInReportAsDefault: boolean;
|
|
7646
|
-
requireCustomerOnWorkOrders: boolean;
|
|
7647
|
-
allowSchemaUpdates: boolean;
|
|
7648
|
-
allowCreateInstances: boolean;
|
|
7649
|
-
resourceTypesBlockingAutoWorkflow?: string[] | null;
|
|
7853
|
+
export interface CreateImaSpecificationDto {
|
|
7854
|
+
specificationName: string;
|
|
7855
|
+
specificationNumber: string;
|
|
7856
|
+
revision: string;
|
|
7857
|
+
date: Date;
|
|
7858
|
+
specificationFile?: UploadFileDto | null;
|
|
7650
7859
|
}
|
|
7651
|
-
export interface
|
|
7652
|
-
|
|
7653
|
-
|
|
7654
|
-
|
|
7655
|
-
|
|
7656
|
-
|
|
7657
|
-
|
|
7658
|
-
|
|
7659
|
-
|
|
7660
|
-
|
|
7661
|
-
includeMeasuringToolsInReportAsDefault: boolean;
|
|
7662
|
-
requireCustomerOnWorkOrders: boolean;
|
|
7663
|
-
allowSchemaUpdates: boolean;
|
|
7664
|
-
allowCreateInstances: boolean;
|
|
7665
|
-
resourceTypesBlockingAutoWorkflow: string[];
|
|
7860
|
+
export interface ImaUpdateSpecificationDto {
|
|
7861
|
+
name?: string | null;
|
|
7862
|
+
number?: string | null;
|
|
7863
|
+
status?: ImaSpecificationStatusUpdate | null;
|
|
7864
|
+
summary?: string | null;
|
|
7865
|
+
relatedStandards?: string[] | null;
|
|
7866
|
+
chemistrySpecification?: ImaChemistrySpecificationDto | null;
|
|
7867
|
+
mechanicalSpecification?: ImaMechanicalSpecificationDto | null;
|
|
7868
|
+
ferriteSpecification?: ImaFerriteSpecificationDto | null;
|
|
7869
|
+
heatSpecification?: ImaHeatTreatmentSpecificationDto | null;
|
|
7666
7870
|
}
|
|
7667
|
-
export
|
|
7668
|
-
|
|
7669
|
-
|
|
7670
|
-
|
|
7671
|
-
|
|
7672
|
-
|
|
7673
|
-
|
|
7871
|
+
export type ImaSpecificationStatusUpdate = "NotModified" | "Released" | "Obsolete";
|
|
7872
|
+
export interface ImaCertificateTypeLiteDto extends ImaCdfEntityReadBase {
|
|
7873
|
+
certificateTypeId: string;
|
|
7874
|
+
version: number;
|
|
7875
|
+
name: string;
|
|
7876
|
+
revision: string;
|
|
7877
|
+
status: ImaCertificateTypeStatus;
|
|
7878
|
+
description?: string | null;
|
|
7879
|
+
isStandardCertificateType: boolean;
|
|
7880
|
+
created: Date;
|
|
7881
|
+
createdBy: string;
|
|
7882
|
+
createdById: string;
|
|
7883
|
+
updatedBy?: string | null;
|
|
7884
|
+
updatedById?: string | null;
|
|
7885
|
+
updated: Date;
|
|
7674
7886
|
}
|
|
7675
|
-
export
|
|
7676
|
-
|
|
7677
|
-
|
|
7678
|
-
|
|
7679
|
-
|
|
7680
|
-
|
|
7681
|
-
|
|
7887
|
+
export type ImaCertificateTypeStatus = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
|
|
7888
|
+
export interface ImaCertificateTypeDto extends ImaCdfEntityReadBase {
|
|
7889
|
+
certificateTypeId: string;
|
|
7890
|
+
version: number;
|
|
7891
|
+
allVersions: ImaCertificateTypeVersionDto[];
|
|
7892
|
+
name: string;
|
|
7893
|
+
revision: string;
|
|
7894
|
+
status: ImaCertificateTypeStatus;
|
|
7895
|
+
description?: string | null;
|
|
7896
|
+
isStandardCertificateType: boolean;
|
|
7897
|
+
created: Date;
|
|
7898
|
+
createdBy: string;
|
|
7899
|
+
createdById: string;
|
|
7900
|
+
updatedBy?: string | null;
|
|
7901
|
+
updatedById?: string | null;
|
|
7902
|
+
updated: Date;
|
|
7903
|
+
requirements: ImaCertificateTypeRequirementsDto;
|
|
7682
7904
|
}
|
|
7683
|
-
export interface
|
|
7684
|
-
|
|
7685
|
-
|
|
7686
|
-
|
|
7687
|
-
|
|
7688
|
-
|
|
7689
|
-
|
|
7690
|
-
|
|
7905
|
+
export interface ImaCertificateTypeVersionDto {
|
|
7906
|
+
version?: number;
|
|
7907
|
+
status?: ImaCertificateTypeStatus;
|
|
7908
|
+
}
|
|
7909
|
+
export interface ImaCertificateTypeRequirementsDto {
|
|
7910
|
+
manufacturer: ImaCertificateTypeManufacturerRequirementsDto;
|
|
7911
|
+
signature: ImaCertificateTypeSignatureRequirementsDto;
|
|
7912
|
+
thirdParty: ImaCertificateTypeThirdPartyRequirementsDto;
|
|
7913
|
+
certification: ImaCertificateTypeCertificationRequirementsDto;
|
|
7914
|
+
productAndOrderInformation: ImaCertificateTypeProductAndOrderInformationRequirementsDto;
|
|
7915
|
+
testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesRequirementsDto;
|
|
7916
|
+
testResults: ImaCertificateTypeTestResultsRequirementsDto;
|
|
7917
|
+
documentTypes: ImaCertificateTypeDocumentTypesRequirementsDto;
|
|
7918
|
+
}
|
|
7919
|
+
export interface ImaCertificateTypeManufacturerRequirementsDto extends ImaCdfEntityReadBase {
|
|
7920
|
+
manufacturer?: boolean;
|
|
7921
|
+
address?: boolean;
|
|
7922
|
+
contact?: boolean;
|
|
7691
7923
|
}
|
|
7692
|
-
export interface
|
|
7693
|
-
|
|
7694
|
-
|
|
7695
|
-
|
|
7696
|
-
|
|
7697
|
-
|
|
7924
|
+
export interface ImaCertificateTypeSignatureRequirementsDto extends ImaCdfEntityReadBase {
|
|
7925
|
+
certifiedBy?: boolean;
|
|
7926
|
+
position?: boolean;
|
|
7927
|
+
signature?: boolean;
|
|
7928
|
+
date?: boolean;
|
|
7929
|
+
stamp?: boolean;
|
|
7698
7930
|
}
|
|
7699
|
-
export interface
|
|
7700
|
-
|
|
7701
|
-
|
|
7931
|
+
export interface ImaCertificateTypeThirdPartyRequirementsDto extends ImaCdfEntityReadBase {
|
|
7932
|
+
inspectionBody?: boolean;
|
|
7933
|
+
inspectorName?: boolean;
|
|
7934
|
+
position?: boolean;
|
|
7935
|
+
verificationMethod?: boolean;
|
|
7936
|
+
signature?: boolean;
|
|
7937
|
+
date?: boolean;
|
|
7938
|
+
stamp?: boolean;
|
|
7702
7939
|
}
|
|
7703
|
-
export interface
|
|
7704
|
-
|
|
7940
|
+
export interface ImaCertificateTypeCertificationRequirementsDto extends ImaCdfEntityReadBase {
|
|
7941
|
+
certificateOfCompliance?: boolean;
|
|
7942
|
+
inspectionCertificate?: boolean;
|
|
7705
7943
|
}
|
|
7706
|
-
export interface
|
|
7707
|
-
|
|
7708
|
-
|
|
7709
|
-
|
|
7710
|
-
|
|
7711
|
-
|
|
7944
|
+
export interface ImaCertificateTypeProductAndOrderInformationRequirementsDto extends ImaCdfEntityReadBase {
|
|
7945
|
+
productDescription?: boolean;
|
|
7946
|
+
materialGrade?: boolean;
|
|
7947
|
+
customer?: boolean;
|
|
7948
|
+
customerOrderNumber?: boolean;
|
|
7949
|
+
dimensionsOrWeight?: boolean;
|
|
7950
|
+
batchNumber?: boolean;
|
|
7951
|
+
heatNumber?: boolean;
|
|
7952
|
+
relatedStandards?: boolean;
|
|
7712
7953
|
}
|
|
7713
|
-
export interface
|
|
7714
|
-
|
|
7715
|
-
measurementSchemaTargetId: string;
|
|
7716
|
-
sourceBalloons?: MeasurementFormReferenceMappingDto[];
|
|
7717
|
-
targetBalloons?: MeasurementFormReferenceMappingDto[];
|
|
7718
|
-
sourceReferences: MeasurementFormReferenceMappingDto[];
|
|
7719
|
-
targetReferences: MeasurementFormReferenceMappingDto[];
|
|
7954
|
+
export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsDto extends ImaCdfEntityReadBase {
|
|
7955
|
+
usedStandards?: boolean;
|
|
7720
7956
|
}
|
|
7721
|
-
export interface
|
|
7722
|
-
|
|
7723
|
-
|
|
7957
|
+
export interface ImaCertificateTypeTestResultsRequirementsDto extends ImaCdfEntityReadBase {
|
|
7958
|
+
mechanicalProperties?: boolean;
|
|
7959
|
+
chemicalAnalysis?: boolean;
|
|
7960
|
+
impactTests?: boolean;
|
|
7961
|
+
corrosionTests?: boolean;
|
|
7962
|
+
ferriteContentAndMicrostructure?: boolean;
|
|
7724
7963
|
}
|
|
7725
|
-
export interface
|
|
7964
|
+
export interface ImaCertificateTypeDocumentTypesRequirementsDto extends ImaCdfEntityReadBase {
|
|
7965
|
+
heatTreatmentCertificate?: boolean;
|
|
7966
|
+
ultrasonicControlCertificate?: boolean;
|
|
7967
|
+
liquidPenetrantCertificate?: boolean;
|
|
7968
|
+
testReport?: boolean;
|
|
7969
|
+
dimensionalReport?: boolean;
|
|
7970
|
+
dyePenetrantReport?: boolean;
|
|
7971
|
+
visualReport?: boolean;
|
|
7972
|
+
certificateOfAnalyticalAndMechanicalTests?: boolean;
|
|
7973
|
+
certificateOfTest?: boolean;
|
|
7974
|
+
technicalReport?: boolean;
|
|
7975
|
+
microExaminationReport?: boolean;
|
|
7976
|
+
radiologicalReport?: boolean;
|
|
7977
|
+
}
|
|
7978
|
+
export interface ImaCreateImaCertificateTypeRequestDto {
|
|
7979
|
+
name: string;
|
|
7980
|
+
revision: string;
|
|
7981
|
+
description?: string | null;
|
|
7982
|
+
}
|
|
7983
|
+
export interface ImaUpdateImaCertificateTypeRequestDto {
|
|
7984
|
+
name?: string | null;
|
|
7985
|
+
revision?: string | null;
|
|
7986
|
+
status?: ImaCertificateTypeStatus | null;
|
|
7987
|
+
description?: string | null;
|
|
7988
|
+
requirements?: ImaCertificateTypeRequirementsUpdateDto | null;
|
|
7989
|
+
}
|
|
7990
|
+
export interface ImaCertificateTypeRequirementsUpdateDto {
|
|
7991
|
+
manufacturer?: ImaCertificateTypeManufacturerRequirementsUpdateDto | null;
|
|
7992
|
+
signature?: ImaCertificateTypeSignatureRequirementsUpdateDto | null;
|
|
7993
|
+
thirdParty?: ImaCertificateTypeThirdPartyRequirementsUpdateDto | null;
|
|
7994
|
+
certification?: ImaCertificateTypeCertificationRequirementsUpdateDto | null;
|
|
7995
|
+
productAndOrderInformation?: ImaCertificateTypeProductAndOrderInformationRequirementsUpdateDto | null;
|
|
7996
|
+
testMethodsAndReferences?: ImaCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto | null;
|
|
7997
|
+
testResults?: ImaCertificateTypeTestResultsRequirementsUpdateDto | null;
|
|
7998
|
+
documentTypes?: ImaCertificateTypeDocumentTypesRequirementsUpdateDto | null;
|
|
7999
|
+
}
|
|
8000
|
+
export interface ImaCertificateTypeManufacturerRequirementsUpdateDto {
|
|
8001
|
+
manufacturer?: boolean | null;
|
|
8002
|
+
address?: boolean | null;
|
|
8003
|
+
contact?: boolean | null;
|
|
8004
|
+
}
|
|
8005
|
+
export interface ImaCertificateTypeSignatureRequirementsUpdateDto {
|
|
8006
|
+
certifiedBy?: boolean | null;
|
|
8007
|
+
position?: boolean | null;
|
|
8008
|
+
signature?: boolean | null;
|
|
8009
|
+
date?: boolean | null;
|
|
8010
|
+
stamp?: boolean | null;
|
|
8011
|
+
}
|
|
8012
|
+
export interface ImaCertificateTypeThirdPartyRequirementsUpdateDto {
|
|
8013
|
+
inspectionBody?: boolean | null;
|
|
8014
|
+
inspectorName?: boolean | null;
|
|
8015
|
+
position?: boolean | null;
|
|
8016
|
+
verificationMethod?: boolean | null;
|
|
8017
|
+
signature?: boolean | null;
|
|
8018
|
+
date?: boolean | null;
|
|
8019
|
+
stamp?: boolean | null;
|
|
8020
|
+
}
|
|
8021
|
+
export interface ImaCertificateTypeCertificationRequirementsUpdateDto {
|
|
8022
|
+
certificateOfCompliance?: boolean | null;
|
|
8023
|
+
inspectionCertificate?: boolean | null;
|
|
8024
|
+
}
|
|
8025
|
+
export interface ImaCertificateTypeProductAndOrderInformationRequirementsUpdateDto {
|
|
8026
|
+
productDescription?: boolean | null;
|
|
8027
|
+
materialGrade?: boolean | null;
|
|
8028
|
+
customer?: boolean | null;
|
|
8029
|
+
customerOrderNumber?: boolean | null;
|
|
8030
|
+
dimensionsOrWeight?: boolean | null;
|
|
8031
|
+
batchNumber?: boolean | null;
|
|
8032
|
+
heatNumber?: boolean | null;
|
|
8033
|
+
relatedStandards?: boolean | null;
|
|
8034
|
+
}
|
|
8035
|
+
export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto {
|
|
8036
|
+
usedStandards?: boolean | null;
|
|
8037
|
+
}
|
|
8038
|
+
export interface ImaCertificateTypeTestResultsRequirementsUpdateDto {
|
|
8039
|
+
mechanicalProperties?: boolean | null;
|
|
8040
|
+
chemicalAnalysis?: boolean | null;
|
|
8041
|
+
impactTests?: boolean | null;
|
|
8042
|
+
corrosionTests?: boolean | null;
|
|
8043
|
+
ferriteContentAndMicrostructure?: boolean | null;
|
|
8044
|
+
}
|
|
8045
|
+
export interface ImaCertificateTypeDocumentTypesRequirementsUpdateDto {
|
|
8046
|
+
heatTreatmentCertificate?: boolean | null;
|
|
8047
|
+
ultrasonicControlCertificate?: boolean | null;
|
|
8048
|
+
liquidPenetrantCertificate?: boolean | null;
|
|
8049
|
+
testReport?: boolean | null;
|
|
8050
|
+
dimensionalReport?: boolean | null;
|
|
8051
|
+
dyePenetrantReport?: boolean | null;
|
|
8052
|
+
visualReport?: boolean | null;
|
|
8053
|
+
certificateOfAnalyticalAndMechanicalTests?: boolean | null;
|
|
8054
|
+
certificateOfTest?: boolean | null;
|
|
8055
|
+
technicalReport?: boolean | null;
|
|
8056
|
+
microExaminationReport?: boolean | null;
|
|
8057
|
+
radiologicalReport?: boolean | null;
|
|
8058
|
+
}
|
|
8059
|
+
export interface MeasurementFormSchemaDto {
|
|
7726
8060
|
id: string;
|
|
7727
|
-
|
|
7728
|
-
customerId?: string | null;
|
|
7729
|
-
customerName?: string | null;
|
|
8061
|
+
versionId: number;
|
|
7730
8062
|
partNumber?: string | null;
|
|
7731
8063
|
partRevision?: string | null;
|
|
7732
8064
|
partName?: string | null;
|
|
7733
8065
|
drawing?: string | null;
|
|
7734
8066
|
drawingRevision?: string | null;
|
|
7735
|
-
workorder?: string | null;
|
|
7736
|
-
operation?: number | null;
|
|
7737
|
-
resource?: string | null;
|
|
7738
|
-
resourceId?: string | null;
|
|
7739
|
-
resourceName?: string | null;
|
|
7740
|
-
assignedTo?: UserDto | null;
|
|
7741
|
-
isGeneratedRequirement: boolean;
|
|
7742
|
-
measurementSchemaId?: string | null;
|
|
7743
8067
|
drawingUrl?: string | null;
|
|
7744
|
-
}
|
|
7745
|
-
export interface ListMeasurementFormNeedsRequest {
|
|
7746
|
-
pageSize?: number | null;
|
|
7747
8068
|
customerId?: string | null;
|
|
7748
8069
|
customerName?: string | null;
|
|
7749
|
-
|
|
8070
|
+
excludeFromCustomerDocumentation: boolean;
|
|
8071
|
+
excludeDrawingFromCustomerDocumentation: boolean;
|
|
8072
|
+
specification?: string | null;
|
|
8073
|
+
isUsed: boolean;
|
|
8074
|
+
status: MeasurementFormStatus;
|
|
8075
|
+
source: MeasurementFormSource;
|
|
8076
|
+
unitOfMeasure?: UnitOfMeasureDto;
|
|
8077
|
+
dimensionSetting?: DimensionSettingDto;
|
|
8078
|
+
generalTolerance?: GeneralToleranceDto;
|
|
8079
|
+
markedDrawingUrl?: string | null;
|
|
8080
|
+
sourceFileUrl?: string | null;
|
|
8081
|
+
projectFileUrl?: string | null;
|
|
8082
|
+
updatedBy?: string | null;
|
|
8083
|
+
updatedDate?: Date;
|
|
8084
|
+
attachments: MeasurementFormSchemaAttachmentDto[];
|
|
8085
|
+
groupedElements: MeasurementFormGroupedElementDto[];
|
|
8086
|
+
extraSchemas: MeasurementFormLinkedSchemaDto[];
|
|
8087
|
+
}
|
|
8088
|
+
export type MeasurementFormStatus = "Draft" | "Released" | "Revoked";
|
|
8089
|
+
export type MeasurementFormSource = "Unknown" | "InspectionXpert" | "Excel" | "Manual";
|
|
8090
|
+
export type UnitOfMeasureDto = "Millimeter" | "Inch";
|
|
8091
|
+
export type DimensionSettingDto = "Tolerance" | "MinMaxDimension";
|
|
8092
|
+
export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
|
|
8093
|
+
export interface MeasurementFormSchemaAttachmentDto {
|
|
8094
|
+
url: string;
|
|
8095
|
+
title: string;
|
|
8096
|
+
}
|
|
8097
|
+
export interface MeasurementFormGroupedElementDto {
|
|
8098
|
+
id: string;
|
|
8099
|
+
balloonId?: string | null;
|
|
8100
|
+
reference: number;
|
|
8101
|
+
imageUrl?: string | null;
|
|
8102
|
+
thumbnailUrl?: string | null;
|
|
8103
|
+
section?: string | null;
|
|
8104
|
+
pageNumber?: number | null;
|
|
8105
|
+
sheetZone?: string | null;
|
|
8106
|
+
places?: number | null;
|
|
8107
|
+
nominal?: number | null;
|
|
8108
|
+
nominalText?: string | null;
|
|
8109
|
+
type?: string | null;
|
|
8110
|
+
subType?: string | null;
|
|
8111
|
+
unitOfMeasure?: string | null;
|
|
8112
|
+
typeCharacter?: string | null;
|
|
8113
|
+
plusTolerance?: number | null;
|
|
8114
|
+
minusTolerance?: number | null;
|
|
8115
|
+
upperLimit?: number | null;
|
|
8116
|
+
lowerLimit?: number | null;
|
|
8117
|
+
comments?: string | null;
|
|
8118
|
+
updatedByUser?: string | null;
|
|
8119
|
+
updatedDate?: Date | null;
|
|
8120
|
+
createdByUser?: string | null;
|
|
8121
|
+
createdDate?: Date;
|
|
8122
|
+
frequency: MeasurementFrequency;
|
|
8123
|
+
frequencyParameter?: number | null;
|
|
8124
|
+
includeInCustomerDocumentation: boolean;
|
|
8125
|
+
isDocumentedExternally: boolean;
|
|
8126
|
+
balloonQuantity?: number | null;
|
|
8127
|
+
referenceQuantity?: number | null;
|
|
8128
|
+
plusToleranceText?: string | null;
|
|
8129
|
+
minusToleranceText?: string | null;
|
|
8130
|
+
coatingThickness?: number | null;
|
|
8131
|
+
canCopy: boolean;
|
|
8132
|
+
valueType?: MeasurementFormValueType;
|
|
8133
|
+
bonusType?: BonusType;
|
|
8134
|
+
lowerWarningThreshold?: number | null;
|
|
8135
|
+
upperWarningThreshold?: number | null;
|
|
8136
|
+
machiningDimension?: number | null;
|
|
8137
|
+
nominalInch?: number | null;
|
|
8138
|
+
isValid: boolean;
|
|
8139
|
+
validationErrorMessage?: string | null;
|
|
8140
|
+
}
|
|
8141
|
+
export type MeasurementFrequency = "All" | "FirstArticle" | "NFirst" | "NPercent" | "ISO2859" | "Nth" | "FirstAndLast" | "None";
|
|
8142
|
+
export type MeasurementFormValueType = "None" | "Bool" | "Decimal" | "String";
|
|
8143
|
+
export type BonusType = "None" | "Positive" | "PositiveAndNegative";
|
|
8144
|
+
export interface MeasurementFormLinkedSchemaDto {
|
|
8145
|
+
customerId?: string | null;
|
|
7750
8146
|
partNumber?: string | null;
|
|
7751
8147
|
partRevision?: string | null;
|
|
7752
|
-
drawing
|
|
8148
|
+
drawing: string;
|
|
7753
8149
|
drawingRevision?: string | null;
|
|
7754
|
-
|
|
7755
|
-
|
|
7756
|
-
onlyWithoutDrawingUrl?: boolean | null;
|
|
7757
|
-
}
|
|
7758
|
-
export interface SetMeasurementFormNeedUserRequest {
|
|
7759
|
-
userId: string;
|
|
8150
|
+
schemaId: string;
|
|
8151
|
+
latestReleasedSchemaId: string;
|
|
7760
8152
|
}
|
|
7761
|
-
export interface
|
|
8153
|
+
export interface MeasurementFormDto {
|
|
7762
8154
|
id: string;
|
|
8155
|
+
schemaId: string;
|
|
8156
|
+
versionId: number;
|
|
7763
8157
|
customerId?: string | null;
|
|
7764
8158
|
customerName?: string | null;
|
|
7765
8159
|
partNumber?: string | null;
|
|
7766
8160
|
partRevision?: string | null;
|
|
7767
|
-
|
|
8161
|
+
partName?: string | null;
|
|
8162
|
+
drawing: string;
|
|
7768
8163
|
drawingRevision?: string | null;
|
|
7769
|
-
|
|
7770
|
-
|
|
7771
|
-
|
|
7772
|
-
|
|
7773
|
-
|
|
7774
|
-
export interface PagedResultOfMeasurementFormSchemaNotNeededDto {
|
|
7775
|
-
results: MeasurementFormSchemaNotNeededDto[];
|
|
7776
|
-
continuationToken?: string | null;
|
|
8164
|
+
createdBy: string;
|
|
8165
|
+
created: Date;
|
|
8166
|
+
status: MeasurementFormStatus;
|
|
8167
|
+
source: MeasurementFormSource;
|
|
8168
|
+
extraSchemas: MeasurementFormLinkedSchemaDto[];
|
|
7777
8169
|
}
|
|
7778
|
-
export interface
|
|
7779
|
-
pageSize?: number | null;
|
|
8170
|
+
export interface CreateMeasurementFormSchema {
|
|
7780
8171
|
customerId?: string | null;
|
|
7781
8172
|
customerName?: string | null;
|
|
7782
8173
|
partNumber?: string | null;
|
|
7783
|
-
partName?: string | null;
|
|
7784
8174
|
partRevision?: string | null;
|
|
7785
|
-
|
|
8175
|
+
partName?: string | null;
|
|
8176
|
+
drawing: string;
|
|
7786
8177
|
drawingRevision?: string | null;
|
|
7787
|
-
filter?: string | null;
|
|
7788
|
-
continuationToken?: string | null;
|
|
7789
8178
|
}
|
|
7790
|
-
export interface
|
|
7791
|
-
|
|
8179
|
+
export interface UpdateMeasurementFormSchemaRequest {
|
|
8180
|
+
excludeFromCustomerDocumentation: boolean;
|
|
8181
|
+
excludeDrawingFromCustomerDocumentation?: boolean | null;
|
|
8182
|
+
specification?: string | null;
|
|
7792
8183
|
}
|
|
7793
|
-
export interface
|
|
7794
|
-
|
|
8184
|
+
export interface CopyMeasurementFormSchema {
|
|
8185
|
+
customerId?: string | null;
|
|
8186
|
+
customerName?: string | null;
|
|
8187
|
+
partNumber?: string | null;
|
|
8188
|
+
partRevision?: string | null;
|
|
8189
|
+
partName?: string | null;
|
|
8190
|
+
drawing: string;
|
|
8191
|
+
drawingRevision?: string | null;
|
|
8192
|
+
includeFiles: boolean;
|
|
8193
|
+
includeLinkedSchemas: boolean;
|
|
8194
|
+
includeMeasurementForm: boolean;
|
|
7795
8195
|
}
|
|
7796
|
-
export interface
|
|
7797
|
-
|
|
8196
|
+
export interface UpdateSchemaGroupedElementsRequest {
|
|
8197
|
+
groupedElements: UpdateSchemaGroupedElementDto[];
|
|
8198
|
+
}
|
|
8199
|
+
export interface UpdateSchemaGroupedElementDto {
|
|
8200
|
+
balloonId?: string | null;
|
|
8201
|
+
reference: number;
|
|
8202
|
+
frequency: MeasurementFrequency;
|
|
8203
|
+
frequencyParameter?: number | null;
|
|
8204
|
+
includeInCustomerDocumentation: boolean;
|
|
8205
|
+
canCopy?: boolean | null;
|
|
8206
|
+
isDocumentedExternally: boolean;
|
|
8207
|
+
coatingThickness?: number | null;
|
|
8208
|
+
}
|
|
8209
|
+
export interface UpdateSchemaGroupedElementRowDto {
|
|
8210
|
+
id?: string | null;
|
|
8211
|
+
balloonId?: string | null;
|
|
8212
|
+
oldReference: number;
|
|
8213
|
+
newReference: number;
|
|
8214
|
+
section?: string | null;
|
|
8215
|
+
pageNumber?: number | null;
|
|
8216
|
+
measurements?: number | null;
|
|
8217
|
+
nominalText?: string | null;
|
|
8218
|
+
type?: string | null;
|
|
8219
|
+
subType?: string | null;
|
|
8220
|
+
plusTolerance?: string | null;
|
|
8221
|
+
minusTolerance?: string | null;
|
|
8222
|
+
upperLimit?: string | null;
|
|
8223
|
+
lowerLimit?: string | null;
|
|
8224
|
+
coatingThickness?: number | null;
|
|
8225
|
+
comments?: string | null;
|
|
8226
|
+
frequency: MeasurementFrequency;
|
|
8227
|
+
frequencyParameter?: number | null;
|
|
8228
|
+
includeInCustomerDocumentation: boolean;
|
|
8229
|
+
canCopy?: boolean | null;
|
|
8230
|
+
isDocumentedExternally: boolean;
|
|
8231
|
+
}
|
|
8232
|
+
export interface DeleteSchemaGroupedElementRowsDto {
|
|
8233
|
+
balloonIds?: string[];
|
|
8234
|
+
references?: number[];
|
|
8235
|
+
}
|
|
8236
|
+
export interface UploadMeasurementImageRequest {
|
|
8237
|
+
uploadKey: string;
|
|
8238
|
+
filename: string;
|
|
8239
|
+
ballonId?: string | null;
|
|
8240
|
+
reference: number;
|
|
8241
|
+
}
|
|
8242
|
+
export interface UpdateSchemaSettingsRequest {
|
|
8243
|
+
unitOfMeasure: UnitOfMeasureDto;
|
|
8244
|
+
dimensionSetting: DimensionSettingDto;
|
|
8245
|
+
generalTolerance: GeneralToleranceDto;
|
|
8246
|
+
}
|
|
8247
|
+
export interface UploadDrawingRequest {
|
|
8248
|
+
uploadKey: string;
|
|
8249
|
+
filename: string;
|
|
8250
|
+
}
|
|
8251
|
+
export interface UploadRequest {
|
|
8252
|
+
uploadKey: string;
|
|
8253
|
+
filename: string;
|
|
8254
|
+
}
|
|
8255
|
+
export interface MeasurementFormImportStatusDto {
|
|
8256
|
+
progress: number;
|
|
8257
|
+
totalElements: number;
|
|
8258
|
+
errorMessage: string;
|
|
8259
|
+
timestamp: Date;
|
|
8260
|
+
}
|
|
8261
|
+
export interface PagedResultOfMeasurementFormListDto {
|
|
8262
|
+
results: MeasurementFormListDto[];
|
|
7798
8263
|
continuationToken?: string | null;
|
|
7799
8264
|
}
|
|
7800
|
-
export interface
|
|
8265
|
+
export interface MeasurementFormListDto {
|
|
7801
8266
|
id: string;
|
|
7802
|
-
workOrder: string;
|
|
7803
8267
|
schemaId: string;
|
|
7804
|
-
versionId
|
|
7805
|
-
|
|
7806
|
-
|
|
7807
|
-
reference?: number;
|
|
7808
|
-
feedback: string;
|
|
7809
|
-
from: string;
|
|
7810
|
-
created: Date;
|
|
7811
|
-
assignedTo?: UserDto | null;
|
|
7812
|
-
status?: SchemaFeedbackStatus;
|
|
7813
|
-
latestSchemaDefinitionId?: string | null;
|
|
8268
|
+
versionId: number;
|
|
8269
|
+
customerId?: string | null;
|
|
8270
|
+
customerName?: string | null;
|
|
7814
8271
|
partNumber?: string | null;
|
|
7815
8272
|
partRevision?: string | null;
|
|
7816
8273
|
partName?: string | null;
|
|
7817
|
-
drawing
|
|
8274
|
+
drawing: string;
|
|
7818
8275
|
drawingRevision?: string | null;
|
|
8276
|
+
createdBy: string;
|
|
8277
|
+
created: Date;
|
|
8278
|
+
status: MeasurementFormStatus;
|
|
8279
|
+
source: MeasurementFormSource;
|
|
7819
8280
|
}
|
|
7820
|
-
export
|
|
7821
|
-
|
|
8281
|
+
export interface ListLinkableMeasurementFormSchemasRequest {
|
|
8282
|
+
schemaId: string;
|
|
7822
8283
|
pageSize?: number | null;
|
|
7823
|
-
|
|
8284
|
+
filter?: string | null;
|
|
7824
8285
|
continuationToken?: string | null;
|
|
7825
8286
|
}
|
|
7826
|
-
export interface
|
|
7827
|
-
|
|
8287
|
+
export interface CreateMeasurementFormSchemaLinkRequest {
|
|
8288
|
+
linkSchemaId: string;
|
|
7828
8289
|
}
|
|
7829
|
-
export interface
|
|
7830
|
-
|
|
8290
|
+
export interface InspectCompanySettingsDto {
|
|
8291
|
+
convertInchToMm: boolean;
|
|
8292
|
+
convertMicroInchToMicroMeter: boolean;
|
|
8293
|
+
validateMeasuringTools: boolean;
|
|
8294
|
+
validateMeasuringToolsForSuppliers: boolean;
|
|
8295
|
+
generateSchemaRequirements: boolean;
|
|
8296
|
+
generateSchemaInstances: boolean;
|
|
8297
|
+
autoCompleteSchemaInstances: boolean;
|
|
8298
|
+
autoApproveSchemaInstances: boolean;
|
|
8299
|
+
generateReportForApprovedInstances: boolean;
|
|
8300
|
+
includeMeasuringToolsInReportAsDefault: boolean;
|
|
8301
|
+
requireCustomerOnWorkOrders: boolean;
|
|
8302
|
+
allowSchemaUpdates: boolean;
|
|
8303
|
+
allowCreateInstances: boolean;
|
|
8304
|
+
resourceTypesBlockingAutoWorkflow?: string[] | null;
|
|
8305
|
+
}
|
|
8306
|
+
export interface UpdateMeasurementFormSettings {
|
|
8307
|
+
convertInchToMm: boolean;
|
|
8308
|
+
convertMicroInchToMicroMeter: boolean;
|
|
8309
|
+
validateMeasuringTools: boolean;
|
|
8310
|
+
validateMeasuringToolsForSuppliers: boolean;
|
|
8311
|
+
generateSchemaRequirements: boolean;
|
|
8312
|
+
generateSchemaInstances: boolean;
|
|
8313
|
+
autoCompleteSchemaInstances: boolean;
|
|
8314
|
+
autoApproveSchemaInstances: boolean;
|
|
8315
|
+
generateReportForApprovedInstances: boolean;
|
|
8316
|
+
includeMeasuringToolsInReportAsDefault: boolean;
|
|
8317
|
+
requireCustomerOnWorkOrders: boolean;
|
|
8318
|
+
allowSchemaUpdates: boolean;
|
|
8319
|
+
allowCreateInstances: boolean;
|
|
8320
|
+
resourceTypesBlockingAutoWorkflow: string[];
|
|
8321
|
+
}
|
|
8322
|
+
export interface MeasurementFormCustomerSettingsDto {
|
|
8323
|
+
customerId: string;
|
|
8324
|
+
customerName?: string | null;
|
|
8325
|
+
includeToolsInReport: boolean;
|
|
8326
|
+
validationRuleId?: string | null;
|
|
8327
|
+
requireCalibratedTools: boolean;
|
|
8328
|
+
allowEmptyToolListInValue: boolean;
|
|
8329
|
+
}
|
|
8330
|
+
export interface UpdateMeasurementFormCustomerSettings {
|
|
8331
|
+
customerId: string;
|
|
8332
|
+
customerName: string;
|
|
8333
|
+
includeToolsInReport: boolean;
|
|
8334
|
+
validationRuleId?: string | null;
|
|
8335
|
+
requireCalibratedTools: boolean;
|
|
8336
|
+
allowEmptyToolListInValue: boolean;
|
|
8337
|
+
}
|
|
8338
|
+
export interface MeasurementFormMappingDto {
|
|
8339
|
+
id: string;
|
|
8340
|
+
measurementSchemaSourceId: string;
|
|
8341
|
+
measurementSchemaTargetId: string;
|
|
8342
|
+
sourceBalloons?: MeasurementFormReferenceMappingDto[];
|
|
8343
|
+
targetBalloons?: MeasurementFormReferenceMappingDto[];
|
|
8344
|
+
sourceReferences: MeasurementFormReferenceMappingDto[];
|
|
8345
|
+
targetReferences: MeasurementFormReferenceMappingDto[];
|
|
8346
|
+
}
|
|
8347
|
+
export interface MeasurementFormReferenceMappingDto {
|
|
8348
|
+
balloon?: MeasurementFormGroupedElementDto | null;
|
|
8349
|
+
mappedBalloonId?: string | null;
|
|
8350
|
+
reference: MeasurementFormGroupedElementDto;
|
|
8351
|
+
mappedReference?: number;
|
|
8352
|
+
mappingScorePercent?: number | null;
|
|
8353
|
+
}
|
|
8354
|
+
export interface CreateMeasurementFormMapping {
|
|
8355
|
+
sourceId: string;
|
|
8356
|
+
targetId: string;
|
|
8357
|
+
}
|
|
8358
|
+
export interface SetMeasurementFormReferencesMappingRequest {
|
|
8359
|
+
mappings: MeasurementFormReferenceMappingRequestDto[];
|
|
8360
|
+
}
|
|
8361
|
+
export interface MeasurementFormReferenceMappingRequestDto {
|
|
8362
|
+
sourceBalloonId?: string | null;
|
|
8363
|
+
targetBalloonId?: string | null;
|
|
8364
|
+
sourceReference: number;
|
|
8365
|
+
targetReference: number;
|
|
8366
|
+
mappingScorePercent?: number | null;
|
|
8367
|
+
}
|
|
8368
|
+
export interface MeasurementFormMappingSuggestionDto {
|
|
8369
|
+
measurementSchemaSourceId: string;
|
|
8370
|
+
measurementSchemaTargetId: string;
|
|
8371
|
+
sourceBalloons?: MeasurementFormReferenceMappingDto[];
|
|
8372
|
+
targetBalloons?: MeasurementFormReferenceMappingDto[];
|
|
8373
|
+
sourceReferences: MeasurementFormReferenceMappingDto[];
|
|
8374
|
+
targetReferences: MeasurementFormReferenceMappingDto[];
|
|
8375
|
+
}
|
|
8376
|
+
export interface PagedResultOfMeasurementFormNeedDto {
|
|
8377
|
+
results: MeasurementFormNeedDto[];
|
|
8378
|
+
continuationToken?: string | null;
|
|
8379
|
+
}
|
|
8380
|
+
export interface MeasurementFormNeedDto {
|
|
8381
|
+
id: string;
|
|
8382
|
+
requirementDate: Date;
|
|
7831
8383
|
customerId?: string | null;
|
|
8384
|
+
customerName?: string | null;
|
|
7832
8385
|
partNumber?: string | null;
|
|
7833
8386
|
partRevision?: string | null;
|
|
8387
|
+
partName?: string | null;
|
|
7834
8388
|
drawing?: string | null;
|
|
7835
8389
|
drawingRevision?: string | null;
|
|
7836
|
-
|
|
7837
|
-
|
|
8390
|
+
workorder?: string | null;
|
|
8391
|
+
operation?: number | null;
|
|
8392
|
+
resource?: string | null;
|
|
8393
|
+
resourceId?: string | null;
|
|
8394
|
+
resourceName?: string | null;
|
|
8395
|
+
assignedTo?: UserDto | null;
|
|
8396
|
+
isGeneratedRequirement: boolean;
|
|
8397
|
+
measurementSchemaId?: string | null;
|
|
8398
|
+
drawingUrl?: string | null;
|
|
7838
8399
|
}
|
|
7839
|
-
export interface
|
|
8400
|
+
export interface ListMeasurementFormNeedsRequest {
|
|
7840
8401
|
pageSize?: number | null;
|
|
7841
8402
|
customerId?: string | null;
|
|
7842
8403
|
customerName?: string | null;
|
|
@@ -7847,45 +8408,139 @@ export interface ListMeasurementFormSchemasRequest {
|
|
|
7847
8408
|
drawingRevision?: string | null;
|
|
7848
8409
|
filter?: string | null;
|
|
7849
8410
|
continuationToken?: string | null;
|
|
8411
|
+
onlyWithoutDrawingUrl?: boolean | null;
|
|
7850
8412
|
}
|
|
7851
|
-
export interface
|
|
7852
|
-
|
|
7853
|
-
name: string;
|
|
8413
|
+
export interface SetMeasurementFormNeedUserRequest {
|
|
8414
|
+
userId: string;
|
|
7854
8415
|
}
|
|
7855
|
-
export interface
|
|
8416
|
+
export interface MeasurementFormSchemaNotNeededDto {
|
|
7856
8417
|
id: string;
|
|
7857
|
-
readonly: boolean;
|
|
7858
|
-
partNumber?: string | null;
|
|
7859
|
-
partName?: string | null;
|
|
7860
|
-
partRevision?: string | null;
|
|
7861
|
-
drawing?: string | null;
|
|
7862
|
-
drawingRevision?: string | null;
|
|
7863
8418
|
customerId?: string | null;
|
|
7864
8419
|
customerName?: string | null;
|
|
7865
|
-
quantity: number;
|
|
7866
|
-
status: MeasurementFormInstanceStatus;
|
|
7867
|
-
statusChangedDate?: Date | null;
|
|
7868
|
-
schemas: MeasurementFormWorkorderSchemaDto[];
|
|
7869
|
-
sequences?: MeasurementFormWorkorderSequenceDto[] | null;
|
|
7870
|
-
serialNumbers: MeasurementFormWorkorderSerialNumberDto[];
|
|
7871
|
-
suppliers: MeasurementFormWorkorderSupplierDto[];
|
|
7872
|
-
progress: MeasurementFormProgressDto;
|
|
7873
|
-
approvedReportUrl?: string | null;
|
|
7874
|
-
currentResource?: ResourceDto | null;
|
|
7875
|
-
}
|
|
7876
|
-
export type MeasurementFormInstanceStatus = "Active" | "Cancelled" | "Completed" | "Approved" | "MissingCompletion";
|
|
7877
|
-
export interface MeasurementFormWorkorderSchemaDto {
|
|
7878
|
-
id: string;
|
|
7879
8420
|
partNumber?: string | null;
|
|
7880
8421
|
partRevision?: string | null;
|
|
7881
8422
|
drawing?: string | null;
|
|
7882
8423
|
drawingRevision?: string | null;
|
|
7883
|
-
|
|
7884
|
-
|
|
7885
|
-
|
|
7886
|
-
|
|
7887
|
-
|
|
7888
|
-
|
|
8424
|
+
comment?: string | null;
|
|
8425
|
+
}
|
|
8426
|
+
export interface SetMeasurementFormNeedAsNotNeededRequest {
|
|
8427
|
+
comment?: string | null;
|
|
8428
|
+
}
|
|
8429
|
+
export interface PagedResultOfMeasurementFormSchemaNotNeededDto {
|
|
8430
|
+
results: MeasurementFormSchemaNotNeededDto[];
|
|
8431
|
+
continuationToken?: string | null;
|
|
8432
|
+
}
|
|
8433
|
+
export interface ListMeasurementFormSchemasNotNeededRequest {
|
|
8434
|
+
pageSize?: number | null;
|
|
8435
|
+
customerId?: string | null;
|
|
8436
|
+
customerName?: string | null;
|
|
8437
|
+
partNumber?: string | null;
|
|
8438
|
+
partName?: string | null;
|
|
8439
|
+
partRevision?: string | null;
|
|
8440
|
+
drawing?: string | null;
|
|
8441
|
+
drawingRevision?: string | null;
|
|
8442
|
+
filter?: string | null;
|
|
8443
|
+
continuationToken?: string | null;
|
|
8444
|
+
}
|
|
8445
|
+
export interface MeasurementFormResourceTypeGeneratorDto {
|
|
8446
|
+
resourceType: string;
|
|
8447
|
+
}
|
|
8448
|
+
export interface AddResourceTypeForNeedsGenerator {
|
|
8449
|
+
resourceType: string;
|
|
8450
|
+
}
|
|
8451
|
+
export interface PagedResultOfSchemaFeedbackDto {
|
|
8452
|
+
results: SchemaFeedbackDto[];
|
|
8453
|
+
continuationToken?: string | null;
|
|
8454
|
+
}
|
|
8455
|
+
export interface SchemaFeedbackDto {
|
|
8456
|
+
id: string;
|
|
8457
|
+
workOrder: string;
|
|
8458
|
+
schemaId: string;
|
|
8459
|
+
versionId?: number;
|
|
8460
|
+
schemaInstanceId: string;
|
|
8461
|
+
balloonId?: string | null;
|
|
8462
|
+
reference?: number;
|
|
8463
|
+
feedback: string;
|
|
8464
|
+
from: string;
|
|
8465
|
+
created: Date;
|
|
8466
|
+
assignedTo?: UserDto | null;
|
|
8467
|
+
status?: SchemaFeedbackStatus;
|
|
8468
|
+
latestSchemaDefinitionId?: string | null;
|
|
8469
|
+
partNumber?: string | null;
|
|
8470
|
+
partRevision?: string | null;
|
|
8471
|
+
partName?: string | null;
|
|
8472
|
+
drawing?: string | null;
|
|
8473
|
+
drawingRevision?: string | null;
|
|
8474
|
+
}
|
|
8475
|
+
export type SchemaFeedbackStatus = "New" | "InProgress";
|
|
8476
|
+
export interface ListMeasurementFormInstanceSchemaFeedbackRequest {
|
|
8477
|
+
pageSize?: number | null;
|
|
8478
|
+
search?: string | null;
|
|
8479
|
+
continuationToken?: string | null;
|
|
8480
|
+
}
|
|
8481
|
+
export interface SetMeasurementFormSchemaFeedbackUserRequest {
|
|
8482
|
+
userId?: string | null;
|
|
8483
|
+
}
|
|
8484
|
+
export interface ListMeasurementFormSchemasWithHistoryRequest {
|
|
8485
|
+
pageSize?: number | null;
|
|
8486
|
+
customerId?: string | null;
|
|
8487
|
+
partNumber?: string | null;
|
|
8488
|
+
partRevision?: string | null;
|
|
8489
|
+
drawing?: string | null;
|
|
8490
|
+
drawingRevision?: string | null;
|
|
8491
|
+
version?: number | null;
|
|
8492
|
+
continuationToken?: string | null;
|
|
8493
|
+
}
|
|
8494
|
+
export interface ListMeasurementFormSchemasRequest {
|
|
8495
|
+
pageSize?: number | null;
|
|
8496
|
+
customerId?: string | null;
|
|
8497
|
+
customerName?: string | null;
|
|
8498
|
+
partName?: string | null;
|
|
8499
|
+
partNumber?: string | null;
|
|
8500
|
+
partRevision?: string | null;
|
|
8501
|
+
drawing?: string | null;
|
|
8502
|
+
drawingRevision?: string | null;
|
|
8503
|
+
filter?: string | null;
|
|
8504
|
+
continuationToken?: string | null;
|
|
8505
|
+
}
|
|
8506
|
+
export interface MeasurementFrequencyDto {
|
|
8507
|
+
id: number;
|
|
8508
|
+
name: string;
|
|
8509
|
+
}
|
|
8510
|
+
export interface MeasurementFormInstanceDto {
|
|
8511
|
+
id: string;
|
|
8512
|
+
readonly: boolean;
|
|
8513
|
+
partNumber?: string | null;
|
|
8514
|
+
partName?: string | null;
|
|
8515
|
+
partRevision?: string | null;
|
|
8516
|
+
drawing?: string | null;
|
|
8517
|
+
drawingRevision?: string | null;
|
|
8518
|
+
customerId?: string | null;
|
|
8519
|
+
customerName?: string | null;
|
|
8520
|
+
quantity: number;
|
|
8521
|
+
status: MeasurementFormInstanceStatus;
|
|
8522
|
+
statusChangedDate?: Date | null;
|
|
8523
|
+
schemas: MeasurementFormWorkorderSchemaDto[];
|
|
8524
|
+
sequences?: MeasurementFormWorkorderSequenceDto[] | null;
|
|
8525
|
+
serialNumbers: MeasurementFormWorkorderSerialNumberDto[];
|
|
8526
|
+
suppliers: MeasurementFormWorkorderSupplierDto[];
|
|
8527
|
+
progress: MeasurementFormProgressDto;
|
|
8528
|
+
approvedReportUrl?: string | null;
|
|
8529
|
+
currentResource?: ResourceDto | null;
|
|
8530
|
+
}
|
|
8531
|
+
export type MeasurementFormInstanceStatus = "Active" | "Cancelled" | "Completed" | "Approved" | "MissingCompletion";
|
|
8532
|
+
export interface MeasurementFormWorkorderSchemaDto {
|
|
8533
|
+
id: string;
|
|
8534
|
+
partNumber?: string | null;
|
|
8535
|
+
partRevision?: string | null;
|
|
8536
|
+
drawing?: string | null;
|
|
8537
|
+
drawingRevision?: string | null;
|
|
8538
|
+
customerId?: string | null;
|
|
8539
|
+
drawingUrl?: string | null;
|
|
8540
|
+
markedDrawingUrl?: string | null;
|
|
8541
|
+
excludeFromCustomerDocumentation: boolean;
|
|
8542
|
+
excludeDrawingFromCustomerDocumentation: boolean;
|
|
8543
|
+
versionId: number;
|
|
7889
8544
|
specification?: string | null;
|
|
7890
8545
|
progress: MeasurementFormProgressDto;
|
|
7891
8546
|
}
|
|
@@ -8486,652 +9141,6 @@ export interface SetDiscussionLastReadRequest {
|
|
|
8486
9141
|
operationId?: string | null;
|
|
8487
9142
|
resourceId?: string | null;
|
|
8488
9143
|
}
|
|
8489
|
-
export interface AmcMaterialChecksPageDto {
|
|
8490
|
-
items: AmcMaterialCheckLiteDto[];
|
|
8491
|
-
continuationToken?: string | null;
|
|
8492
|
-
}
|
|
8493
|
-
export interface AmcMaterialCheckLiteDto {
|
|
8494
|
-
materialCheckId: string;
|
|
8495
|
-
originalMaterialCertificate: FileDto;
|
|
8496
|
-
generatedMaterialCertificate?: FileDto | null;
|
|
8497
|
-
customer?: string | null;
|
|
8498
|
-
project?: string | null;
|
|
8499
|
-
workOrder?: string | null;
|
|
8500
|
-
certificateTypeId?: string | null;
|
|
8501
|
-
certificateTypeVersion?: number | null;
|
|
8502
|
-
certificateTypeName?: string | null;
|
|
8503
|
-
specificationId: string;
|
|
8504
|
-
specificationVersion: number;
|
|
8505
|
-
specificationName: string;
|
|
8506
|
-
purchaseOrder?: string | null;
|
|
8507
|
-
purchaseOrderLine?: string | null;
|
|
8508
|
-
purchaseOrderItem?: string | null;
|
|
8509
|
-
purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
|
|
8510
|
-
purchaseOrderLot?: string | null;
|
|
8511
|
-
status: AmcMaterialCheckStatus;
|
|
8512
|
-
created: Date;
|
|
8513
|
-
createdBy: string;
|
|
8514
|
-
createdById: string;
|
|
8515
|
-
updatedBy?: string | null;
|
|
8516
|
-
updatedById?: string | null;
|
|
8517
|
-
}
|
|
8518
|
-
export type AmcMaterialCheckStatus = "WaitingForProcessing" | "Processing" | "Draft" | "Approved" | "Rejected" | "NotSet";
|
|
8519
|
-
export interface AmcMaterialChecksPageRequestDto {
|
|
8520
|
-
pageSize?: number | null;
|
|
8521
|
-
orderBy?: AmcMaterialChecksOrderByColumn | null;
|
|
8522
|
-
searchTerm?: string | null;
|
|
8523
|
-
originalReportFilter?: string | null;
|
|
8524
|
-
generatedReportFilter?: string | null;
|
|
8525
|
-
customerFilter?: string | null;
|
|
8526
|
-
projectFilter?: string | null;
|
|
8527
|
-
purchaseOrderFilter?: string | null;
|
|
8528
|
-
workOrderFilter?: string | null;
|
|
8529
|
-
certificateTypeFilter?: string | null;
|
|
8530
|
-
lineFilter?: string | null;
|
|
8531
|
-
itemFilter?: string | null;
|
|
8532
|
-
heatFilter?: string | null;
|
|
8533
|
-
lotFilter?: string | null;
|
|
8534
|
-
dateFromFilter?: Date | null;
|
|
8535
|
-
dateToFilter?: Date | null;
|
|
8536
|
-
statusFilter: AmcMaterialCheckStatus[];
|
|
8537
|
-
continuationToken?: string | null;
|
|
8538
|
-
}
|
|
8539
|
-
export type AmcMaterialChecksOrderByColumn = "OriginalReport" | "GeneratedReport" | "Customer" | "Project" | "PurchaseOrder" | "WorkOrder" | "CertificateType" | "Line" | "Item" | "Heat" | "Lot" | "Date" | "Status" | "NotSet";
|
|
8540
|
-
export interface AmcMaterialCheckDto {
|
|
8541
|
-
materialCheckId: string;
|
|
8542
|
-
originalMaterialCertificate: FileDto;
|
|
8543
|
-
generatedMaterialCertificate?: FileDto | null;
|
|
8544
|
-
customer?: string | null;
|
|
8545
|
-
project?: string | null;
|
|
8546
|
-
workOrder?: string | null;
|
|
8547
|
-
certificateTypeId?: string | null;
|
|
8548
|
-
certificateTypeVersion?: number | null;
|
|
8549
|
-
certificateTypeName?: string | null;
|
|
8550
|
-
specificationId: string;
|
|
8551
|
-
specificationVersion: number;
|
|
8552
|
-
specificationName: string;
|
|
8553
|
-
purchaseOrder?: string | null;
|
|
8554
|
-
purchaseOrderLine?: string | null;
|
|
8555
|
-
purchaseOrderItem?: string | null;
|
|
8556
|
-
purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
|
|
8557
|
-
purchaseOrderLot?: string | null;
|
|
8558
|
-
status: AmcMaterialCheckStatus;
|
|
8559
|
-
created: Date;
|
|
8560
|
-
createdBy: string;
|
|
8561
|
-
createdById: string;
|
|
8562
|
-
updatedBy?: string | null;
|
|
8563
|
-
updatedById?: string | null;
|
|
8564
|
-
certificateTypeResults: AmcCertificateTypeResultsDto;
|
|
8565
|
-
specificationChemistry: AmcSpecificationChemistryResultsDto;
|
|
8566
|
-
specificationMechanical: AmcSpecificationMechanicalResultsDto;
|
|
8567
|
-
specificationFerrite: AmcSpecificationFerriteResultsDto;
|
|
8568
|
-
specificationHeat: AmcSpecificationHeatTreatmentResultsDto;
|
|
8569
|
-
}
|
|
8570
|
-
export interface AmcCertificateTypeResultsDto {
|
|
8571
|
-
manufacturer: AmcCertificateTypeManufacturerResultsDto;
|
|
8572
|
-
signature: AmcCertificateTypeSignatureResultsDto;
|
|
8573
|
-
thirdParty: AmcCertificateTypeThirdPartyResultsDto;
|
|
8574
|
-
certification: AmcCertificateTypeCertificationResultsDto;
|
|
8575
|
-
productAndOrderInformation: AmcCertificateTypeProductAndOrderInformationResultsDto;
|
|
8576
|
-
testMethodsAndReferences: AmcCertificateTypeTestMethodsAndReferencesResultsDto;
|
|
8577
|
-
testResults: AmcCertificateTypeTestResultsResultsDto;
|
|
8578
|
-
documentTypes: AmcCertificateTypeDocumentTypesResultsDto;
|
|
8579
|
-
}
|
|
8580
|
-
export interface AmcCertificateTypeManufacturerResultsDto {
|
|
8581
|
-
manufacturer?: AmcCertificateTypeResultLine | null;
|
|
8582
|
-
address?: AmcCertificateTypeResultLine | null;
|
|
8583
|
-
contact?: AmcCertificateTypeResultLine | null;
|
|
8584
|
-
}
|
|
8585
|
-
export interface AmcCertificateTypeResultLine {
|
|
8586
|
-
found?: boolean;
|
|
8587
|
-
readValue?: string | null;
|
|
8588
|
-
override?: AmcResultLineOverrideDto | null;
|
|
8589
|
-
}
|
|
8590
|
-
export interface AmcResultLineOverrideDto {
|
|
8591
|
-
approved: boolean;
|
|
8592
|
-
comment?: string | null;
|
|
8593
|
-
updated: Date;
|
|
8594
|
-
updatedBy: string;
|
|
8595
|
-
updatedById: string;
|
|
8596
|
-
}
|
|
8597
|
-
export interface AmcCertificateTypeSignatureResultsDto {
|
|
8598
|
-
certifiedBy?: AmcCertificateTypeResultLine | null;
|
|
8599
|
-
position?: AmcCertificateTypeResultLine | null;
|
|
8600
|
-
signature?: AmcCertificateTypeResultLine | null;
|
|
8601
|
-
date?: AmcCertificateTypeResultLine | null;
|
|
8602
|
-
stamp?: AmcCertificateTypeResultLine | null;
|
|
8603
|
-
}
|
|
8604
|
-
export interface AmcCertificateTypeThirdPartyResultsDto {
|
|
8605
|
-
inspectionBody?: AmcCertificateTypeResultLine | null;
|
|
8606
|
-
inspectorName?: AmcCertificateTypeResultLine | null;
|
|
8607
|
-
position?: AmcCertificateTypeResultLine | null;
|
|
8608
|
-
verificationMethod?: AmcCertificateTypeResultLine | null;
|
|
8609
|
-
signature?: AmcCertificateTypeResultLine | null;
|
|
8610
|
-
date?: AmcCertificateTypeResultLine | null;
|
|
8611
|
-
stamp?: AmcCertificateTypeResultLine | null;
|
|
8612
|
-
}
|
|
8613
|
-
export interface AmcCertificateTypeCertificationResultsDto {
|
|
8614
|
-
certificateOfCompliance?: AmcCertificateTypeResultLine | null;
|
|
8615
|
-
inspectionCertificate?: AmcCertificateTypeResultLine | null;
|
|
8616
|
-
}
|
|
8617
|
-
export interface AmcCertificateTypeProductAndOrderInformationResultsDto {
|
|
8618
|
-
productDescription?: AmcCertificateTypeResultLine | null;
|
|
8619
|
-
materialGrade?: AmcCertificateTypeResultLine | null;
|
|
8620
|
-
customer?: AmcCertificateTypeResultLine | null;
|
|
8621
|
-
customerOrderNumber?: AmcCertificateTypeResultLine | null;
|
|
8622
|
-
dimensionsOrWeight?: AmcCertificateTypeResultLine | null;
|
|
8623
|
-
batchNumber?: AmcCertificateTypeResultLine | null;
|
|
8624
|
-
heatNumber?: AmcCertificateTypeResultLine | null;
|
|
8625
|
-
relatedStandards?: AmcCertificateTypeResultLine | null;
|
|
8626
|
-
}
|
|
8627
|
-
export interface AmcCertificateTypeTestMethodsAndReferencesResultsDto {
|
|
8628
|
-
usedStandards?: AmcCertificateTypeResultLine | null;
|
|
8629
|
-
}
|
|
8630
|
-
export interface AmcCertificateTypeTestResultsResultsDto {
|
|
8631
|
-
mechanicalProperties?: AmcCertificateTypeResultLine | null;
|
|
8632
|
-
chemicalAnalysis?: AmcCertificateTypeResultLine | null;
|
|
8633
|
-
impactTests?: AmcCertificateTypeResultLine | null;
|
|
8634
|
-
corrosionTests?: AmcCertificateTypeResultLine | null;
|
|
8635
|
-
ferriteContentAndMicrostructure?: AmcCertificateTypeResultLine | null;
|
|
8636
|
-
}
|
|
8637
|
-
export interface AmcCertificateTypeDocumentTypesResultsDto {
|
|
8638
|
-
heatTreatmentCertificate?: AmcCertificateTypeResultLine | null;
|
|
8639
|
-
ultrasonicControlCertificate?: AmcCertificateTypeResultLine | null;
|
|
8640
|
-
liquidPenetrantCertificate?: AmcCertificateTypeResultLine | null;
|
|
8641
|
-
testReport?: AmcCertificateTypeResultLine | null;
|
|
8642
|
-
dimensionalReport?: AmcCertificateTypeResultLine | null;
|
|
8643
|
-
dyePenetrantReport?: AmcCertificateTypeResultLine | null;
|
|
8644
|
-
visualReport?: AmcCertificateTypeResultLine | null;
|
|
8645
|
-
certificateOfAnalyticalAndMechanicalTests?: AmcCertificateTypeResultLine | null;
|
|
8646
|
-
certificateOfTest?: AmcCertificateTypeResultLine | null;
|
|
8647
|
-
technicalReport?: AmcCertificateTypeResultLine | null;
|
|
8648
|
-
microExaminationReport?: AmcCertificateTypeResultLine | null;
|
|
8649
|
-
radiologicalReport?: AmcCertificateTypeResultLine | null;
|
|
8650
|
-
}
|
|
8651
|
-
export interface AmcSpecificationChemistryResultsDto {
|
|
8652
|
-
carbon?: AmcSpecificationResultLineDto | null;
|
|
8653
|
-
manganese?: AmcSpecificationResultLineDto | null;
|
|
8654
|
-
silicon?: AmcSpecificationResultLineDto | null;
|
|
8655
|
-
phosphorus?: AmcSpecificationResultLineDto | null;
|
|
8656
|
-
sulfur?: AmcSpecificationResultLineDto | null;
|
|
8657
|
-
chromium?: AmcSpecificationResultLineDto | null;
|
|
8658
|
-
nickel?: AmcSpecificationResultLineDto | null;
|
|
8659
|
-
molybdenum?: AmcSpecificationResultLineDto | null;
|
|
8660
|
-
copper?: AmcSpecificationResultLineDto | null;
|
|
8661
|
-
nitrogen?: AmcSpecificationResultLineDto | null;
|
|
8662
|
-
wolfram?: AmcSpecificationResultLineDto | null;
|
|
8663
|
-
iron?: AmcSpecificationResultLineDto | null;
|
|
8664
|
-
}
|
|
8665
|
-
export interface AmcSpecificationResultLineDto {
|
|
8666
|
-
specificationOperator?: string | null;
|
|
8667
|
-
specificationValue1?: number | null;
|
|
8668
|
-
specificationValue2?: number | null;
|
|
8669
|
-
specificationSymbol?: string | null;
|
|
8670
|
-
readValue?: string | null;
|
|
8671
|
-
status: AmcSpecificationResultLineStatus;
|
|
8672
|
-
override?: AmcResultLineOverrideDto | null;
|
|
8673
|
-
}
|
|
8674
|
-
export type AmcSpecificationResultLineStatus = "NotFound" | "NotOk" | "Ok" | "NotSet";
|
|
8675
|
-
export interface AmcSpecificationMechanicalResultsDto {
|
|
8676
|
-
yieldStrength?: AmcSpecificationResultLineDto | null;
|
|
8677
|
-
tensileStrength?: AmcSpecificationResultLineDto | null;
|
|
8678
|
-
elongation?: AmcSpecificationResultLineDto | null;
|
|
8679
|
-
reductionOfArea?: AmcSpecificationResultLineDto | null;
|
|
8680
|
-
impactEnergy?: AmcSpecificationResultLineDto | null;
|
|
8681
|
-
hardness?: AmcSpecificationResultLineDto | null;
|
|
8682
|
-
}
|
|
8683
|
-
export interface AmcSpecificationFerriteResultsDto {
|
|
8684
|
-
ferriteContent?: AmcSpecificationFerriteResultLineDto | null;
|
|
8685
|
-
}
|
|
8686
|
-
export interface AmcSpecificationFerriteResultLineDto {
|
|
8687
|
-
specificationOperator?: string | null;
|
|
8688
|
-
specificationValue1?: string | null;
|
|
8689
|
-
specificationValue2?: string | null;
|
|
8690
|
-
specificationSymbol?: string | null;
|
|
8691
|
-
readValue?: string | null;
|
|
8692
|
-
status: AmcSpecificationResultLineStatus;
|
|
8693
|
-
override?: AmcResultLineOverrideDto | null;
|
|
8694
|
-
measurementMethod?: string | null;
|
|
8695
|
-
}
|
|
8696
|
-
export interface AmcSpecificationHeatTreatmentResultsDto {
|
|
8697
|
-
heatTreatments: AmcSpecificationHeatTreatmentsResultLineDto[];
|
|
8698
|
-
}
|
|
8699
|
-
export interface AmcSpecificationHeatTreatmentsResultLineDto {
|
|
8700
|
-
heatingMethod: AmcHeatingTreatmentMethod;
|
|
8701
|
-
specificationHeatingTreatmentTemperature?: number | null;
|
|
8702
|
-
specificationHeatingHoldingTime?: number | null;
|
|
8703
|
-
heatingTreatmentTemperature?: number | null;
|
|
8704
|
-
heatingHoldingTime?: number | null;
|
|
8705
|
-
specificationCoolingMethods?: AmcCoolingTreatmentMethod[] | null;
|
|
8706
|
-
specificationCoolingTreatmentTemperature?: number | null;
|
|
8707
|
-
specificationCoolingHoldingTime?: number | null;
|
|
8708
|
-
coolingMethod?: AmcCoolingTreatmentMethod | null;
|
|
8709
|
-
coolingTreatmentTemperature?: number | null;
|
|
8710
|
-
coolingHoldingTime?: number | null;
|
|
8711
|
-
status: AmcSpecificationResultLineStatus;
|
|
8712
|
-
override?: AmcResultLineOverrideDto | null;
|
|
8713
|
-
}
|
|
8714
|
-
export type AmcHeatingTreatmentMethod = "Annealing" | "Normalizing" | "Quenching" | "Tempering" | "StressRelieving" | "SolutionTreating" | "Aging" | "Austempering" | "Martempering" | "NotSet";
|
|
8715
|
-
export type AmcCoolingTreatmentMethod = "AirCooling" | "OilQuenching" | "WaterQuenching" | "FurnaceCooling" | "AirBlastCooling" | "PolymerQuenching" | "NotSet";
|
|
8716
|
-
export interface ProcessAmcCheckRequestDto {
|
|
8717
|
-
files: UploadFileDto[];
|
|
8718
|
-
specificationId: string;
|
|
8719
|
-
specificationVersion: string;
|
|
8720
|
-
certificateTypeId?: string | null;
|
|
8721
|
-
certificateTypeVersion?: string | null;
|
|
8722
|
-
purchaseOrder?: string | null;
|
|
8723
|
-
}
|
|
8724
|
-
export interface AmcUpdateResultRequestDto {
|
|
8725
|
-
certificateId: string;
|
|
8726
|
-
project?: string | null;
|
|
8727
|
-
purchaseOrder?: string | null;
|
|
8728
|
-
workOrder?: string | null;
|
|
8729
|
-
certificateTypeSection: AmcUpdateCertificateTypeResultsDto;
|
|
8730
|
-
specificationChemistrySpecification: AmcUpdateSpecificationChemistryResultsDto;
|
|
8731
|
-
specificationMechanicalSpecification: AmcUpdateSpecificationMechanicalResultsDto;
|
|
8732
|
-
specificationFerriteSpecification: AmcUpdateSpecificationFerriteResultsDto;
|
|
8733
|
-
specificationHeatSpecification: AmcUpdateSpecificationHeatTreatmentResultsDto;
|
|
8734
|
-
}
|
|
8735
|
-
export interface AmcUpdateCertificateTypeResultsDto {
|
|
8736
|
-
manufacturer: AmcUpdateCertificateTypeManufacturerResultsDto;
|
|
8737
|
-
signature: AmcUpdateCertificateTypeSignatureResultsDto;
|
|
8738
|
-
thirdParty: AmcUpdateCertificateTypeThirdPartyResultsDto;
|
|
8739
|
-
certification: AmcUpdateCertificateTypeCertificationResultsDto;
|
|
8740
|
-
certificateTypeProductAndOrderInformation: AmcUpdateCertificateTypeProductAndOrderInformationResultsDto;
|
|
8741
|
-
testMethodsAndReferences: AmcUpdateCertificateTypeTestMethodsAndReferencesResultsDto;
|
|
8742
|
-
testResults: AmcUpdateCertificateTypeTestResultsResultsDto;
|
|
8743
|
-
documentTypes: AmcUpdateCertificateTypeDocumentTypesResultsDto;
|
|
8744
|
-
}
|
|
8745
|
-
export interface AmcUpdateCertificateTypeManufacturerResultsDto {
|
|
8746
|
-
manufacturer?: AmcUpdateCertificateTypeResultLine | null;
|
|
8747
|
-
address?: AmcUpdateCertificateTypeResultLine | null;
|
|
8748
|
-
contact?: AmcUpdateCertificateTypeResultLine | null;
|
|
8749
|
-
}
|
|
8750
|
-
export interface AmcUpdateCertificateTypeResultLine {
|
|
8751
|
-
approved?: boolean | null;
|
|
8752
|
-
comment?: string | null;
|
|
8753
|
-
}
|
|
8754
|
-
export interface AmcUpdateCertificateTypeSignatureResultsDto {
|
|
8755
|
-
certifiedBy?: AmcUpdateCertificateTypeResultLine | null;
|
|
8756
|
-
position?: AmcUpdateCertificateTypeResultLine | null;
|
|
8757
|
-
signature?: AmcUpdateCertificateTypeResultLine | null;
|
|
8758
|
-
date?: AmcUpdateCertificateTypeResultLine | null;
|
|
8759
|
-
stamp?: AmcUpdateCertificateTypeResultLine | null;
|
|
8760
|
-
}
|
|
8761
|
-
export interface AmcUpdateCertificateTypeThirdPartyResultsDto {
|
|
8762
|
-
inspectionBody?: AmcUpdateCertificateTypeResultLine | null;
|
|
8763
|
-
inspectorName?: AmcUpdateCertificateTypeResultLine | null;
|
|
8764
|
-
position?: AmcUpdateCertificateTypeResultLine | null;
|
|
8765
|
-
verificationMethod?: AmcUpdateCertificateTypeResultLine | null;
|
|
8766
|
-
signature?: AmcUpdateCertificateTypeResultLine | null;
|
|
8767
|
-
date?: AmcUpdateCertificateTypeResultLine | null;
|
|
8768
|
-
stamp?: AmcUpdateCertificateTypeResultLine | null;
|
|
8769
|
-
}
|
|
8770
|
-
export interface AmcUpdateCertificateTypeCertificationResultsDto {
|
|
8771
|
-
certificateOfCompliance?: AmcUpdateCertificateTypeResultLine | null;
|
|
8772
|
-
inspectionCertificate?: AmcUpdateCertificateTypeResultLine | null;
|
|
8773
|
-
}
|
|
8774
|
-
export interface AmcUpdateCertificateTypeProductAndOrderInformationResultsDto {
|
|
8775
|
-
productDescription?: AmcUpdateCertificateTypeResultLine | null;
|
|
8776
|
-
materialGrade?: AmcUpdateCertificateTypeResultLine | null;
|
|
8777
|
-
customer?: AmcUpdateCertificateTypeResultLine | null;
|
|
8778
|
-
customerOrderNumber?: AmcUpdateCertificateTypeResultLine | null;
|
|
8779
|
-
dimensionsOrWeight?: AmcUpdateCertificateTypeResultLine | null;
|
|
8780
|
-
batchNumber?: AmcUpdateCertificateTypeResultLine | null;
|
|
8781
|
-
heatNumber?: AmcUpdateCertificateTypeResultLine | null;
|
|
8782
|
-
relatedStandards?: AmcUpdateCertificateTypeResultLine | null;
|
|
8783
|
-
}
|
|
8784
|
-
export interface AmcUpdateCertificateTypeTestMethodsAndReferencesResultsDto {
|
|
8785
|
-
usedStandards?: AmcUpdateCertificateTypeResultLine | null;
|
|
8786
|
-
}
|
|
8787
|
-
export interface AmcUpdateCertificateTypeTestResultsResultsDto {
|
|
8788
|
-
mechanicalProperties?: AmcUpdateCertificateTypeResultLine | null;
|
|
8789
|
-
chemicalAnalysis?: AmcUpdateCertificateTypeResultLine | null;
|
|
8790
|
-
impactTests?: AmcUpdateCertificateTypeResultLine | null;
|
|
8791
|
-
corrosionTests?: AmcUpdateCertificateTypeResultLine | null;
|
|
8792
|
-
ferriteContentAndMicrostructure?: AmcUpdateCertificateTypeResultLine | null;
|
|
8793
|
-
}
|
|
8794
|
-
export interface AmcUpdateCertificateTypeDocumentTypesResultsDto {
|
|
8795
|
-
heatTreatmentCertificate?: AmcUpdateCertificateTypeResultLine | null;
|
|
8796
|
-
ultrasonicControlCertificate?: AmcUpdateCertificateTypeResultLine | null;
|
|
8797
|
-
liquidPenetrantCertificate?: AmcUpdateCertificateTypeResultLine | null;
|
|
8798
|
-
testReport?: AmcUpdateCertificateTypeResultLine | null;
|
|
8799
|
-
dimensionalReport?: AmcUpdateCertificateTypeResultLine | null;
|
|
8800
|
-
dyePenetrantReport?: AmcUpdateCertificateTypeResultLine | null;
|
|
8801
|
-
visualReport?: AmcUpdateCertificateTypeResultLine | null;
|
|
8802
|
-
certificateOfAnalyticalAndMechanicalTests?: AmcUpdateCertificateTypeResultLine | null;
|
|
8803
|
-
certificateOfTest?: AmcUpdateCertificateTypeResultLine | null;
|
|
8804
|
-
technicalReport?: AmcUpdateCertificateTypeResultLine | null;
|
|
8805
|
-
microExaminationReport?: AmcUpdateCertificateTypeResultLine | null;
|
|
8806
|
-
radiologicalReport?: AmcUpdateCertificateTypeResultLine | null;
|
|
8807
|
-
}
|
|
8808
|
-
export interface AmcUpdateSpecificationChemistryResultsDto {
|
|
8809
|
-
carbon?: AmcUpdateSpecificationResultLineDto | null;
|
|
8810
|
-
manganese?: AmcUpdateSpecificationResultLineDto | null;
|
|
8811
|
-
silicon?: AmcUpdateSpecificationResultLineDto | null;
|
|
8812
|
-
phosphorus?: AmcUpdateSpecificationResultLineDto | null;
|
|
8813
|
-
sulfur?: AmcUpdateSpecificationResultLineDto | null;
|
|
8814
|
-
chromium?: AmcUpdateSpecificationResultLineDto | null;
|
|
8815
|
-
nickel?: AmcUpdateSpecificationResultLineDto | null;
|
|
8816
|
-
molybdenum?: AmcUpdateSpecificationResultLineDto | null;
|
|
8817
|
-
copper?: AmcUpdateSpecificationResultLineDto | null;
|
|
8818
|
-
nitrogen?: AmcUpdateSpecificationResultLineDto | null;
|
|
8819
|
-
wolfram?: AmcUpdateSpecificationResultLineDto | null;
|
|
8820
|
-
iron?: AmcUpdateSpecificationResultLineDto | null;
|
|
8821
|
-
}
|
|
8822
|
-
export interface AmcUpdateSpecificationResultLineDto {
|
|
8823
|
-
approved?: boolean;
|
|
8824
|
-
comment?: string | null;
|
|
8825
|
-
}
|
|
8826
|
-
export interface AmcUpdateSpecificationMechanicalResultsDto {
|
|
8827
|
-
yieldStrength?: AmcUpdateSpecificationResultLineDto | null;
|
|
8828
|
-
tensileStrength?: AmcUpdateSpecificationResultLineDto | null;
|
|
8829
|
-
elongation?: AmcUpdateSpecificationResultLineDto | null;
|
|
8830
|
-
reductionOfArea?: AmcUpdateSpecificationResultLineDto | null;
|
|
8831
|
-
impactEnergy?: AmcUpdateSpecificationResultLineDto | null;
|
|
8832
|
-
hardness?: AmcUpdateSpecificationResultLineDto | null;
|
|
8833
|
-
}
|
|
8834
|
-
export interface AmcUpdateSpecificationFerriteResultsDto {
|
|
8835
|
-
ferriteContent?: AmcUpdateSpecificationResultLineDto | null;
|
|
8836
|
-
}
|
|
8837
|
-
export interface AmcUpdateSpecificationHeatTreatmentResultsDto {
|
|
8838
|
-
heatTreatmentOverrides: (AmcUpdateSpecificationResultLineDto | null)[];
|
|
8839
|
-
}
|
|
8840
|
-
export interface AmcCdfEntityReadBase {
|
|
8841
|
-
}
|
|
8842
|
-
export interface AmcSpecificationLiteDto extends AmcCdfEntityReadBase {
|
|
8843
|
-
specificationId: string;
|
|
8844
|
-
version: number;
|
|
8845
|
-
name: string;
|
|
8846
|
-
number: string;
|
|
8847
|
-
revision: string;
|
|
8848
|
-
date: Date;
|
|
8849
|
-
status: AmcSpecificationStatus;
|
|
8850
|
-
summary?: string | null;
|
|
8851
|
-
relatedStandards: string[];
|
|
8852
|
-
created: Date;
|
|
8853
|
-
createdBy: string;
|
|
8854
|
-
createdById: string;
|
|
8855
|
-
updatedBy: string;
|
|
8856
|
-
updatedById: string;
|
|
8857
|
-
}
|
|
8858
|
-
export type AmcSpecificationStatus = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
|
|
8859
|
-
export interface AmcSpecificationDto extends AmcCdfEntityReadBase {
|
|
8860
|
-
specificationId: string;
|
|
8861
|
-
version: number;
|
|
8862
|
-
allVersions: AmcSpecificationVersionDto[];
|
|
8863
|
-
name: string;
|
|
8864
|
-
number: string;
|
|
8865
|
-
revision: string;
|
|
8866
|
-
date: Date;
|
|
8867
|
-
status: AmcSpecificationStatus;
|
|
8868
|
-
summary?: string | null;
|
|
8869
|
-
relatedStandards: string[];
|
|
8870
|
-
created: Date;
|
|
8871
|
-
createdBy: string;
|
|
8872
|
-
createdById: string;
|
|
8873
|
-
updatedBy: string;
|
|
8874
|
-
updatedById: string;
|
|
8875
|
-
updated: Date;
|
|
8876
|
-
chemistrySpecification: AmcChemistrySpecificationDto;
|
|
8877
|
-
mechanicalSpecification: AmcMechanicalSpecificationDto;
|
|
8878
|
-
ferriteSpecification: AmcFerriteSpecificationDto;
|
|
8879
|
-
heatSpecification: AmcHeatTreatmentSpecificationDto;
|
|
8880
|
-
}
|
|
8881
|
-
export interface AmcSpecificationVersionDto {
|
|
8882
|
-
version?: number;
|
|
8883
|
-
status?: AmcSpecificationStatus;
|
|
8884
|
-
}
|
|
8885
|
-
export interface AmcChemistrySpecificationDto extends AmcCdfEntityReadBase {
|
|
8886
|
-
carbon?: AmcSpecificationLineDto | null;
|
|
8887
|
-
manganese?: AmcSpecificationLineDto | null;
|
|
8888
|
-
silicon?: AmcSpecificationLineDto | null;
|
|
8889
|
-
phosphorus?: AmcSpecificationLineDto | null;
|
|
8890
|
-
sulfur?: AmcSpecificationLineDto | null;
|
|
8891
|
-
chromium?: AmcSpecificationLineDto | null;
|
|
8892
|
-
nickel?: AmcSpecificationLineDto | null;
|
|
8893
|
-
molybdenum?: AmcSpecificationLineDto | null;
|
|
8894
|
-
copper?: AmcSpecificationLineDto | null;
|
|
8895
|
-
nitrogen?: AmcSpecificationLineDto | null;
|
|
8896
|
-
wolfram?: AmcSpecificationLineDto | null;
|
|
8897
|
-
iron?: AmcSpecificationLineDto | null;
|
|
8898
|
-
}
|
|
8899
|
-
export interface AmcSpecificationLineDto extends AmcCdfEntityReadBase {
|
|
8900
|
-
operator: AmcSpecificationOperator;
|
|
8901
|
-
value1: number;
|
|
8902
|
-
value2?: number | null;
|
|
8903
|
-
symbol: AmcSpecificationSymbol;
|
|
8904
|
-
}
|
|
8905
|
-
export type AmcSpecificationOperator = "Equal" | "GreaterThan" | "LessThan" | "GreaterThanOrEqual" | "LessThanOrEqual" | "Min" | "Max" | "Between" | "NotSet";
|
|
8906
|
-
export type AmcSpecificationSymbol = "Percentage" | "Joule" | "Celsius" | "Farenheit" | "Mpa" | "Hbw" | "NotSet";
|
|
8907
|
-
export interface AmcMechanicalSpecificationDto extends AmcCdfEntityReadBase {
|
|
8908
|
-
yieldStrength?: AmcSpecificationLineDto | null;
|
|
8909
|
-
tensileStrength?: AmcSpecificationLineDto | null;
|
|
8910
|
-
elongation?: AmcSpecificationLineDto | null;
|
|
8911
|
-
reductionOfArea?: AmcSpecificationLineDto | null;
|
|
8912
|
-
impactEnergy?: AmcSpecificationLineDto | null;
|
|
8913
|
-
hardness?: AmcSpecificationLineDto | null;
|
|
8914
|
-
}
|
|
8915
|
-
export interface AmcFerriteSpecificationDto extends AmcCdfEntityReadBase {
|
|
8916
|
-
ferriteContent?: AmcSpecificationLineDto | null;
|
|
8917
|
-
}
|
|
8918
|
-
export interface AmcHeatTreatmentSpecificationDto {
|
|
8919
|
-
heatTreatments: AmcHeatTreatmentsSpecificationDto[];
|
|
8920
|
-
}
|
|
8921
|
-
export interface AmcHeatTreatmentsSpecificationDto {
|
|
8922
|
-
heatingMethod: AmcHeatingTreatmentMethod;
|
|
8923
|
-
heatingTreatmentTemperature?: number | null;
|
|
8924
|
-
heatingHoldingTime?: number | null;
|
|
8925
|
-
coolingMethods?: AmcCoolingTreatmentMethod[] | null;
|
|
8926
|
-
coolingTreatmentTemperature?: number | null;
|
|
8927
|
-
coolingHoldingTime?: number | null;
|
|
8928
|
-
}
|
|
8929
|
-
export interface CreateAmcSpecificationDto {
|
|
8930
|
-
specificationName: string;
|
|
8931
|
-
specificationNumber: string;
|
|
8932
|
-
revision: string;
|
|
8933
|
-
date: Date;
|
|
8934
|
-
specificationFile?: UploadFileDto | null;
|
|
8935
|
-
}
|
|
8936
|
-
export interface AmcUpdateSpecificationDto {
|
|
8937
|
-
name?: string | null;
|
|
8938
|
-
number?: string | null;
|
|
8939
|
-
status?: AmcSpecificationStatusUpdate | null;
|
|
8940
|
-
summary?: string | null;
|
|
8941
|
-
relatedStandards?: string[] | null;
|
|
8942
|
-
chemistrySpecification?: AmcChemistrySpecificationDto | null;
|
|
8943
|
-
mechanicalSpecification?: AmcMechanicalSpecificationDto | null;
|
|
8944
|
-
ferriteSpecification?: AmcFerriteSpecificationDto | null;
|
|
8945
|
-
heatSpecification?: AmcHeatTreatmentSpecificationDto | null;
|
|
8946
|
-
}
|
|
8947
|
-
export type AmcSpecificationStatusUpdate = "NotModified" | "Released" | "Obsolete";
|
|
8948
|
-
export interface AmcCertificateTypeLiteDto extends AmcCdfEntityReadBase {
|
|
8949
|
-
certificateTypeId: string;
|
|
8950
|
-
version: number;
|
|
8951
|
-
name: string;
|
|
8952
|
-
revision: string;
|
|
8953
|
-
status: AmcCertificateTypeStatus;
|
|
8954
|
-
description?: string | null;
|
|
8955
|
-
isStandardCertificateType: boolean;
|
|
8956
|
-
created: Date;
|
|
8957
|
-
createdBy: string;
|
|
8958
|
-
createdById: string;
|
|
8959
|
-
updatedBy?: string | null;
|
|
8960
|
-
updatedById?: string | null;
|
|
8961
|
-
updated: Date;
|
|
8962
|
-
}
|
|
8963
|
-
export type AmcCertificateTypeStatus = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
|
|
8964
|
-
export interface AmcCertificateTypeDto extends AmcCdfEntityReadBase {
|
|
8965
|
-
certificateTypeId: string;
|
|
8966
|
-
version: number;
|
|
8967
|
-
allVersions: AmcCertificateTypeVersionDto[];
|
|
8968
|
-
name: string;
|
|
8969
|
-
revision: string;
|
|
8970
|
-
status: AmcCertificateTypeStatus;
|
|
8971
|
-
description?: string | null;
|
|
8972
|
-
isStandardCertificateType: boolean;
|
|
8973
|
-
created: Date;
|
|
8974
|
-
createdBy: string;
|
|
8975
|
-
createdById: string;
|
|
8976
|
-
updatedBy?: string | null;
|
|
8977
|
-
updatedById?: string | null;
|
|
8978
|
-
updated: Date;
|
|
8979
|
-
requirements: AmcCertificateTypeRequirementsDto;
|
|
8980
|
-
}
|
|
8981
|
-
export interface AmcCertificateTypeVersionDto {
|
|
8982
|
-
version?: number;
|
|
8983
|
-
status?: AmcCertificateTypeStatus;
|
|
8984
|
-
}
|
|
8985
|
-
export interface AmcCertificateTypeRequirementsDto {
|
|
8986
|
-
manufacturer: AmcCertificateTypeManufacturerRequirementsDto;
|
|
8987
|
-
signature: AmcCertificateTypeSignatureRequirementsDto;
|
|
8988
|
-
thirdParty: AmcCertificateTypeThirdPartyRequirementsDto;
|
|
8989
|
-
certification: AmcCertificateTypeCertificationRequirementsDto;
|
|
8990
|
-
productAndOrderInformation: AmcCertificateTypeProductAndOrderInformationRequirementsDto;
|
|
8991
|
-
testMethodsAndReferences: AmcCertificateTypeTestMethodsAndReferencesRequirementsDto;
|
|
8992
|
-
testResults: AmcCertificateTypeTestResultsRequirementsDto;
|
|
8993
|
-
documentTypes: AmcCertificateTypeDocumentTypesRequirementsDto;
|
|
8994
|
-
}
|
|
8995
|
-
export interface AmcCertificateTypeManufacturerRequirementsDto extends AmcCdfEntityReadBase {
|
|
8996
|
-
manufacturer?: boolean;
|
|
8997
|
-
address?: boolean;
|
|
8998
|
-
contact?: boolean;
|
|
8999
|
-
}
|
|
9000
|
-
export interface AmcCertificateTypeSignatureRequirementsDto extends AmcCdfEntityReadBase {
|
|
9001
|
-
certifiedBy?: boolean;
|
|
9002
|
-
position?: boolean;
|
|
9003
|
-
signature?: boolean;
|
|
9004
|
-
date?: boolean;
|
|
9005
|
-
stamp?: boolean;
|
|
9006
|
-
}
|
|
9007
|
-
export interface AmcCertificateTypeThirdPartyRequirementsDto extends AmcCdfEntityReadBase {
|
|
9008
|
-
inspectionBody?: boolean;
|
|
9009
|
-
inspectorName?: boolean;
|
|
9010
|
-
position?: boolean;
|
|
9011
|
-
verificationMethod?: boolean;
|
|
9012
|
-
signature?: boolean;
|
|
9013
|
-
date?: boolean;
|
|
9014
|
-
stamp?: boolean;
|
|
9015
|
-
}
|
|
9016
|
-
export interface AmcCertificateTypeCertificationRequirementsDto extends AmcCdfEntityReadBase {
|
|
9017
|
-
certificateOfCompliance?: boolean;
|
|
9018
|
-
inspectionCertificate?: boolean;
|
|
9019
|
-
}
|
|
9020
|
-
export interface AmcCertificateTypeProductAndOrderInformationRequirementsDto extends AmcCdfEntityReadBase {
|
|
9021
|
-
productDescription?: boolean;
|
|
9022
|
-
materialGrade?: boolean;
|
|
9023
|
-
customer?: boolean;
|
|
9024
|
-
customerOrderNumber?: boolean;
|
|
9025
|
-
dimensionsOrWeight?: boolean;
|
|
9026
|
-
batchNumber?: boolean;
|
|
9027
|
-
heatNumber?: boolean;
|
|
9028
|
-
relatedStandards?: boolean;
|
|
9029
|
-
}
|
|
9030
|
-
export interface AmcCertificateTypeTestMethodsAndReferencesRequirementsDto extends AmcCdfEntityReadBase {
|
|
9031
|
-
usedStandards?: boolean;
|
|
9032
|
-
}
|
|
9033
|
-
export interface AmcCertificateTypeTestResultsRequirementsDto extends AmcCdfEntityReadBase {
|
|
9034
|
-
mechanicalProperties?: boolean;
|
|
9035
|
-
chemicalAnalysis?: boolean;
|
|
9036
|
-
impactTests?: boolean;
|
|
9037
|
-
corrosionTests?: boolean;
|
|
9038
|
-
ferriteContentAndMicrostructure?: boolean;
|
|
9039
|
-
}
|
|
9040
|
-
export interface AmcCertificateTypeDocumentTypesRequirementsDto extends AmcCdfEntityReadBase {
|
|
9041
|
-
heatTreatmentCertificate?: boolean;
|
|
9042
|
-
ultrasonicControlCertificate?: boolean;
|
|
9043
|
-
liquidPenetrantCertificate?: boolean;
|
|
9044
|
-
testReport?: boolean;
|
|
9045
|
-
dimensionalReport?: boolean;
|
|
9046
|
-
dyePenetrantReport?: boolean;
|
|
9047
|
-
visualReport?: boolean;
|
|
9048
|
-
certificateOfAnalyticalAndMechanicalTests?: boolean;
|
|
9049
|
-
certificateOfTest?: boolean;
|
|
9050
|
-
technicalReport?: boolean;
|
|
9051
|
-
microExaminationReport?: boolean;
|
|
9052
|
-
radiologicalReport?: boolean;
|
|
9053
|
-
}
|
|
9054
|
-
export interface AmcCreateAmcCertificateTypeRequestDto {
|
|
9055
|
-
name: string;
|
|
9056
|
-
revision: string;
|
|
9057
|
-
description?: string | null;
|
|
9058
|
-
}
|
|
9059
|
-
export interface AmcUpdateAmcCertificateTypeRequestDto {
|
|
9060
|
-
name?: string | null;
|
|
9061
|
-
revision?: string | null;
|
|
9062
|
-
status?: AmcCertificateTypeStatus | null;
|
|
9063
|
-
description?: string | null;
|
|
9064
|
-
requirements?: AmcCertificateTypeRequirementsUpdateDto | null;
|
|
9065
|
-
}
|
|
9066
|
-
export interface AmcCertificateTypeRequirementsUpdateDto {
|
|
9067
|
-
manufacturer?: AmcCertificateTypeManufacturerRequirementsUpdateDto | null;
|
|
9068
|
-
signature?: AmcCertificateTypeSignatureRequirementsUpdateDto | null;
|
|
9069
|
-
thirdParty?: AmcCertificateTypeThirdPartyRequirementsUpdateDto | null;
|
|
9070
|
-
certification?: AmcCertificateTypeCertificationRequirementsUpdateDto | null;
|
|
9071
|
-
productAndOrderInformation?: AmcCertificateTypeProductAndOrderInformationRequirementsUpdateDto | null;
|
|
9072
|
-
testMethodsAndReferences?: AmcCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto | null;
|
|
9073
|
-
testResults?: AmcCertificateTypeTestResultsRequirementsUpdateDto | null;
|
|
9074
|
-
documentTypes?: AmcCertificateTypeDocumentTypesRequirementsUpdateDto | null;
|
|
9075
|
-
}
|
|
9076
|
-
export interface AmcCertificateTypeManufacturerRequirementsUpdateDto {
|
|
9077
|
-
manufacturer?: boolean | null;
|
|
9078
|
-
address?: boolean | null;
|
|
9079
|
-
contact?: boolean | null;
|
|
9080
|
-
}
|
|
9081
|
-
export interface AmcCertificateTypeSignatureRequirementsUpdateDto {
|
|
9082
|
-
certifiedBy?: boolean | null;
|
|
9083
|
-
position?: boolean | null;
|
|
9084
|
-
signature?: boolean | null;
|
|
9085
|
-
date?: boolean | null;
|
|
9086
|
-
stamp?: boolean | null;
|
|
9087
|
-
}
|
|
9088
|
-
export interface AmcCertificateTypeThirdPartyRequirementsUpdateDto {
|
|
9089
|
-
inspectionBody?: boolean | null;
|
|
9090
|
-
inspectorName?: boolean | null;
|
|
9091
|
-
position?: boolean | null;
|
|
9092
|
-
verificationMethod?: boolean | null;
|
|
9093
|
-
signature?: boolean | null;
|
|
9094
|
-
date?: boolean | null;
|
|
9095
|
-
stamp?: boolean | null;
|
|
9096
|
-
}
|
|
9097
|
-
export interface AmcCertificateTypeCertificationRequirementsUpdateDto {
|
|
9098
|
-
certificateOfCompliance?: boolean | null;
|
|
9099
|
-
inspectionCertificate?: boolean | null;
|
|
9100
|
-
}
|
|
9101
|
-
export interface AmcCertificateTypeProductAndOrderInformationRequirementsUpdateDto {
|
|
9102
|
-
productDescription?: boolean | null;
|
|
9103
|
-
materialGrade?: boolean | null;
|
|
9104
|
-
customer?: boolean | null;
|
|
9105
|
-
customerOrderNumber?: boolean | null;
|
|
9106
|
-
dimensionsOrWeight?: boolean | null;
|
|
9107
|
-
batchNumber?: boolean | null;
|
|
9108
|
-
heatNumber?: boolean | null;
|
|
9109
|
-
relatedStandards?: boolean | null;
|
|
9110
|
-
}
|
|
9111
|
-
export interface AmcCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto {
|
|
9112
|
-
usedStandards?: boolean | null;
|
|
9113
|
-
}
|
|
9114
|
-
export interface AmcCertificateTypeTestResultsRequirementsUpdateDto {
|
|
9115
|
-
mechanicalProperties?: boolean | null;
|
|
9116
|
-
chemicalAnalysis?: boolean | null;
|
|
9117
|
-
impactTests?: boolean | null;
|
|
9118
|
-
corrosionTests?: boolean | null;
|
|
9119
|
-
ferriteContentAndMicrostructure?: boolean | null;
|
|
9120
|
-
}
|
|
9121
|
-
export interface AmcCertificateTypeDocumentTypesRequirementsUpdateDto {
|
|
9122
|
-
heatTreatmentCertificate?: boolean | null;
|
|
9123
|
-
ultrasonicControlCertificate?: boolean | null;
|
|
9124
|
-
liquidPenetrantCertificate?: boolean | null;
|
|
9125
|
-
testReport?: boolean | null;
|
|
9126
|
-
dimensionalReport?: boolean | null;
|
|
9127
|
-
dyePenetrantReport?: boolean | null;
|
|
9128
|
-
visualReport?: boolean | null;
|
|
9129
|
-
certificateOfAnalyticalAndMechanicalTests?: boolean | null;
|
|
9130
|
-
certificateOfTest?: boolean | null;
|
|
9131
|
-
technicalReport?: boolean | null;
|
|
9132
|
-
microExaminationReport?: boolean | null;
|
|
9133
|
-
radiologicalReport?: boolean | null;
|
|
9134
|
-
}
|
|
9135
9144
|
export interface FileParameter {
|
|
9136
9145
|
data: any;
|
|
9137
9146
|
fileName: string;
|