@ignos/api-client 20260410.103.1 → 20260415.105.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 +327 -331
- package/lib/ignosportal-api.js +136 -133
- package/package.json +1 -1
- package/src/ignosportal-api.ts +610 -611
package/src/ignosportal-api.ts
CHANGED
|
@@ -22566,217 +22566,6 @@ export class WeldingClient extends AuthorizedApiBase implements IWeldingClient {
|
|
|
22566
22566
|
}
|
|
22567
22567
|
}
|
|
22568
22568
|
|
|
22569
|
-
export interface IInspectMatchCertificateChecksClient {
|
|
22570
|
-
|
|
22571
|
-
listMaterialCertificateChecks(request: ImaMaterialChecksPageRequestDto): Promise<ImaMaterialChecksPageDto>;
|
|
22572
|
-
|
|
22573
|
-
getMaterialCertificateCheck(id: string): Promise<ImaMaterialCheckDto>;
|
|
22574
|
-
|
|
22575
|
-
deleteMaterialCheck(id: string): Promise<void>;
|
|
22576
|
-
|
|
22577
|
-
processMaterialCertificate(certificatesRequest: ProcessImaCheckRequestDto): Promise<void>;
|
|
22578
|
-
|
|
22579
|
-
updateMaterialCertificate(certificatesRequest: ImaUpdateResultRequestDto): Promise<ImaMaterialCheckDto>;
|
|
22580
|
-
}
|
|
22581
|
-
|
|
22582
|
-
export class InspectMatchCertificateChecksClient extends AuthorizedApiBase implements IInspectMatchCertificateChecksClient {
|
|
22583
|
-
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
22584
|
-
private baseUrl: string;
|
|
22585
|
-
|
|
22586
|
-
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
22587
|
-
super(configuration);
|
|
22588
|
-
this.http = http ? http : window as any;
|
|
22589
|
-
this.baseUrl = baseUrl ?? "";
|
|
22590
|
-
}
|
|
22591
|
-
|
|
22592
|
-
listMaterialCertificateChecks(request: ImaMaterialChecksPageRequestDto): Promise<ImaMaterialChecksPageDto> {
|
|
22593
|
-
let url_ = this.baseUrl + "/inspect/match/material-checks/list";
|
|
22594
|
-
url_ = url_.replace(/[?&]$/, "");
|
|
22595
|
-
|
|
22596
|
-
const content_ = JSON.stringify(request);
|
|
22597
|
-
|
|
22598
|
-
let options_: RequestInit = {
|
|
22599
|
-
body: content_,
|
|
22600
|
-
method: "POST",
|
|
22601
|
-
headers: {
|
|
22602
|
-
"Content-Type": "application/json",
|
|
22603
|
-
"Accept": "application/json"
|
|
22604
|
-
}
|
|
22605
|
-
};
|
|
22606
|
-
|
|
22607
|
-
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
22608
|
-
return this.http.fetch(url_, transformedOptions_);
|
|
22609
|
-
}).then((_response: Response) => {
|
|
22610
|
-
return this.processListMaterialCertificateChecks(_response);
|
|
22611
|
-
});
|
|
22612
|
-
}
|
|
22613
|
-
|
|
22614
|
-
protected processListMaterialCertificateChecks(response: Response): Promise<ImaMaterialChecksPageDto> {
|
|
22615
|
-
const status = response.status;
|
|
22616
|
-
let _headers: any = {}; if (response.headers && response.headers.forEach) { response.headers.forEach((v: any, k: any) => _headers[k] = v); };
|
|
22617
|
-
if (status === 200) {
|
|
22618
|
-
return response.text().then((_responseText) => {
|
|
22619
|
-
let result200: any = null;
|
|
22620
|
-
result200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver) as ImaMaterialChecksPageDto;
|
|
22621
|
-
return result200;
|
|
22622
|
-
});
|
|
22623
|
-
} else if (status !== 200 && status !== 204) {
|
|
22624
|
-
return response.text().then((_responseText) => {
|
|
22625
|
-
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
22626
|
-
});
|
|
22627
|
-
}
|
|
22628
|
-
return Promise.resolve<ImaMaterialChecksPageDto>(null as any);
|
|
22629
|
-
}
|
|
22630
|
-
|
|
22631
|
-
getMaterialCertificateCheck(id: string): Promise<ImaMaterialCheckDto> {
|
|
22632
|
-
let url_ = this.baseUrl + "/inspect/match/material-checks/{id}";
|
|
22633
|
-
if (id === undefined || id === null)
|
|
22634
|
-
throw new globalThis.Error("The parameter 'id' must be defined.");
|
|
22635
|
-
url_ = url_.replace("{id}", encodeURIComponent("" + id));
|
|
22636
|
-
url_ = url_.replace(/[?&]$/, "");
|
|
22637
|
-
|
|
22638
|
-
let options_: RequestInit = {
|
|
22639
|
-
method: "GET",
|
|
22640
|
-
headers: {
|
|
22641
|
-
"Accept": "application/json"
|
|
22642
|
-
}
|
|
22643
|
-
};
|
|
22644
|
-
|
|
22645
|
-
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
22646
|
-
return this.http.fetch(url_, transformedOptions_);
|
|
22647
|
-
}).then((_response: Response) => {
|
|
22648
|
-
return this.processGetMaterialCertificateCheck(_response);
|
|
22649
|
-
});
|
|
22650
|
-
}
|
|
22651
|
-
|
|
22652
|
-
protected processGetMaterialCertificateCheck(response: Response): Promise<ImaMaterialCheckDto> {
|
|
22653
|
-
const status = response.status;
|
|
22654
|
-
let _headers: any = {}; if (response.headers && response.headers.forEach) { response.headers.forEach((v: any, k: any) => _headers[k] = v); };
|
|
22655
|
-
if (status === 200) {
|
|
22656
|
-
return response.text().then((_responseText) => {
|
|
22657
|
-
let result200: any = null;
|
|
22658
|
-
result200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver) as ImaMaterialCheckDto;
|
|
22659
|
-
return result200;
|
|
22660
|
-
});
|
|
22661
|
-
} else if (status !== 200 && status !== 204) {
|
|
22662
|
-
return response.text().then((_responseText) => {
|
|
22663
|
-
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
22664
|
-
});
|
|
22665
|
-
}
|
|
22666
|
-
return Promise.resolve<ImaMaterialCheckDto>(null as any);
|
|
22667
|
-
}
|
|
22668
|
-
|
|
22669
|
-
deleteMaterialCheck(id: string): Promise<void> {
|
|
22670
|
-
let url_ = this.baseUrl + "/inspect/match/material-checks/{id}";
|
|
22671
|
-
if (id === undefined || id === null)
|
|
22672
|
-
throw new globalThis.Error("The parameter 'id' must be defined.");
|
|
22673
|
-
url_ = url_.replace("{id}", encodeURIComponent("" + id));
|
|
22674
|
-
url_ = url_.replace(/[?&]$/, "");
|
|
22675
|
-
|
|
22676
|
-
let options_: RequestInit = {
|
|
22677
|
-
method: "DELETE",
|
|
22678
|
-
headers: {
|
|
22679
|
-
}
|
|
22680
|
-
};
|
|
22681
|
-
|
|
22682
|
-
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
22683
|
-
return this.http.fetch(url_, transformedOptions_);
|
|
22684
|
-
}).then((_response: Response) => {
|
|
22685
|
-
return this.processDeleteMaterialCheck(_response);
|
|
22686
|
-
});
|
|
22687
|
-
}
|
|
22688
|
-
|
|
22689
|
-
protected processDeleteMaterialCheck(response: Response): Promise<void> {
|
|
22690
|
-
const status = response.status;
|
|
22691
|
-
let _headers: any = {}; if (response.headers && response.headers.forEach) { response.headers.forEach((v: any, k: any) => _headers[k] = v); };
|
|
22692
|
-
if (status === 204) {
|
|
22693
|
-
return response.text().then((_responseText) => {
|
|
22694
|
-
return;
|
|
22695
|
-
});
|
|
22696
|
-
} else if (status !== 200 && status !== 204) {
|
|
22697
|
-
return response.text().then((_responseText) => {
|
|
22698
|
-
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
22699
|
-
});
|
|
22700
|
-
}
|
|
22701
|
-
return Promise.resolve<void>(null as any);
|
|
22702
|
-
}
|
|
22703
|
-
|
|
22704
|
-
processMaterialCertificate(certificatesRequest: ProcessImaCheckRequestDto): Promise<void> {
|
|
22705
|
-
let url_ = this.baseUrl + "/inspect/match/material-checks";
|
|
22706
|
-
url_ = url_.replace(/[?&]$/, "");
|
|
22707
|
-
|
|
22708
|
-
const content_ = JSON.stringify(certificatesRequest);
|
|
22709
|
-
|
|
22710
|
-
let options_: RequestInit = {
|
|
22711
|
-
body: content_,
|
|
22712
|
-
method: "POST",
|
|
22713
|
-
headers: {
|
|
22714
|
-
"Content-Type": "application/json",
|
|
22715
|
-
}
|
|
22716
|
-
};
|
|
22717
|
-
|
|
22718
|
-
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
22719
|
-
return this.http.fetch(url_, transformedOptions_);
|
|
22720
|
-
}).then((_response: Response) => {
|
|
22721
|
-
return this.processProcessMaterialCertificate(_response);
|
|
22722
|
-
});
|
|
22723
|
-
}
|
|
22724
|
-
|
|
22725
|
-
protected processProcessMaterialCertificate(response: Response): Promise<void> {
|
|
22726
|
-
const status = response.status;
|
|
22727
|
-
let _headers: any = {}; if (response.headers && response.headers.forEach) { response.headers.forEach((v: any, k: any) => _headers[k] = v); };
|
|
22728
|
-
if (status === 201) {
|
|
22729
|
-
return response.text().then((_responseText) => {
|
|
22730
|
-
return;
|
|
22731
|
-
});
|
|
22732
|
-
} else if (status !== 200 && status !== 204) {
|
|
22733
|
-
return response.text().then((_responseText) => {
|
|
22734
|
-
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
22735
|
-
});
|
|
22736
|
-
}
|
|
22737
|
-
return Promise.resolve<void>(null as any);
|
|
22738
|
-
}
|
|
22739
|
-
|
|
22740
|
-
updateMaterialCertificate(certificatesRequest: ImaUpdateResultRequestDto): Promise<ImaMaterialCheckDto> {
|
|
22741
|
-
let url_ = this.baseUrl + "/inspect/match/material-checks";
|
|
22742
|
-
url_ = url_.replace(/[?&]$/, "");
|
|
22743
|
-
|
|
22744
|
-
const content_ = JSON.stringify(certificatesRequest);
|
|
22745
|
-
|
|
22746
|
-
let options_: RequestInit = {
|
|
22747
|
-
body: content_,
|
|
22748
|
-
method: "PUT",
|
|
22749
|
-
headers: {
|
|
22750
|
-
"Content-Type": "application/json",
|
|
22751
|
-
"Accept": "application/json"
|
|
22752
|
-
}
|
|
22753
|
-
};
|
|
22754
|
-
|
|
22755
|
-
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
22756
|
-
return this.http.fetch(url_, transformedOptions_);
|
|
22757
|
-
}).then((_response: Response) => {
|
|
22758
|
-
return this.processUpdateMaterialCertificate(_response);
|
|
22759
|
-
});
|
|
22760
|
-
}
|
|
22761
|
-
|
|
22762
|
-
protected processUpdateMaterialCertificate(response: Response): Promise<ImaMaterialCheckDto> {
|
|
22763
|
-
const status = response.status;
|
|
22764
|
-
let _headers: any = {}; if (response.headers && response.headers.forEach) { response.headers.forEach((v: any, k: any) => _headers[k] = v); };
|
|
22765
|
-
if (status === 200) {
|
|
22766
|
-
return response.text().then((_responseText) => {
|
|
22767
|
-
let result200: any = null;
|
|
22768
|
-
result200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver) as ImaMaterialCheckDto;
|
|
22769
|
-
return result200;
|
|
22770
|
-
});
|
|
22771
|
-
} else if (status !== 200 && status !== 204) {
|
|
22772
|
-
return response.text().then((_responseText) => {
|
|
22773
|
-
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
22774
|
-
});
|
|
22775
|
-
}
|
|
22776
|
-
return Promise.resolve<ImaMaterialCheckDto>(null as any);
|
|
22777
|
-
}
|
|
22778
|
-
}
|
|
22779
|
-
|
|
22780
22569
|
export interface IInspectMatchCertificateTypesAdminClient {
|
|
22781
22570
|
|
|
22782
22571
|
createMaterialCertificateTypes(payload: ImaCreateOrCopyCertificateTypeRequestDto): Promise<ImaCertificateTypeDto>;
|
|
@@ -23140,16 +22929,20 @@ export class InspectMatchCertificateTypesClient extends AuthorizedApiBase implem
|
|
|
23140
22929
|
}
|
|
23141
22930
|
}
|
|
23142
22931
|
|
|
23143
|
-
export interface
|
|
22932
|
+
export interface IInspectMatchMaterialChecksClient {
|
|
23144
22933
|
|
|
23145
|
-
|
|
22934
|
+
listMaterialChecks(request: ImaMaterialChecksPageRequestDto): Promise<ImaMaterialChecksPageDto>;
|
|
23146
22935
|
|
|
23147
|
-
|
|
22936
|
+
getMaterialCheck(id: string): Promise<ImaMaterialCheckDto>;
|
|
23148
22937
|
|
|
23149
|
-
|
|
22938
|
+
updateMaterialCheck(id: string, request: ImaUpdateMaterialCheckRequestDto): Promise<ImaMaterialCheckDto>;
|
|
22939
|
+
|
|
22940
|
+
deleteMaterialCheck(id: string): Promise<void>;
|
|
22941
|
+
|
|
22942
|
+
processMaterialCertificate(certificatesRequest: ProcessMaterialCertificate): Promise<void>;
|
|
23150
22943
|
}
|
|
23151
22944
|
|
|
23152
|
-
export class
|
|
22945
|
+
export class InspectMatchMaterialChecksClient extends AuthorizedApiBase implements IInspectMatchMaterialChecksClient {
|
|
23153
22946
|
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
23154
22947
|
private baseUrl: string;
|
|
23155
22948
|
|
|
@@ -23159,17 +22952,17 @@ export class InspectMatchPurchaseOrderClient extends AuthorizedApiBase implement
|
|
|
23159
22952
|
this.baseUrl = baseUrl ?? "";
|
|
23160
22953
|
}
|
|
23161
22954
|
|
|
23162
|
-
|
|
23163
|
-
let url_ = this.baseUrl + "/inspect/match/
|
|
23164
|
-
if (input === null)
|
|
23165
|
-
throw new globalThis.Error("The parameter 'input' cannot be null.");
|
|
23166
|
-
else if (input !== undefined)
|
|
23167
|
-
url_ += "input=" + encodeURIComponent("" + input) + "&";
|
|
22955
|
+
listMaterialChecks(request: ImaMaterialChecksPageRequestDto): Promise<ImaMaterialChecksPageDto> {
|
|
22956
|
+
let url_ = this.baseUrl + "/inspect/match/material-checks/list";
|
|
23168
22957
|
url_ = url_.replace(/[?&]$/, "");
|
|
23169
22958
|
|
|
22959
|
+
const content_ = JSON.stringify(request);
|
|
22960
|
+
|
|
23170
22961
|
let options_: RequestInit = {
|
|
23171
|
-
|
|
22962
|
+
body: content_,
|
|
22963
|
+
method: "POST",
|
|
23172
22964
|
headers: {
|
|
22965
|
+
"Content-Type": "application/json",
|
|
23173
22966
|
"Accept": "application/json"
|
|
23174
22967
|
}
|
|
23175
22968
|
};
|
|
@@ -23177,17 +22970,17 @@ export class InspectMatchPurchaseOrderClient extends AuthorizedApiBase implement
|
|
|
23177
22970
|
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
23178
22971
|
return this.http.fetch(url_, transformedOptions_);
|
|
23179
22972
|
}).then((_response: Response) => {
|
|
23180
|
-
return this.
|
|
22973
|
+
return this.processListMaterialChecks(_response);
|
|
23181
22974
|
});
|
|
23182
22975
|
}
|
|
23183
22976
|
|
|
23184
|
-
protected
|
|
22977
|
+
protected processListMaterialChecks(response: Response): Promise<ImaMaterialChecksPageDto> {
|
|
23185
22978
|
const status = response.status;
|
|
23186
22979
|
let _headers: any = {}; if (response.headers && response.headers.forEach) { response.headers.forEach((v: any, k: any) => _headers[k] = v); };
|
|
23187
22980
|
if (status === 200) {
|
|
23188
22981
|
return response.text().then((_responseText) => {
|
|
23189
22982
|
let result200: any = null;
|
|
23190
|
-
result200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver) as
|
|
22983
|
+
result200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver) as ImaMaterialChecksPageDto;
|
|
23191
22984
|
return result200;
|
|
23192
22985
|
});
|
|
23193
22986
|
} else if (status !== 200 && status !== 204) {
|
|
@@ -23195,14 +22988,14 @@ export class InspectMatchPurchaseOrderClient extends AuthorizedApiBase implement
|
|
|
23195
22988
|
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
23196
22989
|
});
|
|
23197
22990
|
}
|
|
23198
|
-
return Promise.resolve<
|
|
22991
|
+
return Promise.resolve<ImaMaterialChecksPageDto>(null as any);
|
|
23199
22992
|
}
|
|
23200
22993
|
|
|
23201
|
-
|
|
23202
|
-
let url_ = this.baseUrl + "/inspect/match/
|
|
23203
|
-
if (
|
|
23204
|
-
throw new globalThis.Error("The parameter '
|
|
23205
|
-
url_ = url_.replace("{
|
|
22994
|
+
getMaterialCheck(id: string): Promise<ImaMaterialCheckDto> {
|
|
22995
|
+
let url_ = this.baseUrl + "/inspect/match/material-checks/{id}";
|
|
22996
|
+
if (id === undefined || id === null)
|
|
22997
|
+
throw new globalThis.Error("The parameter 'id' must be defined.");
|
|
22998
|
+
url_ = url_.replace("{id}", encodeURIComponent("" + id));
|
|
23206
22999
|
url_ = url_.replace(/[?&]$/, "");
|
|
23207
23000
|
|
|
23208
23001
|
let options_: RequestInit = {
|
|
@@ -23215,17 +23008,17 @@ export class InspectMatchPurchaseOrderClient extends AuthorizedApiBase implement
|
|
|
23215
23008
|
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
23216
23009
|
return this.http.fetch(url_, transformedOptions_);
|
|
23217
23010
|
}).then((_response: Response) => {
|
|
23218
|
-
return this.
|
|
23011
|
+
return this.processGetMaterialCheck(_response);
|
|
23219
23012
|
});
|
|
23220
23013
|
}
|
|
23221
23014
|
|
|
23222
|
-
protected
|
|
23015
|
+
protected processGetMaterialCheck(response: Response): Promise<ImaMaterialCheckDto> {
|
|
23223
23016
|
const status = response.status;
|
|
23224
23017
|
let _headers: any = {}; if (response.headers && response.headers.forEach) { response.headers.forEach((v: any, k: any) => _headers[k] = v); };
|
|
23225
23018
|
if (status === 200) {
|
|
23226
23019
|
return response.text().then((_responseText) => {
|
|
23227
23020
|
let result200: any = null;
|
|
23228
|
-
result200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver) as
|
|
23021
|
+
result200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver) as ImaMaterialCheckDto;
|
|
23229
23022
|
return result200;
|
|
23230
23023
|
});
|
|
23231
23024
|
} else if (status !== 200 && status !== 204) {
|
|
@@ -23233,22 +23026,23 @@ export class InspectMatchPurchaseOrderClient extends AuthorizedApiBase implement
|
|
|
23233
23026
|
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
23234
23027
|
});
|
|
23235
23028
|
}
|
|
23236
|
-
return Promise.resolve<
|
|
23029
|
+
return Promise.resolve<ImaMaterialCheckDto>(null as any);
|
|
23237
23030
|
}
|
|
23238
23031
|
|
|
23239
|
-
|
|
23240
|
-
let url_ = this.baseUrl + "/inspect/match/
|
|
23241
|
-
if (
|
|
23242
|
-
throw new globalThis.Error("The parameter '
|
|
23243
|
-
url_ = url_.replace("{
|
|
23244
|
-
if (lineNumber === undefined || lineNumber === null)
|
|
23245
|
-
throw new globalThis.Error("The parameter 'lineNumber' must be defined.");
|
|
23246
|
-
url_ = url_.replace("{lineNumber}", encodeURIComponent("" + lineNumber));
|
|
23032
|
+
updateMaterialCheck(id: string, request: ImaUpdateMaterialCheckRequestDto): Promise<ImaMaterialCheckDto> {
|
|
23033
|
+
let url_ = this.baseUrl + "/inspect/match/material-checks/{id}";
|
|
23034
|
+
if (id === undefined || id === null)
|
|
23035
|
+
throw new globalThis.Error("The parameter 'id' must be defined.");
|
|
23036
|
+
url_ = url_.replace("{id}", encodeURIComponent("" + id));
|
|
23247
23037
|
url_ = url_.replace(/[?&]$/, "");
|
|
23248
23038
|
|
|
23039
|
+
const content_ = JSON.stringify(request);
|
|
23040
|
+
|
|
23249
23041
|
let options_: RequestInit = {
|
|
23250
|
-
|
|
23042
|
+
body: content_,
|
|
23043
|
+
method: "PUT",
|
|
23251
23044
|
headers: {
|
|
23045
|
+
"Content-Type": "application/json",
|
|
23252
23046
|
"Accept": "application/json"
|
|
23253
23047
|
}
|
|
23254
23048
|
};
|
|
@@ -23256,7 +23050,216 @@ export class InspectMatchPurchaseOrderClient extends AuthorizedApiBase implement
|
|
|
23256
23050
|
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
23257
23051
|
return this.http.fetch(url_, transformedOptions_);
|
|
23258
23052
|
}).then((_response: Response) => {
|
|
23259
|
-
return this.
|
|
23053
|
+
return this.processUpdateMaterialCheck(_response);
|
|
23054
|
+
});
|
|
23055
|
+
}
|
|
23056
|
+
|
|
23057
|
+
protected processUpdateMaterialCheck(response: Response): Promise<ImaMaterialCheckDto> {
|
|
23058
|
+
const status = response.status;
|
|
23059
|
+
let _headers: any = {}; if (response.headers && response.headers.forEach) { response.headers.forEach((v: any, k: any) => _headers[k] = v); };
|
|
23060
|
+
if (status === 200) {
|
|
23061
|
+
return response.text().then((_responseText) => {
|
|
23062
|
+
let result200: any = null;
|
|
23063
|
+
result200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver) as ImaMaterialCheckDto;
|
|
23064
|
+
return result200;
|
|
23065
|
+
});
|
|
23066
|
+
} else if (status !== 200 && status !== 204) {
|
|
23067
|
+
return response.text().then((_responseText) => {
|
|
23068
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
23069
|
+
});
|
|
23070
|
+
}
|
|
23071
|
+
return Promise.resolve<ImaMaterialCheckDto>(null as any);
|
|
23072
|
+
}
|
|
23073
|
+
|
|
23074
|
+
deleteMaterialCheck(id: string): Promise<void> {
|
|
23075
|
+
let url_ = this.baseUrl + "/inspect/match/material-checks/{id}";
|
|
23076
|
+
if (id === undefined || id === null)
|
|
23077
|
+
throw new globalThis.Error("The parameter 'id' must be defined.");
|
|
23078
|
+
url_ = url_.replace("{id}", encodeURIComponent("" + id));
|
|
23079
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
23080
|
+
|
|
23081
|
+
let options_: RequestInit = {
|
|
23082
|
+
method: "DELETE",
|
|
23083
|
+
headers: {
|
|
23084
|
+
}
|
|
23085
|
+
};
|
|
23086
|
+
|
|
23087
|
+
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
23088
|
+
return this.http.fetch(url_, transformedOptions_);
|
|
23089
|
+
}).then((_response: Response) => {
|
|
23090
|
+
return this.processDeleteMaterialCheck(_response);
|
|
23091
|
+
});
|
|
23092
|
+
}
|
|
23093
|
+
|
|
23094
|
+
protected processDeleteMaterialCheck(response: Response): Promise<void> {
|
|
23095
|
+
const status = response.status;
|
|
23096
|
+
let _headers: any = {}; if (response.headers && response.headers.forEach) { response.headers.forEach((v: any, k: any) => _headers[k] = v); };
|
|
23097
|
+
if (status === 204) {
|
|
23098
|
+
return response.text().then((_responseText) => {
|
|
23099
|
+
return;
|
|
23100
|
+
});
|
|
23101
|
+
} else if (status !== 200 && status !== 204) {
|
|
23102
|
+
return response.text().then((_responseText) => {
|
|
23103
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
23104
|
+
});
|
|
23105
|
+
}
|
|
23106
|
+
return Promise.resolve<void>(null as any);
|
|
23107
|
+
}
|
|
23108
|
+
|
|
23109
|
+
processMaterialCertificate(certificatesRequest: ProcessMaterialCertificate): Promise<void> {
|
|
23110
|
+
let url_ = this.baseUrl + "/inspect/match/material-checks";
|
|
23111
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
23112
|
+
|
|
23113
|
+
const content_ = JSON.stringify(certificatesRequest);
|
|
23114
|
+
|
|
23115
|
+
let options_: RequestInit = {
|
|
23116
|
+
body: content_,
|
|
23117
|
+
method: "POST",
|
|
23118
|
+
headers: {
|
|
23119
|
+
"Content-Type": "application/json",
|
|
23120
|
+
}
|
|
23121
|
+
};
|
|
23122
|
+
|
|
23123
|
+
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
23124
|
+
return this.http.fetch(url_, transformedOptions_);
|
|
23125
|
+
}).then((_response: Response) => {
|
|
23126
|
+
return this.processProcessMaterialCertificate(_response);
|
|
23127
|
+
});
|
|
23128
|
+
}
|
|
23129
|
+
|
|
23130
|
+
protected processProcessMaterialCertificate(response: Response): Promise<void> {
|
|
23131
|
+
const status = response.status;
|
|
23132
|
+
let _headers: any = {}; if (response.headers && response.headers.forEach) { response.headers.forEach((v: any, k: any) => _headers[k] = v); };
|
|
23133
|
+
if (status === 201) {
|
|
23134
|
+
return response.text().then((_responseText) => {
|
|
23135
|
+
return;
|
|
23136
|
+
});
|
|
23137
|
+
} else if (status !== 200 && status !== 204) {
|
|
23138
|
+
return response.text().then((_responseText) => {
|
|
23139
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
23140
|
+
});
|
|
23141
|
+
}
|
|
23142
|
+
return Promise.resolve<void>(null as any);
|
|
23143
|
+
}
|
|
23144
|
+
}
|
|
23145
|
+
|
|
23146
|
+
export interface IInspectMatchPurchaseOrderClient {
|
|
23147
|
+
|
|
23148
|
+
searchPurchaseOrders(input: string | undefined): Promise<PurchaseOrderMaterialSearchResultsDto>;
|
|
23149
|
+
|
|
23150
|
+
getPurchaseOrderLines(purchaseOrder: string): Promise<PurchaseOrderMaterialLinesDto>;
|
|
23151
|
+
|
|
23152
|
+
getPurchaseOrderLineDetails(purchaseOrder: string, lineNumber: number): Promise<PurchaseOrderMaterialLineDetailsDto>;
|
|
23153
|
+
}
|
|
23154
|
+
|
|
23155
|
+
export class InspectMatchPurchaseOrderClient extends AuthorizedApiBase implements IInspectMatchPurchaseOrderClient {
|
|
23156
|
+
private http: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> };
|
|
23157
|
+
private baseUrl: string;
|
|
23158
|
+
|
|
23159
|
+
constructor(configuration: IAccessTokenProvider, baseUrl?: string, http?: { fetch(url: RequestInfo, init?: RequestInit): Promise<Response> }) {
|
|
23160
|
+
super(configuration);
|
|
23161
|
+
this.http = http ? http : window as any;
|
|
23162
|
+
this.baseUrl = baseUrl ?? "";
|
|
23163
|
+
}
|
|
23164
|
+
|
|
23165
|
+
searchPurchaseOrders(input: string | undefined): Promise<PurchaseOrderMaterialSearchResultsDto> {
|
|
23166
|
+
let url_ = this.baseUrl + "/inspect/match/purchase-order/search?";
|
|
23167
|
+
if (input === null)
|
|
23168
|
+
throw new globalThis.Error("The parameter 'input' cannot be null.");
|
|
23169
|
+
else if (input !== undefined)
|
|
23170
|
+
url_ += "input=" + encodeURIComponent("" + input) + "&";
|
|
23171
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
23172
|
+
|
|
23173
|
+
let options_: RequestInit = {
|
|
23174
|
+
method: "GET",
|
|
23175
|
+
headers: {
|
|
23176
|
+
"Accept": "application/json"
|
|
23177
|
+
}
|
|
23178
|
+
};
|
|
23179
|
+
|
|
23180
|
+
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
23181
|
+
return this.http.fetch(url_, transformedOptions_);
|
|
23182
|
+
}).then((_response: Response) => {
|
|
23183
|
+
return this.processSearchPurchaseOrders(_response);
|
|
23184
|
+
});
|
|
23185
|
+
}
|
|
23186
|
+
|
|
23187
|
+
protected processSearchPurchaseOrders(response: Response): Promise<PurchaseOrderMaterialSearchResultsDto> {
|
|
23188
|
+
const status = response.status;
|
|
23189
|
+
let _headers: any = {}; if (response.headers && response.headers.forEach) { response.headers.forEach((v: any, k: any) => _headers[k] = v); };
|
|
23190
|
+
if (status === 200) {
|
|
23191
|
+
return response.text().then((_responseText) => {
|
|
23192
|
+
let result200: any = null;
|
|
23193
|
+
result200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver) as PurchaseOrderMaterialSearchResultsDto;
|
|
23194
|
+
return result200;
|
|
23195
|
+
});
|
|
23196
|
+
} else if (status !== 200 && status !== 204) {
|
|
23197
|
+
return response.text().then((_responseText) => {
|
|
23198
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
23199
|
+
});
|
|
23200
|
+
}
|
|
23201
|
+
return Promise.resolve<PurchaseOrderMaterialSearchResultsDto>(null as any);
|
|
23202
|
+
}
|
|
23203
|
+
|
|
23204
|
+
getPurchaseOrderLines(purchaseOrder: string): Promise<PurchaseOrderMaterialLinesDto> {
|
|
23205
|
+
let url_ = this.baseUrl + "/inspect/match/purchase-order/lines/{purchaseOrder}";
|
|
23206
|
+
if (purchaseOrder === undefined || purchaseOrder === null)
|
|
23207
|
+
throw new globalThis.Error("The parameter 'purchaseOrder' must be defined.");
|
|
23208
|
+
url_ = url_.replace("{purchaseOrder}", encodeURIComponent("" + purchaseOrder));
|
|
23209
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
23210
|
+
|
|
23211
|
+
let options_: RequestInit = {
|
|
23212
|
+
method: "GET",
|
|
23213
|
+
headers: {
|
|
23214
|
+
"Accept": "application/json"
|
|
23215
|
+
}
|
|
23216
|
+
};
|
|
23217
|
+
|
|
23218
|
+
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
23219
|
+
return this.http.fetch(url_, transformedOptions_);
|
|
23220
|
+
}).then((_response: Response) => {
|
|
23221
|
+
return this.processGetPurchaseOrderLines(_response);
|
|
23222
|
+
});
|
|
23223
|
+
}
|
|
23224
|
+
|
|
23225
|
+
protected processGetPurchaseOrderLines(response: Response): Promise<PurchaseOrderMaterialLinesDto> {
|
|
23226
|
+
const status = response.status;
|
|
23227
|
+
let _headers: any = {}; if (response.headers && response.headers.forEach) { response.headers.forEach((v: any, k: any) => _headers[k] = v); };
|
|
23228
|
+
if (status === 200) {
|
|
23229
|
+
return response.text().then((_responseText) => {
|
|
23230
|
+
let result200: any = null;
|
|
23231
|
+
result200 = _responseText === "" ? null : JSON.parse(_responseText, this.jsonParseReviver) as PurchaseOrderMaterialLinesDto;
|
|
23232
|
+
return result200;
|
|
23233
|
+
});
|
|
23234
|
+
} else if (status !== 200 && status !== 204) {
|
|
23235
|
+
return response.text().then((_responseText) => {
|
|
23236
|
+
return throwException("An unexpected server error occurred.", status, _responseText, _headers);
|
|
23237
|
+
});
|
|
23238
|
+
}
|
|
23239
|
+
return Promise.resolve<PurchaseOrderMaterialLinesDto>(null as any);
|
|
23240
|
+
}
|
|
23241
|
+
|
|
23242
|
+
getPurchaseOrderLineDetails(purchaseOrder: string, lineNumber: number): Promise<PurchaseOrderMaterialLineDetailsDto> {
|
|
23243
|
+
let url_ = this.baseUrl + "/inspect/match/purchase-order/line-details/{purchaseOrder}/{lineNumber}";
|
|
23244
|
+
if (purchaseOrder === undefined || purchaseOrder === null)
|
|
23245
|
+
throw new globalThis.Error("The parameter 'purchaseOrder' must be defined.");
|
|
23246
|
+
url_ = url_.replace("{purchaseOrder}", encodeURIComponent("" + purchaseOrder));
|
|
23247
|
+
if (lineNumber === undefined || lineNumber === null)
|
|
23248
|
+
throw new globalThis.Error("The parameter 'lineNumber' must be defined.");
|
|
23249
|
+
url_ = url_.replace("{lineNumber}", encodeURIComponent("" + lineNumber));
|
|
23250
|
+
url_ = url_.replace(/[?&]$/, "");
|
|
23251
|
+
|
|
23252
|
+
let options_: RequestInit = {
|
|
23253
|
+
method: "GET",
|
|
23254
|
+
headers: {
|
|
23255
|
+
"Accept": "application/json"
|
|
23256
|
+
}
|
|
23257
|
+
};
|
|
23258
|
+
|
|
23259
|
+
return this.transformOptions(options_).then(transformedOptions_ => {
|
|
23260
|
+
return this.http.fetch(url_, transformedOptions_);
|
|
23261
|
+
}).then((_response: Response) => {
|
|
23262
|
+
return this.processGetPurchaseOrderLineDetails(_response);
|
|
23260
23263
|
});
|
|
23261
23264
|
}
|
|
23262
23265
|
|
|
@@ -34444,50 +34447,266 @@ export interface WeldingIotConfigDto {
|
|
|
34444
34447
|
export interface CreateWeldingIotConfig {
|
|
34445
34448
|
}
|
|
34446
34449
|
|
|
34447
|
-
export interface
|
|
34448
|
-
items: ImaMaterialCheckLiteDto[];
|
|
34449
|
-
continuationToken?: string | null;
|
|
34450
|
+
export interface ImaCdfEntityReadBase {
|
|
34450
34451
|
}
|
|
34451
34452
|
|
|
34452
|
-
export interface
|
|
34453
|
-
|
|
34454
|
-
|
|
34455
|
-
|
|
34456
|
-
|
|
34457
|
-
|
|
34458
|
-
|
|
34459
|
-
|
|
34460
|
-
|
|
34461
|
-
certificateTypeName?: string | null;
|
|
34462
|
-
specificationId: string;
|
|
34463
|
-
specificationVersion: number;
|
|
34464
|
-
specificationName: string;
|
|
34465
|
-
purchaseOrder?: string | null;
|
|
34466
|
-
purchaseOrderLine?: string | null;
|
|
34467
|
-
purchaseOrderItem?: string | null;
|
|
34468
|
-
purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
|
|
34469
|
-
purchaseOrderLot?: string | null;
|
|
34470
|
-
status: ImaMaterialCheckStatus;
|
|
34453
|
+
export interface ImaCertificateTypeDto extends ImaCdfEntityReadBase {
|
|
34454
|
+
certificateTypeId: string;
|
|
34455
|
+
version: number;
|
|
34456
|
+
allVersions: ImaCertificateTypeVersionDto[];
|
|
34457
|
+
name: string;
|
|
34458
|
+
revision: string;
|
|
34459
|
+
status: ImaCertificateTypeStatus;
|
|
34460
|
+
description?: string | null;
|
|
34461
|
+
isStandardCertificateType: boolean;
|
|
34471
34462
|
created: Date;
|
|
34472
34463
|
createdBy: string;
|
|
34473
34464
|
createdById: string;
|
|
34474
34465
|
updatedBy?: string | null;
|
|
34475
34466
|
updatedById?: string | null;
|
|
34476
|
-
|
|
34467
|
+
updated: Date;
|
|
34468
|
+
isDeleted: boolean;
|
|
34469
|
+
requirements: ImaCertificateTypeRequirementsDto;
|
|
34477
34470
|
}
|
|
34478
34471
|
|
|
34479
|
-
export
|
|
34472
|
+
export interface ImaCertificateTypeVersionDto {
|
|
34473
|
+
version?: number;
|
|
34474
|
+
status?: ImaCertificateTypeStatus;
|
|
34475
|
+
}
|
|
34480
34476
|
|
|
34481
|
-
export
|
|
34482
|
-
|
|
34483
|
-
|
|
34484
|
-
|
|
34485
|
-
|
|
34486
|
-
|
|
34487
|
-
|
|
34488
|
-
|
|
34489
|
-
|
|
34490
|
-
|
|
34477
|
+
export type ImaCertificateTypeStatus = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
|
|
34478
|
+
|
|
34479
|
+
export interface ImaCertificateTypeRequirementsDto {
|
|
34480
|
+
manufacturer: ImaCertificateTypeManufacturerRequirementsDto;
|
|
34481
|
+
signature: ImaCertificateTypeSignatureRequirementsDto;
|
|
34482
|
+
thirdParty: ImaCertificateTypeThirdPartyRequirementsDto;
|
|
34483
|
+
certification: ImaCertificateTypeCertificationRequirementsDto;
|
|
34484
|
+
productAndOrderInformation: ImaCertificateTypeProductAndOrderInformationRequirementsDto;
|
|
34485
|
+
testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesRequirementsDto;
|
|
34486
|
+
testResults: ImaCertificateTypeTestResultsRequirementsDto;
|
|
34487
|
+
documentTypes: ImaCertificateTypeDocumentTypesRequirementsDto;
|
|
34488
|
+
}
|
|
34489
|
+
|
|
34490
|
+
export interface ImaCertificateTypeManufacturerRequirementsDto extends ImaCdfEntityReadBase {
|
|
34491
|
+
manufacturer?: boolean;
|
|
34492
|
+
address?: boolean;
|
|
34493
|
+
contact?: boolean;
|
|
34494
|
+
}
|
|
34495
|
+
|
|
34496
|
+
export interface ImaCertificateTypeSignatureRequirementsDto extends ImaCdfEntityReadBase {
|
|
34497
|
+
certifiedBy?: boolean;
|
|
34498
|
+
position?: boolean;
|
|
34499
|
+
signature?: boolean;
|
|
34500
|
+
date?: boolean;
|
|
34501
|
+
stamp?: boolean;
|
|
34502
|
+
}
|
|
34503
|
+
|
|
34504
|
+
export interface ImaCertificateTypeThirdPartyRequirementsDto extends ImaCdfEntityReadBase {
|
|
34505
|
+
inspectionBody?: boolean;
|
|
34506
|
+
inspectorName?: boolean;
|
|
34507
|
+
position?: boolean;
|
|
34508
|
+
verificationMethod?: boolean;
|
|
34509
|
+
signature?: boolean;
|
|
34510
|
+
date?: boolean;
|
|
34511
|
+
stamp?: boolean;
|
|
34512
|
+
}
|
|
34513
|
+
|
|
34514
|
+
export interface ImaCertificateTypeCertificationRequirementsDto extends ImaCdfEntityReadBase {
|
|
34515
|
+
certificateOfCompliance?: boolean;
|
|
34516
|
+
inspectionCertificate?: boolean;
|
|
34517
|
+
}
|
|
34518
|
+
|
|
34519
|
+
export interface ImaCertificateTypeProductAndOrderInformationRequirementsDto extends ImaCdfEntityReadBase {
|
|
34520
|
+
productDescription?: boolean;
|
|
34521
|
+
materialGrade?: boolean;
|
|
34522
|
+
customer?: boolean;
|
|
34523
|
+
customerOrderNumber?: boolean;
|
|
34524
|
+
dimensionsOrWeight?: boolean;
|
|
34525
|
+
batchNumber?: boolean;
|
|
34526
|
+
heatNumber?: boolean;
|
|
34527
|
+
relatedStandards?: boolean;
|
|
34528
|
+
}
|
|
34529
|
+
|
|
34530
|
+
export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsDto extends ImaCdfEntityReadBase {
|
|
34531
|
+
usedStandards?: boolean;
|
|
34532
|
+
}
|
|
34533
|
+
|
|
34534
|
+
export interface ImaCertificateTypeTestResultsRequirementsDto extends ImaCdfEntityReadBase {
|
|
34535
|
+
mechanicalProperties?: boolean;
|
|
34536
|
+
chemicalAnalysis?: boolean;
|
|
34537
|
+
impactTests?: boolean;
|
|
34538
|
+
corrosionTests?: boolean;
|
|
34539
|
+
ferriteContentAndMicrostructure?: boolean;
|
|
34540
|
+
}
|
|
34541
|
+
|
|
34542
|
+
export interface ImaCertificateTypeDocumentTypesRequirementsDto extends ImaCdfEntityReadBase {
|
|
34543
|
+
heatTreatmentCertificate?: boolean;
|
|
34544
|
+
ultrasonicControlCertificate?: boolean;
|
|
34545
|
+
liquidPenetrantCertificate?: boolean;
|
|
34546
|
+
testReport?: boolean;
|
|
34547
|
+
dimensionalReport?: boolean;
|
|
34548
|
+
dyePenetrantReport?: boolean;
|
|
34549
|
+
visualReport?: boolean;
|
|
34550
|
+
certificateOfAnalyticalAndMechanicalTests?: boolean;
|
|
34551
|
+
certificateOfTest?: boolean;
|
|
34552
|
+
technicalReport?: boolean;
|
|
34553
|
+
microExaminationReport?: boolean;
|
|
34554
|
+
radiologicalReport?: boolean;
|
|
34555
|
+
}
|
|
34556
|
+
|
|
34557
|
+
export interface ImaCreateOrCopyCertificateTypeRequestDto {
|
|
34558
|
+
name: string;
|
|
34559
|
+
revision: string;
|
|
34560
|
+
description?: string | null;
|
|
34561
|
+
}
|
|
34562
|
+
|
|
34563
|
+
export interface ImaUpdateImaCertificateTypeRequestDto {
|
|
34564
|
+
name?: string | null;
|
|
34565
|
+
revision?: string | null;
|
|
34566
|
+
status?: ImaCertificateTypeStatus | null;
|
|
34567
|
+
description?: string | null;
|
|
34568
|
+
requirements?: ImaCertificateTypeRequirementsUpdateDto | null;
|
|
34569
|
+
}
|
|
34570
|
+
|
|
34571
|
+
export interface ImaCertificateTypeRequirementsUpdateDto {
|
|
34572
|
+
manufacturer?: ImaCertificateTypeManufacturerRequirementsUpdateDto | null;
|
|
34573
|
+
signature?: ImaCertificateTypeSignatureRequirementsUpdateDto | null;
|
|
34574
|
+
thirdParty?: ImaCertificateTypeThirdPartyRequirementsUpdateDto | null;
|
|
34575
|
+
certification?: ImaCertificateTypeCertificationRequirementsUpdateDto | null;
|
|
34576
|
+
productAndOrderInformation?: ImaCertificateTypeProductAndOrderInformationRequirementsUpdateDto | null;
|
|
34577
|
+
testMethodsAndReferences?: ImaCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto | null;
|
|
34578
|
+
testResults?: ImaCertificateTypeTestResultsRequirementsUpdateDto | null;
|
|
34579
|
+
documentTypes?: ImaCertificateTypeDocumentTypesRequirementsUpdateDto | null;
|
|
34580
|
+
}
|
|
34581
|
+
|
|
34582
|
+
export interface ImaCertificateTypeManufacturerRequirementsUpdateDto {
|
|
34583
|
+
manufacturer?: boolean | null;
|
|
34584
|
+
address?: boolean | null;
|
|
34585
|
+
contact?: boolean | null;
|
|
34586
|
+
}
|
|
34587
|
+
|
|
34588
|
+
export interface ImaCertificateTypeSignatureRequirementsUpdateDto {
|
|
34589
|
+
certifiedBy?: boolean | null;
|
|
34590
|
+
position?: boolean | null;
|
|
34591
|
+
signature?: boolean | null;
|
|
34592
|
+
date?: boolean | null;
|
|
34593
|
+
stamp?: boolean | null;
|
|
34594
|
+
}
|
|
34595
|
+
|
|
34596
|
+
export interface ImaCertificateTypeThirdPartyRequirementsUpdateDto {
|
|
34597
|
+
inspectionBody?: boolean | null;
|
|
34598
|
+
inspectorName?: boolean | null;
|
|
34599
|
+
position?: boolean | null;
|
|
34600
|
+
verificationMethod?: boolean | null;
|
|
34601
|
+
signature?: boolean | null;
|
|
34602
|
+
date?: boolean | null;
|
|
34603
|
+
stamp?: boolean | null;
|
|
34604
|
+
}
|
|
34605
|
+
|
|
34606
|
+
export interface ImaCertificateTypeCertificationRequirementsUpdateDto {
|
|
34607
|
+
certificateOfCompliance?: boolean | null;
|
|
34608
|
+
inspectionCertificate?: boolean | null;
|
|
34609
|
+
}
|
|
34610
|
+
|
|
34611
|
+
export interface ImaCertificateTypeProductAndOrderInformationRequirementsUpdateDto {
|
|
34612
|
+
productDescription?: boolean | null;
|
|
34613
|
+
materialGrade?: boolean | null;
|
|
34614
|
+
customer?: boolean | null;
|
|
34615
|
+
customerOrderNumber?: boolean | null;
|
|
34616
|
+
dimensionsOrWeight?: boolean | null;
|
|
34617
|
+
batchNumber?: boolean | null;
|
|
34618
|
+
heatNumber?: boolean | null;
|
|
34619
|
+
relatedStandards?: boolean | null;
|
|
34620
|
+
}
|
|
34621
|
+
|
|
34622
|
+
export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto {
|
|
34623
|
+
usedStandards?: boolean | null;
|
|
34624
|
+
}
|
|
34625
|
+
|
|
34626
|
+
export interface ImaCertificateTypeTestResultsRequirementsUpdateDto {
|
|
34627
|
+
mechanicalProperties?: boolean | null;
|
|
34628
|
+
chemicalAnalysis?: boolean | null;
|
|
34629
|
+
impactTests?: boolean | null;
|
|
34630
|
+
corrosionTests?: boolean | null;
|
|
34631
|
+
ferriteContentAndMicrostructure?: boolean | null;
|
|
34632
|
+
}
|
|
34633
|
+
|
|
34634
|
+
export interface ImaCertificateTypeDocumentTypesRequirementsUpdateDto {
|
|
34635
|
+
heatTreatmentCertificate?: boolean | null;
|
|
34636
|
+
ultrasonicControlCertificate?: boolean | null;
|
|
34637
|
+
liquidPenetrantCertificate?: boolean | null;
|
|
34638
|
+
testReport?: boolean | null;
|
|
34639
|
+
dimensionalReport?: boolean | null;
|
|
34640
|
+
dyePenetrantReport?: boolean | null;
|
|
34641
|
+
visualReport?: boolean | null;
|
|
34642
|
+
certificateOfAnalyticalAndMechanicalTests?: boolean | null;
|
|
34643
|
+
certificateOfTest?: boolean | null;
|
|
34644
|
+
technicalReport?: boolean | null;
|
|
34645
|
+
microExaminationReport?: boolean | null;
|
|
34646
|
+
radiologicalReport?: boolean | null;
|
|
34647
|
+
}
|
|
34648
|
+
|
|
34649
|
+
export interface ImaCertificateTypeLiteDto extends ImaCdfEntityReadBase {
|
|
34650
|
+
certificateTypeId: string;
|
|
34651
|
+
version: number;
|
|
34652
|
+
name: string;
|
|
34653
|
+
revision: string;
|
|
34654
|
+
status: ImaCertificateTypeStatus;
|
|
34655
|
+
description?: string | null;
|
|
34656
|
+
isStandardCertificateType: boolean;
|
|
34657
|
+
created: Date;
|
|
34658
|
+
createdBy: string;
|
|
34659
|
+
createdById: string;
|
|
34660
|
+
updatedBy?: string | null;
|
|
34661
|
+
updatedById?: string | null;
|
|
34662
|
+
updated: Date;
|
|
34663
|
+
isDeleted: boolean;
|
|
34664
|
+
}
|
|
34665
|
+
|
|
34666
|
+
export interface ImaMaterialChecksPageDto {
|
|
34667
|
+
items: ImaMaterialCheckLiteDto[];
|
|
34668
|
+
continuationToken?: string | null;
|
|
34669
|
+
}
|
|
34670
|
+
|
|
34671
|
+
export interface ImaMaterialCheckLiteDto {
|
|
34672
|
+
materialCheckId: string;
|
|
34673
|
+
originalMaterialCertificate: FileDto;
|
|
34674
|
+
generatedMaterialCertificate?: FileDto | null;
|
|
34675
|
+
customer?: string | null;
|
|
34676
|
+
project?: string | null;
|
|
34677
|
+
workOrder?: string | null;
|
|
34678
|
+
certificateTypeId?: string | null;
|
|
34679
|
+
certificateTypeVersion?: number | null;
|
|
34680
|
+
certificateTypeName?: string | null;
|
|
34681
|
+
specificationId: string;
|
|
34682
|
+
specificationVersion: number;
|
|
34683
|
+
specificationName: string;
|
|
34684
|
+
purchaseOrder?: string | null;
|
|
34685
|
+
purchaseOrderLine?: number | null;
|
|
34686
|
+
purchaseOrderItem?: string | null;
|
|
34687
|
+
purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
|
|
34688
|
+
purchaseOrderLot?: string | null;
|
|
34689
|
+
status: ImaMaterialCheckStatus;
|
|
34690
|
+
created: Date;
|
|
34691
|
+
createdBy: string;
|
|
34692
|
+
createdById: string;
|
|
34693
|
+
updatedBy?: string | null;
|
|
34694
|
+
updatedById?: string | null;
|
|
34695
|
+
isDeleted?: boolean;
|
|
34696
|
+
}
|
|
34697
|
+
|
|
34698
|
+
export type ImaMaterialCheckStatus = "Processing" | "Draft" | "Approved" | "Rejected" | "NotSet";
|
|
34699
|
+
|
|
34700
|
+
export interface ImaMaterialChecksPageRequestDto {
|
|
34701
|
+
pageSize?: number | null;
|
|
34702
|
+
orderBy?: ImaMaterialChecksOrderByColumn | null;
|
|
34703
|
+
searchTerm?: string | null;
|
|
34704
|
+
originalReportFilter?: string | null;
|
|
34705
|
+
generatedReportFilter?: string | null;
|
|
34706
|
+
customerFilter?: string | null;
|
|
34707
|
+
projectFilter?: string | null;
|
|
34708
|
+
purchaseOrderFilter?: string | null;
|
|
34709
|
+
workOrderFilter?: string | null;
|
|
34491
34710
|
certificateTypeFilter?: string | null;
|
|
34492
34711
|
lineFilter?: string | null;
|
|
34493
34712
|
itemFilter?: string | null;
|
|
@@ -34515,7 +34734,7 @@ export interface ImaMaterialCheckDto {
|
|
|
34515
34734
|
specificationVersion: number;
|
|
34516
34735
|
specificationName: string;
|
|
34517
34736
|
purchaseOrder?: string | null;
|
|
34518
|
-
purchaseOrderLine?:
|
|
34737
|
+
purchaseOrderLine?: number | null;
|
|
34519
34738
|
purchaseOrderItem?: string | null;
|
|
34520
34739
|
purchaseOrderOrMaterialCertificateHeatNumber?: string | null;
|
|
34521
34740
|
purchaseOrderLot?: string | null;
|
|
@@ -34527,13 +34746,10 @@ export interface ImaMaterialCheckDto {
|
|
|
34527
34746
|
updatedById?: string | null;
|
|
34528
34747
|
isDeleted?: boolean;
|
|
34529
34748
|
certificateTypeResults: ImaCertificateTypeResultsDto;
|
|
34530
|
-
|
|
34531
|
-
specificationMechanical: ImaSpecificationMechanicalResultsDto;
|
|
34532
|
-
specificationFerrite: ImaSpecificationFerriteResultsDto;
|
|
34533
|
-
specificationHeatTreatments: ImaSpecificationHeatTreatmentResultDto[];
|
|
34749
|
+
specificationResults: ImaSpecificationResultsDto;
|
|
34534
34750
|
}
|
|
34535
34751
|
|
|
34536
|
-
export interface ImaCertificateTypeResultsDto {
|
|
34752
|
+
export interface ImaCertificateTypeResultsDto extends ImaCdfEntityReadBase {
|
|
34537
34753
|
manufacturer: ImaCertificateTypeManufacturerResultsDto;
|
|
34538
34754
|
signature: ImaCertificateTypeSignatureResultsDto;
|
|
34539
34755
|
thirdParty: ImaCertificateTypeThirdPartyResultsDto;
|
|
@@ -34544,19 +34760,19 @@ export interface ImaCertificateTypeResultsDto {
|
|
|
34544
34760
|
documentTypes: ImaCertificateTypeDocumentTypesResultsDto;
|
|
34545
34761
|
}
|
|
34546
34762
|
|
|
34547
|
-
export interface ImaCertificateTypeManufacturerResultsDto {
|
|
34763
|
+
export interface ImaCertificateTypeManufacturerResultsDto extends ImaCdfEntityReadBase {
|
|
34548
34764
|
manufacturer?: ImaCertificateTypeResultLine | null;
|
|
34549
34765
|
address?: ImaCertificateTypeResultLine | null;
|
|
34550
34766
|
contact?: ImaCertificateTypeResultLine | null;
|
|
34551
34767
|
}
|
|
34552
34768
|
|
|
34553
|
-
export interface ImaCertificateTypeResultLine {
|
|
34769
|
+
export interface ImaCertificateTypeResultLine extends ImaCdfEntityReadBase {
|
|
34554
34770
|
found?: boolean;
|
|
34555
34771
|
readValue?: string | null;
|
|
34556
34772
|
override?: ImaResultLineOverrideDto | null;
|
|
34557
34773
|
}
|
|
34558
34774
|
|
|
34559
|
-
export interface ImaResultLineOverrideDto {
|
|
34775
|
+
export interface ImaResultLineOverrideDto extends ImaCdfEntityReadBase {
|
|
34560
34776
|
approved: boolean;
|
|
34561
34777
|
comment?: string | null;
|
|
34562
34778
|
updated: Date;
|
|
@@ -34564,7 +34780,7 @@ export interface ImaResultLineOverrideDto {
|
|
|
34564
34780
|
updatedById: string;
|
|
34565
34781
|
}
|
|
34566
34782
|
|
|
34567
|
-
export interface ImaCertificateTypeSignatureResultsDto {
|
|
34783
|
+
export interface ImaCertificateTypeSignatureResultsDto extends ImaCdfEntityReadBase {
|
|
34568
34784
|
certifiedBy?: ImaCertificateTypeResultLine | null;
|
|
34569
34785
|
position?: ImaCertificateTypeResultLine | null;
|
|
34570
34786
|
signature?: ImaCertificateTypeResultLine | null;
|
|
@@ -34572,7 +34788,7 @@ export interface ImaCertificateTypeSignatureResultsDto {
|
|
|
34572
34788
|
stamp?: ImaCertificateTypeResultLine | null;
|
|
34573
34789
|
}
|
|
34574
34790
|
|
|
34575
|
-
export interface ImaCertificateTypeThirdPartyResultsDto {
|
|
34791
|
+
export interface ImaCertificateTypeThirdPartyResultsDto extends ImaCdfEntityReadBase {
|
|
34576
34792
|
inspectionBody?: ImaCertificateTypeResultLine | null;
|
|
34577
34793
|
inspectorName?: ImaCertificateTypeResultLine | null;
|
|
34578
34794
|
position?: ImaCertificateTypeResultLine | null;
|
|
@@ -34582,12 +34798,12 @@ export interface ImaCertificateTypeThirdPartyResultsDto {
|
|
|
34582
34798
|
stamp?: ImaCertificateTypeResultLine | null;
|
|
34583
34799
|
}
|
|
34584
34800
|
|
|
34585
|
-
export interface ImaCertificateTypeCertificationResultsDto {
|
|
34801
|
+
export interface ImaCertificateTypeCertificationResultsDto extends ImaCdfEntityReadBase {
|
|
34586
34802
|
certificateOfCompliance?: ImaCertificateTypeResultLine | null;
|
|
34587
34803
|
inspectionCertificate?: ImaCertificateTypeResultLine | null;
|
|
34588
34804
|
}
|
|
34589
34805
|
|
|
34590
|
-
export interface ImaCertificateTypeProductAndOrderInformationResultsDto {
|
|
34806
|
+
export interface ImaCertificateTypeProductAndOrderInformationResultsDto extends ImaCdfEntityReadBase {
|
|
34591
34807
|
productDescription?: ImaCertificateTypeResultLine | null;
|
|
34592
34808
|
materialGrade?: ImaCertificateTypeResultLine | null;
|
|
34593
34809
|
customer?: ImaCertificateTypeResultLine | null;
|
|
@@ -34598,11 +34814,11 @@ export interface ImaCertificateTypeProductAndOrderInformationResultsDto {
|
|
|
34598
34814
|
relatedStandards?: ImaCertificateTypeResultLine | null;
|
|
34599
34815
|
}
|
|
34600
34816
|
|
|
34601
|
-
export interface ImaCertificateTypeTestMethodsAndReferencesResultsDto {
|
|
34817
|
+
export interface ImaCertificateTypeTestMethodsAndReferencesResultsDto extends ImaCdfEntityReadBase {
|
|
34602
34818
|
usedStandards?: ImaCertificateTypeResultLine | null;
|
|
34603
34819
|
}
|
|
34604
34820
|
|
|
34605
|
-
export interface ImaCertificateTypeTestResultsResultsDto {
|
|
34821
|
+
export interface ImaCertificateTypeTestResultsResultsDto extends ImaCdfEntityReadBase {
|
|
34606
34822
|
mechanicalProperties?: ImaCertificateTypeResultLine | null;
|
|
34607
34823
|
chemicalAnalysis?: ImaCertificateTypeResultLine | null;
|
|
34608
34824
|
impactTests?: ImaCertificateTypeResultLine | null;
|
|
@@ -34610,7 +34826,7 @@ export interface ImaCertificateTypeTestResultsResultsDto {
|
|
|
34610
34826
|
ferriteContentAndMicrostructure?: ImaCertificateTypeResultLine | null;
|
|
34611
34827
|
}
|
|
34612
34828
|
|
|
34613
|
-
export interface ImaCertificateTypeDocumentTypesResultsDto {
|
|
34829
|
+
export interface ImaCertificateTypeDocumentTypesResultsDto extends ImaCdfEntityReadBase {
|
|
34614
34830
|
heatTreatmentCertificate?: ImaCertificateTypeResultLine | null;
|
|
34615
34831
|
ultrasonicControlCertificate?: ImaCertificateTypeResultLine | null;
|
|
34616
34832
|
liquidPenetrantCertificate?: ImaCertificateTypeResultLine | null;
|
|
@@ -34625,7 +34841,14 @@ export interface ImaCertificateTypeDocumentTypesResultsDto {
|
|
|
34625
34841
|
radiologicalReport?: ImaCertificateTypeResultLine | null;
|
|
34626
34842
|
}
|
|
34627
34843
|
|
|
34628
|
-
export interface
|
|
34844
|
+
export interface ImaSpecificationResultsDto extends ImaCdfEntityReadBase {
|
|
34845
|
+
chemistry: ImaSpecificationChemistryResultsDto;
|
|
34846
|
+
mechanical: ImaSpecificationMechanicalResultsDto;
|
|
34847
|
+
ferrite: ImaSpecificationFerriteResultsDto;
|
|
34848
|
+
heatTreatments: ImaSpecificationHeatTreatmentResultDto[];
|
|
34849
|
+
}
|
|
34850
|
+
|
|
34851
|
+
export interface ImaSpecificationChemistryResultsDto extends ImaCdfEntityReadBase {
|
|
34629
34852
|
carbon?: ImaSpecificationResultLineDto | null;
|
|
34630
34853
|
manganese?: ImaSpecificationResultLineDto | null;
|
|
34631
34854
|
silicon?: ImaSpecificationResultLineDto | null;
|
|
@@ -34640,7 +34863,7 @@ export interface ImaSpecificationChemistryResultsDto {
|
|
|
34640
34863
|
iron?: ImaSpecificationResultLineDto | null;
|
|
34641
34864
|
}
|
|
34642
34865
|
|
|
34643
|
-
export interface ImaSpecificationResultLineDto {
|
|
34866
|
+
export interface ImaSpecificationResultLineDto extends ImaCdfEntityReadBase {
|
|
34644
34867
|
specificationOperator?: string | null;
|
|
34645
34868
|
specificationValue1?: number | null;
|
|
34646
34869
|
specificationValue2?: number | null;
|
|
@@ -34654,7 +34877,7 @@ export type ImaSpecificationUnit = "Percentage" | "Joule" | "Celsius" | "Fahrenh
|
|
|
34654
34877
|
|
|
34655
34878
|
export type ImaSpecificationResultLineStatus = "NotFound" | "NotOk" | "Ok" | "NotSet";
|
|
34656
34879
|
|
|
34657
|
-
export interface ImaSpecificationMechanicalResultsDto {
|
|
34880
|
+
export interface ImaSpecificationMechanicalResultsDto extends ImaCdfEntityReadBase {
|
|
34658
34881
|
yieldStrength?: ImaSpecificationResultLineDto | null;
|
|
34659
34882
|
tensileStrength?: ImaSpecificationResultLineDto | null;
|
|
34660
34883
|
elongation?: ImaSpecificationResultLineDto | null;
|
|
@@ -34663,7 +34886,7 @@ export interface ImaSpecificationMechanicalResultsDto {
|
|
|
34663
34886
|
hardness?: ImaSpecificationResultLineDto | null;
|
|
34664
34887
|
}
|
|
34665
34888
|
|
|
34666
|
-
export interface ImaSpecificationFerriteResultsDto {
|
|
34889
|
+
export interface ImaSpecificationFerriteResultsDto extends ImaCdfEntityReadBase {
|
|
34667
34890
|
ferriteContent?: ImaSpecificationFerriteResultLineDto | null;
|
|
34668
34891
|
}
|
|
34669
34892
|
|
|
@@ -34678,383 +34901,159 @@ export interface ImaSpecificationFerriteResultLineDto {
|
|
|
34678
34901
|
measurementMethod?: string | null;
|
|
34679
34902
|
}
|
|
34680
34903
|
|
|
34681
|
-
export interface ImaSpecificationHeatTreatmentResultDto {
|
|
34904
|
+
export interface ImaSpecificationHeatTreatmentResultDto extends ImaCdfEntityReadBase {
|
|
34682
34905
|
step: number;
|
|
34683
34906
|
cooling?: ImaSpecificationHeatTreatmentCoolingResult | null;
|
|
34684
34907
|
heating?: ImaSpecificationHeatTreatmentHeatingResult | null;
|
|
34685
34908
|
}
|
|
34686
34909
|
|
|
34687
|
-
export interface ImaSpecificationHeatTreatmentCoolingResult {
|
|
34910
|
+
export interface ImaSpecificationHeatTreatmentCoolingResult extends ImaCdfEntityReadBase {
|
|
34688
34911
|
coolingMethods?: string[] | null;
|
|
34689
34912
|
temperature?: ImaSpecificationResultLineDto | null;
|
|
34690
34913
|
duration?: ImaSpecificationResultLineDto | null;
|
|
34691
34914
|
}
|
|
34692
34915
|
|
|
34693
|
-
export interface ImaSpecificationHeatTreatmentHeatingResult {
|
|
34916
|
+
export interface ImaSpecificationHeatTreatmentHeatingResult extends ImaCdfEntityReadBase {
|
|
34694
34917
|
heatingMethod?: string | null;
|
|
34695
34918
|
temperature?: ImaSpecificationResultLineDto | null;
|
|
34696
34919
|
duration?: ImaSpecificationResultLineDto | null;
|
|
34697
34920
|
}
|
|
34698
34921
|
|
|
34699
|
-
export interface
|
|
34922
|
+
export interface ProcessMaterialCertificate {
|
|
34700
34923
|
files: UploadFileCdfDto[];
|
|
34701
34924
|
specificationId: string;
|
|
34702
|
-
specificationVersion:
|
|
34925
|
+
specificationVersion: number;
|
|
34703
34926
|
certificateTypeId?: string | null;
|
|
34704
|
-
certificateTypeVersion?:
|
|
34927
|
+
certificateTypeVersion?: number | null;
|
|
34705
34928
|
purchaseOrder?: string | null;
|
|
34929
|
+
purchaseOrderLine?: number | null;
|
|
34706
34930
|
}
|
|
34707
34931
|
|
|
34708
34932
|
export interface UploadFileCdfDto {
|
|
34709
34933
|
id: number;
|
|
34710
34934
|
}
|
|
34711
34935
|
|
|
34712
|
-
export interface
|
|
34713
|
-
|
|
34714
|
-
|
|
34715
|
-
|
|
34716
|
-
|
|
34717
|
-
|
|
34718
|
-
specificationChemistrySpecification: ImaUpdateSpecificationChemistryResultsDto;
|
|
34719
|
-
specificationMechanicalSpecification: ImaUpdateSpecificationMechanicalResultsDto;
|
|
34720
|
-
specificationFerriteSpecification: ImaUpdateSpecificationFerriteResultsDto;
|
|
34721
|
-
specificationHeatSpecification: ImaUpdateSpecificationHeatTreatmentResultsDto;
|
|
34936
|
+
export interface ImaUpdateMaterialCheckRequestDto {
|
|
34937
|
+
certificateTypeSection?: ImaUpdateCertificateTypeResultsDto | null;
|
|
34938
|
+
specificationChemistrySpecification?: ImaUpdateSpecificationChemistryResultsDto | null;
|
|
34939
|
+
specificationMechanicalSpecification?: ImaUpdateSpecificationMechanicalResultsDto | null;
|
|
34940
|
+
specificationFerriteSpecification?: ImaUpdateSpecificationFerriteResultsDto | null;
|
|
34941
|
+
specificationHeatSpecification?: ImaUpdateSpecificationHeatTreatmentResultsDto | null;
|
|
34722
34942
|
}
|
|
34723
34943
|
|
|
34724
34944
|
export interface ImaUpdateCertificateTypeResultsDto {
|
|
34725
|
-
manufacturer
|
|
34726
|
-
signature
|
|
34727
|
-
thirdParty
|
|
34728
|
-
certification
|
|
34729
|
-
certificateTypeProductAndOrderInformation
|
|
34730
|
-
testMethodsAndReferences
|
|
34731
|
-
testResults
|
|
34732
|
-
documentTypes
|
|
34945
|
+
manufacturer?: ImaUpdateCertificateTypeManufacturerResultsDto | null;
|
|
34946
|
+
signature?: ImaUpdateCertificateTypeSignatureResultsDto | null;
|
|
34947
|
+
thirdParty?: ImaUpdateCertificateTypeThirdPartyResultsDto | null;
|
|
34948
|
+
certification?: ImaUpdateCertificateTypeCertificationResultsDto | null;
|
|
34949
|
+
certificateTypeProductAndOrderInformation?: ImaUpdateCertificateTypeProductAndOrderInformationResultsDto | null;
|
|
34950
|
+
testMethodsAndReferences?: ImaUpdateCertificateTypeTestMethodsAndReferencesResultsDto | null;
|
|
34951
|
+
testResults?: ImaUpdateCertificateTypeTestResultsResultsDto | null;
|
|
34952
|
+
documentTypes?: ImaUpdateCertificateTypeDocumentTypesResultsDto | null;
|
|
34733
34953
|
}
|
|
34734
34954
|
|
|
34735
34955
|
export interface ImaUpdateCertificateTypeManufacturerResultsDto {
|
|
34736
|
-
manufacturer?:
|
|
34737
|
-
address?:
|
|
34738
|
-
contact?:
|
|
34956
|
+
manufacturer?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
34957
|
+
address?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
34958
|
+
contact?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
34739
34959
|
}
|
|
34740
34960
|
|
|
34741
|
-
export interface
|
|
34742
|
-
approved?: boolean
|
|
34961
|
+
export interface ImaUpdateMaterialCheckResultLineDto {
|
|
34962
|
+
approved?: boolean;
|
|
34743
34963
|
comment?: string | null;
|
|
34744
34964
|
}
|
|
34745
34965
|
|
|
34746
34966
|
export interface ImaUpdateCertificateTypeSignatureResultsDto {
|
|
34747
|
-
certifiedBy?:
|
|
34748
|
-
position?:
|
|
34749
|
-
signature?:
|
|
34750
|
-
date?:
|
|
34751
|
-
stamp?:
|
|
34967
|
+
certifiedBy?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
34968
|
+
position?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
34969
|
+
signature?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
34970
|
+
date?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
34971
|
+
stamp?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
34752
34972
|
}
|
|
34753
34973
|
|
|
34754
34974
|
export interface ImaUpdateCertificateTypeThirdPartyResultsDto {
|
|
34755
|
-
inspectionBody?:
|
|
34756
|
-
inspectorName?:
|
|
34757
|
-
position?:
|
|
34758
|
-
verificationMethod?:
|
|
34759
|
-
signature?:
|
|
34760
|
-
date?:
|
|
34761
|
-
stamp?:
|
|
34975
|
+
inspectionBody?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
34976
|
+
inspectorName?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
34977
|
+
position?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
34978
|
+
verificationMethod?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
34979
|
+
signature?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
34980
|
+
date?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
34981
|
+
stamp?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
34762
34982
|
}
|
|
34763
34983
|
|
|
34764
34984
|
export interface ImaUpdateCertificateTypeCertificationResultsDto {
|
|
34765
|
-
certificateOfCompliance?:
|
|
34766
|
-
inspectionCertificate?:
|
|
34985
|
+
certificateOfCompliance?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
34986
|
+
inspectionCertificate?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
34767
34987
|
}
|
|
34768
34988
|
|
|
34769
34989
|
export interface ImaUpdateCertificateTypeProductAndOrderInformationResultsDto {
|
|
34770
|
-
productDescription?:
|
|
34771
|
-
materialGrade?:
|
|
34772
|
-
customer?:
|
|
34773
|
-
customerOrderNumber?:
|
|
34774
|
-
dimensionsOrWeight?:
|
|
34775
|
-
batchNumber?:
|
|
34776
|
-
heatNumber?:
|
|
34777
|
-
relatedStandards?:
|
|
34990
|
+
productDescription?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
34991
|
+
materialGrade?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
34992
|
+
customer?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
34993
|
+
customerOrderNumber?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
34994
|
+
dimensionsOrWeight?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
34995
|
+
batchNumber?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
34996
|
+
heatNumber?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
34997
|
+
relatedStandards?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
34778
34998
|
}
|
|
34779
34999
|
|
|
34780
35000
|
export interface ImaUpdateCertificateTypeTestMethodsAndReferencesResultsDto {
|
|
34781
|
-
usedStandards?:
|
|
35001
|
+
usedStandards?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
34782
35002
|
}
|
|
34783
35003
|
|
|
34784
35004
|
export interface ImaUpdateCertificateTypeTestResultsResultsDto {
|
|
34785
|
-
mechanicalProperties?:
|
|
34786
|
-
chemicalAnalysis?:
|
|
34787
|
-
impactTests?:
|
|
34788
|
-
corrosionTests?:
|
|
34789
|
-
ferriteContentAndMicrostructure?:
|
|
35005
|
+
mechanicalProperties?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
35006
|
+
chemicalAnalysis?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
35007
|
+
impactTests?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
35008
|
+
corrosionTests?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
35009
|
+
ferriteContentAndMicrostructure?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
34790
35010
|
}
|
|
34791
35011
|
|
|
34792
35012
|
export interface ImaUpdateCertificateTypeDocumentTypesResultsDto {
|
|
34793
|
-
heatTreatmentCertificate?:
|
|
34794
|
-
ultrasonicControlCertificate?:
|
|
34795
|
-
liquidPenetrantCertificate?:
|
|
34796
|
-
testReport?:
|
|
34797
|
-
dimensionalReport?:
|
|
34798
|
-
dyePenetrantReport?:
|
|
34799
|
-
visualReport?:
|
|
34800
|
-
certificateOfAnalyticalAndMechanicalTests?:
|
|
34801
|
-
certificateOfTest?:
|
|
34802
|
-
technicalReport?:
|
|
34803
|
-
microExaminationReport?:
|
|
34804
|
-
radiologicalReport?:
|
|
35013
|
+
heatTreatmentCertificate?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
35014
|
+
ultrasonicControlCertificate?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
35015
|
+
liquidPenetrantCertificate?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
35016
|
+
testReport?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
35017
|
+
dimensionalReport?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
35018
|
+
dyePenetrantReport?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
35019
|
+
visualReport?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
35020
|
+
certificateOfAnalyticalAndMechanicalTests?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
35021
|
+
certificateOfTest?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
35022
|
+
technicalReport?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
35023
|
+
microExaminationReport?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
35024
|
+
radiologicalReport?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
34805
35025
|
}
|
|
34806
35026
|
|
|
34807
35027
|
export interface ImaUpdateSpecificationChemistryResultsDto {
|
|
34808
|
-
carbon?:
|
|
34809
|
-
manganese?:
|
|
34810
|
-
silicon?:
|
|
34811
|
-
phosphorus?:
|
|
34812
|
-
sulfur?:
|
|
34813
|
-
chromium?:
|
|
34814
|
-
nickel?:
|
|
34815
|
-
molybdenum?:
|
|
34816
|
-
copper?:
|
|
34817
|
-
nitrogen?:
|
|
34818
|
-
wolfram?:
|
|
34819
|
-
iron?:
|
|
34820
|
-
}
|
|
34821
|
-
|
|
34822
|
-
export interface ImaUpdateSpecificationResultLineDto {
|
|
34823
|
-
approved?: boolean;
|
|
34824
|
-
comment?: string | null;
|
|
35028
|
+
carbon?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
35029
|
+
manganese?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
35030
|
+
silicon?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
35031
|
+
phosphorus?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
35032
|
+
sulfur?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
35033
|
+
chromium?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
35034
|
+
nickel?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
35035
|
+
molybdenum?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
35036
|
+
copper?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
35037
|
+
nitrogen?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
35038
|
+
wolfram?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
35039
|
+
iron?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
34825
35040
|
}
|
|
34826
35041
|
|
|
34827
35042
|
export interface ImaUpdateSpecificationMechanicalResultsDto {
|
|
34828
|
-
yieldStrength?:
|
|
34829
|
-
tensileStrength?:
|
|
34830
|
-
elongation?:
|
|
34831
|
-
reductionOfArea?:
|
|
34832
|
-
impactEnergy?:
|
|
34833
|
-
hardness?:
|
|
35043
|
+
yieldStrength?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
35044
|
+
tensileStrength?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
35045
|
+
elongation?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
35046
|
+
reductionOfArea?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
35047
|
+
impactEnergy?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
35048
|
+
hardness?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
34834
35049
|
}
|
|
34835
35050
|
|
|
34836
35051
|
export interface ImaUpdateSpecificationFerriteResultsDto {
|
|
34837
|
-
ferriteContent?:
|
|
35052
|
+
ferriteContent?: ImaUpdateMaterialCheckResultLineDto | null;
|
|
34838
35053
|
}
|
|
34839
35054
|
|
|
34840
35055
|
export interface ImaUpdateSpecificationHeatTreatmentResultsDto {
|
|
34841
|
-
heatTreatmentOverrides
|
|
34842
|
-
}
|
|
34843
|
-
|
|
34844
|
-
export interface ImaCdfEntityReadBase {
|
|
34845
|
-
}
|
|
34846
|
-
|
|
34847
|
-
export interface ImaCertificateTypeDto extends ImaCdfEntityReadBase {
|
|
34848
|
-
certificateTypeId: string;
|
|
34849
|
-
version: number;
|
|
34850
|
-
allVersions: ImaCertificateTypeVersionDto[];
|
|
34851
|
-
name: string;
|
|
34852
|
-
revision: string;
|
|
34853
|
-
status: ImaCertificateTypeStatus;
|
|
34854
|
-
description?: string | null;
|
|
34855
|
-
isStandardCertificateType: boolean;
|
|
34856
|
-
created: Date;
|
|
34857
|
-
createdBy: string;
|
|
34858
|
-
createdById: string;
|
|
34859
|
-
updatedBy?: string | null;
|
|
34860
|
-
updatedById?: string | null;
|
|
34861
|
-
updated: Date;
|
|
34862
|
-
isDeleted: boolean;
|
|
34863
|
-
requirements: ImaCertificateTypeRequirementsDto;
|
|
34864
|
-
}
|
|
34865
|
-
|
|
34866
|
-
export interface ImaCertificateTypeVersionDto {
|
|
34867
|
-
version?: number;
|
|
34868
|
-
status?: ImaCertificateTypeStatus;
|
|
34869
|
-
}
|
|
34870
|
-
|
|
34871
|
-
export type ImaCertificateTypeStatus = "Draft" | "Released" | "Expired" | "Rejected" | "NotSet";
|
|
34872
|
-
|
|
34873
|
-
export interface ImaCertificateTypeRequirementsDto {
|
|
34874
|
-
manufacturer: ImaCertificateTypeManufacturerRequirementsDto;
|
|
34875
|
-
signature: ImaCertificateTypeSignatureRequirementsDto;
|
|
34876
|
-
thirdParty: ImaCertificateTypeThirdPartyRequirementsDto;
|
|
34877
|
-
certification: ImaCertificateTypeCertificationRequirementsDto;
|
|
34878
|
-
productAndOrderInformation: ImaCertificateTypeProductAndOrderInformationRequirementsDto;
|
|
34879
|
-
testMethodsAndReferences: ImaCertificateTypeTestMethodsAndReferencesRequirementsDto;
|
|
34880
|
-
testResults: ImaCertificateTypeTestResultsRequirementsDto;
|
|
34881
|
-
documentTypes: ImaCertificateTypeDocumentTypesRequirementsDto;
|
|
34882
|
-
}
|
|
34883
|
-
|
|
34884
|
-
export interface ImaCertificateTypeManufacturerRequirementsDto extends ImaCdfEntityReadBase {
|
|
34885
|
-
manufacturer?: boolean;
|
|
34886
|
-
address?: boolean;
|
|
34887
|
-
contact?: boolean;
|
|
34888
|
-
}
|
|
34889
|
-
|
|
34890
|
-
export interface ImaCertificateTypeSignatureRequirementsDto extends ImaCdfEntityReadBase {
|
|
34891
|
-
certifiedBy?: boolean;
|
|
34892
|
-
position?: boolean;
|
|
34893
|
-
signature?: boolean;
|
|
34894
|
-
date?: boolean;
|
|
34895
|
-
stamp?: boolean;
|
|
34896
|
-
}
|
|
34897
|
-
|
|
34898
|
-
export interface ImaCertificateTypeThirdPartyRequirementsDto extends ImaCdfEntityReadBase {
|
|
34899
|
-
inspectionBody?: boolean;
|
|
34900
|
-
inspectorName?: boolean;
|
|
34901
|
-
position?: boolean;
|
|
34902
|
-
verificationMethod?: boolean;
|
|
34903
|
-
signature?: boolean;
|
|
34904
|
-
date?: boolean;
|
|
34905
|
-
stamp?: boolean;
|
|
34906
|
-
}
|
|
34907
|
-
|
|
34908
|
-
export interface ImaCertificateTypeCertificationRequirementsDto extends ImaCdfEntityReadBase {
|
|
34909
|
-
certificateOfCompliance?: boolean;
|
|
34910
|
-
inspectionCertificate?: boolean;
|
|
34911
|
-
}
|
|
34912
|
-
|
|
34913
|
-
export interface ImaCertificateTypeProductAndOrderInformationRequirementsDto extends ImaCdfEntityReadBase {
|
|
34914
|
-
productDescription?: boolean;
|
|
34915
|
-
materialGrade?: boolean;
|
|
34916
|
-
customer?: boolean;
|
|
34917
|
-
customerOrderNumber?: boolean;
|
|
34918
|
-
dimensionsOrWeight?: boolean;
|
|
34919
|
-
batchNumber?: boolean;
|
|
34920
|
-
heatNumber?: boolean;
|
|
34921
|
-
relatedStandards?: boolean;
|
|
34922
|
-
}
|
|
34923
|
-
|
|
34924
|
-
export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsDto extends ImaCdfEntityReadBase {
|
|
34925
|
-
usedStandards?: boolean;
|
|
34926
|
-
}
|
|
34927
|
-
|
|
34928
|
-
export interface ImaCertificateTypeTestResultsRequirementsDto extends ImaCdfEntityReadBase {
|
|
34929
|
-
mechanicalProperties?: boolean;
|
|
34930
|
-
chemicalAnalysis?: boolean;
|
|
34931
|
-
impactTests?: boolean;
|
|
34932
|
-
corrosionTests?: boolean;
|
|
34933
|
-
ferriteContentAndMicrostructure?: boolean;
|
|
34934
|
-
}
|
|
34935
|
-
|
|
34936
|
-
export interface ImaCertificateTypeDocumentTypesRequirementsDto extends ImaCdfEntityReadBase {
|
|
34937
|
-
heatTreatmentCertificate?: boolean;
|
|
34938
|
-
ultrasonicControlCertificate?: boolean;
|
|
34939
|
-
liquidPenetrantCertificate?: boolean;
|
|
34940
|
-
testReport?: boolean;
|
|
34941
|
-
dimensionalReport?: boolean;
|
|
34942
|
-
dyePenetrantReport?: boolean;
|
|
34943
|
-
visualReport?: boolean;
|
|
34944
|
-
certificateOfAnalyticalAndMechanicalTests?: boolean;
|
|
34945
|
-
certificateOfTest?: boolean;
|
|
34946
|
-
technicalReport?: boolean;
|
|
34947
|
-
microExaminationReport?: boolean;
|
|
34948
|
-
radiologicalReport?: boolean;
|
|
34949
|
-
}
|
|
34950
|
-
|
|
34951
|
-
export interface ImaCreateOrCopyCertificateTypeRequestDto {
|
|
34952
|
-
name: string;
|
|
34953
|
-
revision: string;
|
|
34954
|
-
description?: string | null;
|
|
34955
|
-
}
|
|
34956
|
-
|
|
34957
|
-
export interface ImaUpdateImaCertificateTypeRequestDto {
|
|
34958
|
-
name?: string | null;
|
|
34959
|
-
revision?: string | null;
|
|
34960
|
-
status?: ImaCertificateTypeStatus | null;
|
|
34961
|
-
description?: string | null;
|
|
34962
|
-
requirements?: ImaCertificateTypeRequirementsUpdateDto | null;
|
|
34963
|
-
}
|
|
34964
|
-
|
|
34965
|
-
export interface ImaCertificateTypeRequirementsUpdateDto {
|
|
34966
|
-
manufacturer?: ImaCertificateTypeManufacturerRequirementsUpdateDto | null;
|
|
34967
|
-
signature?: ImaCertificateTypeSignatureRequirementsUpdateDto | null;
|
|
34968
|
-
thirdParty?: ImaCertificateTypeThirdPartyRequirementsUpdateDto | null;
|
|
34969
|
-
certification?: ImaCertificateTypeCertificationRequirementsUpdateDto | null;
|
|
34970
|
-
productAndOrderInformation?: ImaCertificateTypeProductAndOrderInformationRequirementsUpdateDto | null;
|
|
34971
|
-
testMethodsAndReferences?: ImaCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto | null;
|
|
34972
|
-
testResults?: ImaCertificateTypeTestResultsRequirementsUpdateDto | null;
|
|
34973
|
-
documentTypes?: ImaCertificateTypeDocumentTypesRequirementsUpdateDto | null;
|
|
34974
|
-
}
|
|
34975
|
-
|
|
34976
|
-
export interface ImaCertificateTypeManufacturerRequirementsUpdateDto {
|
|
34977
|
-
manufacturer?: boolean | null;
|
|
34978
|
-
address?: boolean | null;
|
|
34979
|
-
contact?: boolean | null;
|
|
34980
|
-
}
|
|
34981
|
-
|
|
34982
|
-
export interface ImaCertificateTypeSignatureRequirementsUpdateDto {
|
|
34983
|
-
certifiedBy?: boolean | null;
|
|
34984
|
-
position?: boolean | null;
|
|
34985
|
-
signature?: boolean | null;
|
|
34986
|
-
date?: boolean | null;
|
|
34987
|
-
stamp?: boolean | null;
|
|
34988
|
-
}
|
|
34989
|
-
|
|
34990
|
-
export interface ImaCertificateTypeThirdPartyRequirementsUpdateDto {
|
|
34991
|
-
inspectionBody?: boolean | null;
|
|
34992
|
-
inspectorName?: boolean | null;
|
|
34993
|
-
position?: boolean | null;
|
|
34994
|
-
verificationMethod?: boolean | null;
|
|
34995
|
-
signature?: boolean | null;
|
|
34996
|
-
date?: boolean | null;
|
|
34997
|
-
stamp?: boolean | null;
|
|
34998
|
-
}
|
|
34999
|
-
|
|
35000
|
-
export interface ImaCertificateTypeCertificationRequirementsUpdateDto {
|
|
35001
|
-
certificateOfCompliance?: boolean | null;
|
|
35002
|
-
inspectionCertificate?: boolean | null;
|
|
35003
|
-
}
|
|
35004
|
-
|
|
35005
|
-
export interface ImaCertificateTypeProductAndOrderInformationRequirementsUpdateDto {
|
|
35006
|
-
productDescription?: boolean | null;
|
|
35007
|
-
materialGrade?: boolean | null;
|
|
35008
|
-
customer?: boolean | null;
|
|
35009
|
-
customerOrderNumber?: boolean | null;
|
|
35010
|
-
dimensionsOrWeight?: boolean | null;
|
|
35011
|
-
batchNumber?: boolean | null;
|
|
35012
|
-
heatNumber?: boolean | null;
|
|
35013
|
-
relatedStandards?: boolean | null;
|
|
35014
|
-
}
|
|
35015
|
-
|
|
35016
|
-
export interface ImaCertificateTypeTestMethodsAndReferencesRequirementsUpdateDto {
|
|
35017
|
-
usedStandards?: boolean | null;
|
|
35018
|
-
}
|
|
35019
|
-
|
|
35020
|
-
export interface ImaCertificateTypeTestResultsRequirementsUpdateDto {
|
|
35021
|
-
mechanicalProperties?: boolean | null;
|
|
35022
|
-
chemicalAnalysis?: boolean | null;
|
|
35023
|
-
impactTests?: boolean | null;
|
|
35024
|
-
corrosionTests?: boolean | null;
|
|
35025
|
-
ferriteContentAndMicrostructure?: boolean | null;
|
|
35026
|
-
}
|
|
35027
|
-
|
|
35028
|
-
export interface ImaCertificateTypeDocumentTypesRequirementsUpdateDto {
|
|
35029
|
-
heatTreatmentCertificate?: boolean | null;
|
|
35030
|
-
ultrasonicControlCertificate?: boolean | null;
|
|
35031
|
-
liquidPenetrantCertificate?: boolean | null;
|
|
35032
|
-
testReport?: boolean | null;
|
|
35033
|
-
dimensionalReport?: boolean | null;
|
|
35034
|
-
dyePenetrantReport?: boolean | null;
|
|
35035
|
-
visualReport?: boolean | null;
|
|
35036
|
-
certificateOfAnalyticalAndMechanicalTests?: boolean | null;
|
|
35037
|
-
certificateOfTest?: boolean | null;
|
|
35038
|
-
technicalReport?: boolean | null;
|
|
35039
|
-
microExaminationReport?: boolean | null;
|
|
35040
|
-
radiologicalReport?: boolean | null;
|
|
35041
|
-
}
|
|
35042
|
-
|
|
35043
|
-
export interface ImaCertificateTypeLiteDto extends ImaCdfEntityReadBase {
|
|
35044
|
-
certificateTypeId: string;
|
|
35045
|
-
version: number;
|
|
35046
|
-
name: string;
|
|
35047
|
-
revision: string;
|
|
35048
|
-
status: ImaCertificateTypeStatus;
|
|
35049
|
-
description?: string | null;
|
|
35050
|
-
isStandardCertificateType: boolean;
|
|
35051
|
-
created: Date;
|
|
35052
|
-
createdBy: string;
|
|
35053
|
-
createdById: string;
|
|
35054
|
-
updatedBy?: string | null;
|
|
35055
|
-
updatedById?: string | null;
|
|
35056
|
-
updated: Date;
|
|
35057
|
-
isDeleted: boolean;
|
|
35056
|
+
heatTreatmentOverrides?: ImaUpdateMaterialCheckResultLineDto[] | null;
|
|
35058
35057
|
}
|
|
35059
35058
|
|
|
35060
35059
|
export interface PurchaseOrderMaterialSearchResultsDto {
|
|
@@ -35153,7 +35152,7 @@ export interface ImaSpecificationLineDto extends ImaCdfEntityReadBase {
|
|
|
35153
35152
|
unit: ImaSpecificationUnit;
|
|
35154
35153
|
}
|
|
35155
35154
|
|
|
35156
|
-
export type ImaSpecificationOperator = "
|
|
35155
|
+
export type ImaSpecificationOperator = "Min" | "Max" | "Between" | "NotSet";
|
|
35157
35156
|
|
|
35158
35157
|
export interface ImaMechanicalSpecificationDto extends ImaCdfEntityReadBase {
|
|
35159
35158
|
yieldStrength?: ImaSpecificationLineDto | null;
|