@ignos/api-client 20260907.262.1-alpha → 20260908.263.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 +24 -221
- package/lib/ignosportal-api.js +4 -416
- package/package.json +1 -1
- package/src/ignosportal-api.ts +31 -611
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -2933,99 +2933,6 @@ export declare class InspectMatchSpecificationsClient extends AuthorizedApiBase
|
|
|
2933
2933
|
listSpecifications(): Promise<ImaSpecificationLiteDto[]>;
|
|
2934
2934
|
protected processListSpecifications(response: Response): Promise<ImaSpecificationLiteDto[]>;
|
|
2935
2935
|
}
|
|
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
|
-
* Renders the legacy-format image for one element's current snip.
|
|
2970
|
-
Fire-and-forget from the client on every snip commit - the resulting
|
|
2971
|
-
image isn't returned here, it's only ever read back once the schema
|
|
2972
|
-
is released (SchemaCreatorLegacyMapper).
|
|
2973
|
-
*/
|
|
2974
|
-
renderSchemaCreatorElementSnipImage(schemaVersionId: string, elementId: string, request: RenderSchemaCreatorElementSnipImageRequest): Promise<void>;
|
|
2975
|
-
}
|
|
2976
|
-
export declare class InspectSchemaCreatorClient extends AuthorizedApiBase implements IInspectSchemaCreatorClient {
|
|
2977
|
-
private http;
|
|
2978
|
-
private baseUrl;
|
|
2979
|
-
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
2980
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2981
|
-
});
|
|
2982
|
-
getSchemaCreatorState(schemaVersionId: string): Promise<SchemaCreatorStateDto>;
|
|
2983
|
-
protected processGetSchemaCreatorState(response: Response): Promise<SchemaCreatorStateDto>;
|
|
2984
|
-
/**
|
|
2985
|
-
* Creates the initial creator state for a schema version. Returns 409 if
|
|
2986
|
-
state already exists; the caller should re-fetch it instead of writing.
|
|
2987
|
-
*/
|
|
2988
|
-
createSchemaCreatorState(schemaVersionId: string, state: SchemaCreatorStateDto): Promise<SchemaCreatorStateDto>;
|
|
2989
|
-
protected processCreateSchemaCreatorState(response: Response): Promise<SchemaCreatorStateDto>;
|
|
2990
|
-
updateSchemaCreatorState(schemaVersionId: string, state: SchemaCreatorStateDto): Promise<SchemaCreatorStateDto>;
|
|
2991
|
-
protected processUpdateSchemaCreatorState(response: Response): Promise<SchemaCreatorStateDto>;
|
|
2992
|
-
/**
|
|
2993
|
-
* Geometry only (no values), derived from the schema's retained
|
|
2994
|
-
InspectionXpert XML - used to seed a not-yet-created state with real
|
|
2995
|
-
drawing positions. Throws BadRequest if the schema has no such XML +
|
|
2996
|
-
drawing to derive it from.
|
|
2997
|
-
*/
|
|
2998
|
-
getSchemaCreatorXmlGeometry(schemaVersionId: string): Promise<SchemaCreatorXmlGeometryDto[]>;
|
|
2999
|
-
protected processGetSchemaCreatorXmlGeometry(response: Response): Promise<SchemaCreatorXmlGeometryDto[]>;
|
|
3000
|
-
/**
|
|
3001
|
-
* Starts a full drawing AI parse: clears every element and locks the
|
|
3002
|
-
schema for every viewer until it completes. If one is already in
|
|
3003
|
-
progress, returns that instead of starting a second one.
|
|
3004
|
-
*/
|
|
3005
|
-
requestSchemaCreatorDocumentParse(schemaVersionId: string): Promise<SchemaCreatorStateDto>;
|
|
3006
|
-
protected processRequestSchemaCreatorDocumentParse(response: Response): Promise<SchemaCreatorStateDto>;
|
|
3007
|
-
/**
|
|
3008
|
-
* Stamps the creator state's balloons onto the schema's drawing PDF and
|
|
3009
|
-
returns a temporary download link.
|
|
3010
|
-
*/
|
|
3011
|
-
exportSchemaCreatorDrawing(schemaVersionId: string): Promise<DownloadDto>;
|
|
3012
|
-
protected processExportSchemaCreatorDrawing(response: Response): Promise<DownloadDto>;
|
|
3013
|
-
/**
|
|
3014
|
-
* Starts an async snip resolve; the result is delivered through the
|
|
3015
|
-
SchemaCreatorSnipResolved SignalR notification.
|
|
3016
|
-
* @param image (optional)
|
|
3017
|
-
*/
|
|
3018
|
-
requestSchemaCreatorSnipParse(schemaVersionId: string, elementId: string, image: FileParameter | null | undefined): Promise<void>;
|
|
3019
|
-
protected processRequestSchemaCreatorSnipParse(response: Response): Promise<void>;
|
|
3020
|
-
/**
|
|
3021
|
-
* Renders the legacy-format image for one element's current snip.
|
|
3022
|
-
Fire-and-forget from the client on every snip commit - the resulting
|
|
3023
|
-
image isn't returned here, it's only ever read back once the schema
|
|
3024
|
-
is released (SchemaCreatorLegacyMapper).
|
|
3025
|
-
*/
|
|
3026
|
-
renderSchemaCreatorElementSnipImage(schemaVersionId: string, elementId: string, request: RenderSchemaCreatorElementSnipImageRequest): Promise<void>;
|
|
3027
|
-
protected processRenderSchemaCreatorElementSnipImage(response: Response): Promise<void>;
|
|
3028
|
-
}
|
|
3029
2936
|
export interface IMeasurementFormSchemasAdminClient {
|
|
3030
2937
|
getArchivedMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
|
|
3031
2938
|
createMeasurementForm(request: CreateMeasurementFormSchema): Promise<MeasurementFormDto>;
|
|
@@ -3037,7 +2944,7 @@ export interface IMeasurementFormSchemasAdminClient {
|
|
|
3037
2944
|
deleteSchemaRows(id: string, request: DeleteSchemaGroupedElementRowsDto): Promise<MeasurementFormSchemaDto>;
|
|
3038
2945
|
uploadMeasurementImage(id: string, request: UploadMeasurementImageRequest): Promise<MeasurementFormSchemaDto>;
|
|
3039
2946
|
updateSchemaSettings(id: string, request: UpdateSchemaSettingsRequest): Promise<UpdateSchemaSettingsRequest>;
|
|
3040
|
-
|
|
2947
|
+
uploadSchemaDrawing(id: string, request: UploadDrawingRequest): Promise<MeasurementFormSchemaDto>;
|
|
3041
2948
|
uploadSchemaAttachment(id: string, request: UploadRequest): Promise<MeasurementFormSchemaDto>;
|
|
3042
2949
|
getMeasurementFormImportStatus(id: string): Promise<MeasurementFormImportStatusDto>;
|
|
3043
2950
|
listLinkableMeasurementFormSchemas(schemaId: string, pageSize: number | undefined, filter: string | null | undefined, continuationToken: string | null | undefined): Promise<PagedResultOfMeasurementFormListDto>;
|
|
@@ -3120,8 +3027,8 @@ export declare class MeasurementFormSchemasAdminClient extends AuthorizedApiBase
|
|
|
3120
3027
|
protected processUploadMeasurementImage(response: Response): Promise<MeasurementFormSchemaDto>;
|
|
3121
3028
|
updateSchemaSettings(id: string, request: UpdateSchemaSettingsRequest): Promise<UpdateSchemaSettingsRequest>;
|
|
3122
3029
|
protected processUpdateSchemaSettings(response: Response): Promise<UpdateSchemaSettingsRequest>;
|
|
3123
|
-
|
|
3124
|
-
protected
|
|
3030
|
+
uploadSchemaDrawing(id: string, request: UploadDrawingRequest): Promise<MeasurementFormSchemaDto>;
|
|
3031
|
+
protected processUploadSchemaDrawing(response: Response): Promise<MeasurementFormSchemaDto>;
|
|
3125
3032
|
uploadSchemaAttachment(id: string, request: UploadRequest): Promise<MeasurementFormSchemaDto>;
|
|
3126
3033
|
protected processUploadSchemaAttachment(response: Response): Promise<MeasurementFormSchemaDto>;
|
|
3127
3034
|
getMeasurementFormImportStatus(id: string): Promise<MeasurementFormImportStatusDto>;
|
|
@@ -3283,7 +3190,6 @@ export interface IMeasurementFormsInstancesClient {
|
|
|
3283
3190
|
completeMeasurementFormInstance(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceDto>;
|
|
3284
3191
|
completeMeasurementFormInstanceV2(id: string, tenantId: string | null | undefined): Promise<CompleteMeasurementFormInstanceResult>;
|
|
3285
3192
|
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
|
|
3286
|
-
getMeasurementFormInstanceSchemaCreatorState(id: string, schemaId: string, tenantId: string | null | undefined): Promise<SchemaCreatorStateDto>;
|
|
3287
3193
|
getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
|
|
3288
3194
|
getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
3289
3195
|
getValidationRules(): Promise<ValidationRuleDto[]>;
|
|
@@ -3322,8 +3228,6 @@ export declare class MeasurementFormsInstancesClient extends AuthorizedApiBase i
|
|
|
3322
3228
|
protected processCompleteMeasurementFormInstanceV2(response: Response): Promise<CompleteMeasurementFormInstanceResult>;
|
|
3323
3229
|
getMeasurementFormInstanceSchema(id: string, schemaId: string, serialNumber: string | null | undefined, tenantId: string | null | undefined): Promise<MeasurementFormInstanceSchemaDto>;
|
|
3324
3230
|
protected processGetMeasurementFormInstanceSchema(response: Response): Promise<MeasurementFormInstanceSchemaDto>;
|
|
3325
|
-
getMeasurementFormInstanceSchemaCreatorState(id: string, schemaId: string, tenantId: string | null | undefined): Promise<SchemaCreatorStateDto>;
|
|
3326
|
-
protected processGetMeasurementFormInstanceSchemaCreatorState(response: Response): Promise<SchemaCreatorStateDto>;
|
|
3327
3231
|
getWorkorderMeasurementFormProgress(id: string, tenantId: string | null | undefined): Promise<MeasurementFormInstanceProgressDto>;
|
|
3328
3232
|
protected processGetWorkorderMeasurementFormProgress(response: Response): Promise<MeasurementFormInstanceProgressDto>;
|
|
3329
3233
|
getAuditLog(id: string, tenantId: string | null | undefined, schemaId: string | null | undefined, serialNumber: string | null | undefined, elementId: string | null | undefined): Promise<MeasurementFormElementValueAuditDto[]>;
|
|
@@ -4892,6 +4796,7 @@ export interface PulseJournalEventDto {
|
|
|
4892
4796
|
eventType: PulseJournalEventTypeDto;
|
|
4893
4797
|
oldValue?: string | null;
|
|
4894
4798
|
newValue?: string | null;
|
|
4799
|
+
lineText?: string | null;
|
|
4895
4800
|
created: Date;
|
|
4896
4801
|
createdBy?: string | null;
|
|
4897
4802
|
}
|
|
@@ -8555,7 +8460,7 @@ export interface ImaMaterialCheckDto {
|
|
|
8555
8460
|
specificationStatus: ImaSpecificationStatusDto;
|
|
8556
8461
|
purchaseOrder?: string | null;
|
|
8557
8462
|
purchaseOrderLine?: number | null;
|
|
8558
|
-
|
|
8463
|
+
purchaseOrderBatches?: PurchaseOrderMaterialBatchDto[] | null;
|
|
8559
8464
|
purchaseOrderPartName?: string | null;
|
|
8560
8465
|
purchaseOrderPartNumber?: string | null;
|
|
8561
8466
|
purchaseOrderPartRevision?: string | null;
|
|
@@ -8575,6 +8480,11 @@ export interface ImaMaterialCheckDto {
|
|
|
8575
8480
|
specificationResults: ImaSpecificationResultsDto;
|
|
8576
8481
|
}
|
|
8577
8482
|
export type ImaSpecificationStatusDto = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
|
|
8483
|
+
export interface PurchaseOrderMaterialBatchDto {
|
|
8484
|
+
batchNumber: string;
|
|
8485
|
+
itemNumber?: string | null;
|
|
8486
|
+
vendorBatch?: string | null;
|
|
8487
|
+
}
|
|
8578
8488
|
export type ImaMaterialCheckStatusDto = "Processing" | "Draft" | "Approved" | "Rejected" | "Failed" | "NotSet";
|
|
8579
8489
|
export interface ImaCertificateTypeResultsDto {
|
|
8580
8490
|
manufacturer: ImaCertificateTypeManufacturerResultsDto;
|
|
@@ -8706,6 +8616,7 @@ export interface ImaChemicalAnalysisCompositeResultDto {
|
|
|
8706
8616
|
prenW?: ImaSpecificationCalculatedResultLineDto | null;
|
|
8707
8617
|
v_Nb_Ti?: ImaSpecificationCalculatedResultLineDto | null;
|
|
8708
8618
|
ce?: ImaSpecificationCalculatedResultLineDto | null;
|
|
8619
|
+
nb_Ta?: ImaSpecificationCalculatedResultLineDto | null;
|
|
8709
8620
|
}
|
|
8710
8621
|
export interface ImaSpecificationCalculatedResultLineDto {
|
|
8711
8622
|
specificationMin?: number | null;
|
|
@@ -8957,6 +8868,7 @@ export interface ImaOverrideChemicalAnalysisCompositeResultsDto {
|
|
|
8957
8868
|
prenW?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8958
8869
|
v_Nb_Ti?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8959
8870
|
ce?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8871
|
+
nb_Ta?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8960
8872
|
}
|
|
8961
8873
|
export interface ImaOverrideTensileTestResultsDto {
|
|
8962
8874
|
heatNumber?: string | null;
|
|
@@ -9067,7 +8979,7 @@ export interface ImaMaterialCheckLiteDto {
|
|
|
9067
8979
|
specificationStatus: ImaSpecificationStatusDto;
|
|
9068
8980
|
purchaseOrder?: string | null;
|
|
9069
8981
|
purchaseOrderLine?: number | null;
|
|
9070
|
-
|
|
8982
|
+
purchaseOrderBatches?: PurchaseOrderMaterialBatchDto[] | null;
|
|
9071
8983
|
purchaseOrderPartName?: string | null;
|
|
9072
8984
|
purchaseOrderPartNumber?: string | null;
|
|
9073
8985
|
purchaseOrderPartRevision?: string | null;
|
|
@@ -9098,7 +9010,7 @@ export interface ImaMaterialChecksPageRequestDto {
|
|
|
9098
9010
|
certificateTypeFilter?: string | null;
|
|
9099
9011
|
purchaseOrderLineFilter?: number | null;
|
|
9100
9012
|
heatFilter?: string | null;
|
|
9101
|
-
vendorBatchesFilter?: string
|
|
9013
|
+
vendorBatchesFilter?: string | null;
|
|
9102
9014
|
purchaseOrderPartNameFilter?: string | null;
|
|
9103
9015
|
purchaseOrderPartNumberFilter?: string | null;
|
|
9104
9016
|
purchaseOrderDrawingFilter?: string | null;
|
|
@@ -9131,6 +9043,7 @@ export interface ImaMaterialCheckReportDto {
|
|
|
9131
9043
|
includesAllHeats: boolean;
|
|
9132
9044
|
status: ImaMaterialCheckStatusDto;
|
|
9133
9045
|
audit: ImaMaterialCheckReportAuditInfo;
|
|
9046
|
+
isOutdated: boolean;
|
|
9134
9047
|
}
|
|
9135
9048
|
export interface ImaMaterialCheckReportAuditInfo {
|
|
9136
9049
|
createdBy: string;
|
|
@@ -9156,7 +9069,7 @@ export interface PurchaseOrderMaterialLineDetailsDto {
|
|
|
9156
9069
|
purchaseOrder: string;
|
|
9157
9070
|
lineNumber?: number | null;
|
|
9158
9071
|
dimension?: string | null;
|
|
9159
|
-
|
|
9072
|
+
batches: PurchaseOrderMaterialBatchDto[];
|
|
9160
9073
|
mdsCodeFl?: string | null;
|
|
9161
9074
|
typeOfCertificate?: string | null;
|
|
9162
9075
|
}
|
|
@@ -9294,6 +9207,7 @@ export interface ImaChemistryCompositeSpecificationDto {
|
|
|
9294
9207
|
prenW?: ImaSpecificationLineDto | null;
|
|
9295
9208
|
v_Nb_Ti?: boolean | null;
|
|
9296
9209
|
ce?: boolean | null;
|
|
9210
|
+
nb_Ta?: ImaSpecificationLineDto | null;
|
|
9297
9211
|
}
|
|
9298
9212
|
export interface ImaMechanicalSpecificationDto {
|
|
9299
9213
|
tensile?: ImaTensileSpecificationDto | null;
|
|
@@ -9392,115 +9306,6 @@ export interface ImaSpecificationLiteDto {
|
|
|
9392
9306
|
updated: Date;
|
|
9393
9307
|
isDeleted: boolean;
|
|
9394
9308
|
}
|
|
9395
|
-
export interface SchemaCreatorStateDto {
|
|
9396
|
-
settings: SchemaCreatorSettingsDto;
|
|
9397
|
-
elements: SchemaCreatorElementDto[];
|
|
9398
|
-
documentParseStatus?: SchemaCreatorDocumentParseStatusDto | null;
|
|
9399
|
-
isAutoGenerated?: boolean;
|
|
9400
|
-
createdBy?: SchemaCreatorAuditInfoDto | null;
|
|
9401
|
-
createdAt?: Date | null;
|
|
9402
|
-
updatedBy?: SchemaCreatorAuditInfoDto | null;
|
|
9403
|
-
updatedAt?: Date | null;
|
|
9404
|
-
}
|
|
9405
|
-
export interface SchemaCreatorSettingsDto {
|
|
9406
|
-
unit?: SchemaCreatorUnitOfMeasureDto;
|
|
9407
|
-
tolerance?: GeneralToleranceDto;
|
|
9408
|
-
balloonSize?: number;
|
|
9409
|
-
transparentBalloons?: boolean;
|
|
9410
|
-
}
|
|
9411
|
-
export type SchemaCreatorUnitOfMeasureDto = "Millimeter" | "Inch" | "Mixed";
|
|
9412
|
-
export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
|
|
9413
|
-
export interface SchemaCreatorElementDto {
|
|
9414
|
-
id: string;
|
|
9415
|
-
kind: SchemaCreatorElementKindDto;
|
|
9416
|
-
drawings: SchemaCreatorElementDrawingsDto;
|
|
9417
|
-
isDirty?: boolean | null;
|
|
9418
|
-
values?: SchemaCreatorElementValuesDto | null;
|
|
9419
|
-
parseResult?: SchemaCreatorSnipResultDto | null;
|
|
9420
|
-
resolveAttempt?: SchemaCreatorParseAttemptDto | null;
|
|
9421
|
-
createdBy?: SchemaCreatorAuditInfoDto | null;
|
|
9422
|
-
createdAt?: Date | null;
|
|
9423
|
-
updatedBy?: SchemaCreatorAuditInfoDto | null;
|
|
9424
|
-
updatedAt?: Date | null;
|
|
9425
|
-
}
|
|
9426
|
-
export type SchemaCreatorElementKindDto = "Pending" | "Auto" | "Manual";
|
|
9427
|
-
export interface SchemaCreatorElementDrawingsDto {
|
|
9428
|
-
snip: SchemaCreatorSnipDto;
|
|
9429
|
-
balloon: SchemaCreatorPointDto;
|
|
9430
|
-
pageIndex: number;
|
|
9431
|
-
}
|
|
9432
|
-
export interface SchemaCreatorSnipDto {
|
|
9433
|
-
rect: SchemaCreatorRectDto;
|
|
9434
|
-
rotation?: number | null;
|
|
9435
|
-
unrotatedRect?: SchemaCreatorRectDto | null;
|
|
9436
|
-
}
|
|
9437
|
-
export interface SchemaCreatorRectDto {
|
|
9438
|
-
origin: SchemaCreatorPointDto;
|
|
9439
|
-
size: SchemaCreatorSizeDto;
|
|
9440
|
-
}
|
|
9441
|
-
export interface SchemaCreatorPointDto {
|
|
9442
|
-
x: number;
|
|
9443
|
-
y: number;
|
|
9444
|
-
}
|
|
9445
|
-
export interface SchemaCreatorSizeDto {
|
|
9446
|
-
width: number;
|
|
9447
|
-
height: number;
|
|
9448
|
-
}
|
|
9449
|
-
export interface SchemaCreatorElementValuesDto {
|
|
9450
|
-
reference: number;
|
|
9451
|
-
unit?: UnitOfMeasureDto | null;
|
|
9452
|
-
nominal?: number | null;
|
|
9453
|
-
nominalText?: string | null;
|
|
9454
|
-
upperLimit?: number | null;
|
|
9455
|
-
lowerLimit?: number | null;
|
|
9456
|
-
plusTolerance?: number | null;
|
|
9457
|
-
minusTolerance?: number | null;
|
|
9458
|
-
coatingThickness?: number | null;
|
|
9459
|
-
measurementFrequency: MeasurementFrequency;
|
|
9460
|
-
measurementFrequencyParameter?: number | null;
|
|
9461
|
-
type?: string | null;
|
|
9462
|
-
count?: number | null;
|
|
9463
|
-
comment?: string | null;
|
|
9464
|
-
canCopy: boolean;
|
|
9465
|
-
visibleToCustomer: boolean;
|
|
9466
|
-
isDocumentedExternally: boolean;
|
|
9467
|
-
}
|
|
9468
|
-
export type UnitOfMeasureDto = "Millimeter" | "Inch";
|
|
9469
|
-
export type MeasurementFrequency = "All" | "FirstArticle" | "NFirst" | "NPercent" | "ISO2859" | "Nth" | "FirstAndLast" | "None";
|
|
9470
|
-
export interface SchemaCreatorSnipResultDto {
|
|
9471
|
-
nominal?: number | null;
|
|
9472
|
-
nominalText?: string | null;
|
|
9473
|
-
upperLimit?: number | null;
|
|
9474
|
-
lowerLimit?: number | null;
|
|
9475
|
-
plusTolerance?: number | null;
|
|
9476
|
-
minusTolerance?: number | null;
|
|
9477
|
-
count?: number | null;
|
|
9478
|
-
}
|
|
9479
|
-
export interface SchemaCreatorParseAttemptDto {
|
|
9480
|
-
startedAt: Date;
|
|
9481
|
-
errorType?: SchemaCreatorParseErrorTypeDto | null;
|
|
9482
|
-
errorMessage?: string | null;
|
|
9483
|
-
}
|
|
9484
|
-
export type SchemaCreatorParseErrorTypeDto = "Timeout" | "ParseError";
|
|
9485
|
-
export interface SchemaCreatorAuditInfoDto {
|
|
9486
|
-
objectId: string;
|
|
9487
|
-
userId: string;
|
|
9488
|
-
userFullName?: string | null;
|
|
9489
|
-
}
|
|
9490
|
-
export interface SchemaCreatorDocumentParseStatusDto {
|
|
9491
|
-
inProgress: boolean;
|
|
9492
|
-
attempt?: SchemaCreatorParseAttemptDto | null;
|
|
9493
|
-
}
|
|
9494
|
-
export interface SchemaCreatorXmlGeometryDto {
|
|
9495
|
-
xmlAttributeId: number;
|
|
9496
|
-
snipRect: SchemaCreatorRectDto;
|
|
9497
|
-
balloon: SchemaCreatorPointDto;
|
|
9498
|
-
pageIndex: number;
|
|
9499
|
-
}
|
|
9500
|
-
export interface RenderSchemaCreatorElementSnipImageRequest {
|
|
9501
|
-
pageIndex: number;
|
|
9502
|
-
snip: SchemaCreatorSnipDto;
|
|
9503
|
-
}
|
|
9504
9309
|
export interface MeasurementFormSchemaDto {
|
|
9505
9310
|
id: string;
|
|
9506
9311
|
versionId: number;
|
|
@@ -9532,7 +9337,9 @@ export interface MeasurementFormSchemaDto {
|
|
|
9532
9337
|
}
|
|
9533
9338
|
export type MeasurementFormStatus = "Draft" | "Released" | "Revoked";
|
|
9534
9339
|
export type MeasurementFormSource = "Unknown" | "InspectionXpert" | "Excel" | "Manual";
|
|
9340
|
+
export type UnitOfMeasureDto = "Millimeter" | "Inch";
|
|
9535
9341
|
export type DimensionSettingDto = "Tolerance" | "MinMaxDimension";
|
|
9342
|
+
export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
|
|
9536
9343
|
export interface MeasurementFormSchemaAttachmentDto {
|
|
9537
9344
|
url: string;
|
|
9538
9345
|
title: string;
|
|
@@ -9541,7 +9348,6 @@ export interface MeasurementFormGroupedElementDto {
|
|
|
9541
9348
|
id: string;
|
|
9542
9349
|
balloonId?: string | null;
|
|
9543
9350
|
reference: number;
|
|
9544
|
-
originalXmlId?: number | null;
|
|
9545
9351
|
imageUrl?: string | null;
|
|
9546
9352
|
thumbnailUrl?: string | null;
|
|
9547
9353
|
section?: string | null;
|
|
@@ -9582,6 +9388,7 @@ export interface MeasurementFormGroupedElementDto {
|
|
|
9582
9388
|
isValid: boolean;
|
|
9583
9389
|
validationErrorMessage?: string | null;
|
|
9584
9390
|
}
|
|
9391
|
+
export type MeasurementFrequency = "All" | "FirstArticle" | "NFirst" | "NPercent" | "ISO2859" | "Nth" | "FirstAndLast" | "None";
|
|
9585
9392
|
export type MeasurementFormValueType = "None" | "Bool" | "Decimal" | "String";
|
|
9586
9393
|
export type BonusType = "None" | "Positive" | "PositiveAndNegative";
|
|
9587
9394
|
export interface MeasurementFormLinkedSchemaDto {
|
|
@@ -9687,6 +9494,10 @@ export interface UpdateSchemaSettingsRequest {
|
|
|
9687
9494
|
dimensionSetting: DimensionSettingDto;
|
|
9688
9495
|
generalTolerance: GeneralToleranceDto;
|
|
9689
9496
|
}
|
|
9497
|
+
export interface UploadDrawingRequest {
|
|
9498
|
+
uploadKey: string;
|
|
9499
|
+
filename: string;
|
|
9500
|
+
}
|
|
9690
9501
|
export interface UploadRequest {
|
|
9691
9502
|
uploadKey: string;
|
|
9692
9503
|
filename: string;
|
|
@@ -9765,8 +9576,6 @@ export interface MeasurementFormCustomerSettingsDto {
|
|
|
9765
9576
|
validationRuleId?: string | null;
|
|
9766
9577
|
requireCalibratedTools: boolean;
|
|
9767
9578
|
allowEmptyToolListInValue: boolean;
|
|
9768
|
-
disableAiParseDocument: boolean;
|
|
9769
|
-
disableAiParseSnip: boolean;
|
|
9770
9579
|
}
|
|
9771
9580
|
export interface UpdateMeasurementFormCustomerSettings {
|
|
9772
9581
|
customerId: string;
|
|
@@ -9775,8 +9584,6 @@ export interface UpdateMeasurementFormCustomerSettings {
|
|
|
9775
9584
|
validationRuleId?: string | null;
|
|
9776
9585
|
requireCalibratedTools: boolean;
|
|
9777
9586
|
allowEmptyToolListInValue: boolean;
|
|
9778
|
-
disableAiParseDocument: boolean;
|
|
9779
|
-
disableAiParseSnip: boolean;
|
|
9780
9587
|
}
|
|
9781
9588
|
export interface MeasurementFormMappingDto {
|
|
9782
9589
|
id: string;
|
|
@@ -9869,10 +9676,6 @@ export interface MeasurementFormSchemaNotNeededDto {
|
|
|
9869
9676
|
export interface SetMeasurementFormNeedAsNotNeededRequest {
|
|
9870
9677
|
comment?: string | null;
|
|
9871
9678
|
}
|
|
9872
|
-
export interface UploadDrawingRequest {
|
|
9873
|
-
uploadKey: string;
|
|
9874
|
-
filename: string;
|
|
9875
|
-
}
|
|
9876
9679
|
export interface PagedResultOfMeasurementFormSchemaNotNeededDto {
|
|
9877
9680
|
results: MeasurementFormSchemaNotNeededDto[];
|
|
9878
9681
|
continuationToken?: string | null;
|