@ignos/api-client 20260706.173.1-alpha → 20260706.175.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 +3 -73
- package/lib/ignosportal-api.js +0 -88
- package/package.json +1 -1
- package/src/ignosportal-api.ts +6 -169
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -2819,21 +2819,6 @@ export declare class InspectMatchSpecificationsClient extends AuthorizedApiBase
|
|
|
2819
2819
|
listSpecifications(): Promise<ImaSpecificationLiteDto[]>;
|
|
2820
2820
|
protected processListSpecifications(response: Response): Promise<ImaSpecificationLiteDto[]>;
|
|
2821
2821
|
}
|
|
2822
|
-
export interface IInspectSchemaCreatorClient {
|
|
2823
|
-
getSchemaCreatorState(id: string): Promise<SchemaCreatorStateDto>;
|
|
2824
|
-
updateSchemaCreatorState(id: string, state: SchemaCreatorStateDto): Promise<SchemaCreatorStateDto>;
|
|
2825
|
-
}
|
|
2826
|
-
export declare class InspectSchemaCreatorClient extends AuthorizedApiBase implements IInspectSchemaCreatorClient {
|
|
2827
|
-
private http;
|
|
2828
|
-
private baseUrl;
|
|
2829
|
-
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: {
|
|
2830
|
-
fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|
|
2831
|
-
});
|
|
2832
|
-
getSchemaCreatorState(id: string): Promise<SchemaCreatorStateDto>;
|
|
2833
|
-
protected processGetSchemaCreatorState(response: Response): Promise<SchemaCreatorStateDto>;
|
|
2834
|
-
updateSchemaCreatorState(id: string, state: SchemaCreatorStateDto): Promise<SchemaCreatorStateDto>;
|
|
2835
|
-
protected processUpdateSchemaCreatorState(response: Response): Promise<SchemaCreatorStateDto>;
|
|
2836
|
-
}
|
|
2837
2822
|
export interface IMeasurementFormSchemasAdminClient {
|
|
2838
2823
|
getArchivedMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
|
|
2839
2824
|
createMeasurementForm(request: CreateMeasurementFormSchema): Promise<MeasurementFormDto>;
|
|
@@ -8728,64 +8713,6 @@ export interface ImaSpecificationLiteDto {
|
|
|
8728
8713
|
updated: Date;
|
|
8729
8714
|
isDeleted: boolean;
|
|
8730
8715
|
}
|
|
8731
|
-
export interface SchemaCreatorStateDto {
|
|
8732
|
-
settings: SchemaCreatorSettingsDto;
|
|
8733
|
-
elements: SchemaCreatorElementDto[];
|
|
8734
|
-
}
|
|
8735
|
-
export interface SchemaCreatorSettingsDto {
|
|
8736
|
-
unit?: UnitOfMeasureDto;
|
|
8737
|
-
tolerance?: GeneralToleranceDto;
|
|
8738
|
-
balloonSize?: number;
|
|
8739
|
-
}
|
|
8740
|
-
export type UnitOfMeasureDto = "Millimeter" | "Inch";
|
|
8741
|
-
export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
|
|
8742
|
-
export interface SchemaCreatorElementDto {
|
|
8743
|
-
id: string;
|
|
8744
|
-
kind: SchemaCreatorElementKindDto;
|
|
8745
|
-
drawings: SchemaCreatorElementDrawingsDto;
|
|
8746
|
-
isDirty?: boolean | null;
|
|
8747
|
-
values?: SchemaCreatorElementValuesDto | null;
|
|
8748
|
-
}
|
|
8749
|
-
export type SchemaCreatorElementKindDto = "Pending" | "Auto" | "Manual";
|
|
8750
|
-
export interface SchemaCreatorElementDrawingsDto {
|
|
8751
|
-
square: SchemaCreatorDrawingDto;
|
|
8752
|
-
circle: SchemaCreatorDrawingDto;
|
|
8753
|
-
textId: string;
|
|
8754
|
-
}
|
|
8755
|
-
export interface SchemaCreatorDrawingDto {
|
|
8756
|
-
rect: SchemaCreatorRectDto;
|
|
8757
|
-
pageIndex: number;
|
|
8758
|
-
annotationId: string;
|
|
8759
|
-
}
|
|
8760
|
-
export interface SchemaCreatorRectDto {
|
|
8761
|
-
origin: SchemaCreatorPointDto;
|
|
8762
|
-
size: SchemaCreatorSizeDto;
|
|
8763
|
-
}
|
|
8764
|
-
export interface SchemaCreatorPointDto {
|
|
8765
|
-
x: number;
|
|
8766
|
-
y: number;
|
|
8767
|
-
}
|
|
8768
|
-
export interface SchemaCreatorSizeDto {
|
|
8769
|
-
width: number;
|
|
8770
|
-
height: number;
|
|
8771
|
-
}
|
|
8772
|
-
export interface SchemaCreatorElementValuesDto {
|
|
8773
|
-
reference: number;
|
|
8774
|
-
nominal?: number | null;
|
|
8775
|
-
nominalText?: string | null;
|
|
8776
|
-
plusTolerance?: number | null;
|
|
8777
|
-
minusTolerance?: number | null;
|
|
8778
|
-
coatingThickness?: number | null;
|
|
8779
|
-
measurementFrequency: MeasurementFrequency;
|
|
8780
|
-
measurementFrequencyParameter?: number | null;
|
|
8781
|
-
type?: string | null;
|
|
8782
|
-
count?: number | null;
|
|
8783
|
-
comment?: string | null;
|
|
8784
|
-
canCopy: boolean;
|
|
8785
|
-
visibleToCustomer: boolean;
|
|
8786
|
-
isDocumentedExternally: boolean;
|
|
8787
|
-
}
|
|
8788
|
-
export type MeasurementFrequency = "All" | "FirstArticle" | "NFirst" | "NPercent" | "ISO2859" | "Nth" | "FirstAndLast" | "None";
|
|
8789
8716
|
export interface MeasurementFormSchemaDto {
|
|
8790
8717
|
id: string;
|
|
8791
8718
|
versionId: number;
|
|
@@ -8817,7 +8744,9 @@ export interface MeasurementFormSchemaDto {
|
|
|
8817
8744
|
}
|
|
8818
8745
|
export type MeasurementFormStatus = "Draft" | "Released" | "Revoked";
|
|
8819
8746
|
export type MeasurementFormSource = "Unknown" | "InspectionXpert" | "Excel" | "Manual";
|
|
8747
|
+
export type UnitOfMeasureDto = "Millimeter" | "Inch";
|
|
8820
8748
|
export type DimensionSettingDto = "Tolerance" | "MinMaxDimension";
|
|
8749
|
+
export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
|
|
8821
8750
|
export interface MeasurementFormSchemaAttachmentDto {
|
|
8822
8751
|
url: string;
|
|
8823
8752
|
title: string;
|
|
@@ -8866,6 +8795,7 @@ export interface MeasurementFormGroupedElementDto {
|
|
|
8866
8795
|
isValid: boolean;
|
|
8867
8796
|
validationErrorMessage?: string | null;
|
|
8868
8797
|
}
|
|
8798
|
+
export type MeasurementFrequency = "All" | "FirstArticle" | "NFirst" | "NPercent" | "ISO2859" | "Nth" | "FirstAndLast" | "None";
|
|
8869
8799
|
export type MeasurementFormValueType = "None" | "Bool" | "Decimal" | "String";
|
|
8870
8800
|
export type BonusType = "None" | "Positive" | "PositiveAndNegative";
|
|
8871
8801
|
export interface MeasurementFormLinkedSchemaDto {
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -23211,94 +23211,6 @@ export class InspectMatchSpecificationsClient extends AuthorizedApiBase {
|
|
|
23211
23211
|
return Promise.resolve(null);
|
|
23212
23212
|
}
|
|
23213
23213
|
}
|
|
23214
|
-
export class InspectSchemaCreatorClient extends AuthorizedApiBase {
|
|
23215
|
-
constructor(configuration, baseUrl, http) {
|
|
23216
|
-
super(configuration);
|
|
23217
|
-
this.http = http ? http : window;
|
|
23218
|
-
this.baseUrl = baseUrl !== null && baseUrl !== void 0 ? baseUrl : "";
|
|
23219
|
-
}
|
|
23220
|
-
getSchemaCreatorState(id) {
|
|
23221
|
-
let url_ = this.baseUrl + "/measurementforms/schemas/creator/{id}";
|
|
23222
|
-
if (id === undefined || id === null)
|
|
23223
|
-
throw new globalThis.Error("The parameter 'id' must be defined.");
|
|
23224
|
-
url_ = url_.replace("{id}", encodeURIComponent("" + id));
|
|
23225
|
-
url_ = url_.replace(/[?&]$/, "");
|
|
23226
|
-
let options_ = {
|
|
23227
|
-
method: "GET",
|
|
23228
|
-
headers: {
|
|
23229
|
-
"Accept": "application/json"
|
|
23230
|
-
}
|
|
23231
|
-
};
|
|
23232
|
-
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
23233
|
-
return this.http.fetch(url_, transformedOptions_);
|
|
23234
|
-
}).then((_response) => {
|
|
23235
|
-
return this.processGetSchemaCreatorState(_response);
|
|
23236
|
-
});
|
|
23237
|
-
}
|
|
23238
|
-
processGetSchemaCreatorState(response) {
|
|
23239
|
-
const status = response.status;
|
|
23240
|
-
let _headers = {};
|
|
23241
|
-
if (response.headers && response.headers.forEach) {
|
|
23242
|
-
response.headers.forEach((v, k) => _headers[k] = v);
|
|
23243
|
-
}
|
|
23244
|
-
;
|
|
23245
|
-
if (status === 200) {
|
|
23246
|
-
return response.text().then((_responseText) => {
|
|
23247
|
-
let result200 = null;
|
|
23248
|
-
result200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
23249
|
-
return result200;
|
|
23250
|
-
});
|
|
23251
|
-
}
|
|
23252
|
-
else if (status !== 200 && status !== 204) {
|
|
23253
|
-
return response.text().then((_responseText) => {
|
|
23254
|
-
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
23255
|
-
});
|
|
23256
|
-
}
|
|
23257
|
-
return Promise.resolve(null);
|
|
23258
|
-
}
|
|
23259
|
-
updateSchemaCreatorState(id, state) {
|
|
23260
|
-
let url_ = this.baseUrl + "/measurementforms/schemas/creator/{id}";
|
|
23261
|
-
if (id === undefined || id === null)
|
|
23262
|
-
throw new globalThis.Error("The parameter 'id' must be defined.");
|
|
23263
|
-
url_ = url_.replace("{id}", encodeURIComponent("" + id));
|
|
23264
|
-
url_ = url_.replace(/[?&]$/, "");
|
|
23265
|
-
const content_ = JSON.stringify(state);
|
|
23266
|
-
let options_ = {
|
|
23267
|
-
body: content_,
|
|
23268
|
-
method: "PUT",
|
|
23269
|
-
headers: {
|
|
23270
|
-
"Content-Type": "application/json",
|
|
23271
|
-
"Accept": "application/json"
|
|
23272
|
-
}
|
|
23273
|
-
};
|
|
23274
|
-
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
23275
|
-
return this.http.fetch(url_, transformedOptions_);
|
|
23276
|
-
}).then((_response) => {
|
|
23277
|
-
return this.processUpdateSchemaCreatorState(_response);
|
|
23278
|
-
});
|
|
23279
|
-
}
|
|
23280
|
-
processUpdateSchemaCreatorState(response) {
|
|
23281
|
-
const status = response.status;
|
|
23282
|
-
let _headers = {};
|
|
23283
|
-
if (response.headers && response.headers.forEach) {
|
|
23284
|
-
response.headers.forEach((v, k) => _headers[k] = v);
|
|
23285
|
-
}
|
|
23286
|
-
;
|
|
23287
|
-
if (status === 200) {
|
|
23288
|
-
return response.text().then((_responseText) => {
|
|
23289
|
-
let result200 = null;
|
|
23290
|
-
result200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
|
|
23291
|
-
return result200;
|
|
23292
|
-
});
|
|
23293
|
-
}
|
|
23294
|
-
else if (status !== 200 && status !== 204) {
|
|
23295
|
-
return response.text().then((_responseText) => {
|
|
23296
|
-
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
23297
|
-
});
|
|
23298
|
-
}
|
|
23299
|
-
return Promise.resolve(null);
|
|
23300
|
-
}
|
|
23301
|
-
}
|
|
23302
23214
|
export class MeasurementFormSchemasAdminClient extends AuthorizedApiBase {
|
|
23303
23215
|
constructor(configuration, baseUrl, http) {
|
|
23304
23216
|
super(configuration);
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -24835,104 +24835,6 @@ export class InspectMatchSpecificationsClient extends AuthorizedApiBase implemen
|
|
|
24835
24835
|
}
|
|
24836
24836
|
}
|
|
24837
24837
|
|
|
24838
|
-
export interface IInspectSchemaCreatorClient {
|
|
24839
|
-
|
|
24840
|
-
getSchemaCreatorState(id: string): Promise<SchemaCreatorStateDto>;
|
|
24841
|
-
|
|
24842
|
-
updateSchemaCreatorState(id: string, state: SchemaCreatorStateDto): Promise<SchemaCreatorStateDto>;
|
|
24843
|
-
}
|
|
24844
|
-
|
|
24845
|
-
export class InspectSchemaCreatorClient extends AuthorizedApiBase implements IInspectSchemaCreatorClient {
|
|
24846
|
-
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
24847
|
-
private baseUrl: string;
|
|
24848
|
-
|
|
24849
|
-
constructor(configuration: IApiClientConfig, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
24850
|
-
super(configuration);
|
|
24851
|
-
this.http = http ? http : window as any;
|
|
24852
|
-
this.baseUrl = baseUrl ?? "";
|
|
24853
|
-
}
|
|
24854
|
-
|
|
24855
|
-
getSchemaCreatorState(id: string): Promise<SchemaCreatorStateDto> {
|
|
24856
|
-
let url_ = this.baseUrl + "/measurementforms/schemas/creator/{id}";
|
|
24857
|
-
if (id === undefined || id === null)
|
|
24858
|
-
throw new globalThis.Error("The parameter 'id' must be defined.");
|
|
24859
|
-
url_ = url_.replace("{id}", encodeURIComponent("" + id));
|
|
24860
|
-
url_ = url_.replace(/[?&]$/, "");
|
|
24861
|
-
|
|
24862
|
-
let options_: RequestInit = {
|
|
24863
|
-
method: "GET",
|
|
24864
|
-
headers: {
|
|
24865
|
-
"Accept": "application/json"
|
|
24866
|
-
}
|
|
24867
|
-
};
|
|
24868
|
-
|
|
24869
|
-
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
24870
|
-
return this.http.fetch(url_, transformedOptions_);
|
|
24871
|
-
}).then((_response: Response) => {
|
|
24872
|
-
return this.processGetSchemaCreatorState(_response);
|
|
24873
|
-
});
|
|
24874
|
-
}
|
|
24875
|
-
|
|
24876
|
-
protected processGetSchemaCreatorState(response: Response): Promise<SchemaCreatorStateDto> {
|
|
24877
|
-
const status = response.status;
|
|
24878
|
-
let _headers: any = {}; if (response.headers && response.headers.forEach) { response.headers.forEach((v: any, k: any) => _headers[k] = v); };
|
|
24879
|
-
if (status === 200) {
|
|
24880
|
-
return response.text().then((_responseText) => {
|
|
24881
|
-
let result200: any = null;
|
|
24882
|
-
result200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver) as SchemaCreatorStateDto;
|
|
24883
|
-
return result200;
|
|
24884
|
-
});
|
|
24885
|
-
} else if (status !== 200 && status !== 204) {
|
|
24886
|
-
return response.text().then((_responseText) => {
|
|
24887
|
-
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
24888
|
-
});
|
|
24889
|
-
}
|
|
24890
|
-
return Promise.resolve<SchemaCreatorStateDto>(null as any);
|
|
24891
|
-
}
|
|
24892
|
-
|
|
24893
|
-
updateSchemaCreatorState(id: string, state: SchemaCreatorStateDto): Promise<SchemaCreatorStateDto> {
|
|
24894
|
-
let url_ = this.baseUrl + "/measurementforms/schemas/creator/{id}";
|
|
24895
|
-
if (id === undefined || id === null)
|
|
24896
|
-
throw new globalThis.Error("The parameter 'id' must be defined.");
|
|
24897
|
-
url_ = url_.replace("{id}", encodeURIComponent("" + id));
|
|
24898
|
-
url_ = url_.replace(/[?&]$/, "");
|
|
24899
|
-
|
|
24900
|
-
const content_ = JSON.stringify(state);
|
|
24901
|
-
|
|
24902
|
-
let options_: RequestInit = {
|
|
24903
|
-
body: content_,
|
|
24904
|
-
method: "PUT",
|
|
24905
|
-
headers: {
|
|
24906
|
-
"Content-Type": "application/json",
|
|
24907
|
-
"Accept": "application/json"
|
|
24908
|
-
}
|
|
24909
|
-
};
|
|
24910
|
-
|
|
24911
|
-
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
24912
|
-
return this.http.fetch(url_, transformedOptions_);
|
|
24913
|
-
}).then((_response: Response) => {
|
|
24914
|
-
return this.processUpdateSchemaCreatorState(_response);
|
|
24915
|
-
});
|
|
24916
|
-
}
|
|
24917
|
-
|
|
24918
|
-
protected processUpdateSchemaCreatorState(response: Response): Promise<SchemaCreatorStateDto> {
|
|
24919
|
-
const status = response.status;
|
|
24920
|
-
let _headers: any = {}; if (response.headers && response.headers.forEach) { response.headers.forEach((v: any, k: any) => _headers[k] = v); };
|
|
24921
|
-
if (status === 200) {
|
|
24922
|
-
return response.text().then((_responseText) => {
|
|
24923
|
-
let result200: any = null;
|
|
24924
|
-
result200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver) as SchemaCreatorStateDto;
|
|
24925
|
-
return result200;
|
|
24926
|
-
});
|
|
24927
|
-
} else if (status !== 200 && status !== 204) {
|
|
24928
|
-
return response.text().then((_responseText) => {
|
|
24929
|
-
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
24930
|
-
});
|
|
24931
|
-
}
|
|
24932
|
-
return Promise.resolve<SchemaCreatorStateDto>(null as any);
|
|
24933
|
-
}
|
|
24934
|
-
}
|
|
24935
|
-
|
|
24936
24838
|
export interface IMeasurementFormSchemasAdminClient {
|
|
24937
24839
|
|
|
24938
24840
|
getArchivedMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
|
|
@@ -36825,77 +36727,6 @@ export interface ImaSpecificationLiteDto {
|
|
|
36825
36727
|
isDeleted: boolean;
|
|
36826
36728
|
}
|
|
36827
36729
|
|
|
36828
|
-
export interface SchemaCreatorStateDto {
|
|
36829
|
-
settings: SchemaCreatorSettingsDto;
|
|
36830
|
-
elements: SchemaCreatorElementDto[];
|
|
36831
|
-
}
|
|
36832
|
-
|
|
36833
|
-
export interface SchemaCreatorSettingsDto {
|
|
36834
|
-
unit?: UnitOfMeasureDto;
|
|
36835
|
-
tolerance?: GeneralToleranceDto;
|
|
36836
|
-
balloonSize?: number;
|
|
36837
|
-
}
|
|
36838
|
-
|
|
36839
|
-
export type UnitOfMeasureDto = "Millimeter" | "Inch";
|
|
36840
|
-
|
|
36841
|
-
export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
|
|
36842
|
-
|
|
36843
|
-
export interface SchemaCreatorElementDto {
|
|
36844
|
-
id: string;
|
|
36845
|
-
kind: SchemaCreatorElementKindDto;
|
|
36846
|
-
drawings: SchemaCreatorElementDrawingsDto;
|
|
36847
|
-
isDirty?: boolean | null;
|
|
36848
|
-
values?: SchemaCreatorElementValuesDto | null;
|
|
36849
|
-
}
|
|
36850
|
-
|
|
36851
|
-
export type SchemaCreatorElementKindDto = "Pending" | "Auto" | "Manual";
|
|
36852
|
-
|
|
36853
|
-
export interface SchemaCreatorElementDrawingsDto {
|
|
36854
|
-
square: SchemaCreatorDrawingDto;
|
|
36855
|
-
circle: SchemaCreatorDrawingDto;
|
|
36856
|
-
textId: string;
|
|
36857
|
-
}
|
|
36858
|
-
|
|
36859
|
-
export interface SchemaCreatorDrawingDto {
|
|
36860
|
-
rect: SchemaCreatorRectDto;
|
|
36861
|
-
pageIndex: number;
|
|
36862
|
-
annotationId: string;
|
|
36863
|
-
}
|
|
36864
|
-
|
|
36865
|
-
export interface SchemaCreatorRectDto {
|
|
36866
|
-
origin: SchemaCreatorPointDto;
|
|
36867
|
-
size: SchemaCreatorSizeDto;
|
|
36868
|
-
}
|
|
36869
|
-
|
|
36870
|
-
export interface SchemaCreatorPointDto {
|
|
36871
|
-
x: number;
|
|
36872
|
-
y: number;
|
|
36873
|
-
}
|
|
36874
|
-
|
|
36875
|
-
export interface SchemaCreatorSizeDto {
|
|
36876
|
-
width: number;
|
|
36877
|
-
height: number;
|
|
36878
|
-
}
|
|
36879
|
-
|
|
36880
|
-
export interface SchemaCreatorElementValuesDto {
|
|
36881
|
-
reference: number;
|
|
36882
|
-
nominal?: number | null;
|
|
36883
|
-
nominalText?: string | null;
|
|
36884
|
-
plusTolerance?: number | null;
|
|
36885
|
-
minusTolerance?: number | null;
|
|
36886
|
-
coatingThickness?: number | null;
|
|
36887
|
-
measurementFrequency: MeasurementFrequency;
|
|
36888
|
-
measurementFrequencyParameter?: number | null;
|
|
36889
|
-
type?: string | null;
|
|
36890
|
-
count?: number | null;
|
|
36891
|
-
comment?: string | null;
|
|
36892
|
-
canCopy: boolean;
|
|
36893
|
-
visibleToCustomer: boolean;
|
|
36894
|
-
isDocumentedExternally: boolean;
|
|
36895
|
-
}
|
|
36896
|
-
|
|
36897
|
-
export type MeasurementFrequency = "All" | "FirstArticle" | "NFirst" | "NPercent" | "ISO2859" | "Nth" | "FirstAndLast" | "None";
|
|
36898
|
-
|
|
36899
36730
|
export interface MeasurementFormSchemaDto {
|
|
36900
36731
|
id: string;
|
|
36901
36732
|
versionId: number;
|
|
@@ -36930,8 +36761,12 @@ export type MeasurementFormStatus = "Draft" | "Released" | "Revoked";
|
|
|
36930
36761
|
|
|
36931
36762
|
export type MeasurementFormSource = "Unknown" | "InspectionXpert" | "Excel" | "Manual";
|
|
36932
36763
|
|
|
36764
|
+
export type UnitOfMeasureDto = "Millimeter" | "Inch";
|
|
36765
|
+
|
|
36933
36766
|
export type DimensionSettingDto = "Tolerance" | "MinMaxDimension";
|
|
36934
36767
|
|
|
36768
|
+
export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
|
|
36769
|
+
|
|
36935
36770
|
export interface MeasurementFormSchemaAttachmentDto {
|
|
36936
36771
|
url: string;
|
|
36937
36772
|
title: string;
|
|
@@ -36982,6 +36817,8 @@ export interface MeasurementFormGroupedElementDto {
|
|
|
36982
36817
|
validationErrorMessage?: string | null;
|
|
36983
36818
|
}
|
|
36984
36819
|
|
|
36820
|
+
export type MeasurementFrequency = "All" | "FirstArticle" | "NFirst" | "NPercent" | "ISO2859" | "Nth" | "FirstAndLast" | "None";
|
|
36821
|
+
|
|
36985
36822
|
export type MeasurementFormValueType = "None" | "Bool" | "Decimal" | "String";
|
|
36986
36823
|
|
|
36987
36824
|
export type BonusType = "None" | "Positive" | "PositiveAndNegative";
|