@ignos/api-client 20260831.252.1-alpha → 20260901.254.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.
@@ -780,6 +780,60 @@ export declare class PulseClient extends AuthorizedApiBase implements IPulseClie
780
780
  updatePulseSettingsResource(request: UpdatePulseSettingsResource): Promise<PulseSettingsResourceDto>;
781
781
  protected processUpdatePulseSettingsResource(response: Response): Promise<PulseSettingsResourceDto>;
782
782
  }
783
+ export interface IPulseJournalClient {
784
+ getBoards(resourceId: string): Promise<PulseJournalBoardsDto>;
785
+ listHistory(resourceId: string, pageSize: number | null | undefined, continuationToken: string | null | undefined): Promise<PagedResultOfPulseJournalEventDto>;
786
+ undo(resourceId: string, request: UndoPulseJournalActionRequest): Promise<PulseJournalBoardsDto>;
787
+ createNowLine(resourceId: string, request: CreatePulseJournalLineRequest): Promise<PulseJournalNowLineMutationResultDto>;
788
+ editNowLine(resourceId: string, lineId: string, request: EditPulseJournalLineRequest): Promise<PulseJournalNowLineMutationResultDto>;
789
+ deleteNowLine(resourceId: string, lineId: string, eTag: string | null | undefined): Promise<PulseJournalNowLineMutationResultDto>;
790
+ reorderNowLine(resourceId: string, lineId: string, request: ReorderPulseJournalLineRequest): Promise<PulseJournalNowLineMutationResultDto>;
791
+ createAlwaysLine(resourceId: string, request: CreatePulseJournalLineRequest): Promise<PulseJournalAlwaysLineMutationResultDto>;
792
+ editAlwaysLine(resourceId: string, lineId: string, request: EditPulseJournalLineRequest): Promise<PulseJournalAlwaysLineMutationResultDto>;
793
+ deleteAlwaysLine(resourceId: string, lineId: string, eTag: string | null | undefined): Promise<PulseJournalAlwaysLineMutationResultDto>;
794
+ reorderAlwaysLine(resourceId: string, lineId: string, request: ReorderPulseJournalLineRequest): Promise<PulseJournalAlwaysLineMutationResultDto>;
795
+ addAlwaysAttachment(resourceId: string, lineId: string, request: AddPulseJournalAttachmentRequest): Promise<PulseJournalAlwaysLineMutationResultDto>;
796
+ removeAlwaysAttachment(resourceId: string, lineId: string, attachmentId: string, eTag: string | null | undefined): Promise<PulseJournalAlwaysLineMutationResultDto>;
797
+ addAlwaysLink(resourceId: string, lineId: string, request: AddPulseJournalLinkRequest): Promise<PulseJournalAlwaysLineMutationResultDto>;
798
+ removeAlwaysLink(resourceId: string, lineId: string, linkId: string, eTag: string | null | undefined): Promise<PulseJournalAlwaysLineMutationResultDto>;
799
+ }
800
+ export declare class PulseJournalClient extends AuthorizedApiBase implements IPulseJournalClient {
801
+ private http;
802
+ private baseUrl;
803
+ constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
804
+ fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
805
+ });
806
+ getBoards(resourceId: string): Promise<PulseJournalBoardsDto>;
807
+ protected processGetBoards(response: Response): Promise<PulseJournalBoardsDto>;
808
+ listHistory(resourceId: string, pageSize: number | null | undefined, continuationToken: string | null | undefined): Promise<PagedResultOfPulseJournalEventDto>;
809
+ protected processListHistory(response: Response): Promise<PagedResultOfPulseJournalEventDto>;
810
+ undo(resourceId: string, request: UndoPulseJournalActionRequest): Promise<PulseJournalBoardsDto>;
811
+ protected processUndo(response: Response): Promise<PulseJournalBoardsDto>;
812
+ createNowLine(resourceId: string, request: CreatePulseJournalLineRequest): Promise<PulseJournalNowLineMutationResultDto>;
813
+ protected processCreateNowLine(response: Response): Promise<PulseJournalNowLineMutationResultDto>;
814
+ editNowLine(resourceId: string, lineId: string, request: EditPulseJournalLineRequest): Promise<PulseJournalNowLineMutationResultDto>;
815
+ protected processEditNowLine(response: Response): Promise<PulseJournalNowLineMutationResultDto>;
816
+ deleteNowLine(resourceId: string, lineId: string, eTag: string | null | undefined): Promise<PulseJournalNowLineMutationResultDto>;
817
+ protected processDeleteNowLine(response: Response): Promise<PulseJournalNowLineMutationResultDto>;
818
+ reorderNowLine(resourceId: string, lineId: string, request: ReorderPulseJournalLineRequest): Promise<PulseJournalNowLineMutationResultDto>;
819
+ protected processReorderNowLine(response: Response): Promise<PulseJournalNowLineMutationResultDto>;
820
+ createAlwaysLine(resourceId: string, request: CreatePulseJournalLineRequest): Promise<PulseJournalAlwaysLineMutationResultDto>;
821
+ protected processCreateAlwaysLine(response: Response): Promise<PulseJournalAlwaysLineMutationResultDto>;
822
+ editAlwaysLine(resourceId: string, lineId: string, request: EditPulseJournalLineRequest): Promise<PulseJournalAlwaysLineMutationResultDto>;
823
+ protected processEditAlwaysLine(response: Response): Promise<PulseJournalAlwaysLineMutationResultDto>;
824
+ deleteAlwaysLine(resourceId: string, lineId: string, eTag: string | null | undefined): Promise<PulseJournalAlwaysLineMutationResultDto>;
825
+ protected processDeleteAlwaysLine(response: Response): Promise<PulseJournalAlwaysLineMutationResultDto>;
826
+ reorderAlwaysLine(resourceId: string, lineId: string, request: ReorderPulseJournalLineRequest): Promise<PulseJournalAlwaysLineMutationResultDto>;
827
+ protected processReorderAlwaysLine(response: Response): Promise<PulseJournalAlwaysLineMutationResultDto>;
828
+ addAlwaysAttachment(resourceId: string, lineId: string, request: AddPulseJournalAttachmentRequest): Promise<PulseJournalAlwaysLineMutationResultDto>;
829
+ protected processAddAlwaysAttachment(response: Response): Promise<PulseJournalAlwaysLineMutationResultDto>;
830
+ removeAlwaysAttachment(resourceId: string, lineId: string, attachmentId: string, eTag: string | null | undefined): Promise<PulseJournalAlwaysLineMutationResultDto>;
831
+ protected processRemoveAlwaysAttachment(response: Response): Promise<PulseJournalAlwaysLineMutationResultDto>;
832
+ addAlwaysLink(resourceId: string, lineId: string, request: AddPulseJournalLinkRequest): Promise<PulseJournalAlwaysLineMutationResultDto>;
833
+ protected processAddAlwaysLink(response: Response): Promise<PulseJournalAlwaysLineMutationResultDto>;
834
+ removeAlwaysLink(resourceId: string, lineId: string, linkId: string, eTag: string | null | undefined): Promise<PulseJournalAlwaysLineMutationResultDto>;
835
+ protected processRemoveAlwaysLink(response: Response): Promise<PulseJournalAlwaysLineMutationResultDto>;
836
+ }
783
837
  export interface IUtilizationClient {
784
838
  getCompanyUtilization(request: UtilizationInputRequest): Promise<CompanyResourceUtilizationDto>;
785
839
  /**
@@ -2879,84 +2933,6 @@ export declare class InspectMatchSpecificationsClient extends AuthorizedApiBase
2879
2933
  listSpecifications(): Promise<ImaSpecificationLiteDto[]>;
2880
2934
  protected processListSpecifications(response: Response): Promise<ImaSpecificationLiteDto[]>;
2881
2935
  }
2882
- export interface IInspectSchemaCreatorClient {
2883
- getSchemaCreatorState(id: string): Promise<SchemaCreatorStateDto>;
2884
- /**
2885
- * Creates the initial creator state for a schema version. Returns 409 if
2886
- state already exists; the caller should re-fetch it instead of writing.
2887
- */
2888
- createSchemaCreatorState(id: string, state: SchemaCreatorStateDto): Promise<SchemaCreatorStateDto>;
2889
- updateSchemaCreatorState(id: string, state: SchemaCreatorStateDto): Promise<SchemaCreatorStateDto>;
2890
- /**
2891
- * Starts a full drawing AI parse: clears every element and locks the
2892
- schema for every viewer until it completes. If one is already in
2893
- progress, returns that instead of starting a second one.
2894
- */
2895
- requestSchemaCreatorDocumentParse(id: string): Promise<SchemaCreatorStateDto>;
2896
- /**
2897
- * Stamps the creator state's balloons onto the schema's drawing PDF and
2898
- returns a temporary download link.
2899
- */
2900
- exportSchemaCreatorDrawing(id: string): Promise<DownloadDto>;
2901
- /**
2902
- * Starts an async snip resolve; the result is delivered through the
2903
- SchemaCreatorSnipResolved SignalR notification.
2904
- * @param image (optional)
2905
- */
2906
- requestSchemaCreatorSnipParse(id: string, elementId: string, image: FileParameter | null | undefined): Promise<void>;
2907
- /**
2908
- * Renders the legacy-format image for one element's current snip.
2909
- Fire-and-forget from the client on every snip commit - the resulting
2910
- image isn't returned here, it's only ever read back once the schema
2911
- is released (SchemaCreatorLegacyMapper).
2912
- */
2913
- renderSchemaCreatorElementSnipImage(id: string, elementId: string, request: RenderSchemaCreatorElementSnipImageRequest): Promise<void>;
2914
- }
2915
- export declare class InspectSchemaCreatorClient extends AuthorizedApiBase implements IInspectSchemaCreatorClient {
2916
- private http;
2917
- private baseUrl;
2918
- constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
2919
- fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
2920
- });
2921
- getSchemaCreatorState(id: string): Promise<SchemaCreatorStateDto>;
2922
- protected processGetSchemaCreatorState(response: Response): Promise<SchemaCreatorStateDto>;
2923
- /**
2924
- * Creates the initial creator state for a schema version. Returns 409 if
2925
- state already exists; the caller should re-fetch it instead of writing.
2926
- */
2927
- createSchemaCreatorState(id: string, state: SchemaCreatorStateDto): Promise<SchemaCreatorStateDto>;
2928
- protected processCreateSchemaCreatorState(response: Response): Promise<SchemaCreatorStateDto>;
2929
- updateSchemaCreatorState(id: string, state: SchemaCreatorStateDto): Promise<SchemaCreatorStateDto>;
2930
- protected processUpdateSchemaCreatorState(response: Response): Promise<SchemaCreatorStateDto>;
2931
- /**
2932
- * Starts a full drawing AI parse: clears every element and locks the
2933
- schema for every viewer until it completes. If one is already in
2934
- progress, returns that instead of starting a second one.
2935
- */
2936
- requestSchemaCreatorDocumentParse(id: string): Promise<SchemaCreatorStateDto>;
2937
- protected processRequestSchemaCreatorDocumentParse(response: Response): Promise<SchemaCreatorStateDto>;
2938
- /**
2939
- * Stamps the creator state's balloons onto the schema's drawing PDF and
2940
- returns a temporary download link.
2941
- */
2942
- exportSchemaCreatorDrawing(id: string): Promise<DownloadDto>;
2943
- protected processExportSchemaCreatorDrawing(response: Response): Promise<DownloadDto>;
2944
- /**
2945
- * Starts an async snip resolve; the result is delivered through the
2946
- SchemaCreatorSnipResolved SignalR notification.
2947
- * @param image (optional)
2948
- */
2949
- requestSchemaCreatorSnipParse(id: string, elementId: string, image: FileParameter | null | undefined): Promise<void>;
2950
- protected processRequestSchemaCreatorSnipParse(response: Response): Promise<void>;
2951
- /**
2952
- * Renders the legacy-format image for one element's current snip.
2953
- Fire-and-forget from the client on every snip commit - the resulting
2954
- image isn't returned here, it's only ever read back once the schema
2955
- is released (SchemaCreatorLegacyMapper).
2956
- */
2957
- renderSchemaCreatorElementSnipImage(id: string, elementId: string, request: RenderSchemaCreatorElementSnipImageRequest): Promise<void>;
2958
- protected processRenderSchemaCreatorElementSnipImage(response: Response): Promise<void>;
2959
- }
2960
2936
  export interface IMeasurementFormSchemasAdminClient {
2961
2937
  getArchivedMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
2962
2938
  createMeasurementForm(request: CreateMeasurementFormSchema): Promise<MeasurementFormDto>;
@@ -2968,7 +2944,7 @@ export interface IMeasurementFormSchemasAdminClient {
2968
2944
  deleteSchemaRows(id: string, request: DeleteSchemaGroupedElementRowsDto): Promise<MeasurementFormSchemaDto>;
2969
2945
  uploadMeasurementImage(id: string, request: UploadMeasurementImageRequest): Promise<MeasurementFormSchemaDto>;
2970
2946
  updateSchemaSettings(id: string, request: UpdateSchemaSettingsRequest): Promise<UpdateSchemaSettingsRequest>;
2971
- uploadSchemaMarkedDrawing(id: string, request: UploadRequest): Promise<MeasurementFormSchemaDto>;
2947
+ uploadSchemaDrawing(id: string, request: UploadDrawingRequest): Promise<MeasurementFormSchemaDto>;
2972
2948
  uploadSchemaAttachment(id: string, request: UploadRequest): Promise<MeasurementFormSchemaDto>;
2973
2949
  getMeasurementFormImportStatus(id: string): Promise<MeasurementFormImportStatusDto>;
2974
2950
  listLinkableMeasurementFormSchemas(schemaId: string, pageSize: number | undefined, filter: string | null | undefined, continuationToken: string | null | undefined): Promise<PagedResultOfMeasurementFormListDto>;
@@ -3051,8 +3027,8 @@ export declare class MeasurementFormSchemasAdminClient extends AuthorizedApiBase
3051
3027
  protected processUploadMeasurementImage(response: Response): Promise<MeasurementFormSchemaDto>;
3052
3028
  updateSchemaSettings(id: string, request: UpdateSchemaSettingsRequest): Promise<UpdateSchemaSettingsRequest>;
3053
3029
  protected processUpdateSchemaSettings(response: Response): Promise<UpdateSchemaSettingsRequest>;
3054
- uploadSchemaMarkedDrawing(id: string, request: UploadRequest): Promise<MeasurementFormSchemaDto>;
3055
- protected processUploadSchemaMarkedDrawing(response: Response): Promise<MeasurementFormSchemaDto>;
3030
+ uploadSchemaDrawing(id: string, request: UploadDrawingRequest): Promise<MeasurementFormSchemaDto>;
3031
+ protected processUploadSchemaDrawing(response: Response): Promise<MeasurementFormSchemaDto>;
3056
3032
  uploadSchemaAttachment(id: string, request: UploadRequest): Promise<MeasurementFormSchemaDto>;
3057
3033
  protected processUploadSchemaAttachment(response: Response): Promise<MeasurementFormSchemaDto>;
3058
3034
  getMeasurementFormImportStatus(id: string): Promise<MeasurementFormImportStatusDto>;
@@ -4771,6 +4747,95 @@ export interface UpdatePulseSettingsResource {
4771
4747
  resourceCalendarEnabled: boolean;
4772
4748
  factoryCalendarEnabled: boolean;
4773
4749
  }
4750
+ export interface PulseJournalBoardsDto {
4751
+ now: PulseJournalNowBoardDto;
4752
+ always: PulseJournalAlwaysBoardDto;
4753
+ }
4754
+ export interface PulseJournalNowBoardDto {
4755
+ lines: PulseJournalLineDto[];
4756
+ eTag?: string | null;
4757
+ }
4758
+ export interface PulseJournalLineDto {
4759
+ id: string;
4760
+ text: string;
4761
+ displayOrder: number;
4762
+ created: Date;
4763
+ createdBy?: string | null;
4764
+ updated?: Date | null;
4765
+ updatedBy?: string | null;
4766
+ }
4767
+ export interface PulseJournalAlwaysBoardDto {
4768
+ lines: PulseJournalAlwaysLineDto[];
4769
+ eTag?: string | null;
4770
+ }
4771
+ export interface PulseJournalAlwaysLineDto extends PulseJournalLineDto {
4772
+ attachments: PulseJournalAttachmentDto[];
4773
+ links: PulseJournalLinkDto[];
4774
+ }
4775
+ export interface PulseJournalAttachmentDto {
4776
+ id: string;
4777
+ filename: string;
4778
+ url: string;
4779
+ created: Date;
4780
+ createdBy?: string | null;
4781
+ }
4782
+ export interface PulseJournalLinkDto {
4783
+ id: string;
4784
+ url: string;
4785
+ created: Date;
4786
+ createdBy?: string | null;
4787
+ }
4788
+ export interface PagedResultOfPulseJournalEventDto {
4789
+ results: PulseJournalEventDto[];
4790
+ continuationToken?: string | null;
4791
+ }
4792
+ export interface PulseJournalEventDto {
4793
+ id: string;
4794
+ board: PulseJournalBoardTypeDto;
4795
+ lineId: string;
4796
+ eventType: PulseJournalEventTypeDto;
4797
+ oldValue?: string | null;
4798
+ newValue?: string | null;
4799
+ created: Date;
4800
+ createdBy?: string | null;
4801
+ }
4802
+ export type PulseJournalBoardTypeDto = "Now" | "Always" | "Unknown";
4803
+ export type PulseJournalEventTypeDto = "LineAdded" | "LineEdited" | "LineMoved" | "LineRemoved" | "FixedInfoAdded" | "FixedInfoEdited" | "FixedInfoRemoved" | "AttachmentAdded" | "AttachmentRemoved" | "LinkAdded" | "LinkRemoved" | "Unknown";
4804
+ export interface UndoPulseJournalActionRequest {
4805
+ eventId: string;
4806
+ }
4807
+ export interface PulseJournalNowLineMutationResultDto {
4808
+ line?: PulseJournalLineDto | null;
4809
+ boardETag: string;
4810
+ eventId?: string | null;
4811
+ }
4812
+ export interface CreatePulseJournalLineRequest {
4813
+ text: string;
4814
+ displayBeforeId?: string | null;
4815
+ eTag?: string | null;
4816
+ }
4817
+ export interface EditPulseJournalLineRequest {
4818
+ text: string;
4819
+ eTag?: string | null;
4820
+ }
4821
+ export interface ReorderPulseJournalLineRequest {
4822
+ displayBeforeId?: string | null;
4823
+ eTag?: string | null;
4824
+ }
4825
+ export interface PulseJournalAlwaysLineMutationResultDto {
4826
+ line?: PulseJournalAlwaysLineDto | null;
4827
+ boardETag: string;
4828
+ eventId?: string | null;
4829
+ }
4830
+ export interface AddPulseJournalAttachmentRequest {
4831
+ uploadKey: string;
4832
+ filename: string;
4833
+ eTag?: string | null;
4834
+ }
4835
+ export interface AddPulseJournalLinkRequest {
4836
+ url: string;
4837
+ eTag?: string | null;
4838
+ }
4774
4839
  export interface CompanyResourceUtilizationDto {
4775
4840
  utilizationType: ResourceUtilizationTypeDto;
4776
4841
  companyUtilization: UtilizationDetailsV2Dto;
@@ -8599,7 +8664,8 @@ export interface ImaImpactTestResultDto {
8599
8664
  sampleReference?: string | null;
8600
8665
  orientation?: string | null;
8601
8666
  testLocation?: string | null;
8602
- temperature?: ImaSpecificationResultLineDto | null;
8667
+ temperature?: number | null;
8668
+ temperatureUnit?: string | null;
8603
8669
  roomTemperature?: boolean | null;
8604
8670
  testLabel?: string | null;
8605
8671
  notchType?: string | null;
@@ -8829,7 +8895,7 @@ export interface ImaOverrideImpactTestResultsDto {
8829
8895
  heatNumber?: string | null;
8830
8896
  sampleReference?: string | null;
8831
8897
  orientation?: string | null;
8832
- temperature?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8898
+ temperature?: number | null;
8833
8899
  reportedAverage?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8834
8900
  individualValues?: ImaOverrideIndexedResultLineDto[] | null;
8835
8901
  }
@@ -9137,7 +9203,7 @@ export interface ImaChemistryCompositeSpecificationDto {
9137
9203
  export interface ImaMechanicalSpecificationDto {
9138
9204
  tensile?: ImaTensileSpecificationDto | null;
9139
9205
  hardness?: ImaHardnessSpecificationDto | null;
9140
- impact?: ImaImpactSpecificationDto | null;
9206
+ impactTests?: ImaImpactSpecificationDto[] | null;
9141
9207
  }
9142
9208
  export interface ImaTensileSpecificationDto {
9143
9209
  yieldStrength?: ImaSpecificationLineDto | null;
@@ -9150,7 +9216,8 @@ export interface ImaHardnessSpecificationDto {
9150
9216
  hardness?: ImaSpecificationLineDto | null;
9151
9217
  }
9152
9218
  export interface ImaImpactSpecificationDto {
9153
- temperature?: ImaSpecificationLineDto | null;
9219
+ temperature?: number | null;
9220
+ temperatureUnit?: ImaUnitDto | null;
9154
9221
  minimum?: ImaSpecificationLineDto | null;
9155
9222
  average?: ImaSpecificationLineDto | null;
9156
9223
  }
@@ -9230,105 +9297,6 @@ export interface ImaSpecificationLiteDto {
9230
9297
  updated: Date;
9231
9298
  isDeleted: boolean;
9232
9299
  }
9233
- export interface SchemaCreatorStateDto {
9234
- settings: SchemaCreatorSettingsDto;
9235
- elements: SchemaCreatorElementDto[];
9236
- documentParseStatus?: SchemaCreatorDocumentParseStatusDto | null;
9237
- isAutoGenerated?: boolean;
9238
- createdBy?: SchemaCreatorAuditInfoDto | null;
9239
- createdAt?: Date | null;
9240
- updatedBy?: SchemaCreatorAuditInfoDto | null;
9241
- updatedAt?: Date | null;
9242
- }
9243
- export interface SchemaCreatorSettingsDto {
9244
- unit?: SchemaCreatorUnitOfMeasureDto;
9245
- tolerance?: GeneralToleranceDto;
9246
- balloonSize?: number;
9247
- transparentBalloons?: boolean;
9248
- }
9249
- export type SchemaCreatorUnitOfMeasureDto = "Millimeter" | "Inch" | "Mixed";
9250
- export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
9251
- export interface SchemaCreatorElementDto {
9252
- id: string;
9253
- kind: SchemaCreatorElementKindDto;
9254
- drawings: SchemaCreatorElementDrawingsDto;
9255
- isDirty?: boolean | null;
9256
- values?: SchemaCreatorElementValuesDto | null;
9257
- parseResult?: SchemaCreatorSnipResultDto | null;
9258
- resolveAttempt?: SchemaCreatorParseAttemptDto | null;
9259
- createdBy?: SchemaCreatorAuditInfoDto | null;
9260
- createdAt?: Date | null;
9261
- updatedBy?: SchemaCreatorAuditInfoDto | null;
9262
- updatedAt?: Date | null;
9263
- }
9264
- export type SchemaCreatorElementKindDto = "Pending" | "Auto" | "Manual";
9265
- export interface SchemaCreatorElementDrawingsDto {
9266
- snip: SchemaCreatorSnipDto;
9267
- balloon: SchemaCreatorPointDto;
9268
- pageIndex: number;
9269
- }
9270
- export interface SchemaCreatorSnipDto {
9271
- rect: SchemaCreatorRectDto;
9272
- rotation?: number | null;
9273
- unrotatedRect?: SchemaCreatorRectDto | null;
9274
- }
9275
- export interface SchemaCreatorRectDto {
9276
- origin: SchemaCreatorPointDto;
9277
- size: SchemaCreatorSizeDto;
9278
- }
9279
- export interface SchemaCreatorPointDto {
9280
- x: number;
9281
- y: number;
9282
- }
9283
- export interface SchemaCreatorSizeDto {
9284
- width: number;
9285
- height: number;
9286
- }
9287
- export interface SchemaCreatorElementValuesDto {
9288
- reference: number;
9289
- unit?: UnitOfMeasureDto | null;
9290
- nominal?: number | null;
9291
- nominalText?: string | null;
9292
- plusTolerance?: number | null;
9293
- minusTolerance?: number | null;
9294
- coatingThickness?: number | null;
9295
- measurementFrequency: MeasurementFrequency;
9296
- measurementFrequencyParameter?: number | null;
9297
- type?: string | null;
9298
- count?: number | null;
9299
- comment?: string | null;
9300
- canCopy: boolean;
9301
- visibleToCustomer: boolean;
9302
- isDocumentedExternally: boolean;
9303
- }
9304
- export type UnitOfMeasureDto = "Millimeter" | "Inch";
9305
- export type MeasurementFrequency = "All" | "FirstArticle" | "NFirst" | "NPercent" | "ISO2859" | "Nth" | "FirstAndLast" | "None";
9306
- export interface SchemaCreatorSnipResultDto {
9307
- nominal?: number | null;
9308
- nominalText?: string | null;
9309
- plusTolerance?: number | null;
9310
- minusTolerance?: number | null;
9311
- count?: number | null;
9312
- }
9313
- export interface SchemaCreatorParseAttemptDto {
9314
- startedAt: Date;
9315
- errorType?: SchemaCreatorParseErrorTypeDto | null;
9316
- errorMessage?: string | null;
9317
- }
9318
- export type SchemaCreatorParseErrorTypeDto = "Timeout" | "ParseError";
9319
- export interface SchemaCreatorAuditInfoDto {
9320
- objectId: string;
9321
- userId: string;
9322
- userFullName?: string | null;
9323
- }
9324
- export interface SchemaCreatorDocumentParseStatusDto {
9325
- inProgress: boolean;
9326
- attempt?: SchemaCreatorParseAttemptDto | null;
9327
- }
9328
- export interface RenderSchemaCreatorElementSnipImageRequest {
9329
- pageIndex: number;
9330
- snip: SchemaCreatorSnipDto;
9331
- }
9332
9300
  export interface MeasurementFormSchemaDto {
9333
9301
  id: string;
9334
9302
  versionId: number;
@@ -9360,7 +9328,9 @@ export interface MeasurementFormSchemaDto {
9360
9328
  }
9361
9329
  export type MeasurementFormStatus = "Draft" | "Released" | "Revoked";
9362
9330
  export type MeasurementFormSource = "Unknown" | "InspectionXpert" | "Excel" | "Manual";
9331
+ export type UnitOfMeasureDto = "Millimeter" | "Inch";
9363
9332
  export type DimensionSettingDto = "Tolerance" | "MinMaxDimension";
9333
+ export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
9364
9334
  export interface MeasurementFormSchemaAttachmentDto {
9365
9335
  url: string;
9366
9336
  title: string;
@@ -9409,6 +9379,7 @@ export interface MeasurementFormGroupedElementDto {
9409
9379
  isValid: boolean;
9410
9380
  validationErrorMessage?: string | null;
9411
9381
  }
9382
+ export type MeasurementFrequency = "All" | "FirstArticle" | "NFirst" | "NPercent" | "ISO2859" | "Nth" | "FirstAndLast" | "None";
9412
9383
  export type MeasurementFormValueType = "None" | "Bool" | "Decimal" | "String";
9413
9384
  export type BonusType = "None" | "Positive" | "PositiveAndNegative";
9414
9385
  export interface MeasurementFormLinkedSchemaDto {
@@ -9514,6 +9485,10 @@ export interface UpdateSchemaSettingsRequest {
9514
9485
  dimensionSetting: DimensionSettingDto;
9515
9486
  generalTolerance: GeneralToleranceDto;
9516
9487
  }
9488
+ export interface UploadDrawingRequest {
9489
+ uploadKey: string;
9490
+ filename: string;
9491
+ }
9517
9492
  export interface UploadRequest {
9518
9493
  uploadKey: string;
9519
9494
  filename: string;
@@ -9692,10 +9667,6 @@ export interface MeasurementFormSchemaNotNeededDto {
9692
9667
  export interface SetMeasurementFormNeedAsNotNeededRequest {
9693
9668
  comment?: string | null;
9694
9669
  }
9695
- export interface UploadDrawingRequest {
9696
- uploadKey: string;
9697
- filename: string;
9698
- }
9699
9670
  export interface PagedResultOfMeasurementFormSchemaNotNeededDto {
9700
9671
  results: MeasurementFormSchemaNotNeededDto[];
9701
9672
  continuationToken?: string | null;