@ignos/api-client 20260814.226.1-alpha → 20260820.227.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.
@@ -8242,7 +8242,7 @@ export interface ImaCertificateTypeProductAndOrderInformationRequirementsDto {
8242
8242
  productDescription?: boolean;
8243
8243
  materialGrade?: boolean;
8244
8244
  customer?: boolean;
8245
- customerOrderNumber?: boolean;
8245
+ purchaseOrderNumber?: boolean;
8246
8246
  dimensionsOrWeight?: boolean;
8247
8247
  batchNumber?: boolean;
8248
8248
  heatNumber?: boolean;
@@ -8312,7 +8312,7 @@ export interface ImaCertificateTypeProductAndOrderInformationRequirementsUpdateD
8312
8312
  productDescription?: boolean | null;
8313
8313
  materialGrade?: boolean | null;
8314
8314
  customer?: boolean | null;
8315
- customerOrderNumber?: boolean | null;
8315
+ purchaseOrderNumber?: boolean | null;
8316
8316
  dimensionsOrWeight?: boolean | null;
8317
8317
  batchNumber?: boolean | null;
8318
8318
  heatNumber?: boolean | null;
@@ -8453,7 +8453,7 @@ export interface ImaCertificateTypeProductAndOrderInformationResultsDto {
8453
8453
  productDescription?: ImaCertificateTypeResultLine | null;
8454
8454
  materialGrade?: ImaCertificateTypeResultLine | null;
8455
8455
  customer?: ImaCertificateTypeResultLine | null;
8456
- customerOrderNumber?: ImaCertificateTypeResultLine | null;
8456
+ purchaseOrderNumber?: ImaCertificateTypeResultLine | null;
8457
8457
  dimensionsOrWeight?: ImaCertificateTypeResultLine | null;
8458
8458
  batchNumber?: ImaCertificateTypeResultLine | null;
8459
8459
  heatNumber?: ImaCertificateTypeResultLine | null;
@@ -8628,16 +8628,35 @@ export interface ImaFerriteResultDto {
8628
8628
  }
8629
8629
  export interface ImaHeatTreatmentResultDto {
8630
8630
  heatNumber?: string | null;
8631
- stepType?: string | null;
8632
- treatmentName?: string | null;
8633
- temperature?: ImaResultValueDto | null;
8634
- temperatureMin?: number | null;
8635
- temperatureMax?: number | null;
8636
- soakTime?: ImaResultValueDto | null;
8637
- soakRate?: string | null;
8638
- coolingMedium?: string | null;
8631
+ step: number;
8632
+ heating?: ImaHeatTreatmentHeatingResultDto | null;
8633
+ cooling?: ImaHeatTreatmentCoolingResultDto | null;
8634
+ }
8635
+ export interface ImaHeatTreatmentHeatingResultDto {
8636
+ heatingMethod?: ImaHeatTreatmentHeatingResultLineDto | null;
8637
+ temperature?: ImaSpecificationResultLineDto | null;
8638
+ heatingRate?: ImaSpecificationResultLineDto | null;
8639
+ soakTime?: ImaSpecificationResultLineDto | null;
8640
+ }
8641
+ export interface ImaHeatTreatmentHeatingResultLineDto {
8642
+ specification?: ImaHeatTreatmentHeatingMethodDto | null;
8643
+ readValue?: ImaHeatTreatmentHeatingMethodDto | null;
8644
+ status: ImaSpecificationResultLineStatusDto;
8645
+ override?: ImaResultLineOverrideDto | null;
8646
+ }
8647
+ export type ImaHeatTreatmentHeatingMethodDto = "Annealing" | "Austenitizing" | "Hardening" | "Normalizing" | "SolutionAnnealing" | "StressRelieving" | "Tempering" | "NotSet";
8648
+ export interface ImaHeatTreatmentCoolingResultDto {
8649
+ coolingMethod?: ImaHeatTreatmentCoolingResultLineDto | null;
8650
+ temperature?: ImaSpecificationResultLineDto | null;
8651
+ coolingRate?: ImaSpecificationResultLineDto | null;
8652
+ }
8653
+ export interface ImaHeatTreatmentCoolingResultLineDto {
8654
+ specification?: ImaHeatTreatmentCoolingMethodDto[] | null;
8655
+ readValue?: ImaHeatTreatmentCoolingMethodDto | null;
8656
+ status: ImaSpecificationResultLineStatusDto;
8639
8657
  override?: ImaResultLineOverrideDto | null;
8640
8658
  }
8659
+ export type ImaHeatTreatmentCoolingMethodDto = "NoCoolingMethod" | "AirCooling" | "FurnaceCooling" | "OilQuenching" | "PolymerQuenching" | "WaterQuenching" | "NotSet";
8641
8660
  export interface ImaDocumentTypesResultsDto {
8642
8661
  ultrasonicControlCertificate?: ImaSupplementaryCheckResultDto | null;
8643
8662
  radiologicalReport?: ImaSupplementaryCheckResultDto | null;
@@ -8702,7 +8721,7 @@ export interface ImaOverrideCertificateTypeProductAndOrderInformationResultsDto
8702
8721
  productDescription?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8703
8722
  materialGrade?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8704
8723
  customer?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8705
- customerOrderNumber?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8724
+ purchaseOrderNumber?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8706
8725
  dimensionsOrWeight?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8707
8726
  batchNumber?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
8708
8727
  heatNumber?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
@@ -9113,21 +9132,20 @@ export interface ImaDocumentTypesSpecificationDto {
9113
9132
  }
9114
9133
  export interface ImaHeatTreatmentSpecificationDto {
9115
9134
  step: number;
9116
- cooling?: ImaHeatTreatmentSpecificationCoolingDto | null;
9117
9135
  heating?: ImaHeatTreatmentSpecificationHeatingDto | null;
9136
+ cooling?: ImaHeatTreatmentSpecificationCoolingDto | null;
9118
9137
  }
9119
- export interface ImaHeatTreatmentSpecificationCoolingDto {
9120
- coolingMethods: ImaHeatTreatmentCoolingMethodDto[];
9121
- temperature?: ImaSpecificationLineDto | null;
9122
- duration?: ImaSpecificationLineDto | null;
9123
- }
9124
- export type ImaHeatTreatmentCoolingMethodDto = "NoCoolingMethod" | "AirCooling" | "FurnaceCooling" | "OilQuenching" | "PolymerQuenching" | "WaterQuenching" | "NotSet";
9125
9138
  export interface ImaHeatTreatmentSpecificationHeatingDto {
9126
9139
  heatingMethod: ImaHeatTreatmentHeatingMethodDto;
9127
9140
  temperature?: ImaSpecificationLineDto | null;
9128
- duration?: ImaSpecificationLineDto | null;
9141
+ heatingRate?: ImaSpecificationLineDto | null;
9142
+ soakTime?: ImaSpecificationLineDto | null;
9143
+ }
9144
+ export interface ImaHeatTreatmentSpecificationCoolingDto {
9145
+ coolingMethods: ImaHeatTreatmentCoolingMethodDto[];
9146
+ temperature?: ImaSpecificationLineDto | null;
9147
+ coolingRate?: ImaSpecificationLineDto | null;
9129
9148
  }
9130
- export type ImaHeatTreatmentHeatingMethodDto = "Annealing" | "Austenitizing" | "Hardening" | "Normalizing" | "SolutionAnnealing" | "StressRelieving" | "Tempering" | "NotSet";
9131
9149
  export interface ImaCreateSpecificationRequestDto {
9132
9150
  name: string;
9133
9151
  number: string;
@@ -9152,7 +9170,7 @@ export interface ImaUpdateSpecificationDto {
9152
9170
  mechanicalSpecification?: ImaMechanicalSpecificationDto | null;
9153
9171
  ferriteSpecification?: ImaFerriteSpecificationDto | null;
9154
9172
  documentTypesSpecification?: ImaDocumentTypesSpecificationDto | null;
9155
- heatSpecifications?: ImaHeatTreatmentSpecificationDto[] | null;
9173
+ heatTreatmentSpecifications?: ImaHeatTreatmentSpecificationDto[] | null;
9156
9174
  }
9157
9175
  export interface ImaSpecificationLiteDto {
9158
9176
  specificationId: string;
@@ -9178,11 +9196,13 @@ export interface SchemaCreatorStateDto {
9178
9196
  settings: SchemaCreatorSettingsDto;
9179
9197
  elements: SchemaCreatorElementDto[];
9180
9198
  documentParse?: SchemaCreatorDocumentParseStatusDto | null;
9199
+ isAutoGenerated?: boolean;
9181
9200
  }
9182
9201
  export interface SchemaCreatorSettingsDto {
9183
9202
  unit?: UnitOfMeasureDto;
9184
9203
  tolerance?: GeneralToleranceDto;
9185
9204
  balloonSize?: number;
9205
+ transparentBalloons?: boolean;
9186
9206
  }
9187
9207
  export type UnitOfMeasureDto = "Millimeter" | "Inch";
9188
9208
  export type GeneralToleranceDto = "NotSet" | "Fine" | "Medium" | "Coarse" | "VeryCoarse";
@@ -9194,6 +9214,10 @@ export interface SchemaCreatorElementDto {
9194
9214
  values?: SchemaCreatorElementValuesDto | null;
9195
9215
  parseResult?: SchemaCreatorSnipResultDto | null;
9196
9216
  resolveAttempt?: SchemaCreatorParseAttemptDto | null;
9217
+ createdBy: SchemaCreatorAuditInfoDto;
9218
+ createdAt: Date;
9219
+ updatedBy?: SchemaCreatorAuditInfoDto | null;
9220
+ updatedAt?: Date | null;
9197
9221
  }
9198
9222
  export type SchemaCreatorElementKindDto = "Pending" | "Auto" | "Manual";
9199
9223
  export interface SchemaCreatorElementDrawingsDto {
@@ -9242,7 +9266,6 @@ export interface SchemaCreatorSnipResultDto {
9242
9266
  nominalText?: string | null;
9243
9267
  plusTolerance?: number | null;
9244
9268
  minusTolerance?: number | null;
9245
- coatingThickness?: number | null;
9246
9269
  count?: number | null;
9247
9270
  }
9248
9271
  export interface SchemaCreatorParseAttemptDto {
@@ -9251,6 +9274,11 @@ export interface SchemaCreatorParseAttemptDto {
9251
9274
  errorMessage?: string | null;
9252
9275
  }
9253
9276
  export type SchemaCreatorParseErrorTypeDto = "Timeout" | "ParseError";
9277
+ export interface SchemaCreatorAuditInfoDto {
9278
+ objectId: string;
9279
+ userId: string;
9280
+ userFullName?: string | null;
9281
+ }
9254
9282
  export interface SchemaCreatorDocumentParseStatusDto {
9255
9283
  inProgress: boolean;
9256
9284
  attempt?: SchemaCreatorParseAttemptDto | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20260814.226.1-alpha",
3
+ "version": "20260820.227.1-alpha",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -36927,7 +36927,7 @@ export interface ImaCertificateTypeProductAndOrderInformationRequirementsDto {
36927
36927
  productDescription?: boolean;
36928
36928
  materialGrade?: boolean;
36929
36929
  customer?: boolean;
36930
- customerOrderNumber?: boolean;
36930
+ purchaseOrderNumber?: boolean;
36931
36931
  dimensionsOrWeight?: boolean;
36932
36932
  batchNumber?: boolean;
36933
36933
  heatNumber?: boolean;
@@ -37007,7 +37007,7 @@ export interface ImaCertificateTypeProductAndOrderInformationRequirementsUpdateD
37007
37007
  productDescription?: boolean | null;
37008
37008
  materialGrade?: boolean | null;
37009
37009
  customer?: boolean | null;
37010
- customerOrderNumber?: boolean | null;
37010
+ purchaseOrderNumber?: boolean | null;
37011
37011
  dimensionsOrWeight?: boolean | null;
37012
37012
  batchNumber?: boolean | null;
37013
37013
  heatNumber?: boolean | null;
@@ -37163,7 +37163,7 @@ export interface ImaCertificateTypeProductAndOrderInformationResultsDto {
37163
37163
  productDescription?: ImaCertificateTypeResultLine | null;
37164
37164
  materialGrade?: ImaCertificateTypeResultLine | null;
37165
37165
  customer?: ImaCertificateTypeResultLine | null;
37166
- customerOrderNumber?: ImaCertificateTypeResultLine | null;
37166
+ purchaseOrderNumber?: ImaCertificateTypeResultLine | null;
37167
37167
  dimensionsOrWeight?: ImaCertificateTypeResultLine | null;
37168
37168
  batchNumber?: ImaCertificateTypeResultLine | null;
37169
37169
  heatNumber?: ImaCertificateTypeResultLine | null;
@@ -37358,17 +37358,42 @@ export interface ImaFerriteResultDto {
37358
37358
 
37359
37359
  export interface ImaHeatTreatmentResultDto {
37360
37360
  heatNumber?: string | null;
37361
- stepType?: string | null;
37362
- treatmentName?: string | null;
37363
- temperature?: ImaResultValueDto | null;
37364
- temperatureMin?: number | null;
37365
- temperatureMax?: number | null;
37366
- soakTime?: ImaResultValueDto | null;
37367
- soakRate?: string | null;
37368
- coolingMedium?: string | null;
37361
+ step: number;
37362
+ heating?: ImaHeatTreatmentHeatingResultDto | null;
37363
+ cooling?: ImaHeatTreatmentCoolingResultDto | null;
37364
+ }
37365
+
37366
+ export interface ImaHeatTreatmentHeatingResultDto {
37367
+ heatingMethod?: ImaHeatTreatmentHeatingResultLineDto | null;
37368
+ temperature?: ImaSpecificationResultLineDto | null;
37369
+ heatingRate?: ImaSpecificationResultLineDto | null;
37370
+ soakTime?: ImaSpecificationResultLineDto | null;
37371
+ }
37372
+
37373
+ export interface ImaHeatTreatmentHeatingResultLineDto {
37374
+ specification?: ImaHeatTreatmentHeatingMethodDto | null;
37375
+ readValue?: ImaHeatTreatmentHeatingMethodDto | null;
37376
+ status: ImaSpecificationResultLineStatusDto;
37369
37377
  override?: ImaResultLineOverrideDto | null;
37370
37378
  }
37371
37379
 
37380
+ export type ImaHeatTreatmentHeatingMethodDto = "Annealing" | "Austenitizing" | "Hardening" | "Normalizing" | "SolutionAnnealing" | "StressRelieving" | "Tempering" | "NotSet";
37381
+
37382
+ export interface ImaHeatTreatmentCoolingResultDto {
37383
+ coolingMethod?: ImaHeatTreatmentCoolingResultLineDto | null;
37384
+ temperature?: ImaSpecificationResultLineDto | null;
37385
+ coolingRate?: ImaSpecificationResultLineDto | null;
37386
+ }
37387
+
37388
+ export interface ImaHeatTreatmentCoolingResultLineDto {
37389
+ specification?: ImaHeatTreatmentCoolingMethodDto[] | null;
37390
+ readValue?: ImaHeatTreatmentCoolingMethodDto | null;
37391
+ status: ImaSpecificationResultLineStatusDto;
37392
+ override?: ImaResultLineOverrideDto | null;
37393
+ }
37394
+
37395
+ export type ImaHeatTreatmentCoolingMethodDto = "NoCoolingMethod" | "AirCooling" | "FurnaceCooling" | "OilQuenching" | "PolymerQuenching" | "WaterQuenching" | "NotSet";
37396
+
37372
37397
  export interface ImaDocumentTypesResultsDto {
37373
37398
  ultrasonicControlCertificate?: ImaSupplementaryCheckResultDto | null;
37374
37399
  radiologicalReport?: ImaSupplementaryCheckResultDto | null;
@@ -37441,7 +37466,7 @@ export interface ImaOverrideCertificateTypeProductAndOrderInformationResultsDto
37441
37466
  productDescription?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
37442
37467
  materialGrade?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
37443
37468
  customer?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
37444
- customerOrderNumber?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
37469
+ purchaseOrderNumber?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
37445
37470
  dimensionsOrWeight?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
37446
37471
  batchNumber?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
37447
37472
  heatNumber?: ImaOverrideUpdateMaterialCheckResultLineDto | null;
@@ -37900,25 +37925,22 @@ export interface ImaDocumentTypesSpecificationDto {
37900
37925
 
37901
37926
  export interface ImaHeatTreatmentSpecificationDto {
37902
37927
  step: number;
37903
- cooling?: ImaHeatTreatmentSpecificationCoolingDto | null;
37904
37928
  heating?: ImaHeatTreatmentSpecificationHeatingDto | null;
37929
+ cooling?: ImaHeatTreatmentSpecificationCoolingDto | null;
37905
37930
  }
37906
37931
 
37907
- export interface ImaHeatTreatmentSpecificationCoolingDto {
37908
- coolingMethods: ImaHeatTreatmentCoolingMethodDto[];
37909
- temperature?: ImaSpecificationLineDto | null;
37910
- duration?: ImaSpecificationLineDto | null;
37911
- }
37912
-
37913
- export type ImaHeatTreatmentCoolingMethodDto = "NoCoolingMethod" | "AirCooling" | "FurnaceCooling" | "OilQuenching" | "PolymerQuenching" | "WaterQuenching" | "NotSet";
37914
-
37915
37932
  export interface ImaHeatTreatmentSpecificationHeatingDto {
37916
37933
  heatingMethod: ImaHeatTreatmentHeatingMethodDto;
37917
37934
  temperature?: ImaSpecificationLineDto | null;
37918
- duration?: ImaSpecificationLineDto | null;
37935
+ heatingRate?: ImaSpecificationLineDto | null;
37936
+ soakTime?: ImaSpecificationLineDto | null;
37919
37937
  }
37920
37938
 
37921
- export type ImaHeatTreatmentHeatingMethodDto = "Annealing" | "Austenitizing" | "Hardening" | "Normalizing" | "SolutionAnnealing" | "StressRelieving" | "Tempering" | "NotSet";
37939
+ export interface ImaHeatTreatmentSpecificationCoolingDto {
37940
+ coolingMethods: ImaHeatTreatmentCoolingMethodDto[];
37941
+ temperature?: ImaSpecificationLineDto | null;
37942
+ coolingRate?: ImaSpecificationLineDto | null;
37943
+ }
37922
37944
 
37923
37945
  export interface ImaCreateSpecificationRequestDto {
37924
37946
  name: string;
@@ -37946,7 +37968,7 @@ export interface ImaUpdateSpecificationDto {
37946
37968
  mechanicalSpecification?: ImaMechanicalSpecificationDto | null;
37947
37969
  ferriteSpecification?: ImaFerriteSpecificationDto | null;
37948
37970
  documentTypesSpecification?: ImaDocumentTypesSpecificationDto | null;
37949
- heatSpecifications?: ImaHeatTreatmentSpecificationDto[] | null;
37971
+ heatTreatmentSpecifications?: ImaHeatTreatmentSpecificationDto[] | null;
37950
37972
  }
37951
37973
 
37952
37974
  export interface ImaSpecificationLiteDto {
@@ -37974,12 +37996,14 @@ export interface SchemaCreatorStateDto {
37974
37996
  settings: SchemaCreatorSettingsDto;
37975
37997
  elements: SchemaCreatorElementDto[];
37976
37998
  documentParse?: SchemaCreatorDocumentParseStatusDto | null;
37999
+ isAutoGenerated?: boolean;
37977
38000
  }
37978
38001
 
37979
38002
  export interface SchemaCreatorSettingsDto {
37980
38003
  unit?: UnitOfMeasureDto;
37981
38004
  tolerance?: GeneralToleranceDto;
37982
38005
  balloonSize?: number;
38006
+ transparentBalloons?: boolean;
37983
38007
  }
37984
38008
 
37985
38009
  export type UnitOfMeasureDto = "Millimeter" | "Inch";
@@ -37994,6 +38018,10 @@ export interface SchemaCreatorElementDto {
37994
38018
  values?: SchemaCreatorElementValuesDto | null;
37995
38019
  parseResult?: SchemaCreatorSnipResultDto | null;
37996
38020
  resolveAttempt?: SchemaCreatorParseAttemptDto | null;
38021
+ createdBy: SchemaCreatorAuditInfoDto;
38022
+ createdAt: Date;
38023
+ updatedBy?: SchemaCreatorAuditInfoDto | null;
38024
+ updatedAt?: Date | null;
37997
38025
  }
37998
38026
 
37999
38027
  export type SchemaCreatorElementKindDto = "Pending" | "Auto" | "Manual";
@@ -38051,7 +38079,6 @@ export interface SchemaCreatorSnipResultDto {
38051
38079
  nominalText?: string | null;
38052
38080
  plusTolerance?: number | null;
38053
38081
  minusTolerance?: number | null;
38054
- coatingThickness?: number | null;
38055
38082
  count?: number | null;
38056
38083
  }
38057
38084
 
@@ -38063,6 +38090,12 @@ export interface SchemaCreatorParseAttemptDto {
38063
38090
 
38064
38091
  export type SchemaCreatorParseErrorTypeDto = "Timeout" | "ParseError";
38065
38092
 
38093
+ export interface SchemaCreatorAuditInfoDto {
38094
+ objectId: string;
38095
+ userId: string;
38096
+ userFullName?: string | null;
38097
+ }
38098
+
38066
38099
  export interface SchemaCreatorDocumentParseStatusDto {
38067
38100
  inProgress: boolean;
38068
38101
  attempt?: SchemaCreatorParseAttemptDto | null;