@ignos/api-client 20260905.260.1-alpha → 20260907.261.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 +15 -213
- package/lib/ignosportal-api.js +4 -416
- package/package.json +1 -1
- package/src/ignosportal-api.ts +21 -603
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
|
}
|
|
@@ -8706,6 +8611,7 @@ export interface ImaChemicalAnalysisCompositeResultDto {
|
|
|
8706
8611
|
prenW?: ImaSpecificationCalculatedResultLineDto | null;
|
|
8707
8612
|
v_Nb_Ti?: ImaSpecificationCalculatedResultLineDto | null;
|
|
8708
8613
|
ce?: ImaSpecificationCalculatedResultLineDto | null;
|
|
8614
|
+
nb_Ta?: ImaSpecificationCalculatedResultLineDto | null;
|
|
8709
8615
|
}
|
|
8710
8616
|
export interface ImaSpecificationCalculatedResultLineDto {
|
|
8711
8617
|
specificationMin?: number | null;
|
|
@@ -8957,6 +8863,7 @@ export interface ImaOverrideChemicalAnalysisCompositeResultsDto {
|
|
|
8957
8863
|
prenW?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8958
8864
|
v_Nb_Ti?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8959
8865
|
ce?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8866
|
+
nb_Ta?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8960
8867
|
}
|
|
8961
8868
|
export interface ImaOverrideTensileTestResultsDto {
|
|
8962
8869
|
heatNumber?: string | null;
|
|
@@ -9131,6 +9038,7 @@ export interface ImaMaterialCheckReportDto {
|
|
|
9131
9038
|
includesAllHeats: boolean;
|
|
9132
9039
|
status: ImaMaterialCheckStatusDto;
|
|
9133
9040
|
audit: ImaMaterialCheckReportAuditInfo;
|
|
9041
|
+
isOutdated: boolean;
|
|
9134
9042
|
}
|
|
9135
9043
|
export interface ImaMaterialCheckReportAuditInfo {
|
|
9136
9044
|
createdBy: string;
|
|
@@ -9294,6 +9202,7 @@ export interface ImaChemistryCompositeSpecificationDto {
|
|
|
9294
9202
|
prenW?: ImaSpecificationLineDto | null;
|
|
9295
9203
|
v_Nb_Ti?: boolean | null;
|
|
9296
9204
|
ce?: boolean | null;
|
|
9205
|
+
nb_Ta?: ImaSpecificationLineDto | null;
|
|
9297
9206
|
}
|
|
9298
9207
|
export interface ImaMechanicalSpecificationDto {
|
|
9299
9208
|
tensile?: ImaTensileSpecificationDto | null;
|
|
@@ -9392,115 +9301,6 @@ export interface ImaSpecificationLiteDto {
|
|
|
9392
9301
|
updated: Date;
|
|
9393
9302
|
isDeleted: boolean;
|
|
9394
9303
|
}
|
|
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
9304
|
export interface MeasurementFormSchemaDto {
|
|
9505
9305
|
id: string;
|
|
9506
9306
|
versionId: number;
|
|
@@ -9532,7 +9332,9 @@ export interface MeasurementFormSchemaDto {
|
|
|
9532
9332
|
}
|
|
9533
9333
|
export type MeasurementFormStatus = "Draft" | "Released" | "Revoked";
|
|
9534
9334
|
export type MeasurementFormSource = "Unknown" | "InspectionXpert" | "Excel" | "Manual";
|
|
9335
|
+
export type UnitOfMeasureDto = "Millimeter" | "Inch";
|
|
9535
9336
|
export type DimensionSettingDto = "Tolerance" | "MinMaxDimension";
|
|
9337
|
+
export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
|
|
9536
9338
|
export interface MeasurementFormSchemaAttachmentDto {
|
|
9537
9339
|
url: string;
|
|
9538
9340
|
title: string;
|
|
@@ -9541,7 +9343,6 @@ export interface MeasurementFormGroupedElementDto {
|
|
|
9541
9343
|
id: string;
|
|
9542
9344
|
balloonId?: string | null;
|
|
9543
9345
|
reference: number;
|
|
9544
|
-
originalXmlId?: number | null;
|
|
9545
9346
|
imageUrl?: string | null;
|
|
9546
9347
|
thumbnailUrl?: string | null;
|
|
9547
9348
|
section?: string | null;
|
|
@@ -9582,6 +9383,7 @@ export interface MeasurementFormGroupedElementDto {
|
|
|
9582
9383
|
isValid: boolean;
|
|
9583
9384
|
validationErrorMessage?: string | null;
|
|
9584
9385
|
}
|
|
9386
|
+
export type MeasurementFrequency = "All" | "FirstArticle" | "NFirst" | "NPercent" | "ISO2859" | "Nth" | "FirstAndLast" | "None";
|
|
9585
9387
|
export type MeasurementFormValueType = "None" | "Bool" | "Decimal" | "String";
|
|
9586
9388
|
export type BonusType = "None" | "Positive" | "PositiveAndNegative";
|
|
9587
9389
|
export interface MeasurementFormLinkedSchemaDto {
|
|
@@ -9687,6 +9489,10 @@ export interface UpdateSchemaSettingsRequest {
|
|
|
9687
9489
|
dimensionSetting: DimensionSettingDto;
|
|
9688
9490
|
generalTolerance: GeneralToleranceDto;
|
|
9689
9491
|
}
|
|
9492
|
+
export interface UploadDrawingRequest {
|
|
9493
|
+
uploadKey: string;
|
|
9494
|
+
filename: string;
|
|
9495
|
+
}
|
|
9690
9496
|
export interface UploadRequest {
|
|
9691
9497
|
uploadKey: string;
|
|
9692
9498
|
filename: string;
|
|
@@ -9865,10 +9671,6 @@ export interface MeasurementFormSchemaNotNeededDto {
|
|
|
9865
9671
|
export interface SetMeasurementFormNeedAsNotNeededRequest {
|
|
9866
9672
|
comment?: string | null;
|
|
9867
9673
|
}
|
|
9868
|
-
export interface UploadDrawingRequest {
|
|
9869
|
-
uploadKey: string;
|
|
9870
|
-
filename: string;
|
|
9871
|
-
}
|
|
9872
9674
|
export interface PagedResultOfMeasurementFormSchemaNotNeededDto {
|
|
9873
9675
|
results: MeasurementFormSchemaNotNeededDto[];
|
|
9874
9676
|
continuationToken?: string | null;
|