@ignos/api-client 20260824.239.1-alpha → 20260825.240.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.
@@ -2785,8 +2785,6 @@ export interface IInspectMatchMaterialChecksClient {
2785
2785
  listMaterialChecks(request: ImaMaterialChecksPageRequestDto): Promise<PagedResultOfImaMaterialCheckLiteDto>;
2786
2786
  processMaterialCertificate(certificatesRequest: ProcessMaterialCertificate): Promise<void>;
2787
2787
  generateReport(request: ImaMaterialChecksReportRequestDto): Promise<ImaMaterialCheckReportDto>;
2788
- getReportHistory(id: string): Promise<ImaMaterialCheckReportDto[]>;
2789
- downloadReport(id: string): Promise<FileDto>;
2790
2788
  }
2791
2789
  export declare class InspectMatchMaterialChecksClient extends AuthorizedApiBase implements IInspectMatchMaterialChecksClient {
2792
2790
  private http;
@@ -2802,10 +2800,6 @@ export declare class InspectMatchMaterialChecksClient extends AuthorizedApiBase
2802
2800
  protected processProcessMaterialCertificate(response: Response): Promise<void>;
2803
2801
  generateReport(request: ImaMaterialChecksReportRequestDto): Promise<ImaMaterialCheckReportDto>;
2804
2802
  protected processGenerateReport(response: Response): Promise<ImaMaterialCheckReportDto>;
2805
- getReportHistory(id: string): Promise<ImaMaterialCheckReportDto[]>;
2806
- protected processGetReportHistory(response: Response): Promise<ImaMaterialCheckReportDto[]>;
2807
- downloadReport(id: string): Promise<FileDto>;
2808
- protected processDownloadReport(response: Response): Promise<FileDto>;
2809
2803
  }
2810
2804
  export interface IInspectMatchPurchaseOrderClient {
2811
2805
  searchPurchaseOrders(input: string | undefined): Promise<PurchaseOrderMaterialSearchResultsDto>;
@@ -8303,6 +8297,7 @@ export interface ImaMaterialCheckDto {
8303
8297
  materialCheckId: string;
8304
8298
  fileName: string;
8305
8299
  originalMaterialCertificate: FileDto;
8300
+ generatedMaterialCertificate?: FileDto | null;
8306
8301
  customerOrder?: string | null;
8307
8302
  project?: string | null;
8308
8303
  workOrder?: string | null;
@@ -8334,6 +8329,10 @@ export interface ImaMaterialCheckDto {
8334
8329
  updatedById: string;
8335
8330
  updatedByName?: string | null;
8336
8331
  isDeleted: boolean;
8332
+ reportCreatedBy?: string | null;
8333
+ reportCreatedById?: string | null;
8334
+ reportCreatedByName?: string | null;
8335
+ reportCreated?: Date | null;
8337
8336
  certificateTypeResults: ImaCertificateTypeResultsDto;
8338
8337
  specificationResults: ImaSpecificationResultsDto;
8339
8338
  }
@@ -8453,11 +8452,14 @@ export interface ImaChemicalAnalysisElementsResultDto {
8453
8452
  export interface ImaSpecificationResultLineDto {
8454
8453
  specificationMin?: number | null;
8455
8454
  specificationMax?: number | null;
8455
+ specificationUnit?: ImaUnitDto | null;
8456
8456
  readValue?: string | null;
8457
8457
  unit?: string | null;
8458
+ convertedValue?: number | null;
8458
8459
  status: ImaSpecificationResultLineStatusDto;
8459
8460
  override?: ImaResultLineOverrideDto | null;
8460
8461
  }
8462
+ 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" | "BrinellHardness" | "VickersHardness" | "RockwellCHardness" | "RockwellBHardness" | "FerriteNumber" | "FerriteVolumePercentage" | "ElongationPercentage" | "MillilitersPerHundredGrams";
8461
8463
  export type ImaSpecificationResultLineStatusDto = "NotFound" | "NotOk" | "Ok" | "NotSet";
8462
8464
  export interface ImaChemicalAnalysisCompositeResultDto {
8463
8465
  pren?: ImaSpecificationCalculatedResultLineDto | null;
@@ -8812,6 +8814,7 @@ export interface ImaMaterialCheckLiteDto {
8812
8814
  materialCheckId: string;
8813
8815
  fileName: string;
8814
8816
  originalMaterialCertificate: FileDto;
8817
+ generatedMaterialCertificate?: FileDto | null;
8815
8818
  customerOrder?: string | null;
8816
8819
  project?: string | null;
8817
8820
  workOrder?: string | null;
@@ -8835,7 +8838,6 @@ export interface ImaMaterialCheckLiteDto {
8835
8838
  purchaseOrderDrawingRevision?: string | null;
8836
8839
  heatNumbers?: string[] | null;
8837
8840
  status: ImaMaterialCheckStatusDto;
8838
- hasGeneratedReports?: boolean;
8839
8841
  created: Date;
8840
8842
  createdBy: string;
8841
8843
  createdById: string;
@@ -8844,6 +8846,10 @@ export interface ImaMaterialCheckLiteDto {
8844
8846
  updatedById: string;
8845
8847
  updatedByName?: string | null;
8846
8848
  isDeleted?: boolean;
8849
+ reportCreatedBy?: string | null;
8850
+ reportCreatedById?: string | null;
8851
+ reportCreatedByName?: string | null;
8852
+ reportCreated?: Date | null;
8847
8853
  }
8848
8854
  export interface ImaMaterialChecksPageRequestDto {
8849
8855
  pageSize?: number | null;
@@ -8871,7 +8877,7 @@ export interface ImaMaterialChecksPageOrderRequestDto {
8871
8877
  column?: ImaMaterialChecksOrderByColumnDto;
8872
8878
  direction?: ImaOrderDirectionDto;
8873
8879
  }
8874
- export type ImaMaterialChecksOrderByColumnDto = "FileName" | "PurchaseOrder" | "Line" | "VendorBatch" | "Part" | "Drawing" | "Heat" | "CertificateType" | "Specification" | "Project" | "CustomerOrder" | "WorkOrder" | "Date" | "Status";
8880
+ export type ImaMaterialChecksOrderByColumnDto = "FileName" | "PurchaseOrder" | "Line" | "VendorBatch" | "Part" | "Drawing" | "Heat" | "CertificateType" | "Specification" | "GeneratedReport" | "Project" | "CustomerOrder" | "WorkOrder" | "Date" | "Status";
8875
8881
  export type ImaOrderDirectionDto = "Asc" | "Desc";
8876
8882
  export interface ProcessMaterialCertificate {
8877
8883
  files: UploadFileCdfDto[];
@@ -8887,9 +8893,6 @@ export interface UploadFileCdfDto {
8887
8893
  }
8888
8894
  export interface ImaMaterialCheckReportDto {
8889
8895
  file: FileDto;
8890
- heatNumbers: string[];
8891
- includesAllHeats: boolean;
8892
- status: ImaMaterialCheckStatusDto;
8893
8896
  audit: ImaMaterialCheckReportAuditInfo;
8894
8897
  }
8895
8898
  export interface ImaMaterialCheckReportAuditInfo {
@@ -8899,14 +8902,8 @@ export interface ImaMaterialCheckReportAuditInfo {
8899
8902
  created: Date;
8900
8903
  }
8901
8904
  export interface ImaMaterialChecksReportRequestDto {
8902
- materialCheckId?: string;
8903
- selectedHeatNumbers?: string[] | null;
8904
- }
8905
- export interface PurchaseOrderMaterialSearchResultsDto {
8906
- purchaseOrders: string[];
8907
- }
8908
- export interface PurchaseOrderMaterialLinesDto {
8909
- lines: number[];
8905
+ materialCheck?: ImaMaterialCheckDto;
8906
+ purchaseOrder?: PurchaseOrderMaterialLineDetailsDto | null;
8910
8907
  }
8911
8908
  export interface PurchaseOrderMaterialLineDetailsDto {
8912
8909
  companyId: string;
@@ -8940,6 +8937,12 @@ export interface User {
8940
8937
  upn?: string | null;
8941
8938
  email?: string | null;
8942
8939
  }
8940
+ export interface PurchaseOrderMaterialSearchResultsDto {
8941
+ purchaseOrders: string[];
8942
+ }
8943
+ export interface PurchaseOrderMaterialLinesDto {
8944
+ lines: number[];
8945
+ }
8943
8946
  export interface ImaMatchSettingsDto {
8944
8947
  columns: ImaMatchSettingsColumnsDto;
8945
8948
  }
@@ -9047,7 +9050,6 @@ export interface ImaSpecificationLineDto {
9047
9050
  max?: number | null;
9048
9051
  unit?: ImaUnitDto | null;
9049
9052
  }
9050
- 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" | "BrinellHardness" | "VickersHardness" | "RockwellCHardness" | "RockwellBHardness" | "FerriteNumber" | "FerriteVolumePercentage" | "ElongationPercentage" | "MillilitersPerHundredGrams";
9051
9053
  export interface ImaChemistryCompositeSpecificationDto {
9052
9054
  pren?: ImaSpecificationLineDto | null;
9053
9055
  pren22?: ImaSpecificationLineDto | null;
@@ -23228,84 +23228,6 @@ export class InspectMatchMaterialChecksClient extends AuthorizedApiBase {
23228
23228
  }
23229
23229
  return Promise.resolve(null);
23230
23230
  }
23231
- getReportHistory(id) {
23232
- let url_ = this.baseUrl + "/inspect/match/material-checks/{id}/report-history";
23233
- if (id === undefined || id === null)
23234
- throw new globalThis.Error("The parameter 'id' must be defined.");
23235
- url_ = url_.replace("{id}", encodeURIComponent("" + id));
23236
- url_ = url_.replace(/[?&]$/, "");
23237
- let options_ = {
23238
- method: "GET",
23239
- headers: {
23240
- "Accept": "application/json"
23241
- }
23242
- };
23243
- return this.transformOptions(options_).then(transformedOptions_ => {
23244
- return this.http.fetch(url_, transformedOptions_);
23245
- }).then((_response) => {
23246
- return this.processGetReportHistory(_response);
23247
- });
23248
- }
23249
- processGetReportHistory(response) {
23250
- const status = response.status;
23251
- let _headers = {};
23252
- if (response.headers && response.headers.forEach) {
23253
- response.headers.forEach((v, k) => _headers[k] = v);
23254
- }
23255
- ;
23256
- if (status === 200) {
23257
- return response.text().then((_responseText) => {
23258
- let result200 = null;
23259
- result200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
23260
- return result200;
23261
- });
23262
- }
23263
- else if (status !== 200 && status !== 204) {
23264
- return response.text().then((_responseText) => {
23265
- return throwException("An unexpected server error occurred.", status, _responseText, _headers);
23266
- });
23267
- }
23268
- return Promise.resolve(null);
23269
- }
23270
- downloadReport(id) {
23271
- let url_ = this.baseUrl + "/inspect/match/material-checks/{id}/download-report";
23272
- if (id === undefined || id === null)
23273
- throw new globalThis.Error("The parameter 'id' must be defined.");
23274
- url_ = url_.replace("{id}", encodeURIComponent("" + id));
23275
- url_ = url_.replace(/[?&]$/, "");
23276
- let options_ = {
23277
- method: "POST",
23278
- headers: {
23279
- "Accept": "application/json"
23280
- }
23281
- };
23282
- return this.transformOptions(options_).then(transformedOptions_ => {
23283
- return this.http.fetch(url_, transformedOptions_);
23284
- }).then((_response) => {
23285
- return this.processDownloadReport(_response);
23286
- });
23287
- }
23288
- processDownloadReport(response) {
23289
- const status = response.status;
23290
- let _headers = {};
23291
- if (response.headers && response.headers.forEach) {
23292
- response.headers.forEach((v, k) => _headers[k] = v);
23293
- }
23294
- ;
23295
- if (status === 200) {
23296
- return response.text().then((_responseText) => {
23297
- let result200 = null;
23298
- result200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver);
23299
- return result200;
23300
- });
23301
- }
23302
- else if (status !== 200 && status !== 204) {
23303
- return response.text().then((_responseText) => {
23304
- return throwException("An unexpected server error occurred.", status, _responseText, _headers);
23305
- });
23306
- }
23307
- return Promise.resolve(null);
23308
- }
23309
23231
  }
23310
23232
  export class InspectMatchPurchaseOrderClient extends AuthorizedApiBase {
23311
23233
  constructor(configuration, baseUrl, http) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ignos/api-client",
3
- "version": "20260824.239.1-alpha",
3
+ "version": "20260825.240.1-alpha",
4
4
  "description": "IGNOS API Client",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",
@@ -24676,10 +24676,6 @@ export interface IInspectMatchMaterialChecksClient {
24676
24676
  processMaterialCertificate(certificatesRequest: ProcessMaterialCertificate): Promise<void>;
24677
24677
 
24678
24678
  generateReport(request: ImaMaterialChecksReportRequestDto): Promise<ImaMaterialCheckReportDto>;
24679
-
24680
- getReportHistory(id: string): Promise<ImaMaterialCheckReportDto[]>;
24681
-
24682
- downloadReport(id: string): Promise<FileDto>;
24683
24679
  }
24684
24680
 
24685
24681
  export class InspectMatchMaterialChecksClient extends AuthorizedApiBase implements IInspectMatchMaterialChecksClient {
@@ -24843,82 +24839,6 @@ export class InspectMatchMaterialChecksClient extends AuthorizedApiBase implemen
24843
24839
  }
24844
24840
  return Promise.resolve<ImaMaterialCheckReportDto>(null as any);
24845
24841
  }
24846
-
24847
- getReportHistory(id: string): Promise<ImaMaterialCheckReportDto[]> {
24848
- let url_ = this.baseUrl + "/inspect/match/material-checks/{id}/report-history";
24849
- if (id === undefined || id === null)
24850
- throw new globalThis.Error("The parameter 'id' must be defined.");
24851
- url_ = url_.replace("{id}", encodeURIComponent("" + id));
24852
- url_ = url_.replace(/[?&]$/, "");
24853
-
24854
- let options_: RequestInit = {
24855
- method: "GET",
24856
- headers: {
24857
- "Accept": "application/json"
24858
- }
24859
- };
24860
-
24861
- return this.transformOptions(options_).then(transformedOptions_ => {
24862
- return this.http.fetch(url_, transformedOptions_);
24863
- }).then((_response: Response) => {
24864
- return this.processGetReportHistory(_response);
24865
- });
24866
- }
24867
-
24868
- protected processGetReportHistory(response: Response): Promise<ImaMaterialCheckReportDto[]> {
24869
- const status = response.status;
24870
- let _headers: any = {}; if (response.headers && response.headers.forEach) { response.headers.forEach((v: any, k: any) => _headers[k] = v); };
24871
- if (status === 200) {
24872
- return response.text().then((_responseText) => {
24873
- let result200: any = null;
24874
- result200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver) as ImaMaterialCheckReportDto[];
24875
- return result200;
24876
- });
24877
- } else if (status !== 200 && status !== 204) {
24878
- return response.text().then((_responseText) => {
24879
- return throwException("An unexpected server error occurred.", status, _responseText, _headers);
24880
- });
24881
- }
24882
- return Promise.resolve<ImaMaterialCheckReportDto[]>(null as any);
24883
- }
24884
-
24885
- downloadReport(id: string): Promise<FileDto> {
24886
- let url_ = this.baseUrl + "/inspect/match/material-checks/{id}/download-report";
24887
- if (id === undefined || id === null)
24888
- throw new globalThis.Error("The parameter 'id' must be defined.");
24889
- url_ = url_.replace("{id}", encodeURIComponent("" + id));
24890
- url_ = url_.replace(/[?&]$/, "");
24891
-
24892
- let options_: RequestInit = {
24893
- method: "POST",
24894
- headers: {
24895
- "Accept": "application/json"
24896
- }
24897
- };
24898
-
24899
- return this.transformOptions(options_).then(transformedOptions_ => {
24900
- return this.http.fetch(url_, transformedOptions_);
24901
- }).then((_response: Response) => {
24902
- return this.processDownloadReport(_response);
24903
- });
24904
- }
24905
-
24906
- protected processDownloadReport(response: Response): Promise<FileDto> {
24907
- const status = response.status;
24908
- let _headers: any = {}; if (response.headers && response.headers.forEach) { response.headers.forEach((v: any, k: any) => _headers[k] = v); };
24909
- if (status === 200) {
24910
- return response.text().then((_responseText) => {
24911
- let result200: any = null;
24912
- result200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver) as FileDto;
24913
- return result200;
24914
- });
24915
- } else if (status !== 200 && status !== 204) {
24916
- return response.text().then((_responseText) => {
24917
- return throwException("An unexpected server error occurred.", status, _responseText, _headers);
24918
- });
24919
- }
24920
- return Promise.resolve<FileDto>(null as any);
24921
- }
24922
24842
  }
24923
24843
 
24924
24844
  export interface IInspectMatchPurchaseOrderClient {
@@ -36868,6 +36788,7 @@ export interface ImaMaterialCheckDto {
36868
36788
  materialCheckId: string;
36869
36789
  fileName: string;
36870
36790
  originalMaterialCertificate: FileDto;
36791
+ generatedMaterialCertificate?: FileDto | null;
36871
36792
  customerOrder?: string | null;
36872
36793
  project?: string | null;
36873
36794
  workOrder?: string | null;
@@ -36899,6 +36820,10 @@ export interface ImaMaterialCheckDto {
36899
36820
  updatedById: string;
36900
36821
  updatedByName?: string | null;
36901
36822
  isDeleted: boolean;
36823
+ reportCreatedBy?: string | null;
36824
+ reportCreatedById?: string | null;
36825
+ reportCreatedByName?: string | null;
36826
+ reportCreated?: Date | null;
36902
36827
  certificateTypeResults: ImaCertificateTypeResultsDto;
36903
36828
  specificationResults: ImaSpecificationResultsDto;
36904
36829
  }
@@ -37033,12 +36958,16 @@ export interface ImaChemicalAnalysisElementsResultDto {
37033
36958
  export interface ImaSpecificationResultLineDto {
37034
36959
  specificationMin?: number | null;
37035
36960
  specificationMax?: number | null;
36961
+ specificationUnit?: ImaUnitDto | null;
37036
36962
  readValue?: string | null;
37037
36963
  unit?: string | null;
36964
+ convertedValue?: number | null;
37038
36965
  status: ImaSpecificationResultLineStatusDto;
37039
36966
  override?: ImaResultLineOverrideDto | null;
37040
36967
  }
37041
36968
 
36969
+ 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" | "BrinellHardness" | "VickersHardness" | "RockwellCHardness" | "RockwellBHardness" | "FerriteNumber" | "FerriteVolumePercentage" | "ElongationPercentage" | "MillilitersPerHundredGrams";
36970
+
37042
36971
  export type ImaSpecificationResultLineStatusDto = "NotFound" | "NotOk" | "Ok" | "NotSet";
37043
36972
 
37044
36973
  export interface ImaChemicalAnalysisCompositeResultDto {
@@ -37442,6 +37371,7 @@ export interface ImaMaterialCheckLiteDto {
37442
37371
  materialCheckId: string;
37443
37372
  fileName: string;
37444
37373
  originalMaterialCertificate: FileDto;
37374
+ generatedMaterialCertificate?: FileDto | null;
37445
37375
  customerOrder?: string | null;
37446
37376
  project?: string | null;
37447
37377
  workOrder?: string | null;
@@ -37465,7 +37395,6 @@ export interface ImaMaterialCheckLiteDto {
37465
37395
  purchaseOrderDrawingRevision?: string | null;
37466
37396
  heatNumbers?: string[] | null;
37467
37397
  status: ImaMaterialCheckStatusDto;
37468
- hasGeneratedReports?: boolean;
37469
37398
  created: Date;
37470
37399
  createdBy: string;
37471
37400
  createdById: string;
@@ -37474,6 +37403,10 @@ export interface ImaMaterialCheckLiteDto {
37474
37403
  updatedById: string;
37475
37404
  updatedByName?: string | null;
37476
37405
  isDeleted?: boolean;
37406
+ reportCreatedBy?: string | null;
37407
+ reportCreatedById?: string | null;
37408
+ reportCreatedByName?: string | null;
37409
+ reportCreated?: Date | null;
37477
37410
  }
37478
37411
 
37479
37412
  export interface ImaMaterialChecksPageRequestDto {
@@ -37504,7 +37437,7 @@ export interface ImaMaterialChecksPageOrderRequestDto {
37504
37437
  direction?: ImaOrderDirectionDto;
37505
37438
  }
37506
37439
 
37507
- export type ImaMaterialChecksOrderByColumnDto = "FileName" | "PurchaseOrder" | "Line" | "VendorBatch" | "Part" | "Drawing" | "Heat" | "CertificateType" | "Specification" | "Project" | "CustomerOrder" | "WorkOrder" | "Date" | "Status";
37440
+ export type ImaMaterialChecksOrderByColumnDto = "FileName" | "PurchaseOrder" | "Line" | "VendorBatch" | "Part" | "Drawing" | "Heat" | "CertificateType" | "Specification" | "GeneratedReport" | "Project" | "CustomerOrder" | "WorkOrder" | "Date" | "Status";
37508
37441
 
37509
37442
  export type ImaOrderDirectionDto = "Asc" | "Desc";
37510
37443
 
@@ -37524,9 +37457,6 @@ export interface UploadFileCdfDto {
37524
37457
 
37525
37458
  export interface ImaMaterialCheckReportDto {
37526
37459
  file: FileDto;
37527
- heatNumbers: string[];
37528
- includesAllHeats: boolean;
37529
- status: ImaMaterialCheckStatusDto;
37530
37460
  audit: ImaMaterialCheckReportAuditInfo;
37531
37461
  }
37532
37462
 
@@ -37538,16 +37468,8 @@ export interface ImaMaterialCheckReportAuditInfo {
37538
37468
  }
37539
37469
 
37540
37470
  export interface ImaMaterialChecksReportRequestDto {
37541
- materialCheckId?: string;
37542
- selectedHeatNumbers?: string[] | null;
37543
- }
37544
-
37545
- export interface PurchaseOrderMaterialSearchResultsDto {
37546
- purchaseOrders: string[];
37547
- }
37548
-
37549
- export interface PurchaseOrderMaterialLinesDto {
37550
- lines: number[];
37471
+ materialCheck?: ImaMaterialCheckDto;
37472
+ purchaseOrder?: PurchaseOrderMaterialLineDetailsDto | null;
37551
37473
  }
37552
37474
 
37553
37475
  export interface PurchaseOrderMaterialLineDetailsDto {
@@ -37585,6 +37507,14 @@ export interface User {
37585
37507
  email?: string | null;
37586
37508
  }
37587
37509
 
37510
+ export interface PurchaseOrderMaterialSearchResultsDto {
37511
+ purchaseOrders: string[];
37512
+ }
37513
+
37514
+ export interface PurchaseOrderMaterialLinesDto {
37515
+ lines: number[];
37516
+ }
37517
+
37588
37518
  export interface ImaMatchSettingsDto {
37589
37519
  columns: ImaMatchSettingsColumnsDto;
37590
37520
  }
@@ -37700,8 +37630,6 @@ export interface ImaSpecificationLineDto {
37700
37630
  unit?: ImaUnitDto | null;
37701
37631
  }
37702
37632
 
37703
- 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" | "BrinellHardness" | "VickersHardness" | "RockwellCHardness" | "RockwellBHardness" | "FerriteNumber" | "FerriteVolumePercentage" | "ElongationPercentage" | "MillilitersPerHundredGrams";
37704
-
37705
37633
  export interface ImaChemistryCompositeSpecificationDto {
37706
37634
  pren?: ImaSpecificationLineDto | null;
37707
37635
  pren22?: ImaSpecificationLineDto | null;