@ignos/api-client 20260706.174.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 -78
- package/lib/ignosportal-api.js +0 -88
- package/package.json +1 -1
- package/src/ignosportal-api.ts +6 -175
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,69 +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
|
-
pendingElements: SchemaCreatorPendingElementDto[];
|
|
8735
|
-
}
|
|
8736
|
-
export interface SchemaCreatorSettingsDto {
|
|
8737
|
-
unit?: UnitOfMeasureDto;
|
|
8738
|
-
tolerance?: GeneralToleranceDto;
|
|
8739
|
-
balloonSize?: number;
|
|
8740
|
-
}
|
|
8741
|
-
export type UnitOfMeasureDto = "Millimeter" | "Inch";
|
|
8742
|
-
export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
|
|
8743
|
-
export interface SchemaCreatorElementDto {
|
|
8744
|
-
id: string;
|
|
8745
|
-
source: SchemaCreatorElementSourceDto;
|
|
8746
|
-
drawings: SchemaCreatorElementDrawingsDto;
|
|
8747
|
-
isDirty?: boolean | null;
|
|
8748
|
-
values: SchemaCreatorElementValuesDto;
|
|
8749
|
-
}
|
|
8750
|
-
export type SchemaCreatorElementSourceDto = "Auto" | "Manual";
|
|
8751
|
-
export interface SchemaCreatorElementDrawingsDto {
|
|
8752
|
-
square: SchemaCreatorDrawingDto;
|
|
8753
|
-
circle: SchemaCreatorDrawingDto;
|
|
8754
|
-
textId: string;
|
|
8755
|
-
}
|
|
8756
|
-
export interface SchemaCreatorDrawingDto {
|
|
8757
|
-
rect: SchemaCreatorRectDto;
|
|
8758
|
-
pageIndex: number;
|
|
8759
|
-
annotationId: string;
|
|
8760
|
-
}
|
|
8761
|
-
export interface SchemaCreatorRectDto {
|
|
8762
|
-
origin: SchemaCreatorPointDto;
|
|
8763
|
-
size: SchemaCreatorSizeDto;
|
|
8764
|
-
}
|
|
8765
|
-
export interface SchemaCreatorPointDto {
|
|
8766
|
-
x: number;
|
|
8767
|
-
y: number;
|
|
8768
|
-
}
|
|
8769
|
-
export interface SchemaCreatorSizeDto {
|
|
8770
|
-
width: number;
|
|
8771
|
-
height: number;
|
|
8772
|
-
}
|
|
8773
|
-
export interface SchemaCreatorElementValuesDto {
|
|
8774
|
-
reference: number;
|
|
8775
|
-
nominal?: number | null;
|
|
8776
|
-
nominalText?: string | null;
|
|
8777
|
-
plusTolerance?: number | null;
|
|
8778
|
-
minusTolerance?: number | null;
|
|
8779
|
-
coatingThickness?: number | null;
|
|
8780
|
-
measurementFrequency: MeasurementFrequency;
|
|
8781
|
-
measurementFrequencyParameter?: number | null;
|
|
8782
|
-
type?: string | null;
|
|
8783
|
-
count?: number | null;
|
|
8784
|
-
comment?: string | null;
|
|
8785
|
-
canCopy: boolean;
|
|
8786
|
-
visibleToCustomer: boolean;
|
|
8787
|
-
isDocumentedExternally: boolean;
|
|
8788
|
-
}
|
|
8789
|
-
export type MeasurementFrequency = "All" | "FirstArticle" | "NFirst" | "NPercent" | "ISO2859" | "Nth" | "FirstAndLast" | "None";
|
|
8790
|
-
export interface SchemaCreatorPendingElementDto {
|
|
8791
|
-
id: string;
|
|
8792
|
-
drawings: SchemaCreatorElementDrawingsDto;
|
|
8793
|
-
}
|
|
8794
8716
|
export interface MeasurementFormSchemaDto {
|
|
8795
8717
|
id: string;
|
|
8796
8718
|
versionId: number;
|
|
@@ -8822,7 +8744,9 @@ export interface MeasurementFormSchemaDto {
|
|
|
8822
8744
|
}
|
|
8823
8745
|
export type MeasurementFormStatus = "Draft" | "Released" | "Revoked";
|
|
8824
8746
|
export type MeasurementFormSource = "Unknown" | "InspectionXpert" | "Excel" | "Manual";
|
|
8747
|
+
export type UnitOfMeasureDto = "Millimeter" | "Inch";
|
|
8825
8748
|
export type DimensionSettingDto = "Tolerance" | "MinMaxDimension";
|
|
8749
|
+
export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
|
|
8826
8750
|
export interface MeasurementFormSchemaAttachmentDto {
|
|
8827
8751
|
url: string;
|
|
8828
8752
|
title: string;
|
|
@@ -8871,6 +8795,7 @@ export interface MeasurementFormGroupedElementDto {
|
|
|
8871
8795
|
isValid: boolean;
|
|
8872
8796
|
validationErrorMessage?: string | null;
|
|
8873
8797
|
}
|
|
8798
|
+
export type MeasurementFrequency = "All" | "FirstArticle" | "NFirst" | "NPercent" | "ISO2859" | "Nth" | "FirstAndLast" | "None";
|
|
8874
8799
|
export type MeasurementFormValueType = "None" | "Bool" | "Decimal" | "String";
|
|
8875
8800
|
export type BonusType = "None" | "Positive" | "PositiveAndNegative";
|
|
8876
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,83 +36727,6 @@ export interface ImaSpecificationLiteDto {
|
|
|
36825
36727
|
isDeleted: boolean;
|
|
36826
36728
|
}
|
|
36827
36729
|
|
|
36828
|
-
export interface SchemaCreatorStateDto {
|
|
36829
|
-
settings: SchemaCreatorSettingsDto;
|
|
36830
|
-
elements: SchemaCreatorElementDto[];
|
|
36831
|
-
pendingElements: SchemaCreatorPendingElementDto[];
|
|
36832
|
-
}
|
|
36833
|
-
|
|
36834
|
-
export interface SchemaCreatorSettingsDto {
|
|
36835
|
-
unit?: UnitOfMeasureDto;
|
|
36836
|
-
tolerance?: GeneralToleranceDto;
|
|
36837
|
-
balloonSize?: number;
|
|
36838
|
-
}
|
|
36839
|
-
|
|
36840
|
-
export type UnitOfMeasureDto = "Millimeter" | "Inch";
|
|
36841
|
-
|
|
36842
|
-
export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
|
|
36843
|
-
|
|
36844
|
-
export interface SchemaCreatorElementDto {
|
|
36845
|
-
id: string;
|
|
36846
|
-
source: SchemaCreatorElementSourceDto;
|
|
36847
|
-
drawings: SchemaCreatorElementDrawingsDto;
|
|
36848
|
-
isDirty?: boolean | null;
|
|
36849
|
-
values: SchemaCreatorElementValuesDto;
|
|
36850
|
-
}
|
|
36851
|
-
|
|
36852
|
-
export type SchemaCreatorElementSourceDto = "Auto" | "Manual";
|
|
36853
|
-
|
|
36854
|
-
export interface SchemaCreatorElementDrawingsDto {
|
|
36855
|
-
square: SchemaCreatorDrawingDto;
|
|
36856
|
-
circle: SchemaCreatorDrawingDto;
|
|
36857
|
-
textId: string;
|
|
36858
|
-
}
|
|
36859
|
-
|
|
36860
|
-
export interface SchemaCreatorDrawingDto {
|
|
36861
|
-
rect: SchemaCreatorRectDto;
|
|
36862
|
-
pageIndex: number;
|
|
36863
|
-
annotationId: string;
|
|
36864
|
-
}
|
|
36865
|
-
|
|
36866
|
-
export interface SchemaCreatorRectDto {
|
|
36867
|
-
origin: SchemaCreatorPointDto;
|
|
36868
|
-
size: SchemaCreatorSizeDto;
|
|
36869
|
-
}
|
|
36870
|
-
|
|
36871
|
-
export interface SchemaCreatorPointDto {
|
|
36872
|
-
x: number;
|
|
36873
|
-
y: number;
|
|
36874
|
-
}
|
|
36875
|
-
|
|
36876
|
-
export interface SchemaCreatorSizeDto {
|
|
36877
|
-
width: number;
|
|
36878
|
-
height: number;
|
|
36879
|
-
}
|
|
36880
|
-
|
|
36881
|
-
export interface SchemaCreatorElementValuesDto {
|
|
36882
|
-
reference: number;
|
|
36883
|
-
nominal?: number | null;
|
|
36884
|
-
nominalText?: string | null;
|
|
36885
|
-
plusTolerance?: number | null;
|
|
36886
|
-
minusTolerance?: number | null;
|
|
36887
|
-
coatingThickness?: number | null;
|
|
36888
|
-
measurementFrequency: MeasurementFrequency;
|
|
36889
|
-
measurementFrequencyParameter?: number | null;
|
|
36890
|
-
type?: string | null;
|
|
36891
|
-
count?: number | null;
|
|
36892
|
-
comment?: string | null;
|
|
36893
|
-
canCopy: boolean;
|
|
36894
|
-
visibleToCustomer: boolean;
|
|
36895
|
-
isDocumentedExternally: boolean;
|
|
36896
|
-
}
|
|
36897
|
-
|
|
36898
|
-
export type MeasurementFrequency = "All" | "FirstArticle" | "NFirst" | "NPercent" | "ISO2859" | "Nth" | "FirstAndLast" | "None";
|
|
36899
|
-
|
|
36900
|
-
export interface SchemaCreatorPendingElementDto {
|
|
36901
|
-
id: string;
|
|
36902
|
-
drawings: SchemaCreatorElementDrawingsDto;
|
|
36903
|
-
}
|
|
36904
|
-
|
|
36905
36730
|
export interface MeasurementFormSchemaDto {
|
|
36906
36731
|
id: string;
|
|
36907
36732
|
versionId: number;
|
|
@@ -36936,8 +36761,12 @@ export type MeasurementFormStatus = "Draft" | "Released" | "Revoked";
|
|
|
36936
36761
|
|
|
36937
36762
|
export type MeasurementFormSource = "Unknown" | "InspectionXpert" | "Excel" | "Manual";
|
|
36938
36763
|
|
|
36764
|
+
export type UnitOfMeasureDto = "Millimeter" | "Inch";
|
|
36765
|
+
|
|
36939
36766
|
export type DimensionSettingDto = "Tolerance" | "MinMaxDimension";
|
|
36940
36767
|
|
|
36768
|
+
export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
|
|
36769
|
+
|
|
36941
36770
|
export interface MeasurementFormSchemaAttachmentDto {
|
|
36942
36771
|
url: string;
|
|
36943
36772
|
title: string;
|
|
@@ -36988,6 +36817,8 @@ export interface MeasurementFormGroupedElementDto {
|
|
|
36988
36817
|
validationErrorMessage?: string | null;
|
|
36989
36818
|
}
|
|
36990
36819
|
|
|
36820
|
+
export type MeasurementFrequency = "All" | "FirstArticle" | "NFirst" | "NPercent" | "ISO2859" | "Nth" | "FirstAndLast" | "None";
|
|
36821
|
+
|
|
36991
36822
|
export type MeasurementFormValueType = "None" | "Bool" | "Decimal" | "String";
|
|
36992
36823
|
|
|
36993
36824
|
export type BonusType = "None" | "Positive" | "PositiveAndNegative";
|