@ignos/api-client 20260911.273.1 → 20260914.274.1-alpha
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/ignosportal-api.d.ts +23 -221
- package/lib/ignosportal-api.js +39 -409
- package/package.json +1 -1
- package/src/ignosportal-api.ts +65 -608
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -2654,6 +2654,7 @@ export declare class MesProductionOrderClient extends AuthorizedApiBase implemen
|
|
|
2654
2654
|
export interface IMesProductionScheduleClient {
|
|
2655
2655
|
listProductionScheduleOperations(resourceGroup: string | null | undefined, resourceId: string | null | undefined, departmentNumber: string | null | undefined, pageSize: number | undefined, continuationToken: string | null | undefined, workOrderId: string | null | undefined, projectId: string | null | undefined, partNumber: string | null | undefined, partName: string | null | undefined, material: string | null | undefined, includeDiscussionSummary: boolean | undefined): Promise<PagedResultOfProductionScheduleOperationDto>;
|
|
2656
2656
|
postListProductionScheduleOperations(request: ListProductionScheduleOperationsRequest | undefined): Promise<PagedResultOfProductionScheduleOperationDto>;
|
|
2657
|
+
postListProductionScheduleOperationsFromPlanner(request: ListProductionScheduleOperationsRequest | undefined): Promise<PagedProductionScheduleDto>;
|
|
2657
2658
|
getAvailableProductionScheduleFilters(request: GetAvailableProductionScheduleFiltersRequest | undefined): Promise<ProductionScheduleFiltersDto>;
|
|
2658
2659
|
listMyCurrentWorkActivities(): Promise<CurrentWorkActivityDto>;
|
|
2659
2660
|
startOperations(request: StartOperations): Promise<void>;
|
|
@@ -2670,6 +2671,8 @@ export declare class MesProductionScheduleClient extends AuthorizedApiBase imple
|
|
|
2670
2671
|
protected processListProductionScheduleOperations(response: Response): Promise<PagedResultOfProductionScheduleOperationDto>;
|
|
2671
2672
|
postListProductionScheduleOperations(request: ListProductionScheduleOperationsRequest | undefined): Promise<PagedResultOfProductionScheduleOperationDto>;
|
|
2672
2673
|
protected processPostListProductionScheduleOperations(response: Response): Promise<PagedResultOfProductionScheduleOperationDto>;
|
|
2674
|
+
postListProductionScheduleOperationsFromPlanner(request: ListProductionScheduleOperationsRequest | undefined): Promise<PagedProductionScheduleDto>;
|
|
2675
|
+
protected processPostListProductionScheduleOperationsFromPlanner(response: Response): Promise<PagedProductionScheduleDto>;
|
|
2673
2676
|
getAvailableProductionScheduleFilters(request: GetAvailableProductionScheduleFiltersRequest | undefined): Promise<ProductionScheduleFiltersDto>;
|
|
2674
2677
|
protected processGetAvailableProductionScheduleFilters(response: Response): Promise<ProductionScheduleFiltersDto>;
|
|
2675
2678
|
listMyCurrentWorkActivities(): Promise<CurrentWorkActivityDto>;
|
|
@@ -2933,84 +2936,6 @@ export declare class InspectMatchSpecificationsClient extends AuthorizedApiBase
|
|
|
2933
2936
|
listSpecifications(): Promise<ImaSpecificationLiteDto[]>;
|
|
2934
2937
|
protected processListSpecifications(response: Response): Promise<ImaSpecificationLiteDto[]>;
|
|
2935
2938
|
}
|
|
2936
|
-
export interface IInspectSchemaCreatorClient {
|
|
2937
|
-
getSchemaCreatorState(schemaVersionId: string): Promise<SchemaCreatorStateDto>;
|
|
2938
|
-
/**
|
|
2939
|
-
* Creates the initial creator state for a schema version. Returns 409 if
|
|
2940
|
-
state already exists; the caller should re-fetch it instead of writing.
|
|
2941
|
-
*/
|
|
2942
|
-
createSchemaCreatorState(schemaVersionId: string, state: SchemaCreatorStateDto): Promise<SchemaCreatorStateDto>;
|
|
2943
|
-
updateSchemaCreatorState(schemaVersionId: string, state: SchemaCreatorStateDto): Promise<SchemaCreatorStateDto>;
|
|
2944
|
-
/**
|
|
2945
|
-
* Geometry only (no values), derived from the schema's retained
|
|
2946
|
-
InspectionXpert XML - used to seed a not-yet-created state with real
|
|
2947
|
-
drawing positions. Throws BadRequest if the schema has no such XML +
|
|
2948
|
-
drawing to derive it from.
|
|
2949
|
-
*/
|
|
2950
|
-
getSchemaCreatorXmlGeometry(schemaVersionId: string): Promise<SchemaCreatorXmlGeometryDto[]>;
|
|
2951
|
-
/**
|
|
2952
|
-
* Starts a full drawing AI parse: clears every element and locks the
|
|
2953
|
-
schema for every viewer until it completes. If one is already in
|
|
2954
|
-
progress, returns that instead of starting a second one.
|
|
2955
|
-
*/
|
|
2956
|
-
requestSchemaCreatorDocumentParse(schemaVersionId: string): Promise<SchemaCreatorStateDto>;
|
|
2957
|
-
/**
|
|
2958
|
-
* Stamps the creator state's balloons onto the schema's drawing PDF and
|
|
2959
|
-
returns a temporary download link.
|
|
2960
|
-
*/
|
|
2961
|
-
exportSchemaCreatorDrawing(schemaVersionId: string): Promise<DownloadDto>;
|
|
2962
|
-
/**
|
|
2963
|
-
* Starts an async snip resolve; the result is delivered through the
|
|
2964
|
-
SchemaCreatorSnipResolved SignalR notification.
|
|
2965
|
-
* @param image (optional)
|
|
2966
|
-
*/
|
|
2967
|
-
requestSchemaCreatorSnipParse(schemaVersionId: string, elementId: string, image: FileParameter | null | undefined): Promise<void>;
|
|
2968
|
-
}
|
|
2969
|
-
export declare class InspectSchemaCreatorClient extends AuthorizedApiBase implements IInspectSchemaCreatorClient {
|
|
2970
|
-
private http;
|
|
2971
|
-
private baseUrl;
|
|
2972
|
-
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
2973
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2974
|
-
});
|
|
2975
|
-
getSchemaCreatorState(schemaVersionId: string): Promise<SchemaCreatorStateDto>;
|
|
2976
|
-
protected processGetSchemaCreatorState(response: Response): Promise<SchemaCreatorStateDto>;
|
|
2977
|
-
/**
|
|
2978
|
-
* Creates the initial creator state for a schema version. Returns 409 if
|
|
2979
|
-
state already exists; the caller should re-fetch it instead of writing.
|
|
2980
|
-
*/
|
|
2981
|
-
createSchemaCreatorState(schemaVersionId: string, state: SchemaCreatorStateDto): Promise<SchemaCreatorStateDto>;
|
|
2982
|
-
protected processCreateSchemaCreatorState(response: Response): Promise<SchemaCreatorStateDto>;
|
|
2983
|
-
updateSchemaCreatorState(schemaVersionId: string, state: SchemaCreatorStateDto): Promise<SchemaCreatorStateDto>;
|
|
2984
|
-
protected processUpdateSchemaCreatorState(response: Response): Promise<SchemaCreatorStateDto>;
|
|
2985
|
-
/**
|
|
2986
|
-
* Geometry only (no values), derived from the schema's retained
|
|
2987
|
-
InspectionXpert XML - used to seed a not-yet-created state with real
|
|
2988
|
-
drawing positions. Throws BadRequest if the schema has no such XML +
|
|
2989
|
-
drawing to derive it from.
|
|
2990
|
-
*/
|
|
2991
|
-
getSchemaCreatorXmlGeometry(schemaVersionId: string): Promise<SchemaCreatorXmlGeometryDto[]>;
|
|
2992
|
-
protected processGetSchemaCreatorXmlGeometry(response: Response): Promise<SchemaCreatorXmlGeometryDto[]>;
|
|
2993
|
-
/**
|
|
2994
|
-
* Starts a full drawing AI parse: clears every element and locks the
|
|
2995
|
-
schema for every viewer until it completes. If one is already in
|
|
2996
|
-
progress, returns that instead of starting a second one.
|
|
2997
|
-
*/
|
|
2998
|
-
requestSchemaCreatorDocumentParse(schemaVersionId: string): Promise<SchemaCreatorStateDto>;
|
|
2999
|
-
protected processRequestSchemaCreatorDocumentParse(response: Response): Promise<SchemaCreatorStateDto>;
|
|
3000
|
-
/**
|
|
3001
|
-
* Stamps the creator state's balloons onto the schema's drawing PDF and
|
|
3002
|
-
returns a temporary download link.
|
|
3003
|
-
*/
|
|
3004
|
-
exportSchemaCreatorDrawing(schemaVersionId: string): Promise<DownloadDto>;
|
|
3005
|
-
protected processExportSchemaCreatorDrawing(response: Response): Promise<DownloadDto>;
|
|
3006
|
-
/**
|
|
3007
|
-
* Starts an async snip resolve; the result is delivered through the
|
|
3008
|
-
SchemaCreatorSnipResolved SignalR notification.
|
|
3009
|
-
* @param image (optional)
|
|
3010
|
-
*/
|
|
3011
|
-
requestSchemaCreatorSnipParse(schemaVersionId: string, elementId: string, image: FileParameter | null | undefined): Promise<void>;
|
|
3012
|
-
protected processRequestSchemaCreatorSnipParse(response: Response): Promise<void>;
|
|
3013
|
-
}
|
|
3014
2939
|
export interface IMeasurementFormSchemasAdminClient {
|
|
3015
2940
|
getArchivedMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
|
|
3016
2941
|
createMeasurementForm(request: CreateMeasurementFormSchema): Promise<MeasurementFormDto>;
|
|
@@ -3022,10 +2947,6 @@ export interface IMeasurementFormSchemasAdminClient {
|
|
|
3022
2947
|
deleteSchemaRows(id: string, request: DeleteSchemaGroupedElementRowsDto): Promise<MeasurementFormSchemaDto>;
|
|
3023
2948
|
uploadMeasurementImage(id: string, request: UploadMeasurementImageRequest): Promise<MeasurementFormSchemaDto>;
|
|
3024
2949
|
updateSchemaSettings(id: string, request: UpdateSchemaSettingsRequest): Promise<UpdateSchemaSettingsRequest>;
|
|
3025
|
-
uploadSchemaMarkedDrawing(id: string, request: UploadDrawingRequest): Promise<MeasurementFormSchemaDto>;
|
|
3026
|
-
/**
|
|
3027
|
-
* @deprecated
|
|
3028
|
-
*/
|
|
3029
2950
|
uploadSchemaDrawing(id: string, request: UploadDrawingRequest): Promise<MeasurementFormSchemaDto>;
|
|
3030
2951
|
uploadSchemaAttachment(id: string, request: UploadRequest): Promise<MeasurementFormSchemaDto>;
|
|
3031
2952
|
getMeasurementFormImportStatus(id: string): Promise<MeasurementFormImportStatusDto>;
|
|
@@ -3109,11 +3030,6 @@ export declare class MeasurementFormSchemasAdminClient extends AuthorizedApiBase
|
|
|
3109
3030
|
protected processUploadMeasurementImage(response: Response): Promise<MeasurementFormSchemaDto>;
|
|
3110
3031
|
updateSchemaSettings(id: string, request: UpdateSchemaSettingsRequest): Promise<UpdateSchemaSettingsRequest>;
|
|
3111
3032
|
protected processUpdateSchemaSettings(response: Response): Promise<UpdateSchemaSettingsRequest>;
|
|
3112
|
-
uploadSchemaMarkedDrawing(id: string, request: UploadDrawingRequest): Promise<MeasurementFormSchemaDto>;
|
|
3113
|
-
protected processUploadSchemaMarkedDrawing(response: Response): Promise<MeasurementFormSchemaDto>;
|
|
3114
|
-
/**
|
|
3115
|
-
* @deprecated
|
|
3116
|
-
*/
|
|
3117
3033
|
uploadSchemaDrawing(id: string, request: UploadDrawingRequest): Promise<MeasurementFormSchemaDto>;
|
|
3118
3034
|
protected processUploadSchemaDrawing(response: Response): Promise<MeasurementFormSchemaDto>;
|
|
3119
3035
|
uploadSchemaAttachment(id: string, request: UploadRequest): Promise<MeasurementFormSchemaDto>;
|
|
@@ -3277,7 +3193,6 @@ export interface IMeasurementFormsInstancesClient {
|
|
|
3277
3193
|
completeMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
|
|
3278
3194
|
completeMeasurementFormInstanceV2(id: string, tenantId: string | null | undefined): Promise<CompleteMeasurementFormInstanceResult>;
|
|
3279
3195
|
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
|
|
3280
|
-
getMeasurementFormInstanceSchemaCreatorState(id: string, schemaId: string, tenantId: string | null | undefined): Promise<SchemaCreatorStateDto>;
|
|
3281
3196
|
getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
|
|
3282
3197
|
getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
3283
3198
|
getValidationRules(): Promise<ValidationRuleDto[]>;
|
|
@@ -3316,8 +3231,6 @@ export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase i
|
|
|
3316
3231
|
protected processCompleteMeasurementFormInstanceV2(response: Response): Promise<CompleteMeasurementFormInstanceResult>;
|
|
3317
3232
|
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
|
|
3318
3233
|
protected processGetMeasurementFormInstanceSchema(response: Response): Promise<MeasurementFormInstanceSchemaDto>;
|
|
3319
|
-
getMeasurementFormInstanceSchemaCreatorState(id: string, schemaId: string, tenantId: string | null | undefined): Promise<SchemaCreatorStateDto>;
|
|
3320
|
-
protected processGetMeasurementFormInstanceSchemaCreatorState(response: Response): Promise<SchemaCreatorStateDto>;
|
|
3321
3234
|
getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
|
|
3322
3235
|
protected processGetWorkorderMeasurementFormProgress(response: Response): Promise<MeasurementFormInstanceProgressDto>;
|
|
3323
3236
|
getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
@@ -4886,7 +4799,6 @@ export interface PulseJournalEventDto {
|
|
|
4886
4799
|
eventType: PulseJournalEventTypeDto;
|
|
4887
4800
|
oldValue?: string | null;
|
|
4888
4801
|
newValue?: string | null;
|
|
4889
|
-
lineText?: string | null;
|
|
4890
4802
|
created: Date;
|
|
4891
4803
|
createdBy?: string | null;
|
|
4892
4804
|
}
|
|
@@ -7658,6 +7570,7 @@ export interface PlannerPlanDto {
|
|
|
7658
7570
|
isDraft: boolean;
|
|
7659
7571
|
publishedETag?: string | null;
|
|
7660
7572
|
weeklyCapacities: WeekCapacityDto[];
|
|
7573
|
+
continuationToken?: string | null;
|
|
7661
7574
|
}
|
|
7662
7575
|
export interface PlannerOperationDto {
|
|
7663
7576
|
id: string;
|
|
@@ -7760,7 +7673,7 @@ export interface SetProgramStatus {
|
|
|
7760
7673
|
operationNumber?: number;
|
|
7761
7674
|
status?: ProgramStatus;
|
|
7762
7675
|
}
|
|
7763
|
-
export type ProductionOrderAttachmentType = "Url" | "Note" | "Image" | "File"
|
|
7676
|
+
export type ProductionOrderAttachmentType = "Url" | "Note" | "Image" | "File";
|
|
7764
7677
|
export interface UpdateProductionOrderAttachmentRequest {
|
|
7765
7678
|
type?: ProductionOrderAttachmentType;
|
|
7766
7679
|
description: string;
|
|
@@ -8067,6 +7980,8 @@ export interface ProductionScheduleOperationDto {
|
|
|
8067
7980
|
programStatus?: ProgramStatus | null;
|
|
8068
7981
|
hasNotes: boolean;
|
|
8069
7982
|
notesUnread: boolean;
|
|
7983
|
+
sequenceNumber?: number | null;
|
|
7984
|
+
weekGroup?: string | null;
|
|
8070
7985
|
}
|
|
8071
7986
|
export interface SurroundingOperationDto {
|
|
8072
7987
|
id: string;
|
|
@@ -8120,6 +8035,11 @@ export interface ListProductionScheduleOperationsRequest {
|
|
|
8120
8035
|
before?: Date | null;
|
|
8121
8036
|
includeDiscussionSummary?: boolean;
|
|
8122
8037
|
}
|
|
8038
|
+
export interface PagedProductionScheduleDto {
|
|
8039
|
+
results: ProductionScheduleOperationDto[];
|
|
8040
|
+
weeklyCapacities: WeekCapacityDto[];
|
|
8041
|
+
continuationToken?: string | null;
|
|
8042
|
+
}
|
|
8123
8043
|
export interface ProductionScheduleFiltersDto {
|
|
8124
8044
|
partNumbers?: FilterValueWithQuantity[];
|
|
8125
8045
|
bomPositions?: FilterValueWithQuantity[];
|
|
@@ -8550,7 +8470,7 @@ export interface ImaMaterialCheckDto {
|
|
|
8550
8470
|
specificationStatus: ImaSpecificationStatusDto;
|
|
8551
8471
|
purchaseOrder?: string | null;
|
|
8552
8472
|
purchaseOrderLine?: number | null;
|
|
8553
|
-
|
|
8473
|
+
purchaseOrderVendorBatches?: string[] | null;
|
|
8554
8474
|
purchaseOrderPartName?: string | null;
|
|
8555
8475
|
purchaseOrderPartNumber?: string | null;
|
|
8556
8476
|
purchaseOrderPartRevision?: string | null;
|
|
@@ -8570,11 +8490,6 @@ export interface ImaMaterialCheckDto {
|
|
|
8570
8490
|
specificationResults: ImaSpecificationResultsDto;
|
|
8571
8491
|
}
|
|
8572
8492
|
export type ImaSpecificationStatusDto = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
|
|
8573
|
-
export interface PurchaseOrderMaterialBatchDto {
|
|
8574
|
-
batchNumber: string;
|
|
8575
|
-
itemNumber?: string | null;
|
|
8576
|
-
vendorBatch?: string | null;
|
|
8577
|
-
}
|
|
8578
8493
|
export type ImaMaterialCheckStatusDto = "Processing" | "Draft" | "Approved" | "Rejected" | "Failed" | "NotSet";
|
|
8579
8494
|
export interface ImaCertificateTypeResultsDto {
|
|
8580
8495
|
manufacturer: ImaCertificateTypeManufacturerResultsDto;
|
|
@@ -8706,7 +8621,6 @@ export interface ImaChemicalAnalysisCompositeResultDto {
|
|
|
8706
8621
|
prenW?: ImaSpecificationCalculatedResultLineDto | null;
|
|
8707
8622
|
v_Nb_Ti?: ImaSpecificationCalculatedResultLineDto | null;
|
|
8708
8623
|
ce?: ImaSpecificationCalculatedResultLineDto | null;
|
|
8709
|
-
nb_Ta?: ImaSpecificationCalculatedResultLineDto | null;
|
|
8710
8624
|
}
|
|
8711
8625
|
export interface ImaSpecificationCalculatedResultLineDto {
|
|
8712
8626
|
specificationMin?: number | null;
|
|
@@ -8830,14 +8744,14 @@ export interface ImaHeatTreatmentCoolingResultLineDto {
|
|
|
8830
8744
|
status: ImaSpecificationResultLineStatusDto;
|
|
8831
8745
|
override?: ImaResultLineOverrideDto | null;
|
|
8832
8746
|
}
|
|
8833
|
-
export type ImaHeatTreatmentCoolingMethodDto = "NoCoolingMethod" | "AirCooling" | "FurnaceCooling" | "OilQuenching" | "PolymerQuenching" | "WaterQuenching" | "
|
|
8747
|
+
export type ImaHeatTreatmentCoolingMethodDto = "NoCoolingMethod" | "AirCooling" | "FurnaceCooling" | "OilQuenching" | "PolymerQuenching" | "WaterQuenching" | "NotSet";
|
|
8834
8748
|
export interface ImaDocumentTypesResultsDto {
|
|
8835
8749
|
ultrasonicControlCertificate?: ImaSupplementaryCheckResultDto | null;
|
|
8836
8750
|
radiologicalReport?: ImaSupplementaryCheckResultDto | null;
|
|
8837
8751
|
liquidPenetrantCertificate?: ImaSupplementaryCheckResultDto | null;
|
|
8838
8752
|
magneticParticle?: ImaSupplementaryCheckResultDto | null;
|
|
8839
8753
|
pmi?: ImaSupplementaryCheckResultDto | null;
|
|
8840
|
-
|
|
8754
|
+
hydrostatic?: ImaSupplementaryCheckResultDto | null;
|
|
8841
8755
|
visualReport?: ImaSupplementaryCheckResultDto | null;
|
|
8842
8756
|
dimensionalReport?: ImaSupplementaryCheckResultDto | null;
|
|
8843
8757
|
microExaminationReport?: ImaSupplementaryCheckResultDto | null;
|
|
@@ -8958,7 +8872,6 @@ export interface ImaOverrideChemicalAnalysisCompositeResultsDto {
|
|
|
8958
8872
|
prenW?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8959
8873
|
v_Nb_Ti?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8960
8874
|
ce?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8961
|
-
nb_Ta?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8962
8875
|
}
|
|
8963
8876
|
export interface ImaOverrideTensileTestResultsDto {
|
|
8964
8877
|
heatNumber?: string | null;
|
|
@@ -9036,7 +8949,7 @@ export interface ImaOverrideDocumentTypesResultsDto {
|
|
|
9036
8949
|
liquidPenetrantCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
9037
8950
|
magneticParticle?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
9038
8951
|
pmi?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
9039
|
-
|
|
8952
|
+
hydrostatic?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
9040
8953
|
visualReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
9041
8954
|
dimensionalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
9042
8955
|
microExaminationReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
@@ -9069,7 +8982,7 @@ export interface ImaMaterialCheckLiteDto {
|
|
|
9069
8982
|
specificationStatus: ImaSpecificationStatusDto;
|
|
9070
8983
|
purchaseOrder?: string | null;
|
|
9071
8984
|
purchaseOrderLine?: number | null;
|
|
9072
|
-
|
|
8985
|
+
purchaseOrderVendorBatches?: string[] | null;
|
|
9073
8986
|
purchaseOrderPartName?: string | null;
|
|
9074
8987
|
purchaseOrderPartNumber?: string | null;
|
|
9075
8988
|
purchaseOrderPartRevision?: string | null;
|
|
@@ -9100,7 +9013,7 @@ export interface ImaMaterialChecksPageRequestDto {
|
|
|
9100
9013
|
certificateTypeFilter?: string | null;
|
|
9101
9014
|
purchaseOrderLineFilter?: number | null;
|
|
9102
9015
|
heatFilter?: string | null;
|
|
9103
|
-
vendorBatchesFilter?: string | null;
|
|
9016
|
+
vendorBatchesFilter?: string[] | null;
|
|
9104
9017
|
purchaseOrderPartNameFilter?: string | null;
|
|
9105
9018
|
purchaseOrderPartNumberFilter?: string | null;
|
|
9106
9019
|
purchaseOrderDrawingFilter?: string | null;
|
|
@@ -9133,7 +9046,6 @@ export interface ImaMaterialCheckReportDto {
|
|
|
9133
9046
|
includesAllHeats: boolean;
|
|
9134
9047
|
status: ImaMaterialCheckStatusDto;
|
|
9135
9048
|
audit: ImaMaterialCheckReportAuditInfo;
|
|
9136
|
-
isOutdated: boolean;
|
|
9137
9049
|
}
|
|
9138
9050
|
export interface ImaMaterialCheckReportAuditInfo {
|
|
9139
9051
|
createdBy: string;
|
|
@@ -9159,7 +9071,7 @@ export interface PurchaseOrderMaterialLineDetailsDto {
|
|
|
9159
9071
|
purchaseOrder: string;
|
|
9160
9072
|
lineNumber?: number | null;
|
|
9161
9073
|
dimension?: string | null;
|
|
9162
|
-
|
|
9074
|
+
vendorBatches: string[];
|
|
9163
9075
|
mdsCodeFl?: string | null;
|
|
9164
9076
|
typeOfCertificate?: string | null;
|
|
9165
9077
|
}
|
|
@@ -9297,7 +9209,6 @@ export interface ImaChemistryCompositeSpecificationDto {
|
|
|
9297
9209
|
prenW?: ImaSpecificationLineDto | null;
|
|
9298
9210
|
v_Nb_Ti?: boolean | null;
|
|
9299
9211
|
ce?: boolean | null;
|
|
9300
|
-
nb_Ta?: ImaSpecificationLineDto | null;
|
|
9301
9212
|
}
|
|
9302
9213
|
export interface ImaMechanicalSpecificationDto {
|
|
9303
9214
|
tensile?: ImaTensileSpecificationDto | null;
|
|
@@ -9329,7 +9240,7 @@ export interface ImaDocumentTypesSpecificationDto {
|
|
|
9329
9240
|
liquidPenetrantCertificate?: boolean;
|
|
9330
9241
|
magneticParticle?: boolean;
|
|
9331
9242
|
pmi?: boolean;
|
|
9332
|
-
|
|
9243
|
+
hydrostatic?: boolean;
|
|
9333
9244
|
visualReport?: boolean;
|
|
9334
9245
|
dimensionalReport?: boolean;
|
|
9335
9246
|
microExaminationReport?: boolean;
|
|
@@ -9396,112 +9307,6 @@ export interface ImaSpecificationLiteDto {
|
|
|
9396
9307
|
updated: Date;
|
|
9397
9308
|
isDeleted: boolean;
|
|
9398
9309
|
}
|
|
9399
|
-
export interface SchemaCreatorStateDto {
|
|
9400
|
-
settings: SchemaCreatorSettingsDto;
|
|
9401
|
-
elements: SchemaCreatorElementDto[];
|
|
9402
|
-
documentParseStatus?: SchemaCreatorDocumentParseStatusDto | null;
|
|
9403
|
-
isAutoGenerated?: boolean;
|
|
9404
|
-
createdBy?: SchemaCreatorAuditInfoDto | null;
|
|
9405
|
-
createdAt?: Date | null;
|
|
9406
|
-
updatedBy?: SchemaCreatorAuditInfoDto | null;
|
|
9407
|
-
updatedAt?: Date | null;
|
|
9408
|
-
}
|
|
9409
|
-
export interface SchemaCreatorSettingsDto {
|
|
9410
|
-
unit?: SchemaCreatorUnitOfMeasureDto;
|
|
9411
|
-
tolerance?: GeneralToleranceDto;
|
|
9412
|
-
balloonSize?: number;
|
|
9413
|
-
transparentBalloons?: boolean;
|
|
9414
|
-
}
|
|
9415
|
-
export type SchemaCreatorUnitOfMeasureDto = "Millimeter" | "Inch" | "Mixed";
|
|
9416
|
-
export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
|
|
9417
|
-
export interface SchemaCreatorElementDto {
|
|
9418
|
-
id: string;
|
|
9419
|
-
kind: SchemaCreatorElementKindDto;
|
|
9420
|
-
drawings: SchemaCreatorElementDrawingsDto;
|
|
9421
|
-
isDirty?: boolean | null;
|
|
9422
|
-
values?: SchemaCreatorElementValuesDto | null;
|
|
9423
|
-
parseResult?: SchemaCreatorSnipResultDto | null;
|
|
9424
|
-
resolveAttempt?: SchemaCreatorParseAttemptDto | null;
|
|
9425
|
-
createdBy?: SchemaCreatorAuditInfoDto | null;
|
|
9426
|
-
createdAt?: Date | null;
|
|
9427
|
-
updatedBy?: SchemaCreatorAuditInfoDto | null;
|
|
9428
|
-
updatedAt?: Date | null;
|
|
9429
|
-
}
|
|
9430
|
-
export type SchemaCreatorElementKindDto = "Pending" | "Auto" | "Manual";
|
|
9431
|
-
export interface SchemaCreatorElementDrawingsDto {
|
|
9432
|
-
snip: SchemaCreatorSnipDto;
|
|
9433
|
-
balloon: SchemaCreatorPointDto;
|
|
9434
|
-
pageIndex: number;
|
|
9435
|
-
}
|
|
9436
|
-
export interface SchemaCreatorSnipDto {
|
|
9437
|
-
rect: SchemaCreatorRectDto;
|
|
9438
|
-
rotation?: number | null;
|
|
9439
|
-
unrotatedRect?: SchemaCreatorRectDto | null;
|
|
9440
|
-
}
|
|
9441
|
-
export interface SchemaCreatorRectDto {
|
|
9442
|
-
origin: SchemaCreatorPointDto;
|
|
9443
|
-
size: SchemaCreatorSizeDto;
|
|
9444
|
-
}
|
|
9445
|
-
export interface SchemaCreatorPointDto {
|
|
9446
|
-
x: number;
|
|
9447
|
-
y: number;
|
|
9448
|
-
}
|
|
9449
|
-
export interface SchemaCreatorSizeDto {
|
|
9450
|
-
width: number;
|
|
9451
|
-
height: number;
|
|
9452
|
-
}
|
|
9453
|
-
export interface SchemaCreatorElementValuesDto {
|
|
9454
|
-
reference: number;
|
|
9455
|
-
unit?: UnitOfMeasureDto | null;
|
|
9456
|
-
nominal?: number | null;
|
|
9457
|
-
nominalText?: string | null;
|
|
9458
|
-
upperLimit?: number | null;
|
|
9459
|
-
lowerLimit?: number | null;
|
|
9460
|
-
plusTolerance?: number | null;
|
|
9461
|
-
minusTolerance?: number | null;
|
|
9462
|
-
coatingThickness?: number | null;
|
|
9463
|
-
measurementFrequency: MeasurementFrequency;
|
|
9464
|
-
measurementFrequencyParameter?: number | null;
|
|
9465
|
-
type?: string | null;
|
|
9466
|
-
count?: number | null;
|
|
9467
|
-
comment?: string | null;
|
|
9468
|
-
canCopy: boolean;
|
|
9469
|
-
visibleToCustomer: boolean;
|
|
9470
|
-
isDocumentedExternally: boolean;
|
|
9471
|
-
}
|
|
9472
|
-
export type UnitOfMeasureDto = "Millimeter" | "Inch";
|
|
9473
|
-
export type MeasurementFrequency = "All" | "FirstArticle" | "NFirst" | "NPercent" | "ISO2859" | "Nth" | "FirstAndLast" | "None";
|
|
9474
|
-
export interface SchemaCreatorSnipResultDto {
|
|
9475
|
-
nominal?: number | null;
|
|
9476
|
-
nominalText?: string | null;
|
|
9477
|
-
type?: string | null;
|
|
9478
|
-
upperLimit?: number | null;
|
|
9479
|
-
lowerLimit?: number | null;
|
|
9480
|
-
plusTolerance?: number | null;
|
|
9481
|
-
minusTolerance?: number | null;
|
|
9482
|
-
count?: number | null;
|
|
9483
|
-
}
|
|
9484
|
-
export interface SchemaCreatorParseAttemptDto {
|
|
9485
|
-
startedAt: Date;
|
|
9486
|
-
errorType?: SchemaCreatorParseErrorTypeDto | null;
|
|
9487
|
-
errorMessage?: string | null;
|
|
9488
|
-
}
|
|
9489
|
-
export type SchemaCreatorParseErrorTypeDto = "Timeout" | "ParseError";
|
|
9490
|
-
export interface SchemaCreatorAuditInfoDto {
|
|
9491
|
-
objectId: string;
|
|
9492
|
-
userId: string;
|
|
9493
|
-
userFullName?: string | null;
|
|
9494
|
-
}
|
|
9495
|
-
export interface SchemaCreatorDocumentParseStatusDto {
|
|
9496
|
-
inProgress: boolean;
|
|
9497
|
-
attempt?: SchemaCreatorParseAttemptDto | null;
|
|
9498
|
-
}
|
|
9499
|
-
export interface SchemaCreatorXmlGeometryDto {
|
|
9500
|
-
xmlAttributeId: number;
|
|
9501
|
-
snipRect: SchemaCreatorRectDto;
|
|
9502
|
-
balloon: SchemaCreatorPointDto;
|
|
9503
|
-
pageIndex: number;
|
|
9504
|
-
}
|
|
9505
9310
|
export interface MeasurementFormSchemaDto {
|
|
9506
9311
|
id: string;
|
|
9507
9312
|
versionId: number;
|
|
@@ -9533,7 +9338,9 @@ export interface MeasurementFormSchemaDto {
|
|
|
9533
9338
|
}
|
|
9534
9339
|
export type MeasurementFormStatus = "Draft" | "Released" | "Revoked";
|
|
9535
9340
|
export type MeasurementFormSource = "Unknown" | "InspectionXpert" | "Excel" | "Manual";
|
|
9341
|
+
export type UnitOfMeasureDto = "Millimeter" | "Inch";
|
|
9536
9342
|
export type DimensionSettingDto = "Tolerance" | "MinMaxDimension";
|
|
9343
|
+
export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
|
|
9537
9344
|
export interface MeasurementFormSchemaAttachmentDto {
|
|
9538
9345
|
url: string;
|
|
9539
9346
|
title: string;
|
|
@@ -9542,7 +9349,6 @@ export interface MeasurementFormGroupedElementDto {
|
|
|
9542
9349
|
id: string;
|
|
9543
9350
|
balloonId?: string | null;
|
|
9544
9351
|
reference: number;
|
|
9545
|
-
originalXmlId?: number | null;
|
|
9546
9352
|
imageUrl?: string | null;
|
|
9547
9353
|
thumbnailUrl?: string | null;
|
|
9548
9354
|
section?: string | null;
|
|
@@ -9583,6 +9389,7 @@ export interface MeasurementFormGroupedElementDto {
|
|
|
9583
9389
|
isValid: boolean;
|
|
9584
9390
|
validationErrorMessage?: string | null;
|
|
9585
9391
|
}
|
|
9392
|
+
export type MeasurementFrequency = "All" | "FirstArticle" | "NFirst" | "NPercent" | "ISO2859" | "Nth" | "FirstAndLast" | "None";
|
|
9586
9393
|
export type MeasurementFormValueType = "None" | "Bool" | "Decimal" | "String";
|
|
9587
9394
|
export type BonusType = "None" | "Positive" | "PositiveAndNegative";
|
|
9588
9395
|
export interface MeasurementFormLinkedSchemaDto {
|
|
@@ -9695,7 +9502,6 @@ export interface UploadDrawingRequest {
|
|
|
9695
9502
|
export interface UploadRequest {
|
|
9696
9503
|
uploadKey: string;
|
|
9697
9504
|
filename: string;
|
|
9698
|
-
isMarkedDrawing?: boolean | null;
|
|
9699
9505
|
}
|
|
9700
9506
|
export interface MeasurementFormImportStatusDto {
|
|
9701
9507
|
progress: number;
|
|
@@ -9771,8 +9577,6 @@ export interface MeasurementFormCustomerSettingsDto {
|
|
|
9771
9577
|
validationRuleId?: string | null;
|
|
9772
9578
|
requireCalibratedTools: boolean;
|
|
9773
9579
|
allowEmptyToolListInValue: boolean;
|
|
9774
|
-
disableAiParseDocument: boolean;
|
|
9775
|
-
disableAiParseSnip: boolean;
|
|
9776
9580
|
}
|
|
9777
9581
|
export interface UpdateMeasurementFormCustomerSettings {
|
|
9778
9582
|
customerId: string;
|
|
@@ -9781,8 +9585,6 @@ export interface UpdateMeasurementFormCustomerSettings {
|
|
|
9781
9585
|
validationRuleId?: string | null;
|
|
9782
9586
|
requireCalibratedTools: boolean;
|
|
9783
9587
|
allowEmptyToolListInValue: boolean;
|
|
9784
|
-
disableAiParseDocument: boolean;
|
|
9785
|
-
disableAiParseSnip: boolean;
|
|
9786
9588
|
}
|
|
9787
9589
|
export interface MeasurementFormMappingDto {
|
|
9788
9590
|
id: string;
|