@ignos/api-client 20260824.238.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.
- package/lib/ignosportal-api.d.ts +22 -19
- package/lib/ignosportal-api.js +0 -78
- package/package.json +1 -1
- package/src/ignosportal-api.ts +25 -96
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -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;
|
|
@@ -8843,6 +8846,10 @@ export interface ImaMaterialCheckLiteDto {
|
|
|
8843
8846
|
updatedById: string;
|
|
8844
8847
|
updatedByName?: string | null;
|
|
8845
8848
|
isDeleted?: boolean;
|
|
8849
|
+
reportCreatedBy?: string | null;
|
|
8850
|
+
reportCreatedById?: string | null;
|
|
8851
|
+
reportCreatedByName?: string | null;
|
|
8852
|
+
reportCreated?: Date | null;
|
|
8846
8853
|
}
|
|
8847
8854
|
export interface ImaMaterialChecksPageRequestDto {
|
|
8848
8855
|
pageSize?: number | null;
|
|
@@ -8870,7 +8877,7 @@ export interface ImaMaterialChecksPageOrderRequestDto {
|
|
|
8870
8877
|
column?: ImaMaterialChecksOrderByColumnDto;
|
|
8871
8878
|
direction?: ImaOrderDirectionDto;
|
|
8872
8879
|
}
|
|
8873
|
-
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";
|
|
8874
8881
|
export type ImaOrderDirectionDto = "Asc" | "Desc";
|
|
8875
8882
|
export interface ProcessMaterialCertificate {
|
|
8876
8883
|
files: UploadFileCdfDto[];
|
|
@@ -8886,9 +8893,6 @@ export interface UploadFileCdfDto {
|
|
|
8886
8893
|
}
|
|
8887
8894
|
export interface ImaMaterialCheckReportDto {
|
|
8888
8895
|
file: FileDto;
|
|
8889
|
-
heatNumbers: string[];
|
|
8890
|
-
includesAllHeats: boolean;
|
|
8891
|
-
status: ImaMaterialCheckStatusDto;
|
|
8892
8896
|
audit: ImaMaterialCheckReportAuditInfo;
|
|
8893
8897
|
}
|
|
8894
8898
|
export interface ImaMaterialCheckReportAuditInfo {
|
|
@@ -8898,14 +8902,8 @@ export interface ImaMaterialCheckReportAuditInfo {
|
|
|
8898
8902
|
created: Date;
|
|
8899
8903
|
}
|
|
8900
8904
|
export interface ImaMaterialChecksReportRequestDto {
|
|
8901
|
-
|
|
8902
|
-
|
|
8903
|
-
}
|
|
8904
|
-
export interface PurchaseOrderMaterialSearchResultsDto {
|
|
8905
|
-
purchaseOrders: string[];
|
|
8906
|
-
}
|
|
8907
|
-
export interface PurchaseOrderMaterialLinesDto {
|
|
8908
|
-
lines: number[];
|
|
8905
|
+
materialCheck?: ImaMaterialCheckDto;
|
|
8906
|
+
purchaseOrder?: PurchaseOrderMaterialLineDetailsDto | null;
|
|
8909
8907
|
}
|
|
8910
8908
|
export interface PurchaseOrderMaterialLineDetailsDto {
|
|
8911
8909
|
companyId: string;
|
|
@@ -8939,6 +8937,12 @@ export interface User {
|
|
|
8939
8937
|
upn?: string | null;
|
|
8940
8938
|
email?: string | null;
|
|
8941
8939
|
}
|
|
8940
|
+
export interface PurchaseOrderMaterialSearchResultsDto {
|
|
8941
|
+
purchaseOrders: string[];
|
|
8942
|
+
}
|
|
8943
|
+
export interface PurchaseOrderMaterialLinesDto {
|
|
8944
|
+
lines: number[];
|
|
8945
|
+
}
|
|
8942
8946
|
export interface ImaMatchSettingsDto {
|
|
8943
8947
|
columns: ImaMatchSettingsColumnsDto;
|
|
8944
8948
|
}
|
|
@@ -9046,7 +9050,6 @@ export interface ImaSpecificationLineDto {
|
|
|
9046
9050
|
max?: number | null;
|
|
9047
9051
|
unit?: ImaUnitDto | null;
|
|
9048
9052
|
}
|
|
9049
|
-
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";
|
|
9050
9053
|
export interface ImaChemistryCompositeSpecificationDto {
|
|
9051
9054
|
pren?: ImaSpecificationLineDto | null;
|
|
9052
9055
|
pren22?: ImaSpecificationLineDto | null;
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -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
package/src/ignosportal-api.ts
CHANGED
|
@@ -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;
|
|
@@ -37473,6 +37403,10 @@ export interface ImaMaterialCheckLiteDto {
|
|
|
37473
37403
|
updatedById: string;
|
|
37474
37404
|
updatedByName?: string | null;
|
|
37475
37405
|
isDeleted?: boolean;
|
|
37406
|
+
reportCreatedBy?: string | null;
|
|
37407
|
+
reportCreatedById?: string | null;
|
|
37408
|
+
reportCreatedByName?: string | null;
|
|
37409
|
+
reportCreated?: Date | null;
|
|
37476
37410
|
}
|
|
37477
37411
|
|
|
37478
37412
|
export interface ImaMaterialChecksPageRequestDto {
|
|
@@ -37503,7 +37437,7 @@ export interface ImaMaterialChecksPageOrderRequestDto {
|
|
|
37503
37437
|
direction?: ImaOrderDirectionDto;
|
|
37504
37438
|
}
|
|
37505
37439
|
|
|
37506
|
-
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";
|
|
37507
37441
|
|
|
37508
37442
|
export type ImaOrderDirectionDto = "Asc" | "Desc";
|
|
37509
37443
|
|
|
@@ -37523,9 +37457,6 @@ export interface UploadFileCdfDto {
|
|
|
37523
37457
|
|
|
37524
37458
|
export interface ImaMaterialCheckReportDto {
|
|
37525
37459
|
file: FileDto;
|
|
37526
|
-
heatNumbers: string[];
|
|
37527
|
-
includesAllHeats: boolean;
|
|
37528
|
-
status: ImaMaterialCheckStatusDto;
|
|
37529
37460
|
audit: ImaMaterialCheckReportAuditInfo;
|
|
37530
37461
|
}
|
|
37531
37462
|
|
|
@@ -37537,16 +37468,8 @@ export interface ImaMaterialCheckReportAuditInfo {
|
|
|
37537
37468
|
}
|
|
37538
37469
|
|
|
37539
37470
|
export interface ImaMaterialChecksReportRequestDto {
|
|
37540
|
-
|
|
37541
|
-
|
|
37542
|
-
}
|
|
37543
|
-
|
|
37544
|
-
export interface PurchaseOrderMaterialSearchResultsDto {
|
|
37545
|
-
purchaseOrders: string[];
|
|
37546
|
-
}
|
|
37547
|
-
|
|
37548
|
-
export interface PurchaseOrderMaterialLinesDto {
|
|
37549
|
-
lines: number[];
|
|
37471
|
+
materialCheck?: ImaMaterialCheckDto;
|
|
37472
|
+
purchaseOrder?: PurchaseOrderMaterialLineDetailsDto | null;
|
|
37550
37473
|
}
|
|
37551
37474
|
|
|
37552
37475
|
export interface PurchaseOrderMaterialLineDetailsDto {
|
|
@@ -37584,6 +37507,14 @@ export interface User {
|
|
|
37584
37507
|
email?: string | null;
|
|
37585
37508
|
}
|
|
37586
37509
|
|
|
37510
|
+
export interface PurchaseOrderMaterialSearchResultsDto {
|
|
37511
|
+
purchaseOrders: string[];
|
|
37512
|
+
}
|
|
37513
|
+
|
|
37514
|
+
export interface PurchaseOrderMaterialLinesDto {
|
|
37515
|
+
lines: number[];
|
|
37516
|
+
}
|
|
37517
|
+
|
|
37587
37518
|
export interface ImaMatchSettingsDto {
|
|
37588
37519
|
columns: ImaMatchSettingsColumnsDto;
|
|
37589
37520
|
}
|
|
@@ -37699,8 +37630,6 @@ export interface ImaSpecificationLineDto {
|
|
|
37699
37630
|
unit?: ImaUnitDto | null;
|
|
37700
37631
|
}
|
|
37701
37632
|
|
|
37702
|
-
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";
|
|
37703
|
-
|
|
37704
37633
|
export interface ImaChemistryCompositeSpecificationDto {
|
|
37705
37634
|
pren?: ImaSpecificationLineDto | null;
|
|
37706
37635
|
pren22?: ImaSpecificationLineDto | null;
|