@ignos/api-client 20260820.231.1-alpha → 20260820.232.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.
@@ -8574,8 +8574,7 @@ export interface ImaImpactTestResultDto {
8574
8574
  sampleReference?: string | null;
8575
8575
  orientation?: string | null;
8576
8576
  testLocation?: string | null;
8577
- temperature?: number | null;
8578
- temperatureUnit?: string | null;
8577
+ temperature?: ImaSpecificationResultLineDto | null;
8579
8578
  roomTemperature?: boolean | null;
8580
8579
  testLabel?: string | null;
8581
8580
  notchType?: string | null;
@@ -8805,6 +8804,7 @@ export interface ImaOverrideImpactTestResultsDto {
8805
8804
  heatNumber?: string | null;
8806
8805
  sampleReference?: string | null;
8807
8806
  orientation?: string | null;
8807
+ temperature?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8808
8808
  reportedAverage?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8809
8809
  individualValues?: ImaOverrideIndexedResultLineDto[] | null;
8810
8810
  }
@@ -9127,6 +9127,7 @@ export interface ImaHardnessSpecificationDto {
9127
9127
  hardness?: ImaSpecificationLineDto | null;
9128
9128
  }
9129
9129
  export interface ImaImpactSpecificationDto {
9130
+ temperature?: ImaSpecificationLineDto | null;
9130
9131
  minimum?: ImaSpecificationLineDto | null;
9131
9132
  average?: ImaSpecificationLineDto | null;
9132
9133
  }
@@ -9209,7 +9210,7 @@ export interface ImaSpecificationLiteDto {
9209
9210
  export interface SchemaCreatorStateDto {
9210
9211
  settings: SchemaCreatorSettingsDto;
9211
9212
  elements: SchemaCreatorElementDto[];
9212
- documentParse?: SchemaCreatorDocumentParseStatusDto | null;
9213
+ documentParseStatus?: SchemaCreatorDocumentParseStatusDto | null;
9213
9214
  isAutoGenerated?: boolean;
9214
9215
  }
9215
9216
  export interface SchemaCreatorSettingsDto {
@@ -9235,14 +9236,12 @@ export interface SchemaCreatorElementDto {
9235
9236
  }
9236
9237
  export type SchemaCreatorElementKindDto = "Pending" | "Auto" | "Manual";
9237
9238
  export interface SchemaCreatorElementDrawingsDto {
9238
- square: SchemaCreatorDrawingDto;
9239
- circle: SchemaCreatorDrawingDto;
9240
- textId: string;
9239
+ snip: SchemaCreatorSnipDto;
9240
+ balloon: SchemaCreatorPointDto;
9241
+ pageIndex: number;
9241
9242
  }
9242
- export interface SchemaCreatorDrawingDto {
9243
+ export interface SchemaCreatorSnipDto {
9243
9244
  rect: SchemaCreatorRectDto;
9244
- pageIndex: number;
9245
- annotationId: string;
9246
9245
  rotation?: number | null;
9247
9246
  unrotatedRect?: SchemaCreatorRectDto | null;
9248
9247
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20260820.231.1-alpha",
3
+ "version": "20260820.232.1-alpha",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -37298,8 +37298,7 @@ export interface ImaImpactTestResultDto {
37298
37298
  sampleReference?: string | null;
37299
37299
  orientation?: string | null;
37300
37300
  testLocation?: string | null;
37301
- temperature?: number | null;
37302
- temperatureUnit?: string | null;
37301
+ temperature?: ImaSpecificationResultLineDto | null;
37303
37302
  roomTemperature?: boolean | null;
37304
37303
  testLabel?: string | null;
37305
37304
  notchType?: string | null;
@@ -37559,6 +37558,7 @@ export interface ImaOverrideImpactTestResultsDto {
37559
37558
  heatNumber?: string | null;
37560
37559
  sampleReference?: string | null;
37561
37560
  orientation?: string | null;
37561
+ temperature?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
37562
37562
  reportedAverage?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
37563
37563
  individualValues?: ImaOverrideIndexedResultLineDto[] | null;
37564
37564
  }
@@ -37919,6 +37919,7 @@ export interface ImaHardnessSpecificationDto {
37919
37919
  }
37920
37920
 
37921
37921
  export interface ImaImpactSpecificationDto {
37922
+ temperature?: ImaSpecificationLineDto | null;
37922
37923
  minimum?: ImaSpecificationLineDto | null;
37923
37924
  average?: ImaSpecificationLineDto | null;
37924
37925
  }
@@ -38011,7 +38012,7 @@ export interface ImaSpecificationLiteDto {
38011
38012
  export interface SchemaCreatorStateDto {
38012
38013
  settings: SchemaCreatorSettingsDto;
38013
38014
  elements: SchemaCreatorElementDto[];
38014
- documentParse?: SchemaCreatorDocumentParseStatusDto | null;
38015
+ documentParseStatus?: SchemaCreatorDocumentParseStatusDto | null;
38015
38016
  isAutoGenerated?: boolean;
38016
38017
  }
38017
38018
 
@@ -38043,15 +38044,13 @@ export interface SchemaCreatorElementDto {
38043
38044
  export type SchemaCreatorElementKindDto = "Pending" | "Auto" | "Manual";
38044
38045
 
38045
38046
  export interface SchemaCreatorElementDrawingsDto {
38046
- square: SchemaCreatorDrawingDto;
38047
- circle: SchemaCreatorDrawingDto;
38048
- textId: string;
38047
+ snip: SchemaCreatorSnipDto;
38048
+ balloon: SchemaCreatorPointDto;
38049
+ pageIndex: number;
38049
38050
  }
38050
38051
 
38051
- export interface SchemaCreatorDrawingDto {
38052
+ export interface SchemaCreatorSnipDto {
38052
38053
  rect: SchemaCreatorRectDto;
38053
- pageIndex: number;
38054
- annotationId: string;
38055
38054
  rotation?: number | null;
38056
38055
  unrotatedRect?: SchemaCreatorRectDto | null;
38057
38056
  }