@ignos/api-client 20260813.222.1-alpha → 20260814.224.1-alpha
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 +23 -13
- package/lib/ignosportal-api.js +8 -8
- package/package.json +1 -1
- package/src/ignosportal-api.ts +30 -17
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -2886,7 +2886,7 @@ export interface IInspectSchemaCreatorClient {
|
|
|
2886
2886
|
schema for every viewer until it completes. If one is already in
|
|
2887
2887
|
progress, returns that instead of starting a second one.
|
|
2888
2888
|
*/
|
|
2889
|
-
|
|
2889
|
+
requestSchemaCreatorDocumentParse(id: string): Promise<SchemaCreatorStateDto>;
|
|
2890
2890
|
/**
|
|
2891
2891
|
* Stamps the creator state's balloons onto the schema's drawing PDF and
|
|
2892
2892
|
returns a temporary download link.
|
|
@@ -2897,7 +2897,7 @@ export interface IInspectSchemaCreatorClient {
|
|
|
2897
2897
|
SchemaCreatorSnipResolved SignalR notification.
|
|
2898
2898
|
* @param image (optional)
|
|
2899
2899
|
*/
|
|
2900
|
-
|
|
2900
|
+
requestSchemaCreatorSnipParse(id: string, elementId: string, image: FileParameter | null | undefined): Promise<FileResponse>;
|
|
2901
2901
|
}
|
|
2902
2902
|
export declare class InspectSchemaCreatorClient extends AuthorizedApiBase implements IInspectSchemaCreatorClient {
|
|
2903
2903
|
private http;
|
|
@@ -2920,8 +2920,8 @@ export declare class InspectSchemaCreatorClient extends AuthorizedApiBase implem
|
|
|
2920
2920
|
schema for every viewer until it completes. If one is already in
|
|
2921
2921
|
progress, returns that instead of starting a second one.
|
|
2922
2922
|
*/
|
|
2923
|
-
|
|
2924
|
-
protected
|
|
2923
|
+
requestSchemaCreatorDocumentParse(id: string): Promise<SchemaCreatorStateDto>;
|
|
2924
|
+
protected processRequestSchemaCreatorDocumentParse(response: Response): Promise<SchemaCreatorStateDto>;
|
|
2925
2925
|
/**
|
|
2926
2926
|
* Stamps the creator state's balloons onto the schema's drawing PDF and
|
|
2927
2927
|
returns a temporary download link.
|
|
@@ -2933,8 +2933,8 @@ export declare class InspectSchemaCreatorClient extends AuthorizedApiBase implem
|
|
|
2933
2933
|
SchemaCreatorSnipResolved SignalR notification.
|
|
2934
2934
|
* @param image (optional)
|
|
2935
2935
|
*/
|
|
2936
|
-
|
|
2937
|
-
protected
|
|
2936
|
+
requestSchemaCreatorSnipParse(id: string, elementId: string, image: FileParameter | null | undefined): Promise<FileResponse>;
|
|
2937
|
+
protected processRequestSchemaCreatorSnipParse(response: Response): Promise<FileResponse>;
|
|
2938
2938
|
}
|
|
2939
2939
|
export interface IMeasurementFormSchemasAdminClient {
|
|
2940
2940
|
getArchivedMeasurementFormSchema(id: string): Promise<MeasurementFormSchemaDto>;
|
|
@@ -8620,13 +8620,12 @@ export interface ImaFerriteResultDto {
|
|
|
8620
8620
|
heatNumber?: string | null;
|
|
8621
8621
|
sampleReference?: string | null;
|
|
8622
8622
|
testLocation?: string | null;
|
|
8623
|
-
ferrite?:
|
|
8623
|
+
ferrite?: ImaSpecificationResultLineDto | null;
|
|
8624
8624
|
ferriteTolerance?: number | null;
|
|
8625
8625
|
reportedRange?: string | null;
|
|
8626
8626
|
intermetallicPhases?: boolean | null;
|
|
8627
8627
|
grainSize?: string | null;
|
|
8628
8628
|
testStandards: string[];
|
|
8629
|
-
override?: ImaResultLineOverrideDto | null;
|
|
8630
8629
|
}
|
|
8631
8630
|
export interface ImaHeatTreatmentResultDto {
|
|
8632
8631
|
heatNumber?: string | null;
|
|
@@ -8658,7 +8657,7 @@ export interface ImaOverrideMaterialCheckRequestDto {
|
|
|
8658
8657
|
hardnessTestSection?: ImaOverrideHardnessTestResultsDto[] | null;
|
|
8659
8658
|
impactTestSection?: ImaOverrideImpactTestResultsDto[] | null;
|
|
8660
8659
|
corrosionTestSection?: ImaOverrideCorrosionTestResultsDto[] | null;
|
|
8661
|
-
ferriteResultSection?:
|
|
8660
|
+
ferriteResultSection?: ImaOverrideFerriteResultDto[] | null;
|
|
8662
8661
|
documentTypesSection?: ImaOverrideDocumentTypesResultsDto | null;
|
|
8663
8662
|
}
|
|
8664
8663
|
export interface ImaOverrideCertificateTypeResultsDto {
|
|
@@ -8807,6 +8806,11 @@ export interface ImaOverrideCorrosionTestResultsDto {
|
|
|
8807
8806
|
result?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8808
8807
|
acceptable?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8809
8808
|
}
|
|
8809
|
+
export interface ImaOverrideFerriteResultDto {
|
|
8810
|
+
heatNumber?: string | null;
|
|
8811
|
+
sampleReference?: string | null;
|
|
8812
|
+
ferrite?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8813
|
+
}
|
|
8810
8814
|
export interface ImaOverrideDocumentTypesResultsDto {
|
|
8811
8815
|
ultrasonicControlCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
8812
8816
|
radiologicalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
@@ -9065,7 +9069,9 @@ export interface ImaChemistrySpecificationDto {
|
|
|
9065
9069
|
export interface ImaSpecificationLineDto {
|
|
9066
9070
|
min?: number | null;
|
|
9067
9071
|
max?: number | null;
|
|
9072
|
+
unit?: ImaUnitDto | null;
|
|
9068
9073
|
}
|
|
9074
|
+
export type ImaUnitDto = "Millimeter" | "Centimeter" | "Meter" | "Inch" | "Kilogram" | "Gram" | "Tonne" | "Pound" | "Megapascal" | "NewtonPerSquareMillimeter" | "KilopoundPerSquareInch" | "PoundPerSquareInch" | "Bar" | "Ppm" | "Percentage" | "WeightPercentage" | "Joule" | "FootPound" | "Celsius" | "Fahrenheit" | "Kelvin" | "Minute" | "Hour";
|
|
9069
9075
|
export interface ImaChemistryCompositeSpecificationDto {
|
|
9070
9076
|
pren?: ImaSpecificationLineDto | null;
|
|
9071
9077
|
pren22?: ImaSpecificationLineDto | null;
|
|
@@ -9173,7 +9179,7 @@ export interface ImaSpecificationLiteDto {
|
|
|
9173
9179
|
export interface SchemaCreatorStateDto {
|
|
9174
9180
|
settings: SchemaCreatorSettingsDto;
|
|
9175
9181
|
elements: SchemaCreatorElementDto[];
|
|
9176
|
-
|
|
9182
|
+
documentParse?: SchemaCreatorDocumentParseStatusDto | null;
|
|
9177
9183
|
}
|
|
9178
9184
|
export interface SchemaCreatorSettingsDto {
|
|
9179
9185
|
unit?: UnitOfMeasureDto;
|
|
@@ -9189,6 +9195,7 @@ export interface SchemaCreatorElementDto {
|
|
|
9189
9195
|
isDirty?: boolean | null;
|
|
9190
9196
|
values?: SchemaCreatorElementValuesDto | null;
|
|
9191
9197
|
parseResult?: SchemaCreatorSnipResultDto | null;
|
|
9198
|
+
resolveAttempt?: SchemaCreatorParseAttemptDto | null;
|
|
9192
9199
|
}
|
|
9193
9200
|
export type SchemaCreatorElementKindDto = "Pending" | "Auto" | "Manual";
|
|
9194
9201
|
export interface SchemaCreatorElementDrawingsDto {
|
|
@@ -9240,13 +9247,16 @@ export interface SchemaCreatorSnipResultDto {
|
|
|
9240
9247
|
coatingThickness?: number | null;
|
|
9241
9248
|
count?: number | null;
|
|
9242
9249
|
}
|
|
9243
|
-
export interface
|
|
9244
|
-
|
|
9245
|
-
startedAt?: Date | null;
|
|
9250
|
+
export interface SchemaCreatorParseAttemptDto {
|
|
9251
|
+
startedAt: Date;
|
|
9246
9252
|
errorType?: SchemaCreatorParseErrorTypeDto | null;
|
|
9247
9253
|
errorMessage?: string | null;
|
|
9248
9254
|
}
|
|
9249
9255
|
export type SchemaCreatorParseErrorTypeDto = "Timeout" | "ParseError";
|
|
9256
|
+
export interface SchemaCreatorDocumentParseStatusDto {
|
|
9257
|
+
inProgress: boolean;
|
|
9258
|
+
attempt?: SchemaCreatorParseAttemptDto | null;
|
|
9259
|
+
}
|
|
9250
9260
|
export interface MeasurementFormSchemaDto {
|
|
9251
9261
|
id: string;
|
|
9252
9262
|
versionId: number;
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -23882,8 +23882,8 @@ export class InspectSchemaCreatorClient extends AuthorizedApiBase {
|
|
|
23882
23882
|
schema for every viewer until it completes. If one is already in
|
|
23883
23883
|
progress, returns that instead of starting a second one.
|
|
23884
23884
|
*/
|
|
23885
|
-
|
|
23886
|
-
let url_ = this.baseUrl + "/measurementforms/schemas/{id}/creatorstate/
|
|
23885
|
+
requestSchemaCreatorDocumentParse(id) {
|
|
23886
|
+
let url_ = this.baseUrl + "/measurementforms/schemas/{id}/creatorstate/parse-document";
|
|
23887
23887
|
if (id === undefined || id === null)
|
|
23888
23888
|
throw new globalThis.Error("The parameter 'id' must be defined.");
|
|
23889
23889
|
url_ = url_.replace("{id}", encodeURIComponent("" + id));
|
|
@@ -23897,10 +23897,10 @@ export class InspectSchemaCreatorClient extends AuthorizedApiBase {
|
|
|
23897
23897
|
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
23898
23898
|
return this.http.fetch(url_, transformedOptions_);
|
|
23899
23899
|
}).then((_response) => {
|
|
23900
|
-
return this.
|
|
23900
|
+
return this.processRequestSchemaCreatorDocumentParse(_response);
|
|
23901
23901
|
});
|
|
23902
23902
|
}
|
|
23903
|
-
|
|
23903
|
+
processRequestSchemaCreatorDocumentParse(response) {
|
|
23904
23904
|
const status = response.status;
|
|
23905
23905
|
let _headers = {};
|
|
23906
23906
|
if (response.headers && response.headers.forEach) {
|
|
@@ -23969,8 +23969,8 @@ export class InspectSchemaCreatorClient extends AuthorizedApiBase {
|
|
|
23969
23969
|
SchemaCreatorSnipResolved SignalR notification.
|
|
23970
23970
|
* @param image (optional)
|
|
23971
23971
|
*/
|
|
23972
|
-
|
|
23973
|
-
let url_ = this.baseUrl + "/measurementforms/schemas/{id}/creatorstate/elements/{elementId}/
|
|
23972
|
+
requestSchemaCreatorSnipParse(id, elementId, image) {
|
|
23973
|
+
let url_ = this.baseUrl + "/measurementforms/schemas/{id}/creatorstate/elements/{elementId}/parse-snip";
|
|
23974
23974
|
if (id === undefined || id === null)
|
|
23975
23975
|
throw new globalThis.Error("The parameter 'id' must be defined.");
|
|
23976
23976
|
url_ = url_.replace("{id}", encodeURIComponent("" + id));
|
|
@@ -23991,10 +23991,10 @@ export class InspectSchemaCreatorClient extends AuthorizedApiBase {
|
|
|
23991
23991
|
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
23992
23992
|
return this.http.fetch(url_, transformedOptions_);
|
|
23993
23993
|
}).then((_response) => {
|
|
23994
|
-
return this.
|
|
23994
|
+
return this.processRequestSchemaCreatorSnipParse(_response);
|
|
23995
23995
|
});
|
|
23996
23996
|
}
|
|
23997
|
-
|
|
23997
|
+
processRequestSchemaCreatorSnipParse(response) {
|
|
23998
23998
|
const status = response.status;
|
|
23999
23999
|
let _headers = {};
|
|
24000
24000
|
if (response.headers && response.headers.forEach) {
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -25411,7 +25411,7 @@ export interface IInspectSchemaCreatorClient {
|
|
|
25411
25411
|
schema for every viewer until it completes. If one is already in
|
|
25412
25412
|
progress, returns that instead of starting a second one.
|
|
25413
25413
|
*/
|
|
25414
|
-
|
|
25414
|
+
requestSchemaCreatorDocumentParse(id: string): Promise<SchemaCreatorStateDto>;
|
|
25415
25415
|
|
|
25416
25416
|
/**
|
|
25417
25417
|
* Stamps the creator state's balloons onto the schema's drawing PDF and
|
|
@@ -25424,7 +25424,7 @@ export interface IInspectSchemaCreatorClient {
|
|
|
25424
25424
|
SchemaCreatorSnipResolved SignalR notification.
|
|
25425
25425
|
* @param image (optional)
|
|
25426
25426
|
*/
|
|
25427
|
-
|
|
25427
|
+
requestSchemaCreatorSnipParse(id: string, elementId: string, image: FileParameter | null | undefined): Promise<FileResponse>;
|
|
25428
25428
|
}
|
|
25429
25429
|
|
|
25430
25430
|
export class InspectSchemaCreatorClient extends AuthorizedApiBase implements IInspectSchemaCreatorClient {
|
|
@@ -25574,8 +25574,8 @@ export class InspectSchemaCreatorClient extends AuthorizedApiBase implements IIn
|
|
|
25574
25574
|
schema for every viewer until it completes. If one is already in
|
|
25575
25575
|
progress, returns that instead of starting a second one.
|
|
25576
25576
|
*/
|
|
25577
|
-
|
|
25578
|
-
let url_ = this.baseUrl + "/measurementforms/schemas/{id}/creatorstate/
|
|
25577
|
+
requestSchemaCreatorDocumentParse(id: string): Promise<SchemaCreatorStateDto> {
|
|
25578
|
+
let url_ = this.baseUrl + "/measurementforms/schemas/{id}/creatorstate/parse-document";
|
|
25579
25579
|
if (id === undefined || id === null)
|
|
25580
25580
|
throw new globalThis.Error("The parameter 'id' must be defined.");
|
|
25581
25581
|
url_ = url_.replace("{id}", encodeURIComponent("" + id));
|
|
@@ -25591,11 +25591,11 @@ export class InspectSchemaCreatorClient extends AuthorizedApiBase implements IIn
|
|
|
25591
25591
|
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
25592
25592
|
return this.http.fetch(url_, transformedOptions_);
|
|
25593
25593
|
}).then((_response: Response) => {
|
|
25594
|
-
return this.
|
|
25594
|
+
return this.processRequestSchemaCreatorDocumentParse(_response);
|
|
25595
25595
|
});
|
|
25596
25596
|
}
|
|
25597
25597
|
|
|
25598
|
-
protected
|
|
25598
|
+
protected processRequestSchemaCreatorDocumentParse(response: Response): Promise<SchemaCreatorStateDto> {
|
|
25599
25599
|
const status = response.status;
|
|
25600
25600
|
let _headers: any = {}; if (response.headers && response.headers.forEach) { response.headers.forEach((v: any, k: any) => _headers[k] = v); };
|
|
25601
25601
|
if (status === 200) {
|
|
@@ -25659,8 +25659,8 @@ export class InspectSchemaCreatorClient extends AuthorizedApiBase implements IIn
|
|
|
25659
25659
|
SchemaCreatorSnipResolved SignalR notification.
|
|
25660
25660
|
* @param image (optional)
|
|
25661
25661
|
*/
|
|
25662
|
-
|
|
25663
|
-
let url_ = this.baseUrl + "/measurementforms/schemas/{id}/creatorstate/elements/{elementId}/
|
|
25662
|
+
requestSchemaCreatorSnipParse(id: string, elementId: string, image: FileParameter | null | undefined): Promise<FileResponse> {
|
|
25663
|
+
let url_ = this.baseUrl + "/measurementforms/schemas/{id}/creatorstate/elements/{elementId}/parse-snip";
|
|
25664
25664
|
if (id === undefined || id === null)
|
|
25665
25665
|
throw new globalThis.Error("The parameter 'id' must be defined.");
|
|
25666
25666
|
url_ = url_.replace("{id}", encodeURIComponent("" + id));
|
|
@@ -25684,11 +25684,11 @@ export class InspectSchemaCreatorClient extends AuthorizedApiBase implements IIn
|
|
|
25684
25684
|
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
25685
25685
|
return this.http.fetch(url_, transformedOptions_);
|
|
25686
25686
|
}).then((_response: Response) => {
|
|
25687
|
-
return this.
|
|
25687
|
+
return this.processRequestSchemaCreatorSnipParse(_response);
|
|
25688
25688
|
});
|
|
25689
25689
|
}
|
|
25690
25690
|
|
|
25691
|
-
protected
|
|
25691
|
+
protected processRequestSchemaCreatorSnipParse(response: Response): Promise<FileResponse> {
|
|
25692
25692
|
const status = response.status;
|
|
25693
25693
|
let _headers: any = {}; if (response.headers && response.headers.forEach) { response.headers.forEach((v: any, k: any) => _headers[k] = v); };
|
|
25694
25694
|
if (status === 200 || status === 206) {
|
|
@@ -37357,13 +37357,12 @@ export interface ImaFerriteResultDto {
|
|
|
37357
37357
|
heatNumber?: string | null;
|
|
37358
37358
|
sampleReference?: string | null;
|
|
37359
37359
|
testLocation?: string | null;
|
|
37360
|
-
ferrite?:
|
|
37360
|
+
ferrite?: ImaSpecificationResultLineDto | null;
|
|
37361
37361
|
ferriteTolerance?: number | null;
|
|
37362
37362
|
reportedRange?: string | null;
|
|
37363
37363
|
intermetallicPhases?: boolean | null;
|
|
37364
37364
|
grainSize?: string | null;
|
|
37365
37365
|
testStandards: string[];
|
|
37366
|
-
override?: ImaResultLineOverrideDto | null;
|
|
37367
37366
|
}
|
|
37368
37367
|
|
|
37369
37368
|
export interface ImaHeatTreatmentResultDto {
|
|
@@ -37398,7 +37397,7 @@ export interface ImaOverrideMaterialCheckRequestDto {
|
|
|
37398
37397
|
hardnessTestSection?: ImaOverrideHardnessTestResultsDto[] | null;
|
|
37399
37398
|
impactTestSection?: ImaOverrideImpactTestResultsDto[] | null;
|
|
37400
37399
|
corrosionTestSection?: ImaOverrideCorrosionTestResultsDto[] | null;
|
|
37401
|
-
ferriteResultSection?:
|
|
37400
|
+
ferriteResultSection?: ImaOverrideFerriteResultDto[] | null;
|
|
37402
37401
|
documentTypesSection?: ImaOverrideDocumentTypesResultsDto | null;
|
|
37403
37402
|
}
|
|
37404
37403
|
|
|
@@ -37567,6 +37566,12 @@ export interface ImaOverrideCorrosionTestResultsDto {
|
|
|
37567
37566
|
acceptable?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37568
37567
|
}
|
|
37569
37568
|
|
|
37569
|
+
export interface ImaOverrideFerriteResultDto {
|
|
37570
|
+
heatNumber?: string | null;
|
|
37571
|
+
sampleReference?: string | null;
|
|
37572
|
+
ferrite?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37573
|
+
}
|
|
37574
|
+
|
|
37570
37575
|
export interface ImaOverrideDocumentTypesResultsDto {
|
|
37571
37576
|
ultrasonicControlCertificate?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
37572
37577
|
radiologicalReport?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
|
|
@@ -37850,8 +37855,11 @@ export interface ImaChemistrySpecificationDto {
|
|
|
37850
37855
|
export interface ImaSpecificationLineDto {
|
|
37851
37856
|
min?: number | null;
|
|
37852
37857
|
max?: number | null;
|
|
37858
|
+
unit?: ImaUnitDto | null;
|
|
37853
37859
|
}
|
|
37854
37860
|
|
|
37861
|
+
export type ImaUnitDto = "Millimeter" | "Centimeter" | "Meter" | "Inch" | "Kilogram" | "Gram" | "Tonne" | "Pound" | "Megapascal" | "NewtonPerSquareMillimeter" | "KilopoundPerSquareInch" | "PoundPerSquareInch" | "Bar" | "Ppm" | "Percentage" | "WeightPercentage" | "Joule" | "FootPound" | "Celsius" | "Fahrenheit" | "Kelvin" | "Minute" | "Hour";
|
|
37862
|
+
|
|
37855
37863
|
export interface ImaChemistryCompositeSpecificationDto {
|
|
37856
37864
|
pren?: ImaSpecificationLineDto | null;
|
|
37857
37865
|
pren22?: ImaSpecificationLineDto | null;
|
|
@@ -37975,7 +37983,7 @@ export interface ImaSpecificationLiteDto {
|
|
|
37975
37983
|
export interface SchemaCreatorStateDto {
|
|
37976
37984
|
settings: SchemaCreatorSettingsDto;
|
|
37977
37985
|
elements: SchemaCreatorElementDto[];
|
|
37978
|
-
|
|
37986
|
+
documentParse?: SchemaCreatorDocumentParseStatusDto | null;
|
|
37979
37987
|
}
|
|
37980
37988
|
|
|
37981
37989
|
export interface SchemaCreatorSettingsDto {
|
|
@@ -37995,6 +38003,7 @@ export interface SchemaCreatorElementDto {
|
|
|
37995
38003
|
isDirty?: boolean | null;
|
|
37996
38004
|
values?: SchemaCreatorElementValuesDto | null;
|
|
37997
38005
|
parseResult?: SchemaCreatorSnipResultDto | null;
|
|
38006
|
+
resolveAttempt?: SchemaCreatorParseAttemptDto | null;
|
|
37998
38007
|
}
|
|
37999
38008
|
|
|
38000
38009
|
export type SchemaCreatorElementKindDto = "Pending" | "Auto" | "Manual";
|
|
@@ -38056,15 +38065,19 @@ export interface SchemaCreatorSnipResultDto {
|
|
|
38056
38065
|
count?: number | null;
|
|
38057
38066
|
}
|
|
38058
38067
|
|
|
38059
|
-
export interface
|
|
38060
|
-
|
|
38061
|
-
startedAt?: Date | null;
|
|
38068
|
+
export interface SchemaCreatorParseAttemptDto {
|
|
38069
|
+
startedAt: Date;
|
|
38062
38070
|
errorType?: SchemaCreatorParseErrorTypeDto | null;
|
|
38063
38071
|
errorMessage?: string | null;
|
|
38064
38072
|
}
|
|
38065
38073
|
|
|
38066
38074
|
export type SchemaCreatorParseErrorTypeDto = "Timeout" | "ParseError";
|
|
38067
38075
|
|
|
38076
|
+
export interface SchemaCreatorDocumentParseStatusDto {
|
|
38077
|
+
inProgress: boolean;
|
|
38078
|
+
attempt?: SchemaCreatorParseAttemptDto | null;
|
|
38079
|
+
}
|
|
38080
|
+
|
|
38068
38081
|
export interface MeasurementFormSchemaDto {
|
|
38069
38082
|
id: string;
|
|
38070
38083
|
versionId: number;
|